/* =====================================================================
   Palm Beach Auto Spa — Design System
   Tropical West Palm Beach: bright, clean, upscale coastal.
   One stylesheet drives every page (header, footer, buttons, sections).
   ===================================================================== */

/* ---------- Design tokens ---------- */
:root {
  /* Brand colors (sampled from the logo) */
  --teal: #00a8a8;          /* primary aqua */
  --teal-dark: #007e8c;     /* hover / deeper aqua */
  --navy: #003048;          /* headings, text, dark sections */
  --navy-deep: #00212f;     /* deepest section base */
  --orange: #f06000;        /* CTAs, highlights */
  --gold: #ffb020;          /* sunset gradient partner */
  --aqua: #d8f0f0;          /* soft background */
  --cream: #f0f0d8;         /* soft background */
  --white: #ffffff;
  --ink: #003048;           /* body text on light */
  --muted: #5a7b84;         /* teal-biased neutral (never a flat grey) */
  --line: rgba(0, 48, 72, 0.12);

  --sunset: linear-gradient(135deg, var(--gold) 0%, var(--orange) 62%);

  /* Type */
  --font-display: "Montserrat", ui-sans-serif, system-ui, "Segoe UI", Roboto, sans-serif;
  --font-body: "Inter", ui-sans-serif, system-ui, "Segoe UI", Roboto, sans-serif;

  /* Layout */
  --container: 1200px;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 4px 14px rgba(0, 48, 72, 0.08);
  --shadow-md: 0 12px 30px rgba(0, 48, 72, 0.12);
  --header-h: 92px;
}

/* ---------- Reset / base ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy);
  line-height: 1.05;
  margin: 0 0 0.4em;
  text-wrap: balance;
}
h1 { font-weight: 800; text-transform: uppercase; letter-spacing: -0.5px; }
h2 { font-weight: 800; text-transform: uppercase; letter-spacing: -0.3px; }
h3 { font-weight: 700; }
p { margin: 0 0 1em; }

/* Skip link */
.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--navy); color: #fff; padding: 10px 16px; border-radius: 0 0 8px 0;
  font-family: var(--font-display); font-weight: 700;
}
.skip-link:focus { left: 0; }

:focus-visible { outline: 3px solid var(--orange); outline-offset: 2px; border-radius: 4px; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 72px 0; }
.section--sm { padding: 52px 0; }
.bg-aqua { background: var(--aqua); }
.bg-cream { background: var(--cream); }
.bg-navy { background: var(--navy); color: #fff; }
.bg-navy h1, .bg-navy h2, .bg-navy h3, .bg-navy h4 { color: #fff; }
.bg-white { background: var(--white); }
.text-center { text-align: center; }
.eyebrow {
  display: inline-block; font-family: var(--font-display); font-weight: 700;
  text-transform: uppercase; letter-spacing: 2.5px; font-size: 13px;
  color: var(--teal-dark); margin-bottom: 10px;
}
.bg-navy .eyebrow { color: var(--gold); }
.lead { font-size: 1.15rem; color: var(--muted); max-width: 60ch; }
.bg-navy .lead { color: rgba(255, 255, 255, 0.85); }
.section-head { max-width: 62ch; margin: 0 auto 44px; text-align: center; }
.section-head.left { margin-left: 0; text-align: left; }

/* Fluid display sizes */
.h-xl { font-size: clamp(38px, 6.5vw, 72px); }
.h-lg { font-size: clamp(30px, 4.5vw, 50px); }
.h-md { font-size: clamp(24px, 3vw, 34px); }

/* =====================================================================
   BUTTONS — locked system.
   .btn--free  : THE acquisition button (orange glow). Identical everywhere.
   .btn--club  : THE membership button (solid teal). Identical everywhere.
   Everything else uses ghost/outline so nothing competes with those two.
   ===================================================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-display); font-weight: 700; font-size: 15px;
  text-decoration: none; cursor: pointer; border: none;
  padding: 14px 26px; border-radius: 999px;
  transition: transform 0.15s ease, box-shadow 0.25s ease, background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--sm { padding: 10px 18px; font-size: 14px; }
.btn--block { width: 100%; }

/* THE Get Your Free Wash button */
.btn--free {
  color: #fff; background: var(--sunset);
  box-shadow: 0 6px 18px rgba(240, 96, 0, 0.42);
  animation: glowPulse 2.6s ease-in-out infinite;
}
.btn--free:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(240, 96, 0, 0.55); }

/* THE Join the Club button */
.btn--club { color: #fff; background: var(--teal); box-shadow: 0 4px 14px rgba(0, 168, 168, 0.35); }
.btn--club:hover { background: var(--teal-dark); transform: translateY(-2px); }

/* Generic secondary buttons — never mimic the two above */
.btn--ghost { color: #fff; background: transparent; border: 2px solid rgba(255, 255, 255, 0.75); padding: 12px 24px; }
.btn--ghost:hover { background: #fff; color: var(--navy); }
.btn--ghost-ink { color: var(--navy); background: transparent; border: 2px solid var(--navy); padding: 12px 24px; }
.btn--ghost-ink:hover { background: var(--navy); color: #fff; }

@keyframes glowPulse {
  0%, 100% { box-shadow: 0 6px 18px rgba(240, 96, 0, 0.42), 0 0 0 rgba(255, 176, 32, 0); }
  50%      { box-shadow: 0 6px 22px rgba(240, 96, 0, 0.5), 0 0 22px rgba(255, 176, 32, 0.55); }
}

/* ---------- Header / nav (white) ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: #fff;
  box-shadow: 0 2px 14px rgba(0, 48, 72, 0.10);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px; height: var(--header-h);
}
.nav__logo { display: flex; align-items: center; flex: none; }
.nav__logo img { height: 72px; width: auto; }
.nav__links { display: none; list-style: none; margin: 0; padding: 0; gap: 24px; align-items: center; }
.nav__links a, .nav__submenu-toggle {
  font-family: var(--font-display); font-weight: 600; font-size: 14px;
  text-transform: uppercase; letter-spacing: 0.5px; color: var(--navy);
  text-decoration: none; transition: color 0.2s ease;
}
.nav__links a:hover, .nav__links a[aria-current="page"] { color: var(--teal-dark); }
.nav__ctas { display: none; gap: 10px; }
.nav__toggle {
  display: inline-flex; align-items: center; justify-content: center;
  background: none; border: none; color: var(--navy); cursor: pointer; padding: 6px;
}
.nav__toggle svg { width: 30px; height: 30px; }

/* Submenu (shared bits) */
.nav__submenu-toggle { background: none; border: none; cursor: pointer; display: inline-flex; align-items: center; gap: 6px; }
.nav__submenu-toggle .caret { font-size: 0.7em; transition: transform 0.2s ease; }
.nav__submenu { list-style: none; }

/* Mobile drawer (white) */
.nav__mobile { display: none; background: #fff; border-top: 1px solid var(--line); }
.nav__mobile.open { display: block; }
.nav__mobile ul { list-style: none; margin: 0; padding: 12px 0; }
.nav__mobile a {
  display: block; padding: 12px 24px; color: var(--navy);
  font-family: var(--font-display); font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.5px; text-decoration: none; font-size: 15px;
}
.nav__mobile a:hover { color: var(--teal-dark); background: var(--aqua); }
.nav__mobile .nav__submenu-toggle {
  width: 100%; justify-content: space-between; padding: 12px 24px; font-size: 15px; letter-spacing: 0.5px;
}
.nav__mobile .nav__submenu { display: none; padding: 0 0 6px; }
.nav__mobile .has-submenu.open .nav__submenu { display: block; }
.nav__mobile .has-submenu.open .caret { transform: rotate(180deg); }
.nav__mobile .nav__submenu a { padding-left: 40px; font-size: 14px; color: var(--muted); }
.nav__mobile .nav__mobile-ctas { display: flex; flex-direction: column; gap: 10px; padding: 8px 24px 24px; }

@media (min-width: 1080px) {
  .nav__links { display: flex; }
  .nav__ctas { display: flex; }
  .nav__toggle { display: none; }

  /* Desktop dropdown */
  .nav__links .has-submenu { position: relative; }
  .nav__links .nav__submenu {
    position: absolute; top: 100%; left: 0; min-width: 210px; margin: 0; padding: 8px;
    background: #fff; border-radius: 12px; box-shadow: var(--shadow-md); border: 1px solid var(--line);
    opacity: 0; visibility: hidden; transform: translateY(8px);
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  }
  .nav__links .has-submenu:hover .nav__submenu,
  .nav__links .has-submenu:focus-within .nav__submenu,
  .nav__links .has-submenu.open .nav__submenu { opacity: 1; visibility: visible; transform: none; }
  .nav__links .has-submenu:hover .caret,
  .nav__links .has-submenu.open .caret { transform: rotate(180deg); }
  .nav__links .nav__submenu a { display: block; padding: 10px 14px; border-radius: 8px; font-size: 13px; white-space: nowrap; color: var(--navy); }
  .nav__links .nav__submenu a:hover { background: var(--aqua); color: var(--teal-dark); }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden; color: #fff;
  background:
    radial-gradient(120% 90% at 80% -10%, rgba(255, 176, 32, 0.95) 0%, rgba(240, 96, 0, 0.5) 26%, transparent 56%),
    linear-gradient(175deg, #00b6b6 0%, #008a97 40%, var(--navy) 100%);
}
.hero__inner { position: relative; z-index: 4; padding: 90px 0 150px; }
.hero h1 { color: #fff; max-width: 15ch; text-shadow: 0 3px 24px rgba(0, 33, 47, 0.35); }
.hero .accent { color: var(--gold); }
.hero__sub { font-size: clamp(16px, 2vw, 20px); max-width: 48ch; margin-top: 20px; color: rgba(255, 255, 255, 0.94); }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero__support {
  margin-top: 28px; max-width: 54ch; font-size: 15px; color: rgba(255, 255, 255, 0.82);
  border-left: 3px solid var(--gold); padding-left: 16px;
}
.hero .eyebrow {
  background: rgba(255, 255, 255, 0.9); color: var(--navy);
  padding: 7px 15px; border-radius: 999px; letter-spacing: 2px;
}
.hero__sun {
  position: absolute; top: 46px; right: 8%; width: 150px; height: 150px; border-radius: 50%; z-index: 1;
  background: radial-gradient(circle at 50% 50%, #fff2cf 0%, var(--gold) 45%, var(--orange) 78%);
  box-shadow: 0 0 80px 22px rgba(255, 176, 32, 0.5);
}
.hero__palm {
  position: absolute; bottom: 70px; font-size: 150px; line-height: 1; z-index: 2;
  filter: brightness(0) saturate(100%); opacity: 0.18; transform-origin: bottom center;
  animation: sway 6s ease-in-out infinite; user-select: none;
}
.hero__palm.left { left: -18px; }
.hero__palm.right { right: -10px; transform: scaleX(-1); animation-name: swayR; animation-delay: -3s; }
.hero__spark { position: absolute; z-index: 2; color: #fff; opacity: 0.2; animation: twinkle 3.5s ease-in-out infinite; }

@keyframes sway  { 0%, 100% { transform: rotate(-2deg); }            50% { transform: rotate(2deg); } }
@keyframes swayR { 0%, 100% { transform: scaleX(-1) rotate(-2deg); } 50% { transform: scaleX(-1) rotate(2deg); } }
@keyframes twinkle { 0%, 100% { opacity: 0.15; transform: scale(0.7); } 50% { opacity: 0.9; transform: scale(1.1); } }

@media (max-width: 760px) {
  .hero__sun { width: 96px; height: 96px; top: 28px; }
  .hero__palm { font-size: 96px; bottom: 40px; }
}

/* ---------- Wave divider ---------- */
.wave { position: relative; line-height: 0; }
.wave svg { display: block; width: 100%; height: 80px; }
.wave--bottom { margin-bottom: -1px; }
.wave--top { margin-top: -1px; }

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  position: relative; overflow: hidden; color: #fff;
  background:
    radial-gradient(100% 120% at 88% -20%, rgba(255, 176, 32, 0.75) 0%, transparent 55%),
    linear-gradient(160deg, var(--teal) 0%, #00788a 55%, var(--navy) 100%);
  padding: 66px 0 72px;
}
.page-hero h1 { color: #fff; }
.page-hero p { color: rgba(255, 255, 255, 0.9); max-width: 56ch; margin: 0 auto; }
.page-hero .container { position: relative; z-index: 2; text-align: center; }

/* ---------- Cards & grids ---------- */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr 1fr; }
@media (min-width: 700px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

.card {
  background: #fff; border-radius: var(--radius); padding: 28px;
  box-shadow: var(--shadow-sm); border: 1px solid var(--line);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card__icon {
  width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center;
  background: var(--aqua); color: var(--teal-dark); margin-bottom: 14px; font-size: 26px;
}
.card h3 { margin-bottom: 8px; font-size: 1.25rem; }
.card p { color: var(--muted); margin: 0; font-size: 0.98rem; }

/* Wash / service menu card (priced) */
.menu-card {
  background: #fff; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid var(--line); display: flex; flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.menu-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.menu-card__head { background: var(--navy); color: #fff; padding: 24px 22px 20px; text-align: center; }
.menu-card__head h3 { color: #fff; font-size: 1.35rem; text-transform: uppercase; margin-bottom: 6px; }
.menu-card__price { font-family: var(--font-display); font-weight: 800; font-size: 1.6rem; color: var(--gold); }
.menu-card__price small { font-size: 0.8rem; font-weight: 600; color: rgba(255, 255, 255, 0.8); }
.menu-card__bar { height: 8px; background: var(--sunset); }
.menu-card__body { padding: 22px; flex: 1; }
.menu-card__body ul { list-style: none; margin: 0; padding: 0; }
.menu-card__body li { padding: 7px 0 7px 26px; position: relative; color: var(--ink); font-size: 0.97rem; border-bottom: 1px solid var(--line); }
.menu-card__body li:last-child { border-bottom: none; }
.menu-card__body li::before { content: "✓"; position: absolute; left: 0; color: var(--teal); font-weight: 800; }
.menu-card__body .muted-note { color: var(--muted); font-size: 0.9rem; text-align: center; padding-top: 10px; }
.menu-card.is-popular { border-color: var(--orange); box-shadow: 0 12px 30px rgba(240, 96, 0, 0.18); }
.menu-card__flag {
  background: var(--sunset); color: #fff; font-family: var(--font-display); font-weight: 700;
  font-size: 12px; letter-spacing: 1px; text-transform: uppercase; text-align: center; padding: 6px;
}

/* ---------- Electrifying wash menu — Miami sunset, on-brand ---------- */
.wash-vice {
  position: relative; overflow: hidden; color: #fff;
  background:
    radial-gradient(85% 60% at 88% 0%, rgba(240, 96, 0, 0.30) 0%, transparent 55%),
    radial-gradient(75% 60% at 0% 100%, rgba(0, 168, 168, 0.32) 0%, transparent 55%),
    linear-gradient(160deg, #013a52 0%, #00263a 55%, #001824 100%);
}
.wash-vice .eyebrow { color: var(--gold); }
.wash-vice h2 { color: #fff; text-shadow: 0 0 22px rgba(0, 224, 208, 0.25); }
.wash-vice .lead { color: rgba(255, 255, 255, 0.85); }
/* Faint neon grid — Miami vibe, masked so it fades at the edges */
.wash-vice::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 0; opacity: 0.5;
  background-image:
    linear-gradient(rgba(0, 224, 208, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 224, 208, 0.06) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 45%, transparent);
  mask-image: linear-gradient(to bottom, transparent, #000 45%, transparent);
}
.wash-vice .container { position: relative; z-index: 1; }

.wash-vice .menu-card {
  position: relative; border-radius: 18px; overflow: hidden;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(0, 224, 208, 0.35);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35), inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
}
/* Animated neon top edge */
.wash-vice .menu-card::after {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; z-index: 3;
  background: linear-gradient(90deg, #00e0d0, #00a8a8, #ffb020, #f06000, #00e0d0);
  background-size: 200% 100%; animation: viceFlow 6s linear infinite;
}
.wash-vice .menu-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 224, 208, 0.7);
  box-shadow: 0 18px 46px rgba(0, 168, 168, 0.32), 0 0 26px rgba(0, 224, 208, 0.35);
}
.wash-vice .menu-card__head { background: transparent; padding-top: 26px; }
.wash-vice .menu-card__head h3 { color: #fff; text-shadow: 0 0 14px rgba(0, 224, 208, 0.4); }
.wash-vice .menu-card__price {
  background: linear-gradient(100deg, #ffe07a, #ffb020 45%, #f06000);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  -webkit-text-fill-color: transparent; filter: drop-shadow(0 0 10px rgba(240, 96, 0, 0.35));
}
.wash-vice .menu-card__price small { -webkit-text-fill-color: rgba(255, 255, 255, 0.78); color: rgba(255, 255, 255, 0.78); }
@supports not ((background-clip: text) or (-webkit-background-clip: text)) {
  .wash-vice .menu-card__price { color: var(--gold); -webkit-text-fill-color: var(--gold); }
}
.wash-vice .menu-card__bar {
  height: 6px; background: linear-gradient(90deg, #00e0d0, #00a8a8, #ffb020, #f06000, #00e0d0);
  background-size: 200% 100%; animation: viceFlow 6s linear infinite;
}
.wash-vice .menu-card__body li { color: rgba(255, 255, 255, 0.9); border-bottom-color: rgba(255, 255, 255, 0.1); }
.wash-vice .menu-card__body li::before { color: #00e0d0; }
.wash-vice .menu-card__body .muted-note { color: rgba(255, 255, 255, 0.65); }

/* Most Popular = full sunset neon */
.wash-vice .menu-card.is-popular {
  border-color: rgba(255, 176, 32, 0.8);
  background: linear-gradient(165deg, rgba(240, 96, 0, 0.30), rgba(0, 48, 72, 0.55));
  box-shadow: 0 14px 40px rgba(240, 96, 0, 0.35), 0 0 30px rgba(255, 176, 32, 0.3);
}

/* CTA card at the end of the grid */
.wash-vice .menu-card--cta {
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(160deg, rgba(0, 168, 168, 0.28), rgba(240, 96, 0, 0.22));
  border-color: rgba(255, 176, 32, 0.55);
}

@keyframes viceFlow { 0% { background-position: 0% 0; } 100% { background-position: -200% 0; } }

@media (prefers-reduced-motion: reduce) {
  .wash-vice .menu-card::after, .wash-vice .menu-card__bar { animation: none; }
}

/* Cons vs. pros comparison cards */
.compare-card { background: #fff; border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.compare-card h3 { font-size: 1.15rem; margin-bottom: 16px; }
.compare-card--pros { background: var(--aqua); border-color: rgba(0, 168, 168, 0.35); }
.compare-card--pros h3 { color: var(--teal-dark); }
.compare-card__note { margin: 18px 0 0; font-style: italic; font-weight: 600; color: var(--teal-dark); }
.check-list { list-style: none; margin: 0; padding: 0; }
.check-list li {
  display: flex; align-items: center; gap: 12px; padding: 10px 0;
  border-bottom: 1px solid var(--line); font-family: var(--font-display); font-weight: 600; color: var(--navy);
}
.check-list li:last-child { border-bottom: none; }
.check-list li::before {
  content: ""; flex: none; width: 24px; height: 24px; border-radius: 50%;
  display: grid; place-items: center; font-size: 13px; font-weight: 800; line-height: 1;
}
.check-list--x li::before { content: "\2715"; background: rgba(192, 80, 63, 0.12); color: #c0503f; }
.check-list--check li::before { content: "\2713"; background: var(--teal); color: #fff; }

/* Amenity checklist */
.amenities { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px; list-style: none; margin: 0; padding: 0; }
@media (min-width: 700px) { .amenities { grid-template-columns: repeat(4, 1fr); } }
.amenities li { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 600; font-size: 0.95rem; }
.amenities li::before { content: "✔"; color: var(--teal); font-weight: 800; }
.bg-navy .amenities li::before { color: var(--gold); }

/* Split feature row */
.split { display: grid; gap: 36px; align-items: center; grid-template-columns: 1fr; }
@media (min-width: 860px) { .split { grid-template-columns: 1fr 1fr; } .split.reverse > :first-child { order: 2; } }
.split__media {
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md);
  background: var(--aqua); min-height: 280px; display: grid; place-items: center;
}
.split__media img { width: 100%; height: 100%; object-fit: cover; }

/* Testimonial */
.reviews-embed {
  background: #fff; border: 1px dashed var(--teal); border-radius: var(--radius);
  padding: 40px 24px; text-align: center; color: var(--muted);
}
.testimonial { background: #fff; border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.testimonial__stars { color: var(--gold); font-size: 1.1rem; letter-spacing: 2px; }
.testimonial p { font-size: 1.02rem; color: var(--ink); margin: 12px 0; }
.testimonial__name { font-family: var(--font-display); font-weight: 700; color: var(--navy); }

/* Contact / info list */
.info-list { list-style: none; margin: 0; padding: 0; }
.info-list li { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 16px; }
.info-list .ico { color: var(--teal); flex: none; font-size: 1.2rem; }
.bg-navy .info-list .ico { color: var(--gold); }

/* Map */
.map-embed { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--line); }
.map-embed iframe { display: block; width: 100%; min-height: 340px; border: 0; }

/* Form placeholder (Paperform) */
.form-embed {
  background: #fff; border: 2px dashed var(--teal); border-radius: var(--radius);
  padding: 32px; color: var(--ink);
}
.form-embed h3 { color: var(--navy); }
.form-embed ul { color: var(--muted); }
.form-embed .recipient { font-size: 0.9rem; color: var(--muted); margin-top: 12px; }

/* CTA band */
.cta-band { background: var(--sunset); color: #fff; text-align: center; }
.cta-band h2 { color: #fff; }
.cta-band .btn--ghost { border-color: #fff; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-deep); color: rgba(255, 255, 255, 0.75); }
.site-footer .container { padding-top: 56px; padding-bottom: 32px; }
.footer-grid { display: grid; gap: 36px; grid-template-columns: 1fr; }
@media (min-width: 780px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.site-footer img.footer-logo { height: 56px; width: auto; margin-bottom: 16px; }
.site-footer h4 { color: var(--gold); font-size: 14px; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 16px; }
.site-footer a { color: rgba(255, 255, 255, 0.75); text-decoration: none; }
.site-footer a:hover { color: var(--gold); }
.footer-links { list-style: none; margin: 0; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-contact li { display: flex; gap: 10px; margin-bottom: 12px; align-items: flex-start; }
.footer-contact .ico { color: var(--gold); flex: none; }
.footer-social { display: flex; gap: 14px; margin-top: 16px; }
.footer-social a { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; background: rgba(255, 255, 255, 0.08); }
.footer-social a:hover { background: var(--teal); }
.footer-tagline { font-family: var(--font-display); font-weight: 700; font-style: italic; color: #fff; font-size: 1.05rem; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.1); }
.footer-bottom .container { display: flex; flex-wrap: wrap; gap: 10px; justify-content: space-between; align-items: center; padding: 18px 24px; font-size: 13px; }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn--free, .hero__palm, .hero__spark { animation: none !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .card:hover, .menu-card:hover, .btn:hover { transform: none; }
}
