:root {
  --bg: #fbf9f6;
  --bg-alt: #f2efea;
  --surface: #ffffff;
  --surface-muted: #efeeeb;
  --text: #1b1c1a;
  --text-muted: #555b66;
  --navy: #001432;
  --navy-2: #13294b;
  --blue: #006494;
  --gold: #c6aa2e;
  --line: rgba(0, 20, 50, 0.12);
  --shadow: 0 24px 60px rgba(0, 20, 50, 0.08);
  --shadow-soft: 0 14px 32px rgba(0, 20, 50, 0.06);
  --radius: 24px;
  --container: min(1180px, calc(100vw - 2rem));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #fffdf9 0%, var(--bg) 14%, var(--bg) 100%);
  line-height: 1.55;
}

img {
  display: block;
  max-width: 100%;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(16px);
  background: rgba(251, 249, 246, 0.88);
  border-bottom: 1px solid rgba(0, 20, 50, 0.06);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 82px;
}

.brand {
  font-family: "Work Sans", "Segoe UI", sans-serif;
  font-size: 1.55rem;
  font-weight: 900;
  letter-spacing: -0.05em;
  color: var(--navy);
  text-transform: uppercase;
}

.nav-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  font-family: "Work Sans", "Segoe UI", sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  padding-bottom: 0.28rem;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--blue);
  border-color: var(--blue);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.header-phone {
  font-family: "Work Sans", "Segoe UI", sans-serif;
  font-weight: 700;
  color: var(--navy);
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  border: 0;
  background: var(--navy);
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  cursor: pointer;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  padding: 0.95rem 1.45rem;
  font-family: "Work Sans", "Segoe UI", sans-serif;
  font-weight: 800;
  letter-spacing: -0.01em;
  transition: transform 0.2s ease, opacity 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  box-shadow: var(--shadow-soft);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.88);
  color: var(--navy);
  border: 1px solid var(--line);
}

.button.ghost {
  background: transparent;
  color: var(--blue);
  padding-inline: 0;
  border-radius: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: fit-content;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  background: rgba(0, 100, 148, 0.1);
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: var(--blue);
}

.page-hero,
.page-intro {
  padding: 4rem 0 3rem;
}

.hero-grid,
.split-grid,
.contact-grid,
.faq-layout,
.review-grid,
.city-grid,
.footer-grid,
.stat-strip,
.plan-grid {
  display: grid;
  gap: 1.25rem;
}

.hero-grid,
.split-grid {
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 2.5rem;
}

.hero-copy h1,
.section-heading h2,
.section-heading h1,
.page-intro h1 {
  font-family: "Work Sans", "Segoe UI", sans-serif;
  color: var(--navy);
  letter-spacing: -0.06em;
  line-height: 0.98;
  margin: 0 0 1rem;
}

.hero-copy h1 {
  font-size: clamp(2.9rem, 6vw, 5.4rem);
}

.page-intro h1,
.section-heading h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
}

.hero-copy p,
.lede,
.section-copy {
  font-size: 1.08rem;
  color: var(--text-muted);
  max-width: 62ch;
}

.hero-actions,
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.7rem;
}

.hero-trust,
.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.4rem;
  margin-top: 2rem;
}

.hero-trust span,
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--navy);
  font-weight: 700;
}

.hero-media,
.image-card {
  position: relative;
}

.hero-media .frame,
.image-frame,
.feature-image,
.full-bleed,
.map-frame {
  overflow: hidden;
  border-radius: 34px;
  box-shadow: var(--shadow);
  background: var(--surface);
}

.hero-media img,
.feature-image img,
.full-bleed img,
.city-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.floating-card,
.stat-card {
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(16px);
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
}

.floating-card {
  position: absolute;
  inset: auto auto 1.1rem -1rem;
  max-width: 280px;
  padding: 1.15rem 1.2rem;
}

.section {
  padding: 4.8rem 0;
}

.section.alt {
  background: linear-gradient(180deg, rgba(239, 238, 235, 0.6) 0%, rgba(239, 238, 235, 0.88) 100%);
}

.section.dark {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  color: #fff;
}

.section.dark h2,
.section.dark h3,
.section.dark p,
.section.dark li {
  color: inherit;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}

.kicker {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.75rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.25rem;
}

.card,
.price-card,
.review-card,
.faq-sidebar,
.contact-card,
.hours-card,
.form-card,
.city-card,
.feature-panel {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(0, 20, 50, 0.05);
}

.card,
.price-card,
.review-card,
.faq-sidebar,
.contact-card,
.hours-card,
.form-card,
.feature-panel {
  padding: 1.6rem;
}

.card h3,
.price-card h3,
.review-card h3,
.contact-card strong,
.hours-card strong,
.feature-panel h3,
.feature-panel h2 {
  margin: 0 0 0.75rem;
  font-family: "Work Sans", "Segoe UI", sans-serif;
  color: var(--navy);
  letter-spacing: -0.04em;
}

.card p,
.price-card p,
.review-card p,
.contact-card p,
.feature-panel p,
.card li,
.price-card li,
.review-card li {
  color: var(--text-muted);
}

.span-3 { grid-column: span 3; }
.span-4 { grid-column: span 4; }
.span-6 { grid-column: span 6; }
.span-8 { grid-column: span 8; }
.span-12 { grid-column: 1 / -1; }

.icon-badge {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: rgba(0, 100, 148, 0.12);
  color: var(--blue);
  font-size: 1.2rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

.list-check,
.city-list,
.footer-list,
.hours-list {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
}

.list-check li,
.city-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin-bottom: 0.8rem;
}

.list-check li::before,
.city-list li::before {
  content: "•";
  color: var(--gold);
  font-weight: 900;
}

.stat-strip {
  grid-template-columns: repeat(4, 1fr);
}

.stat-card strong {
  display: block;
  font-family: "Work Sans", "Segoe UI", sans-serif;
  font-size: 2rem;
  letter-spacing: -0.06em;
  color: var(--navy);
}

.feature-panel.dark {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  color: #fff;
}

.feature-panel.dark h3,
.feature-panel.dark h2,
.feature-panel.dark p,
.feature-panel.dark li {
  color: inherit;
}

.feature-image,
.full-bleed {
  min-height: 340px;
}

.review-grid {
  grid-template-columns: 1.35fr 1fr 1fr;
}

.review-card.featured {
  padding: 2.2rem;
}

.stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 0.06em;
}

.quote {
  font-size: 1.12rem;
  line-height: 1.7;
}

.quote.large {
  font-size: 1.45rem;
  line-height: 1.5;
}

.review-author {
  margin-top: 1.6rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.city-grid {
  grid-template-columns: repeat(3, 1fr);
}

.city-card img {
  aspect-ratio: 5 / 4;
}

.city-card .body {
  padding: 1.5rem;
}

.map-frame iframe {
  width: 100%;
  min-height: 360px;
  border: 0;
}

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

.price-card {
  display: flex;
  flex-direction: column;
}

.price-card.highlight {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  color: #fff;
}

.price-card.highlight h3,
.price-card.highlight p,
.price-card.highlight li,
.price-card.highlight .price {
  color: #fff;
}

.price-tag {
  display: inline-flex;
  align-items: baseline;
  gap: 0.35rem;
  margin: 0.5rem 0 1rem;
}

.price {
  font-family: "Work Sans", "Segoe UI", sans-serif;
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: -0.07em;
  color: var(--navy);
}

.fine {
  font-size: 0.92rem;
  color: var(--text-muted);
}

.flag {
  align-self: flex-start;
  margin-bottom: 1rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(0, 100, 148, 0.12);
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.faq-layout {
  grid-template-columns: 1.5fr 0.8fr;
}

.faq-list details {
  background: var(--surface);
  border-radius: 22px;
  padding: 0 1.2rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(0, 20, 50, 0.06);
  margin-bottom: 1rem;
}

.faq-list summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 0;
  font-family: "Work Sans", "Segoe UI", sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--navy);
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list details p {
  margin: 0 0 1.2rem;
}

.contact-grid {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: start;
}

.contact-stack {
  display: grid;
  gap: 1rem;
}

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

.field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid transparent;
  border-radius: 18px;
  background: var(--bg-alt);
  padding: 0.95rem 1rem;
  color: var(--navy);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(0, 100, 148, 0.35);
  background: #fff;
}

.form-status {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-top: 0.85rem;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--text-muted);
}

.hours-list li:last-child {
  border-bottom: 0;
}

.site-footer {
  background: linear-gradient(180deg, #071a39 0%, #001432 100%);
  color: #fff;
  margin-top: 4rem;
  padding-top: 3rem;
}

.footer-grid {
  grid-template-columns: 1.1fr 0.8fr 0.8fr 0.95fr;
}

.footer-title {
  font-family: "Work Sans", "Segoe UI", sans-serif;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  margin-bottom: 0.9rem;
}

.footer-heading {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 0.9rem;
}

.footer-list li {
  margin-bottom: 0.7rem;
}

.footer-list a,
.footer-copy,
.footer-note {
  color: rgba(255, 255, 255, 0.74);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding: 1.1rem 0 1.6rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.85rem;
}

.mobile-dock {
  position: sticky;
  bottom: 0;
  z-index: 25;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  padding: 0.8rem;
  background: rgba(251, 249, 246, 0.92);
  backdrop-filter: blur(18px);
  border-top: 1px solid rgba(0, 20, 50, 0.08);
}

.badge {
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-soft);
}

.accent-panel {
  padding: 2rem;
  border-radius: 34px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  color: #fff;
  box-shadow: var(--shadow);
}

.accent-panel h2,
.accent-panel h3,
.accent-panel p,
.accent-panel li {
  color: inherit;
}

@media (max-width: 1080px) {
  .header-phone {
    display: none;
  }

  .hero-grid,
  .split-grid,
  .contact-grid,
  .faq-layout,
  .review-grid,
  .city-grid,
  .footer-grid,
  .plan-grid {
    grid-template-columns: 1fr;
  }

  .card-grid .span-3,
  .card-grid .span-4,
  .card-grid .span-6,
  .card-grid .span-8 {
    grid-column: span 6;
  }

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

@media (max-width: 820px) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-panel {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    display: none;
    background: rgba(251, 249, 246, 0.98);
    border-bottom: 1px solid rgba(0, 20, 50, 0.08);
    box-shadow: var(--shadow-soft);
  }

  .nav-panel.open {
    display: block;
  }

  .nav-menu {
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
  }

  .nav-link {
    padding: 0.8rem 0;
    border-bottom-width: 1px;
  }

  .hero-copy h1 {
    font-size: clamp(2.6rem, 12vw, 4rem);
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .card-grid .span-3,
  .card-grid .span-4,
  .card-grid .span-6,
  .card-grid .span-8,
  .card-grid .span-12 {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .mobile-dock {
    display: grid;
  }
}

@media (max-width: 560px) {
  .header-row {
    min-height: 74px;
  }

  .section,
  .page-hero,
  .page-intro {
    padding: 3.5rem 0;
  }

  .container {
    width: min(100vw - 1.2rem, 100%);
  }

  .floating-card {
    position: static;
    margin-top: 1rem;
    max-width: none;
  }

  .stat-strip {
    grid-template-columns: 1fr;
  }
}
