:root {
  --black: #050706;
  --green: #061c16;
  --gold: #d6a33f;
  --gold-light: #f1c56b;
  --white: #fff;
  --muted: #6f7470;
  --line: #e8e2d8;
  --max: 1180px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #101312;
  background: #fbfaf7;
}

a { color: inherit; text-decoration: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 86px;
  background: rgba(0, 0, 0, .94);
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 0 48px;
  color: white;
}

.brand img {
  height: 72px;
  width: auto;
  display: block;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}

.main-nav a,
.nav-dropdown > button {
  color: white;
  background: none;
  border: 0;
  font: inherit;
  cursor: pointer;
}

.nav-dropdown {
  position: relative;
}

.dropdown-panel {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #090d0b;
  border: 1px solid rgba(214, 163, 63, .35);
  min-width: 230px;
  padding: 12px;
  border-radius: 14px;
}

.nav-dropdown:hover .dropdown-panel {
  display: grid;
}

.dropdown-panel a {
  padding: 10px 12px;
  border-radius: 10px;
}

.dropdown-panel a:hover {
  background: rgba(214, 163, 63, .12);
}

.header-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 700;
  cursor: pointer;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #17130a;
}

.btn-outline {
  border-color: rgba(255, 255, 255, .45);
  color: white;
  background: transparent;
}

.btn-outline:not(.light) {
  color: #111;
  border-color: #222;
}

.btn.full {
  width: 100%;
}

.nav-toggle {
  display: none;
}

.hero {
  min-height: 670px;
  background:
    linear-gradient(90deg, rgba(0,0,0,.88) 0%, rgba(0,0,0,.62) 43%, rgba(0,0,0,.2) 100%),
    radial-gradient(circle at 75% 40%, rgba(214,163,63,.25), transparent 30%),
    #070707;
  color: white;
  display: flex;
  align-items: center;
  padding: 80px 48px;
}

.hero-content {
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
}

.hero h1 {
  font-family: Georgia, serif;
  font-size: clamp(48px, 7vw, 86px);
  line-height: .98;
  margin: 0 0 28px;
}

.hero h1 span {
  color: var(--gold-light);
}

.hero p {
  max-width: 560px;
  font-size: 20px;
  line-height: 1.6;
}

.hero-actions,
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 36px;
  color: #f4e7ca;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 72px 24px;
  text-align: center;
}

.section.narrow {
  max-width: 820px;
  text-align: left;
}

.section h2,
.page-hero h1,
.premium-panel h2 {
  font-family: Georgia, serif;
}

.cards {
  display: grid;
  gap: 18px;
  margin-top: 32px;
}

.cards.six { grid-template-columns: repeat(6, 1fr); }
.cards.four { grid-template-columns: repeat(4, 1fr); }
.cards.three { grid-template-columns: repeat(3, 1fr); }

.card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,.04);
}

.card h3 {
  font-family: Georgia, serif;
  margin-top: 0;
}

.premium-panel {
  max-width: var(--max);
  margin: 40px auto;
  min-height: 360px;
  border-radius: 18px;
  color: white;
  padding: 56px;
  background:
    linear-gradient(90deg, rgba(3,31,24,.98) 0%, rgba(3,31,24,.82) 43%, rgba(0,0,0,.15) 100%),
    #06231b;
}

.eyebrow {
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 800;
}

.page-hero {
  position: relative;
  background:
    radial-gradient(circle at 50% 15%, rgba(20, 92, 70, .42), transparent 38%),
    linear-gradient(135deg, #03110d 0%, #06281f 48%, #0b3a2c 100%);
  color: white;
  padding: 110px 24px 80px;
  text-align: center;
  border-bottom: 1px solid rgba(214, 163, 63, .22);
  box-shadow: inset 0 -80px 120px rgba(0, 0, 0, .22);
}

.page-hero h1 {
  font-size: clamp(40px, 6vw, 72px);
  margin: 0 0 18px;
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) 460px;
  min-height: calc(100vh - 86px);
}

.booking-map {
  min-height: 720px;
}

.booking-form-panel {
  padding: 32px;
  background: white;
  border-left: 1px solid var(--line);
  overflow-y: auto;
}

.field {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px 12px;
  margin: 6px 0 16px;
  font: inherit;
}

.checkbox-line {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 12px 0;
}

.quote-service-note,
.estimate-box,
.summary-box {
  background: #fbf5e9;
  border: 1px solid rgba(214,163,63,.4);
  padding: 14px;
  border-radius: 12px;
  margin: 16px 0;
}

.suggestions {
  position: relative;
  z-index: 10;
}

.suggestion-item {
  background: white;
  border: 1px solid var(--line);
  padding: 10px;
  cursor: pointer;
}

.site-footer {
  background: #030504;
  color: white;
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 36px;
  padding: 48px;
}

.site-footer img {
  width: 180px;
}

.site-footer a {
  display: block;
  color: #e7e1d4;
  margin: 8px 0;
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 24px;
}

.messages {
  position: fixed;
  right: 20px;
  top: 106px;
  z-index: 2000;
  display: grid;
  gap: 10px;
}

.message {
  background: white;
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  border-radius: 12px;
  padding: 12px 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,.12);
}

@media (max-width: 980px) {
  .site-header {
    height: auto;
    min-height: 76px;
    padding: 10px 18px;
    flex-wrap: wrap;
  }

  .brand img {
    height: 58px;
  }

  .nav-toggle {
    display: block;
    margin-left: auto;
    background: transparent;
    border: 1px solid rgba(255,255,255,.3);
    color: white;
    border-radius: 8px;
    padding: 8px 12px;
  }

  .main-nav,
  .header-actions {
    display: none;
    width: 100%;
  }

  body.nav-open .main-nav,
  body.nav-open .header-actions {
    display: grid;
    gap: 12px;
  }

  .dropdown-panel {
    position: static;
    display: grid;
    margin-top: 8px;
  }

  .hero {
    min-height: 560px;
    padding: 64px 24px;
  }

  .cards.six,
  .cards.four,
  .cards.three {
    grid-template-columns: 1fr;
  }

  .premium-panel {
    border-radius: 0;
    margin: 0;
    padding: 42px 24px;
  }

  .booking-layout {
    grid-template-columns: 1fr;
  }

  .booking-map {
    min-height: 360px;
  }

  .booking-form-panel {
    border-left: 0;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding: 36px 24px;
  }
}

.route-options {
  display: grid;
  gap: 10px;
  margin: 16px 0;
}

.route-option {
  text-align: left;
  display: grid;
  gap: 4px;
  width: 100%;
  border: 1px solid var(--line);
  background: white;
  border-radius: 12px;
  padding: 14px;
  cursor: pointer;
}

.route-option.active {
  border-color: var(--gold);
  background: #fbf5e9;
}

.route-option span,
.route-option small {
  color: var(--muted);
}

.auth-page {
  min-height: calc(100vh - 86px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 72px 24px;
  background:
    radial-gradient(circle at top left, rgba(214, 163, 63, .18), transparent 34%),
    linear-gradient(135deg, #030504, #08241c);
}

.auth-card {
  width: 100%;
  max-width: 720px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 42px;
  box-shadow: 0 30px 100px rgba(0, 0, 0, .28);
}

.auth-card h1 {
  font-family: Georgia, serif;
  font-size: clamp(34px, 5vw, 52px);
  margin: 0 0 14px;
}

.auth-intro {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 24px;
}

.auth-google {
  width: 100%;
  color: #111;
  border-color: #222;
  margin-bottom: 22px;
}

.auth-separator {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--muted);
  margin: 20px 0;
}

.auth-separator::before,
.auth-separator::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}

.form-grid {
  display: grid;
  gap: 16px;
}

.form-grid.two {
  grid-template-columns: repeat(2, 1fr);
}

.auth-card label {
  display: block;
  font-weight: 700;
  margin: 12px 0 6px;
}

.auth-card ul.errorlist {
  margin: -8px 0 12px;
  padding-left: 18px;
  color: #a32020;
  font-size: 14px;
}

.form-errors {
  background: #fff0f0;
  border: 1px solid #f0b8b8;
  color: #8a1f1f;
  border-radius: 12px;
  padding: 12px 14px;
  margin-bottom: 18px;
}

.help-text {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  margin: -8px 0 14px;
}

.language-box {
  margin: 10px 0 18px;
}

.checkbox-grid ul {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.checkbox-grid li label {
  margin: 0;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fbfaf7;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px;
}

.auth-switch,
.auth-links {
  margin-top: 22px;
  text-align: center;
}

.auth-switch a,
.auth-links a {
  color: #94670f;
  font-weight: 800;
}

.auth-links {
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
}

@media (max-width: 720px) {
  .auth-page {
    padding: 36px 16px;
    align-items: flex-start;
  }

  .auth-card {
    padding: 28px 20px;
    border-radius: 16px;
  }

  .form-grid.two,
  .checkbox-grid ul {
    grid-template-columns: 1fr;
  }
}

.site-header .btn-outline {
  color: #ffffff;
  border-color: rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .03);
}

.site-header .btn-outline:hover {
  color: #ffffff;
  border-color: rgba(214, 163, 63, .75);
  background: rgba(214, 163, 63, .12);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 86px;
  background: #050505;
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 0 48px;
  color: white;
  border-bottom: 1px solid rgba(214, 163, 63, .14);
}

.page-hero h1 {
  font-size: clamp(44px, 6vw, 76px);
  margin: 0 0 18px;
  text-shadow: 0 12px 40px rgba(0, 0, 0, .45);
}

:root {
  --avs-black: #050505;
  --avs-green-900: #03110d;
  --avs-green-800: #06281f;
  --avs-green-700: #0b3a2c;
  --avs-gold-soft: rgba(214, 163, 63, .22);
}

.site-header {
  background: #050505;
  border-bottom: 1px solid rgba(214, 163, 63, .16);
  box-shadow: 0 12px 36px rgba(0, 0, 0, .28);
}

.hero {
  background:
    radial-gradient(circle at 65% 22%, rgba(20, 92, 70, .42), transparent 34%),
    linear-gradient(135deg, #03110d 0%, #06281f 48%, #0b3a2c 100%);
  color: white;
  border-bottom: 1px solid rgba(214, 163, 63, .22);
  box-shadow: inset 0 -90px 130px rgba(0, 0, 0, .24);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .38), transparent 55%),
    radial-gradient(circle at 80% 35%, rgba(214, 163, 63, .12), transparent 28%);
}

.hero {
  position: relative;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.page-hero {
  position: relative;
  background:
    radial-gradient(circle at 50% 15%, rgba(20, 92, 70, .42), transparent 38%),
    linear-gradient(135deg, #03110d 0%, #06281f 48%, #0b3a2c 100%);
  color: white;
  border-bottom: 1px solid rgba(214, 163, 63, .22);
  box-shadow: inset 0 -80px 120px rgba(0, 0, 0, .22);
}

.auth-page {
  background:
    radial-gradient(circle at 50% 12%, rgba(20, 92, 70, .38), transparent 36%),
    linear-gradient(135deg, #03110d 0%, #06281f 48%, #0b3a2c 100%);
}

.premium-panel {
  background:
    radial-gradient(circle at 78% 28%, rgba(214, 163, 63, .16), transparent 28%),
    linear-gradient(135deg, #03110d 0%, #06281f 55%, #0b3a2c 100%);
  border: 1px solid rgba(214, 163, 63, .24);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .18);
}

.site-footer {
  background:
    linear-gradient(135deg, #030303 0%, #050505 55%, #03110d 100%);
  border-top: 1px solid rgba(214, 163, 63, .16);
}

.hero h1,
.page-hero h1 {
  text-shadow: 0 12px 40px rgba(0, 0, 0, .45);
}

.hero .btn-outline,
.page-hero .btn-outline,
.premium-panel .btn-outline {
  color: #ffffff;
  border-color: rgba(255, 255, 255, .42);
  background: rgba(255, 255, 255, .03);
}

.hero .btn-outline:hover,
.page-hero .btn-outline:hover,
.premium-panel .btn-outline:hover {
  border-color: rgba(214, 163, 63, .75);
  background: rgba(214, 163, 63, .12);
}
