/* ═══════════════════════════════════════════════════════════
   shared.css — Rogue River Resort global stylesheet
   Used by: all pages
   ═══════════════════════════════════════════════════════════ */


*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --navy:       #0d1f3c;
  --navy-mid:   #162d54;
  --navy-light: #1e3f6e;
  --orange:     #e8752a;
  --orange-light: #f0a060;
  --gold:       #d4931a;
  --gold-light: #f0b84a;
  --sky:        #4a7fb5;
  --sky-light:  #a8c8e8;
  --cream:      #f5f0e8;
  --cream-dark: #e8e0d0;
  --white:      #fdfaf6;
  --text-dark:  #0d1a2a;
  --text-mid:   #2a3a50;
  --text-light: #5a6a80;
}
html { scroll-behavior: smooth; }
body { font-family: "DM Sans", sans-serif; background: var(--white); color: var(--text-dark); overflow-x: hidden; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 10px 48px;
  display: flex; align-items: center; justify-content: space-between;
  background: #0d1f3c;
  box-shadow: 0 2px 16px rgba(0,0,0,0.3);
  transition: padding 0.3s;
}
nav.scrolled { padding: 8px 48px; }
.nav-logo img { height: 52px; transition: height 0.3s; }
nav.scrolled .nav-logo img { height: 44px; }
.nav-links { display: flex; gap: 4px; list-style: none; align-items: center; }
.nav-links > li { position: relative; }
.nav-links > li > a {
  font-size: 14px; font-weight: 400; letter-spacing: 0.3px;
  color: rgba(255,255,255,0.88); text-decoration: none;
  padding: 8px 14px; border-radius: 6px;
  transition: color 0.3s, background 0.2s;
  display: block; white-space: nowrap;
}
nav.scrolled .nav-links > li > a { color: var(--text-mid); }
.nav-links > li > a:hover { background: rgba(255,255,255,0.12); }
nav.scrolled .nav-links > li > a:hover { color: var(--navy); background: var(--cream); }
.nav-book {
  background: var(--gold) !important; color: var(--white) !important;
  padding: 9px 20px !important; border-radius: 40px !important;
  font-weight: 500 !important; margin-left: 8px;
}
.nav-book:hover { background: var(--orange) !important; }
.dropdown {
  display: none; position: absolute; top: calc(100% + 4px); left: 0;
  background: var(--white); border-radius: 12px; min-width: 180px;
  box-shadow: 0 8px 30px rgba(13,31,60,0.15); list-style: none;
  padding: 8px 0; border: 1px solid var(--cream-dark); z-index: 200;
}
.has-dropdown .dropdown { display: none; }
.has-dropdown.open .dropdown { display: block; }
.dropdown li a {
  display: block; padding: 10px 20px; font-size: 14px;
  color: var(--text-mid) !important; text-decoration: none;
  transition: background 0.2s, color 0.2s; background: transparent !important;
}
.dropdown li a:hover { background: var(--cream) !important; color: var(--navy) !important; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.nav-hamburger span { width: 24px; height: 2px; background: white; border-radius: 2px; transition: background 0.3s; }
nav.scrolled .nav-hamburger span { background: var(--text-dark); }
@media(max-width:960px) {
  nav { padding: 12px 20px; }
  nav.scrolled { padding: 8px 48px; }
  .nav-hamburger { display: flex; }
  .nav-links {
    display: none; flex-direction: column; align-items: flex-start; gap: 0;
    position: fixed; top: 0; right: 0; bottom: 0; width: 280px;
    background: var(--white); box-shadow: -4px 0 20px rgba(0,0,0,0.15);
    padding: 80px 0 40px; z-index: 99; overflow-y: auto;
  }
  .nav-links.open { display: flex; }
  .nav-links > li { width: 100%; }
  .nav-links > li > a { color: rgba(255,255,255,0.88) !important; border-radius: 0; padding: 14px 24px; }
  .dropdown { display: none !important; position: static; box-shadow: none; border: none; padding: 0; border-top: 1px solid var(--cream-dark); border-radius: 0; }
  .has-dropdown.open .dropdown { display: block !important; }
  .dropdown li a { padding: 10px 24px 10px 36px; font-size: 13px; }
  .nav-book { margin: 12px 24px !important; border-radius: 40px !important; display: block; text-align: center; }
}

/* ── HERO ── */
.hero {
  position: relative; height: 100vh; min-height: 600px;
  display: flex; align-items: center; justify-content: center;
  background: var(--navy); overflow: hidden;
}
.hero video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0.82;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(13,31,60,0.25) 0%, rgba(13,31,60,0.1) 50%, rgba(13,31,60,0.35) 100%);
}
.hero-bottom-fade {
  position: absolute; bottom: 0; left: 0; right: 0; height: 220px;
  background: linear-gradient(to bottom, transparent, rgba(13,31,60,0.4));
}
.hero-content {
  position: relative; z-index: 2; text-align: center;
  padding: 0 24px; max-width: 800px;
}
.hero-eyebrow {
  font-size: 12px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold-light); font-weight: 500; margin-bottom: 24px;
}
.hero-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 400; color: var(--white); line-height: 1.1;
  margin-bottom: 24px;
}
.hero-title em { font-style: italic; color: var(--orange-light); }
.hero-sub {
  font-size: 18px; color: rgba(255,255,255,0.75);
  font-weight: 300; line-height: 1.7; margin-bottom: 40px; max-width: 560px; margin-left: auto; margin-right: auto;
}
.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  background: var(--gold); color: var(--white); padding: 14px 32px;
  border-radius: 40px; font-size: 15px; font-weight: 500;
  text-decoration: none; transition: background 0.2s, transform 0.2s;
  display: inline-block;
}
.btn-primary:hover { background: var(--orange); transform: translateY(-1px); }
.btn-ghost {
  border: 1.5px solid rgba(255,255,255,0.45); color: var(--white);
  padding: 14px 32px; border-radius: 40px; font-size: 15px; font-weight: 400;
  text-decoration: none; transition: border-color 0.2s, background 0.2s;
  display: inline-block;
}
.btn-ghost:hover { border-color: white; background: rgba(255,255,255,0.08); }
.btn-light {
  background: var(--white); color: var(--navy); padding: 14px 32px;
  border-radius: 40px; font-size: 15px; font-weight: 500;
  text-decoration: none; transition: background 0.2s; display: inline-block;
}
.btn-light:hover { background: var(--cream); }
.hero-scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.5); font-size: 11px; letter-spacing: 2px;
  text-transform: uppercase; z-index: 2;
  animation: bounce 2s ease-in-out infinite;
}
.hero-scroll svg { width: 14px; height: 20px; }
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(6px)} }

/* ── STRIP ── */
.strip {
  background: var(--navy); padding: 16px 48px;
  display: flex; gap: 0; justify-content: center; flex-wrap: wrap;
}
.strip-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; letter-spacing: 0.5px; color: rgba(255,255,255,0.65);
  padding: 6px 28px; border-right: 1px solid rgba(255,255,255,0.12);
  white-space: nowrap;
}
.strip-item:last-child { border-right: none; }
.strip-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }

/* ── SECTIONS COMMON ── */
section { padding: 96px 48px; }
.section-eyebrow {
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--orange); font-weight: 500; margin-bottom: 14px; display: block;
}
.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(32px, 4vw, 52px); font-weight: 400;
  color: var(--navy); line-height: 1.2; margin-bottom: 28px;
}
.section-title em { font-style: italic; color: var(--orange); }

/* ── INTRO ── */
.intro {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.intro-text p {
  font-size: 16px; line-height: 1.8; color: var(--text-mid);
  font-weight: 300; margin-bottom: 16px;
}
.intro-stats {
  display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--cream-dark);
  border-radius: 16px; overflow: hidden;
}
.stat-box {
  padding: 36px 28px; text-align: center;
  border-right: 1px solid var(--cream-dark);
  border-bottom: 1px solid var(--cream-dark);
}
.stat-box:nth-child(2), .stat-box:nth-child(4) { border-right: none; }
.stat-box:nth-child(3), .stat-box:nth-child(4) { border-bottom: none; }
.stat-num {
  font-family: "Playfair Display", serif; font-size: 40px;
  color: var(--navy); margin-bottom: 6px;
}
.stat-label { font-size: 13px; color: var(--text-light); letter-spacing: 0.5px; }

/* ── CABINS ── */
.cabins-section { background: var(--cream); padding: 96px 48px; }
.cabins-header {
  max-width: 1200px; margin: 0 auto 48px;
  display: flex; align-items: flex-end; justify-content: space-between; gap: 24px;
}
.cabins-header .section-title { margin-bottom: 0; }
.cabins-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.cabin-card {
  background: var(--white); border-radius: 16px; overflow: hidden;
  text-decoration: none; color: inherit;
  box-shadow: 0 2px 12px rgba(13,31,60,0.06);
  transition: box-shadow 0.3s, transform 0.3s;
  display: flex; flex-direction: column;
}
.cabin-card:hover { box-shadow: 0 8px 32px rgba(13,31,60,0.12); transform: translateY(-3px); }
.cabin-card.featured { grid-column: span 2; }
.cabin-img { height: 260px; overflow: hidden; background: var(--cream-dark); }
.cabin-card.featured .cabin-img { height: 320px; }
.cabin-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.cabin-card:hover .cabin-img img { transform: scale(1.04); }
.cabin-badge {
  position: absolute; top: 14px; right: 14px;
  background: var(--gold); color: white;
  font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 4px 12px; border-radius: 20px; font-weight: 500;
}
.cabin-info { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.cabin-name { font-family: "Playfair Display", serif; font-size: 20px; color: var(--navy); margin-bottom: 10px; }
.cabin-meta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 16px; }
.cabin-meta span { font-size: 13px; color: var(--text-light); }
.cabin-footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 16px; border-top: 1px solid var(--cream-dark); }
.cabin-price { font-size: 20px; font-weight: 500; color: var(--navy); }
.cabin-price span { font-size: 14px; color: var(--text-light); font-weight: 300; }
.cabin-link { font-size: 14px; color: var(--orange); font-weight: 500; }

/* ── RIVER SECTION ── */
.river-section { background: var(--navy-mid); padding: 96px 48px; }
.river-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
}
.river-features { display: flex; flex-direction: column; gap: 32px; margin-top: 8px; }
.feature-item { display: flex; gap: 20px; align-items: flex-start; }
.feature-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(255,255,255,0.06); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; border: 1px solid rgba(255,255,255,0.1);
}
.feature-icon svg { width: 20px; height: 20px; }
.feature-text h4 { font-size: 15px; font-weight: 500; color: var(--white); margin-bottom: 6px; }
.feature-text p { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.55); font-weight: 300; }
.river-photos { display: flex; flex-direction: column; gap: 12px; height: 560px; }
.river-photos .rp-top { flex: 1.4; border-radius: 16px; overflow: hidden; border: 1px solid rgba(255,255,255,0.08); }
.river-photos .rp-bottom { flex: 1; border-radius: 16px; overflow: hidden; border: 1px solid rgba(255,255,255,0.08); }
.river-photos img { width: 100%; height: 100%; object-fit: cover; }

/* ── TESTIMONIALS ── */
.testimonials-header { max-width: 1200px; margin: 0 auto 48px; text-align: center; }
.testimonials-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3,1fr); gap: 24px;
}
.testimonial-card {
  background: var(--cream); border-radius: 16px; padding: 32px;
  border: 1px solid var(--cream-dark);
}
.stars { display: flex; gap: 4px; margin-bottom: 16px; }
.star { width: 14px; height: 14px; background: var(--gold); clip-path: polygon(50% 0%,61% 35%,98% 35%,68% 57%,79% 91%,50% 70%,21% 91%,32% 57%,2% 35%,39% 35%); }
.testimonial-text { font-size: 15px; line-height: 1.75; color: var(--text-mid); font-weight: 300; margin-bottom: 20px; font-style: italic; }
.testimonial-author { font-size: 13px; color: var(--text-light); font-weight: 500; }

/* ── BOOKING CTA ── */
.booking-section {
  background: var(--navy); padding: 96px 48px; text-align: center;
}
.booking-inner { max-width: 640px; margin: 0 auto; }
.booking-section .section-eyebrow { color: var(--gold-light); }
.booking-section .section-title { color: var(--white); }
.booking-section .section-title em { color: var(--orange-light); }
.booking-sub { font-size: 16px; color: rgba(255,255,255,0.6); font-weight: 300; line-height: 1.7; margin-bottom: 40px; }
.booking-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ── */
footer { background: #060f1e; color: rgba(255,255,255,0.4); padding: 60px 48px 36px; }
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.06); margin-bottom: 28px;
}
.footer-logo img { height: 52px; margin-bottom: 14px; }
.footer-brand p { font-size: 14px; line-height: 1.7; font-weight: 300; }
.footer-col h4 { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-bottom: 16px; font-weight: 500; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { font-size: 14px; color: rgba(255,255,255,0.38); text-decoration: none; transition: color 0.2s; font-weight: 300; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; font-size: 13px; flex-wrap: wrap; gap: 12px; }
.footer-social { display: flex; gap: 14px; margin-top: 16px; }
.footer-social a { color: rgba(255,255,255,0.4); transition: color 0.2s; }
.footer-social a:hover { color: var(--gold-light); }
.footer-social svg { width: 20px; height: 20px; }

/* ── RESPONSIVE ── */
@media(max-width:960px) {
  section { padding: 64px 24px; }
  .cabins-section { padding: 64px 24px; }
  .river-section { padding: 64px 24px; }
  .booking-section { padding: 64px 24px; }
  .strip { padding: 12px 24px; }
  footer { padding: 48px 24px 28px; }
  .intro { grid-template-columns: 1fr; gap: 48px; }
  .cabins-grid { grid-template-columns: 1fr; }
  .cabin-card.featured { grid-column: span 1; }
  .river-inner { grid-template-columns: 1fr; }
  .river-photos { height: 360px; flex-direction: row; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .cabins-header { flex-direction: column; align-items: flex-start; }
}
@media(max-width:600px) {
  .strip-item { padding: 6px 16px; font-size: 12px; }
  .footer-inner { grid-template-columns: 1fr; }
  .river-photos { flex-direction: column; height: 400px; }
  .hero-cta { flex-direction: column; align-items: center; }
}


/* ── RETREAT / EVENT PAGES ────────────────────────────────── */


/* ── CABIN PAGE SPECIFIC ─────────────────────────────────────────── */

/* Breadcrumb */
.breadcrumb {
  margin-top: 76px; padding: 14px 48px;
  background: var(--white); border-bottom: 1px solid var(--cream-dark);
  font-size: 13px; color: var(--text-light);
}
.breadcrumb a { color: var(--text-light); text-decoration: none; transition: color .2s; }
.breadcrumb a:hover { color: var(--navy); }
.breadcrumb span { margin: 0 8px; opacity: .5; }

/* Cabin header (title above gallery) */
.cabin-page-header {
  padding: 28px 48px 12px;
  background: var(--white);
  border-bottom: 1px solid var(--cream-dark);
}
.cabin-page-eyebrow {
  font-size: 11px; font-weight: 500; letter-spacing: .12em;
  text-transform: uppercase; color: var(--orange); margin-bottom: 6px;
}
.cabin-page-header h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--navy); font-weight: 400; line-height: 1.2;
}
.cabin-page-header h1 em { font-style: italic; color: var(--orange); }

/* Gallery grid */
.cabin-gallery {
  display: grid; grid-template-columns: 2fr 1fr;
  grid-template-rows: 260px 260px; gap: 6px;
  padding: 0 48px 32px; background: var(--white);
  max-width: 1200px;
}
.cabin-gallery .gallery-hero { grid-row: 1 / 3; position: relative; overflow: hidden; border-radius: 8px 0 0 8px; cursor: pointer; }
.cabin-gallery .gallery-thumb { position: relative; overflow: hidden; cursor: pointer; }
.cabin-gallery .gallery-thumb:first-of-type { border-radius: 0 8px 0 0; }
.cabin-gallery .gallery-thumb:last-of-type  { border-radius: 0 0 8px 0; }
.cabin-gallery .gallery-hero img, .cabin-gallery .gallery-thumb img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .4s ease;
}
.cabin-gallery .gallery-hero:hover img, .cabin-gallery .gallery-thumb:hover img { transform: scale(1.04); }
.cabin-gallery .gallery-overlay {
  position: absolute; inset: 0; background: rgba(13,31,60,.18);
  opacity: 0; transition: opacity .3s;
}
.cabin-gallery .gallery-hero:hover .gallery-overlay,
.cabin-gallery .gallery-thumb:hover .gallery-overlay { opacity: 1; }
.gallery-view-all {
  position: absolute; bottom: 14px; right: 14px;
  background: rgba(255,255,255,.95); border: none; cursor: pointer;
  padding: 8px 16px; border-radius: 6px; font-size: 13px; font-weight: 600;
  color: var(--navy); display: flex; align-items: center; gap: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,.15); transition: all .2s; font-family: "DM Sans", sans-serif;
}
.gallery-view-all:hover { background: #fff; box-shadow: 0 4px 16px rgba(0,0,0,.2); }

/* Content two-column layout */
.cabin-content {
  display: grid; grid-template-columns: 1fr 340px; gap: 48px;
  padding: 40px 48px 80px; max-width: 1200px; margin: 0 auto;
}

/* Quick facts pills */
.quick-facts { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.quick-fact {
  display: flex; align-items: center; gap: 7px;
  font-size: 13px; font-weight: 500; color: var(--navy);
  background: #eef2ff; padding: 7px 14px; border-radius: 20px;
}
.quick-fact svg { width: 16px; height: 16px; stroke: var(--orange); flex-shrink: 0; }

/* Section labels */
.content-label {
  font-size: 11px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--orange); margin-bottom: 8px; display: block;
}
.body-text { font-size: 15px; line-height: 1.8; color: var(--text-mid); margin-bottom: 28px; font-weight: 300; }

/* Amenities */
.amenities-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 32px; }
.amenity { display: flex; align-items: center; gap: 9px; font-size: 14px; color: var(--text-dark); }
.amenity svg { width: 18px; height: 18px; stroke: var(--orange); flex-shrink: 0; }

/* Tabs */
.tab-bar { display: flex; border-bottom: 2px solid var(--cream-dark); margin-bottom: 20px; }
.tab-btn {
  background: none; border: none; padding: 10px 18px;
  font-size: 14px; font-weight: 500; color: var(--text-light);
  cursor: pointer; border-bottom: 2px solid transparent;
  margin-bottom: -2px; transition: all .2s; font-family: "DM Sans", sans-serif;
}
.tab-btn.active { color: var(--navy); border-bottom-color: var(--orange); font-weight: 600; }
.tab-panel { display: none; font-size: 14px; line-height: 1.8; color: var(--text-mid); font-weight: 300; }
.tab-panel.active { display: block; }
.tab-panel ul { padding-left: 20px; }
.tab-panel ul li { margin-bottom: 6px; }

/* Sticky booking card */
.book-card {
  background: var(--white); border: 1px solid var(--cream-dark);
  border-radius: 16px; padding: 28px; position: sticky; top: 84px;
  box-shadow: 0 4px 24px rgba(13,31,60,.08);
}
.book-card-price { font-size: 26px; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.book-card-price span { font-size: 15px; font-weight: 300; color: var(--text-light); }
.book-card-rating { font-size: 13px; color: var(--text-light); margin-bottom: 20px; }
.book-card-rating strong { color: var(--text-dark); }
.book-btn {
  display: block; width: 100%; background: var(--gold); color: var(--white);
  text-align: center; padding: 14px; border-radius: 40px;
  font-size: 15px; font-weight: 500; text-decoration: none;
  margin-bottom: 12px; transition: background .2s; font-family: "DM Sans", sans-serif;
}
.book-btn:hover { background: var(--orange); }
.book-secondary {
  display: block; width: 100%; border: 1.5px solid var(--cream-dark);
  color: var(--navy); text-align: center; padding: 12px; border-radius: 40px;
  font-size: 14px; font-weight: 500; text-decoration: none;
  margin-bottom: 20px; transition: all .2s; font-family: "DM Sans", sans-serif;
}
.book-secondary:hover { border-color: var(--navy); }
.book-details { font-size: 13px; color: var(--text-light); border-top: 1px solid var(--cream-dark); padding-top: 16px; }
.book-detail-row { display: flex; justify-content: space-between; margin-bottom: 8px; }
.book-detail-row strong { color: var(--text-dark); font-weight: 500; }
.book-guarantee { font-size: 12px; text-align: center; color: var(--text-light); margin-top: 14px; }

/* More cabins strip */
.more-cabins-section { padding: 48px; background: var(--cream); border-top: 1px solid var(--cream-dark); }
.more-cabins-section h3 {
  font-family: "Playfair Display", serif; font-size: 1.8rem;
  color: var(--navy); margin-bottom: 24px; font-weight: 400;
}
.more-cabins-section h3 em { font-style: italic; color: var(--orange); }
.cabin-strip { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.cabin-strip-card {
  background: var(--white); border: 1px solid var(--cream-dark);
  border-radius: 12px; overflow: hidden; text-decoration: none; color: inherit;
  transition: transform .2s, box-shadow .2s; display: block;
}
.cabin-strip-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(13,31,60,.1); }
.cabin-strip-card img { width: 100%; height: 140px; object-fit: cover; display: block; }
.cabin-strip-body { padding: 12px 14px; }
.cabin-strip-title { font-weight: 600; font-size: 14px; color: var(--navy); margin-bottom: 2px; }
.cabin-strip-sub { font-size: 12px; color: var(--text-light); margin-bottom: 6px; }
.cabin-strip-price { font-size: 13px; font-weight: 500; color: var(--orange); }

/* Lightbox */
#lightbox {
  display: none; position: fixed; inset: 0; z-index: 1000;
  background: rgba(0,0,0,.92); align-items: center;
  justify-content: center; flex-direction: column;
}
#lightbox.open { display: flex; }
.lb-close {
  position: absolute; top: 20px; right: 24px; background: none;
  border: none; color: #fff; font-size: 32px; cursor: pointer;
  opacity: .7; transition: opacity .2s; z-index: 10; line-height: 1;
}
.lb-close:hover { opacity: 1; }
#lb-img { max-width: 88vw; max-height: 72vh; object-fit: contain; border-radius: 4px; display: block; }
.lb-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.1); border: none; color: #fff;
  font-size: 2.4rem; padding: 10px 20px; cursor: pointer;
  border-radius: 4px; transition: background .2s; z-index: 10;
}
.lb-nav:hover { background: rgba(255,255,255,.25); }
#lb-prev { left: 20px; }
#lb-next { right: 20px; }
#lb-counter { color: rgba(255,255,255,.55); font-size: 13px; margin-top: 12px; }
#lb-thumbs {
  display: flex; gap: 6px; margin-top: 12px;
  flex-wrap: wrap; justify-content: center; max-width: 80vw;
}
.lb-thumb-btn {
  background: none; border: 2px solid transparent; border-radius: 4px;
  padding: 0; cursor: pointer; overflow: hidden;
  opacity: .55; transition: all .2s; flex-shrink: 0;
}
.lb-thumb-btn.active, .lb-thumb-btn:hover { opacity: 1; border-color: rgba(255,255,255,.7); }
.lb-thumb-btn img { width: 60px; height: 44px; object-fit: cover; display: block; }

/* Cabin responsive */
@media(max-width: 960px) {
  .cabin-gallery {
    grid-template-columns: 1fr; grid-template-rows: 280px 200px 200px;
    padding: 0 16px 20px;
  }
  .cabin-gallery .gallery-hero { grid-row: auto; border-radius: 8px 8px 0 0; }
  .cabin-gallery .gallery-thumb:first-of-type { border-radius: 0; }
  .cabin-gallery .gallery-thumb:last-of-type  { border-radius: 0 0 8px 8px; }
  .cabin-content { grid-template-columns: 1fr; padding: 24px 16px 48px; }
  .cabin-page-header, .breadcrumb { padding-left: 16px; padding-right: 16px; }
  .cabin-strip { grid-template-columns: repeat(2,1fr); }
  .more-cabins-section { padding: 32px 16px; }
  .amenities-grid { grid-template-columns: 1fr; }
}


/* ── NAV OVERLAY (mobile) ─────────────────────────────────── */
#navOverlay {
  display: none; position: fixed; inset: 0; z-index: 98;
  background: rgba(0,0,0,0.5);
}
#navOverlay.open { display: block; }

/* ── BOOK PAGE ─────────────────────────────────────────────── */
.book-hero { margin-top: 72px; position: relative; height: 320px; background: var(--navy); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.book-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.45; }
.book-hero-overlay { position: absolute; inset: 0; background: linear-gradient(160deg, rgba(13,31,60,0.55) 0%, rgba(13,31,60,0.25) 100%); }
.book-hero-content { position: relative; z-index: 2; text-align: center; padding: 0 24px; }
.book-hero-content .eyebrow { font-size: 12px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold-light); font-weight: 500; margin-bottom: 14px; }
.book-hero-content h1 { font-family: "Playfair Display", serif; font-size: clamp(36px, 5vw, 60px); font-weight: 400; color: var(--white); line-height: 1.1; margin-bottom: 14px; }
.book-hero-content h1 em { font-style: italic; color: var(--orange-light); }
.book-hero-content p { font-size: 17px; color: rgba(255,255,255,0.72); font-weight: 300; max-width: 500px; margin: 0 auto; }
.book-body { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 420px; gap: 60px; padding: 64px 48px 80px; }
.book-info .eyebrow { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--orange); font-weight: 500; margin-bottom: 12px; }
.book-info h2 { font-family: "Playfair Display", serif; font-size: clamp(28px, 3vw, 40px); font-weight: 400; color: var(--navy); line-height: 1.2; margin-bottom: 20px; }
.book-info h2 em { font-style: italic; color: var(--orange); }
.book-info p { font-size: 16px; line-height: 1.8; color: var(--text-mid); font-weight: 300; margin-bottom: 16px; }
.cabin-quick-list { display: flex; flex-direction: column; gap: 12px; margin-top: 32px; }
.cabin-quick-item { display: flex; align-items: center; gap: 16px; padding: 14px 18px; background: var(--cream); border-radius: 12px; text-decoration: none; color: inherit; border: 1px solid var(--cream-dark); transition: border-color 0.2s, box-shadow 0.2s; }
.cabin-quick-item:hover { border-color: var(--gold); box-shadow: 0 2px 12px rgba(13,31,60,0.08); }
.cabin-quick-img { width: 64px; height: 64px; border-radius: 8px; overflow: hidden; flex-shrink: 0; background: var(--cream-dark); }
.cabin-quick-img img { width: 100%; height: 100%; object-fit: cover; }
.cabin-quick-label { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); font-weight: 500; margin-bottom: 3px; }
.cabin-quick-name { font-family: "Playfair Display", serif; font-size: 17px; color: var(--navy); }
.cabin-quick-meta { font-size: 13px; color: var(--text-light); margin-top: 2px; }
.cabin-quick-arrow { color: var(--orange); font-size: 18px; flex-shrink: 0; }
.cabin-new-tag { background: var(--orange); color: white; font-size: 9px; letter-spacing: 1.5px; text-transform: uppercase; padding: 2px 8px; border-radius: 20px; font-weight: 600; margin-left: 8px; vertical-align: middle; }
.book-widget-wrap { position: sticky; top: 90px; }
.book-widget-card { background: var(--white); border: 1px solid var(--cream-dark); border-radius: 20px; padding: 32px; box-shadow: 0 4px 24px rgba(13,31,60,0.08); }
.book-widget-card h3 { font-family: "Playfair Display", serif; font-size: 22px; color: var(--navy); margin-bottom: 6px; }
.book-widget-card p { font-size: 14px; color: var(--text-light); margin-bottom: 24px; padding-bottom: 20px; border-bottom: 1px solid var(--cream-dark); line-height: 1.6; }
.perks-strip { background: var(--navy); padding: 32px 48px; display: flex; gap: 0; justify-content: center; flex-wrap: wrap; }
.perk-item { display: flex; align-items: center; gap: 10px; font-size: 13px; color: rgba(255,255,255,0.65); padding: 8px 32px; border-right: 1px solid rgba(255,255,255,0.1); white-space: nowrap; }
.perk-item:last-child { border-right: none; }
.perk-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
@media(max-width:960px) { .book-body { grid-template-columns: 1fr; padding: 48px 24px 60px; gap: 40px; } }
@media(max-width:600px) { .perks-strip { padding: 24px; } .perk-item { padding: 6px 16px; font-size: 12px; border-right: none; } .book-hero { height: 260px; } }

/* ── GALLERY PAGE ──────────────────────────────────────────── */
.gallery-page-hero { margin-top: 72px; background: var(--navy); padding: 64px 48px; text-align: center; }
.gallery-page-hero .eyebrow { font-size: 11px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--orange); margin-bottom: 12px; display: block; }
.gallery-page-hero h1 { font-family: "Playfair Display", serif; font-size: 3rem; color: var(--white); line-height: 1.2; margin-bottom: 12px; font-weight: 400; }
.gallery-page-hero h1 em { font-style: italic; color: var(--gold-light); }
.gallery-page-hero p { color: rgba(255,255,255,0.65); font-size: 16px; max-width: 500px; margin: 0 auto; }
.filter-bar { padding: 28px 48px 0; display: flex; gap: 10px; flex-wrap: wrap; }
.filter-btn { background: var(--white); border: 1px solid var(--cream-dark); color: var(--text-light); padding: 8px 20px; border-radius: 20px; font-size: 13px; font-weight: 500; cursor: pointer; transition: all .2s; font-family: "DM Sans", sans-serif; }
.filter-btn:hover, .filter-btn.active { background: var(--navy); color: var(--white); border-color: var(--navy); }
.gallery-grid { padding: 24px 48px 64px; columns: 4; column-gap: 10px; }
.gallery-item { break-inside: avoid; margin-bottom: 10px; cursor: pointer; position: relative; overflow: hidden; border-radius: 6px; }
.gallery-item img { width: 100%; display: block; transition: transform .4s ease; }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item-overlay { position: absolute; inset: 0; background: rgba(13,31,60,.3); opacity: 0; transition: opacity .3s; display: flex; align-items: center; justify-content: center; }
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay svg { width: 32px; height: 32px; stroke: var(--white); stroke-width: 1.5; }
.gallery-item-label { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(transparent,rgba(0,0,0,.55)); color: var(--white); font-size: 12px; padding: 20px 10px 8px; opacity: 0; transition: opacity .3s; }
.gallery-item:hover .gallery-item-label { opacity: 1; }
.gallery-loading { text-align: center; padding: 64px; color: var(--text-light); font-size: 15px; }
@media(max-width:900px) { .gallery-grid { columns: 2; padding: 16px; } .filter-bar { padding: 16px; } .gallery-page-hero { padding: 40px 16px; } .gallery-page-hero h1 { font-size: 2rem; } }
@media(max-width:500px) { .gallery-grid { columns: 1; } }

/* ── RETREAT / EVENT PAGES ─────────────────────────────────────────── */
  --navy: #0d1f3c; --navy-mid: #162d54; --orange: #e8752a; --orange-light: #f0a060;
  --gold: #d4931a; --gold-light: #f0b84a; --cream: #f5f0e8; --cream-dark: #e8e0d0;
  --white: #fdfaf6; --text-dark: #0d1a2a; --text-mid: #2a3a50; --text-light: #5a6a80;
}
/* Page hero */
.page-hero { margin-top: 72px; position: relative; height: 480px; overflow: hidden; background: var(--navy); display: flex; align-items: center; justify-content: center; }
.page-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.55; }
.page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(160deg, rgba(13,31,60,0.4) 0%, rgba(13,31,60,0.2) 100%); }
.page-hero-content { position: relative; z-index: 1; text-align: center; padding: 0 24px; }
.page-hero-eyebrow { font-size: 12px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold-light); font-weight: 500; margin-bottom: 16px; }
.page-hero-title { font-family: "Playfair Display", serif; font-size: clamp(40px, 6vw, 72px); font-weight: 400; color: var(--white); line-height: 1.1; margin-bottom: 20px; }
.page-hero-title em { font-style: italic; color: var(--orange-light); }
.page-hero-sub { font-size: 18px; color: rgba(255,255,255,0.75); font-weight: 300; max-width: 560px; margin: 0 auto 32px; line-height: 1.7; }
/* Content sections */
.content-section { max-width: 1100px; margin: 0 auto; padding: 80px 48px; background: var(--white); }
.content-section.bg-cream { background: var(--cream) !important; max-width: 100%; }
.content-section.bg-cream .inner { max-width: 1100px; margin: 0 auto; padding: 0 48px; }
.content-section.bg-navy { background: var(--navy); max-width: 100%; }
.content-section.bg-navy .inner { max-width: 1100px; margin: 0 auto; padding: 0 48px; }
.section-eyebrow { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--orange); font-weight: 500; margin-bottom: 14px; display: block; }
.section-title { font-family: "Playfair Display", serif; font-size: clamp(28px, 3.5vw, 44px); font-weight: 400; color: var(--navy); line-height: 1.2; margin-bottom: 24px; }
.section-title em { font-style: italic; color: var(--orange); }
.section-title.light { color: var(--white); }
.section-title.light em { color: var(--orange-light); }
/* Two col layout */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }
.col-text p { font-size: 16px; line-height: 1.8; color: var(--text-mid); font-weight: 300; margin-bottom: 16px; }
.col-img { border-radius: 20px; overflow: hidden; aspect-ratio: 4/3; background: var(--cream-dark); }
.col-img img { width: 100%; height: 100%; object-fit: cover; }
.col-img-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--navy-mid), var(--navy)); color: rgba(255,255,255,0.3); font-size: 14px; text-align: center; padding: 20px; }
/* Feature grid */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.feature-card { background: var(--white); border-radius: 16px; padding: 32px 28px; border: 1px solid var(--cream-dark); }
.feature-icon-wrap { width: 48px; height: 48px; border-radius: 12px; background: var(--cream); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.feature-icon-wrap svg { width: 22px; height: 22px; stroke: var(--gold); }
.feature-card h3 { font-family: "Playfair Display", serif; font-size: 18px; color: var(--navy); margin-bottom: 10px; }
.feature-card p { font-size: 14px; line-height: 1.7; color: var(--text-mid); font-weight: 300; }
/* CTA section */
.cta-section { background: var(--navy); padding: 80px 48px; text-align: center; }
.cta-inner { max-width: 620px; margin: 0 auto; }
.cta-section .section-eyebrow { color: var(--gold-light); }
.cta-sub { font-size: 16px; color: rgba(255,255,255,0.65); font-weight: 300; line-height: 1.7; margin-bottom: 36px; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-primary { background: var(--gold); color: var(--white); padding: 14px 32px; border-radius: 40px; font-size: 15px; font-weight: 500; text-decoration: none; transition: background 0.2s, transform 0.2s; display: inline-block; }
.btn-primary:hover { background: var(--orange); transform: translateY(-1px); }
.btn-ghost { border: 1.5px solid rgba(255,255,255,0.4); color: var(--white); padding: 14px 32px; border-radius: 40px; font-size: 15px; font-weight: 400; text-decoration: none; transition: border-color 0.2s, background 0.2s; display: inline-block; }
.btn-ghost:hover { border-color: white; background: rgba(255,255,255,0.08); }
/* Retreat cards (for retreats landing) */
.retreat-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 48px; }
.retreat-card { background: var(--white); border-radius: 20px; overflow: hidden; text-decoration: none; color: inherit; box-shadow: 0 2px 12px rgba(13,31,60,0.06); transition: transform 0.3s, box-shadow 0.3s; }
.retreat-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(13,31,60,0.12); }
.retreat-card-img { height: 240px; overflow: hidden; background: var(--navy); }
.retreat-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.retreat-card:hover .retreat-card-img img { transform: scale(1.04); }
.retreat-card-img-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--navy-mid), var(--navy)); }
.retreat-card-info { padding: 28px 24px; }
.retreat-card-eyebrow { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); font-weight: 500; margin-bottom: 8px; }
.retreat-card-title { font-family: "Playfair Display", serif; font-size: 22px; color: var(--navy); margin-bottom: 10px; }
.retreat-card-desc { font-size: 14px; line-height: 1.7; color: var(--text-mid); font-weight: 300; margin-bottom: 16px; }
.retreat-card-link { font-size: 14px; color: var(--orange); font-weight: 500; }
@media(max-width:768px) {
  .page-hero { height: 360px; }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .two-col.reverse { direction: ltr; }
  .feature-grid { grid-template-columns: 1fr; }
  .retreat-cards { grid-template-columns: 1fr; }
  .content-section { padding: 60px 24px; }
  .content-section.bg-cream .inner, .content-section.bg-navy .inner { padding: 0 24px; }
  .cta-section { padding: 60px 24px; }
}

/* ── PHOTO CAROUSEL ─────────────────────────────────────────── */
.photo-carousel { position: relative; width: 100%; max-width: 900px; margin: 40px auto; border-radius: 16px; overflow: visible; }
.carousel-track-wrap { border-radius: 16px; overflow: hidden; aspect-ratio: 16/9; background: var(--navy); }
.carousel-track { position: relative; width: 100%; height: 100%; }
.carousel-slide { position: absolute; inset: 0; opacity: 0; transition: opacity .5s ease; cursor: pointer; }
.carousel-slide.active { opacity: 1; }
.carousel-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.carousel-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(13,31,60,.6); border: none; color: #fff;
  font-size: 2rem; padding: 10px 16px; cursor: pointer;
  border-radius: 8px; transition: background .2s; z-index: 10;
}
.carousel-btn:hover { background: rgba(13,31,60,.9); }
.carousel-prev { left: -20px; }
.carousel-next { right: -20px; }
.carousel-dots { display: flex; justify-content: center; gap: 8px; margin-top: 14px; }
.carousel-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--cream-dark); border: none; cursor: pointer; transition: background .2s; padding: 0; }
.carousel-dot.active { background: var(--gold); }
.carousel-counter { text-align: center; font-size: 13px; color: var(--text-light); margin-top: 6px; }
.carousel-lightbox { display: none; position: fixed; inset: 0; z-index: 1000; background: rgba(0,0,0,.93); align-items: center; justify-content: center; flex-direction: column; }
.carousel-lightbox.open { display: flex; }
@media(max-width: 768px) {
  .carousel-prev { left: 4px; }
  .carousel-next { right: 4px; }
  .carousel-btn { font-size: 1.5rem; padding: 8px 12px; }
}
