/* ============================================================
   Sunny Ridge RV Park — shared stylesheet
   Brand system locked from blog build:
   teal #2BA8B5 · navy-teal #1B5A6B · mint #A8D5C8
   cta-blue #1E6F9F · sand #F4EDE2 · ink #1A2B30
   Fonts: Fredoka (display) + Montserrat (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@400;500;600;700&family=Montserrat:wght@400;500;600;700&display=swap');

:root {
  --teal: #2BA8B5;
  --navy-teal: #1B5A6B;
  --mint: #A8D5C8;
  --cta-blue: #1273B8;
  --sand: #F4EDE2;
  --ink: #1A2B30;
  --white: #ffffff;

  --display: 'Fredoka', system-ui, sans-serif;
  --body: 'Montserrat', system-ui, sans-serif;

  --maxw: 1140px;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(27, 90, 107, 0.12);
  --shadow-lg: 0 20px 50px rgba(27, 90, 107, 0.18);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--sand);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: var(--display); line-height: 1.1; color: var(--navy-teal); }

a { color: var(--cta-blue); text-decoration: none; }
a:hover { text-decoration: underline; }

img { max-width: 100%; display: block; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: #ffffff;
  border-bottom: 1px solid rgba(27,90,107,0.10);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 116px;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--display); font-weight: 700; font-size: 1.25rem;
  color: var(--navy-teal); text-decoration: none;
}
.brand .logo-mark {
  width: 40px; height: 40px; border-radius: 10px;
  background: linear-gradient(135deg, var(--teal), var(--navy-teal));
  display: grid; place-items: center; color: var(--white);
  font-weight: 700; font-size: 1.1rem;
}
.nav-links { display: flex; align-items: center; gap: 18px; list-style: none; }
.nav-links a {
  color: var(--ink); font-weight: 500; font-size: 0.9rem; text-decoration: none;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--teal); }
/* slightly tighter on mid-size screens before the mobile menu kicks in */
@media (max-width: 1100px) and (min-width: 861px) {
  .nav-links { gap: 13px; }
  .nav-links a { font-size: 0.85rem; }
}

.btn {
  display: inline-block; font-family: var(--display); font-weight: 600;
  padding: 12px 22px; border-radius: 999px; cursor: pointer;
  text-decoration: none; transition: transform .15s ease, box-shadow .15s ease;
  border: none; font-size: 1rem;
}
.btn-primary { background: var(--cta-blue); color: var(--white); box-shadow: var(--shadow); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); text-decoration: none; }
.btn-ghost { background: transparent; color: var(--navy-teal); border: 2px solid var(--teal); }
.btn-ghost:hover { background: var(--teal); color: var(--white); text-decoration: none; }
.btn-lg { padding: 16px 34px; font-size: 1.15rem; }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; font-size: 1.6rem; color: var(--navy-teal); }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(160deg, var(--navy-teal) 0%, var(--teal) 100%);
  color: var(--white);
  padding: 92px 0 104px;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 80% 20%, rgba(168,213,200,.25), transparent 45%);
  pointer-events: none;
}
.hero .wrap { position: relative; z-index: 1; }
.hero .eyebrow {
  font-family: var(--display); font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; font-size: .85rem; color: var(--mint); margin-bottom: 14px;
}
.hero h1 { color: var(--white); font-size: clamp(2.6rem, 6vw, 4.4rem); font-weight: 700; }
.hero .tagline { font-size: clamp(1.1rem, 2.5vw, 1.45rem); margin: 18px 0 30px; max-width: 620px; opacity: .96; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.hero .btn-ghost { color: var(--white); border-color: rgba(255,255,255,.7); }
.hero .btn-ghost:hover { background: rgba(255,255,255,.15); }

/* Hero buttons sit on a dark photo — give them vivid contrast so they don't read as grey.
   Primary = bright brand teal (pops on the dark lilac); ghost = crisp full-white border. */
.hero-dark .hero-ctas .btn-primary {
  background: var(--teal); color: #fff;
  box-shadow: 0 6px 20px rgba(0,0,0,.30);
}
.hero-dark .hero-ctas .btn-primary:hover { background: #229aa6; }
.hero-dark .hero-ctas .btn-ghost {
  border: 2px solid #ffffff; color: #fff; background: rgba(255,255,255,.06);
}
.hero-dark .hero-ctas .btn-ghost:hover { background: rgba(255,255,255,.18); }

/* ---------- Sections ---------- */
.section { padding: 76px 0; }
.section-tight { padding: 48px 0; }
.section h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); margin-bottom: 14px; }
.section .lead { font-size: 1.15rem; max-width: 680px; margin-bottom: 40px; color: var(--ink); }
.section.alt { background: var(--white); }

.eyebrow-dark {
  font-family: var(--display); font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; font-size: .8rem; color: var(--teal); margin-bottom: 10px;
}

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

.card {
  background: var(--white); border-radius: var(--radius); padding: 28px;
  box-shadow: var(--shadow); border: 1px solid rgba(27,90,107,.06);
}
.section.alt .card { background: var(--sand); }
.card .icon {
  width: 48px; height: 48px; border-radius: 12px; margin-bottom: 14px;
  background: var(--mint); display: grid; place-items: center; font-size: 1.5rem;
}
.card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.card p { font-size: .98rem; }

/* ---------- Amenity icon strip ---------- */
.amenity-strip {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; margin-top: 44px;
}
.amenity-pill {
  background: var(--white); border-radius: var(--radius); padding: 22px 16px;
  text-align: center; box-shadow: var(--shadow); border: 1px solid rgba(27,90,107,.06);
}
.amenity-pill .ico { font-size: 1.8rem; }
.amenity-pill span { display: block; margin-top: 8px; font-weight: 600; font-size: .9rem; color: var(--navy-teal); }

/* ---------- Callout / booking note ---------- */
.callout {
  background: var(--mint); border-radius: var(--radius);
  padding: 30px 34px; border-left: 6px solid var(--teal);
}
.callout h3 { margin-bottom: 8px; }
.callout.warn { background: #FBEEDC; border-left-color: #E0A458; }

/* ---------- Photo placeholder ---------- */
.photo-ph {
  background:
    linear-gradient(135deg, rgba(43,168,181,.18), rgba(168,213,200,.30)),
    repeating-linear-gradient(45deg, rgba(27,90,107,.05) 0 12px, transparent 12px 24px);
  border: 2px dashed rgba(27,90,107,.30);
  border-radius: var(--radius);
  display: grid; place-items: center; text-align: center;
  color: var(--navy-teal); font-family: var(--display); font-weight: 500;
  min-height: 240px; padding: 20px;
}
.photo-ph small { display: block; font-family: var(--body); font-weight: 400; opacity: .7; margin-top: 6px; }
.hero-photo { min-height: 320px; }
.gallery-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.gallery-grid .photo-ph { min-height: 200px; }
/* Real image slots — styled so a missing image still shows a clean placeholder frame */
.img-slot {
  width: 100%; border-radius: var(--radius); object-fit: cover; display: block;
  background:
    linear-gradient(135deg, rgba(43,168,181,.18), rgba(168,213,200,.30)),
    repeating-linear-gradient(45deg, rgba(27,90,107,.05) 0 12px, transparent 12px 24px);
  min-height: 240px;
}
.gallery-grid .img-slot { min-height: 200px; }
.hero-img { min-height: 320px; }
.attraction-img { min-height: 180px; aspect-ratio: 16/10; }

/* ---------- Things to do ---------- */
.attraction {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 28px; align-items: center;
  margin-bottom: 36px;
}
.attraction:nth-child(even) .attraction-text { order: 2; }
.attraction h3 { font-size: 1.5rem; margin-bottom: 8px; }

/* ---------- Video accordion (open-drawer) ---------- */
.video-list { display: flex; flex-direction: column; gap: 16px; }
.drawer {
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow); border: 1px solid rgba(27,90,107,.06);
  overflow: hidden;
}
.section.alt .drawer { background: var(--sand); }
.drawer-head {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 22px 26px; display: flex; align-items: center; justify-content: space-between;
  gap: 16px; font-family: var(--display); color: var(--navy-teal);
}
.drawer-head:hover { background: rgba(43,168,181,.06); }
.drawer-head .titles { display: flex; flex-direction: column; gap: 4px; }
.drawer-head .d-title { font-size: 1.3rem; font-weight: 600; }
.drawer-head .d-sub { font-family: var(--body); font-weight: 400; font-size: .95rem; color: var(--ink); opacity: .8; }
.drawer-head .chev {
  flex: none; width: 34px; height: 34px; border-radius: 50%;
  background: var(--mint); display: grid; place-items: center;
  font-size: 1.1rem; color: var(--navy-teal); transition: transform .3s ease;
}
.drawer[open] .chev, .drawer.open .chev { transform: rotate(180deg); }
.drawer-body {
  max-height: 0; overflow: hidden; transition: max-height .4s ease;
}
.drawer.open .drawer-body { max-height: 720px; }
.drawer-body-inner { padding: 0 26px 26px; }
.video-frame {
  position: relative; width: 100%; aspect-ratio: 16 / 9;
  border-radius: 12px; overflow: hidden; background: var(--ink); margin-bottom: 14px;
}
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-frame.placeholder {
  display: grid; place-items: center; color: var(--mint); text-align: center;
  font-family: var(--display); padding: 20px;
}
.video-frame.placeholder small { display:block; font-family: var(--body); opacity:.8; margin-top:6px; }

/* ---------- Contact / about ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items: start; }
.info-row { display: flex; gap: 12px; margin-bottom: 14px; }
.info-row .ico { font-size: 1.2rem; }
.map-embed { border: 0; width: 100%; height: 340px; border-radius: var(--radius); box-shadow: var(--shadow); }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--cta-blue), var(--navy-teal));
  color: var(--white); text-align: center; padding: 70px 0;
}
.cta-band h2 { color: var(--white); font-size: clamp(1.8rem,4vw,2.6rem); }
.cta-band p { max-width: 560px; margin: 12px auto 28px; opacity: .95; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: rgba(255,255,255,.85); padding: 52px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 32px; margin-bottom: 32px; }
.site-footer h4 { color: var(--white); font-size: 1.05rem; margin-bottom: 14px; }
.site-footer a { color: var(--mint); }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.15); padding-top: 20px; font-size: .85rem; opacity: .7; }
.footer-brand { font-family: var(--display); font-weight: 700; font-size: 1.3rem; color: var(--white); }

/* ---------- Floating Sunny greeter ---------- */
.sunny-greeter {
  position: fixed; left: 22px; bottom: 22px; z-index: 80;
  display: flex; align-items: center; gap: 10px; cursor: pointer;
  background: none; border: none; padding: 0;
  flex-direction: row-reverse;
}
.sunny-greeter .label {
  background: var(--white); color: var(--navy-teal);
  font-family: var(--display); font-weight: 600; font-size: .9rem;
  padding: 8px 14px; border-radius: 999px; box-shadow: var(--shadow);
  white-space: nowrap;
}
.sunny-greeter .bubble {
  width: 72px; height: 72px; border-radius: 50%;
  border: 3px solid var(--teal); background: var(--ink);
  display: grid; place-items: center; overflow: hidden;
  box-shadow: var(--shadow-lg); position: relative;
  transition: transform .2s ease;
}
.sunny-greeter:hover .bubble { transform: scale(1.06); }
.sunny-greeter .bubble .ph {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, rgba(43,168,181,.22) 0 10px, transparent 10px 20px);
}
.sunny-greeter .bubble .play {
  position: relative; color: var(--mint); font-size: 1.4rem;
  font-family: var(--body); text-align: center; line-height: 1;
}
.sunny-greeter .bubble img { width: 100%; height: 100%; object-fit: cover; position: relative; }
/* When Sunny's photo is present, shrink the play icon to a small corner badge over her face */
.sunny-greeter .bubble:has(img) .ph { display: none; }
.sunny-greeter .bubble:has(img) .play {
  position: absolute; bottom: 2px; right: 2px; z-index: 2;
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--cta-blue); color: var(--white);
  font-size: .7rem; display: grid; place-items: center;
  border: 2px solid var(--white);
}

/* Greeter modal */
.sunny-modal {
  position: fixed; inset: 0; z-index: 90; display: none;
  background: rgba(26,43,48,.72); align-items: center; justify-content: center; padding: 20px;
}
.sunny-modal.open { display: flex; }
.sunny-modal-card {
  background: var(--ink); border-radius: var(--radius); overflow: hidden;
  width: min(680px, 100%); box-shadow: var(--shadow-lg); position: relative;
}
.sunny-modal-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 18px; color: var(--white); font-family: var(--display); font-weight: 600;
}
.sunny-modal-close {
  background: rgba(255,255,255,.15); border: none; color: var(--white);
  width: 34px; height: 34px; border-radius: 50%; cursor: pointer; font-size: 1.1rem;
}
.sunny-modal-close:hover { background: rgba(255,255,255,.28); }
.sunny-modal .video-frame { margin: 0; border-radius: 0; }
.sunny-modal .video-frame .sunny-video { position: absolute; inset: 0; width: 100%; height: 100%; background: var(--ink); }

@media (max-width: 560px) {
  .sunny-greeter .label { display: none; }
}

/* ---------- Entrance animation ---------- */
.reveal { opacity: 0; transform: translateY(20px); animation: rise .7s ease forwards; }
.reveal.d1 { animation-delay: .1s; } .reveal.d2 { animation-delay: .2s; }
.reveal.d3 { animation-delay: .3s; } .reveal.d4 { animation-delay: .4s; }
@keyframes rise { to { opacity: 1; transform: none; } }
/* Safety: if animations are disabled/reduced or interrupted, never leave content stuck dim */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; animation: none !important; }
}

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open {
    display: flex; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0;
    background: var(--white); padding: 20px 24px; gap: 18px; box-shadow: var(--shadow);
  }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .amenity-strip { grid-template-columns: repeat(2,1fr); }
  .attraction, .contact-grid { grid-template-columns: 1fr; }
  .attraction:nth-child(even) .attraction-text { order: 0; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr; }
}

/* ===== Video gallery (videos page) ===== */
.video-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}
.video-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(27,90,107,.10);
  border: 1px solid rgba(27,90,107,.08);
  transition: transform .18s ease, box-shadow .18s ease;
}
.video-card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(27,90,107,.16); }
.video-card .video-frame { margin: 0; border-radius: 0; }
.video-card-body { padding: 18px 20px 22px; }
.video-card-body h3 { margin: 0 0 6px; color: var(--navy-teal); font-family: var(--display); }
.video-card-body p { margin: 0; color: var(--ink); opacity: .82; font-size: .96rem; }

/* ===== CTA section (shared) ===== */
.cta-section {
  background: linear-gradient(135deg, var(--cta-blue), var(--navy-teal));
  color: #fff;
  padding: 64px 0;
}
.cta-section h2 { color: #fff; }
.cta-section p { color: rgba(255,255,255,.92); }

/* ===== Secondary button ===== */
.btn-secondary {
  display: inline-block;
  background: var(--mint);
  color: var(--navy-teal);
  padding: 12px 22px;
  border-radius: 999px;
  font-family: var(--display);
  font-weight: 600;
  text-decoration: none;
  transition: background .15s ease;
}
.btn-secondary:hover { background: #93c9b9; }

/* ===== Full-bleed lilac photo hero (homepage) ===== */
.hero-photo {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: flex-start;
  background-image: url('img/hero-lilacs.jpg');
  background-size: cover;
  background-position: center 45%;
  padding: 0;
}
.hero-photo::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(27,90,107,.66) 0%, rgba(27,90,107,.30) 34%, rgba(27,90,107,0) 56%);
}
.hero-photo .wrap { width: 100%; position: relative; }
.hero-photo .hero-inner { max-width: 560px; color: #fff; padding: 56px 0 64px; }
.hero-photo .eyebrow { color: #fff; opacity: .95; }
.hero-photo .hero-title {
  font-size: 3.3rem; line-height: 1.0; margin: 10px 0 12px; color: #fff;
  white-space: nowrap; text-shadow: 0 2px 24px rgba(0,0,0,.4);
}
.hero-photo .hero-sub {
  font-family: var(--display); font-size: 1.5rem; font-weight: 500;
  margin: 0 0 14px; color: #fff; opacity: .98; text-shadow: 0 1px 16px rgba(0,0,0,.4);
}
.hero-photo .tagline { color: #fff; text-shadow: 0 1px 16px rgba(0,0,0,.45); max-width: 440px; }
.hero-photo .hero-ctas { margin-top: 24px; }
@media (max-width: 640px) {
  .hero-photo { min-height: 520px; }
  .hero-photo .hero-title { font-size: 2.4rem; white-space: normal; }
  .hero-photo::before { background: linear-gradient(180deg, rgba(27,90,107,.62) 0%, rgba(27,90,107,.30) 60%, rgba(27,90,107,.15) 100%); }
}

/* ===== Brand logo (circular badge) ===== */
.brand { display: inline-flex; align-items: center; }
.brand-logo {
  height: 100px; width: 100px; border-radius: 50%;
  object-fit: cover; display: block;
}
/* On the photo hero, the header sits over the image — give the logo a subtle
   white ring/backing so the badge reads cleanly on the lilacs. */
.hero-photo ~ * .brand-logo, .brand-logo {
  box-shadow: 0 0 0 3px rgba(255,255,255,.85), 0 2px 8px rgba(0,0,0,.18);
  background: #fff;
}
@media (max-width: 640px) {
  .brand-logo { height: 78px; width: 78px; }
}

/* ===== Dark cinematic hero (matches design target) ===== */
.hero-dark { min-height: 660px; align-items: stretch; background-position: center 32%; }
.hero-dark::before {
  background: linear-gradient(180deg, rgba(15,30,35,.42) 0%, rgba(15,30,35,.28) 45%, rgba(15,30,35,.78) 100%),
              linear-gradient(105deg, rgba(15,30,35,.74) 0%, rgba(15,30,35,.34) 40%, rgba(15,30,35,.06) 64%);
}
.hero-dark .wrap { display: flex; flex-direction: column; justify-content: flex-start; padding-top: 40px; padding-bottom: 28px; }
.hero-dark .hero-inner { max-width: 560px; padding: 8px 0 28px; flex: 1; }
.hero-dark .eyebrow { display: inline-flex; align-items: center; gap: 14px; color: var(--teal); }
.eyebrow-line { display: inline-block; width: 46px; height: 2px; background: var(--teal); }
.hero-dark .hero-title { font-size: 4rem; margin: 14px 0 8px; text-shadow: 0 2px 30px rgba(0,0,0,.5); }
.hero-dark .hero-sub { color: var(--teal); font-size: 1.7rem; margin: 0 0 20px; text-shadow: 0 1px 16px rgba(0,0,0,.5); }
.hero-dark .tagline { max-width: 460px; }

/* amenity strip */
.hero-amenities {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  padding: 22px 0; border-top: 1px solid rgba(255,255,255,.14);
}
.hero-amenities .ham { display: flex; align-items: center; gap: 12px; color: #fff; }
.hero-amenities .ham-ico { font-size: 1.7rem; line-height: 1; }
.hero-amenities .ham strong { display: block; font-family: var(--display); font-size: 1.02rem; }
.hero-amenities .ham span { display: block; font-size: .82rem; opacity: .8; }

/* booking band */
.hero-booking {
  display: grid; grid-template-columns: repeat(4, 1fr) auto; gap: 0;
  align-items: center; margin-top: 8px; text-decoration: none;
  background: rgba(20,38,44,.62); border: 1px solid rgba(255,255,255,.16);
  border-radius: 16px; backdrop-filter: blur(6px); overflow: hidden;
}
.hero-booking .hb-field { padding: 16px 22px; border-right: 1px solid rgba(255,255,255,.12); }
.hero-booking .hb-label { display: block; font-size: .8rem; color: rgba(255,255,255,.6); margin-bottom: 4px; }
.hero-booking .hb-val { display: block; font-family: var(--display); color: #fff; font-size: 1rem; }
.hero-booking .hb-cta {
  padding: 16px 34px; background: var(--teal); color: #fff;
  font-family: var(--display); font-weight: 600; font-size: 1.05rem;
  white-space: nowrap; height: 100%; display: flex; align-items: center;
}
.hero-booking:hover .hb-cta { background: #229aa6; }

@media (max-width: 860px) {
  .hero-amenities { grid-template-columns: repeat(2,1fr); gap: 16px; }
  .hero-booking { grid-template-columns: 1fr 1fr; }
  .hero-booking .hb-cta { grid-column: 1 / -1; justify-content: center; }
}
@media (max-width: 640px) {
  .hero-dark .hero-title { font-size: 2.5rem; white-space: normal; }
  .hero-dark .hero-sub { font-size: 1.3rem; }
  .hero-amenities { grid-template-columns: 1fr 1fr; }
}

/* ===== SVG icons + contrast panel (design-target polish) ===== */
.bico { width: 19px; height: 19px; margin-right: 9px; vertical-align: -4px; }
.hero-amenities .ham-ico {
  width: 30px; height: 30px; color: var(--teal); flex: 0 0 auto;
}
/* darkened panel behind amenity strip + booking band for contrast over busy photo */
.hero-dark .wrap { position: relative; }
.hero-amenities, .hero-booking { position: relative; z-index: 2; }
.hero-lower-panel {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 1;
  height: 320px; pointer-events: none;
  background: linear-gradient(180deg, rgba(15,28,33,0) 0%, rgba(15,28,33,.62) 38%, rgba(15,28,33,.82) 100%);
}

/* ===== Review scroller ===== */
.reviews-section { background: var(--sand); }
.reviews-scroller { overflow: hidden; margin: 32px 0 18px; position: relative; }
.reviews-track { display: flex; transition: transform .6s cubic-bezier(.4,0,.2,1); }
.review-card {
  flex: 0 0 100%; max-width: 720px; margin: 0 auto; padding: 0 24px;
  box-sizing: border-box; text-align: center;
}
.review-stars { color: #F5A623; font-size: 1.3rem; letter-spacing: 2px; margin-bottom: 14px; }
.review-card blockquote {
  font-family: var(--display); font-size: 1.45rem; line-height: 1.4;
  color: var(--navy-teal); margin: 0 0 18px; border: 0; font-weight: 500;
}
.review-card figcaption { color: var(--ink); font-weight: 600; }
.review-card figcaption span { color: #8a9aa0; font-weight: 400; }
.reviews-dots { display: flex; gap: 9px; justify-content: center; margin-top: 8px; }
.reviews-dots button {
  width: 9px; height: 9px; border-radius: 50%; border: 0; padding: 0;
  background: rgba(27,90,107,.25); cursor: pointer; transition: background .2s, transform .2s;
}
.reviews-dots button.active { background: var(--teal); transform: scale(1.3); }
@media (max-width: 640px) {
  .review-card blockquote { font-size: 1.15rem; }
  .review-card { padding: 0 8px; }
}

/* ===== Gallery carousel ===== */
.gallery-carousel { position: relative; max-width: 960px; margin: 0 auto; }
.gc-viewport { overflow: hidden; border-radius: 18px; box-shadow: var(--shadow-lg); }
.gc-track { display: flex; transition: transform .55s cubic-bezier(.4,0,.2,1); }
.gc-slide { flex: 0 0 100%; margin: 0; position: relative; }
.gc-slide img { width: 100%; height: 540px; object-fit: cover; display: block; }
.gc-slide figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  background: linear-gradient(transparent, rgba(15,28,33,.78));
  color: #fff; font-family: var(--display); font-size: 1.1rem;
  padding: 40px 24px 18px;
}
.gc-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 48px; height: 48px; border-radius: 50%; border: 0; cursor: pointer;
  background: rgba(255,255,255,.92); color: var(--navy-teal);
  font-size: 1.8rem; line-height: 1; display: grid; place-items: center;
  box-shadow: 0 2px 10px rgba(0,0,0,.2); transition: background .2s, transform .2s;
}
.gc-arrow:hover { background: #fff; transform: translateY(-50%) scale(1.08); }
.gc-prev { left: 14px; } .gc-next { right: 14px; }
.gc-dots { display: flex; gap: 9px; justify-content: center; margin-top: 18px; }
.gc-dots button {
  width: 9px; height: 9px; border-radius: 50%; border: 0; padding: 0;
  background: rgba(27,90,107,.25); cursor: pointer; transition: background .2s, transform .2s;
}
.gc-dots button.active { background: var(--teal); transform: scale(1.3); }
@media (max-width: 640px) {
  .gc-slide img { height: 320px; }
  .gc-arrow { width: 40px; height: 40px; font-size: 1.5rem; }
}

/* ===== Park site map ===== */
.sitemap-thumb {
  display: block; width: 100%; max-width: 860px; margin: 24px auto 0;
  border: 0; padding: 0; cursor: pointer; position: relative;
  border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-lg);
  background: #fff;
}
.sitemap-thumb img { width: 100%; height: auto; display: block; }
.sitemap-zoom {
  position: absolute; bottom: 14px; right: 14px;
  background: rgba(20,38,44,.82); color: #fff; font-family: var(--display);
  font-size: .9rem; padding: 8px 14px; border-radius: 999px;
  transition: background .2s;
}
.sitemap-thumb:hover .sitemap-zoom { background: var(--teal); }
.sitemap-lightbox {
  position: fixed; inset: 0; z-index: 1000; display: none;
  background: rgba(10,20,24,.92); padding: 4vh 4vw; box-sizing: border-box;
  align-items: center; justify-content: center;
}
.sitemap-lightbox.open { display: flex; }
.sitemap-lightbox img {
  max-width: 100%; max-height: 92vh; border-radius: 10px;
  box-shadow: 0 10px 50px rgba(0,0,0,.5);
}
.sitemap-lightbox-close {
  position: absolute; top: 20px; right: 28px; z-index: 1001;
  background: none; border: 0; color: #fff; font-size: 2.6rem;
  line-height: 1; cursor: pointer; padding: 0;
}

/* ===== Video poster cards (attraction photo + play, click to load) ===== */
.video-poster {
  width: 100%; height: 100%; border: 0; padding: 0; cursor: pointer;
  background-size: cover; background-position: center; position: relative;
  display: block;
}
.video-poster::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,28,33,.10), rgba(15,28,33,.38));
  transition: background .2s;
}
.video-poster:hover::after { background: linear-gradient(180deg, rgba(15,28,33,.05), rgba(15,28,33,.28)); }
.video-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 70px; height: 70px; border-radius: 50%; z-index: 2;
  background: rgba(43,168,181,.92);
  box-shadow: 0 4px 18px rgba(0,0,0,.35); transition: transform .2s, background .2s;
}
.video-play::before {
  content: ""; position: absolute; top: 50%; left: 54%; transform: translate(-50%,-50%);
  border-style: solid; border-width: 13px 0 13px 22px;
  border-color: transparent transparent transparent #fff;
}
.video-poster:hover .video-play { transform: translate(-50%,-50%) scale(1.08); background: var(--teal); }

/* ---------- Things to Do carousel ---------- */
.ttd-carousel { position: relative; margin-top: 8px; }
.ttd-viewport { overflow: hidden; }
.ttd-track { display: flex; transition: transform .45s cubic-bezier(.2,.7,.2,1); }
.ttd-card { flex: 0 0 33.3333%; box-sizing: border-box; padding: 0 11px; text-decoration: none; color: var(--ink); transition: transform .25s ease; }
.ttd-card > * { pointer-events: none; }
.ttd-card:hover { transform: translateY(-4px); }
.ttd-photo { position: relative; height: 190px; border-radius: var(--radius) var(--radius) 0 0; background-size: cover; background-position: center; background-color: var(--navy-teal); }
.ttd-photo::after { content: ""; position: absolute; inset: 0; border-radius: var(--radius) var(--radius) 0 0; background: linear-gradient(180deg, rgba(27,90,107,0) 55%, rgba(27,90,107,.45) 100%); }
.ttd-badge { position: absolute; top: 12px; left: 12px; z-index: 2; background: rgba(255,255,255,.92); color: var(--navy-teal); font-family: var(--display); font-weight: 600; font-size: .72rem; letter-spacing: .02em; padding: 5px 10px; border-radius: 999px; }
.ttd-text { background: var(--white); border: 1px solid rgba(27,90,107,.06); border-top: none; border-radius: 0 0 var(--radius) var(--radius); padding: 20px 22px 22px; box-shadow: var(--shadow); }
.ttd-text h3 { font-size: 1.2rem; margin-bottom: 8px; }
.ttd-text p { font-size: .96rem; margin-bottom: 12px; }
.ttd-link { font-family: var(--display); font-weight: 600; color: var(--teal); font-size: .95rem; }
.ttd-card:hover .ttd-text { box-shadow: var(--shadow-lg); }
.ttd-card:hover .ttd-link { color: var(--navy-teal); }
.ttd-arrow { position: absolute; top: 95px; transform: translateY(-50%); width: 44px; height: 44px; border-radius: 50%; border: none; cursor: pointer; background: var(--white); color: var(--navy-teal); box-shadow: var(--shadow); font-size: 1.6rem; line-height: 1; z-index: 6; display: grid; place-items: center; transition: background .2s ease, color .2s ease; }
.ttd-arrow:hover { background: var(--teal); color: var(--white); }
.ttd-arrow.prev { left: -8px; }
.ttd-arrow.next { right: -8px; }
.ttd-dots { display: flex; justify-content: center; gap: 9px; margin-top: 22px; }
.ttd-dots button { width: 9px; height: 9px; border-radius: 50%; border: none; padding: 0; cursor: pointer; background: rgba(27,90,107,.2); transition: all .3s ease; }
.ttd-dots button.active { width: 26px; border-radius: 999px; background: var(--teal); }
@media (max-width: 900px) { .ttd-card { flex-basis: 50%; } }
@media (max-width: 640px) { .ttd-card { flex-basis: 86%; } .ttd-arrow { display: none; } }

/* ---------- Rentals section ---------- */
.rental-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; margin-top: 10px; }
.rental-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); border: 1px solid rgba(27,90,107,.06);
  display: flex; flex-direction: column;
}
.rental-photo {
  height: 220px; background-size: cover; background-position: center;
  background-color: var(--navy-teal);
}
.rental-photo-soon {
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--mint), var(--teal));
  color: var(--white);
}
.rental-photo-soon span { font-family: var(--display); font-weight: 600; font-size: 1rem; opacity: .95; }
.rental-body { padding: 24px 26px 26px; display: flex; flex-direction: column; flex: 1; }
.rental-body h3 { font-size: 1.4rem; margin-bottom: 6px; }
.rental-rate { font-family: var(--display); font-weight: 700; color: var(--teal); font-size: 1.6rem; margin-bottom: 12px; }
.rental-rate span { font-size: 1rem; color: var(--ink); font-weight: 500; }
.rental-rate small { display: inline-block; font-size: .85rem; color: var(--ink); font-weight: 400; margin-left: 6px; }
.rental-feat { list-style: none; margin: 14px 0 20px; padding: 0; }
.rental-feat li { font-size: .94rem; padding: 5px 0 5px 24px; position: relative; color: var(--ink); }
.rental-feat li::before { content: "✓"; position: absolute; left: 0; color: var(--teal); font-weight: 700; }
.rental-card .btn { margin-top: auto; text-align: center; }
@media (max-width: 760px) { .rental-grid { grid-template-columns: 1fr; } }

/* ---------- Rental interior gallery ---------- */
.rental-gallery { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.rg-thumb {
  border: none; padding: 0; cursor: pointer; border-radius: 12px; overflow: hidden;
  aspect-ratio: 1; background: var(--navy-teal); box-shadow: var(--shadow);
  transition: transform .2s ease;
}
.rg-thumb:hover { transform: translateY(-3px); }
.rg-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 760px) { .rental-gallery { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 420px) { .rental-gallery { grid-template-columns: repeat(2, 1fr); } }

/* ========== LODGING PAGE ========== */
.lodging-hero {
  position: relative; overflow: hidden;
  min-height: 560px;
  display: flex; align-items: center;
  background-image: url('img/str/RV2 - Exterior2.jpg');
  background-size: cover; background-position: center;
  color: var(--white); padding: 0;
}
.lodging-hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(27,90,107,.82) 0%, rgba(27,90,107,.55) 38%, rgba(27,90,107,.22) 64%, rgba(27,90,107,.12) 100%);
  pointer-events: none;
}
.lodging-hero .wrap { position: relative; z-index: 1; max-width: 760px; padding-top: 70px; padding-bottom: 76px; }
.lodging-hero .eyebrow { color: var(--mint); font-family: var(--display); font-weight: 600; letter-spacing: .12em; text-transform: uppercase; font-size: .85rem; margin-bottom: 14px; text-shadow: 0 1px 12px rgba(0,0,0,.4); }
.lodging-hero h1 { color: var(--white); font-size: clamp(2.4rem, 5vw, 3.6rem); margin-bottom: 18px; text-shadow: 0 2px 24px rgba(0,0,0,.45); }
.lodging-hero .tagline { font-size: 1.18rem; line-height: 1.6; max-width: 620px; color: rgba(255,255,255,.96); text-shadow: 0 1px 12px rgba(0,0,0,.4); }
.lodging-hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.lodging-hero .btn-ghost { color: #fff; border: 2px solid rgba(255,255,255,.8); background: rgba(255,255,255,.06); }
.lodging-hero .btn-ghost:hover { background: rgba(255,255,255,.18); }

/* Why-stay grid */
.lodging-why { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 38px; }
.why-item { text-align: left; }
.why-ico { width: 54px; height: 54px; border-radius: 14px; background: var(--mint); display: grid; place-items: center; font-size: 1.7rem; margin-bottom: 14px; }
.why-item h3 { font-size: 1.15rem; margin-bottom: 6px; }
.why-item p { font-size: .96rem; }

/* Unit feature rows (alternating image/copy) */
.unit-feature {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 0;
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); border: 1px solid rgba(27,90,107,.06);
  margin-top: 30px;
}
.unit-feature.reverse .unit-photo { order: 2; }
.unit-photo { min-height: 340px; background-size: cover; background-position: center; background-color: var(--navy-teal); }
.unit-photo-soon { display: grid; place-items: center; background: linear-gradient(135deg, var(--mint), var(--teal)); color: #fff; }
.unit-photo-soon span { font-family: var(--display); font-weight: 600; font-size: 1.05rem; opacity: .95; }
.unit-copy { padding: 38px 40px; display: flex; flex-direction: column; justify-content: center; }
.unit-tag { display: inline-block; align-self: flex-start; font-family: var(--display); font-weight: 600; font-size: .72rem; letter-spacing: .06em; text-transform: uppercase; color: var(--teal); background: rgba(43,168,181,.1); padding: 5px 12px; border-radius: 999px; margin-bottom: 12px; }
.unit-copy h3 { font-size: 1.65rem; margin-bottom: 8px; }
.unit-rate { font-family: var(--display); font-weight: 700; color: var(--teal); font-size: 1.7rem; margin-bottom: 14px; }
.unit-rate span { font-size: 1rem; color: var(--ink); font-weight: 500; }
.unit-rate small { font-size: .85rem; color: var(--ink); font-weight: 400; margin-left: 6px; }
.unit-feat { list-style: none; margin: 16px 0 24px; padding: 0; }
.unit-feat li { font-size: .97rem; padding: 6px 0 6px 26px; position: relative; }
.unit-feat li::before { content: "✓"; position: absolute; left: 0; color: var(--teal); font-weight: 700; }
.unit-copy .btn { align-self: flex-start; }

/* FAQ */
.lodging-faq { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px 40px; margin-top: 36px; }
.faq-item h3 { font-size: 1.12rem; margin-bottom: 6px; color: var(--navy-teal); }
.faq-item p { font-size: .97rem; }

@media (max-width: 860px) {
  .lodging-why { grid-template-columns: repeat(2, 1fr); }
  .unit-feature, .unit-feature.reverse { grid-template-columns: 1fr; }
  .unit-feature.reverse .unit-photo { order: 0; }
  .unit-photo { min-height: 240px; }
  .lodging-faq { grid-template-columns: 1fr; }
}

/* ---------- Secondary-page photo hero band ---------- */
.hero-img-band {
  position: relative; overflow: hidden;
  min-height: 340px;
  display: flex; align-items: center;
  background-size: cover; background-position: center;
  color: var(--white); padding: 0 !important;
}
.hero-img-band::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(27,90,107,.84) 0%, rgba(27,90,107,.58) 42%, rgba(27,90,107,.30) 100%);
  pointer-events: none;
}
.hero-img-band .wrap { position: relative; z-index: 1; padding: 56px 0; }
.hero-img-band .eyebrow { color: var(--mint); font-family: var(--display); font-weight: 600; letter-spacing: .12em; text-transform: uppercase; font-size: .82rem; margin-bottom: 12px; text-shadow: 0 1px 10px rgba(0,0,0,.4); }
.hero-img-band h1 { color: var(--white); font-size: clamp(2.2rem, 4.5vw, 3.2rem); margin-bottom: 14px; text-shadow: 0 2px 20px rgba(0,0,0,.45); }
.hero-img-band .tagline { color: rgba(255,255,255,.96); font-size: 1.12rem; line-height: 1.55; max-width: 600px; text-shadow: 0 1px 10px rgba(0,0,0,.4); }

/* ===== Sunny custom chat ===== */
/* ---------- Sunny custom chat ---------- */
.sunny { position: fixed; right: 22px; bottom: 22px; z-index: 90; font-family: var(--body, system-ui, sans-serif); }

/* The corner circle — Sunny's face */
.sunny-fab {
  width: 64px; height: 64px; border-radius: 50%; cursor: pointer;
  border: 3px solid #fff; padding: 0; overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,.28);
  background: var(--navy-teal, #1B5A6B);
  transition: transform .2s ease, box-shadow .2s ease;
  position: relative; display: block;
}
.sunny-fab:hover { transform: scale(1.06); box-shadow: 0 10px 30px rgba(0,0,0,.34); }
.sunny-fab img { width: 100%; height: 100%; object-fit: cover; display: block; }
/* little pulse dot to draw the eye */
.sunny-fab::after {
  content: ""; position: absolute; top: 2px; right: 2px;
  width: 14px; height: 14px; border-radius: 50%;
  background: #5ED27A; border: 2px solid #fff;
}

/* Greeting popover (the "pops out" card) */
.sunny-pop {
  position: absolute; right: 0; bottom: 78px; width: 300px;
  background: #fff; border-radius: 18px; padding: 18px 18px 16px;
  box-shadow: 0 16px 44px rgba(27,90,107,.28);
  opacity: 0; transform: translateY(12px) scale(.96); transform-origin: bottom right;
  pointer-events: none; transition: opacity .22s ease, transform .22s ease;
}
.sunny-pop.open { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.sunny-pop .pop-head { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.sunny-pop .pop-face { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; flex: 0 0 auto; border: 2px solid var(--mint, #A8D5C8); }
.sunny-pop .pop-hi { font-family: var(--display, sans-serif); font-weight: 600; color: var(--navy-teal, #1B5A6B); font-size: 1.05rem; line-height: 1.2; }
.sunny-pop .pop-sub { font-size: .9rem; color: #555; line-height: 1.45; margin: 0 0 14px; }
.sunny-pop .pop-btn {
  display: block; width: 100%; text-align: center; cursor: pointer;
  border: none; border-radius: 10px; padding: 11px 14px; margin-top: 8px;
  font-family: var(--display, sans-serif); font-weight: 600; font-size: .92rem;
}
.sunny-pop .pop-btn-chat { background: var(--teal, #2BA8B5); color: #fff; }
.sunny-pop .pop-btn-chat:hover { background: #229aa6; }
.sunny-pop .pop-btn-video { background: var(--sand, #F4EDE2); color: var(--navy-teal, #1B5A6B); }
.sunny-pop .pop-btn-video:hover { background: #ece1cf; }
.sunny-pop .pop-close { position: absolute; top: 10px; right: 12px; border: none; background: none; font-size: 1.2rem; color: #aaa; cursor: pointer; line-height: 1; }

/* Chat panel */
.sunny-panel {
  position: absolute; right: 0; bottom: 78px; width: 360px; max-width: calc(100vw - 32px);
  height: 520px; max-height: calc(100vh - 130px);
  background: #fff; border-radius: 18px; overflow: hidden;
  box-shadow: 0 16px 50px rgba(27,90,107,.32);
  display: none; flex-direction: column;
  opacity: 0; transform: translateY(12px) scale(.97); transform-origin: bottom right;
  transition: opacity .24s ease, transform .24s ease;
}
.sunny-panel.open { display: flex; opacity: 1; transform: translateY(0) scale(1); }
.sunny-panel .sp-head {
  background: linear-gradient(135deg, var(--navy-teal,#1B5A6B), var(--teal,#2BA8B5));
  color: #fff; padding: 14px 16px; display: flex; align-items: center; gap: 12px;
}
.sunny-panel .sp-head img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(255,255,255,.6); }
.sunny-panel .sp-head .sp-name { font-family: var(--display, sans-serif); font-weight: 600; font-size: 1.05rem; }
.sunny-panel .sp-head .sp-status { font-size: .78rem; opacity: .9; }
.sunny-panel .sp-close { margin-left: auto; background: none; border: none; color: #fff; font-size: 1.4rem; cursor: pointer; line-height: 1; }
.sunny-panel .sp-msgs { flex: 1; overflow-y: auto; padding: 16px; background: var(--sand,#F4EDE2); display: flex; flex-direction: column; gap: 10px; }
.sunny-msg { max-width: 82%; padding: 10px 13px; border-radius: 14px; font-size: .92rem; line-height: 1.45; white-space: pre-wrap; word-wrap: break-word; }
.sunny-msg.bot { background: #fff; color: #2c2c2c; align-self: flex-start; border-bottom-left-radius: 4px; box-shadow: 0 1px 4px rgba(0,0,0,.06); }
.sunny-msg.me { background: var(--teal,#2BA8B5); color: #fff; align-self: flex-end; border-bottom-right-radius: 4px; }
.sunny-typing { align-self: flex-start; background: #fff; padding: 12px 14px; border-radius: 14px; border-bottom-left-radius: 4px; display: none; gap: 4px; box-shadow: 0 1px 4px rgba(0,0,0,.06); }
.sunny-typing.show { display: flex; }
.sunny-typing span { width: 7px; height: 7px; border-radius: 50%; background: var(--teal,#2BA8B5); opacity: .5; animation: sunnyBlink 1.2s infinite; }
.sunny-typing span:nth-child(2){ animation-delay:.2s } .sunny-typing span:nth-child(3){ animation-delay:.4s }
@keyframes sunnyBlink { 0%,60%,100%{opacity:.3;transform:translateY(0)} 30%{opacity:1;transform:translateY(-3px)} }
.sunny-panel .sp-input { display: flex; gap: 8px; padding: 12px; border-top: 1px solid #eee; background: #fff; }
.sunny-panel .sp-input input { flex: 1; border: 1px solid #ddd; border-radius: 20px; padding: 10px 15px; font-size: .92rem; outline: none; }
.sunny-panel .sp-input input:focus { border-color: var(--teal,#2BA8B5); }
.sunny-panel .sp-input button { flex: 0 0 auto; border: none; background: var(--teal,#2BA8B5); color: #fff; width: 40px; height: 40px; border-radius: 50%; cursor: pointer; font-size: 1.1rem; }
.sunny-panel .sp-input button:disabled { opacity: .5; cursor: default; }
.sunny-powered { text-align: center; font-size: .68rem; color: #999; padding: 0 0 6px; background: #fff; }

@media (max-width: 480px) {
  .sunny-panel { width: calc(100vw - 24px); right: -10px; }
  .sunny-pop { width: 270px; }
}
