/* ============================================================
   NAUTICAL POINT RV PARK — Coastal / Formal theme
   Palette: deep navy + coastal/gulf blue structure, coral CTA,
   warm sand highlight (stats/trust bar), warm cream neutrals
   Type: Poppins (display), Inter (body), Pacifico (accent)
   ============================================================ */

:root {
  /* Neutrals / backgrounds */
  --bg-page:        #F7F3EA;  /* warm cream — base page background */
  --bg-soft:        #E7DBC7;  /* secondary / alt-section background — cream/sand blend */
  --highlight:      #D7C2A3; /* warm sand — stats/trust bar + accent text on dark */
  --highlight-tint: #F1EADF; /* pale tint of highlight — chips, icon bg */
  --status-go:      #4ADE80; /* "go" green — live/accepting status signal on dark */

  /* Structure (navy/blue) */
  --structure-900: #054362;  /* deep brand navy — header, footer, darkest sections */
  --structure-700: #07516B;  /* coastal blue — large feature sections, major cards, hero info panel */
  --structure-600: #4F9CAF;  /* gulf blue — icons, accents, secondary elements */
  --structure-100: #DFEDF1;  /* pale tint of gulf blue — chips, icon bg */

  /* Teal — aliased to the structure (coastal/gulf blue) scale so audience
     cards etc. stay inside the 6-color brand palette. */
  --teal-700: #07516B;  /* coastal blue — parallels --structure-700 */
  --teal-500: #4F9CAF;  /* gulf blue — parallels --structure-600 */
  --teal-100: #DFEDF1;  /* pale tint — chips, icon bg */

  /* Call to action (coral) */
  --cta-600: #CB522C;
  --cta-500: #EF6034;  /* coral — primary CTA */
  --cta-400: #F2805D;
  --cta-100: #FDEFEB;  /* pale tint — chips, icon bg */

  /* Text */
  --ink:       #2B2B2B;  /* body text */
  --ink-soft:  #6b6b6b;
  --line:      #EDE4D5;

  /* Gradients */
  --grad-structure: linear-gradient(120deg, #4F9CAF 0%, #07516B 55%, #054362 100%);
  --grad-cta:       linear-gradient(120deg, #EF6034 0%, #F2805D 100%);

  /* Shadows */
  --sh-sm:  0 4px 14px -6px rgba(5,67,98,0.30);
  --sh-md:  0 14px 34px -16px rgba(5,67,98,0.35);
  --sh-lg:  0 28px 60px -28px rgba(5,67,98,0.45);
  --sh-pop: 0 12px 26px -10px rgba(239,96,52,0.55);

  --radius: 18px;
  --radius-lg: 28px;
  --container: 1200px;

  /* Approx rendered height of the chrome that sits in normal flow above the
     hero (.topbar + .site-header .nav) — used so the hero can size itself to
     "rest of the viewport" instead of a fixed pixel guess. Not live-measured;
     revisit if the topbar tagline or nav ever change size meaningfully. */
  --topbar-h: 40px;  /* bumped from 36px — tagline text grew larger + gained an icon */
  --nav-h: 82px;
  --chrome-h: calc(var(--topbar-h) + var(--nav-h));
}

/* ---------- reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

/* ---------- accessibility utilities ---------- */
/* Visually hides content while keeping it in the accessibility tree — for labels/headings
   that need to exist for screen readers/heading navigation but shouldn't show on screen. */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--structure-900); color: #fff; font-family: 'Poppins', sans-serif;
  font-weight: 600; font-size: 14px; padding: 12px 18px; border-radius: 8px;
  transition: top .15s ease;
}
.skip-link:focus { top: 12px; }
body {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg-page);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3, h4, h5 {
  font-family: 'Poppins', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.08;
  color: var(--structure-900);
  letter-spacing: -0.02em;
}
img { max-width: 100%; display: block; }
a { color: var(--structure-600); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--cta-500); }
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
section { padding: 88px 0; }

/* ---------- shared bits ---------- */
.eyebrow {
  font-family: 'Pacifico', cursive;
  font-size: 22px;
  font-weight: 400;
  color: var(--cta-500);
  letter-spacing: 0;
  line-height: 1;
}
.kicker {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--structure-600);
  background: var(--structure-100);
  padding: 6px 14px;
  border-radius: 999px;
}
.section-head { max-width: 720px; margin: 0 auto 54px; text-align: center; }
.section-head .eyebrow { display: block; margin-bottom: 10px; }
.section-head h2 { font-size: clamp(30px, 4.4vw, 50px); margin-bottom: 16px; }
.section-head p { font-size: 18px; color: var(--ink-soft); }

.lead { font-size: 19px; color: var(--ink-soft); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 16px;
  padding: 15px 30px; border-radius: 6px; border: 1px solid #000; cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  white-space: nowrap; line-height: 1;
}
.btn-primary { background: var(--cta-500); color: #fff; font-weight: 700; box-shadow: var(--sh-pop); }
.btn-primary:hover { color:#fff; transform: translateY(-3px) scale(1.02); box-shadow: 0 18px 34px -10px rgba(239,96,52,0.7); }

/* Hero CTA — bigger, black text, hover shifts to coastal blue (distinct from the site-wide .btn-primary above) */
.hero-cta .btn-primary {
  font-size: 19px; padding: 20px 42px; color: #000;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}
.hero-cta .btn-primary:hover { color: var(--structure-700); }
.btn-ocean { background: var(--grad-structure); color:#fff; box-shadow: var(--sh-md); }
.btn-ocean:hover { color:#fff; transform: translateY(-3px); }
.btn-ghost { background: rgba(255,255,255,0.14); color:#fff; border:1px solid #000; }
.btn-ghost:hover { background:#fff; color: var(--structure-700); }
.btn-outline { background:#fff; color: var(--structure-700); border:1px solid #000; }
.btn-outline:hover { border-color: var(--cta-500); color: var(--cta-500); transform: translateY(-2px); }
.btn-sm { padding: 11px 20px; font-size: 14px; }

/* ============================================================
   TOP / UTILITY BAR
   ============================================================ */
.topbar {
  background: var(--structure-900);
  color: var(--structure-100);
  font-size: 13px;
  font-weight: 500;
}
.topbar .container { display: flex; justify-content: center; align-items: center; gap: 12px 18px; padding-top: 7px; padding-bottom: 7px; flex-wrap: wrap; }
.topbar a:hover { color: var(--highlight); }
/* Gold, not coral — coral's already the CTA color, and navy+gold is a classic
   nautical pairing, so the urgency banner stands out without competing with it. */
.tb-tagline {
  display: inline-flex; align-items: center; gap: 7px;
  color: #E3A857; font-weight: 700; font-size: 15px; letter-spacing: 0.01em;
}
.tb-tagline-ico { font-size: 16px; }
.tb-actions { display: flex; align-items: center; gap: 14px; }
.tb-phone { color: #fff; font-weight: 700; white-space: nowrap; }
.btn-xs { padding: 7px 16px; font-size: 13px; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--structure-900);
  box-shadow: var(--sh-sm);
}
.nav {
  position: relative; /* anchors the absolutely-centered mobile hamburger */
  display: grid; grid-template-columns: auto 1fr auto; align-items: center;
  gap: 24px; padding: 12px 0;
}
.brand img { height: 58px; width: auto; }
.nav-links { display: flex; align-items: center; justify-content: center; gap: 4px; list-style: none; }
.nav-links a {
  font-family: 'Poppins', sans-serif; font-weight: 500; font-size: 15px; color: #fff;
  padding: 9px 15px; transition: color .15s ease;
}
.nav-links a:hover,
.nav-links a.active { color: var(--cta-500); }
.nav-cta { display: flex; align-items: center; gap: 16px; }

/* Header CTA — "Call For Details" */
.nav-call {
  display: inline-flex; align-items: center; gap: 8px; white-space: nowrap;
  font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 13px; line-height: 1;
  color: #fff; background: var(--structure-900); border: 2px solid #fff;
  padding: 8px 16px; border-radius: 6px;
  transition: background .18s ease, transform .18s ease;
}
.nav-call:hover { background: var(--cta-500); color: #fff; transform: translateY(-2px); }
.nav-call svg { width: 15px; height: 15px; flex-shrink: 0; fill: #fff; }
@media (min-width: 961px) {
  .nav-call { font-size: 16px; padding: 14px 28px; }
  .nav-call svg { width: 18px; height: 18px; }
}

/* Mobile hamburger — centered in the header bar; 3 terracotta bars that
   animate into an X (via .site-header.open) instead of swapping glyphs. */
.nav-toggle {
  display: none;
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  background: var(--structure-900); border: 0; width: 46px; height: 46px;
  border-radius: 6px; cursor: pointer;
}
.nav-toggle-bar {
  position: absolute; left: 50%; top: 50%;
  width: 22px; height: 2px; border-radius: 2px; background: var(--cta-500);
  transform: translate(-50%, -50%);
  transition: transform .25s ease, opacity .2s ease;
}
.nav-toggle-bar:nth-child(1) { transform: translate(-50%, calc(-50% - 7px)); }
.nav-toggle-bar:nth-child(3) { transform: translate(-50%, calc(-50% + 7px)); }
.site-header.open .nav-toggle-bar:nth-child(1) { transform: translate(-50%, -50%) rotate(45deg); }
.site-header.open .nav-toggle-bar:nth-child(2) { opacity: 0; }
.site-header.open .nav-toggle-bar:nth-child(3) { transform: translate(-50%, -50%) rotate(-45deg); }

@media (max-width: 960px) {
  /* Logo (58px tall) renders ~174px wide at its real aspect ratio — combined
     with the CTA and the 24px grid gaps, that's wider than a phone's content
     box, so the middle spacer column collapsed to 0 and the CTA slid in
     close enough to center to sit under the absolutely-centered hamburger,
     hiding its icon/left border. Shrinking the logo and tightening the gaps
     here restores real clearance instead of just nudging the CTA a few px. */
  .nav { gap: 10px; }
  .brand img { height: 40px; }
  .nav-call { padding: 8px 12px; gap: 6px; }
  .nav-call svg { width: 14px; height: 14px; }
  .nav-links { display: none; }

  /* Dissolve the .nav-cta wrapper so the CTA and the toggle become direct
     grid items of .nav again — that puts the toggle in the middle (1fr)
     column, which is real flexible track space, not a page-centered overlay
     sitting on top of whatever happens to be underneath it. Grid tracks
     can't overlap, so this can't repeat the icon/border-getting-covered bug
     no matter how wide the logo or CTA end up being. */
  .nav-cta { display: contents; }
  .nav-toggle {
    order: 2; justify-self: center;
    display: inline-flex; align-items:center; justify-content:center;
    position: relative; left: auto; top: auto; transform: none; /* stay a positioned box so the 3 bars still center *inside* the button, not inside .nav */
  }
  .nav-call { order: 3; }
  .site-header.open .nav-links {
    display: flex; flex-direction: column; align-items: stretch;
    position: absolute; left: 0; right: 0; top: 100%;
    background: var(--structure-900); padding: 14px; gap: 4px; box-shadow: var(--sh-md);
  }
  .site-header.open .nav-links a { padding: 13px 16px; } /* bigger tap targets; color/hover inherited from .nav-links a */
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; color: #fff; isolation: isolate;
  /* svh (not vh) so mobile browser toolbars don't make the hero taller than
     the actually-visible viewport; min-height is a floor, not a cap — it
     won't clip content, it just stops guaranteeing an above-the-fold fit if
     content genuinely needs more room than that. */
  min-height: calc(100svh - var(--chrome-h));
  display: flex;
  align-items: center;
  padding: 104px 0 96px;
  background: var(--hero-img, none) center/cover no-repeat;
  background-color: var(--structure-700);
}
.hero > .container { width: 100%; position: relative; z-index: 2; }

/* Rotating hero background slideshow */
.hero-slider { background-image: none; }
.hero-slides { position:absolute; inset:0; z-index:-3; overflow:hidden; }
.hero-slide {
  position:absolute; inset:0;
  background-size:cover; background-position:center; background-repeat:no-repeat;
  opacity:0; transition: opacity 1.6s ease-in-out;
}
.hero-slide.is-active { opacity:1; }
@media (prefers-reduced-motion: reduce) {
  .hero-slide { transition: none; }
}
.hero-grid { display: grid; grid-template-columns: 1.25fr 0.75fr; gap: 56px; align-items: center; }

/* Flat, uniform, light transparent black — same darkness everywhere, no
   directional gradient, no blue tint. Sits above the bg-image/hero-slides,
   below the actual content (see .hero > .container z-index below). */
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(0,0,0,0.28); pointer-events: none; z-index: 1;
}

.hero .eyebrow {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cta-400);
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero .eyebrow-ico { font-size: 15px; }

/* "Light 3D" text: a thin bright edge where light would catch a raised
   surface, a couple of tight dark steps for the extrusion, then one soft
   blurred shadow underneath for lift — replaces the old hard stroke. */
.hero h1 {
  color:#fff; font-size: clamp(40px, 6.4vw, 78px); margin: 14px 0 28px;
  text-shadow:
    0 1px 0 rgba(255,255,255,0.35),
    0 2px 1px rgba(0,0,0,0.30),
    0 4px 3px rgba(0,0,0,0.22),
    0 10px 16px rgba(0,0,0,0.38);
}
.hero h1 .hl { color: var(--cta-500); }
.hero-subtitle {
  font-family:'Poppins',sans-serif; font-weight:600; color:#fff;
  font-size: clamp(19px, 2.4vw, 26px); max-width:640px; margin: 0 0 10px;
  text-shadow: 0 1px 0 rgba(255,255,255,0.3), 0 2px 6px rgba(0,0,0,0.4);
}
.hero p {
  font-size: 19px; font-weight: 700; color: rgba(255,255,255,0.96); max-width: 560px; margin-bottom: 30px;
  text-shadow: 0 1px 0 rgba(255,255,255,0.2), 0 2px 6px rgba(0,0,0,0.4);
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

/* CTA — border dropped, raised/glossy 3D in its place: inset top highlight,
   inset lower shadow for curvature, ambient drop shadow for lift off the
   photo. Scoped to .hero so cta-band / card "Book" buttons are untouched. */
.hero .btn-primary {
  border: none;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.5),
    inset 0 -3px 6px rgba(0,0,0,0.18),
    0 8px 16px -4px rgba(0,0,0,0.45);
}
.hero .btn-primary:hover {
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.5),
    inset 0 -3px 6px rgba(0,0,0,0.18),
    0 12px 22px -4px rgba(0,0,0,0.55);
}

/* glass info card */
.glass-card {
  background: rgba(7,81,107,0.42);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius-lg);
  padding: 28px; backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  /* Same lift logic as .hero .btn-primary: inset top highlight for a touch
     of glass curvature, ambient shadow underneath so it reads as sitting
     slightly above the photo rather than flat against it. */
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.3),
    0 14px 28px -10px rgba(0,0,0,0.45);
}
.glass-card h2 { color:#fff; font-size: 13px; letter-spacing:.14em; text-transform:uppercase; padding-bottom:14px; margin-bottom:6px; border-bottom:1px solid rgba(255,255,255,0.2); }
.glass-row { display:flex; justify-content:space-between; align-items:baseline; gap: 20px; padding: 11px 0; border-bottom:1px dashed rgba(255,255,255,0.16); }
.glass-row:last-child { border-bottom:0; }
.glass-row .l { flex: 0 0 auto; font-size: 13px; text-transform:uppercase; letter-spacing:.06em; color: rgba(255,255,255,0.7); }
.glass-row .v { flex: 1 1 auto; text-align: right; font-family:'Poppins',sans-serif; font-weight:600; color:#fff; }
.glass-row .v.live { color: var(--status-go); }

/* wave divider — curves the bottom of each hero into the next section */
.wave { display:block; width:100%; height: 72px; margin-top: -1px; }
.wave path { fill: var(--bg-page); }
@media (max-width: 600px) { .wave { height: 44px; } }

/* ============================================================
   ADDRESS STRIP — very narrow band, directly under the hero
   ============================================================ */
.address-strip { background: var(--structure-900); padding: 0; }
.address-strip-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 10px 24px;
  font-family: 'Poppins', sans-serif; font-size: 12.5px; font-weight: 500;
  color: rgba(255,255,255,0.82);
}
.addr-item { white-space: nowrap; }
.addr-left { display: inline-flex; align-items: center; gap: 8px; color: var(--highlight); font-weight: 600; }
.addr-ico { font-size: 14px; }
.addr-center { flex: 1 1 auto; text-align: center; color: #fff; }
.addr-right {
  display: inline-flex; align-items: center; gap: 7px;
  color: var(--highlight); font-variant-numeric: tabular-nums; letter-spacing: 0.02em;
  transition: color .15s ease;
}
.addr-right:hover { color: #fff; }
.addr-pin { font-size: 13px; }

@media (max-width: 700px) {
  .address-strip-inner {
    flex-direction: column; align-items: center; text-align: center; gap: 4px;
    padding: 12px 24px;
  }
  .addr-center { order: 1; }
  .addr-left { order: 2; }
  .addr-right { order: 3; }
}

/* ============================================================
   STATS STRIP
   ============================================================ */
.trust-banner { background: var(--structure-700); padding: 36px 0; }
.trust-grid { display:grid; grid-template-columns: repeat(6,1fr); column-gap: 16px; }
.trust-item { text-align:center; }
.trust-item b {
  display:block; font-family:'Poppins',sans-serif; font-weight:600; font-size: 26px; line-height:1;
  color: #fff; white-space:nowrap; font-variant-numeric: tabular-nums;
}
.trust-item b.icon { font-size: 22px; filter: brightness(0) invert(1); }
.trust-item span { display:block; margin-top:6px; font-size:12.5px; color: rgba(255,255,255,0.88); line-height:1.3; }

/* ============================================================
   SPLIT / STORY
   ============================================================ */
.split { display:grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items:center; }
.split.reverse .split-media { order: 2; }
.split-media { position:relative; }
.split-media img { width:100%; border-radius: var(--radius-lg); box-shadow: var(--sh-lg); aspect-ratio: 4/3; object-fit:cover; }
.split-media .float-chip {
  position:absolute; bottom: -18px; left: 24px;
  background:#fff; border-radius: 14px; padding: 14px 20px; box-shadow: var(--sh-md);
  display:flex; align-items:center; gap:12px; font-family:'Poppins',sans-serif; font-weight:600; color: var(--structure-900);
}
.split-media .float-chip .dot { width:40px; height:40px; border-radius:50%; background: var(--grad-structure); color:#fff; display:flex; align-items:center; justify-content:center; font-size:20px; }
.split-body h2 { font-size: clamp(28px,4vw,46px); margin-bottom: 18px; }
.split-body p { color: var(--ink-soft); margin-bottom: 16px; }
.signature { display:flex; align-items:center; gap:14px; margin-top: 26px; padding-top: 22px; border-top:1px solid var(--line); }
.signature .star { width:46px; height:46px; border-radius:50%; background: var(--grad-cta); color:#fff; display:flex; align-items:center; justify-content:center; font-size:20px; }
.signature b { display:block; font-family:'Poppins',sans-serif; color: var(--structure-900); }
.signature span { font-size:14px; color: var(--ink-soft); }

/* ============================================================
   LONG-TERM STAYS BAND
   ============================================================ */
/* No scrim right now — white-on-gulf-blue is ~3.1:1, under WCAG AA's 4.5:1 for the body copy.
   Contrast fix intentionally deferred/TBD. */
.longterm-band { background: linear-gradient(120deg, var(--structure-700) 0%, var(--structure-600) 100%); padding: 84px 0; }
.longterm-band .split-body h2 { color:#fff; }
.longterm-band .split-body p { color: rgba(255,255,255,0.92); }
.longterm-band .split-media img { box-shadow: var(--sh-lg); }

/* ============================================================
   SITE / ROOM CARDS
   ============================================================ */
.alt { background: linear-gradient(180deg, var(--bg-soft), var(--bg-page)); }
.cards-3 { display:grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.card {
  background:#fff; border-radius: var(--radius-lg); overflow:hidden;
  border:1px solid var(--line); box-shadow: var(--sh-sm); transition: transform .22s ease, box-shadow .22s ease;
  display:flex; flex-direction:column;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); }
.card-media { position:relative; aspect-ratio: 3/2; overflow:hidden; }
.card-media img { width:100%; height:100%; object-fit:cover; transition: transform .4s ease; }
.card:hover .card-media img { transform: scale(1.06); }
.card-badge {
  position:absolute; top:14px; left:14px; background: var(--grad-cta); color:#fff;
  font-family:'Poppins',sans-serif; font-weight:600; font-size:12px; letter-spacing:.06em;
  text-transform:uppercase; padding:6px 14px; border-radius:999px; box-shadow: var(--sh-sm);
}
.card-body { padding: 24px 24px 26px; display:flex; flex-direction:column; flex:1; }
.card-body h3 { font-size: 24px; margin-bottom: 10px; }
.card-body p { color: var(--ink-soft); font-size: 15.5px; margin-bottom: 18px; }
.feature-list { list-style:none; display:flex; flex-direction:column; gap:9px; margin-bottom: 22px; }
.feature-list li { display:flex; align-items:center; gap:10px; font-size:15px; color: var(--ink); }
.feature-list li::before { content:"✦"; color: var(--cta-500); font-size:14px; }
.card-foot { margin-top:auto; display:flex; justify-content:space-between; align-items:center; padding-top: 18px; border-top:1px solid var(--line); }
.card-foot .tag { font-size:13px; font-weight:600; color: var(--ink-soft); }
.card-price { font-family:'Poppins',sans-serif; font-weight:700; font-size: 19px; color: var(--cta-500); margin-bottom: 18px; }
.card-note { font-size:12.5px; font-style:italic; color: rgba(255,255,255,0.6); margin-top:-10px; margin-bottom:18px; }

/* "Choose Your Site" cards (RV Sites cards, homepage + /sites.php) — navy card body */
.cards-3 .card { background: var(--structure-900); border-color: rgba(255,255,255,0.12); }
.cards-3 .card-body h3 { color: #fff; }
.cards-3 .card-body p:not(.card-price) { color: rgba(255,255,255,0.75); }
.cards-3 .feature-list li { color: rgba(255,255,255,0.9); }
.cards-3 .card-foot { border-top-color: rgba(255,255,255,0.15); }
.cards-3 .card-foot .tag { color: rgba(255,255,255,0.65); }

/* ============================================================
   AMENITIES GRID
   ============================================================ */
.amen-grid { display:grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.amen {
  background:#fff; border-radius: var(--radius); padding: 28px 22px; text-align:center;
  border:1px solid var(--line); box-shadow: var(--sh-sm); transition: transform .2s ease, background .2s ease;
}
.amen:hover { transform: translateY(-5px); background: var(--bg-page); box-shadow: var(--sh-md); }
.amen .ico {
  width:64px; height:64px; margin:0 auto 16px; border-radius:20px;
  background: var(--structure-100); color: var(--structure-700);
  display:flex; align-items:center; justify-content:center; font-size:30px;
  transition: transform .25s ease;
}
.amen:nth-child(3n) .ico { background: var(--highlight-tint); color: var(--cta-600); }
.amen:nth-child(3n+1) .ico { background: var(--cta-100); color: var(--structure-900); }
.amen:hover .ico { transform: rotate(-6deg) scale(1.08); }
.amen h3 { font-size: 18px; margin-bottom: 8px; }
.amen p { font-size: 14.5px; color: var(--ink-soft); }

/* ============================================================
   HIGHLIGHTS (below trust banner)
   ============================================================ */
.highlights-grid { display:grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.highlight {
  background:#fff; border-radius: var(--radius); padding: 28px 22px; text-align:center;
  border:1px solid var(--line); border-left: 4px solid var(--structure-600);
  box-shadow: var(--sh-sm); transition: transform .2s ease, box-shadow .2s ease, border-left-color .2s ease;
}
.highlight:hover { transform: translateY(-5px); box-shadow: var(--sh-md); border-left-color: var(--cta-500); }
.highlight .ico {
  width:56px; height:56px; margin:0 auto 16px; border-radius:18px;
  background: var(--cta-100); color: var(--structure-900);
  display:flex; align-items:center; justify-content:center; font-size:26px;
}
.highlight h3 { font-size: 18px; margin-bottom: 8px; }
.highlight p { font-size: 14.5px; color: var(--ink-soft); }

/* ============================================================
   WELCOME / AUDIENCE CARDS
   ============================================================ */
.welcome-grid { display:grid; grid-template-columns: repeat(2,1fr); gap: 22px; }
.welcome-card {
  /* Same top-to-bottom flow as the "Choose Your Site" .card: media/icon
     on top, text below — was icon-left/text-right in a 2-col grid before.
     Teal-700 card — a second dark accent alongside the navy Choose Your
     Site cards, so text/icon below are flipped light for contrast. */
  background: var(--teal-700); border-radius: var(--radius-lg); padding: 26px 22px;
  border: 1px solid rgba(255,255,255,0.12); box-shadow: var(--sh-sm);
  display:flex; flex-direction:column; align-items:flex-start;
  transition: transform .2s ease, box-shadow .2s ease;
}
.welcome-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.welcome-card .wc-ico {
  width:60px; height:60px; border-radius:18px; margin-bottom:16px;
  /* translucent white, not navy — navy on teal-700 is too close in
     lightness to read as a distinct badge shape */
  background: rgba(255,255,255,0.16); border: 1px solid rgba(255,255,255,0.25);
  color:#fff; display:flex; align-items:center; justify-content:center; font-size:26px; flex-shrink:0;
}
.welcome-card h3 { color:#fff; font-size: 21px; margin-bottom: 8px; }
.welcome-card p { color: rgba(255,255,255,0.92); font-size: 15.5px; }
.welcome-card p + p { margin-top: 10px; }
.welcome-card .pill { display:inline-block; margin-top:12px; font-size:12px; font-weight:700; letter-spacing:.05em; text-transform:uppercase; color: var(--cta-600); background: var(--highlight-tint); padding:5px 12px; border-radius:999px; }

/* ============================================================
   NEARBY / EXPLORE LIST
   ============================================================ */
.nearby-list { display:flex; flex-direction:column; border-top:1px solid var(--line); }
.nearby-row { display:grid; grid-template-columns: 56px 1fr auto; gap: 22px; align-items:center; padding: 22px 8px; border-bottom:1px solid var(--line); transition: background .18s ease, padding .18s ease; }
.nearby-row:hover { background:#fff; padding-left: 18px; }
.nearby-row .n { font-family:'Poppins',sans-serif; font-weight:800; font-size: 22px; color: var(--structure-700); }
.nearby-row .name { font-family:'Poppins',sans-serif; font-weight:600; color: var(--structure-900); font-size: 19px; }
.nearby-row .name span { display:block; font-family:'Inter',sans-serif; font-weight:400; font-size: 14px; color: var(--ink-soft); margin-top:2px; }
.nearby-row .dist { font-family:'Poppins',sans-serif; font-weight:600; font-size:14px; color: var(--cta-500); text-transform:uppercase; letter-spacing:.04em; white-space:nowrap; }

/* ============================================================
   FAQ ACCORDION — native <details>/<summary>, no JS
   ============================================================ */
.faq-list { max-width: 800px; margin: 0 auto; display:flex; flex-direction:column; gap: 14px; }
.faq-item {
  background:#fff; border:1px solid var(--line); border-radius: var(--radius);
  padding: 4px 22px; box-shadow: var(--sh-sm);
}
.faq-item summary {
  display:flex; align-items:center; justify-content:space-between; gap:16px;
  padding: 18px 0; cursor:pointer; list-style:none;
  font-family:'Poppins',sans-serif; font-weight:600; font-size:16.5px; color: var(--structure-900);
}
.faq-item summary::-webkit-details-marker { display:none; }
.faq-item summary::after {
  content:'+'; font-size:24px; line-height:1; font-weight:400; color: var(--cta-500);
  flex-shrink:0; transition: transform .2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { color: var(--ink-soft); font-size:15px; padding-bottom:20px; margin:0; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-band { background: var(--grad-structure); color:#fff; position:relative; overflow:hidden; }
.cta-band .container { position:relative; z-index:1; text-align:center; }
.cta-band h2 { color:#fff; font-size: clamp(28px,4vw,46px); margin-bottom: 14px; }
.cta-band p { color: rgba(255,255,255,0.9); font-size:18px; max-width:620px; margin:0 auto 28px; }
.cta-actions { display:flex; gap:14px; justify-content:center; flex-wrap:wrap; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid { display:grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items:start; }
.info-card { background:#fff; border:1px solid var(--line); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--sh-sm); }
.info-row { display:flex; gap:16px; padding: 16px 0; border-bottom:1px solid var(--line); }
.info-row:last-child { border-bottom:0; }
.info-row .ico { width:46px; height:46px; flex-shrink:0; border-radius:14px; background: var(--structure-100); color: var(--structure-700); display:flex; align-items:center; justify-content:center; font-size:20px; }
.info-row b { display:block; font-family:'Poppins',sans-serif; color: var(--structure-900); }
.info-row span, .info-row a { color: var(--ink-soft); }
.map-embed { border:0; width:100%; height:100%; min-height: 420px; border-radius: var(--radius-lg); box-shadow: var(--sh-md); }

/* ============================================================
   ASK NAUTICAL — chat band (pre-footer, all pages)
   ============================================================ */
.ask { background: linear-gradient(180deg, var(--bg-soft), var(--bg-page)); padding: 76px 0; }
.ask-head { text-align:center; max-width: 640px; margin: 0 auto 32px; }
.ask-head .eyebrow { display:block; margin-bottom: 8px; }
.ask-head h2 { font-size: clamp(28px, 4vw, 42px); margin-bottom: 10px; }
.ask-head p { color: var(--ink-soft); }
.chat-card {
  max-width: 640px; margin: 0 auto;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 24px; display: flex; flex-direction: column; box-shadow: var(--sh-md);
}
.chat-head { display:flex; gap:14px; align-items:center; padding-bottom:16px; border-bottom:1px solid var(--line); margin-bottom:16px; }
.chat-head > div:nth-child(2) { flex: 1 1 auto; }
.chat-avatar { width:44px; height:44px; border-radius:50%; background: var(--grad-structure); color:#fff; font-family:'Poppins',sans-serif; font-weight:700; font-size:14px; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.chat-title { font-family:'Poppins',sans-serif; font-weight:600; font-size:18px; color: var(--structure-900); line-height:1.2; }
.chat-sub { font-size:12px; color: var(--ink-soft); margin-top:3px; }
.chat-reset { background:transparent; border:1px solid var(--line); color: var(--ink-soft); width:34px; height:34px; border-radius:10px; font-size:16px; cursor:pointer; flex-shrink:0; transition: background .15s ease, color .15s ease; }
.chat-reset:hover { background: var(--bg-soft); color: var(--structure-900); }
.chat-thread { display:flex; flex-direction:column; gap:10px; overflow-y:auto; min-height:120px; max-height:300px; padding: 2px 2px 12px; }
.chat-bubble { max-width:88%; padding:11px 14px; border-radius:14px; font-size:14.5px; line-height:1.5; word-wrap:break-word; }
.chat-bubble-them { background: var(--bg-page); color: var(--ink); border:1px solid var(--line); border-top-left-radius:4px; align-self:flex-start; }
.chat-bubble-them a { color: var(--cta-500); }
.chat-bubble-you { background: var(--grad-structure); color:#fff; border-top-right-radius:4px; align-self:flex-end; }
.chat-form { display:flex; flex-direction:column; gap:10px; padding-top:16px; border-top:1px solid var(--line); }
.chat-row { display:grid; grid-template-columns:1fr 1fr; gap:10px; }
.chat-form input, .chat-form textarea { font-family:'Inter',sans-serif; font-size:14px; padding:10px 12px; border:1px solid var(--line); border-radius:10px; background:#fff; color:var(--ink); width:100%; }
.chat-form input:focus, .chat-form textarea:focus { outline:none; border-color: var(--cta-500); box-shadow: 0 0 0 3px rgba(239,96,52,0.5); }
.chat-input-row { display:grid; grid-template-columns:1fr auto; gap:8px; align-items:stretch; }
.chat-input-row textarea { resize:none; min-height:46px; max-height:140px; overflow-y:auto; }
.chat-send-btn { width:48px; background: var(--grad-cta); color:#fff; border:0; border-radius:12px; font-size:18px; font-weight:700; cursor:pointer; transition: transform .15s ease; }
.chat-send-btn:hover { transform: translateY(-1px); }
.chat-send-btn:active { transform: scale(.95); }
.chat-send-btn[disabled] { opacity:.5; cursor:wait; }
.chat-status { font-size:12px; color: var(--ink-soft); min-height:16px; }
.chat-status.err { color:#c0392b; }
.chat-typing { display:inline-flex; align-items:center; gap:4px; padding:14px 16px !important; }
.chat-typing span { width:6px; height:6px; border-radius:50%; background: var(--ink-soft); opacity:.4; animation: chat-typing-blink 1.2s infinite ease-in-out; }
.chat-typing span:nth-child(2) { animation-delay:.15s; }
.chat-typing span:nth-child(3) { animation-delay:.30s; }
@keyframes chat-typing-blink { 0%,60%,100% { opacity:.25; transform:translateY(0); } 30% { opacity:1; transform:translateY(-3px); } }
@media (max-width: 600px) { .chat-row { grid-template-columns: 1fr; } }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--structure-900); color: rgba(255,255,255,0.72); padding: 70px 0 28px; }
/* TEMP: 3 columns while the 'Explore' footer column is unlinked — restore to "1.6fr 1fr 1fr 1.2fr" alongside it. */
.footer-grid { display:grid; grid-template-columns: 1.6fr 1fr 1.2fr; gap: 44px; padding-bottom: 40px; border-bottom:1px solid rgba(255,255,255,0.12); }
.footer-brand img { width: min(430px, 100%); height:auto; display:block; margin-bottom:18px; }
.footer-brand p { font-size: 15px; max-width: 400px; }
.footer-nap { margin-top: 16px; }
.footer-col h5 { font-family:'Poppins',sans-serif; color: var(--highlight); font-size: 13px; letter-spacing:.12em; text-transform:uppercase; margin-bottom: 18px; }
.footer-col ul { list-style:none; display:flex; flex-direction:column; gap:11px; }
.footer-col a { color: rgba(255,255,255,0.72); font-size:15px; }
.footer-col a:hover { color: var(--highlight); }
.footer-contact { font-style:normal; font-size:15px; line-height:1.7; }
.footer-contact b { color:#fff; display:block; font-family:'Poppins',sans-serif; margin-bottom:6px; }
.footer-contact a { color: rgba(255,255,255,0.72); }
.footer-map { margin-top:16px; border-radius: var(--radius); overflow:hidden; border:1px solid rgba(255,255,255,0.15); filter: grayscale(.15) contrast(1.05); }
.footer-map iframe { display:block; width:100%; }
.footer-bottom { display:flex; justify-content:space-between; align-items:center; gap:14px; flex-wrap:wrap; padding-top: 24px; font-size: 13px; color: rgba(255,255,255,0.5); }
.footer-bottom .coord { color: var(--structure-100); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes floaty { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
@keyframes fadeUp { from{opacity:0;transform:translateY(22px)} to{opacity:1;transform:translateY(0)} }
.hero .eyebrow, .hero h1, .hero p, .hero-cta { animation: fadeUp .8s cubic-bezier(.16,1,.3,1) backwards; }
.hero h1 { animation-delay:.1s; } .hero p { animation-delay:.2s; }
.hero-cta { animation-delay:.3s; }
.glass-card { animation: floaty 6s ease-in-out infinite; }
@media (prefers-reduced-motion: reduce) { * { animation: none !important; } }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1023px) {
  .hero { padding: 64px 0 56px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  /* Stack order on mobile: eyebrow/h1/copy, then the info box, then the CTA button last. */
  .hero-grid > div:first-child { display: contents; }
  .hero-grid .eyebrow { order: 1; }
  .hero-grid h1 { order: 2; }
  .hero-grid > div:first-child > p { order: 3; }
  .hero-grid .glass-card { order: 4; }
  .hero-grid .hero-cta { order: 5; }
  .split, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .split.reverse .split-media { order: 0; }
  .cards-3 { grid-template-columns: repeat(2,1fr); }
  .amen-grid { grid-template-columns: repeat(2,1fr); }
  .highlights-grid { grid-template-columns: 1fr; }
  /* .welcome-grid: no override needed here anymore — it's 2 columns at every
     width down to the 600px breakpoint below, which drops it to 1. */
  .trust-grid { grid-template-columns: repeat(3,1fr); row-gap: 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .glass-card { animation: none; }
}
@media (max-width: 600px) {
  section { padding: 60px 0; }
  .hero { padding: 44px 0 36px; }
  /* The glass-card stat panel (sites/pier/years/etc.) repeats verbatim in the
     .trust-banner strip right below the hero — on phones, stacking eyebrow +
     h1 + copy + a 5-row card + the CTA button in one hero would push the
     button well past the fold. Dropping the card here trades nothing (same
     numbers reappear seconds later) for actually keeping the headline + CTA
     visible on load, which was the point of the min-height change. */
  .hero-grid .glass-card { display: none; }
  .cards-3, .welcome-grid, .footer-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: repeat(2,1fr); }
  .trust-item b { font-size: 28px; }
  .trust-item b.icon { font-size: 26px; }
  .footer-bottom { flex-direction: column; align-items:flex-start; }
}
