/* ============================================================
   LILLIUM HOTEL & SPA — MAIN STYLESHEET
   Typography matched to blondehedgehog.com: single family Fakt Pro
     regular  = FaktPro-Blond (light cut)  -> open stand-in: Hanken Grotesk 300/400
     bold     = FaktPro-Medium             -> open stand-in: Hanken Grotesk 500/600
   If a Fakt Pro license is purchased, drop the woff2 files in
   assets/fonts/ and uncomment below — stacks list 'Fakt Pro' first.
   ------------------------------------------------------------
   @font-face {
     font-family: 'Fakt Pro';
     src: url('../fonts/FaktPro-Blond.woff2') format('woff2');
     font-weight: 400; font-style: normal; font-display: swap;
   }
   @font-face {
     font-family: 'Fakt Pro';
     src: url('../fonts/FaktPro-Medium.woff2') format('woff2');
     font-weight: 700; font-style: normal; font-display: swap;
   }
   ============================================================ */

/* ---------- Design Tokens ---------- */
:root {
  --gold: #c8a96a;
  --gold-dark: #a98a4d;
  --gold-soft: #e6d5ae;
  --green: #0a3d29;        /* Lillium brand green (from logo) */
  --green-deep: #072b1d;
  --ink: #211d16;
  --dark: #191610;
  --cream: #f5efe4;
  --light: #faf7f0;
  --white: #ffffff;
  --text: #4a4438;
  --muted: #857c6b;
  --border: #e6dfd1;
  --shadow-sm: 0 2px 10px rgba(33, 29, 22, 0.06);
  --shadow-md: 0 10px 30px rgba(33, 29, 22, 0.10);
  --shadow-lg: 0 24px 60px rgba(33, 29, 22, 0.16);
  --header-h: 132px;
  --ease: cubic-bezier(.4, 0, .2, 1);
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 10px);
}

body {
  font-family: 'Fakt Pro', 'Hanken Grotesk', -apple-system, 'Segoe UI', sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Fakt Pro', 'Hanken Grotesk', sans-serif;
  color: var(--ink);
  line-height: 1.25;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}

.icon { width: 16px; height: 16px; flex-shrink: 0; }

.text-center { text-align: center; }
.text-white { color: var(--white) !important; }
.text-light { color: rgba(255,255,255,.78) !important; }
.mt-xl { margin-top: 32px; }
.mt-5xl { margin-top: 56px; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 3000;
  background: var(--ink); color: #fff; padding: 12px 20px; font-size: .85rem;
}
.skip-link:focus { left: 0; }

/* ---------- Buttons ---------- */
.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: 'Fakt Pro', 'Hanken Grotesk', sans-serif; font-weight: 600;
  font-size: .78rem; letter-spacing: .16em; text-transform: uppercase;
  padding: 15px 32px; border-radius: 2px; border: 1px solid transparent;
  cursor: pointer; transition: all .4s var(--ease); white-space: nowrap;
}
.button-primary { background: var(--green); color: #fff; border-color: var(--green); }
.button-primary:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.button-secondary { background: transparent; color: var(--ink); border-color: var(--ink); }
.button-secondary:hover { background: var(--green); border-color: var(--green); color: #fff; }
.button-gold { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.button-gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); color: #fff; }
.button-light { background: #fff; color: var(--ink); border-color: #fff; }
.button-light:hover { background: transparent; color: #fff; }
.button-sm { padding: 11px 22px; font-size: .7rem; }
.button-lg { padding: 17px 40px; }
.button-xl { padding: 20px 48px; font-size: .82rem; }

/* On dark hero: secondary becomes light outline */
.hero .button-secondary { color: #fff; border-color: rgba(255,255,255,.75); }
.hero .button-secondary:hover { background: #fff; color: var(--ink); border-color: #fff; }

/* ---------- Header ---------- */
.header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  transition: background .45s var(--ease), box-shadow .45s var(--ease), padding .45s var(--ease);
  background: transparent;
}
.header-container {
  max-width: 1440px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 32px; transition: padding .45s var(--ease);
}
.header.scrolled {
  background: rgba(255, 255, 255, .97);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(33,29,22,.10);
  border-bottom: 1px solid var(--border);
}

.logo { display: flex; align-items: center; gap: 12px; color: #fff; transition: color .45s var(--ease); }
.header.scrolled .logo { color: var(--ink); }
.logo-icon { width: 92px; height: 92px; border-radius: 50%; object-fit: cover; display: block; box-shadow: 0 2px 10px rgba(0,0,0,.18); }
.footer .logo-icon { width: 156px; height: 156px; }
.logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.logo-name {
  font-family: 'Fakt Pro', 'Hanken Grotesk', sans-serif; font-weight: 600;
  font-size: 2.04rem; letter-spacing: .3em; text-transform: uppercase;
}
.logo-name + .logo-name { font-size: 1.24rem; letter-spacing: .30em; font-weight: 500; color: var(--gold); }

.nav-desktop .nav-menu { display: flex; gap: 26px; }
.nav-desktop .nav-menu a {
  font-size: .72rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255,255,255,.88); padding: 8px 0; position: relative; transition: color .35s var(--ease);
}
.header.scrolled .nav-desktop .nav-menu a { color: var(--ink); }
.nav-desktop .nav-menu a::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 1.5px;
  background: var(--gold); transition: width .35s var(--ease);
}
.nav-desktop .nav-menu a:hover { color: var(--gold); }
.nav-desktop .nav-menu a:hover::after { width: 100%; }

.nav-cta .button { padding: 12px 26px; }
.header:not(.scrolled) .nav-cta .button-primary { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.header:not(.scrolled) .nav-cta .button-primary:hover { background: #fff; border-color: #fff; }

.mobile-menu-button {
  display: none; background: none; border: 0; cursor: pointer;
  width: 44px; height: 44px; position: relative; z-index: 1102;
}
.hamburger, .hamburger::before, .hamburger::after {
  content: ""; position: absolute; left: 10px; width: 24px; height: 2px;
  background: #fff; transition: all .4s var(--ease);
}
.header.scrolled .hamburger, .header.scrolled .hamburger::before, .header.scrolled .hamburger::after { background: var(--ink); }
.hamburger { top: 21px; }
.hamburger::before { left: 0; top: -7px; }
.hamburger::after { left: 0; top: 7px; }
.mobile-menu-button[aria-expanded="true"] .hamburger { background: transparent; }
.mobile-menu-button[aria-expanded="true"] .hamburger::before { top: 0; transform: rotate(45deg); background: var(--ink); }
.mobile-menu-button[aria-expanded="true"] .hamburger::after { top: 0; transform: rotate(-45deg); background: var(--ink); }

/* Mobile menu panel */
.mobile-menu {
  position: fixed; inset: 0; z-index: 1100; background: var(--light);
  display: flex; flex-direction: column;
  transform: translateY(-100%); transition: transform .55s var(--ease);
  overflow-y: auto; padding: 24px;
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 36px; }
.mobile-menu-header .logo { color: var(--ink); }
.mobile-menu-close { background: none; border: 0; cursor: pointer; width: 44px; height: 44px; color: var(--ink); display: flex; align-items: center; justify-content: center; }
.mobile-menu-close .icon { width: 26px; height: 26px; }
.mobile-menu-nav { flex: 1; }
.mobile-menu-nav li { border-bottom: 1px solid var(--border); }
.mobile-menu-nav a {
  display: block; padding: 16px 4px; font-size: .95rem; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase; color: var(--ink); transition: color .3s;
}
.mobile-menu-nav a:hover { color: var(--gold); }
.mobile-menu-cta { display: flex; flex-direction: column; gap: 12px; padding: 28px 0 12px; }
.mobile-menu-cta .button { width: 100%; }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100vh; height: 100svh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
}
.hero-background { position: absolute; inset: 0; z-index: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center 40%;
  opacity: 0; transform: scale(1);
  transition: opacity 1.6s var(--ease);
}
.hero-slide.is-active { opacity: 1; animation: heroZoom 9s var(--ease) forwards; }
@keyframes heroZoom { from { transform: scale(1.1); } to { transform: scale(1); } }
.hero-dots {
  position: absolute; z-index: 3; right: 26px; top: 50%;
  transform: translateY(-50%);
  display: flex; flex-direction: column; gap: 11px;
}
.hero-dot {
  width: 9px; height: 9px; border-radius: 50%;
  border: 0; padding: 0; cursor: pointer;
  background: rgba(255, 255, 255, .42);
  transition: background .3s var(--ease), transform .3s var(--ease);
}
.hero-dot:hover { background: rgba(255, 255, 255, .75); }
.hero-dot.is-active { background: var(--gold); transform: scale(1.4); }
@media (max-width: 640px) {
  .hero-dots { right: 12px; gap: 9px; }
  .hero-dot { width: 7px; height: 7px; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-slide { transition: opacity .4s linear; }
  .hero-slide.is-active { animation: none; }
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(16,13,8,.46) 0%, rgba(16,13,8,.34) 45%, rgba(16,13,8,.62) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 860px; padding: 150px 24px 100px; }
.hero-title {
  font-size: clamp(2.3rem, 6vw, 4.4rem); font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase; color: #fff;
  text-indent: .12em; margin-bottom: 18px;
  text-shadow: 0 4px 30px rgba(0,0,0,.35);
}
.hero-subtitle {
  font-family: 'Fakt Pro', 'Hanken Grotesk', sans-serif; font-weight: 500;
  font-size: clamp(1.15rem, 2.6vw, 1.7rem); letter-spacing: .06em;
  color: var(--gold-soft); margin-bottom: 22px;
}
.hero-description { color: rgba(255,255,255,.86); font-size: 1.02rem; font-weight: 300; max-width: 620px; margin: 0 auto 38px; }
.hero-actions { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,.85); cursor: pointer; background: none; border: 0;
}
.hero-scroll .icon { width: 22px; height: 22px; animation: scrollBounce 2.2s infinite; }
.hero-scroll .text { font-size: .66rem; letter-spacing: .3em; text-transform: uppercase; }
@keyframes scrollBounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(8px); } }

/* ---------- Sections ---------- */
.section { padding: 96px 0; }
.section-white { background: var(--white); }
.section-light { background: var(--light); }
.section-cream { background: var(--cream); }
.section-dark {
  background: linear-gradient(160deg, #10462f 0%, var(--green) 55%, var(--green-deep) 100%);
  color: rgba(255,255,255,.8);
}

.section-header { text-align: center; max-width: 720px; margin: 0 auto 60px; }
.section-title {
  font-size: clamp(1.6rem, 3.2vw, 2.35rem); font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase; color: var(--ink);
  text-indent: .12em; margin-bottom: 16px; position: relative;
}
.section-header .section-title::after {
  content: ""; display: block; width: 56px; height: 2px;
  background: var(--gold); margin: 22px auto 0;
}
.section-subtitle { color: var(--muted); font-size: 1rem; font-weight: 300; }

.split-section {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.split-content .section-title { font-size: clamp(1.5rem, 2.8vw, 2.1rem); }
.split-content .section-title::after { content: ""; display: block; width: 56px; height: 2px; background: var(--gold); margin: 22px 0 26px; }
.split-content p { margin-bottom: 18px; color: var(--text); font-weight: 300; }
.split-content p strong { font-weight: 600; color: var(--ink); }
.split-image img {
  width: 100%; height: 520px; object-fit: cover; border-radius: 3px;
  box-shadow: var(--shadow-lg);
}
.split-image.landscape img {
  height: auto; aspect-ratio: 16 / 9; object-position: center 42%;
}

/* ---------- Booking Engine ---------- */
.booking-engine {
  background: var(--white); border: 1px solid var(--border); border-radius: 4px;
  box-shadow: var(--shadow-md); padding: 44px 48px; margin-top: -70px; position: relative; z-index: 5;
}
#booking-engine-section { padding-top: 0; }
.booking-engine-title {
  text-align: center; font-size: 1.15rem; letter-spacing: .26em; text-transform: uppercase;
  color: var(--ink); font-weight: 500; margin-bottom: 30px; text-indent: .26em;
}
.booking-engine-title::after { content: ""; display: block; width: 44px; height: 2px; background: var(--gold); margin: 14px auto 0; }
.booking-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; align-items: end;
}
.booking-field label {
  display: block; font-size: .66rem; font-weight: 600; letter-spacing: .18em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 8px;
}
.form-input, .form-select {
  width: 100%; font-family: 'Fakt Pro', 'Hanken Grotesk', sans-serif; font-size: .92rem; color: var(--ink);
  background: var(--light); border: 1px solid var(--border); border-radius: 2px;
  padding: 13px 14px; outline: none; transition: border-color .3s, box-shadow .3s;
  appearance: none;
}
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23857c6b' stroke-width='1.6' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; cursor: pointer;
}
.form-input:focus, .form-select:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(200,169,106,.18); }
.promo-code-input { display: flex; gap: 8px; }
.promo-code-input .form-input { flex: 1; }
.promo-code-toggle {
  width: 46px; background: var(--cream); border: 1px solid var(--border); border-radius: 2px;
  color: var(--gold-dark); cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: all .3s;
}
.promo-code-toggle:hover { background: var(--gold); color: #fff; border-color: var(--gold); }
.booking-actions { text-align: center; margin-top: 30px; }
.booking-msg {
  display: none; margin: 22px auto 0; max-width: 640px; text-align: center;
  background: var(--cream); border: 1px solid var(--gold-soft); color: var(--ink);
  border-radius: 3px; padding: 14px 20px; font-size: .9rem;
}
.booking-msg.show { display: block; }
.booking-msg a { color: var(--gold-dark); font-weight: 600; text-decoration: underline; }

/* ---------- Card Grids (Rooms / Dining / Events / Discover / Experiences) ---------- */
.room-cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.dining-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; max-width: 1020px; margin: 0 auto; }
.events-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; max-width: 1020px; margin: 0 auto; }
.discover-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.experiences-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.experience-card.wide { grid-column: 1 / -1; display: grid; grid-template-columns: 1.7fr 1fr; }
.experience-card.wide .experience-card-image { aspect-ratio: auto; height: 100%; min-height: 340px; }
.experience-card.wide .experience-card-content { display: flex; flex-direction: column; justify-content: center; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; gap: 14px; }

/* Generic card */
.room-card, .dining-card, .event-card, .discover-card, .experience-card {
  background: var(--white); border: 1px solid var(--border); border-radius: 3px;
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.room-card:hover, .dining-card:hover, .event-card:hover, .discover-card:hover, .experience-card:hover {
  transform: translateY(-8px); box-shadow: var(--shadow-lg);
}
.room-card-image, .dining-card-image, .event-card-image, .discover-card-image, .experience-card-image {
  position: relative; overflow: hidden; aspect-ratio: 4 / 3;
}
.room-card-image img, .dining-card-image img, .event-card-image img,
.discover-card-image img, .experience-card-image img {
  width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease);
}
.room-card:hover img, .dining-card:hover img, .event-card:hover img,
.discover-card:hover img, .experience-card:hover img { transform: scale(1.06); }
.deck-crop { object-position: 60% 52%; }

/* ------------------------------------------------------------
   SECTION 15: BOOKING POLICIES
   ------------------------------------------------------------ */
.policies-grid {
  display: grid; grid-template-columns: 1fr 1.15fr;
  gap: 56px; align-items: start; text-align: left;
}
.policy-block + .policy-block { margin-top: 44px; }
.policy-title {
  font-size: 1.02rem; font-weight: 600; letter-spacing: .14em;
  color: var(--green);
  padding-bottom: 12px; margin-bottom: 18px;
  border-bottom: 1px solid rgba(200, 169, 106, .45);
}
.policy-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.policy-list li {
  position: relative; padding-left: 22px;
  font-size: .92rem; line-height: 1.7; color: var(--text);
}
.policy-list li::before {
  content: ""; position: absolute; left: 2px; top: .58em;
  width: 6px; height: 6px; background: var(--gold);
  transform: rotate(45deg);
}
/* ------------------------------------------------------------
   SECTION 3B: OUR STORY
   ------------------------------------------------------------ */
.story-grid {
  display: grid; grid-template-columns: .8fr 2fr;
  gap: 64px; align-items: start; text-align: left;
}
.story-aside {
  position: sticky; top: calc(var(--header-h) + 40px);
  display: flex; flex-direction: column; align-items: flex-start; gap: 14px;
}
.story-aside .section-title { text-align: left; }
.story-aside-note {
  font-size: .78rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--muted);
}
.story-flourish { width: 40px; height: 40px; color: var(--gold); margin-top: 6px; }
.story-body p {
  font-size: 1rem; line-height: 1.85; color: var(--text);
  margin-bottom: 18px; font-weight: 300;
}
.story-body p strong { font-weight: 500; color: var(--ink); }
.story-lead { font-size: 1.14rem; color: var(--ink); }
.story-heading {
  font-size: 1.32rem; font-weight: 500; letter-spacing: .06em;
  color: var(--green); margin: 0 0 6px;
}
.story-chapter {
  display: grid; grid-template-columns: 76px 1fr; gap: 22px;
  margin-top: 48px; align-items: start;
}
.story-chapter-num {
  font-size: 2.2rem; font-weight: 600; line-height: 1;
  color: var(--gold); letter-spacing: .02em;
  padding-top: 2px;
}
.story-chapter-tag {
  font-style: italic; color: var(--muted);
  font-size: .98rem; margin-bottom: 14px;
}
.story-closing {
  border-left: 2px solid var(--gold);
  padding-left: 20px; margin-top: 32px;
  font-size: 1.3rem; font-weight: 500; font-style: italic;
  letter-spacing: .01em; line-height: 1.5; color: var(--green);
}
@media (max-width: 900px) {
  .story-grid { grid-template-columns: 1fr; gap: 32px; }
  .story-aside { position: static; }
}
@media (max-width: 640px) {
  .story-chapter { grid-template-columns: 48px 1fr; gap: 14px; margin-top: 38px; }
  .story-chapter-num { font-size: 1.6rem; }
  .story-closing { font-size: 1.14rem; }
}

@media (max-width: 900px) {
  .policies-grid { grid-template-columns: 1fr; gap: 40px; }
  .policy-block + .policy-block { margin-top: 40px; }
}
.event-crop { object-position: 30% 55%; }

.room-card-badge, .event-card-badge {
  position: absolute; top: 16px; left: 16px; z-index: 2;
  background: var(--green); color: var(--gold-soft);
  font-size: .62rem; font-weight: 600; letter-spacing: .24em; text-transform: uppercase;
  padding: 7px 14px; border-radius: 2px;
}
.room-card-content, .dining-card-content, .event-card-content,
.discover-card-content, .experience-card-content {
  padding: 26px 26px 28px; display: flex; flex-direction: column; flex: 1;
}
.room-card-title, .dining-card-title, .event-card-title, .discover-card-title, .experience-card-title {
  font-size: 1.08rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink); margin-bottom: 12px; line-height: 1.4;
}
.room-card-description, .dining-card-description, .event-card-description,
.discover-card-description, .experience-card-description {
  font-size: .9rem; font-weight: 300; color: var(--muted); margin-bottom: 18px;
}
.room-card-meta, .dining-card-meta, .event-card-meta, .discover-card-meta {
  display: flex; flex-wrap: wrap; gap: 8px 20px; margin-bottom: 20px;
  padding-top: 16px; border-top: 1px solid var(--border);
}
.room-card-meta-item, .dining-card-meta-item, .event-card-meta-item, .discover-card-meta-item {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .72rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--text);
}
.room-card-meta-item .icon, .dining-card-meta-item .icon,
.event-card-meta-item .icon, .discover-card-meta-item .icon { color: var(--gold); width: 15px; height: 15px; }
.room-card-actions, .dining-card-actions, .event-card-actions {
  margin-top: auto; display: flex; gap: 10px; flex-wrap: wrap;
}
.room-card-actions .button, .dining-card-actions .button, .event-card-actions .button { flex: 1; min-width: 120px; }

/* Gallery */
.gallery-grid figure {
  position: relative; overflow: hidden; border-radius: 3px; cursor: pointer; margin: 0;
}
.gallery-grid figure img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.gallery-grid figure:hover img { transform: scale(1.07); }
.gallery-grid figure::after {
  content: "+"; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: rgba(25, 22, 16, .45); color: #fff; font-family: 'Fakt Pro', 'Hanken Grotesk', sans-serif; font-size: 2.2rem;
  opacity: 0; transition: opacity .4s;
}
.gallery-grid figure:hover::after { opacity: 1; }
.gallery-grid .wide { grid-column: span 2; }
.gallery-grid .tall { grid-row: span 2; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 2000; background: rgba(15,12,8,.94);
  display: none; align-items: center; justify-content: center; padding: 48px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 86vh; border-radius: 3px; box-shadow: 0 30px 90px rgba(0,0,0,.65); }
.lightbox button {
  position: absolute; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.35);
  color: #fff; width: 48px; height: 48px; border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center; transition: all .3s;
}
.lightbox button:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.lb-close { top: 26px; right: 26px; }
.lb-prev { left: 26px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 26px; top: 50%; transform: translateY(-50%); }
.lightbox button .icon { width: 20px; height: 20px; }

/* ---------- Benefits List ---------- */
.booking-benefits-list { display: grid; gap: 14px; margin: 24px 0 32px; }
.booking-benefit-item { display: flex; align-items: center; gap: 14px; font-size: .98rem; color: var(--text); }
.icon-check { width: 22px; height: 22px; color: var(--gold); }

/* ---------- Enquiry Section ---------- */
.enquiry-contact-list { display: grid; gap: 18px; margin: 26px 0 0; }
.enquiry-contact-list li { display: flex; gap: 14px; align-items: flex-start; font-size: .95rem; color: var(--text); line-height: 1.6; }
.enquiry-contact-list li .icon { color: var(--gold); width: 19px; height: 19px; margin-top: 4px; }
.enquiry-contact-list a { transition: color .3s; }
.enquiry-contact-list a:hover { color: var(--gold-dark); }
.enquiry-card {
  background: var(--white); border: 1px solid var(--border); border-radius: 4px;
  box-shadow: var(--shadow-md); padding: 40px 42px;
}
.enquiry-card-title {
  font-size: 1.15rem; letter-spacing: .26em; text-transform: uppercase; text-indent: .26em;
  color: var(--ink); font-weight: 500; text-align: center; margin-bottom: 28px;
}
.enquiry-card-title::after { content: ""; display: block; width: 44px; height: 2px; background: var(--gold); margin: 14px auto 0; }
.enquiry-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.enquiry-field { display: flex; flex-direction: column; }
.enquiry-field.full { grid-column: 1 / -1; }
.enquiry-field label {
  display: block; font-size: .66rem; font-weight: 600; letter-spacing: .18em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 8px;
}
textarea.form-input { min-height: 130px; resize: vertical; }
.enquiry-msg {
  display: none; grid-column: 1 / -1; margin: 4px 0 0; text-align: center;
  background: var(--cream); border: 1px solid var(--gold-soft); color: var(--ink);
  border-radius: 3px; padding: 14px 20px; font-size: .9rem;
}
.enquiry-msg.show { display: block; }
@media (max-width: 640px) {
  .enquiry-grid { grid-template-columns: 1fr; }
  .enquiry-card { padding: 28px 22px; }
}

/* ---------- Final CTA ---------- */
.final-cta-content { max-width: 760px; margin: 0 auto; }
.final-cta-content .section-title::after { content: ""; display: block; width: 56px; height: 2px; background: var(--gold); margin: 22px auto 26px; }
.final-cta-actions { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; margin-top: 40px; }

/* ---------- Footer ---------- */
.footer { background: var(--green-deep); color: rgba(255,255,255,.72); padding: 80px 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.4fr 1.3fr; gap: 44px;
  padding-bottom: 56px;
}
.footer .logo { color: #fff; margin-bottom: 20px; flex-direction: column; align-items: flex-start; gap: 16px; }
.footer-column h4 {
  font-family: 'Fakt Pro', 'Hanken Grotesk', sans-serif; font-size: .74rem; font-weight: 600;
  letter-spacing: .24em; text-transform: uppercase; color: var(--gold); margin-bottom: 22px;
}
.footer-column .description { font-size: .88rem; font-weight: 300; line-height: 1.8; margin-bottom: 22px; }
.footer-column ul li { margin-bottom: 11px; }
.footer-column ul a { font-size: .88rem; font-weight: 300; color: rgba(255,255,255,.72); transition: color .3s, padding-left .3s; }
.footer-column ul a:hover { color: var(--gold); padding-left: 6px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 40px; height: 40px; border: 1px solid rgba(255,255,255,.25); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.8);
  transition: all .35s var(--ease);
}
.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); transform: translateY(-3px); }
.footer-social .icon { width: 17px; height: 17px; }
.footer-contact-item { display: flex; gap: 13px; margin-bottom: 16px; font-size: .88rem; font-weight: 300; line-height: 1.7; }
.footer-contact-item .icon { color: var(--gold); width: 17px; height: 17px; margin-top: 4px; }
.footer-contact-item a:hover { color: var(--gold); }
.footer-newsletter-form { display: flex; gap: 10px; }
.footer-newsletter-form .form-input { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.2); color: #fff; }
.footer-newsletter-form .form-input::placeholder { color: rgba(255,255,255,.45); }
.footer-newsletter-form .button { padding: 13px 20px; }
.newsletter-msg { display: none; margin-top: 12px; font-size: .8rem; color: var(--gold-soft); }
.newsletter-msg.show { display: block; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12); padding: 26px 0 30px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
}
.footer-copyright { font-size: .8rem; font-weight: 300; color: rgba(255,255,255,.55); }
.footer-legal { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-legal a { font-size: .76rem; color: rgba(255,255,255,.55); transition: color .3s; }
.footer-legal a:hover { color: var(--gold); }

/* ---------- WhatsApp Float ---------- */
.whatsapp-float {
  position: fixed; right: 24px; bottom: 26px; z-index: 1500;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 30px rgba(37,211,102,.45);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.whatsapp-float:hover { transform: scale(1.1) translateY(-3px); box-shadow: 0 18px 40px rgba(37,211,102,.55); }
.whatsapp-float .icon { width: 30px; height: 30px; }

/* ---------- Animations ---------- */
.fade-in { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.stagger-item { opacity: 0; transform: translateY(30px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.stagger-item.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .fade-in, .stagger-item { opacity: 1; transform: none; transition: none; }
  .hero-background img { animation: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1200px) {
  .nav-desktop .nav-menu { gap: 18px; }
  .nav-desktop .nav-menu a { font-size: .68rem; letter-spacing: .12em; }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .experiences-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
  .nav-desktop, .nav-cta { display: none; }
  .mobile-menu-button { display: block; }
  .header-container { padding: 14px 22px; }
  .booking-grid { grid-template-columns: repeat(3, 1fr); }
  .split-section { grid-template-columns: 1fr; gap: 40px; }
  .split-image img { height: 400px; }
  .room-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .discover-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .section { padding: 76px 0; }
}

@media (max-width: 640px) {
  .header-container .logo-icon { width: 58px; height: 58px; }
  .header-container .logo-name { font-size: 1.25rem; }
  .header-container .logo-name + .logo-name { font-size: .74rem; }
  .hero-title { letter-spacing: .12em; text-indent: .12em; }
  .hero-content { padding: 110px 18px 90px; }
  .hero-actions .button { width: 100%; }
  .booking-engine { padding: 30px 22px; margin-top: -50px; }
  .booking-grid { grid-template-columns: 1fr 1fr; }
  .room-cards-grid, .dining-grid, .events-grid, .discover-grid, .experiences-grid { grid-template-columns: 1fr; }
  .experience-card.wide { grid-template-columns: 1fr; }
  .experience-card.wide .experience-card-image { aspect-ratio: 16 / 9; min-height: 0; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 170px; }
  .gallery-grid .tall { grid-row: span 1; }
  .split-image img { height: 300px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .final-cta-actions .button { width: 100%; }
  .section { padding: 60px 0; }
  .lightbox { padding: 20px; }
  .lb-prev { left: 10px; } .lb-next { right: 10px; }
}
