/* ============================================================
   Chitra's City Side Resort — Editorial Ivory design system
   Self-contained stylesheet for the redesigned pages.
   Palette: ivory paper · deep navy · brass accent
   Type: Cormorant Garamond (display) · Manrope (UI/body)
   ============================================================ */

:root {
  color-scheme: light;
  --paper: #f4efe6;
  --paper-2: #fbf8f2;
  --paper-3: #ece4d5;
  --forest: #17334f;
  --forest-2: #1f4a6e;
  --ink: #26241f;
  --ink-2: #5c564b;
  --brass: #a9824c;
  --brass-d: #7a5c33;
  --line: #ddd3c2;
  --line-2: #c9bca6;
  --cream: #f4efe6;

  --wrap: 1240px;
  --r: 2px;
  --t: 200ms cubic-bezier(0.33, 0.8, 0.4, 1);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-ui: "Manrope", system-ui, -apple-system, sans-serif;
}

/* ── Reset / base ──────────────────────────────────────── */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-ui);
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.ui-locked { overflow: hidden; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; touch-action: manipulation; }
button { font-family: inherit; cursor: pointer; touch-action: manipulation; }
ul { list-style: none; }

:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 3px;
  border-radius: 1px;
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip-link {
  position: fixed; top: 12px; left: 12px; z-index: 200;
  background: var(--forest); color: var(--cream);
  padding: 10px 18px; border-radius: var(--r);
  transform: translateY(-150%); transition: transform var(--t);
  font-size: 0.85rem; font-weight: 600;
}
.skip-link:focus { transform: translateY(0); }

/* ── Layout helpers ────────────────────────────────────── */
.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 clamp(20px, 5vw, 64px); }

.section { padding: clamp(74px, 10vw, 132px) 0; }
.section--paper2 { background: var(--paper-2); }
.section--paper3 { background: var(--paper-3); }
.section--forest { background: var(--forest); color: var(--cream); }

/* ── Typography ────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; color: var(--forest); line-height: 1.08; letter-spacing: -0.01em; text-wrap: balance; }

.display { font-size: clamp(2.7rem, 6vw, 4.7rem); font-weight: 600; }
.h-xl { font-size: clamp(2.1rem, 4.2vw, 3.4rem); }
.h-lg { font-size: clamp(1.7rem, 3vw, 2.4rem); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-ui); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--brass-d);
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--brass); }
.eyebrow--center::after { content: ""; width: 26px; height: 1px; background: var(--brass); }

.section--forest .eyebrow { color: #d6bd8e; }
.section--forest .eyebrow::before,
.section--forest .eyebrow--center::after { background: var(--brass); }
.section--forest h1, .section--forest h2, .section--forest h3 { color: var(--cream); }

.lead { font-size: 1.18rem; line-height: 1.7; color: var(--ink-2); }
.muted { color: var(--ink-2); }

.s-head { max-width: 640px; }
.s-head.center { margin: 0 auto; text-align: center; }
.s-head .eyebrow { margin-bottom: 20px; }
.s-head p { margin-top: 18px; color: var(--ink-2); }
.section--forest .s-head p { color: #cdd9e4; }

.s-num { font-family: var(--font-display); font-size: 1.05rem; color: var(--brass); letter-spacing: 0.05em; }

/* ── Buttons / links ───────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-ui); font-weight: 600; font-size: 0.78rem;
  letter-spacing: 0.13em; text-transform: uppercase;
  padding: 16px 30px; min-height: 50px; border: 1px solid transparent;
  border-radius: var(--r); transition: background var(--t), color var(--t), border-color var(--t);
}
.btn--solid { background: var(--forest); color: var(--cream); }
.btn--solid:hover { background: var(--forest-2); }
.btn--ghost { background: transparent; border-color: var(--forest); color: var(--forest); }
.btn--ghost:hover { background: var(--forest); color: var(--cream); }
.btn--light { background: var(--cream); color: var(--forest); }
.btn--light:hover { background: #fff; }
.btn--outline-light { background: transparent; border-color: rgba(244,239,230,0.5); color: var(--cream); }
.btn--outline-light:hover { background: var(--cream); color: var(--forest); border-color: var(--cream); }

.tlink {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-ui); font-weight: 600; font-size: 0.78rem;
  letter-spacing: 0.13em; text-transform: uppercase; color: var(--forest);
  padding-bottom: 4px; border-bottom: 1px solid var(--line-2); transition: gap var(--t), border-color var(--t), color var(--t);
}
.tlink:hover { gap: 14px; border-color: var(--brass); color: var(--brass-d); }
.section--forest .tlink { color: var(--cream); border-color: rgba(244,239,230,0.4); }
.section--forest .tlink:hover { color: #fff; border-color: var(--brass); }

.btn-row { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }

/* ── Reveal animation ──────────────────────────────────── */
.fade-in { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 0.7, 0.3, 1); }
.fade-in.in { opacity: 1; transform: none; }

/* ── Navigation ────────────────────────────────────────── */
#nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 100;
  background: rgba(244, 239, 230, 0.82); backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent; transition: background var(--t), border-color var(--t), box-shadow var(--t);
}
#nav.solid { background: rgba(244, 239, 230, 0.97); border-bottom-color: var(--line); box-shadow: 0 8px 30px -22px rgba(31, 61, 52, 0.4); }

.nav-wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 clamp(20px, 5vw, 64px); height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.logo { display: flex; flex-direction: column; line-height: 1; white-space: nowrap; }
.logo-a { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; color: var(--forest); letter-spacing: 0.01em; }
.logo-b { font-family: var(--font-ui); font-size: 0.6rem; font-weight: 600; letter-spacing: 0.28em; text-transform: uppercase; color: var(--brass-d); margin-top: 3px; }

.nav-links { display: flex; align-items: center; gap: clamp(12px, 1.6vw, 26px); }
.nav-links a {
  position: relative; font-size: 0.82rem; font-weight: 500; color: var(--ink);
  padding: 6px 2px; transition: color var(--t);
}
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 1px; background: var(--brass); transition: width var(--t); }
.nav-links a:hover { color: var(--forest); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--forest); }

.nav-right { display: flex; align-items: center; gap: 18px; }
.nav-phone { font-size: 0.85rem; font-weight: 600; color: var(--forest); display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; }
.nav-phone i { color: var(--brass); }
.btn-book {
  font-family: var(--font-ui); font-weight: 600; font-size: 0.74rem; letter-spacing: 0.12em; text-transform: uppercase;
  background: var(--forest); color: var(--cream); padding: 12px 22px; border-radius: var(--r); transition: background var(--t); white-space: nowrap;
}
.btn-book:hover { background: var(--forest-2); }

.burger { display: none; width: 44px; height: 44px; flex-direction: column; justify-content: center; align-items: center; gap: 5px; background: transparent; border: 0; }
.burger span { width: 24px; height: 2px; background: var(--forest); transition: transform var(--t), opacity var(--t); }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ──────────────────────────────────────────────── */
.hero { padding: clamp(118px, 17vh, 184px) 0 clamp(64px, 9vw, 104px); }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(36px, 5vw, 80px); align-items: center; }
.hero-text .eyebrow { margin-bottom: 26px; }
.hero-text .display { margin-bottom: 26px; }
.hero-text .lead { max-width: 30ch; margin-bottom: 38px; }
.hero-text .btn-row { margin-bottom: 48px; }

.hero-meta { display: flex; gap: clamp(20px, 3vw, 44px); }
.hero-meta .hm { display: flex; flex-direction: column; gap: 4px; }
.hero-meta .hm + .hm { padding-left: clamp(20px, 3vw, 44px); border-left: 1px solid var(--line); }
.hero-meta strong { font-family: var(--font-display); font-size: 1.9rem; font-weight: 600; color: var(--forest); line-height: 1; }
.hero-meta span { font-size: 0.74rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-2); }

.hero-media { position: relative; }
.hero-media img { width: 100%; height: auto; aspect-ratio: 4 / 5; object-fit: cover; border-radius: var(--r); }
.hero-media::before { content: ""; position: absolute; inset: 18px -18px -18px 18px; border: 1px solid var(--brass); border-radius: var(--r); z-index: -1; }

/* ── Statement + image trio ────────────────────────────── */
.statement { max-width: 880px; }
.statement .h-xl { margin: 22px 0 0; }
.statement p { margin-top: 22px; max-width: 64ch; color: var(--ink-2); }

.trio { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2.4vw, 30px); margin-top: clamp(40px, 5vw, 64px); }
.trio figure { position: relative; overflow: hidden; border-radius: var(--r); }
.trio img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; transition: transform 0.8s ease; }
.trio figure:hover img { transform: scale(1.05); }
.trio figcaption { position: absolute; left: 16px; bottom: 14px; color: var(--cream); font-family: var(--font-display); font-size: 1.3rem; text-shadow: 0 1px 14px rgba(0,0,0,0.5); }
.trio figure::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(20,32,28,0.55), transparent 52%); }
.trio--tall figure:nth-child(2) { margin-top: clamp(20px, 4vw, 48px); }

/* ── Stay / editorial cards ────────────────────────────── */
.s-bar { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-bottom: clamp(36px, 5vw, 58px); }

.eo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(22px, 2.6vw, 40px); }
.eo-card { display: flex; flex-direction: column; }
.eo-card .eo-img { overflow: hidden; border-radius: var(--r); }
.eo-card .eo-img img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; transition: transform 0.8s ease; }
.eo-card:hover .eo-img img { transform: scale(1.04); }
.eo-meta { display: flex; align-items: center; gap: 10px; margin: 20px 0 8px; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--brass-d); }
.eo-meta::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.eo-card h3 { font-size: 1.7rem; margin-bottom: 10px; }
.eo-card p { font-size: 0.96rem; color: var(--ink-2); margin-bottom: 16px; line-height: 1.65; }
.eo-card .tlink { margin-top: auto; align-self: flex-start; }

/* ── Experiences (numbered list + media) ───────────────── */
.exp-grid { display: grid; grid-template-columns: 1fr 0.9fr; gap: clamp(36px, 5vw, 80px); align-items: center; }
.exp-list { border-top: 1px solid var(--line); }
.exp-item { display: flex; gap: 22px; padding: 24px 0; border-bottom: 1px solid var(--line); align-items: baseline; }
.exp-item .x-num { font-family: var(--font-display); font-size: 1.1rem; color: var(--brass); min-width: 34px; }
.exp-item h3 { font-size: 1.5rem; margin-bottom: 4px; }
.exp-item p { font-size: 0.94rem; color: var(--ink-2); }
.exp-media img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: var(--r); }

/* ── Events band (forest) ──────────────────────────────── */
.ev-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
.ev-copy .display { color: var(--cream); margin: 22px 0; font-size: clamp(2.3rem, 4vw, 3.4rem); }
.ev-copy p { color: #cdd9e4; max-width: 46ch; margin-bottom: 34px; }
.ev-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.ev-stat { border-top: 1px solid rgba(244,239,230,0.22); padding-top: 16px; }
.ev-stat strong { display: block; font-family: var(--font-display); font-size: 2.1rem; color: var(--cream); line-height: 1; }
.ev-stat span { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: #a9bccb; }
.ev-media img { width: 100%; aspect-ratio: 5 / 6; object-fit: cover; border-radius: var(--r); }

/* ── Dining split ──────────────────────────────────────── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 80px); align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--r); }
.split-copy .h-lg { margin: 20px 0 18px; }
.split-copy p { color: var(--ink-2); margin-bottom: 16px; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin: 22px 0 30px; }
.chip { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.04em; color: var(--forest); background: var(--paper-2); border: 1px solid var(--line); padding: 9px 16px; border-radius: 999px; }
.section--paper2 .chip { background: var(--paper); }

/* ── Testimonial ───────────────────────────────────────── */
.quote { max-width: 880px; margin: 0 auto; text-align: center; }
.quote .mark { font-family: var(--font-display); font-size: 5rem; color: var(--brass); line-height: 0.6; }
.quote blockquote { font-family: var(--font-display); font-size: clamp(1.6rem, 3.2vw, 2.5rem); line-height: 1.3; color: var(--forest); margin: 26px 0 30px; font-weight: 500; }
.quote .stars { color: var(--brass); letter-spacing: 4px; margin-bottom: 22px; }
.quote .who { font-weight: 600; color: var(--ink); }
.quote .where { font-size: 0.85rem; color: var(--ink-2); }

/* ── Journal ───────────────────────────────────────────── */
.jr-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(22px, 2.6vw, 40px); }
.jr-card .jr-img { overflow: hidden; border-radius: var(--r); }
.jr-card .jr-img img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; transition: transform 0.8s ease; }
.jr-card:hover .jr-img img { transform: scale(1.04); }
.jr-tag { display: inline-block; margin: 18px 0 10px; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--brass-d); }
.jr-card h3 { font-size: 1.45rem; line-height: 1.2; margin-bottom: 10px; }
.jr-card p { font-size: 0.94rem; color: var(--ink-2); margin-bottom: 14px; }

/* ── Final CTA ─────────────────────────────────────────── */
.fcta { text-align: center; }
.fcta .display { color: var(--cream); margin: 22px auto 34px; max-width: 16ch; }

/* ── Footer ────────────────────────────────────────────── */
.footer { background: #102436; color: #cdd9e4; padding: clamp(64px, 8vw, 96px) 0 40px; }
.footer-main { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: clamp(28px, 4vw, 56px); }
.footer .logo-a { color: var(--cream); }
.footer .logo-b { color: var(--brass); }
.ft-brand p { margin-top: 18px; font-size: 0.92rem; color: #a3b7c7; max-width: 32ch; }
.ft-social { display: flex; gap: 12px; margin-top: 22px; }
.ft-social a { width: 40px; height: 40px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid rgba(244,239,230,0.2); border-radius: 50%; color: var(--cream); transition: background var(--t), color var(--t), border-color var(--t); }
.ft-social a:hover { background: var(--brass); border-color: var(--brass); color: var(--forest); }
.ft-col h5 { font-family: var(--font-ui); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--cream); margin-bottom: 18px; }
.ft-col a, .ft-col p { display: block; font-size: 0.92rem; color: #a3b7c7; margin-bottom: 11px; transition: color var(--t); }
.ft-col a:hover { color: var(--cream); }
.ft-col p i { color: var(--brass); width: 18px; }
.footer-bar { max-width: var(--wrap); margin: 48px auto 0; padding: 24px clamp(20px, 5vw, 64px) 0; border-top: 1px solid rgba(244,239,230,0.14); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px; font-size: 0.82rem; color: #90a3b3; }
.footer-bar a { color: #90a3b3; margin-left: 20px; transition: color var(--t); }
.footer-bar a:hover { color: var(--cream); }

/* ── Floating WhatsApp + mobile bar ────────────────────── */
.wa-btn { position: fixed; right: 20px; bottom: 24px; z-index: 90; width: 56px; height: 56px; border-radius: 50%; background: #25d366; color: #fff; display: inline-flex; align-items: center; justify-content: center; font-size: 1.6rem; box-shadow: 0 12px 30px -10px rgba(37,211,102,0.6); transition: transform var(--t); }
.wa-btn:hover { transform: translateY(-3px); }

.mob-bar { display: none; }

/* ── Responsive ────────────────────────────────────────── */
/* Nav collapses to a drawer early enough that the inline links never crowd */
@media (max-width: 1200px) {
  .nav-links {
    position: fixed; top: 0; right: 0; height: 100dvh; width: min(82vw, 340px);
    flex-direction: column; align-items: flex-start; justify-content: center; gap: 8px;
    background: var(--paper-2); padding: 40px 36px; transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1); box-shadow: -20px 0 50px -30px rgba(0,0,0,0.4);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 1.15rem; padding: 10px 0; }
  .nav-links a::after { display: none; }
  .burger { display: flex; }
  .nav-phone { display: none; }
}

@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { order: -1; }
  .hero-media img { aspect-ratio: 16 / 11; }
  .hero-media::before { inset: 12px -12px -12px 12px; }
  .exp-grid, .ev-grid, .split, .split.reverse .split-media { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: 0; }
  .footer-main { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  .eo-grid, .jr-grid, .trio { grid-template-columns: 1fr; }
  .trio--tall figure:nth-child(2) { margin-top: 0; }
  .ev-stats { grid-template-columns: 1fr 1fr; }
  .s-bar { flex-direction: column; align-items: flex-start; }
  .footer-main { grid-template-columns: 1fr; }
  .footer { padding-bottom: 96px; }
  .mob-bar { display: flex; position: fixed; bottom: 0; left: 0; width: 100%; z-index: 95; background: var(--paper-2); border-top: 1px solid var(--line); }
  .mob-bar a { flex: 1; text-align: center; padding: 15px; font-size: 0.82rem; font-weight: 600; color: var(--forest); }
  .mob-bar a.mb-book { background: var(--forest); color: var(--cream); }
  .wa-btn { bottom: 70px; }
}

/* ============================================================
   INTERIOR PAGE COMPONENTS
   ============================================================ */

/* ── Page hero ─────────────────────────────────────────── */
.page-hero { padding: clamp(128px, 18vh, 188px) 0 clamp(40px, 6vw, 70px); }
.page-hero .eyebrow { margin-bottom: 22px; }
.page-hero h1 { max-width: 18ch; }
.page-hero .lead { max-width: 62ch; margin-top: 22px; }
.page-hero--center { text-align: center; }
.page-hero--center .eyebrow { justify-content: center; }
.page-hero--center h1, .page-hero--center .lead { margin-left: auto; margin-right: auto; }
.page-chips { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.page-hero--center .page-chips { justify-content: center; }
.pchip { display: inline-flex; align-items: center; gap: 9px; font-size: 0.8rem; font-weight: 600; color: var(--forest); background: var(--paper-2); border: 1px solid var(--line); padding: 9px 16px; border-radius: 999px; }
.pchip i { color: var(--brass); }

.page-banner { overflow: hidden; }
.page-banner img { width: 100%; aspect-ratio: 21 / 9; object-fit: cover; border-radius: var(--r); }

/* ── Feature / icon cards ──────────────────────────────── */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: clamp(20px, 2.4vw, 32px); }
.feature-card { background: var(--paper-2); border: 1px solid var(--line); border-radius: 12px; padding: clamp(24px, 3vw, 36px); }
.section--paper2 .feature-card { background: var(--paper); }
.feature-ico { width: 54px; height: 54px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; background: rgba(23, 51, 79, 0.07); color: var(--forest); font-size: 1.15rem; margin-bottom: 18px; }
.feature-card h3, .feature-card h4 { font-size: 1.4rem; margin-bottom: 10px; }
.feature-card p { color: var(--ink-2); font-size: 0.96rem; line-height: 1.65; }

/* ── Stat row ──────────────────────────────────────────── */
.stat-row { display: flex; flex-wrap: wrap; gap: clamp(26px, 4vw, 58px); }
.stat-row .st strong { display: block; font-family: var(--font-display); font-size: 2.4rem; color: var(--forest); line-height: 1; }
.stat-row .st span { font-size: 0.74rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-2); }
.section--forest .stat-row .st strong { color: var(--cream); }
.section--forest .stat-row .st span { color: #a9bccb; }

/* ── Amenity inline row ────────────────────────────────── */
.am-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(155px, 1fr)); gap: 18px; }
.am { display: flex; align-items: center; gap: 12px; font-size: 0.92rem; font-weight: 600; color: var(--forest); }
.am i { color: var(--brass); font-size: 1.05rem; width: 22px; text-align: center; }

/* ── About image composition ───────────────────────────── */
.about-media { position: relative; }
.about-media img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: var(--r); }
.about-media::before { content: ""; position: absolute; inset: 18px -18px -18px 18px; border: 1px solid var(--brass); border-radius: var(--r); z-index: -1; }
.about-points { margin: 26px 0; }
.about-point { display: flex; gap: 14px; padding: 14px 0; border-top: 1px solid var(--line); }
.about-point i { color: var(--brass); font-size: 1.05rem; margin-top: 3px; }
.about-point span { color: var(--ink-2); font-size: 0.96rem; }

/* ── Rooms: quick selector ─────────────────────────────── */
.room-nav { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 14px; }
.room-nav a { display: flex; flex-direction: column; gap: 5px; padding: 18px; background: var(--paper-2); border: 1px solid var(--line); border-radius: 12px; transition: border-color var(--t), transform var(--t); }
.room-nav a:hover { border-color: var(--forest); transform: translateY(-2px); }
.room-nav strong { font-family: var(--font-display); font-size: 1.2rem; color: var(--forest); }
.room-nav span { font-size: 0.78rem; color: var(--ink-2); }

/* ── Rooms: detail blocks ──────────────────────────────── */
.room { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 4vw, 64px); align-items: center; scroll-margin-top: 100px; }
.room + .room { margin-top: clamp(56px, 7vw, 104px); }
.room.reverse .room-media { order: 2; }
.room-media { position: relative; }
.room-media > img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--r); }
.room-badges { position: absolute; top: 16px; left: 16px; display: flex; gap: 8px; }
.room-badge { background: rgba(244, 239, 230, 0.94); color: var(--forest); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 7px 13px; border-radius: 999px; }
.room-badge.gold { background: var(--brass); color: #fff; }
.room-copy .eyebrow { margin-bottom: 14px; }
.room-copy h2 { font-size: clamp(1.9rem, 3vw, 2.6rem); margin-bottom: 16px; }
.room-copy > p { color: var(--ink-2); margin-bottom: 20px; }
.room-specs { display: flex; flex-wrap: wrap; gap: 10px 24px; padding: 18px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); margin-bottom: 18px; }
.room-specs span { display: inline-flex; align-items: center; gap: 8px; font-size: 0.86rem; font-weight: 600; color: var(--forest); }
.room-specs i { color: var(--brass); }
.room-am { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
.room-am span { font-size: 0.78rem; font-weight: 600; color: var(--ink-2); background: var(--paper-2); border: 1px solid var(--line); padding: 7px 13px; border-radius: 999px; }
.section--paper2 .room-am span { background: var(--paper); }
.room-meals { font-size: 0.82rem; font-style: italic; color: var(--ink-2); margin-bottom: 20px; }
.room-price { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.room-price .rp span { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-2); }
.room-price .rp strong { display: block; font-family: var(--font-display); font-size: 2rem; color: var(--forest); line-height: 1.1; }
.room-price .rp em { font-style: normal; font-size: 0.85rem; color: var(--ink-2); }

/* ── Gallery ───────────────────────────────────────────── */
.gal-filter { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: clamp(30px, 4vw, 48px); }
.gf { font-family: var(--font-ui); font-size: 0.74rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-2); background: transparent; border: 1px solid var(--line-2); padding: 10px 20px; border-radius: 999px; transition: color var(--t), background var(--t), border-color var(--t); }
.gf:hover { border-color: var(--forest); color: var(--forest); }
.gf.active { background: var(--forest); color: var(--cream); border-color: var(--forest); }

.gallery { columns: 3; column-gap: clamp(14px, 1.8vw, 22px); }
.gallery .masonry-item { break-inside: avoid; margin-bottom: clamp(14px, 1.8vw, 22px); position: relative; overflow: hidden; border-radius: var(--r); cursor: pointer; }
.gallery .masonry-item img { width: 100%; display: block; transition: transform 0.7s ease; }
.gallery .masonry-item:hover img { transform: scale(1.05); }
.gallery .masonry-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(16, 36, 54, 0.5), transparent 55%); opacity: 0; transition: opacity var(--t); }
.gallery .gi-label { position: absolute; left: 14px; bottom: 12px; z-index: 2; color: var(--cream); font-family: var(--font-display); font-size: 1.15rem; opacity: 0; transform: translateY(8px); transition: opacity var(--t), transform var(--t); }
.gallery .masonry-item:hover::after { opacity: 1; }
.gallery .masonry-item:hover .gi-label { opacity: 1; transform: none; }

/* ── Lightbox ──────────────────────────────────────────── */
.lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(16, 26, 36, 0.93); display: none; align-items: center; justify-content: center; padding: 40px; }
.lightbox.open { display: flex; }
.lightbox .lb-real-img { max-width: 90vw; max-height: 82vh; object-fit: contain; border-radius: var(--r); }
.lightbox #lbTxt { position: absolute; bottom: 26px; left: 0; right: 0; text-align: center; color: var(--cream); font-family: var(--font-display); font-size: 1.3rem; }
.lightbox button { position: absolute; background: transparent; border: 0; color: var(--cream); font-size: 1.5rem; cursor: pointer; width: 52px; height: 52px; border-radius: 50%; transition: background var(--t); }
.lightbox button:hover { background: rgba(255, 255, 255, 0.12); }
#lbX { top: 20px; right: 24px; }
.lb-nav-btn { top: 50%; transform: translateY(-50%); }
.lb-prev { left: 16px; }
.lb-next { right: 16px; }

/* ── Reviews ───────────────────────────────────────────── */
.google-row { display: inline-flex; align-items: center; gap: 12px; margin-top: 18px; font-weight: 600; color: var(--forest); }
.google-row i { color: var(--brass); font-size: 1.3rem; }
.google-row strong { font-family: var(--font-display); font-size: 1.6rem; }
.rev-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: clamp(20px, 2.4vw, 32px); }
.rev-card { background: var(--paper-2); border: 1px solid var(--line); border-radius: 12px; padding: clamp(26px, 3vw, 36px); display: flex; flex-direction: column; }
.section--paper2 .rev-card { background: var(--paper); }
.rev-stars { color: var(--brass); letter-spacing: 3px; margin-bottom: 16px; }
.rev-card blockquote { font-family: var(--font-display); font-size: 1.3rem; line-height: 1.42; color: var(--forest); margin-bottom: 24px; }
.rev-auth { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.rev-av { width: 46px; height: 46px; border-radius: 50%; background: var(--forest); color: var(--cream); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.9rem; }
.rev-auth strong { display: block; color: var(--ink); font-family: var(--font-ui); font-size: 0.95rem; }
.rev-auth span { font-size: 0.82rem; color: var(--ink-2); }

/* ── Contact ───────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(30px, 4vw, 64px); align-items: start; }
.map-box { position: relative; height: 190px; border-radius: 12px; overflow: hidden; background: var(--paper-3); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; border: 1px solid var(--line); margin-bottom: 4px; }
.map-box i { font-size: 1.7rem; color: var(--brass); }
.map-box .map-address { font-size: 0.92rem; color: var(--forest); font-weight: 600; }
.info-list .ci { display: flex; gap: 14px; align-items: flex-start; padding: 16px 0; border-bottom: 1px solid var(--line); }
.info-list .ci i { color: var(--brass); font-size: 1.1rem; margin-top: 3px; width: 22px; text-align: center; }
.info-list .ci span { color: var(--ink); font-size: 0.96rem; }
.form-card { background: var(--paper-2); border: 1px solid var(--line); border-radius: 12px; padding: clamp(26px, 3vw, 40px); }
.section--paper2 .form-card { background: var(--paper); }
.form-card h3 { font-size: 1.7rem; margin-bottom: 6px; }
.form-card > p { color: var(--ink-2); font-size: 0.95rem; margin-bottom: 24px; }
.fg { margin-bottom: 18px; }
.fg label { display: block; font-size: 0.74rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-2); margin-bottom: 8px; }
.fg input, .fg select, .fg textarea { width: 100%; font-family: var(--font-ui); font-size: 0.98rem; color: var(--ink); background: var(--paper); border: 1px solid var(--line-2); border-radius: var(--r); padding: 13px 15px; transition: border-color var(--t); }
.section--paper2 .fg input, .section--paper2 .fg select, .section--paper2 .fg textarea { background: var(--paper-2); }
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--forest); outline: none; }
.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.btn-full { width: 100%; }

/* ── Toast ─────────────────────────────────────────────── */
.toast { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(150%); background: var(--forest); color: var(--cream); padding: 14px 24px; border-radius: var(--r); font-size: 0.9rem; z-index: 210; transition: transform 0.4s; display: flex; align-items: center; gap: 10px; }
.toast.on { transform: translateX(-50%) translateY(0); }
.toast i { color: #8fd6a8; }

/* ── Interior responsive ───────────────────────────────── */
@media (max-width: 1024px) {
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .room, .room.reverse .room-media { grid-template-columns: 1fr; }
  .room .room-media, .room.reverse .room-media { order: -1; }
  .gallery { columns: 2; }
}
@media (max-width: 680px) {
  .row2 { grid-template-columns: 1fr; }
  .stat-row { gap: 22px 34px; }
}
@media (max-width: 520px) {
  .gallery { columns: 1; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .fade-in { opacity: 1; transform: none; }
}

/* Honeypot: hidden from people, visible to bots */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Error state for the enquiry toast */
.toast--error {
  background: #8c2f2f;
}
.toast--error i {
  color: #ffd9d9;
}
