/* Galicia Atlantic Groups · Landing MVP · v1.1 (GDPR-friendly, self-hosted fonts) */

/* ====== SELF-HOSTED FONTS ====== */
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/cormorant-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/assets/fonts/cormorant-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/assets/fonts/cormorant-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/assets/fonts/cormorant-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/cormorant-400-italic.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url('/assets/fonts/cormorant-500-italic.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/inter-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/assets/fonts/inter-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/assets/fonts/inter-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/assets/fonts/inter-700.woff2') format('woff2');
}

:root {
  --navy: #05284C;
  --navy-deep: #031A35;
  --navy-mid: #1E4778;
  --gold: #D4A560;
  --gold-light: #E6BE83;
  --gold-deep: #B38139;

  --white: #FFFFFF;
  --off-white: #FAFAF8;
  --sand: #F5EFE6;

  --ink: #1A1D21;
  --slate: #4A5057;
  --stone: #9CA3AF;
  --mist: #E5E7EB;

  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --nav-h: 76px;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;

  --shadow-sm: 0 1px 2px rgba(5, 40, 76, 0.05);
  --shadow-md: 0 4px 12px rgba(5, 40, 76, 0.08);
  --shadow-lg: 0 16px 40px rgba(5, 40, 76, 0.14);
}

/* ====== RESET & BASE ====== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--off-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy); text-decoration: none; transition: color .2s; }
a:hover { color: var(--gold-deep); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
em { font-family: var(--serif); font-style: italic; font-weight: 500; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 760px; margin: 0 auto; padding: 0 24px; }

/* ====== NAV ====== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 250, 248, 0.92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid rgba(229, 231, 235, 0.7);
  height: var(--nav-h);
  display: flex;
  align-items: center;
}
.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
}
.nav-logo-mark { height: 46px; width: auto; display: block; }
.brand-divider {
  width: 1px;
  height: 36px;
  background: rgba(5, 40, 76, 0.22);
}
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 21px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy);
  white-space: nowrap;
}
.brand-sub {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 8.5px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-top: 4px;
  padding-left: 2px;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-menu a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.01em;
}
.nav-menu a:hover { color: var(--navy); }
.nav-menu .nav-cta {
  background: var(--navy);
  color: var(--white);
  padding: 10px 18px;
  border-radius: var(--radius-md);
  font-weight: 600;
  letter-spacing: 0.01em;
}
.nav-menu .nav-cta:hover { background: var(--navy-deep); color: var(--white); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all .25s;
}

/* ====== HERO ====== */
.hero {
  padding: 80px 0 100px;
  background:
    radial-gradient(ellipse at top right, rgba(212, 165, 96, 0.07), transparent 60%),
    var(--off-white);
}
.hero-inner { max-width: 880px; }
.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 16px;
}
.hero-title {
  font-family: var(--serif);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 600;
  line-height: 1.05;
  color: var(--navy);
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}
.hero-title em { color: var(--navy); font-style: italic; }
.hero-lead {
  font-size: 18px;
  color: var(--slate);
  max-width: 660px;
  line-height: 1.7;
  margin-bottom: 36px;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 56px;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid var(--mist);
}
.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hero-stat-value {
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1;
}
.hero-stat-label {
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate);
}

/* ====== BUTTONS ====== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 14px 26px;
  border-radius: var(--radius-md);
  transition: all .25s;
  cursor: pointer;
  text-align: center;
}
.btn-primary {
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.btn-primary:hover {
  background: var(--navy-deep);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}
.btn-gold {
  background: var(--gold);
  color: var(--navy-deep);
  font-weight: 700;
}
.btn-gold:hover {
  background: var(--gold-light);
  color: var(--navy-deep);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--mist);
}
.btn-ghost:hover {
  background: var(--white);
  color: var(--navy-deep);
  border-color: var(--gold);
}
.btn-block { width: 100%; padding: 16px; font-size: 16px; }

/* ====== SECTIONS ====== */
.section {
  padding: 96px 0;
  position: relative;
}
.section-sand { background: var(--sand); }
.section-navy {
  background: var(--navy);
  color: var(--white);
}
.section-navy .section-eyebrow { color: var(--gold); }
.section-navy .section-title { color: var(--white); }
.section-navy .section-lead { color: rgba(255, 255, 255, 0.78); }
.section-navy h3 { color: var(--white); }

.section-eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(34px, 4.5vw, 56px);
  font-weight: 600;
  line-height: 1.08;
  color: var(--navy);
  letter-spacing: -0.005em;
  margin-bottom: 18px;
}
.section-lead {
  font-size: 17px;
  color: var(--slate);
  max-width: 640px;
  line-height: 1.65;
}
.mt-md { margin-top: 24px; }
.mt-lg { margin-top: 44px; }
.gap-md { gap: 28px; }
.gap-lg { gap: 56px; }

/* ====== GRID ====== */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }

/* ====== CARDS ====== */
.card-clean {
  background: var(--white);
  border: 1px solid var(--mist);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: transform .25s, box-shadow .25s;
}
.card-clean:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-light);
}
.card-clean h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 10px;
}
.card-clean p {
  font-size: 14.5px;
  color: var(--slate);
  line-height: 1.6;
}

/* ====== HOTEL ====== */
.photo-placeholder {
  background:
    repeating-linear-gradient(
      45deg,
      var(--sand),
      var(--sand) 14px,
      rgba(212, 165, 96, 0.08) 14px,
      rgba(212, 165, 96, 0.08) 28px
    );
  border: 1.5px dashed var(--stone);
  border-radius: var(--radius-md);
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--slate);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.photo-tall { min-height: 420px; }
.hotel-grid { align-items: start; }
.hotel-photo {
  width: 100%;
  height: auto;
  max-height: 600px;
  object-fit: cover;
  border-radius: var(--radius-md);
  display: block;
}
@media (min-width: 761px) {
  .hotel-grid.grid-2 { grid-template-columns: 0.82fr 1.18fr; }
}

/* ====== GALLERY ====== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.gallery-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-md);
  display: block;
}
@media (max-width: 760px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .gallery-grid { grid-template-columns: 1fr; } }

.hotel-features h3 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 20px;
}
.feature-list {
  display: grid;
  grid-template-columns: 40% 60%;
  row-gap: 4px;
}
.feature-list dt {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-deep);
  padding: 12px 0;
  border-bottom: 1px solid var(--mist);
}
.feature-list dd {
  font-size: 15px;
  color: var(--ink);
  padding: 12px 0;
  border-bottom: 1px solid var(--mist);
}

/* ====== PRODUCT CARDS ====== */
.product-card {
  background: var(--white);
  border: 1px solid var(--mist);
  border-radius: var(--radius-md);
  padding: 30px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform .25s, box-shadow .25s;
}
.product-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.product-featured {
  border: 1.5px solid var(--gold);
  background: linear-gradient(180deg, var(--white) 0%, #FFFAF0 100%);
}
.featured-badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background: var(--gold-deep);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}
.product-tag {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 6px;
}
.product-name {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 12px;
}
.product-meta {
  font-size: 13.5px;
  color: var(--slate);
  margin-bottom: 12px;
  line-height: 1.7;
}
.product-meta strong { color: var(--ink); font-weight: 600; }
.product-desc {
  font-size: 14.5px;
  color: var(--ink);
  line-height: 1.6;
  margin-bottom: 18px;
}
.product-price {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--mist);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.product-price span {
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--stone);
}
.product-price strong {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
  color: var(--gold-deep);
}
.product-price strong small { font-size: 14px; color: var(--slate); font-weight: 500; }

.footnote {
  font-size: 13px;
  color: var(--slate);
  font-style: italic;
  max-width: 720px;
}

/* ====== ITINERARY ====== */
.itinerary {
  display: grid;
  gap: 4px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-md);
  padding: 4px;
}
.day {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 28px;
  padding: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.day:last-child { border-bottom: none; }
.day-num {
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.02em;
}
.day-body h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}
.day-body p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.65;
}

.cta-strip {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(212, 165, 96, 0.3);
  border-radius: var(--radius-md);
  padding: 24px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-strip p {
  font-family: var(--serif);
  font-size: 20px;
  font-style: italic;
  color: var(--white);
  margin: 0;
}

/* ====== EXPERIENCES ====== */
.exp-card {
  background: var(--white);
  border-left: 3px solid var(--gold);
  padding: 24px 26px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  transition: transform .25s, box-shadow .25s;
}
.exp-card:hover {
  transform: translateX(2px);
  box-shadow: var(--shadow-md);
}
.exp-card h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}
.exp-card p {
  font-size: 14.5px;
  color: var(--slate);
  line-height: 1.6;
  margin-bottom: 14px;
}
.exp-price {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--gold-deep);
  padding-top: 12px;
  border-top: 1px solid var(--mist);
}

/* ====== ABOUT ====== */
.lead {
  font-size: 18px;
  color: var(--ink);
  line-height: 1.7;
  margin-bottom: 18px;
}
.big-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(24px, 2.6vw, 30px);
  line-height: 1.4;
  color: var(--navy);
  padding: 36px;
  background: var(--white);
  border-radius: var(--radius-md);
  position: relative;
  align-self: center;
  border-left: 3px solid var(--gold);
}
.big-quote .quote-mark {
  display: block;
  font-size: 64px;
  color: var(--gold);
  line-height: 0.4;
  margin-bottom: 12px;
  font-style: normal;
}

/* ====== FORM ====== */
.quote-form {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 165, 96, 0.25);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field-full { grid-column: 1 / -1; }
.field label {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--gold-light);
}
.field input, .field select, .field textarea {
  font-family: inherit;
  font-size: 15px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  color: var(--ink);
  transition: all .2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(212, 165, 96, 0.18);
}
.field textarea { resize: vertical; font-family: inherit; }
.form-note {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
  margin-top: 16px;
  font-style: italic;
}

/* Consent checkbox */
.field-consent {
  grid-column: 1 / -1;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(0, 0, 0, 0.18);
  border-radius: var(--radius-md);
  border: 1px solid rgba(212, 165, 96, 0.18);
}
.field-consent input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--gold);
  cursor: pointer;
  flex-shrink: 0;
}
.field-consent label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.55;
  font-weight: 400;
  letter-spacing: 0;
  cursor: pointer;
  text-transform: none;
}
.field-consent label a {
  color: var(--gold-light);
  text-decoration: underline;
}
.field-consent label a:hover { color: var(--gold); }

/* Static legal pages (privacy / imprint) */
.legal-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 60px 24px;
}
.legal-page h1 {
  font-family: var(--serif);
  font-size: clamp(34px, 4.5vw, 48px);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.legal-page .legal-meta {
  font-size: 13px;
  color: var(--slate);
  letter-spacing: 0.05em;
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--mist);
}
.legal-page h2 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 600;
  color: var(--navy);
  margin: 36px 0 12px;
  line-height: 1.25;
}
.legal-page h3 {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin: 24px 0 8px;
}
.legal-page p {
  font-size: 15.5px;
  color: var(--ink);
  line-height: 1.7;
  margin-bottom: 14px;
}
.legal-page ul {
  margin: 8px 0 18px 22px;
}
.legal-page ul li {
  font-size: 15.5px;
  color: var(--ink);
  line-height: 1.7;
  margin-bottom: 6px;
}
.legal-page strong { color: var(--navy); font-weight: 600; }
.legal-page a { text-decoration: underline; }
.legal-back {
  display: inline-block;
  margin-top: 28px;
  font-size: 14px;
  font-weight: 500;
}

/* ====== FOOTER ====== */
.footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.7);
  padding: 64px 0 24px;
}
.footer a { color: var(--gold-light); }
.footer a:hover { color: var(--gold); }
.footer h4 {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.footer p {
  font-size: 14.5px;
  line-height: 1.8;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-logo-lockup {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  margin-bottom: 14px;
}
.footer-logo-mark { height: 52px; width: auto; display: block; }
.footer-logo-lockup .brand-name { color: #fefefe; font-size: 23px; }
.footer-logo-lockup .brand-sub { color: var(--gold); }
.footer-tagline {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold-light);
  font-size: 15px;
  max-width: 280px;
  line-height: 1.5;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom small {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.04em;
}

/* ====== RESPONSIVE ====== */
@media (max-width: 960px) {
  .nav-menu {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--white);
    padding: 28px 24px;
    gap: 18px;
    border-bottom: 1px solid var(--mist);
    transform: translateY(-110%);
    transition: transform .3s;
    box-shadow: var(--shadow-md);
  }
  .nav-menu.is-open { transform: translateY(0); }
  .nav-menu a {
    width: 100%;
    padding: 10px 0;
    font-size: 17px;
  }
  .nav-menu .nav-cta { text-align: center; padding: 14px; }
  .nav-toggle { display: flex; }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

  .hero { padding: 56px 0 64px; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 18px; }

  .section { padding: 64px 0; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .gap-lg { gap: 32px; }

  .day { grid-template-columns: 56px 1fr; gap: 16px; padding: 18px; }
  .day-num { font-size: 32px; }

  .cta-strip { flex-direction: column; align-items: flex-start; text-align: left; }
  .cta-strip .btn { width: 100%; }

  .form-grid { grid-template-columns: 1fr; gap: 14px; }
  .quote-form { padding: 24px; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; padding-bottom: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .nav-logo { gap: 10px; }
  .nav-logo-mark { height: 38px; }
  .brand-divider { height: 30px; }
  .brand-name { font-size: 18px; }
  .brand-sub { font-size: 7.5px; letter-spacing: 0.38em; }
  .hero-title { font-size: 36px; }
  .section-title { font-size: 30px; }
  .product-card { padding: 22px; }
}
