/* ============================================================
   BUCKS LAKE RESORT — Main Stylesheet
   ============================================================ */

/* ============================================================
   HERO BOOKING BAR (replaces old widget)
   ============================================================ */
.hero {
  /* override: column layout so bar sits at very bottom */
  flex-direction: column !important;
  justify-content: flex-end !important;
  align-items: stretch !important;
}
.hero-inner {
  flex: 1;
  display: flex;
  align-items: flex-end;
}
.hero-content {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem 3rem;
}

.hero-booking-bar {
  position: relative;
  z-index: 2;
  background: rgba(8,14,8,0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-top: 1px solid rgba(255,255,255,0.09);
}
.hbb-inner {
  display: flex;
  align-items: center;
  gap: 0;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
  height: 80px;
}
.hbb-field {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: .15rem;
  padding: 0 2rem 0 0;
  cursor: pointer;
}
.hbb-label {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
}
.hbb-value {
  font-size: 1rem;
  color: #fff;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.hbb-value-sm {
  font-size: .875rem;
  color: rgba(255,255,255,.7);
}
.hbb-cal-icon {
  color: rgba(255,255,255,.4);
  font-size: .8rem;
}
.hbb-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,.15);
  margin-right: 2rem;
  flex-shrink: 0;
}
.hbb-cta {
  margin-left: auto;
  background: var(--tan);
  border: 1.5px solid var(--tan);
  color: #fff;
  padding: .7rem 1.875rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 30px;
  transition: opacity .2s;
  white-space: nowrap;
  font-family: var(--sans);
}
.hbb-cta:hover { opacity: .85; }

/* ============================================================
   BOOKING MODAL DRAWER (Selfbook style)
   ============================================================ */
.bk-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 1100;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s;
}
.bk-overlay.open { opacity: 1; visibility: visible; }

.bk-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 520px;
  max-width: 100vw;
  background: #fff;
  z-index: 1101;
  transform: translateX(100%);
  transition: transform .38s cubic-bezier(.25,.1,.25,1);
  display: flex;
  flex-direction: column;
  box-shadow: -6px 0 48px rgba(0,0,0,.18);
}
.bk-drawer.open { transform: translateX(0); }

/* Header */
.bk-hd {
  padding: 1.125rem 1.5rem;
  border-bottom: 1px solid #EBEBEB;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}
.bk-hd h2 {
  font-family: var(--sans);
  font-size: .9375rem;
  font-weight: 600;
  letter-spacing: .01em;
  color: #1a1a1a;
}
.bk-close-btn {
  width: 30px; height: 30px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; border: none; background: none;
  font-size: 1.1rem; color: #666;
  border-radius: 50%;
  transition: background .15s;
  font-family: var(--sans);
}
.bk-close-btn:hover { background: #f0f0f0; }

/* Scrollable Body */
.bk-body { flex: 1; overflow-y: auto; padding-bottom: .5rem; }

/* Room Selector */
.bk-room-wrap {
  position: relative;
  margin: 1.25rem 1.5rem 0;
}
.bk-room-select {
  border: 1px solid #E0E0E0;
  padding: .9rem 1.125rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: border-color .2s;
  user-select: none;
}
.bk-room-select:hover { border-color: #999; }
.bk-rs-label {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: .2rem;
  display: block;
}
.bk-rs-value { font-size: .9375rem; font-weight: 500; color: #1a1a1a; }
.bk-chevron { color: #555; font-size: .7rem; transition: transform .2s; }
.bk-room-select.open .bk-chevron { transform: rotate(180deg); }

.bk-room-dropdown {
  position: absolute;
  top: 100%; left: 0; right: 0;
  background: #fff;
  border: 1px solid #E0E0E0;
  border-top: none;
  z-index: 20;
  display: none;
  max-height: 260px;
  overflow-y: auto;
  box-shadow: 0 8px 24px rgba(0,0,0,.1);
}
.bk-room-dropdown.open { display: block; }
.bk-room-option {
  padding: .8rem 1.125rem;
  cursor: pointer;
  font-size: .875rem;
  border-bottom: 1px solid #f5f5f5;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background .12s;
}
.bk-room-option:last-child { border-bottom: none; }
.bk-room-option:hover { background: #F8F8F8; }
.bk-room-option.selected { background: #F2F2F2; font-weight: 600; }
.bk-room-option .bk-opt-name { color: #1a1a1a; }
.bk-room-option .bk-opt-price { color: #888; font-size: .8rem; }

/* Calendar */
.bk-cal { padding: 1.25rem 1.5rem 0; }
.bk-cal-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.125rem;
}
.bk-cal-nav-btn {
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; border: none; background: none;
  font-size: 1.1rem; color: #444; border-radius: 50%;
  transition: background .15s;
  font-family: var(--sans);
}
.bk-cal-nav-btn:hover { background: #f0f0f0; }
.bk-cal-nav-btn:disabled { opacity: .3; cursor: not-allowed; }
.bk-cal-month-label {
  font-size: .9375rem;
  font-weight: 600;
  font-family: var(--sans);
  color: #1a1a1a;
}

.bk-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1px;
}

.bk-cal-hdr {
  text-align: center;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .06em;
  color: #999;
  padding: .4rem 0 .75rem;
}

.bk-cal-cell {
  position: relative;
  text-align: center;
  padding: .45rem .2rem;
  cursor: pointer;
  border-radius: 2px;
  min-height: 54px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  transition: background .12s;
  -webkit-tap-highlight-color: transparent;
}
.bk-cal-cell:not(.bk-past):not(.bk-empty):hover { background: #F0F0F0; }

.bk-cal-cell.bk-empty    { cursor: default; pointer-events: none; }
.bk-cal-cell.bk-past     { cursor: not-allowed; opacity: .3; }

.bk-cal-cell.bk-checkin,
.bk-cal-cell.bk-checkout {
  background: #1a1a1a !important;
}
.bk-cal-cell.bk-in-range { background: #EFEFEF; }

.bk-cal-cell.bk-today .bk-day-num::after {
  content: '';
  position: absolute;
  bottom: -5px; left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--tan);
}

.bk-day-num {
  font-size: .875rem;
  font-weight: 600;
  line-height: 1;
  position: relative;
  color: #1a1a1a;
}
.bk-checkin .bk-day-num,
.bk-checkout .bk-day-num { color: #fff; }

.bk-day-price {
  font-size: .63rem;
  color: #888;
  line-height: 1;
  font-weight: 400;
}
.bk-checkout .bk-day-price { color: rgba(255,255,255,.6); }
.bk-in-range .bk-day-price { color: #666; }

/* Calendar note */
.bk-cal-note {
  display: flex;
  align-items: flex-start;
  gap: .4rem;
  margin: 1rem 1.5rem;
  font-size: .76rem;
  color: #888;
  line-height: 1.5;
}
.bk-note-icon { flex-shrink: 0; font-size: .85rem; }

/* Section separator */
.bk-sep {
  height: 1px;
  background: #EBEBEB;
  margin: .5rem 0;
}

/* Guests */
.bk-guests { padding: 0 1.5rem; }
.bk-section-lbl {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: .625rem;
  display: block;
}

.bk-guest-row {
  border: 1px solid #E8E8E8;
  padding: .875rem 1.125rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2px;
  border-radius: 2px;
}
.bk-guest-name { font-size: .9375rem; font-weight: 500; color: #1a1a1a; }
.bk-guest-desc { font-size: .78rem; color: #999; margin-top: .1rem; }

.bk-stepper {
  display: flex;
  align-items: center;
  gap: .875rem;
}
.bk-step-btn {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1.5px solid #DCDCDC;
  background: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: #444;
  transition: border-color .15s, color .15s;
  font-family: var(--sans);
  line-height: 1;
}
.bk-step-btn:hover:not(:disabled) { border-color: #1a1a1a; color: #1a1a1a; }
.bk-step-btn:disabled { opacity: .28; cursor: not-allowed; }
.bk-step-count { font-size: .9375rem; font-weight: 600; min-width: 22px; text-align: center; color: #1a1a1a; }

/* Promo Code (collapsed) */
.bk-promo { padding: .75rem 1.5rem; }
.bk-promo-toggle {
  font-size: .82rem;
  color: #555;
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--sans);
  padding: 0;
  display: flex;
  align-items: center;
  gap: .4rem;
}
.bk-promo-toggle:hover { color: #1a1a1a; }
.bk-promo-fields {
  display: none;
  margin-top: .75rem;
  display: flex;
  gap: .5rem;
}
.bk-promo-fields.open { display: flex; }
.bk-promo-input {
  flex: 1;
  padding: .6rem .875rem;
  border: 1.5px solid #E0E0E0;
  font-size: .875rem;
  font-family: var(--sans);
  outline: none;
  border-radius: 2px;
  transition: border-color .15s;
}
.bk-promo-input:focus { border-color: #1a1a1a; }
.bk-promo-apply {
  padding: .6rem 1rem;
  background: #f0f0f0;
  border: 1.5px solid #E0E0E0;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: var(--sans);
  border-radius: 2px;
  color: #555;
  transition: background .15s;
}
.bk-promo-apply:hover { background: #e0e0e0; }

/* Footer */
.bk-ft {
  padding: 1rem 1.5rem 1.25rem;
  border-top: 1px solid #EBEBEB;
  flex-shrink: 0;
  background: #fff;
}
.bk-err {
  font-size: .8rem;
  color: #d32f2f;
  text-align: center;
  margin-bottom: .625rem;
  display: none;
  font-family: var(--sans);
}
.bk-err.show { display: block; }
.bk-search-btn {
  width: 100%;
  background: #1a1a1a;
  color: #fff;
  border: none;
  padding: 1.05rem;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .18s;
  font-family: var(--sans);
  border-radius: 1px;
}
.bk-search-btn:hover { background: #333; }

/* ============================================================
   LUCIDE ICON SIZING
   ============================================================ */

/* Base — Lucide replaces <i data-lucide> with <svg class="lucide ..."> */
.lucide {
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: middle;
  stroke-width: 1.75;
  flex-shrink: 0;
}

/* Intro strip icons */
.intro-card .lucide {
  width: 2rem;
  height: 2rem;
  stroke: var(--tan);
  stroke-width: 1.5;
}

/* Amenity box icons — white on green square */
.amenity-icon .lucide {
  width: 1.375rem;
  height: 1.375rem;
  stroke: #fff;
  stroke-width: 1.75;
}

/* Experience list icons */
.exp-icon .lucide {
  width: 1.25rem;
  height: 1.25rem;
  stroke: var(--tan);
  stroke-width: 1.75;
}

/* Info item icons (contact page) */
.info-item-icon .lucide {
  width: 1.25rem;
  height: 1.25rem;
  stroke: #fff;
  stroke-width: 1.75;
}

/* About values icons */
.about-value-icon .lucide {
  width: 2.25rem;
  height: 2.25rem;
  stroke: var(--green);
  stroke-width: 1.5;
}

/* Testimonial stars — filled */
.t-stars .lucide {
  width: .875rem;
  height: .875rem;
  stroke: var(--tan);
  fill: var(--tan);
}

/* Hero bar calendar icon */
.hbb-cal-icon .lucide,
.hbb-cal-icon svg {
  width: .875rem;
  height: .875rem;
  stroke: rgba(255,255,255,.45);
  stroke-width: 1.75;
}

/* Nav toggle icons */
.nav-toggle .lucide,
.nav-toggle svg {
  width: 1.375rem;
  height: 1.375rem;
  stroke: #fff;
  stroke-width: 2;
  display: block;
}
.nt-close { display: none; }
.nav-toggle.is-open .nt-open  { display: none; }
.nav-toggle.is-open .nt-close { display: flex; }

/* Gallery hover overlay — plain plus, no emoji */
.gallery-item::after {
  content: '+';
  font-size: 2.5rem;
  font-weight: 200;
  font-family: var(--sans);
  letter-spacing: 0;
}

/* Seasonal guide headings */
.seasonal-icon .lucide {
  width: 1.1em;
  height: 1.1em;
  stroke: var(--tan);
  stroke-width: 1.75;
  vertical-align: middle;
  margin-right: .375rem;
}

/* ============================================================
   RESPONSIVE — booking bar + modal
   ============================================================ */
@media (max-width: 768px) {
  .hbb-inner { height: auto; padding: 1rem 1.25rem; flex-wrap: wrap; gap: .875rem; }
  .hbb-field { padding-right: 1rem; }
  .hbb-divider { display: none; }
  .hbb-cta { margin-left: 0; width: 100%; text-align: center; border-radius: 2px; }

  .bk-drawer { width: 100vw; }
}

/* === DESIGN TOKENS === */
:root {
  --green:       #2A4A2A;
  --green-mid:   #3A6B3A;
  --green-light: #4E8B4E;
  --tan:         #C4956A;
  --tan-dark:    #A87D55;
  --cream:       #F5F0E8;
  --cream-dark:  #EDE6D9;
  --white:       #FAFAF7;
  --dark:        #1C1C1C;
  --gray:        #6B6B6B;
  --gray-light:  #A8A8A8;
  --border:      #E0D9CE;

  --serif: 'Playfair Display', Georgia, serif;
  --sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container: 1280px;
  --nav-h: 80px;
  --gap: 2rem;

  --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
  --shadow:    0 4px 24px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 40px rgba(0,0,0,0.12);
  --shadow-lg: 0 24px 80px rgba(0,0,0,0.18);
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--sans); color: var(--dark); background: var(--white); line-height: 1.65; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, select, textarea { font: inherit; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4 { font-family: var(--serif); line-height: 1.2; font-weight: 700; }
h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.75rem); }
h4 { font-size: 1.125rem; }
p  { font-size: 1rem; color: var(--gray); max-width: 60ch; }

.eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--tan);
  margin-bottom: 0.75rem;
  display: block;
}

/* === LAYOUT === */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
}

section { padding: 6rem 0; }
section.tight { padding: 4rem 0; }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 1px;
  transition: all 0.25s var(--ease);
  white-space: nowrap;
}
.btn-primary { background: var(--green); color: #fff; }
.btn-primary:hover { background: var(--green-mid); }
.btn-tan { background: var(--tan); color: #fff; }
.btn-tan:hover { background: var(--tan-dark); }
.btn-outline {
  border: 1.5px solid currentColor;
  color: var(--green);
}
.btn-outline:hover { background: var(--green); color: #fff; border-color: var(--green); }
.btn-outline-white {
  border: 1.5px solid rgba(255,255,255,0.7);
  color: #fff;
}
.btn-outline-white:hover { background: #fff; color: var(--dark); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--nav-h);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  background: var(--green);
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
  transition: box-shadow 0.35s var(--ease);
}

.site-nav.scrolled {
  box-shadow: 0 2px 24px rgba(0,0,0,0.35);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
}

.nav-logo img {
  height: 58px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}

.nav-links {
  display: flex;
  gap: 2.25rem;
}

.nav-links a {
  color: rgba(255,255,255,0.92);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--tan);
  transform: scaleX(0);
  transition: transform 0.25s var(--ease);
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-book {
  background: var(--tan);
  color: #fff;
  padding: 0.625rem 1.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 1px;
  border: none;
  cursor: pointer;
  font-family: var(--sans);
  transition: background 0.2s;
}
.nav-book:hover { background: var(--tan-dark); }

.nav-toggle {
  display: none;
  color: #fff;
  font-size: 1.5rem;
  padding: 0.25rem;
}

/* Mobile menu */
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--green);
  padding: 2rem;
  z-index: 890;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.nav-mobile.open { display: block; }
.nav-mobile ul { display: flex; flex-direction: column; gap: 1rem; }
.nav-mobile a {
  color: rgba(255,255,255,0.9);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: block;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(26,40,26,0.88) 0%,
    rgba(26,40,26,0.55) 50%,
    rgba(0,0,0,0.38) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 0 2rem 4rem;
  max-width: var(--container);
  margin: 0 auto;
}

.hero-content .eyebrow { color: var(--tan); }

.hero-content h1 {
  color: #fff;
  margin-bottom: 1rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-content .hero-sub {
  color: rgba(255,255,255,0.85);
  font-size: 1.125rem;
  max-width: 50ch;
  margin-bottom: 2.5rem;
}

/* Booking Widget */
.booking-widget {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  display: inline-flex;
  align-items: stretch;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  max-width: 100%;
}

.widget-field {
  display: flex;
  flex-direction: column;
  padding: 0.875rem 1.25rem;
  border-right: 1px solid var(--border);
  min-width: 140px;
}
.widget-field label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 0.3rem;
}
.widget-field input,
.widget-field select {
  border: none;
  outline: none;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--dark);
  background: transparent;
  padding: 0;
  width: 100%;
}
.widget-field select { appearance: none; cursor: pointer; }

.widget-submit {
  background: var(--green);
  color: #fff;
  padding: 0 2rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.2s;
  border-radius: 0;
  white-space: nowrap;
}
.widget-submit:hover { background: var(--green-mid); }

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.6);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.hero-scroll::after {
  content: '';
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.4);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============================================================
   INTRO STRIP
   ============================================================ */
.intro-strip {
  background: var(--green);
  padding: 5rem 0;
}
.intro-strip .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.intro-card {
  padding: 2rem 3rem;
  border-right: 1px solid rgba(255,255,255,0.12);
  text-align: center;
}
.intro-card:last-child { border-right: none; }
.intro-card .icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}
.intro-card h3 { color: #fff; margin-bottom: 0.75rem; font-size: 1.25rem; }
.intro-card p { color: rgba(255,255,255,0.65); font-size: 0.9375rem; max-width: none; margin: 0 auto; }

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-header { margin-bottom: 3.5rem; }
.section-header.center { text-align: center; }
.section-header.center p { margin: 0.75rem auto 0; }
.section-header p { margin-top: 0.75rem; }

/* ============================================================
   ACCOMMODATIONS GRID
   ============================================================ */
.accommodations { background: var(--white); }

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5px;
  background: var(--border);
}

.room-card {
  background: var(--white);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.room-card:first-child { grid-row: span 2; }

.room-img {
  position: relative;
  overflow: hidden;
}
.room-card:first-child .room-img { height: 500px; }
.room-img { height: 280px; }
.room-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.room-card:hover .room-img img { transform: scale(1.04); }

.room-body {
  padding: 1.75rem 2rem 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.room-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}
.room-type {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--tan);
}
.room-sleeps {
  font-size: 0.8rem;
  color: var(--gray-light);
}
.room-body h3 {
  font-size: 1.375rem;
  margin-bottom: 0.625rem;
}
.room-body p {
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
  flex: 1;
}
.room-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}
.room-price {
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--dark);
}
.room-price span {
  font-family: var(--sans);
  font-size: 0.75rem;
  color: var(--gray-light);
  font-weight: 400;
}

/* ============================================================
   AMENITIES
   ============================================================ */
.amenities { background: var(--cream); }
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.amenity-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}
.amenity-icon {
  width: 48px;
  height: 48px;
  border-radius: 1px;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.amenity-item h4 { font-size: 0.9375rem; font-family: var(--sans); font-weight: 600; }
.amenity-item p { font-size: 0.85rem; max-width: none; }

/* ============================================================
   EXPERIENCES — split layout
   ============================================================ */
.experiences { background: var(--white); padding: 0; }
.experiences-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}
.experiences-img {
  position: relative;
  overflow: hidden;
}
.experiences-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.experiences-content {
  background: var(--green);
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.experiences-content .eyebrow { color: var(--tan); }
.experiences-content h2 { color: #fff; margin-bottom: 1rem; }
.experiences-content > p { color: rgba(255,255,255,0.7); margin-bottom: 2.5rem; max-width: none; }

.exp-list { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2.5rem; }
.exp-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: rgba(255,255,255,0.07);
  border-left: 2px solid var(--tan);
}
.exp-item .exp-icon { font-size: 1.25rem; }
.exp-item span { color: rgba(255,255,255,0.9); font-size: 0.9375rem; font-weight: 500; }

/* ============================================================
   GALLERY STRIP
   ============================================================ */
.gallery-strip { background: var(--white); padding: 6rem 0 0; }
.gallery-strip .section-header { padding: 0 2rem; }

.gallery-scroll {
  display: flex;
  gap: 1.5px;
  overflow-x: auto;
  scrollbar-width: none;
  margin-top: 2.5rem;
}
.gallery-scroll::-webkit-scrollbar { display: none; }

.gallery-scroll-item {
  flex: 0 0 320px;
  height: 420px;
  position: relative;
  overflow: hidden;
}
.gallery-scroll-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.gallery-scroll-item:hover img { transform: scale(1.04); }
.gallery-cta {
  text-align: center;
  padding: 3rem 0 6rem;
}

/* ============================================================
   TESTIMONIAL
   ============================================================ */
.testimonial {
  background: var(--cream);
  text-align: center;
}
.testimonial-quote {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.5vw, 1.875rem);
  color: var(--dark);
  line-height: 1.5;
  max-width: 800px;
  margin: 0 auto 2rem;
}
.testimonial-quote::before { content: '\201C'; color: var(--tan); }
.testimonial-quote::after  { content: '\201D'; color: var(--tan); }
.testimonial-author {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}
.t-card {
  background: var(--white);
  padding: 2rem;
  border-top: 2px solid var(--tan);
}
.t-stars { color: var(--tan); font-size: 0.875rem; margin-bottom: 1rem; letter-spacing: 0.1em; }
.t-card p { font-size: 0.9375rem; color: var(--dark); max-width: none; font-style: italic; }
.t-card .t-name { display: block; margin-top: 1.25rem; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gray); }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  position: relative;
  padding: 8rem 0;
  overflow: hidden;
  text-align: center;
}
.cta-banner-bg {
  position: absolute;
  inset: 0;
}
.cta-banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cta-banner-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(26,40,26,0.75);
}
.cta-banner-content {
  position: relative;
  z-index: 1;
}
.cta-banner-content .eyebrow { color: var(--tan); }
.cta-banner-content h2 { color: #fff; margin-bottom: 1rem; }
.cta-banner-content p { color: rgba(255,255,255,0.75); margin: 0 auto 2.5rem; font-size: 1.0625rem; }
.cta-banner-content .btn-group { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.65);
  padding: 5rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 2rem;
}
.footer-brand img { height: 64px; width: auto; margin-bottom: 1.25rem; opacity: 0.9; }
.footer-brand p { font-size: 0.875rem; max-width: 32ch; line-height: 1.7; }
.footer-phone {
  display: block;
  color: var(--tan);
  font-size: 1rem;
  font-weight: 600;
  margin-top: 1rem;
}
.footer-col h4 {
  color: rgba(255,255,255,0.9);
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.625rem; }
.footer-col a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--tan); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}
.footer-social { display: flex; gap: 1rem; }
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 1px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.875rem;
  transition: all 0.2s;
}
.footer-social a:hover {
  background: var(--tan);
  border-color: var(--tan);
  color: #fff;
}

/* ---- Footer credit bar (Site by Goldmark) ---- */
.footer-credit {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 1.5rem;
  padding: 1rem 0 .5rem;
}
.footer-credit .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  flex-wrap: wrap;
  font-size: .78rem;
  color: rgba(255,255,255,.3);
  font-family: var(--sans);
}
.footer-credit a {
  color: rgba(255,255,255,.45);
  text-decoration: none;
  transition: color .2s;
}
.footer-credit a:hover { color: var(--tan); }
.fc-site-by {
  display: flex;
  align-items: center;
  gap: .4rem;
}
.fc-site-by img {
  height: 18px;
  width: auto;
  opacity: .6;
  vertical-align: middle;
}
.fc-sep { color: rgba(255,255,255,.2); }

/* ============================================================
   INNER PAGE HERO (shared)
   ============================================================ */
.page-hero {
  position: relative;
  height: 50vh;
  min-height: 360px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  margin-top: var(--nav-h);
}
.page-hero-bg {
  position: absolute;
  inset: 0;
}
.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,40,26,0.8) 0%, rgba(0,0,0,0.2) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 1;
  padding: 0 2rem 3.5rem;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
}
.page-hero-content h1 { color: #fff; font-size: clamp(2rem, 5vw, 3.5rem); }
.page-hero-content .eyebrow { color: var(--tan); }

/* ============================================================
   ACCOMMODATIONS PAGE
   ============================================================ */
.rooms-filter {
  background: var(--cream);
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--border);
}
.filter-btns {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  gap: 0.5rem;
}
.filter-btn {
  padding: 0.5rem 1.25rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--gray);
  border-radius: 1px;
  transition: all 0.2s;
}
.filter-btn.active,
.filter-btn:hover { background: var(--green); color: #fff; border-color: var(--green); }

.rooms-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
}
.rooms-full-grid .room-card { background: var(--white); }
.rooms-full-grid .room-img { height: 260px; }

/* ============================================================
   GALLERY PAGE
   ============================================================ */
.gallery-masonry {
  columns: 3;
  column-gap: 1.5px;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 1.5px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.5s var(--ease);
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item::after {
  content: '⊕';
  position: absolute;
  inset: 0;
  background: rgba(42,74,42,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #fff;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover::after { opacity: 1; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 90vh; object-fit: contain; }
.lightbox-close {
  position: absolute;
  top: 1.5rem; right: 2rem;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
}

/* ============================================================
   BOOKING PAGE
   ============================================================ */
.booking-page { padding-top: calc(var(--nav-h) + 3rem); padding-bottom: 6rem; background: var(--cream); }
.booking-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  align-items: start;
}
.booking-form-card {
  background: var(--white);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}
.booking-form-card h2 { font-size: 1.75rem; margin-bottom: 0.5rem; }
.booking-form-card .sub { color: var(--gray); font-size: 0.9rem; margin-bottom: 2rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray); }
.form-group input,
.form-group select,
.form-group textarea {
  border: 1.5px solid var(--border);
  padding: 0.75rem 1rem;
  font-size: 0.9375rem;
  color: var(--dark);
  background: var(--white);
  outline: none;
  border-radius: 1px;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--green); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-divider { grid-column: 1 / -1; border: none; border-top: 1px solid var(--border); margin: 0.5rem 0; }
.form-submit { grid-column: 1 / -1; margin-top: 0.5rem; }
.form-submit .btn { width: 100%; justify-content: center; padding: 1rem; }
.form-note { grid-column: 1 / -1; font-size: 0.78rem; color: var(--gray-light); text-align: center; }

.booking-sidebar { display: flex; flex-direction: column; gap: 1.5rem; }
.sidebar-card { background: var(--white); padding: 1.75rem; box-shadow: var(--shadow); }
.sidebar-card h3 { font-size: 1.1rem; margin-bottom: 1rem; padding-bottom: 0.75rem; border-bottom: 1px solid var(--border); }
.sidebar-amenities { display: flex; flex-direction: column; gap: 0.5rem; }
.sidebar-amenities li { font-size: 0.875rem; color: var(--gray); display: flex; align-items: center; gap: 0.5rem; }
.sidebar-amenities li::before { content: '✓'; color: var(--green); font-weight: 700; }
.sidebar-contact { font-size: 0.875rem; color: var(--gray); }
.sidebar-contact strong { display: block; font-size: 1.25rem; color: var(--dark); font-family: var(--serif); }
.sidebar-contact a { color: var(--tan); font-weight: 600; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h2 { margin-bottom: 1rem; }
.contact-info p { margin-bottom: 2rem; }
.info-items { display: flex; flex-direction: column; gap: 1.5rem; }
.info-item { display: flex; gap: 1rem; align-items: flex-start; }
.info-item-icon {
  width: 44px; height: 44px;
  background: var(--green);
  border-radius: 1px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.info-item-text strong { display: block; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray); margin-bottom: 0.25rem; }
.info-item-text span { font-size: 0.9375rem; color: var(--dark); }
.map-embed { margin-top: 2rem; height: 280px; background: var(--cream); border: 1px solid var(--border); }
.map-embed iframe { width: 100%; height: 100%; border: none; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-img { position: relative; }
.about-img img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.about-img::before {
  content: '';
  position: absolute;
  inset: -1rem 1rem 1rem -1rem;
  border: 2px solid var(--tan);
  z-index: -1;
}
.about-text .eyebrow { }
.about-text h2 { margin-bottom: 1.25rem; }
.about-text p { margin-bottom: 1rem; color: var(--gray); }
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}
.stat-num { font-family: var(--serif); font-size: 2.5rem; color: var(--green); display: block; }
.stat-label { font-size: 0.8rem; color: var(--gray); letter-spacing: 0.05em; }

/* ============================================================
   EXPERIENCES PAGE
   ============================================================ */
.exp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.exp-card { display: flex; flex-direction: column; }
.exp-card-img { height: 240px; overflow: hidden; }
.exp-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.exp-card:hover .exp-card-img img { transform: scale(1.04); }
.exp-card-body { padding: 1.5rem 0; }
.exp-card-body .eyebrow { margin-bottom: 0.5rem; }
.exp-card-body h3 { margin-bottom: 0.625rem; font-size: 1.25rem; }
.exp-card-body p { font-size: 0.9rem; }

/* ============================================================
   ALERTS / FLASH MESSAGES
   ============================================================ */
.alert {
  padding: 1rem 1.5rem;
  border-radius: 1px;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}
.alert-success { background: #e8f5e9; color: #2e7d32; border-left: 3px solid #2e7d32; }
.alert-error   { background: #fdecea; color: #c62828; border-left: 3px solid #c62828; }

/* ============================================================
   UTILITIES
   ============================================================ */
.text-center  { text-align: center; }
.text-tan     { color: var(--tan); }
.text-green   { color: var(--green); }
.mt-1  { margin-top: 1rem; }
.mt-2  { margin-top: 2rem; }
.mb-1  { margin-bottom: 1rem; }
.mb-2  { margin-bottom: 2rem; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .rooms-full-grid { grid-template-columns: 1fr 1fr; }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .booking-layout { grid-template-columns: 1fr; }
  .booking-sidebar { grid-row: 1; }
}

@media (max-width: 768px) {
  :root { --nav-h: 112px; }
  section { padding: 4rem 0; }
  .container { padding: 0 1.25rem; }

  .site-nav { height: auto; padding: 0; }
  .nav-inner { flex-wrap: wrap; height: auto; padding: 0; }
  .nav-logo { flex: 1; height: 68px; display: flex; align-items: center; padding-left: 1.25rem; }
  .nav-toggle { height: 68px; display: flex; align-items: center; padding-right: 1.25rem; }
  .nav-links { display: none; }
  .nav-book {
    flex: 0 0 100%;
    order: 10;
    border-radius: 0;
    padding: 0.75rem;
    text-align: center;
    font-size: 0.85rem;
    letter-spacing: 0.12em;
  }

  .hero-content { padding: 0 1.25rem 3rem; }
  .booking-widget {
    flex-direction: column;
    width: 100%;
  }
  .widget-field { border-right: none; border-bottom: 1px solid var(--border); }
  .widget-submit { padding: 1.25rem; }

  .intro-strip .container { grid-template-columns: 1fr; }
  .intro-card { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.12); }
  .intro-card:last-child { border-bottom: none; }

  .rooms-grid { grid-template-columns: 1fr; }
  .room-card:first-child { grid-row: span 1; }
  .room-card:first-child .room-img { height: 280px; }

  .amenities-grid { grid-template-columns: 1fr 1fr; }

  .experiences-inner { grid-template-columns: 1fr; }
  .experiences-img { height: 300px; }
  .experiences-content { padding: 3rem 1.5rem; }

  .gallery-masonry { columns: 2; }

  .testimonials-grid { grid-template-columns: 1fr; }

  .contact-layout { grid-template-columns: 1fr; }
  .about-split { grid-template-columns: 1fr; }
  .about-img::before { display: none; }
  .about-stats { grid-template-columns: repeat(3, 1fr); }

  .exp-grid { grid-template-columns: 1fr; }
  .rooms-full-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }

  .form-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .amenities-grid { grid-template-columns: 1fr; }
  .gallery-masonry { columns: 1; }
  .about-stats { grid-template-columns: 1fr; }
}
