/* ══════════════════════════════════════════════════════════
   POOL HOUSE LODGE — Shared Stylesheet
   Brand: #094a7d (Blue) · #eeba2b (Gold) · #ffffff (White)
   Fonts: Cormorant Garant (headings) · Montserrat (body)
══════════════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue:       #094a7d;
  --blue-dark:  #062f52;
  --blue-light: #0a2a45;
  --gold:       #eeba2b;
  --gold-dark:  #b8920a;
  --white:      #ffffff;
  --off-white:  #f8f6f1;
  --dark:       #111111;
  --gray:       #666666;
  --light-gray: #e8e4dd;
  --nav-h:      80px;
}

html { scroll-behavior: smooth; max-width: 100%; overflow-x: hidden; }
body {
  font-family: 'Montserrat', sans-serif;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
  max-width: 100%;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 { font-family: 'Cormorant Garant', serif; font-weight: 400; line-height: 1.1; }
p { line-height: 1.8; }

/* ── BULLET LISTS (why-section + fit-section) ── */
.fit-item,
.why-item-text { font-size: 14px; line-height: 1.8; }

/* ── REUSABLES ── */
.eyebrow {
  display: flex; align-items: center; gap: 14px; margin-bottom: 24px;
}
.eyebrow .line { display: block; width: 40px; height: 1px; background: var(--gold); flex-shrink: 0; }
.eyebrow .label {
  color: var(--gold); font-size: 11px; letter-spacing: 3px;
  text-transform: uppercase; font-weight: 600;
}
.eyebrow.light .label { color: var(--gold); }

.btn {
  display: inline-block; padding: 16px 38px;
  font-family: 'Montserrat', sans-serif; font-size: 11px;
  letter-spacing: 2.5px; text-transform: uppercase; font-weight: 600;
  border: none; cursor: pointer; transition: all .25s; border-radius: 0;
}
.btn-gold { background: var(--gold); color: var(--dark); }
.btn-gold:hover { background: var(--white); color: var(--dark); }
.btn-outline-white {
  background: transparent; color: var(--white);
  border: 1px solid rgba(255,255,255,.45);
}
.btn-outline-white:hover { background: rgba(255,255,255,.1); }
.btn-outline-gold {
  background: transparent; color: var(--gold);
  border: 1px solid var(--gold);
}
.btn-outline-gold:hover { background: var(--gold); color: var(--dark); }
.btn-blue { background: var(--blue); color: var(--white); }
.btn-blue:hover { background: var(--blue-dark); }

.text-link {
  color: var(--blue); font-size: 11px; letter-spacing: 2px;
  text-transform: uppercase; border-bottom: 1px solid var(--gold);
  padding-bottom: 2px; transition: color .2s;
}
.text-link:hover { color: var(--gold-dark); }

/* ── NAV ── */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 60px;
  transition: background .3s, box-shadow .3s;
}
/* Remove nav-h constraint so nav grows naturally like lodge.html */
.site-nav.scrolled {
  background: rgba(6,47,82,.97);
  box-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.nav-logo { display: flex; align-items: center; gap: 14px; }
.nav-logo-img {
  width: 53px; height: 53px; border-radius: 50%;
  object-fit: cover; flex-shrink: 0;
}
.nav-badge {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--blue); border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nav-badge span {
  color: var(--gold); font-size: 9px; font-weight: 700;
  letter-spacing: 1px; font-family: 'Montserrat', sans-serif;
}
.nav-wordmark {}
.nav-wordmark .name {
  color: var(--white); font-family: 'Montserrat', sans-serif;
  font-size: 10px; font-weight: 600; letter-spacing: 2.5px; line-height: 1.2;
  text-transform: uppercase;
}
.footer-brand-name {
  font-family: 'Montserrat', sans-serif; font-size: 10px;
  font-weight: 500; letter-spacing: 2.5px; text-transform: uppercase;
}
.nav-wordmark .sub {
  color: rgba(255,255,255,.4); font-size: 7px;
  letter-spacing: 2.5px; text-transform: uppercase; margin-top: 1px;
}
.nav-links {
  display: flex; gap: 32px; list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,.85); font-size: 11px;
  letter-spacing: 2px; text-transform: uppercase; font-weight: 500;
  transition: color .2s; padding: 4px 0;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 1px; background: var(--gold); transform: scaleX(0);
  transition: transform .25s;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.active { color: var(--gold); }
.nav-links a.active::after { transform: scaleX(1); }
.nav-cta {
  background: transparent; border: 1px solid var(--gold); color: var(--gold);
  padding: 10px 22px; font-size: 10px; letter-spacing: 2px;
  text-transform: uppercase; font-weight: 600; cursor: pointer;
  font-family: 'Montserrat', sans-serif; transition: all .2s; border-radius: 0;
}
.nav-cta:hover { background: var(--gold); color: var(--dark); }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--white); transition: all .3s; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-mobile { display: none; }

/* ── NAV DROPDOWN ── */
.nav-dropdown-wrap { position: relative; }
.nav-caret { font-size: 8px; opacity: .6; margin-left: 3px; }
.nav-dropdown {
  display: none;
  position: absolute; top: calc(100% + 8px); left: 50%;
  transform: translateX(-50%);
  background: rgba(6,47,82,.97);
  box-shadow: 0 12px 40px rgba(0,0,0,.35);
  list-style: none; padding: 10px 0; min-width: 180px;
  border-top: 2px solid var(--gold);
  z-index: 999;
}
.nav-dropdown-wrap::after {
  content: ''; position: absolute;
  top: 100%; left: 0; right: 0; height: 16px;
}
.nav-dropdown li a {
  display: block; padding: 11px 22px;
  color: rgba(255,255,255,.8); font-size: 10px;
  letter-spacing: 1.8px; text-transform: uppercase; font-weight: 500;
  transition: color .18s, background .18s;
  white-space: nowrap;
}
.nav-dropdown li a::after { display: none; }
.nav-dropdown li a:hover,
.nav-dropdown li a.active { color: var(--gold); background: rgba(255,255,255,.05); }
.nav-dropdown-wrap:hover .nav-dropdown { display: block; }
.nav-dropdown-wrap > a { cursor: pointer; }

/* ── FOOTER ── */
.site-footer { background: rgba(6,47,82,.97); }

/* ── FOOTER NAV ROW ── */
.footer-nav-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 60px; height: var(--nav-h);
}

/* ── FOOTER BOTTOM BAR ── */
.footer-bottom-bar {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 18px 60px 36px;
  display: flex; align-items: center; justify-content: space-between;
}
.footer-bottom-left {
  display: flex; align-items: center; gap: 28px;
}
.footer-bottom-left span {
  color: rgba(255,255,255,.35); font-size: 11px; letter-spacing: .5px;
}
.footer-bottom-left a {
  color: rgba(255,255,255,.45); font-size: 10px; letter-spacing: 1.5px;
  text-transform: uppercase; font-weight: 500; text-decoration: none; transition: color .2s;
}
.footer-bottom-left a:hover { color: var(--gold); }
.footer-social-icons {
  display: flex; align-items: center; gap: 22px;
}
.footer-social-icons a {
  color: rgba(255,255,255,.4); display: flex; align-items: center;
  transition: color .2s; text-decoration: none;
}
.footer-social-icons a:hover { color: var(--gold); }
.footer-mobile-links { display: none; }

@media (max-width: 900px) {
  .footer-nav-row { display: none; }
  .footer-mobile-links {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 0;
    border-bottom: 1px solid rgba(255,255,255,.1);
  }
  .footer-mobile-links a {
    color: rgba(255,255,255,.7); font-size: 11px; letter-spacing: 2px;
    text-transform: uppercase; font-weight: 500; padding: 12px 14px;
    text-decoration: none; transition: color .2s;
  }
  .footer-mobile-links a:hover { color: var(--gold); }
  .footer-bottom-bar {
    flex-direction: column; gap: 16px;
    padding: 20px 24px; text-align: center;
  }
  .footer-bottom-left { flex-wrap: wrap; justify-content: center; gap: 14px; }
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  position: relative; overflow: hidden;
  display: flex; align-items: flex-end; padding: 0 60px 70px;
  margin-top: var(--nav-h);
}
.page-hero-bg {
  position: absolute; inset: 0; background-size: cover;
  background-position: center; z-index: 0;
}
.page-hero-overlay {
  position: absolute; inset: 0; z-index: 1;
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero .kicker {
  color: var(--gold); font-size: 10px; letter-spacing: 3px;
  text-transform: uppercase; margin-bottom: 14px; display: block;
}
.page-hero h1 {
  font-size: clamp(44px, 6vw, 80px); color: var(--white);
  font-style: italic; line-height: 1.05;
}
.page-hero h1 em { font-style: normal; color: var(--gold); }

/* ── SECTION UTILITY ── */
.section { padding: 100px 60px; }
.section-sm { padding: 70px 60px; }
.section-bg-off { background: var(--off-white); }
.section-bg-blue { background: var(--blue); }
.section-bg-dark { background: #080808; }
.section-center { text-align: center; }

.section-header {
  display: flex; align-items: flex-end;
  justify-content: space-between; margin-bottom: 60px; gap: 40px;
}
.section-header .right-note {
  color: var(--gray); font-size: 13px; line-height: 1.7;
  max-width: 340px; text-align: right;
}
.section-title h2 { font-size: clamp(28px, 3.3vw, 46px); }
.section-title h2 span { color: var(--gold); font-style: italic; }

/* ── GRID HELPERS ── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 40px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .site-nav { padding: 3px 36px; }
  .nav-logo-img { width: 45px; height: 45px; }
  .nav-badge { width: 45px; height: 45px; }
  .section, .section-sm { padding-left: 36px; padding-right: 36px; }
  .footer-main { padding: 60px 36px 40px; grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-bottom { padding: 20px 36px; }
  .page-hero { padding: 0 36px 60px; }
}

@media (max-width: 900px) {
  :root { --nav-h: 68px; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .nav-logo-img { width: 45px; height: 45px; padding: 3px 0; }
  .nav-badge { width: 45px; height: 45px; padding: 3px 0; }
  .nav-mobile {
    display: block; position: fixed; top: var(--nav-h); right: 0; bottom: 0;
    width: 80%; max-width: 300px;
    background: #071e35; z-index: 899;
    padding: 32px 28px 40px;
    transform: translateX(100%); transition: transform .35s cubic-bezier(.4,0,.2,1);
    box-shadow: -8px 0 40px rgba(0,0,0,.35);
    overflow-y: auto;
  }
  .nav-mobile.open { transform: translateX(0); }
  .nav-mobile a {
    display: flex; align-items: center;
    color: rgba(255,255,255,.75); font-size: 10px;
    font-family: 'Montserrat', sans-serif; font-weight: 600;
    letter-spacing: 2.5px; text-transform: uppercase;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,.07);
    transition: color .2s;
  }
  .nav-mobile a:last-of-type { border-bottom: none; }
  .nav-mobile a:hover { color: var(--gold); }
  .nav-mobile .mob-cta {
    display: block; background: var(--gold); color: var(--dark);
    padding: 14px 20px; font-family: 'Montserrat', sans-serif;
    font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase;
    font-weight: 700; text-align: center;
    margin-top: 24px; border-bottom: none !important;
  }
  .nav-mobile .mob-cta:hover { background: #d4a720; color: var(--dark); }

  .grid-2 { grid-template-columns: 1fr; gap: 50px; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .section { padding: 70px 24px; }
  .section-sm { padding: 50px 24px; }
  .footer-main { grid-template-columns: 1fr; gap: 40px; padding: 50px 24px 30px; }
  .footer-bottom { flex-direction: column; gap: 10px; padding: 20px 24px; text-align: center; }
  .page-hero { padding: 0 24px 50px; }
  .section-header { flex-direction: column; gap: 16px; }
  .section-header .right-note { text-align: left; }
}

@media (max-width: 600px) {
  .grid-4 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════════
   INDEX.HTML — PAGE-SPECIFIC STYLES
══════════════════════════════════════════════════════════ */

/* ── HOME HEADINGS ── */
h2 { font-family: 'Cormorant Garant', serif; font-weight: 300; font-size: clamp(25px, 2.6vw, 37px); }
h3 { font-family: 'Cormorant Garant', serif; font-weight: 300; font-size: clamp(24px, 2.8vw, 40px); }

/* ─── HERO ─── */
.hero { position: relative; height: 60vh; min-height: 400px; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; opacity: 0.88; }
.hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; opacity: 0.75; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(160deg, rgba(9,74,125,0.65) 0%, rgba(9,74,125,0.25) 60%, transparent 100%); }
.hero-content { position: absolute; bottom: 0; left: 0; padding: 60px 60px 70px; max-width: 640px; }
.eyebrow-hero { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.eyebrow-hero .line { width: 40px; height: 1px; background: var(--gold); flex-shrink: 0; }
.eyebrow-hero .label { color: var(--gold); font-size: 11px; letter-spacing: 3px; text-transform: uppercase; font-weight: 600; }
.hero-kicker { color: var(--gold); font-size: 10px; letter-spacing: 3px; text-transform: uppercase; font-weight: 600; font-family: 'Montserrat', sans-serif; margin-bottom: 18px; display: flex; align-items: center; gap: 12px; text-shadow: 0 1px 6px rgba(0,0,0,.5); }
.hero-kicker::before { content: ''; display: block; width: 36px; height: 1px; background: var(--gold); flex-shrink: 0; }
.hero h1 { font-family: 'Montserrat', sans-serif; font-size: clamp(28px, 3.6vw, 54px); color: var(--white); line-height: 1.18; margin-bottom: 18px; font-weight: 300; letter-spacing: .5px; text-shadow: 0 2px 16px rgba(0,0,0,.55); }
.hero h1 em { font-style: italic; color: var(--gold); font-weight: 400; }
.hero-sub { color: rgba(255,255,255,.88); font-size: 16px; line-height: 1.6; margin-bottom: 14px; letter-spacing: .3px; font-weight: 300; font-family: 'Montserrat', sans-serif; text-shadow: 0 1px 8px rgba(0,0,0,.5); }
.hero-proof { color: rgba(255,255,255,.7); font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 14px; text-shadow: 0 1px 6px rgba(0,0,0,.4); }
.hero-price { color: var(--gold); font-family: 'Montserrat', sans-serif; font-size: 14px; font-weight: 600; margin-bottom: 32px; letter-spacing: .3px; text-shadow: 0 1px 8px rgba(0,0,0,.4); }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-scroll { position: absolute; right: 60px; bottom: 60px; z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.hero-scroll-label { color: rgba(255,255,255,.4); font-size: 8px; letter-spacing: 2px; text-transform: uppercase; writing-mode: vertical-rl; }
.scroll-bar { width: 1px; height: 70px; background: linear-gradient(to bottom, var(--gold), transparent); }

/* ─── PICK YOUR STAY ─── */
.pick-section { background: var(--blue); padding: 60px; }
.pick-section .eyebrow { justify-content: center; margin-bottom: 10px; }
.pick-section .eyebrow .label { color: rgba(255,255,255,.6); }
.pick-section .eyebrow .line { background: rgba(255,255,255,.3); }
.pick-heading { text-align: center; color: var(--white); font-family: 'Cormorant Garant', serif; font-weight: 300; font-size: clamp(28px, 3vw, 44px); margin-bottom: 44px; }
.pick-heading em { color: var(--gold); font-style: italic; }
.pick-list { list-style: none; margin: 0 auto; display: flex; flex-direction: row; justify-content: center; align-items: center; gap: 0; padding: 0; flex-wrap: wrap; }
.pick-list li { color: #ffffff; font-family: 'Montserrat', sans-serif; font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; padding: 0 24px; position: relative; }
.pick-list li + li::before { content: '•'; position: absolute; left: -2px; color: var(--gold); font-size: 12px; line-height: 1; top: 50%; transform: translateY(-50%); }

/* ─── HOCKING HILLS GUIDE SECTION ─── */
.guide-section { background: var(--white); padding: 60px 60px 80px; border-top: 1px solid #e8e4dd; }
.guide-header { text-align: center; margin-bottom: 40px; }
.guide-header h2 { color: var(--dark); margin-bottom: 10px; }
.guide-sub { font-family: 'Montserrat', sans-serif; font-size: 12px; color: var(--gray); max-width: 480px; margin: 0 auto; }
.guide-grid { display: block; max-width: 1100px; margin: 0 auto 40px; padding: 0 24px; }
.guide-card { text-decoration: none; color: inherit; display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: center; padding: 16px; background: var(--off-white); border-radius: 12px; }
.guide-img-wrap { aspect-ratio: 4/3; overflow: hidden; border-radius: 12px; }
.guide-img { width: 100%; height: 100%; background-size: cover; background-position: center; transition: transform .4s ease; }
.guide-card:hover .guide-img { transform: scale(1.04); }
.guide-text { display: flex; flex-direction: column; gap: 8px; }
.guide-meta { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.guide-tag { font-family: 'Montserrat', sans-serif; font-size: 10px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); }
.guide-title { font-family: 'Montserrat', sans-serif; font-size: 14px; font-weight: 500; line-height: 1.5; color: var(--dark); }
.guide-cta { font-family: 'Montserrat', sans-serif; font-size: 11px; color: var(--blue); font-weight: 600; white-space: nowrap; }
.guide-footer { text-align: center; }
@media (max-width: 768px) {
  .guide-section { padding: 40px 20px 60px; }
  .guide-grid { padding: 0 12px; }
  .guide-card { grid-template-columns: 1fr; gap: 16px; }
}

/* ─── QUICK FACTS ─── */
.facts-bar { background: var(--off-white); border-top: 3px solid var(--gold); padding: 44px 60px; }
.facts-inner { display: grid; grid-template-columns: repeat(8,1fr); gap: 0; }
.fact-item { text-align: center; padding: 0 20px; border-right: 1px solid var(--light-gray); }
.fact-item:last-child { border-right: none; }
.fact-num { font-family: 'Cormorant Garant', serif; font-weight: 300; font-size: clamp(20px, 2vw, 30px); color: var(--blue); line-height: 1; }
.fact-lbl { font-family: 'Montserrat', sans-serif; font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gray); margin-top: 6px; font-weight: 500; }
.fact-save { text-align: center; padding: 0 20px; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.fact-save-label { background: var(--gold); color: var(--dark); font-size: 10px; letter-spacing: 2px; text-transform: uppercase; font-weight: 700; font-family: 'Montserrat', sans-serif; padding: 4px 12px; margin-bottom: 6px; }
.fact-save-sub { color: var(--gray); font-size: 11px; letter-spacing: .5px; font-family: 'Montserrat', sans-serif; }

/* ─── WHY PEOPLE BOOK ─── */
.why-section { background: var(--white); padding: 40px 60px; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-text .eyebrow .label { color: var(--gray); }
.why-text .eyebrow .line { background: var(--gold); }
.why-text h2 { color: var(--dark); margin-bottom: 10px; }
.why-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 36px; }
.why-item { display: flex; align-items: flex-start; gap: 14px; font-family: 'Montserrat', sans-serif; font-size: 14px; color: var(--dark); line-height: 1.6; }
.why-item::before { content: ''; display: block; width: 5px; height: 5px; background: var(--gold); flex-shrink: 0; margin-top: 7px; border-radius: 50%; }
.why-item-text { color: var(--dark); font-family: 'Montserrat', sans-serif; font-size: 14px; line-height: 1.8; font-weight: 400; }
.why-image { position: relative; }
.why-img-main { width: 100%; aspect-ratio: 4/3; object-fit: cover; object-position: center; display: block; border-radius: 12px; }
.why-img-badge { position: absolute; bottom: -20px; right: -20px; background: var(--gold); padding: 22px 28px; text-align: center; }
.why-badge-num { font-family: 'Montserrat', sans-serif; font-size: 15px; font-weight: 800; color: var(--dark); line-height: 1.2; letter-spacing: 1px; text-transform: uppercase; }
.why-badge-lbl { font-family: 'Montserrat', sans-serif; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--dark); margin-top: 6px; font-weight: 700; }

/* ─── POOL FEATURE ─── */
.pool-section { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; padding: 10px 60px; background: var(--dark); }
.pool-image { position: relative; overflow: hidden; }
.pool-image img { width: 100%; aspect-ratio: 4/3; object-fit: cover; object-position: center; display: block; border-radius: 12px; }
.pool-content { background: var(--dark); padding: 10px 60px; display: flex; flex-direction: column; justify-content: center; }
.pool-content .eyebrow .label { color: rgba(255,255,255,.5); }
.pool-content .eyebrow .line { background: rgba(255,255,255,.2); }
.pool-content h2 { color: var(--white); margin-bottom: 14px; font-style: italic; font-size: clamp(25px, 2.6vw, 37px); }
.pool-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 3px; }
.pool-strip-item { background: rgba(255,255,255,.06); border-top: 3px solid var(--gold); color: rgba(255,255,255,.9); font-family: 'Montserrat', sans-serif; font-size: 10px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; padding: 20px 16px; text-align: center; }

/* ─── CAN WE FIT ─── */
.fit-section { padding: 30px 60px 10px; background: var(--off-white); display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.fit-content h2 { color: var(--dark); margin-bottom: 14px; }
.fit-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 36px; }
.fit-item { display: flex; align-items: flex-start; gap: 14px; font-family: 'Montserrat', sans-serif; font-size: 14px; color: var(--dark); line-height: 1.6; }
.fit-item::before { content: ''; display: block; width: 5px; height: 5px; background: var(--gold); flex-shrink: 0; margin-top: 7px; border-radius: 50%; }
.fit-visual { position: relative; }
.fit-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; border-radius: 12px; }

/* ─── FUN TOGETHER ─── */
.fun-section { padding: 0; overflow: hidden; background: var(--blue); }
.fun-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 16px 16px; }
.fun-tile { position: relative; overflow: hidden; aspect-ratio: 4/3; border-radius: 12px; }
.fun-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.fun-tile:hover img { transform: scale(1.05); }
.fun-tile-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0) 100%); }
.fun-tile-name { position: absolute; bottom: 16px; left: 18px; color: var(--white); font-family: 'Montserrat', sans-serif; font-size: 13px; font-weight: 500; line-height: 1.2; text-shadow: 0 1px 4px rgba(0,0,0,0.8); }
.fun-tile-name span { display: block; color: var(--gold); font-family: 'Montserrat', sans-serif; font-size: 9px; letter-spacing: 2px; text-transform: uppercase; font-weight: 600; margin-bottom: 4px; text-shadow: 0 1px 4px rgba(0,0,0,0.8); }
.fun-bar { background: var(--blue); padding: 24px 60px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.fun-bar-text { color: rgba(255,255,255,.55); font-family: 'Montserrat', sans-serif; font-size: 13px; font-weight: 300; letter-spacing: .3px; }
.fun-bar-text strong { color: var(--white); font-weight: 600; }

/* ─── EAT & GATHER ─── */
.eat-section { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; background: var(--white); padding: 10px 60px; }
.eat-content h2 { color: var(--dark); margin-bottom: 14px; }
.eat-content .eat-sub { color: var(--gray); font-size: 12px; line-height: 1.85; font-family: 'Montserrat', sans-serif; margin-bottom: 28px; }
.eat-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 0; }
.eat-feat { display: flex; align-items: flex-start; gap: 14px; font-family: 'Montserrat', sans-serif; font-size: 14px; color: var(--dark); line-height: 1.6; }
.eat-feat::before { content: ''; display: block; width: 5px; height: 5px; background: var(--gold); flex-shrink: 0; margin-top: 7px; border-radius: 50%; }
.eat-image { position: relative; }
.eat-image img { width: 100%; aspect-ratio: 4/3; object-fit: cover; object-position: center; display: block; border-radius: 12px; }

/* ─── ACCESSIBILITY ─── */
.access-section { background: var(--blue); display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; padding: 10px 60px; }
.access-content { display: flex; flex-direction: column; justify-content: center; }
.access-content .eyebrow .label { color: rgba(255,255,255,.6); }
.access-content .eyebrow .line { background: rgba(255,255,255,.3); }
.access-content h2 { color: var(--white); margin-bottom: 14px; }
.access-content .access-sub { color: rgba(255,255,255,.65); font-size: 12px; line-height: 1.85; font-family: 'Montserrat', sans-serif; margin-bottom: 28px; }
.access-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 36px; }
.access-feat { display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,.8); font-family: 'Montserrat', sans-serif; font-size: 14px; }
.access-feat::before { content: ''; display: block; width: 5px; height: 5px; background: var(--gold); flex-shrink: 0; border-radius: 50%; }
.access-image { overflow: hidden; }
.access-image img { width: 100%; aspect-ratio: 4/3; object-fit: cover; object-position: center 30%; display: block; border-radius: 12px; }

/* ─── REVIEWS ─── */
.reviews-section { padding: 10px 60px; background: var(--white); }
.reviews-header { text-align: center; margin-bottom: 28px; }
.reviews-header h2 { color: var(--dark); }
.reviews-rating-row { display: flex; align-items: center; justify-content: center; gap: 32px; margin-top: 14px; flex-wrap: wrap; }
.reviews-platform { display: flex; align-items: center; gap: 10px; font-family: 'Montserrat', sans-serif; font-size: 12px; color: var(--gray); }
.reviews-platform strong { color: var(--dark); }
.reviews-stars-gold { color: var(--gold); font-size: 14px; letter-spacing: 3px; }
.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 3px; margin-bottom: 36px; }
.review-card { background: var(--off-white); padding: 20px 18px; transition: background .25s; }
.review-card:hover { background: #ede9e0; }
.review-stars { color: var(--gold); font-size: 13px; letter-spacing: 4px; margin-bottom: 12px; }
.review-quote { color: var(--dark); font-family: 'Montserrat', sans-serif; font-size: 14px; font-weight: 300; line-height: 1.7; margin-bottom: 16px; font-style: italic; }
.review-quote::before { content: '"'; color: var(--gold); font-size: 20px; font-style: normal; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--blue); display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 14px; flex-shrink: 0; font-family: 'Cormorant Garant', serif; }
.review-name { color: var(--dark); font-size: 12px; font-weight: 600; margin-bottom: 2px; }
.review-platform-lbl { color: var(--gray); font-size: 10px; letter-spacing: 1px; }

/* ─── BOOK DIRECT ─── */
.bookdirect-section { background: #094a7d; padding: 10px 60px; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.bookdirect-content h2 { color: var(--white); margin-bottom: 10px; }
.bookdirect-content .bookdirect-sub { color: rgba(255,255,255,0.75); font-size: 12px; line-height: 1.85; font-family: 'Montserrat', sans-serif; margin-bottom: 32px; }
.bookdirect-image { position: relative; }
.bookdirect-img { width: 80%; aspect-ratio: 4/3; object-fit: cover; display: block; margin-left: auto; border-radius: 12px; }

/* ─── RESPONSIVE (INDEX) ─── */
@media (max-width: 1024px) and (min-width: 541px) { .hero { height: 55vh; min-height: 360px; } }
@media (max-width: 540px) { .hero { height: 45vh; min-height: 300px; } .hero h1 { font-size: 22px; } .eyebrow-hero, .hero-desc, .hero-btns, .hero-content p, .hero p { display: none !important; } .hero-content { padding-bottom: 24px; } }
@media (max-width: 900px) {
  .hero-content { padding: 0 20px 30px; }
  .hero-scroll { display: none; }
  .hero-sub, .hero-chips, .hero-price, .hero-kicker { display: none; }
  .hero-btns { display: none; }
  .pick-section { padding: 40px 20px; }
  .pick-list li { font-size: 11px; letter-spacing: 1.5px; padding: 0 16px; }
  .pick-list li + li::before { font-size: 11px; }
  .facts-bar { padding: 32px 20px; }
  .facts-inner { grid-template-columns: repeat(3,1fr); gap: 16px 0; }
  .fact-item:nth-child(3) { border-right: none; }
  .fact-save { grid-column: 1 / -1; padding: 16px 0 0; border-top: 1px solid var(--light-gray); }
  .why-section { grid-template-columns: 1fr; gap: 40px; padding: 40px 24px; }
  .why-image { display: block; width: 100%; }
  .why-img-main { width: 100%; max-height: 260px; aspect-ratio: unset; object-fit: cover; margin: 0 auto; }
  .pool-section { grid-template-columns: 1fr; gap: 40px; padding: 40px 24px; overflow: hidden; }
  .pool-image { display: block; width: 100%; }
  .pool-image img { width: 100%; max-height: 260px; object-fit: cover; margin: 0 auto; aspect-ratio: unset; }
  .pool-content { padding: 40px 24px; }
  .fit-section { grid-template-columns: 1fr; gap: 40px; padding: 40px 24px; overflow: hidden; }
  .fit-content { order: 2; }
  .fit-visual { display: block; width: 100%; order: 1; }
  .fit-img { width: 100%; max-height: 260px; object-fit: cover; margin: 0 auto; }
  .fun-section { padding: 0; }
  .fun-grid { grid-template-columns: 1fr 1fr; height: auto; gap: 3px; }
  .fun-tile { height: auto; aspect-ratio: 4/3; }
  .fun-bar { padding: 20px 20px; flex-direction: column; text-align: center; gap: 14px; }
  .eat-section { grid-template-columns: 1fr; gap: 0; padding: 0; }
  .eat-image { overflow: hidden; padding: 40px 24px 0; }
  .eat-image img { width: 100%; aspect-ratio: 4/3; margin: 0 auto; object-fit: cover; }
  .eat-content { padding: 40px 24px; }
  .access-section { grid-template-columns: 1fr; gap: 0; padding: 0; }
  .access-content { padding: 40px 24px; order: 2; }
  .access-image { overflow: hidden; padding: 40px 24px; background: var(--blue); order: 1; }
  .access-image img { width: 100%; max-height: 260px; aspect-ratio: unset; margin: 0 auto; object-fit: cover; }
  .reviews-section { padding: 60px 20px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .bookdirect-section { grid-template-columns: 1fr; gap: 40px; padding: 60px 24px; }
  .bookdirect-image { display: none; }
}
@media (max-width: 540px) {
  .fun-grid { grid-template-columns: 1fr 1fr; }
  .fun-tile { height: auto; aspect-ratio: 4/3; }
  .bookdirect-perks { grid-template-columns: 1fr; }
  .eyebrow { justify-content: center; }
}

/* ─── POOL CONTENT (home page variant) ─── */
.pool-content-home { padding: 60px; }
@media (max-width: 900px) { .pool-content-home { padding: 40px 24px; } }

/* ─── FUN SECTION HEADER ─── */
.fun-header { padding: 60px 60px 32px; background: var(--blue); text-align: center; }
@media (max-width: 900px) { .fun-header { padding: 40px 24px 24px; } }

/* ─── EMAIL CAPTURE SECTION ─── */
.email-section { background: var(--off-white); padding: 90px 60px; text-align: center; border-top: 1px solid var(--light-gray); }
@media (max-width: 900px) { .email-section { padding: 60px 24px; } }

/* ─── STATS BAR (quick facts strip below hero) ─── */
.stats-bar { background: var(--white); border-top: 3px solid var(--gold); padding: 0 60px; overflow-x: hidden; width: 100%; box-sizing: border-box; }
.stats-inner { display: grid; grid-template-columns: repeat(8,1fr); width: 100%; }
.stat-item { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 18px 12px; border-right: 1px solid var(--light-gray); text-align: center; }
.stat-item:last-child { border-right: none; }
.stat-num { font-family: 'Cormorant Garant', serif; font-size: 22px; font-weight: 300; color: var(--blue); line-height: 1; }
.stat-num-gold { font-family: 'Cormorant Garant', serif; font-size: 22px; font-weight: 300; color: var(--gold); line-height: 1; }
.stat-lbl { font-family: 'Montserrat', sans-serif; font-size: 8px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--gray); margin-top: 5px; }
.stat-txt { font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--blue); line-height: 1.4; }
@media (max-width: 768px) {
  .stats-bar { padding: 0; width: 100%; }
  .stats-inner { grid-template-