/* ==========================================================================
   Happy Days RV Park — shared stylesheet
   Palette is derived from the park logo: red script, royal blue "RV PARK",
   smiley yellow. Layout/scale still follows the River Oaks structure.
   ========================================================================== */

:root {
  --navy:      #12266B;   /* dark bands, footer, top bar */
  --navy-dk:   #0D1C50;
  --blue:      #1A3EA8;   /* logo blue — headings, outline buttons */
  --blue-lt:   #EEF2FD;   /* nav hover wash */
  --red:       #E01B24;   /* logo red — primary CTA */
  --red-dk:    #B3151C;
  --yellow:    #FFD62E;   /* smiley yellow — accents, stars, badges */
  --yellow-dk: #F2B90C;
  --offwhite:  #F4F7FC;   /* section background */
  --body:      #384457;
  --muted:     #6B7280;
  --heading:   #12266B;
  --line:      #E2E8F2;
  --white:     #fff;
}

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html {
  scroll-behavior: smooth; -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(26,62,168,.18);
  scroll-padding-top: 100px;   /* fixed header must not cover a focused element */
}
body {
  font-family: "Red Hat Text", system-ui, -apple-system, sans-serif;
  font-size: 17px; line-height: 27.2px; color: var(--body); background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img, svg, iframe { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

.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:focus {
  position: absolute; top: 8px; left: 8px; z-index: 100; width: auto; height: auto;
  clip: auto; margin: 0; padding: 12px 18px; background: var(--white);
  border-radius: 8px; box-shadow: 0 4px 16px rgba(0,0,0,.2);
}

/* ---------- containers ---------- */
.site-container { max-width: 1290px; margin: 0 auto; padding: 0 24px; }
.wide-container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

/* ---------- header ----------
   Borrowed from Yosef Washes: no utility bar, nav rides transparently over the
   hero on the home page and turns solid once you scroll. Inner pages are solid
   from the start. */
.site-header { position: fixed; inset: 0 0 auto 0; z-index: 50; }
.main-bar {
  background: rgba(255,255,255,.93); backdrop-filter: saturate(180%) blur(8px);
  height: 85px; display: flex; align-items: center; border-bottom: 1px solid var(--line);
  transition: background .25s, border-color .25s, box-shadow .25s;
}
.main-bar.is-solid { box-shadow: 0 2px 14px rgba(18,38,107,.09); }

body.transparent-nav .main-bar { background: transparent; border-color: transparent; backdrop-filter: none; }
body.transparent-nav .main-bar .nav-link { color: rgba(255,255,255,.92); }
body.transparent-nav .main-bar .nav-link:hover,
body.transparent-nav .main-bar .nav-link[aria-current="page"] { background: rgba(255,255,255,.16); color: var(--white); }
body.transparent-nav .main-bar .menu-toggle { color: var(--white); border-color: rgba(255,255,255,.4); }
body.transparent-nav .main-bar .brand-badge { color: var(--white); }  /* "RV PARK" reads white on the hero */
body.transparent-nav .main-bar .btn-outline { color: var(--white); border-color: rgba(255,255,255,.55); }
body.transparent-nav .main-bar .btn-outline:hover { background: var(--white); color: var(--navy); border-color: var(--white); }
/* once scrolled, revert to the solid treatment */
body.transparent-nav .main-bar.is-solid { background: rgba(255,255,255,.93); border-color: var(--line); backdrop-filter: saturate(180%) blur(8px); }
body.transparent-nav .main-bar.is-solid .nav-link { color: var(--navy); }
body.transparent-nav .main-bar.is-solid .nav-link:hover,
body.transparent-nav .main-bar.is-solid .nav-link[aria-current="page"] { background: var(--blue-lt); color: var(--blue); }
body.transparent-nav .main-bar.is-solid .brand-badge { color: var(--blue); }
body.transparent-nav .main-bar.is-solid .menu-toggle { color: var(--navy); border-color: var(--line); }
body.transparent-nav .main-bar.is-solid .btn-outline { color: var(--blue); border-color: var(--blue); }
body.transparent-nav .main-bar.is-solid .btn-outline:hover { background: var(--blue); color: var(--white); }
.main-bar-inner { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.brand { display: flex; align-items: center; flex-shrink: 0; }
.brand-badge { width: 57px; height: 69px; color: var(--blue); }

.main-nav ul { display: flex; align-items: center; gap: 10px; }
.nav-link {
  display: block; font-size: 14px; line-height: 22.4px; font-weight: 500;
  color: var(--navy); padding: 8px 13px; border-radius: 8px;
  transition: background .15s, color .15s;
}
.nav-link:hover { background: var(--blue-lt); color: var(--blue); }
.nav-link[aria-current="page"] { background: var(--blue-lt); color: var(--blue); font-weight: 600; }

.header-actions { display: flex; align-items: center; gap: 10px; }
.btn-num { font-weight: 700; }
.menu-toggle {
  display: none; width: 40px; height: 40px; flex-shrink: 0; align-items: center;
  justify-content: center; border-radius: 8px; border: 1px solid var(--line);
  color: var(--navy); transition: background .15s;
}
.menu-toggle:hover { background: var(--blue-lt); }

#mobile-menu { display: none; background: var(--white); border-top: 1px solid var(--line); box-shadow: 0 12px 24px rgba(0,0,0,.09); }
#mobile-menu.open { display: block; }
#mobile-menu ul { display: flex; flex-direction: column; gap: 2px; padding: 12px 0; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px; white-space: nowrap;
  border-radius: 8px; font-size: 16px; line-height: 25.6px; text-align: center;
  transition: background .2s, color .2s, box-shadow .2s, border-color .2s;
  box-shadow: 0 0 0 -7px rgba(0,0,0,0);
}
.btn-primary { background: var(--red); color: var(--white); font-weight: 600; padding: 10px 25px; }
.btn-primary:hover { background: var(--red-dk); box-shadow: 0 15px 25px -7px rgba(224,27,36,.35); }
.btn-outline { background: transparent; color: var(--blue); font-weight: 600; padding: 9px 20px; border: 2px solid var(--blue); }
.btn-outline:hover { background: var(--blue); color: var(--white); }
.btn-dark { background: var(--navy); color: var(--white); font-weight: 500; padding: 12px 23px; }
.btn-dark:hover { background: var(--navy-dk); box-shadow: 0 15px 25px -7px rgba(18,38,107,.35); }
.btn-yellow { background: var(--yellow); color: #1A1A1A; font-weight: 700; padding: 10px 25px; }
.btn-yellow:hover { background: var(--yellow-dk); box-shadow: 0 15px 25px -7px rgba(242,185,12,.4); }
.btn-ghost-light { background: transparent; color: var(--white); font-weight: 600; padding: 9px 20px; border: 2px solid rgba(255,255,255,.55); }
.btn-ghost-light:hover { background: var(--white); color: var(--navy); border-color: var(--white); }

/* ---------- hero (home) ---------- */
/* 780px keeps the hero close to the photo's own 16:9 so almost nothing is
   cropped — the park stays centred and the sun stays in frame. */
.hero { position: relative; min-height: 780px; margin-top: 0; padding-top: 85px; }
.hero-media { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 40%; max-width: none; }
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  /* Light top scrim for nav legibility — kept shallow so the sunset in the
     top-right corner survives. Diagonal scrim carries the hero copy on the left. */
  background:
    linear-gradient(180deg, rgba(9,20,58,.42) 0, rgba(9,20,58,0) 150px),
    linear-gradient(100deg, rgba(9,20,58,.72) 0%, rgba(9,20,58,.40) 52%, rgba(9,20,58,.10) 100%);
}
.hero-inner {
  position: relative; z-index: 2; max-width: 1280px; margin: 0 auto;
  padding: 96px 24px 104px; display: flex; align-items: center; min-height: 560px;
}
.hero-col { display: flex; flex-direction: column; max-width: 660px; }

.hero-title { font-size: 58px; line-height: 64px; font-weight: 800; color: var(--white); letter-spacing: -.5px; text-transform: uppercase; }
.hero-title .accent { color: var(--yellow); }
.hero-tag { font-size: 30px; line-height: 38px; font-weight: 700; letter-spacing: .2px; color: var(--yellow); }
.hero-sub { font-size: 20px; line-height: 32px; color: rgba(255,255,255,.92); }
.hero-stats { padding: 26px 0 0; margin-top: 6px; }
.stat-num { display: block; font-size: 46px; line-height: 56px; font-weight: 800; color: var(--yellow); }
.stat-label { display: block; font-size: 14px; line-height: 22.4px; font-weight: 500; text-transform: uppercase; letter-spacing: .5px; color: rgba(255,255,255,.75); }
.info-pill {
  display: inline-flex; align-items: center; gap: 10px; min-height: 36px;
  background: var(--white); border: 2px solid var(--yellow); border-radius: 30px;
  padding: 5px 15px; box-shadow: 0 4px 6px rgba(0,0,0,.1); max-width: 100%;
  align-self: flex-start; /* hero-col is a flex column — don't stretch full width */
}
.info-pill span { font-size: 13px; line-height: 20.8px; font-weight: 700; color: var(--navy); }

/* ---------- page banner (inner pages) ---------- */
.page-banner { position: relative; height: 220px; margin-top: 85px; display: flex; align-items: center; }
.page-banner img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; max-width: none; }
.page-banner::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(100deg, rgba(9,20,58,.86) 0%, rgba(9,20,58,.62) 100%);
}
.page-banner .site-container { position: relative; z-index: 2; width: 100%; }
.page-banner h1 {
  font-size: 44px; line-height: 56px; font-weight: 800; color: var(--white);
  text-transform: uppercase; letter-spacing: -.2px;
}
/* yellow, not red — red would sink into the dark banner photo */
.page-banner h1 .accent { color: var(--yellow); }
.page-banner p { margin-top: 8px; font-size: 18px; line-height: 28px; color: rgba(255,255,255,.85); max-width: 640px; }
.crumb { font-size: 13px; line-height: 21px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--yellow); }

/* ---------- marquee ---------- */
.marquee { background: var(--navy); padding: 8px 0; overflow: hidden; }
.marquee-track { display: flex; width: max-content; animation: marquee-scroll 180s linear infinite; will-change: transform; }
.marquee-track:hover { animation-play-state: paused; }
.marquee-group { display: flex; align-items: center; white-space: nowrap; flex: 0 0 auto; }
.marquee-item { display: inline-flex; align-items: center; gap: .65em; margin-right: 2.2em; font-style: italic; color: var(--white); font-size: 16.8px; line-height: 21px; }
.marquee-star { color: var(--yellow); letter-spacing: 1.344px; font-style: normal; font-weight: 700; }
@keyframes marquee-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ---------- section furniture ---------- */
.section { padding: 64px 0; }
.section-tight { padding: 48px 0; }
.bg-offwhite { background: var(--offwhite); }
.bg-navy { background: var(--navy); }
/* Heading system borrowed from Yosef Washes: small uppercase eyebrow, then a
   bold uppercase title with one phrase kicked into the accent colour. */
.eyebrow { font-size: 13px; line-height: 21px; font-weight: 800; letter-spacing: 2.2px; text-transform: uppercase; color: var(--red); }
.sec-title {
  font-size: 34px; line-height: 44px; font-weight: 800; letter-spacing: -.2px;
  text-transform: uppercase; color: var(--heading); margin-top: 8px;
}
.sec-title .accent { color: var(--red); }
.sec-title .accent-blue { color: var(--blue); }
.sec-intro { margin-top: 12px; max-width: 760px; color: var(--body); }
.prose p + p { margin-top: 16px; }
.center { text-align: center; }
.stack-24 > * + * { margin-top: 24px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-40 { margin-top: 40px; }
.row-center { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.only-mobile { display: none; }
@media (max-width: 1023px) { .only-mobile { display: inline-flex; } }

/* ---------- stay / rate cards ---------- */
.stay-cards { display: flex; flex-wrap: wrap; justify-content: center; gap: 24px; }
.stay-card {
  flex: 0 0 calc(33.333% - 16px); min-width: 0; background: var(--white);
  border-radius: 12px; box-shadow: 0 2px 16px rgba(18,38,107,.10); overflow: hidden;
  display: flex; flex-direction: column; transition: transform .2s, box-shadow .2s;
  border: 1px solid var(--line);
}
.stay-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(18,38,107,.18); }
.stay-img { position: relative; height: 220px; overflow: hidden; flex-shrink: 0; }
.stay-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.stay-icon {
  position: absolute; bottom: 12px; left: 12px; width: 48px; height: 48px; z-index: 1;
  background: var(--yellow); color: var(--navy); border-radius: 8px;
  display: flex; align-items: center; justify-content: center; box-shadow: 0 1px 6px rgba(0,0,0,.18);
}
.stay-body { padding: 20px 22px 22px; display: flex; flex-direction: column; flex: 1; }
.stay-title { font-size: 20px; line-height: 26px; font-weight: 700; color: var(--heading); }
.stay-price { font-size: 28px; line-height: 34px; font-weight: 700; color: var(--red); margin-top: 8px; }
.stay-price small { font-size: 15px; font-weight: 500; color: var(--muted); }
.stay-text { font-size: 14px; line-height: 23.1px; color: var(--muted); margin-top: 12px; }
.stay-more { display: inline-flex; align-items: center; gap: 4px; font-size: 13px; line-height: 27.2px; font-weight: 600; color: var(--blue); }
.stay-foot { margin-top: auto; padding-top: 16px; text-align: right; }

/* ---------- amenity tiles ---------- */
.am-cards { display: flex; flex-wrap: wrap; gap: 24px; }
.am-card {
  flex: 0 1 calc(25% - 18px); min-width: 220px; background: var(--white);
  border-radius: 12px; box-shadow: 0 2px 12px rgba(18,38,107,.09); overflow: hidden;
  display: flex; flex-direction: column; align-self: stretch;
  transition: transform .2s, box-shadow .2s; border: 1px solid var(--line);
}
.am-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(18,38,107,.16); }
.am-img { position: relative; padding-top: 75%; background: #EDF1F8; }
.am-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.am-label { background: var(--white); padding: 14px 16px; }
.am-label p { font-size: 16px; line-height: 20.8px; font-weight: 600; color: var(--heading); }
.am-label .am-desc { font-size: 14px; line-height: 21px; font-weight: 400; color: var(--muted); margin-top: 4px; }

/* ---------- included list ---------- */
.inc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.inc-card { background: var(--white); border: 1px solid var(--line); border-radius: 12px; padding: 22px 20px; }
.inc-icon {
  width: 42px; height: 42px; border-radius: 999px; background: var(--yellow);
  color: var(--navy); display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.inc-name { display: block; font-size: 15px; line-height: 20px; font-weight: 700; color: var(--heading); }
.inc-meta { display: block; margin-top: 2px; font-size: 12px; line-height: 19.2px; color: var(--muted); }
.inc-text { font-size: 14px; line-height: 22.12px; color: var(--body); margin-top: 16px; }
.inc-head { display: flex; align-items: flex-start; gap: 12.8px; }

/* ---------- how it works (Yosef pattern) ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.step-num { font-size: 13px; font-weight: 800; letter-spacing: 1.6px; color: var(--red); }
.step h3 {
  font-size: 17px; line-height: 24px; font-weight: 800; letter-spacing: .8px;
  text-transform: uppercase; color: var(--heading); margin-top: 10px;
}
.step p { font-size: 15px; line-height: 24px; color: var(--muted); margin-top: 8px; }
.step { border-top: 3px solid var(--line); padding-top: 18px; transition: border-color .2s; }
.step:hover { border-top-color: var(--red); }

/* ---------- FAQ accordion (Yosef pattern) ---------- */
.faq { max-width: 860px; margin: 0 auto; }
.faq-item { border: 1px solid var(--line); border-radius: 12px; background: var(--white); margin-top: 12px; overflow: hidden; }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 22px; text-align: left; font-size: 16px; font-weight: 700; color: var(--heading);
  transition: background .15s;
}
.faq-q:hover { background: var(--blue-lt); }
.faq-q svg { flex-shrink: 0; color: var(--blue); transition: transform .25s; }
.faq-item.open .faq-q svg { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 22px 20px; color: var(--body); font-size: 15px; line-height: 25px; }
.faq-item.open .faq-a { display: block; }

/* ---------- who stays with us ---------- */
.aud-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.aud-chip {
  display: flex; align-items: center; gap: 12px; background: var(--white);
  border: 1px solid var(--line); border-radius: 12px; padding: 16px 18px;
  font-size: 15px; font-weight: 600; color: var(--heading); transition: border-color .2s, transform .2s;
}
.aud-chip:hover { border-color: var(--blue); transform: translateY(-2px); }
.aud-chip span.dot {
  width: 32px; height: 32px; border-radius: 999px; background: var(--yellow); color: var(--navy);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}

/* ---------- rate panel: one offering, two power options ---------- */
.rate-panel {
  max-width: 1060px; margin: 0 auto; background: var(--white);
  border: 1px solid var(--line); border-radius: 20px; overflow: hidden;
  box-shadow: 0 18px 44px rgba(18,38,107,.12);
  display: grid; grid-template-columns: 1.05fr .95fr;
}
.rate-main { padding: 40px; }
.rate-kicker { font-size: 13px; font-weight: 800; letter-spacing: 2.2px; text-transform: uppercase; color: var(--red); }
.rate-name { font-size: 30px; line-height: 38px; font-weight: 800; text-transform: uppercase; color: var(--heading); margin-top: 6px; }
.rate-blurb { margin-top: 12px; font-size: 15px; line-height: 25px; color: var(--muted); }
.rate-list { margin-top: 24px; display: grid; gap: 12px; }
.rate-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; line-height: 24px; }
.rate-list svg { flex-shrink: 0; margin-top: 5px; color: var(--blue); }

.rate-side { background: var(--navy); color: var(--white); padding: 40px; display: flex; flex-direction: column; }
.rate-side h3 { font-size: 12px; font-weight: 800; letter-spacing: 1.8px; text-transform: uppercase; color: var(--yellow); }
.rate-opts { margin-top: 18px; display: grid; gap: 12px; }
.rate-opt {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.16);
  border-radius: 12px; padding: 16px 18px; transition: border-color .2s, background .2s;
}
.rate-opt:hover { background: rgba(255,255,255,.12); border-color: var(--yellow); }
.rate-opt-label { font-size: 15px; font-weight: 700; letter-spacing: .4px; text-transform: uppercase; }
.rate-opt-note { display: block; font-size: 12.5px; font-weight: 400; letter-spacing: 0; text-transform: none; color: rgba(255,255,255,.66); margin-top: 2px; }
.rate-opt-price { font-size: 30px; font-weight: 800; color: var(--yellow); white-space: nowrap; }
.rate-opt-price small { font-size: 13px; font-weight: 600; color: rgba(255,255,255,.66); }
.rate-side-note { margin-top: 18px; font-size: 13px; line-height: 21px; color: rgba(255,255,255,.7); }
.rate-side-cta { margin-top: auto; padding-top: 24px; }
.rate-side-cta .btn { width: 100%; }

/* ---------- fact strip (home welcome) ---------- */
.facts {
  display: flex; flex-wrap: wrap; gap: 0; margin-top: 32px;
  border: 1px solid var(--line); border-radius: 14px; overflow: hidden; background: var(--offwhite);
}
.fact { flex: 1 1 200px; padding: 20px 26px; border-right: 1px solid var(--line); }
.fact:last-child { border-right: 0; }
.fact b { display: block; font-size: 30px; line-height: 36px; font-weight: 800; color: var(--blue); }
.fact span { display: block; margin-top: 2px; font-size: 13px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; color: var(--muted); }

/* ---------- contact: methods row + centred form card ---------- */
.cm-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.cm-card {
  background: var(--white); border: 1px solid var(--line); border-radius: 14px;
  padding: 26px 24px; text-align: center; transition: transform .2s, box-shadow .2s, border-color .2s;
}
.cm-card:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(18,38,107,.14); border-color: transparent; }
.cm-icon {
  width: 50px; height: 50px; margin: 0 auto; border-radius: 999px;
  background: var(--yellow); color: var(--navy);
  display: flex; align-items: center; justify-content: center;
}
.cm-card h3 {
  margin-top: 16px; font-size: 12px; font-weight: 800; letter-spacing: 1.8px;
  text-transform: uppercase; color: var(--red);
}
.cm-card p, .cm-card a { display: block; margin-top: 6px; font-size: 16px; font-weight: 600; color: var(--heading); word-break: break-word; }
.cm-card a:hover { color: var(--red); }
.cm-card small { display: block; margin-top: 6px; font-size: 13px; font-weight: 400; color: var(--muted); }

.form-card {
  max-width: 820px; margin-left: auto; margin-right: auto; background: var(--white);
  border: 1px solid var(--line); border-radius: 18px; padding: 40px;
  box-shadow: 0 14px 36px rgba(18,38,107,.10);
}
.form-card > header { text-align: center; margin-bottom: 28px; }

/* ---------- contact: call/visit panel beside the form ---------- */
.reach-panel {
  background: var(--navy); color: var(--white); border-radius: 18px; padding: 40px;
  display: flex; flex-direction: column;
  /* sized to its content, not stretched to the (much taller) form, and it
     follows you down the page while you fill the form in */
  flex: 0 0 auto; position: sticky; top: 105px;
  box-shadow: 0 14px 36px rgba(18,38,107,.16);
}
.reach-block + .reach-block { margin-top: 34px; padding-top: 34px; border-top: 1px solid rgba(255,255,255,.16); }
.reach-panel h3 { font-size: 12px; font-weight: 800; letter-spacing: 1.8px; text-transform: uppercase; color: var(--yellow); }
.reach-big { display: inline-block; margin-top: 10px; padding: 2px 0; font-size: 34px; line-height: 42px; font-weight: 800; color: var(--white); transition: color .15s; }
.reach-big:hover { color: var(--yellow); }
.reach-addr { margin-top: 10px; font-size: 17px; line-height: 27px; color: rgba(255,255,255,.9); }
.reach-panel .btn { margin-top: 20px; align-self: flex-start; }

/* full-width variant: calling is the headline action, the form is tucked away */
.reach-panel.is-wide {
  position: static; max-width: 940px; margin-left: auto; margin-right: auto; padding: 44px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 44px;
}
.reach-panel.is-wide .reach-block + .reach-block {
  margin-top: 0; padding-top: 0; border-top: 0;
  padding-left: 44px; border-left: 1px solid rgba(255,255,255,.16);
}

.form-toggle { max-width: 820px; margin: 0 auto; }
.form-toggle > summary {
  list-style: none; cursor: pointer; display: inline-flex; align-items: center; gap: 8px;
  font-size: 15px; font-weight: 600; color: var(--blue); padding: 10px 4px;
  border-bottom: 2px solid transparent; transition: border-color .15s, color .15s;
}
.form-toggle > summary::-webkit-details-marker { display: none; }
.form-toggle > summary:hover { border-bottom-color: var(--blue); }
.form-toggle > summary svg { transition: transform .25s; }
.form-toggle[open] > summary svg { transform: rotate(180deg); }
.form-toggle-wrap { text-align: center; }

/* ---------- amenities feature cards ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.feature {
  background: var(--white); border: 1px solid var(--line); border-radius: 16px;
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .22s, box-shadow .22s, border-color .22s;
}
.feature:hover { transform: translateY(-5px); box-shadow: 0 14px 34px rgba(18,38,107,.15); border-color: transparent; }
/* clip lives on the inner wrapper so the icon badge can overhang the image */
.feature-img { position: relative; padding-top: 78%; background: #EDF1F8; }
.feature-img-clip { position: absolute; inset: 0; overflow: hidden; }
.feature-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.feature:hover .feature-img img { transform: scale(1.06); }
.feature-icon {
  position: absolute; left: 18px; bottom: -24px; width: 52px; height: 52px; z-index: 2;
  border-radius: 14px; background: var(--yellow); color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 16px rgba(9,20,58,.28); border: 3px solid var(--white);
}
.feature-body { padding: 38px 24px 26px; }
.feature-body h3 {
  font-size: 19px; line-height: 26px; font-weight: 800; letter-spacing: .4px;
  text-transform: uppercase; color: var(--heading);
}
.feature-body p { margin-top: 10px; font-size: 15px; line-height: 25px; color: var(--muted); }

/* ---------- two-up split (home: reviews | map) ---------- */
.split-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: stretch; }
.split-2 > * { display: flex; flex-direction: column; min-width: 0; }
.split-2 .rev-empty, .split-2 .rev-marquee, .split-2 .map-card { flex: 1; }
.split-2 .map-card { display: flex; flex-direction: column; }
.split-2 .map-card iframe { flex: 1; min-height: 300px; }

/* ---------- google reviews ---------- */
.rev-head { display: flex; flex-wrap: wrap; align-items: center; gap: 16px 28px; }
.rev-badge {
  display: inline-flex; align-items: center; gap: 10px; background: var(--white);
  border: 1px solid var(--line); border-radius: 999px; padding: 8px 18px;
  box-shadow: 0 2px 10px rgba(18,38,107,.08);
}
.rev-score { font-size: 40.8px; line-height: 40.8px; font-weight: 700; color: var(--heading); }
.rev-stars { color: var(--yellow-dk); font-size: 19.2px; letter-spacing: 2.2px; }
.rev-count { font-size: 15.2px; line-height: 24.32px; color: var(--muted); }
.rev-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.rev-card {
  background: var(--white); border: 1px solid var(--line); border-radius: 12px;
  padding: 20px; display: flex; flex-direction: column; position: relative;
}
.rev-card-top { display: flex; align-items: center; gap: 12.8px; padding-right: 32px; }
.rev-avatar {
  width: 39px; height: 39px; border-radius: 999px; background: var(--blue); color: var(--white);
  display: flex; align-items: center; justify-content: center; font-weight: 700; flex-shrink: 0;
}
.rev-name { display: block; font-size: 14px; line-height: 16.8px; font-weight: 700; color: var(--heading); }
.rev-when { display: block; font-size: 12px; line-height: 19.2px; color: var(--muted); }
.rev-g { position: absolute; top: 20px; right: 20px; width: 22px; height: 22px; }
.rev-card-stars { color: var(--yellow-dk); font-size: 20px; letter-spacing: 2.2px; margin-top: 14px; }
.rev-text { font-size: 14px; line-height: 22.12px; color: var(--body); margin-top: 12px; }
.rev-empty {
  background: var(--white); border: 1px dashed var(--line); border-radius: 12px;
  padding: 40px 24px; text-align: center;
}

/* ---------- google reviews marquee ----------
   Same trick as the quote marquee at the top of the page: one row of cards
   duplicated end-to-end, translated -50%, so it loops seamlessly. */
.rev-marquee {
  overflow: hidden; min-width: 0; display: flex; align-items: center;
  -webkit-overflow-scrolling: touch;
  /* fade the cards out at both edges instead of guillotining them */
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 24px, #000 calc(100% - 24px), transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 24px, #000 calc(100% - 24px), transparent 100%);
}
.js .rev-track { animation: rev-scroll 34s linear infinite; will-change: transform; }
.rev-track { display: flex; width: max-content; padding: 6px 0 14px; }
.rev-marquee:hover .rev-track,
.rev-marquee:focus-within .rev-track { animation-play-state: paused; }
@keyframes rev-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.rev-group { display: flex; flex: 0 0 auto; }

.rev-item {
  position: relative; flex: 0 0 auto; width: 300px; margin-right: 16px;
  background: var(--white); border: 1px solid var(--line); border-radius: 14px;
  padding: 20px 20px 22px; box-shadow: 0 2px 10px rgba(18,38,107,.06);
}
.rev-item-top { display: flex; align-items: center; gap: 12px; padding-right: 30px; }
.rev-item-name { font-size: 16px; line-height: 20px; font-weight: 700; color: var(--heading); }
.rev-item-stars { color: var(--yellow); font-size: 15px; letter-spacing: 1.5px; margin-top: 3px; }
.rev-item-text { margin-top: 16px; font-size: 15px; line-height: 24px; font-style: italic; color: var(--body); }
.rev-avatar.c1 { background: #7C3AED; }
.rev-avatar.c2 { background: #0F8A5F; }
.rev-avatar.c3 { background: #C2410C; }
.rev-avatar.c4 { background: var(--blue); }

/* WCAG 2.2.2 Pause/Stop/Hide — auto-moving content needs a real control */
.motion-toggle {
  display: inline-flex; align-items: center; gap: 7px; margin-top: 10px;
  font-size: 13px; font-weight: 600; color: var(--muted);
  padding: 8px 12px; border-radius: 999px; border: 1px solid var(--line);
  background: var(--white); transition: color .15s, border-color .15s;
}
.motion-toggle:hover { color: var(--blue); border-color: var(--blue); }
.motion-toggle:focus-visible { outline: 3px solid var(--blue); outline-offset: 2px; }
.rev-marquee-wrap { display: flex; flex-direction: column; align-items: flex-start; flex: 1; }
.rev-marquee-wrap .rev-marquee { width: 100%; }
.is-paused { animation-play-state: paused !important; }

/* ---------- gallery slideshow ---------- */
.slideshow {
  position: relative; border-radius: 16px; overflow: hidden; background: #0B142E;
  box-shadow: 0 18px 40px rgba(18,38,107,.20); aspect-ratio: 16 / 9;
}
.slide { position: absolute; inset: 0; opacity: 0; transition: opacity .7s ease; margin: 0; }
.slide.is-active { opacity: 1; }
.slide img { width: 100%; height: 100%; object-fit: cover; }
.slide-btn {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 48px; height: 48px; border-radius: 999px; background: rgba(255,255,255,.92);
  color: var(--navy); display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 14px rgba(0,0,0,.25); transition: background .2s, transform .2s;
}
.slide-btn:hover { background: var(--white); transform: translateY(-50%) scale(1.07); }
.slide-btn.prev { left: 16px; }
.slide-btn.next { right: 16px; }
.slide-dots { position: absolute; left: 0; right: 0; bottom: 16px; z-index: 3; display: flex; justify-content: center; gap: 8px; }
.slide-dots button {
  /* 9px dot, 44px tap area — the padding is transparent and does the catching */
  width: 9px; height: 9px; border-radius: 999px; background: rgba(255,255,255,.9);
  box-shadow: 0 0 0 1px rgba(0,0,0,.45);
  padding: 0; border: 18px solid transparent; background-clip: padding-box;
  box-sizing: content-box; transition: background .2s, width .2s;
}
.slide-dots button.is-active { background-color: var(--yellow); width: 26px; }
.slide-dots { gap: 0; }

/* ---------- lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 90; background: rgba(6,11,28,.94);
  display: flex; align-items: center; justify-content: center; padding: 56px 72px;
}
.lightbox[hidden] { display: none; }
.lightbox img { max-width: 100%; max-height: 100%; object-fit: contain; border-radius: 8px; }
.lb-btn {
  position: absolute; z-index: 2; width: 52px; height: 52px; border-radius: 999px;
  background: rgba(255,255,255,.12); color: var(--white);
  display: flex; align-items: center; justify-content: center; transition: background .2s;
}
.lb-btn:hover { background: rgba(255,255,255,.26); }
.lb-close { top: 20px; right: 20px; }
.lb-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 20px; top: 50%; transform: translateY(-50%); }
.lb-count {
  position: absolute; bottom: 22px; left: 0; right: 0; text-align: center;
  color: rgba(255,255,255,.75); font-size: 14px; letter-spacing: 1px;
}

/* ---------- gallery grid ---------- */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); column-gap: 8px; row-gap: 0; grid-auto-rows: 1px; }
.gi { position: relative; overflow: hidden; border-radius: 8px; line-height: 0; margin: 0 0 8px; height: calc(100% - 8px); cursor: pointer; }
.gi img { position: absolute; inset: 0; width: 100%; height: 100%; max-width: none; object-fit: cover; transition: transform .35s; }
.gi::after { content: ""; position: absolute; inset: 0; background: rgba(0,0,0,0); transition: background .35s; pointer-events: none; }
.gi:hover img { transform: scale(1.05); }
.gi:hover::after { background: rgba(9,20,58,.28); }
.gi:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; }

/* ---------- map / contact ---------- */
.map-card { background: var(--white); border: 1px solid var(--line); border-radius: 15px; box-shadow: 0 10px 14px -3px rgba(18,38,107,.16); overflow: hidden; }
.map-foot { padding: 24px 30px; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px; }
.contact-line { display: flex; align-items: center; gap: 8px; color: var(--navy); transition: color .15s; }
.contact-line:hover { color: var(--red); }

.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: 14px; font-weight: 600; color: var(--heading); }
.field input, .field textarea {
  font: inherit; font-size: 16px; color: var(--body); background: var(--white);
  border: 1px solid var(--line); border-radius: 8px; padding: 12px 14px; width: 100%;
  transition: border-color .15s, box-shadow .15s;
}
.field input:not([type="checkbox"]):focus, .field textarea:focus {
  outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(26,62,168,.15);
}
.field input[type="checkbox"]:focus-visible { outline: 3px solid var(--blue); outline-offset: 2px; }
.field textarea { min-height: 140px; resize: vertical; }
.field label.consent,
.consent { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; font-weight: 400; line-height: 20px; color: var(--muted); }
.consent input { margin-top: 4px; width: 16px; height: 16px; flex-shrink: 0; accent-color: var(--blue); }
.req { color: var(--red); }

/* ---------- legal pages ---------- */
.legal { max-width: 820px; }
.legal h2 { font-size: 24px; line-height: 32px; font-weight: 700; color: var(--heading); margin-top: 36px; }
.legal h3 { font-size: 18px; line-height: 26px; font-weight: 700; color: var(--heading); margin-top: 24px; }
.legal p, .legal li { margin-top: 12px; }
.legal ul { list-style: disc; padding-left: 22px; }
.legal a { color: var(--blue); text-decoration: underline; }
.legal .updated { font-size: 14px; color: var(--muted); }

/* ---------- CTA band ---------- */
.cta-band { background: var(--navy); }
.cta-band-inner { padding: 30px 0; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 16px; }
.cta-band h2 { font-size: 20px; line-height: 30px; font-weight: 600; color: var(--white); text-align: center; }

/* ---------- footer: one thin bar ---------- */
.site-footer { background: var(--navy); color: var(--white); }
.footer-bar {
  display: flex; align-items: center; justify-content: space-between; gap: 24px 40px;
  flex-wrap: wrap; padding: 14px 24px; min-height: 68px;
}
.fb-left { display: flex; align-items: center; gap: 14px; }
.fb-left svg { flex-shrink: 0; }
.fb-left p { font-size: 13px; line-height: 20px; color: rgba(255,255,255,.78); }
.fb-mid { display: flex; align-items: center; gap: 10px; }
.fb-mid span {
  font-size: 12px; font-weight: 800; letter-spacing: 1.6px;
  text-transform: uppercase; color: var(--yellow);
}
.fb-right { display: flex; align-items: center; gap: 22px; }
.fb-right a { font-size: 13px; color: rgba(255,255,255,.78); transition: color .15s; }
.fb-right a:hover { color: var(--white); }
.social-btn {
  width: 44px; height: 44px; border-radius: 8px; border: 1px solid rgba(255,255,255,.3);
  display: flex; align-items: center; justify-content: center; color: var(--white);
  transition: background .2s, border-color .2s, color .2s;
}
.social-btn:hover { background: var(--yellow); border-color: var(--yellow); color: var(--navy); }

/* ---------- floating call button ---------- */
.fab {
  position: fixed; right: 24px; bottom: 24px; width: 60px; height: 60px; z-index: 45;
  border-radius: 50%; background: var(--red); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(224,27,36,.45); transition: transform .2s, background .2s;
}
.fab:hover { transform: translateY(-3px); background: var(--red-dk); }

/* ---------- scroll reveal ----------
   Gated behind .js (set by an inline script in <head>). Without JavaScript the
   content is simply visible — it must never be possible for a broken or slow
   script to hide the page's content. */
.js .reveal { opacity: 0; transform: translateY(16px); }
.js .reveal.is-in { animation: slideUp .55s ease forwards; }
/* failsafe: 3s after load everything is visible no matter what JS did */
.reveal-all .reveal { opacity: 1 !important; transform: none !important; }
@keyframes slideUp { 0% { opacity: 0; transform: translateY(16px); } 100% { opacity: 1; transform: translateY(0); } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal, .js .reveal.is-in { opacity: 1; transform: none; animation: none; }
  .js .rev-track { animation: none; }
  .rev-marquee { overflow-x: auto; }
  .marquee-track { animation: none; }
  .gi img, .stay-card, .am-card { transition: none; }
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1100px) {
  .split-2 { grid-template-columns: 1fr; }
  .inc-grid { grid-template-columns: repeat(2, 1fr); }
  .rev-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .contact-layout { grid-template-columns: 1fr !important; gap: 32px !important; }
  .cm-grid { grid-template-columns: 1fr; }
  .form-card { padding: 26px 20px; }
  .reach-panel { padding: 28px 24px; position: static; }
  .fact { flex-basis: 100%; border-right: 0; border-bottom: 1px solid var(--line); }
  .fact:last-child { border-bottom: 0; }
}

@media (max-width: 1023px) {
  .main-bar { height: 78px; }
  .main-nav { display: none; }
  .menu-toggle { display: flex; }
  .brand-badge { width: 53px; height: 64px; }
  .hero { padding-top: 78px; min-height: 0; }
  .page-banner { margin-top: 78px; height: 190px; }
  .hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .stay-card { flex-basis: calc(50% - 12px); }
  .am-card { flex: 0 1 calc(50% - 12px); }
    .steps { grid-template-columns: repeat(2, 1fr); }
  .aud-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }
  .rate-panel { grid-template-columns: 1fr; }
  .rate-main, .rate-side { padding: 30px; }
  .lightbox { padding: 64px 20px; }
  .lb-prev { left: 8px; } .lb-next { right: 8px; }
    /* mobile menu panel is always solid, even under the transparent nav */
  body.transparent-nav #mobile-menu .nav-link { color: var(--navy); }
  body.transparent-nav #mobile-menu .nav-link[aria-current="page"] { background: var(--blue-lt); color: var(--blue); }
}

@media (max-width: 767px) {
  .site-container, .wide-container { padding: 0 16px; }
  .section { padding: 48px 0; }
  .section-tight { padding: 36px 0; }
  .hero { height: auto; }
  .hero-inner { padding: 40px 16px 48px; }
  .hero-title { font-size: 38px; line-height: 46px; }
  .hero-tag { font-size: 21px; line-height: 28px; }
  .steps, .aud-grid, .feature-grid { grid-template-columns: 1fr; }
  /* on a phone the auto-scroll is unusable — hand control to the finger */
  .rev-marquee { overflow-x: auto; scroll-snap-type: x mandatory; }
  .js .rev-track { animation: none; }
  .rev-item { width: min(300px, 82vw); scroll-snap-align: center; }
  #rev-group-clone { display: none; }
  .slide-btn { width: 40px; height: 40px; }
  .slide figcaption { font-size: 13px; padding: 34px 16px 18px; }
  .slideshow { aspect-ratio: 4 / 3; }
  .sec-title { font-size: 26px; line-height: 34px; }
  .hero-sub { font-size: 17px; line-height: 27px; }
  .stat-num { font-size: 30px; line-height: 42px; }
  .page-banner { height: 160px; }
  .page-banner h1 { font-size: 28px; line-height: 36px; }
  .page-banner p { font-size: 16px; line-height: 25px; }
  .sec-title { font-size: 26px; line-height: 36px; }
  .stay-card, .am-card { flex-basis: 100%; }
  .inc-grid, .rev-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .form-grid { grid-template-columns: 1fr; }
  .marquee-item { font-size: 15px; }
  .btn-primary, .btn-yellow { padding: 10px 16px; }
  .btn-num { display: none; }
  .btn-word { display: none; }               /* "Call Now" -> "Call" on narrow phones */
  .fb-right a, .footer-bottom a { padding: 11px 0; }
  .contact-line { padding: 9px 0; }
  .slide-btn { width: 44px; height: 44px; }
  .menu-toggle { width: 44px; height: 44px; }
  .lb-btn { width: 48px; height: 48px; }
  .btn-num { display: none; }
  .reach-panel.is-wide { grid-template-columns: 1fr; gap: 28px; padding: 28px 24px; }
  .reach-panel.is-wide .reach-block + .reach-block { padding-left: 0; border-left: 0; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.16); }
  .map-foot { padding: 20px; }
  .footer-bar { justify-content: flex-start; gap: 16px 24px; padding: 16px; }
}
