/*
Theme Name: Infineural GG Resort
Theme URI: https://ggresort.com/
Author: Infineural
Author URI: https://infineural.com/
Description: The Grand Resort, Igatpuri — a luxury Sahyadri resort WordPress theme. Cinematic hero with live mountain weather, rooms & suites catalogue, destination-wedding venues, spa, gardens, conference, gallery and journal — fully configurable via the Customizer.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: infineural-ggresort
Tags: resort, hotel, travel, custom-menu, custom-logo, featured-images
*/

/* Heading / body font hooks (from the original mobile.css global layer) */
:root { --font-head: "DM Sans", system-ui, sans-serif; --font-body: "DM Sans", system-ui, sans-serif; }
body { font-family: var(--font-body); }
h1, h2, h3, h4, .section-title, .escape-head, .hero-title, .journey-title, .jchapter-title, .cta-title { font-family: var(--font-head); }
/* ============================================================
   THE GRAND RESORT — Design System
   Type: DM Sans (300/400/500/600/700)
   Palette: deep pine forest + warm gold on warm cream
   ============================================================ */

:root {
  /* Brand color — overridable via Tweaks */
  --forest: #1f3a2c;
  --forest-deep: #16291f;
  --moss: #3d5a45;
  --sage: #8a9a82;
  --gold: #b58a4e;
  --gold-soft: #c9a877;

  /* Neutrals */
  --paper: #faf7f0;
  --cream: #f3eee3;
  --cream-deep: #ebe4d4;
  --ink: #20251f;
  --ink-soft: #4a4f46;
  --muted: #7c8174;
  --line: #ddd5c4;
  --white: #ffffff;

  --shadow-sm: 0 2px 14px rgba(31, 58, 44, 0.06);
  --shadow-md: 0 12px 40px rgba(31, 58, 44, 0.10);
  --shadow-lg: 0 30px 80px rgba(22, 41, 31, 0.20);

  --r-sm: 4px;
  --r-md: 10px;
  --r-lg: 18px;

  --maxw: 1280px;
  --gutter: clamp(20px, 5vw, 72px);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "DM Sans", system-ui, sans-serif;
  background: var(--paper);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "ss01" 1;
}

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

h1, h2, h3, h4 {
  margin: 0;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.08;
  text-wrap: balance;
}

p { margin: 0; text-wrap: pretty; }

a { color: inherit; text-decoration: none; }

/* ---------- Reusable atoms ---------- */

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

.eyebrow {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--gold);
  opacity: 0.7;
}
.eyebrow.centered { justify-content: center; }
.eyebrow.centered::after {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--gold);
  opacity: 0.7;
}

.section-title {
  font-size: clamp(30px, 4.2vw, 52px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.05;
}
.section-title em {
  font-style: italic;
  font-weight: 500;
  color: var(--moss);
}

.lead {
  font-size: clamp(17px, 1.6vw, 20px);
  color: var(--ink-soft);
  line-height: 1.75;
  max-width: 60ch;
}

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--forest);
  --fg: var(--paper);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 16px 30px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--bg);
  color: var(--fg);
  cursor: pointer;
  transition: transform 0.4s var(--ease), background 0.3s var(--ease), color 0.3s, box-shadow 0.3s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--gold { --bg: var(--gold); --fg: #2a1f0d; }
.btn--gold:hover { --bg: var(--gold-soft); }
.btn--ghost {
  --bg: transparent; --fg: var(--paper);
  border-color: rgba(255,255,255,0.5);
  backdrop-filter: blur(2px);
}
.btn--ghost:hover { background: var(--paper); --fg: var(--forest); border-color: var(--paper); }
.btn--outline { --bg: transparent; --fg: var(--forest); border-color: var(--forest); }
.btn--outline:hover { --bg: var(--forest); --fg: var(--paper); }

.btn--sm { padding: 12px 22px; font-size: 12px; }

/* Text link with arrow */
.tlink {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--forest);
  cursor: pointer;
}
.tlink svg { transition: transform 0.4s var(--ease); }
.tlink:hover svg { transform: translateX(6px); }

/* arrow used widely */
.arrow { width: 16px; height: 16px; flex: none; }

/* ---------- Generic reveal hook — always visible (robust against React re-renders
   and externally-scrolled preview iframes). Motion lives elsewhere. ---------- */
.reveal { opacity: 1; }

#root { overflow-x: clip; }
/* ============================================================
   Component styles — The Grand Resort
   ============================================================ */

/* Corner style tweak */
:root[data-corner="sharp"] { --r-sm: 0px; --r-md: 0px; --r-lg: 2px; }

/* ---------------- NAV ---------------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  transition: background 0.45s var(--ease), box-shadow 0.45s, padding 0.45s var(--ease);
  padding: 22px 0;
}
.nav--solid {
  background: rgba(250, 247, 240, 0.92);
  backdrop-filter: saturate(140%) blur(14px);
  box-shadow: 0 1px 0 var(--line), 0 8px 30px rgba(31,58,44,0.06);
  padding: 13px 0;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; }
.brand-logo { height: 58px; width: auto; display: block; transition: filter 0.4s var(--ease), height 0.45s var(--ease); }
.nav--solid .brand-logo { height: 48px; }
/* Real logo art is dark-on-transparent — knock it to white over the photographic hero, restore full colour on the solid bar */
.brand--light .brand-logo { filter: brightness(0) invert(1); }

/* Monogram + wordmark fallback when the logo image can't load */
.brand-lockup { display: inline-flex; align-items: center; gap: 11px; }
.brand-mono { width: 46px; height: 46px; border-radius: 50%; background: var(--gold); color: #241a09; display: grid; place-items: center; font-weight: 700; font-size: 21px; font-family: var(--font-head, "DM Sans"); }
.brand-words { display: flex; flex-direction: column; line-height: 1; gap: 4px; }
.brand-words b { font-size: 18px; font-weight: 600; letter-spacing: -0.01em; color: var(--forest); }
.brand-words span { font-size: 10px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }
.brand--light .brand-words b { color: #fff; }
.brand--light .brand-words span { color: var(--gold-soft); }
/* ---------------- FAQ (AEO/AIO) ---------------- */
.brand--light .brand-mono { background: rgba(255,255,255,0.16); color: #fff; }

.faqx { background: var(--cream); padding: clamp(56px, 8vw, 104px) 0; }
.faqx-head { max-width: 1280px; margin: 0 auto; padding-inline: clamp(20px, 5vw, 72px); text-align: center; }
.faqx-eyebrow { font-size: 12px; font-weight: 600; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.faqx-title { font-family: var(--font-head, "DM Sans"); font-size: clamp(26px, 4vw, 44px); font-weight: 500; letter-spacing: -0.02em; line-height: 1.06; color: var(--forest); }
.faq-list { max-width: 860px; margin: clamp(34px,4vw,52px) auto 0; padding-inline: clamp(20px, 5vw, 72px); display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; transition: box-shadow 0.3s var(--ease); }
.faq-item.is-open { box-shadow: var(--shadow-sm); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; text-align: left;
  background: none; border: none; cursor: pointer; padding: 20px 22px; font-family: var(--font-head, "DM Sans");
  font-size: clamp(16px, 1.8vw, 18.5px); font-weight: 600; color: var(--forest); letter-spacing: -0.01em; }
.faq-q svg { flex: none; color: var(--gold); transition: transform 0.3s var(--ease); }
.faq-item.is-open .faq-q svg { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq-item.is-open .faq-a { max-height: 420px; }
.faq-a p { padding: 0 22px 22px; font-size: 15.5px; line-height: 1.7; color: var(--ink-soft); }

.nav-links { display: flex; gap: 34px; }
.nav-links a {
  font-size: 14px; font-weight: 500; letter-spacing: 0.01em;
  color: inherit; position: relative; padding: 4px 0;
  color: #faf7f0;
  transition: color 0.3s;
}
.nav--solid .nav-links a { color: var(--ink-soft); }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: -2px; height: 1.5px; width: 0; background: var(--gold); transition: width 0.4s var(--ease); }
.nav-links a:hover::after { width: 100%; }

.nav-right { display: flex; align-items: center; gap: 22px; }
.nav-phone { font-size: 14px; font-weight: 600; color: #faf7f0; transition: color 0.3s; white-space: nowrap; }
.nav--solid .nav-phone { color: var(--forest); }

/* ---------------- HERO ---------------- */
.hero-wrap { position: relative; z-index: 1; }
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.06);
  animation: heroZoom 18s ease-out forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
:root[data-hero="muted"] .hero-bg { filter: saturate(0.8) brightness(0.92); }

.hero-inner { position: relative; padding-bottom: clamp(150px, 22vh, 240px); padding-top: 140px; max-width: var(--maxw); width: 100%; }
.hero-kicker {
  color: #f3dcb6; font-size: 14px; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase;
  margin: 0 0 22px; display: inline-flex; align-items: center; gap: 13px;
  text-shadow: 0 1px 14px rgba(16,30,22,0.5);
}
.hero-kicker::before { content: ""; width: 30px; height: 1.5px; background: var(--gold-soft); }
.hero-title { color: #faf7f0; font-size: clamp(44px, 7.4vw, 104px); font-weight: 400; letter-spacing: -0.035em; line-height: 0.98; max-width: 16ch; }
.hero-title span { display: block; }
.hero-title span:last-child { font-style: italic; font-weight: 500; color: var(--gold-soft); }
.hero-sub { color: rgba(250,247,240,0.9); font-size: clamp(16px, 1.5vw, 20px); line-height: 1.7; max-width: 50ch; margin-top: 28px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }

.hero-scroll { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); width: 22px; height: 36px; border: 1.5px solid rgba(250,247,240,0.5); border-radius: 12px; display: none; }
.hero-scroll span { position: absolute; top: 7px; left: 50%; margin-left: -2px; width: 4px; height: 7px; border-radius: 2px; background: #faf7f0; animation: scrollDot 1.8s var(--ease) infinite; }
@keyframes scrollDot { 0%,100% { opacity: 0; transform: translateY(0); } 40% { opacity: 1; } 80% { opacity: 0; transform: translateY(10px); } }

/* ---------------- BOOKING BAR ---------------- */
.booking {
  position: absolute; left: 50%; bottom: -36px; transform: translateX(-50%);
  width: min(1080px, calc(100% - 2 * var(--gutter)));
  background: var(--white);
  border: 1px solid rgba(31, 58, 44, 0.08);
  border-radius: var(--r-lg);
  box-shadow: 0 24px 60px rgba(22, 41, 31, 0.28), 0 2px 0 rgba(255,255,255,0.6) inset;
  display: grid; grid-template-columns: 1fr auto 1fr auto 1.1fr auto; align-items: center;
  gap: 6px; padding: 14px 16px;
  z-index: 6;
}
:root[data-hero] .booking { } /* placeholder */
.bk-field { display: flex; flex-direction: column; gap: 4px; padding: 8px 18px; cursor: pointer; }
.bk-label { font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
.bk-field input[type="date"] {
  font-family: inherit; font-size: 15.5px; font-weight: 500; color: var(--ink);
  border: none; background: transparent; padding: 0; outline: none; cursor: pointer;
}
.bk-div { width: 1px; height: 38px; background: var(--line); }
.bk-step { display: flex; align-items: center; gap: 10px; }
.bk-step span { font-size: 15.5px; font-weight: 500; min-width: 72px; text-align: center; }
.bk-step button { flex: 0 0 28px; width: 28px; height: 28px; padding: 0; border-radius: 50%; border: 1px solid var(--line); background: var(--white); font-size: 18px; font-weight: 500; line-height: 1; color: var(--forest); cursor: pointer; transition: all 0.25s; display: inline-flex; align-items: center; justify-content: center; }
.bk-step button:hover { background: var(--forest); color: var(--paper); border-color: var(--forest); }
.booking-cta { background: var(--forest); color: var(--paper); height: 100%; min-height: 60px; padding-inline: 28px; }
.booking-cta.is-done { background: var(--gold); color: #2a1f0d; }

/* ---------------- WELCOME ---------------- */
.welcome { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 96px); align-items: center; padding-top: clamp(120px, 16vh, 180px); padding-bottom: clamp(70px, 10vw, 120px); }
.welcome-media { position: relative; }
.welcome-img-1 { width: 84%; aspect-ratio: 4/5; object-fit: cover; border-radius: var(--r-lg); box-shadow: var(--shadow-md); }
.welcome-img-2 { position: absolute; right: 0; bottom: -34px; width: 52%; aspect-ratio: 1/1; object-fit: cover; border-radius: var(--r-lg); border: 7px solid var(--paper); box-shadow: var(--shadow-md); }
.welcome-badge { position: absolute; left: -10px; top: -10px; width: 96px; height: 96px; border-radius: 50%; background: var(--gold); color: #2a1f0d; display: grid; place-content: center; text-align: center; line-height: 1.1; box-shadow: var(--shadow-md); transform: rotate(-8deg); }
.welcome-badge strong { font-size: 22px; font-weight: 700; }
.welcome-badge span { font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; }
.welcome-copy { display: flex; flex-direction: column; gap: 22px; }
.welcome-copy .section-title { margin-top: 4px; }
.welcome-stats { display: flex; gap: 38px; margin-top: 12px; flex-wrap: wrap; }
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-n { font-size: clamp(30px, 3.5vw, 42px); font-weight: 500; color: var(--forest); letter-spacing: -0.03em; line-height: 1; }
.stat-l { font-size: 13.5px; color: var(--muted); max-width: 16ch; line-height: 1.4; }

/* ---------------- STAYS ---------------- */
.stays { background: var(--cream); padding: clamp(70px, 10vw, 120px) 0; }
.stays-head { display: grid; grid-template-columns: 1fr 0.9fr; gap: 40px; align-items: end; margin-bottom: 52px; }
.stays-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.room { background: var(--paper); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform 0.5s var(--ease), box-shadow 0.5s; display: block; }
.room:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.room-img { aspect-ratio: 3/4; background-size: cover; background-position: center; position: relative; transition: transform 0.6s var(--ease); }
.room:hover .room-img { transform: scale(1.04); }
.room-img { overflow: hidden; }
.room-tag { position: absolute; top: 14px; left: 14px; background: rgba(250,247,240,0.92); color: var(--forest); font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; padding: 7px 13px; border-radius: 999px; backdrop-filter: blur(4px); }
.room-body { display: flex; align-items: center; justify-content: space-between; padding: 20px 22px; }
.room-body h3 { font-size: 20px; font-weight: 500; }
.room-cta { width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; color: var(--forest); transition: all 0.35s var(--ease); flex: none; }
.room:hover .room-cta { background: var(--forest); color: var(--paper); border-color: var(--forest); }
.room-cta .arrow { width: 16px; height: 16px; }

/* ---------------- EXPERIENCES ---------------- */
.experiences { padding: clamp(80px, 11vw, 140px) 0; display: flex; flex-direction: column; gap: clamp(80px, 11vw, 140px); }
.exp { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
.exp--flip .exp-media { order: 2; }
.exp-media img { width: 100%; aspect-ratio: 5/4; object-fit: cover; border-radius: var(--r-lg); box-shadow: var(--shadow-md); }
.exp-copy { display: flex; flex-direction: column; gap: 20px; }
.exp-copy .tlink { margin-top: 6px; }

/* ---------------- ACTIVITIES ---------------- */
.activities { background: var(--forest-deep); color: var(--paper); padding: clamp(80px, 11vw, 130px) 0; }
.act-head { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 18px; margin-bottom: 56px; }
.activities .act-head .section-title { color: var(--paper); }
.activities .act-head .section-title em { color: var(--gold-soft); }
.act-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.act { border-radius: var(--r-lg); overflow: hidden; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.09); transition: transform 0.5s var(--ease); }
.act:hover { transform: translateY(-6px); }
.act-img { aspect-ratio: 4/3; background-size: cover; background-position: center; }
.act-body { padding: 22px 22px 26px; }
.act-body h3 { font-size: 20px; font-weight: 500; margin-bottom: 8px; }
.act-body p { font-size: 14px; color: rgba(250,247,240,0.68); line-height: 1.6; }

/* ---------------- CTA ---------------- */
.cta { background-size: cover; background-position: center; background-attachment: fixed; padding: clamp(100px, 16vw, 200px) 0; text-align: center; color: #faf7f0; }
.cta-inner { display: flex; flex-direction: column; align-items: center; gap: 28px; }
.cta-title { font-size: clamp(32px, 5vw, 62px); font-weight: 400; letter-spacing: -0.03em; line-height: 1.08; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ---------------- REVIEWS ---------------- */
.reviews { padding: clamp(80px, 11vw, 130px) 0; }
.reviews-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; margin-bottom: 52px; flex-wrap: wrap; }
.reviews-score { display: flex; align-items: center; gap: 16px; }
.rs-num { font-size: 54px; font-weight: 500; color: var(--forest); letter-spacing: -0.04em; line-height: 1; }
.reviews-score > div { display: flex; flex-direction: column; gap: 4px; }
.rs-sub { font-size: 13px; color: var(--muted); }
.stars { color: var(--gold); display: inline-flex; gap: 2px; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.review { margin: 0; background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 30px; display: flex; flex-direction: column; gap: 18px; transition: transform 0.4s var(--ease), box-shadow 0.4s; }
.review:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: transparent; }
.review blockquote { margin: 0; font-size: 16.5px; line-height: 1.65; color: var(--ink-soft); }
.review figcaption { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.rev-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--moss); color: var(--paper); display: grid; place-items: center; font-weight: 600; font-size: 17px; }
.review figcaption > span { display: flex; flex-direction: column; font-weight: 600; font-size: 15px; }
.review figcaption em { font-style: normal; font-weight: 400; font-size: 12.5px; color: var(--muted); }

/* ---------------- GALLERY ---------------- */
.gallery { padding: clamp(70px, 10vw, 120px) 0 clamp(90px, 12vw, 140px); }
.gal-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 240px; gap: 16px; }
.gal-item { position: relative; border: none; padding: 0; cursor: pointer; overflow: hidden; border-radius: var(--r-md); background: var(--cream-deep); }
.gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.gal-item:hover img { transform: scale(1.06); }
.gal-tall { grid-row: span 2; }
.gal-wide { grid-column: span 2; }
.gal-label { position: absolute; left: 16px; bottom: 14px; color: #faf7f0; font-size: 14px; font-weight: 600; letter-spacing: 0.04em; opacity: 0; transform: translateY(8px); transition: all 0.4s var(--ease); z-index: 2; }
.gal-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(transparent 50%, rgba(16,30,22,0.7)); opacity: 0; transition: opacity 0.4s; }
.gal-item:hover::after { opacity: 1; }
.gal-item:hover .gal-label { opacity: 1; transform: none; }

/* ---------------- LIGHTBOX ---------------- */
.lb { position: fixed; inset: 0; z-index: 100; background: rgba(12,20,15,0.92); backdrop-filter: blur(6px); display: flex; align-items: center; justify-content: center; padding: 40px; animation: fade 0.3s ease; }
@keyframes fade { from { opacity: 0; } }
.lb-fig { margin: 0; max-width: 90vw; max-height: 86vh; display: flex; flex-direction: column; gap: 14px; align-items: center; }
.lb-fig img { max-width: 100%; max-height: 80vh; object-fit: contain; border-radius: var(--r-md); box-shadow: var(--shadow-lg); }
.lb-fig figcaption { color: rgba(250,247,240,0.85); font-size: 14px; letter-spacing: 0.1em; text-transform: uppercase; }
.lb-close { position: absolute; top: 24px; right: 30px; background: none; border: none; color: #faf7f0; font-size: 38px; line-height: 1; cursor: pointer; opacity: 0.8; transition: opacity 0.3s; }
.lb-close:hover { opacity: 1; }
.lb-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 56px; height: 56px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.3); background: rgba(255,255,255,0.06); color: #faf7f0; font-size: 30px; cursor: pointer; transition: background 0.3s; }
.lb-nav:hover { background: rgba(255,255,255,0.18); }
.lb-prev { left: 28px; } .lb-next { right: 28px; }

/* ---------------- MODAL ---------------- */
.modal { position: fixed; inset: 0; z-index: 90; background: rgba(12,20,15,0.55); backdrop-filter: blur(6px); display: flex; align-items: center; justify-content: center; padding: 24px; animation: fade 0.3s ease; }
.modal-card { position: relative; background: var(--paper); border-radius: var(--r-lg); padding: clamp(30px, 4vw, 48px); width: min(720px, 100%); box-shadow: var(--shadow-lg); animation: pop 0.4s var(--ease); }
@keyframes pop { from { opacity: 0; transform: translateY(20px) scale(0.97); } }
.modal-close { position: absolute; top: 18px; right: 22px; background: none; border: none; font-size: 30px; line-height: 1; color: var(--muted); cursor: pointer; }
.modal-booking { margin-top: 26px; }
.modal-booking .booking { position: static; transform: none; width: 100%; box-shadow: none; border: 1px solid var(--line); background: var(--cream); }
.modal-foot { margin-top: 22px; font-size: 14px; color: var(--muted); }
.modal-foot a { color: var(--forest); font-weight: 600; }

/* ---------------- FOOTER ---------------- */
.footer { background: var(--forest-deep); color: rgba(250,247,240,0.78); padding: clamp(60px, 8vw, 90px) 0 36px; }
.footer-top { display: grid; grid-template-columns: 1.1fr 1.4fr; gap: 50px; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-brand { display: flex; flex-direction: column; align-items: flex-start; gap: 18px; max-width: 38ch; }
.footer-brand p { font-size: 15px; line-height: 1.7; }
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.footer-cols h4 { font-size: 12px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-soft); margin-bottom: 16px; }
.footer-cols a { display: block; font-size: 14.5px; padding: 6px 0; color: rgba(250,247,240,0.72); transition: color 0.3s; }
.footer-cols a:hover { color: #faf7f0; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding-top: 26px; font-size: 13px; color: rgba(250,247,240,0.5); flex-wrap: wrap; }
.footer-legal { display: flex; gap: 22px; }
.footer-legal a:hover { color: #faf7f0; }

/* ---------------- RESPONSIVE ---------------- */
@media (max-width: 1080px) {
  .stays-grid, .act-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-links { display: none; }
}
@media (max-width: 860px) {
  body { font-size: 16px; }
  .welcome { grid-template-columns: 1fr; }
  .welcome-media { max-width: 460px; margin-bottom: 40px; }
  .exp, .exp--flip .exp-media { grid-template-columns: 1fr; }
  .exp--flip .exp-media { order: 0; }
  .exp-media { order: 0 !important; }
  .stays-head, .reviews-head { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .booking { grid-template-columns: 1fr 1fr; gap: 10px; bottom: -120px; }
  .bk-div { display: none; }
  .booking-cta { grid-column: span 2; }
  .footer-top { grid-template-columns: 1fr; }
  .gal-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .gal-wide { grid-column: span 2; }
  .gal-tall { grid-row: span 1; }
  .nav-phone { display: none; }
}
@media (max-width: 560px) {
  .stays-grid, .act-grid, .gal-grid { grid-template-columns: 1fr; }
  .gal-wide { grid-column: span 1; }
  .hero-title { font-size: 13vw; }
  .reviews-grid { grid-template-columns: 1fr; }
}
/* ============================================================
   CLIMATE & ATMOSPHERE
   ============================================================ */

/* ---- Atmospheric sky layer (sits over hero image) ---- */
.atmos { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 1; }
.atmos-tint { position: absolute; inset: 0; transition: background 2s ease; }
.atmos.is-day .atmos-tint   { background: linear-gradient(180deg, rgba(120,150,170,0.18), rgba(20,40,30,0.05) 40%, rgba(16,30,22,0.15)); }
.atmos.is-night .atmos-tint { background: linear-gradient(180deg, rgba(10,18,34,0.55), rgba(12,20,30,0.30) 45%, rgba(8,14,20,0.5)); }
.atmos--rain .atmos-tint    { background: linear-gradient(180deg, rgba(40,55,65,0.45), rgba(20,35,40,0.25) 45%, rgba(15,28,30,0.4)); }

/* Sun / moon */
.atmos-sun {
  position: absolute; top: 14%; right: 16%; width: 130px; height: 130px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,243,214,0.9), rgba(255,225,170,0.45) 40%, transparent 70%);
  filter: blur(2px); animation: sunPulse 8s ease-in-out infinite; opacity: 0.85;
}
.atmos--cloud .atmos-sun, .atmos--mist .atmos-sun { opacity: 0.4; }
.atmos--rain .atmos-sun { display: none; }
@keyframes sunPulse { 0%,100% { transform: scale(1); opacity: 0.8; } 50% { transform: scale(1.08); opacity: 0.95; } }

.atmos-moon {
  position: absolute; top: 13%; right: 17%; width: 88px; height: 88px; opacity: 0.95;
}
.atmos-moon-svg { width: 100%; height: 100%; display: block; filter: drop-shadow(0 0 22px rgba(210,225,255,0.5)); }
.atmos-moon-dark { fill: rgba(225,232,243,0.10); } /* faint sphere so a new/crescent moon still reads */
/* Night stars — three layers twinkling at different rates for depth */
.atmos-stars {
  position: absolute; inset: 0; opacity: 0.7; animation: twinkle 4s ease-in-out infinite;
  background-image:
    radial-gradient(1.5px 1.5px at 20% 30%, #fff, transparent),
    radial-gradient(1px 1px at 35% 18%, #fff, transparent),
    radial-gradient(1.5px 1.5px at 55% 25%, #fff, transparent),
    radial-gradient(1px 1px at 70% 12%, #fff, transparent),
    radial-gradient(1.5px 1.5px at 82% 30%, #fff, transparent),
    radial-gradient(1px 1px at 48% 40%, #fff, transparent),
    radial-gradient(1px 1px at 12% 45%, #fff, transparent);
}
.atmos-stars::before, .atmos-stars::after { content: ""; position: absolute; inset: 0; }
.atmos-stars::before {
  opacity: 0.5; animation: twinkle 6.5s ease-in-out infinite 1s;
  background-image:
    radial-gradient(1px 1px at 8% 22%, #eaf0ff, transparent),
    radial-gradient(1px 1px at 28% 38%, #fff, transparent),
    radial-gradient(1px 1px at 42% 14%, #fff, transparent),
    radial-gradient(1px 1px at 62% 34%, #eaf0ff, transparent),
    radial-gradient(1px 1px at 76% 20%, #fff, transparent),
    radial-gradient(1px 1px at 90% 42%, #fff, transparent),
    radial-gradient(1px 1px at 5% 38%, #fff, transparent);
}
.atmos-stars::after {
  animation: twinkle 3s ease-in-out infinite 0.5s;
  background-image:
    radial-gradient(2px 2px at 26% 24%, #fff, transparent),
    radial-gradient(2px 2px at 64% 16%, #fff, transparent),
    radial-gradient(2px 2px at 88% 26%, #cfe0ff, transparent),
    radial-gradient(2px 2px at 40% 46%, #fff, transparent);
}
@keyframes twinkle { 0%,100% { opacity: 0.35; } 50% { opacity: 0.8; } }

/* Occasional shooting star (night) */
.atmos-shooting {
  position: absolute; top: 16%; left: 64%; width: 120px; height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, rgba(255,255,255,0), #fff);
  opacity: 0; transform: rotate(20deg); transform-origin: right center;
  animation: shoot 11s ease-in infinite 4s;
}
.atmos-shooting::after {
  content: ""; position: absolute; right: 0; top: -1.5px; width: 4px; height: 4px; border-radius: 50%;
  background: #fff; box-shadow: 0 0 7px 2px rgba(255,255,255,0.85);
}
@keyframes shoot {
  0% { opacity: 0; transform: translate(0,0) rotate(20deg); }
  2% { opacity: 0.95; }
  11% { opacity: 0.95; transform: translate(-200px,72px) rotate(20deg); }
  14%, 100% { opacity: 0; transform: translate(-200px,72px) rotate(20deg); }
}

/* Drifting clouds — present day & night, density follows conditions */
.atmos-clouds { position: absolute; inset: 0; opacity: 0.18; transition: opacity 1.5s ease; }
.atmos-clouds span {
  position: absolute; height: 90px; width: 260px; will-change: transform;
  background: radial-gradient(60% 60% at 50% 50%, rgba(255,255,255,0.9), rgba(255,255,255,0) 70%);
  filter: blur(9px);
}
.atmos-clouds span:nth-child(1) { top: 16%; animation: cloud 64s linear infinite; }
.atmos-clouds span:nth-child(2) { top: 30%; width: 340px; height: 110px; opacity: 0.8; animation: cloud 92s linear infinite -34s; }
.atmos-clouds span:nth-child(3) { top: 8%;  width: 200px; height: 70px;  opacity: 0.7; animation: cloud 78s linear infinite -56s; }
.atmos--clear .atmos-clouds { opacity: 0.15; }
.atmos--cloud .atmos-clouds, .atmos--mist .atmos-clouds { opacity: 0.5; }
.atmos--rain .atmos-clouds { opacity: 0.7; filter: brightness(0.7) saturate(0.6); }
.atmos.is-night .atmos-clouds { filter: brightness(0.45); }
.atmos--rain.is-night .atmos-clouds { filter: brightness(0.4) saturate(0.5); }
@keyframes cloud { from { transform: translateX(-45vw); } to { transform: translateX(140vw); } }

/* Sun rays — soft rotating shimmer behind the sun on a clear day */
.atmos-rays {
  position: absolute; top: 14%; right: 16%; width: 130px; height: 130px;
  transform: translate(40%, -40%); opacity: 0.35; animation: spinRays 90s linear infinite;
  background: repeating-conic-gradient(from 0deg at 50% 50%,
    rgba(255,238,200,0.5) 0deg 6deg, transparent 6deg 24deg);
  border-radius: 50%;
  -webkit-mask-image: radial-gradient(circle, transparent 22%, #000 30%, transparent 72%);
          mask-image: radial-gradient(circle, transparent 22%, #000 30%, transparent 72%);
}
.atmos--cloud .atmos-rays, .atmos--mist .atmos-rays, .atmos--rain .atmos-rays { opacity: 0; }
@keyframes spinRays { from { transform: translate(40%,-40%) rotate(0deg); } to { transform: translate(40%,-40%) rotate(360deg); } }

/* Drifting mist — the signature Igatpuri feel */
.mist {
  position: absolute; left: -30%; right: -30%; height: 60%;
  background-repeat: repeat-x; background-size: 50% 100%;
  opacity: 0.5; will-change: transform;
}
.mist-1 {
  bottom: 0; height: 48%;
  background-image: radial-gradient(60% 80% at 30% 100%, rgba(255,255,255,0.55), transparent 70%),
                    radial-gradient(50% 70% at 70% 100%, rgba(255,255,255,0.4), transparent 70%);
  animation: drift1 26s linear infinite; opacity: 0.7;
}
.mist-2 {
  bottom: 8%; height: 40%;
  background-image: radial-gradient(55% 70% at 45% 100%, rgba(240,245,243,0.4), transparent 72%),
                    radial-gradient(45% 60% at 80% 100%, rgba(240,245,243,0.32), transparent 72%);
  animation: drift2 38s linear infinite; opacity: 0.55;
}
.mist-3 {
  bottom: 22%; height: 34%;
  background-image: radial-gradient(50% 60% at 35% 100%, rgba(255,255,255,0.28), transparent 75%);
  animation: drift1 52s linear infinite reverse; opacity: 0.4;
}
.atmos--mist .mist, .atmos--rain .mist { opacity: 0.85; }
.atmos.is-night .mist { filter: brightness(0.5) saturate(0.7); }
@keyframes drift1 { from { transform: translateX(0); } to { transform: translateX(25%); } }
@keyframes drift2 { from { transform: translateX(0); } to { transform: translateX(-22%); } }

/* Rain */
.rain { position: absolute; inset: 0; }
.rain span {
  position: absolute; top: -12%; width: 1.5px; height: 64px;
  background: linear-gradient(transparent, rgba(220,235,245,0.55));
  animation-name: rainfall; animation-iteration-count: infinite; animation-timing-function: linear;
}
@keyframes rainfall { to { transform: translateY(115vh); } }

@media (prefers-reduced-motion: reduce) {
  .mist, .atmos-sun, .atmos-stars, .atmos-stars::before, .atmos-stars::after,
  .atmos-shooting, .atmos-clouds span, .atmos-rays, .rain span { animation: none !important; }
  .atmos-shooting { display: none; }
}

/* ---- Compact climate badge (hero) ---- */
.cbadge {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 11px 18px; border-radius: 999px;
  background: rgba(16,28,22,0.42); border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(14px) saturate(140%);
  color: #faf7f0; font-size: 14px; font-weight: 500; letter-spacing: 0.01em;
}
.cbadge--load { color: rgba(250,247,240,0.8); font-style: italic; }
.cbadge-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold-soft); animation: blink 1.2s ease-in-out infinite; }
.cbadge-live { width: 9px; height: 9px; position: relative; }
.cbadge-live i { position: absolute; inset: 0; border-radius: 50%; background: #5fd08a; }
.cbadge-live::after { content: ""; position: absolute; inset: -4px; border-radius: 50%; border: 1px solid #5fd08a; animation: ping 1.8s ease-out infinite; }
.cbadge-live.is-est i { background: var(--gold-soft); }
.cbadge-live.is-est::after { border-color: var(--gold-soft); }
@keyframes ping { 0% { transform: scale(0.6); opacity: 0.9; } 100% { transform: scale(1.8); opacity: 0; } }
@keyframes blink { 0%,100% { opacity: 0.4; } 50% { opacity: 1; } }
.cbadge-temp { font-size: 17px; font-weight: 700; letter-spacing: -0.01em; }
.cbadge-sep { width: 1px; height: 16px; background: rgba(255,255,255,0.25); }
.cbadge-label { opacity: 0.92; white-space: nowrap; }
.cbadge-delta { font-size: 12px; font-weight: 700; color: #2a1f0d; background: var(--gold-soft); padding: 4px 10px; border-radius: 999px; letter-spacing: 0.02em; white-space: nowrap; }
@media (max-width: 560px) { .cbadge { flex-wrap: wrap; gap: 8px; } .cbadge-sep { display: none; } }

/* ---- Full live climate panel ---- */
.climate { position: relative; padding: clamp(80px, 11vw, 130px) 0; background: var(--forest-deep); color: var(--paper); overflow: hidden; }
.climate-bg { position: absolute; inset: 0; opacity: 0.22; background-size: cover; background-position: center; }
.climate .wrap { position: relative; z-index: 2; }
.climate-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(40px, 6vw, 80px); align-items: center; }
.climate-copy .section-title { color: var(--paper); }
.climate-copy .section-title em { color: var(--gold-soft); }
.climate-copy .lead { color: rgba(250,247,240,0.72); }

.cpanel { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--r-lg); padding: 30px; backdrop-filter: blur(8px); }
.cpanel-top { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-bottom: 22px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.cpanel-now { display: flex; align-items: center; gap: 18px; }
.cpanel-temp { font-size: 64px; font-weight: 500; letter-spacing: -0.04em; line-height: 0.9; }
.cpanel-temp sup { font-size: 26px; font-weight: 400; vertical-align: super; opacity: 0.7; }
.cpanel-cond { display: flex; flex-direction: column; gap: 4px; }
.cpanel-cond .wxlabel { font-size: 17px; font-weight: 600; }
.cpanel-cond .wxsub { font-size: 13px; color: rgba(250,247,240,0.6); }
.cpanel-icon { color: var(--gold-soft); }
.cpanel-live { display: inline-flex; align-items: center; gap: 7px; font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: #8fe0ab; }
.cpanel-live.is-est { color: var(--gold-soft); }
.cpanel-live i { width: 7px; height: 7px; border-radius: 50%; background: currentColor; box-shadow: 0 0 0 0 currentColor; animation: ping2 1.8s ease-out infinite; }
@keyframes ping2 { 0% { box-shadow: 0 0 0 0 rgba(143,224,171,0.5); } 100% { box-shadow: 0 0 0 8px rgba(143,224,171,0); } }

.cpanel-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; padding: 22px 0; }
.cmetric { text-align: center; }
.cmetric span { display: block; }
.cmetric .cm-n { font-size: 24px; font-weight: 600; letter-spacing: -0.02em; }
.cmetric .cm-l { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(250,247,240,0.55); margin-top: 4px; }

.cpanel-delta { display: flex; align-items: center; gap: 12px; background: rgba(181,138,78,0.16); border: 1px solid rgba(201,168,119,0.3); border-radius: var(--r-md); padding: 14px 18px; font-size: 14px; }
.cpanel-delta strong { color: var(--gold-soft); font-size: 18px; }

.cpanel-forecast { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 22px; }
.cday { text-align: center; padding: 14px 6px; border-radius: var(--r-md); background: rgba(255,255,255,0.04); }
.cday .cd-day { font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(250,247,240,0.65); }
.cday .cd-icon { color: var(--gold-soft); margin: 8px 0; display: flex; justify-content: center; }
.cday .cd-temp { font-size: 14px; font-weight: 500; }
.cday .cd-temp em { font-style: normal; color: rgba(250,247,240,0.5); }

@media (max-width: 860px) {
  .climate-grid { grid-template-columns: 1fr; }
  .cpanel-metrics { gap: 8px; }
}
/* ============================================================
   New sections — hero extras, escape, journey, wedding, blogs
   ============================================================ */

/* ---- Hero extras ---- */
.hero-bg { z-index: 0; }
.hero-shade { position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: linear-gradient(180deg, rgba(16,30,22,0.30) 0%, rgba(16,30,22,0.05) 32%, rgba(16,30,22,0.74) 100%); }
.hero-inner { z-index: 3; }

.hero-badges { margin-bottom: 26px; }

/* Marquee ticker at base of hero */
.hero-marquee {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 3;
  padding: 14px 0; overflow: hidden;
  background: linear-gradient(180deg, transparent, rgba(16,30,22,0.5));
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.hero-marquee-track { display: flex; width: max-content; animation: marquee 38s linear infinite; }
.hm-item { display: inline-flex; align-items: center; gap: 26px; padding-right: 26px;
  color: rgba(250,247,240,0.78); font-size: 13px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; white-space: nowrap; }
.hm-item i { width: 5px; height: 5px; border-radius: 50%; background: var(--gold-soft); }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .hero-marquee-track { animation: none; } }

/* Push booking bar above marquee */
.hero .booking { bottom: -36px; }

/* ---- Escape (story intro) ---- */
.escape { padding: clamp(90px, 13vw, 160px) 0 clamp(70px, 9vw, 110px); }
.escape-head { font-size: clamp(30px, 5vw, 60px); font-weight: 400; line-height: 1.08; letter-spacing: -0.03em; margin: 22px 0 44px; max-width: 18ch; }
.escape-head span { display: block; }
.escape-head .escape-em { font-style: italic; font-weight: 500; color: var(--moss); }
.escape-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(36px, 6vw, 90px); align-items: center; }
.escape-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 30px 40px; }
.estat { border-top: 2px solid var(--line); padding-top: 16px; }
.estat-n { display: block; font-size: clamp(36px, 4.5vw, 56px); font-weight: 500; letter-spacing: -0.04em; color: var(--forest); line-height: 1; }
.estat-l { display: block; font-size: 14px; color: var(--muted); margin-top: 8px; line-height: 1.4; max-width: 22ch; }

/* ---- Virtual Journey (auto-playing cinematic) ---- */
.journey { position: relative; height: 100vh; height: 100svh; min-height: 640px; overflow: hidden; background: var(--forest-deep); }
.journey-stage { position: absolute; inset: 0; overflow: hidden; }
.journey-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 1.4s var(--ease); }
.journey-bg.is-on { opacity: 1; animation: kenburns 7s ease-out forwards; }
@keyframes kenburns { from { transform: scale(1.08); } to { transform: scale(1); } }
@media (prefers-reduced-motion: reduce) { .journey-bg.is-on { animation: none; } }
.journey-ui { position: relative; z-index: 2; height: 100%; display: flex; flex-direction: column; justify-content: space-between; padding-top: 120px; padding-bottom: 48px; color: #faf7f0; }
.journey-head .eyebrow { margin-bottom: 12px; }
.journey-title { font-size: clamp(28px, 4vw, 50px); font-weight: 400; letter-spacing: -0.025em; color: #faf7f0; }

.journey-content { position: relative; flex: 1; display: flex; align-items: center; max-width: 640px; }
.jchapter { position: absolute; left: 0; right: 0; opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); pointer-events: none; }
.jchapter.is-on { opacity: 1; transform: none; pointer-events: auto; }
.jchapter-meta { display: flex; align-items: center; gap: 16px; margin-bottom: 16px; }
.jchapter-time { font-size: 15px; font-weight: 700; letter-spacing: 0.18em; color: var(--gold-soft); }
.jchapter-temp { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 600; color: rgba(250,247,240,0.85); padding: 5px 12px; border: 1px solid rgba(255,255,255,0.25); border-radius: 999px; }
.jchapter-title { font-size: clamp(30px, 4.4vw, 54px); font-weight: 500; letter-spacing: -0.03em; line-height: 1.05; margin-bottom: 16px; }
.jchapter-text { font-size: clamp(17px, 1.8vw, 21px); line-height: 1.7; color: rgba(250,247,240,0.92); max-width: 48ch; }

/* Horizontal timeline */
.journey-timeline { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.jstop { display: flex; flex-direction: column; gap: 10px; align-items: flex-start; background: none; border: none; padding: 0; cursor: pointer; text-align: left; opacity: 0.55; transition: opacity 0.4s; }
.jstop.is-on, .jstop:hover { opacity: 1; }
.jstop-time { font-size: 13px; font-weight: 700; letter-spacing: 0.1em; color: var(--gold-soft); }
.jstop-track { width: 100%; height: 3px; border-radius: 3px; background: rgba(255,255,255,0.22); overflow: hidden; }
.jstop-fill { display: block; height: 100%; width: 100%; background: var(--gold-soft); transform: scaleX(0); transform-origin: left; }
.jstop.is-done .jstop-track { background: var(--gold-soft); }
.jstop.is-on .jstop-fill { animation-name: fillbar; animation-timing-function: linear; animation-fill-mode: forwards; }
@keyframes fillbar { from { transform: scaleX(0); } to { transform: scaleX(1); } }
.jstop-label { font-size: 14px; font-weight: 500; color: rgba(250,247,240,0.92); letter-spacing: -0.01em; }
@media (prefers-reduced-motion: reduce) { .jstop-fill { animation: none !important; } .jstop.is-on .jstop-fill, .jstop.is-done .jstop-fill { transform: scaleX(1); } }
@media (max-width: 860px) {
  .journey-ui { padding-top: 100px; }
  .journey-timeline { grid-template-columns: repeat(5, 1fr); gap: 8px; }
  .jstop-label { display: none; }
  .jstop-time { font-size: 11px; }
}

/* ---- Destination Wedding ---- */
.wedding { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; min-height: 80vh; background: var(--cream); }
.wedding-media { position: relative; overflow: hidden; min-height: 440px; }
.wedding-img-main { position: absolute; inset: 0; background-size: cover; background-position: center; }
.wedding-img-sub { position: absolute; right: -1px; bottom: -1px; width: 46%; aspect-ratio: 4/3; background-size: cover; background-position: center; border-top: 8px solid var(--cream); border-left: 8px solid var(--cream); border-top-left-radius: var(--r-lg); }
.wedding-copy { display: flex; flex-direction: column; justify-content: center; gap: 22px; padding: clamp(50px, 8vw, 110px) var(--gutter); }
.wedding-points { list-style: none; margin: 6px 0 6px; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.wedding-points li { display: flex; align-items: flex-start; gap: 12px; font-size: 16px; color: var(--ink-soft); }
.wedding-points svg { color: var(--gold); flex: none; margin-top: 3px; }
@media (max-width: 860px) { .wedding { grid-template-columns: 1fr; } .wedding-media { min-height: 60vh; } }

/* ---- Latest Blogs ---- */
.blogs { padding: clamp(80px, 11vw, 130px) 0; background: var(--cream); }
.blogs-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 30px; margin-bottom: 48px; flex-wrap: wrap; }
.blogs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.post { display: flex; flex-direction: column; background: var(--paper); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform 0.5s var(--ease), box-shadow 0.5s; }
.post:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.post-img { aspect-ratio: 16/10; background-size: cover; background-position: center; position: relative; }
.post-cat { position: absolute; top: 14px; left: 14px; background: rgba(250,247,240,0.92); color: var(--forest); font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; padding: 6px 12px; border-radius: 999px; }
.post-body { padding: 24px 26px 28px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.post-date { font-size: 12.5px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); }
.post-body h3 { font-size: 21px; font-weight: 500; line-height: 1.25; letter-spacing: -0.01em; }
.post-read { display: inline-flex; align-items: center; gap: 8px; margin-top: auto; font-size: 13px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--forest); }
.post-read .arrow { width: 15px; height: 15px; transition: transform 0.4s var(--ease); }
.post:hover .post-read .arrow { transform: translateX(6px); }
@media (max-width: 980px) { .blogs-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; } }

/* Loading state for climate panel */
.cpanel-loading { padding: 50px 10px; text-align: center; color: rgba(250,247,240,0.7); font-style: italic; }
/* ============================================================
   SUB-PAGE LAYER — The Grand Resort
   Shared chrome + layouts for the interior pages (Accommodation,
   Dining, Weddings, etc). Reuses the design tokens from styles.css
   and components from components.css. Plain responsive web design:
   multi-column on desktop, single column on mobile.
   ============================================================ */

:root { --snav-h: 78px; }

html { scroll-behavior: smooth; }
body.subpage { background: var(--paper); color: var(--ink); }

/* ---------------- TOP NAV ---------------- */
.snav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60; height: var(--snav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 var(--gutter); gap: 24px;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), height 0.4s var(--ease);
}
.snav.is-over { background: linear-gradient(180deg, rgba(13,23,18,0.5), transparent); }
.snav.is-solid {
  background: rgba(250,247,240,0.88);
  -webkit-backdrop-filter: saturate(150%) blur(18px); backdrop-filter: saturate(150%) blur(18px);
  box-shadow: 0 1px 0 var(--line), 0 12px 34px rgba(22,41,31,0.08); height: 64px;
}
.snav-brand { display: inline-flex; align-items: center; gap: 11px; line-height: 1; flex: none; }

/* Real logo image — white over the hero, full colour on the solid bar (matches homepage) */
.snav-logo { height: 50px; width: auto; display: block; transition: height 0.4s var(--ease), filter 0.4s var(--ease); }
.snav.is-solid .snav-logo { height: 42px; }
.snav.is-over .snav-logo { filter: brightness(0) invert(1); }
.snav-logo--footer { height: 52px; filter: brightness(0) invert(1); }
/* Fallback monogram lockup keeps the same alignment as the image */
.snav-lockup { display: inline-flex; align-items: center; gap: 11px; }
.snav-lockup--footer .snav-name b { color: #fff; }
.snav-lockup--footer .snav-name span { color: var(--gold-soft); }
.snav-mark { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; flex: none;
  background: var(--gold); color: #241a09; font-weight: 700; font-size: 18px; font-family: var(--font-head, "DM Sans"); }
.snav.is-over .snav-mark { background: rgba(255,255,255,0.16); color: #fff; -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); }
.snav-name { display: flex; flex-direction: column; gap: 3px; }
.snav-name b { font-family: var(--font-head, "DM Sans"); font-size: 17px; font-weight: 600; letter-spacing: -0.01em; color: var(--forest); white-space: nowrap; }
.snav-name span { font-size: 9.5px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); white-space: nowrap; }
.snav.is-over .snav-name b { color: #fff; }
.snav.is-over .snav-name span { color: var(--gold-soft); }

/* Primary menu — flat row of top-level items with hover dropdowns */
.snav-links, .snav-menu { display: flex; align-items: center; gap: 24px; flex: 0 1 auto; min-width: 0; list-style: none; margin: 0; padding: 0; }
.snav-menu > li { position: relative; list-style: none; }
.snav-links a, .snav-menu > li > a { font-size: 14.5px; font-weight: 500; color: var(--ink-soft); position: relative; padding: 4px 0; transition: color 0.25s; display: inline-flex; align-items: center; gap: 5px; }
.snav-menu > li.menu-item-has-children > a::before { content: ""; order: 2; width: 7px; height: 7px; margin-left: 3px; border-right: 1.6px solid currentColor; border-bottom: 1.6px solid currentColor; transform: translateY(-2px) rotate(45deg); transition: transform 0.25s; }
.snav-menu > li.menu-item-has-children:hover > a::before { transform: translateY(0) rotate(225deg); }
.snav-links a::after, .snav-menu > li > a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -2px; height: 2px; background: var(--gold); transition: right 0.3s var(--ease); }
.snav-links a:hover, .snav-menu > li > a:hover { color: var(--forest); }
.snav-links a:hover::after, .snav-menu > li > a:hover::after { right: 0; }
.snav-links a.is-current, .snav-menu > li.current-menu-item > a, .snav-menu > li.current-menu-ancestor > a { color: var(--forest); }
.snav-links a.is-current::after, .snav-menu > li.current-menu-item > a::after { right: 0; }
.snav.is-over .snav-links a, .snav.is-over .snav-menu > li > a { color: rgba(255,255,255,0.86); }
.snav.is-over .snav-links a:hover, .snav.is-over .snav-links a.is-current,
.snav.is-over .snav-menu > li > a:hover, .snav.is-over .snav-menu > li.current-menu-item > a, .snav.is-over .snav-menu > li.current-menu-ancestor > a { color: #fff; }

/* Dropdown submenu */
.snav-menu .sub-menu { list-style: none; margin: 0; padding: 8px; position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(10px);
  min-width: 248px; background: var(--white); border: 1px solid var(--line); border-radius: var(--r-md); box-shadow: var(--shadow-md);
  opacity: 0; visibility: hidden; transition: opacity 0.25s var(--ease), transform 0.25s var(--ease); z-index: 60; }
.snav-menu > li:hover > .sub-menu, .snav-menu > li:focus-within > .sub-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(8px); }
.snav-menu .sub-menu::before { content: ""; position: absolute; left: 0; right: 0; top: -10px; height: 10px; }
.snav-menu .sub-menu li { list-style: none; }
.snav-menu .sub-menu a { display: block; padding: 9px 14px; border-radius: var(--r-sm); font-size: 14px; font-weight: 500; color: var(--ink-soft); white-space: nowrap; transition: background 0.2s, color 0.2s; }
.snav-menu .sub-menu a:hover, .snav-menu .sub-menu .current-menu-item > a { background: var(--cream); color: var(--forest); }

.snav-actions { display: flex; align-items: center; gap: 18px; }
.snav-phone { font-size: 14px; font-weight: 600; color: var(--forest); white-space: nowrap; }
.snav.is-over .snav-phone { color: #fff; }
.snav-burger { display: none; width: 44px; height: 44px; border: none; background: none; cursor: pointer; color: var(--forest); }
.snav.is-over .snav-burger { color: #fff; }

/* mobile drawer */
.sdrawer-backdrop { position: fixed; inset: 0; z-index: 70; background: rgba(11,19,14,0.5); opacity: 0; pointer-events: none; transition: opacity 0.35s var(--ease); }
.sdrawer-backdrop.is-open { opacity: 1; pointer-events: auto; }
.sdrawer { position: fixed; top: 0; right: 0; bottom: 0; z-index: 71; width: min(82vw, 340px); background: var(--paper);
  transform: translateX(100%); transition: transform 0.4s var(--ease); display: flex; flex-direction: column; padding: 22px; box-shadow: -20px 0 60px rgba(11,19,14,0.3); }
.sdrawer.is-open { transform: translateX(0); }
.sdrawer-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.sdrawer-close { width: 38px; height: 38px; border-radius: 50%; border: none; background: var(--cream-deep); color: var(--ink); font-size: 22px; cursor: pointer; }
.sdrawer a { display: flex; align-items: center; justify-content: space-between; padding: 15px 6px; border-bottom: 1px solid var(--line); font-size: 17px; font-weight: 500; color: var(--ink); }
.sdrawer a:last-of-type { border-bottom: none; }
.sdrawer .btn { margin-top: 18px; width: 100%; }
/* Drawer menu (nested) — scrolls within the panel; submenus shown indented */
.sdrawer-menu { list-style: none; margin: 0; padding: 0; flex: 1 1 auto; overflow-y: auto; -webkit-overflow-scrolling: touch; }
.sdrawer-menu li { list-style: none; }
.sdrawer-menu > li > a { font-size: 16px; font-weight: 600; color: var(--forest); }
.sdrawer-menu .sub-menu { list-style: none; margin: 0 0 6px; padding: 0; }
.sdrawer-menu .sub-menu a { padding: 11px 6px 11px 18px; font-size: 14.5px; font-weight: 500; color: var(--ink-soft); border-bottom: 1px solid var(--line); }
.sdrawer-menu .sub-menu a:hover, .sdrawer-menu .current-menu-item > a { color: var(--gold); }
.sdrawer .btn, .sdrawer > .snav-phone { flex: none; }

/* ---------------- PAGE HERO BAND ---------------- */
.phero { position: relative; min-height: clamp(420px, 62vh, 600px); display: flex; align-items: flex-end;
  color: #fff; overflow: hidden; }
.phero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transform: scale(1.04); }
.phero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(16,28,20,0.42) 0%, rgba(16,28,20,0.2) 40%, rgba(16,28,20,0.72) 100%); }
.phero-inner { position: relative; z-index: 1; width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter) clamp(40px, 6vw, 72px); }
.crumb { display: flex; align-items: center; gap: 9px; font-size: 12.5px; letter-spacing: 0.08em; color: rgba(255,255,255,0.8); margin-bottom: 18px; text-transform: uppercase; }
.crumb a { color: rgba(255,255,255,0.8); transition: color 0.2s; }
.crumb a:hover { color: #fff; }
.crumb i { opacity: 0.5; font-style: normal; }
.phero-eyebrow { font-size: 12px; font-weight: 600; letter-spacing: 0.26em; text-transform: uppercase; color: var(--gold-soft); margin-bottom: 14px; }
.phero h1 { font-family: var(--font-head, "DM Sans"); font-size: clamp(38px, 6vw, 72px); font-weight: 500; line-height: 0.98; max-width: 16ch; }
.phero-sub { margin-top: 18px; font-size: clamp(15px, 1.4vw, 18px); line-height: 1.6; max-width: 56ch; color: rgba(255,255,255,0.92); }

/* ---------------- GENERIC SECTION ---------------- */
.psection { padding: clamp(56px, 8vw, 104px) 0; }
.psection.alt { background: var(--cream); }
.psection.forest { background: var(--forest-deep); color: var(--paper); }
.psection-head { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); }
.psection-head.center { text-align: center; }
.peyebrow { font-size: 12px; font-weight: 600; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.ptitle { font-family: var(--font-head, "DM Sans"); font-size: clamp(28px, 4vw, 46px); font-weight: 500; letter-spacing: -0.02em; line-height: 1.06; color: var(--forest); }
.psection.forest .ptitle { color: var(--paper); }
.plede { margin-top: 18px; font-size: clamp(16px, 1.5vw, 19px); line-height: 1.7; max-width: 62ch; color: var(--ink-soft); }
.psection-head.center .plede { margin-inline: auto; }
.psection.forest .plede { color: rgba(250,247,240,0.82); }

/* ---------------- ROOM CATALOG ---------------- */
.rooms-cat { max-width: var(--maxw); margin: clamp(38px, 5vw, 60px) auto 0; padding-inline: var(--gutter);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 2.4vw, 34px); }
.rcard { background: var(--white); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm);
  border: 1px solid var(--line); display: flex; flex-direction: column; transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease); }
.rcard:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.rcard-media { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.rcard-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.rcard:hover .rcard-media img { transform: scale(1.05); }
.rcard-tag { position: absolute; top: 14px; left: 14px; background: rgba(250,247,240,0.92); color: var(--forest);
  font-size: 11.5px; font-weight: 600; letter-spacing: 0.04em; padding: 6px 13px; border-radius: 999px; -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); }
.rcard-body { padding: 22px 22px 24px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.rcard-body h3 { font-family: var(--font-head, "DM Sans"); font-size: 21px; font-weight: 600; color: var(--forest); letter-spacing: -0.01em; }
.rcard-specs { display: flex; flex-wrap: wrap; gap: 7px 14px; font-size: 13px; color: var(--muted); }
.rcard-specs span { display: inline-flex; align-items: center; gap: 6px; }
.rcard-specs svg { width: 15px; height: 15px; color: var(--gold); }
.rcard-desc { font-size: 14.5px; line-height: 1.6; color: var(--ink-soft); }
.rcard-foot { margin-top: auto; padding-top: 6px; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.rcard-price { display: flex; flex-direction: column; line-height: 1.1; }
.rcard-price b { font-size: 22px; font-weight: 700; color: var(--ink); font-family: var(--font-head, "DM Sans"); }
.rcard-price small { font-size: 11.5px; color: var(--muted); margin-top: 3px; }

/* feature strip */
.fstrip { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(18px, 2.2vw, 32px); }
.fstrip.cols-3 { grid-template-columns: repeat(3, 1fr); }
.fitem { display: flex; flex-direction: column; gap: 10px; }
.fitem-ic { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; background: var(--cream); color: var(--forest); }
.psection.forest .fitem-ic { background: rgba(255,255,255,0.08); color: var(--gold-soft); }
.fitem-ic svg { width: 26px; height: 26px; }
.fitem h4 { font-size: 18px; font-weight: 600; color: var(--forest); letter-spacing: -0.01em; }
.psection.forest .fitem h4 { color: var(--paper); }
.fitem p { font-size: 14.5px; line-height: 1.6; color: var(--ink-soft); }
.psection.forest .fitem p { color: rgba(250,247,240,0.78); }

/* split feature (image + copy) */
.split { max-width: var(--maxw); margin: clamp(40px,5vw,64px) auto 0; padding-inline: var(--gutter);
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 64px); align-items: center; }
.split.flip .split-media { order: 2; }
.split-media { border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 5/4; box-shadow: var(--shadow-md); }
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.split-copy h3 { font-family: var(--font-head, "DM Sans"); font-size: clamp(24px, 3vw, 36px); font-weight: 500; color: var(--forest); letter-spacing: -0.02em; }
.split-copy p { margin-top: 16px; font-size: 16px; line-height: 1.75; color: var(--ink-soft); }
.split-list { margin-top: 22px; display: flex; flex-direction: column; gap: 13px; }
.split-list li { list-style: none; display: flex; gap: 12px; font-size: 15.5px; line-height: 1.5; color: var(--ink); }
.split-list svg { width: 21px; height: 21px; color: var(--gold); flex: none; margin-top: 2px; }

/* CTA band */
.cta-band { position: relative; overflow: hidden; padding: clamp(64px, 9vw, 120px) 0; text-align: center; color: #fff; }
.cta-band-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.cta-band::after { content: ""; position: absolute; inset: 0; background: linear-gradient(rgba(16,30,22,0.62), rgba(16,30,22,0.7)); }
.cta-band-inner { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; padding-inline: var(--gutter); }
.cta-band h2 { font-family: var(--font-head, "DM Sans"); font-size: clamp(30px, 4.6vw, 56px); font-weight: 500; line-height: 1.04; }
.cta-band p { margin-top: 18px; font-size: 17px; line-height: 1.7; color: rgba(255,255,255,0.9); }
.cta-band .cta-actions { margin-top: 30px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------------- RESPONSIVE ---------------- */
/* ---------------- LEGAL / PROSE PAGES ---------------- */
.legal-wrap { max-width: 880px; margin: 0 auto; padding: clamp(40px,5vw,72px) var(--gutter) clamp(56px,7vw,96px); }
.legal-meta { font-size: 13.5px; color: var(--muted); margin-bottom: 28px; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.legal-toc { background: var(--cream); border: 1px solid var(--line); border-radius: var(--r-md); padding: 22px 24px; margin-bottom: 38px; }
.legal-toc h2 { font-family: var(--font-head,"DM Sans"); font-size: 15px; font-weight: 600; letter-spacing: 0.02em; color: var(--forest); margin-bottom: 12px; }
.legal-toc ol { margin: 0; padding-left: 20px; display: grid; grid-template-columns: 1fr 1fr; gap: 6px 24px; }
.legal-toc a { font-size: 14px; color: var(--ink-soft); line-height: 1.5; }
.legal-toc a:hover { color: var(--gold); }
.legal-sec { margin-bottom: 34px; scroll-margin-top: 90px; }
.legal-sec h2 { font-family: var(--font-head,"DM Sans"); font-size: clamp(20px,2.4vw,26px); font-weight: 600; letter-spacing: -0.01em; color: var(--forest); margin-bottom: 14px; }
.legal-sec h3 { font-size: 17px; font-weight: 600; color: var(--ink); margin: 18px 0 8px; }
.legal-sec p { font-size: 15.5px; line-height: 1.75; color: var(--ink-soft); margin-bottom: 14px; }
.legal-sec ul { margin: 0 0 16px; padding-left: 22px; display: flex; flex-direction: column; gap: 9px; }
.legal-sec li { font-size: 15.5px; line-height: 1.65; color: var(--ink-soft); }
.legal-sec a { color: var(--gold); }
.legal-callout { background: var(--cream); border-left: 3px solid var(--gold); border-radius: 0 var(--r-md) var(--r-md) 0; padding: 16px 20px; margin: 0 0 16px; }
.legal-callout p { margin: 0; color: var(--ink); font-size: 15px; }
@media (max-width: 560px) { .legal-toc ol { grid-template-columns: 1fr; } }

/* ---------------- RESPONSIVE ---------------- */
@media (max-width: 1024px) {
  .rooms-cat { grid-template-columns: repeat(2, 1fr); }
  .fstrip, .fstrip.cols-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1040px) {
  .snav-links, .snav-menu, .snav-phone { display: none; }
  .snav-burger { display: grid; place-items: center; }
}
@media (max-width: 860px) {
  .split, .split.flip { grid-template-columns: 1fr; }
  .split.flip .split-media { order: 0; }
}
@media (max-width: 600px) {
  .rooms-cat { grid-template-columns: 1fr; }
  .fstrip, .fstrip.cols-3 { grid-template-columns: 1fr; }
  .phero { min-height: 440px; }
}
/* ============================================================
   PAGE-SPECIFIC STYLES
   (extracted from the per-page <style> blocks of the original
   HTML build, plus blog & WordPress-core additions)
   ============================================================ */

/* ---------------- Conference: capacity grid ---------------- */
.capgrid { max-width: var(--maxw); margin: clamp(38px,5vw,56px) auto 0; padding-inline: var(--gutter);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px,2vw,24px); }
.capcard { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 26px 22px; text-align: center; box-shadow: var(--shadow-sm); }
.capcard b { display: block; font-family: var(--font-head,"DM Sans"); font-size: 36px; font-weight: 700; color: var(--gold); letter-spacing: -0.02em; }
.capcard span { display: block; margin-top: 6px; font-size: 14px; color: var(--ink-soft); }
@media (max-width: 720px) { .capgrid { grid-template-columns: 1fr 1fr; } }

/* ---------------- Contact: info + enquiry form ---------------- */
.cgrid { max-width: var(--maxw); margin: clamp(38px,5vw,56px) auto 0; padding-inline: var(--gutter);
  display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(32px,4vw,64px); align-items: start; }
.cinfo { display: flex; flex-direction: column; gap: 26px; }
.crow { display: flex; gap: 16px; }
.crow-ic { width: 48px; height: 48px; border-radius: 13px; flex: none; display: grid; place-items: center; background: var(--cream); color: var(--forest); }
.crow-ic svg { width: 24px; height: 24px; }
.crow h4 { font-size: 16px; font-weight: 600; color: var(--forest); margin-bottom: 4px; }
.crow p, .crow a { font-size: 15px; line-height: 1.6; color: var(--ink-soft); }
.crow a:hover { color: var(--gold); }
.cmap { margin-top: 8px; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 16/10; border: 1px solid var(--line); }
.cmap iframe { width: 100%; height: 100%; border: 0; display: block; }

.cform { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(24px,3vw,38px); box-shadow: var(--shadow-sm); }
.cform h3 { font-family: var(--font-head,"DM Sans"); font-size: 24px; font-weight: 600; color: var(--forest); margin-bottom: 6px; }
.cform > p { font-size: 14.5px; color: var(--muted); margin-bottom: 22px; }
.cfield { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.cfield label { font-size: 12.5px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--ink-soft); }
.cfield input, .cfield select, .cfield textarea { font-family: inherit; font-size: 15px; color: var(--ink); background: var(--paper);
  border: 1px solid var(--line); border-radius: var(--r-md); padding: 13px 15px; outline: none; transition: border-color 0.2s, box-shadow 0.2s; }
.cfield input:focus, .cfield select:focus, .cfield textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(181,138,78,0.15); }
.cfield textarea { resize: vertical; min-height: 96px; }
.cgrid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cform .btn { width: 100%; margin-top: 6px; }
.cform-note { font-size: 12.5px; color: var(--muted); text-align: center; margin-top: 12px; }
.cform-sent { background: var(--cream); border: 1px solid var(--gold); border-radius: var(--r-md); color: var(--forest);
  font-size: 14.5px; padding: 13px 16px; margin-bottom: 18px; }
.cform .hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
@media (max-width: 860px) { .cgrid { grid-template-columns: 1fr; } }
@media (max-width: 480px) { .cgrid2 { grid-template-columns: 1fr; } }

/* ---------------- Destination Wedding: venue cards ---------------- */
.vgrid { max-width: var(--maxw); margin: clamp(38px,5vw,56px) auto 0; padding-inline: var(--gutter); display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(18px,2vw,28px); }
.vcard { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 26px 24px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 10px; transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease); }
.vcard:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.vcard h3 { font-family: var(--font-head,"DM Sans"); font-size: 22px; font-weight: 600; color: var(--forest); letter-spacing: -0.01em; }
.vcard .vcap { font-size: 12.5px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--gold); }
.vcard p { font-size: 14.5px; line-height: 1.6; color: var(--ink-soft); }
@media (max-width:1024px){ .vgrid{grid-template-columns:repeat(2,1fr);} }
@media (max-width:600px){ .vgrid{grid-template-columns:1fr;} }

/* ---------------- Gallery page: filters, masonry, lightbox ---------------- */
.gwrap { max-width: var(--maxw); margin: clamp(38px,5vw,60px) auto 0; padding-inline: var(--gutter); }
.gfilters { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: clamp(30px,4vw,46px); }
.gfilter { border: 1px solid var(--line); background: var(--white); color: var(--ink-soft); font-family: inherit;
  font-size: 13px; font-weight: 600; letter-spacing: 0.04em; padding: 10px 20px; border-radius: 999px; cursor: pointer; transition: all 0.25s var(--ease); }
.gfilter:hover { border-color: var(--gold); color: var(--forest); }
.gfilter.is-on { background: var(--forest); color: var(--paper); border-color: var(--forest); }
.ggrid { columns: 3; column-gap: 16px; }
.gcell { break-inside: avoid; margin-bottom: 16px; position: relative; border-radius: var(--r-md); overflow: hidden; cursor: pointer; box-shadow: var(--shadow-sm); }
.gcell img { width: 100%; display: block; transition: transform 0.6s var(--ease); }
.gcell:hover img { transform: scale(1.05); }
.gcell::after { content: ""; position: absolute; inset: 0; background: linear-gradient(transparent 55%, rgba(16,28,20,0.66)); opacity: 0; transition: opacity 0.3s; }
.gcell:hover::after { opacity: 1; }
.gcell.is-hidden { display: none; }
.gcap { position: absolute; left: 16px; bottom: 14px; z-index: 1; color: #fff; font-size: 14px; font-weight: 600; letter-spacing: 0.02em;
  opacity: 0; transform: translateY(6px); transition: all 0.3s var(--ease); }
.gcell:hover .gcap { opacity: 1; transform: none; }
@media (max-width: 900px) { .ggrid { columns: 2; } }
@media (max-width: 560px) { .ggrid { columns: 1; } }

.glb { position: fixed; inset: 0; z-index: 120; background: rgba(10,16,12,0.92); display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.3s; -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); }
.glb.is-open { opacity: 1; pointer-events: auto; }
.glb img { max-width: 90vw; max-height: 82vh; border-radius: var(--r-md); box-shadow: var(--shadow-lg); }
.glb-cap { position: absolute; bottom: 30px; left: 0; right: 0; text-align: center; color: #fff; font-size: 15px; letter-spacing: 0.04em; }
.glb-x, .glb-nav { position: absolute; background: rgba(255,255,255,0.12); border: none; color: #fff; cursor: pointer;
  width: 52px; height: 52px; border-radius: 50%; font-size: 26px; display: grid; place-items: center; transition: background 0.2s; }
.glb-x:hover, .glb-nav:hover { background: rgba(255,255,255,0.24); }
.glb-x { top: 24px; right: 24px; }
.glb-nav { top: 50%; transform: translateY(-50%); }
.glb-prev { left: 24px; } .glb-next { right: 24px; }
@media (max-width: 560px) { .glb-nav { width: 44px; height: 44px; } .glb-prev { left: 10px; } .glb-next { right: 10px; } }

/* ---------------- Journal / blog listing ---------------- */
.blist { max-width: var(--maxw); margin: clamp(38px,5vw,56px) auto 0; padding-inline: var(--gutter);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px,2.4vw,32px); }
.bpost { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease); }
.bpost:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.bpost-media { aspect-ratio: 3/2; overflow: hidden; display: block; }
.bpost-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.bpost:hover .bpost-media img { transform: scale(1.05); }
.bpost-body { padding: 22px 22px 24px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.bpost-meta { display: flex; align-items: center; gap: 10px; font-size: 12px; letter-spacing: 0.04em; }
.bpost-cat { color: var(--gold); font-weight: 700; text-transform: uppercase; }
.bpost-date { color: var(--muted); }
.bpost h3 { font-family: var(--font-head,"DM Sans"); font-size: 19px; font-weight: 600; line-height: 1.22; color: var(--forest); letter-spacing: -0.01em; }
.bpost h3 a { color: inherit; }
.bpost-excerpt { font-size: 14.5px; line-height: 1.6; color: var(--ink-soft); }
.bpost .tlink { margin-top: auto; }
.bfeature { max-width: var(--maxw); margin: clamp(38px,5vw,56px) auto 0; padding-inline: var(--gutter); }
.bfeature-card { display: grid; grid-template-columns: 1.1fr 1fr; background: var(--forest-deep); color: var(--paper); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.bfeature-media { min-height: 320px; background-size: cover; background-position: center; }
.bfeature-copy { padding: clamp(28px,3.5vw,48px); display: flex; flex-direction: column; justify-content: center; gap: 14px; }
.bfeature-copy .bpost-cat { color: var(--gold-soft); }
.bfeature-copy h2 { font-family: var(--font-head,"DM Sans"); font-size: clamp(24px,3vw,38px); font-weight: 500; line-height: 1.08; }
.bfeature-copy h2 a { color: inherit; }
.bfeature-copy p { font-size: 15.5px; line-height: 1.65; color: rgba(250,247,240,0.82); }
@media (max-width: 1024px) { .blist { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 820px) { .bfeature-card { grid-template-columns: 1fr; } .bfeature-media { min-height: 220px; } }
@media (max-width: 600px) { .blist { grid-template-columns: 1fr; } }

/* Blog pagination */
.bpagination { max-width: var(--maxw); margin: clamp(30px,4vw,46px) auto 0; padding-inline: var(--gutter);
  display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; }
.bpagination .page-numbers { display: inline-grid; place-items: center; min-width: 42px; height: 42px; padding: 0 14px;
  border: 1px solid var(--line); border-radius: 999px; background: var(--white); color: var(--ink-soft);
  font-size: 14px; font-weight: 600; transition: all 0.25s var(--ease); }
.bpagination .page-numbers:hover { border-color: var(--gold); color: var(--forest); }
.bpagination .page-numbers.current { background: var(--forest); border-color: var(--forest); color: var(--paper); }

/* ---------------- Single post ---------------- */
.bsingle { max-width: 820px; margin: 0 auto; padding: clamp(40px,5vw,64px) var(--gutter); }
.bsingle-meta { display: flex; align-items: center; gap: 12px; font-size: 13px; letter-spacing: 0.04em; margin-bottom: 14px; }
.bsingle-content { font-size: 16.5px; line-height: 1.8; color: var(--ink-soft); }
.bsingle-content > * + * { margin-top: 1.1em; }
.bsingle-content h2, .bsingle-content h3 { font-family: var(--font-head,"DM Sans"); color: var(--forest); line-height: 1.2; margin-top: 1.6em; }
.bsingle-content h2 { font-size: 28px; font-weight: 600; }
.bsingle-content h3 { font-size: 22px; font-weight: 600; }
.bsingle-content a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.bsingle-content img { max-width: 100%; height: auto; border-radius: var(--r-md); }
.bsingle-content ul, .bsingle-content ol { padding-left: 1.3em; }
.bsingle-content li + li { margin-top: 0.4em; }
.bsingle-content blockquote { border-left: 3px solid var(--gold); padding: 4px 0 4px 20px; font-style: italic; color: var(--ink); }
.bsingle-thumb { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-md); margin-bottom: clamp(26px,3vw,40px); }
.bsingle-thumb img { width: 100%; height: auto; display: block; }
.bsingle-nav { display: flex; justify-content: space-between; gap: 18px; margin-top: clamp(34px,4vw,52px);
  padding-top: 26px; border-top: 1px solid var(--line); }
.bsingle-nav a { font-size: 14.5px; font-weight: 600; color: var(--forest); }
.bsingle-nav a:hover { color: var(--gold); }

/* ---------------- Room detail ---------------- */
.rd { max-width: var(--maxw); margin: 0 auto; padding: clamp(40px,5vw,72px) var(--gutter); display: grid; grid-template-columns: 1.5fr 1fr; gap: clamp(32px,4vw,56px); align-items: start; }
.rd-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.rd-gallery .rd-main { grid-column: 1 / -1; aspect-ratio: 16/10; }
.rd-gallery figure { margin: 0; border-radius: var(--r-md); overflow: hidden; box-shadow: var(--shadow-sm); aspect-ratio: 4/3; }
.rd-gallery img { width: 100%; height: 100%; object-fit: cover; }
.rd-head h1 { font-family: var(--font-head,"DM Sans"); font-size: clamp(28px,4vw,42px); font-weight: 500; color: var(--forest); letter-spacing: -0.02em; }
.rd-head .rd-tag { display: inline-block; margin-bottom: 12px; background: var(--cream); color: var(--forest); font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 6px 13px; border-radius: 999px; }
.rd-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 24px 0; }
.rd-spec { display: flex; gap: 11px; align-items: center; }
.rd-spec-ic { width: 40px; height: 40px; border-radius: 11px; background: var(--cream); color: var(--forest); display: grid; place-items: center; flex: none; }
.rd-spec-ic svg { width: 20px; height: 20px; }
.rd-spec b { display: block; font-size: 14.5px; color: var(--ink); }
.rd-spec span { font-size: 12px; color: var(--muted); }
.rd-desc { font-size: 16px; line-height: 1.75; color: var(--ink-soft); }
.rd-highlights { margin: 22px 0 0; padding: 0; }
.rd-amen-title { font-family: var(--font-head,"DM Sans"); font-size: 16px; font-weight: 700; letter-spacing: 0.02em; text-transform: uppercase; color: var(--forest); margin: 28px 0 4px; }
.rd-amen { margin-top: 14px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0; }
.rd-amen li { list-style: none; display: flex; gap: 9px; font-size: 14.5px; color: var(--ink); }
.rd-amen svg { width: 19px; height: 19px; color: var(--gold); flex: none; }
.rd-book { position: sticky; top: 96px; background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 26px; box-shadow: var(--shadow-md); margin-top: 26px; }
.rd-price { display: flex; align-items: baseline; gap: 8px; }
.rd-price b { font-family: var(--font-head,"DM Sans"); font-size: 34px; font-weight: 700; color: var(--ink); }
.rd-price span { font-size: 13px; color: var(--muted); }
.rd-book .btn { width: 100%; margin-top: 18px; }
.rd-book .tlink { margin-top: 16px; }
.rd-perks { margin-top: 18px; border-top: 1px solid var(--line); padding: 16px 0 0; display: flex; flex-direction: column; gap: 10px; }
.rd-perks li { list-style: none; display: flex; gap: 9px; font-size: 13.5px; color: var(--ink-soft); }
.rd-perks svg { width: 17px; height: 17px; color: var(--gold); flex: none; }
@media (max-width: 920px) { .rd { grid-template-columns: 1fr; } .rd-book { position: static; } }
@media (max-width: 480px) { .rd-specs, .rd-amen { grid-template-columns: 1fr; } }

/* ---------------- 404 ---------------- */
.err404 { min-height: 70vh; display: grid; place-items: center; text-align: center; padding: clamp(60px,8vw,100px) var(--gutter); background: var(--paper); }
.err404 b { display: block; font-family: var(--font-head,"DM Sans"); font-size: clamp(80px,14vw,150px); font-weight: 700; color: var(--cream-deep); line-height: 1; }
.err404 h1 { font-family: var(--font-head,"DM Sans"); font-size: clamp(24px,3.4vw,36px); font-weight: 500; color: var(--forest); margin: 10px 0 12px; }
.err404 p { color: var(--ink-soft); max-width: 46ch; margin: 0 auto 28px; }

/* ---------------- WordPress core ---------------- */
.screen-reader-text { border: 0; clip: rect(1px,1px,1px,1px); clip-path: inset(50%); height: 1px; margin: -1px;
  overflow: hidden; padding: 0; position: absolute !important; width: 1px; word-wrap: normal !important; }
.alignleft { float: left; margin: 0.5em 1.5em 1em 0; }
.alignright { float: right; margin: 0.5em 0 1em 1.5em; }
.aligncenter { display: block; margin: 1.5em auto; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 13px; color: var(--muted); text-align: center; padding: 8px 0; }
.sticky, .bypostauthor, .gallery-caption { display: inherit; }
