/* ============================================================
   CORAL GARDEN HOTEL — style.css
   Shared across all pages.
   Design: grounded, practical, honest. Pacific island with taste.
============================================================ */

:root {
  --cream:       #F4F0EA;
  --white:       #FAF9F7;
  --charcoal:    #1E1E1C;
  --charcoal-lt: #3C3C39;
  --ocean:       #3A6870;
  --ocean-lt:    #568590;
  --ocean-pale:  #EBF2F4;
  --sand:        #C2A67E;
  --stone:       #8A8884;
  --stone-lt:    #B8B6B2;
  --border:      #E0DBD4;

  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Inter', system-ui, -apple-system, sans-serif;

  --max:   1180px;
  --nav-h: 68px;
  --ease:  cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--white);
  color: var(--charcoal);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ============================================================
   NAVIGATION
============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 200; height: var(--nav-h);
  display: flex; align-items: center;
  padding: 0 36px;
  border-bottom: 1px solid transparent;
  transition: background 0.35s var(--ease), border-color 0.35s;
}
.nav.scrolled {
  background: rgba(250,249,247,0.97);
  border-bottom-color: var(--border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.nav-inner {
  width: 100%; max-width: var(--max); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  font-family: var(--serif); font-weight: 500;
  font-size: 1rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--white); transition: color 0.35s;
}
.nav.scrolled .nav-logo { color: var(--charcoal); }

.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a {
  font-size: 0.78rem; font-weight: 400;
  letter-spacing: 0.11em; text-transform: uppercase;
  color: rgba(250,249,247,0.8); transition: color 0.2s;
}
.nav.scrolled .nav-links a { color: var(--stone); }
.nav-links a:hover,
.nav.scrolled .nav-links a:hover { color: var(--charcoal); }
.nav-links a.active { color: rgba(250,249,247,0.98); }
.nav.scrolled .nav-links a.active { color: var(--charcoal); font-weight: 500; }

.nav-book {
  font-size: 0.74rem; font-weight: 500;
  letter-spacing: 0.13em; text-transform: uppercase;
  padding: 9px 20px;
  border: 1px solid rgba(250,249,247,0.4);
  color: var(--white); transition: all 0.2s; cursor: pointer;
  display: inline-block;
}
.nav.scrolled .nav-book { border-color: var(--ocean); color: var(--ocean); }
.nav-book:hover { background: var(--white); color: var(--charcoal); border-color: var(--white); }
.nav.scrolled .nav-book:hover { background: var(--ocean); color: var(--white); }

.nav-burger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px;
}
.nav-burger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--white); transition: background 0.3s;
}
.nav.scrolled .nav-burger span { background: var(--charcoal); }

/* Mobile overlay */
.mob-menu {
  display: none; position: fixed; inset: 0;
  background: var(--white); z-index: 199;
  flex-direction: column; align-items: center; justify-content: center; gap: 40px;
}
.mob-menu.open { display: flex; }
.mob-menu a {
  font-family: var(--serif); font-size: 2.2rem; font-weight: 300;
  color: var(--charcoal); transition: color 0.2s;
}
.mob-menu a:hover { color: var(--ocean); }
.mob-close {
  position: absolute; top: 20px; right: 28px;
  font-size: 1.5rem; color: var(--stone-lt); cursor: pointer;
}
.mob-book {
  font-family: var(--sans) !important;
  font-size: 0.75rem !important; font-weight: 500 !important;
  letter-spacing: 0.15em !important; text-transform: uppercase;
  padding: 13px 32px;
  border: 1px solid var(--ocean) !important;
  color: var(--ocean) !important;
}

/* ============================================================
   SHARED ATOMS
============================================================ */
.label {
  font-size: 0.67rem; font-weight: 400;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ocean);
}
.heading {
  font-family: var(--serif); font-weight: 300;
  line-height: 1.15; color: var(--charcoal);
}
.heading em { font-style: italic; }
.body-text {
  font-size: 0.92rem; font-weight: 300;
  line-height: 1.78; color: var(--charcoal-lt);
}

.arrow-link {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.13em; text-transform: uppercase;
  color: var(--ocean); transition: gap 0.2s;
}
.arrow-link::after { content: '→'; font-size: 0.85rem; }
.arrow-link:hover { gap: 14px; }
.arrow-link.light { color: rgba(250,249,247,0.82); }
.arrow-link.light:hover { color: var(--white); }

.btn {
  display: inline-block; font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.13em; text-transform: uppercase;
  padding: 12px 26px; transition: all 0.2s; cursor: pointer;
}
.btn-light { background: var(--white); color: var(--charcoal); border: 1px solid var(--white); }
.btn-light:hover { background: transparent; color: var(--white); }
.btn-dark { background: var(--charcoal); color: var(--white); border: 1px solid var(--charcoal); }
.btn-dark:hover { background: transparent; color: var(--charcoal); }

.contact-btn {
  display: inline-flex; align-items: center; gap: 11px;
  padding: 14px 26px; border: 1px solid var(--border);
  font-size: 0.84rem; font-weight: 400; color: var(--charcoal);
  transition: all 0.2s;
}
.contact-btn:hover { border-color: var(--ocean); color: var(--ocean); }
.contact-btn svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 1.5; flex-shrink: 0; }

.wrap { max-width: var(--max); margin: 0 auto; }

/* Fade-in */
.fi { opacity: 0; transform: translateY(20px); transition: opacity 0.65s var(--ease), transform 0.65s var(--ease); }
.fi.vis { opacity: 1; transform: none; }
.fi.d1 { transition-delay: 0.08s; }
.fi.d2 { transition-delay: 0.16s; }
.fi.d3 { transition-delay: 0.24s; }
.fi.d4 { transition-delay: 0.32s; }
.fi.d5 { transition-delay: 0.40s; }

/* Photo slots */
.photo-slot { background: var(--cream); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.photo-slot img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.photo-slot:hover img { transform: scale(1.03); }

/* Interior page hero */
.page-hero { position: relative; height: 45vh; min-height: 320px; display: flex; align-items: flex-end; overflow: hidden; }
.page-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; filter: brightness(0.78); }
.page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(14,17,17,0.1), rgba(14,17,17,0.65)); }
.page-hero-content { position: relative; z-index: 2; padding: 0 36px 48px; max-width: calc(var(--max) + 72px); margin: 0 auto; width: 100%; }
.page-hero-content .label { color: rgba(250,249,247,0.6); margin-bottom: 10px; }
.page-hero-content .heading { color: var(--white); font-size: clamp(2rem,4.5vw,3.4rem); }

/* Dark CTA section */
.cta-dark { padding: 88px 36px; background: var(--charcoal); text-align: center; }
.cta-dark .label { color: var(--sand); margin-bottom: 14px; }
.cta-dark .heading { color: var(--white); font-size: clamp(1.7rem,3vw,2.5rem); margin-bottom: 28px; }
.cta-dark .contact-btn { border-color: rgba(250,249,247,0.2); color: rgba(250,249,247,0.8); }
.cta-dark .contact-btn:hover { border-color: var(--white); color: var(--white); }

/* ============================================================
   FOOTER
============================================================ */
.footer { background: var(--charcoal); padding: 64px 36px 36px; }
.footer-grid { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 52px; }
.footer-logo { font-family: var(--serif); font-weight: 500; font-size: 1rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--white); display: block; margin-bottom: 14px; }
.footer-tag { font-size: 0.81rem; font-weight: 300; color: rgba(250,249,247,0.4); line-height: 1.7; max-width: 230px; }
.footer-chamber { display: inline-block; margin-top: 20px; opacity: 0.55; transition: opacity 0.2s; }
.footer-chamber:hover { opacity: 0.85; }
.footer-chamber img { height: 72px; width: auto; display: block; }
.footer-col-hd { font-size: 0.63rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(250,249,247,0.3); margin-bottom: 16px; }
.footer-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-list li a,
.footer-list li span { font-size: 0.82rem; font-weight: 300; color: rgba(250,249,247,0.52); transition: color 0.2s; }
.footer-list li a:hover { color: var(--white); }
.footer-bot { max-width: var(--max); margin: 40px auto 0; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.07); display: flex; justify-content: space-between; align-items: center; }
.footer-copy { font-size: 0.71rem; color: rgba(250,249,247,0.22); }
.footer-soc a { font-size: 0.71rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(250,249,247,0.28); transition: color 0.2s; }
.footer-soc a:hover { color: var(--white); }

/* ============================================================
   HOME — HERO
============================================================ */
.hero { position: relative; height: 100vh; min-height: 600px; display: flex; align-items: flex-end; overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('images/hero-hotel.jpeg');
  background-size: cover; background-position: center 55%;
  transform: scale(1); transition: transform 8s ease-out;
}
.hero-bg.loaded { transform: scale(1.03); }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(14,17,17,0.2) 0%, rgba(14,17,17,0.06) 45%, rgba(14,17,17,0.58) 100%); }
.hero-content { position: relative; z-index: 2; padding: 0 36px 80px; width: 100%; max-width: calc(var(--max) + 72px); margin: 0 auto; }
.hero-eyebrow { font-size: 0.67rem; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(250,249,247,0.6); margin-bottom: 18px; }
.hero-title { font-family: var(--serif); font-weight: 300; font-size: clamp(3.2rem,7.5vw,6.2rem); line-height: 1.08; color: var(--white); max-width: 620px; margin-bottom: 10px; }
.hero-sub { font-size: 0.82rem; font-weight: 300; color: rgba(250,249,247,0.65); margin-bottom: 32px; letter-spacing: 0.04em; }
.hero-btns { display: flex; align-items: center; gap: 28px; }

/* ── Statement ── */
.statement { padding: 80px 36px; background: var(--white); text-align: center; }
.statement-inner { max-width: 600px; margin: 0 auto; }
.statement-lbl { font-size: 0.67rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--stone-lt); margin-bottom: 22px; }
.statement-text { font-family: var(--serif); font-weight: 300; font-size: clamp(1.4rem,2.8vw,1.9rem); line-height: 1.55; color: var(--charcoal); }
.statement-text em { font-style: italic; color: var(--ocean); }

/* ── Facts strip ── */
.facts { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 36px; background: var(--cream); }
.facts-grid { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.fact { text-align: center; }
.fact-n { font-family: var(--serif); font-size: 2.2rem; font-weight: 300; line-height: 1; color: var(--charcoal); margin-bottom: 6px; }
.fact-n sup { font-size: 1.1rem; }
.fact-l { font-size: 0.68rem; letter-spacing: 0.13em; text-transform: uppercase; color: var(--stone); }

/* ── Feature splits ── */
.feature { padding: 88px 36px; }
.feature-alt { background: var(--cream); }
.feature-inner { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.feature-inner.rev { direction: rtl; }
.feature-inner.rev > * { direction: ltr; }
.feat-img { overflow: hidden; aspect-ratio: 3/4; }
.feat-img img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(35%) brightness(0.95); transition: transform 0.8s var(--ease), filter 0.8s var(--ease); }
.feat-img:hover img { transform: scale(1.03); filter: grayscale(0%) brightness(1); }
.feat-txt .label { margin-bottom: 14px; }
.feat-txt .heading { font-size: clamp(1.7rem,3vw,2.5rem); margin-bottom: 18px; }
.feat-txt .body-text { margin-bottom: 12px; }
.feat-txt .arrow-link { margin-top: 20px; display: inline-flex; }

/* Practical info list */
.practical-list { margin-top: 20px; display: flex; flex-direction: column; }
.practical-item { display: flex; align-items: baseline; gap: 12px; padding: 9px 0; border-bottom: 1px solid var(--border); font-size: 0.84rem; font-weight: 300; color: var(--charcoal-lt); }
.practical-item:first-child { border-top: 1px solid var(--border); }
.practical-label { font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--stone); min-width: 110px; flex-shrink: 0; }

/* ── Rooms preview ── */
.rooms-preview { padding: 88px 36px; background: var(--white); }
.rooms-preview-inner { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1fr 2fr; gap: 72px; align-items: start; }
.sec-head .label { margin-bottom: 14px; }
.sec-head .heading { font-size: clamp(1.7rem,3vw,2.5rem); margin-bottom: 12px; }
.sec-head .body-text { max-width: 480px; }
.rooms-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 3px; }
.room-card { cursor: pointer; }
.room-card-img { overflow: hidden; aspect-ratio: 3/4; }
.room-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); filter: brightness(0.92); }
.room-card:hover .room-card-img img { transform: scale(1.04); filter: brightness(1); }
.room-card-info { padding: 18px 0; }
.room-card-name { font-family: var(--serif); font-size: 1.2rem; font-weight: 400; color: var(--charcoal); margin-bottom: 5px; }
.room-card-desc { font-size: 0.81rem; font-weight: 300; color: var(--stone); line-height: 1.6; }
.rooms-cta { text-align: center; margin-top: 44px; }

/* ── Who This Is For ── */
.fit-section { padding: 88px 36px; background: var(--cream); }
.fit-inner { max-width: var(--max); margin: 0 auto; }
.fit-section .label { margin-bottom: 14px; }
.fit-section .heading { font-size: clamp(1.7rem,3vw,2.5rem); margin-bottom: 40px; }
.fit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; }
.fit-col { background: var(--white); padding: 36px 40px; }
.fit-col.not { background: var(--charcoal); }
.fit-col-hd { font-size: 0.67rem; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 24px; padding-bottom: 16px; border-bottom: 1px solid var(--border); color: var(--ocean); }
.fit-col.not .fit-col-hd { color: rgba(250,249,247,0.4); border-color: rgba(255,255,255,0.1); }
.fit-list { list-style: none; display: flex; flex-direction: column; }
.fit-list li { display: flex; align-items: baseline; gap: 12px; padding: 11px 0; border-bottom: 1px solid var(--border); font-size: 0.87rem; font-weight: 300; color: var(--charcoal-lt); line-height: 1.5; }
.fit-col.not .fit-list li { color: rgba(250,249,247,0.62); border-color: rgba(255,255,255,0.09); }
.fit-list li:last-child { border-bottom: none; }
.fit-check { font-size: 0.75rem; color: var(--ocean); flex-shrink: 0; margin-top: 1px; }
.fit-col.not .fit-check { color: rgba(250,249,247,0.3); }
.fit-note { margin-top: 28px; padding-top: 20px; border-top: 1px solid var(--border); font-size: 0.78rem; font-weight: 300; color: var(--stone); line-height: 1.7; }

/* ── Reasons (dark) ── */
.reasons { padding: 88px 36px; background: var(--charcoal); }
.reasons .label { color: var(--sand); margin-bottom: 14px; }
.reasons .heading { color: var(--white); font-size: clamp(1.7rem,3vw,2.5rem); margin-bottom: 52px; }
.reasons-grid { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: repeat(3,1fr); gap: 44px; }
.reason { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 22px; }
.reason-n { font-family: var(--serif); font-size: 0.85rem; color: var(--sand); opacity: 0.6; margin-bottom: 12px; }
.reason-title { font-size: 0.88rem; font-weight: 500; color: var(--white); margin-bottom: 10px; letter-spacing: 0.01em; }
.reason-body { font-size: 0.82rem; font-weight: 300; color: rgba(250,249,247,0.52); line-height: 1.75; }

/* ── Perks ── */
.perks { padding: 72px 36px; background: var(--ocean-pale); border-top: 1px solid rgba(58,104,112,0.14); }
.perks-inner { max-width: var(--max); margin: 0 auto; display: flex; align-items: center; gap: 72px; }
.perks-lhs { flex: 1; }
.perks-lhs .label { margin-bottom: 14px; }
.perks-lhs .heading { font-size: clamp(1.5rem,2.5vw,2.1rem); margin-bottom: 14px; }
.perks-rhs { flex: 1; display: flex; flex-direction: column; }
.perk { display: flex; align-items: flex-start; gap: 16px; padding: 16px 0; border-bottom: 1px solid rgba(58,104,112,0.14); }
.perk:first-child { border-top: 1px solid rgba(58,104,112,0.14); }
.perk-icon { width: 32px; height: 32px; flex-shrink: 0; background: var(--ocean); display: flex; align-items: center; justify-content: center; margin-top: 2px; }
.perk-icon svg { width: 13px; height: 13px; stroke: var(--white); fill: none; stroke-width: 1.6; }
.perk-t { font-size: 0.85rem; font-weight: 500; color: var(--charcoal); margin-bottom: 3px; }
.perk-d { font-size: 0.8rem; font-weight: 300; color: #5f5d59; line-height: 1.6; }

/* ── Rota teaser ── */
.rota-teaser { position: relative; height: 65vh; min-height: 460px; display: flex; align-items: center; overflow: hidden; }
.rota-teaser-bg {
  position: absolute; inset: 0;
  background-image: url('images/latte-stones.jpg');
  background-size: cover; background-position: center;
  filter: brightness(0.78);
}
.rota-teaser-content { position: relative; z-index: 2; padding: 0 36px; max-width: calc(var(--max) + 72px); margin: 0 auto; width: 100%; }
.rota-teaser-content .label { color: rgba(250,249,247,0.55); margin-bottom: 14px; }
.rota-teaser-content .heading { color: var(--white); font-size: clamp(1.8rem,4vw,3.2rem); max-width: 520px; margin-bottom: 16px; }
.rota-teaser-content .body-text { color: rgba(250,249,247,0.68); max-width: 440px; margin-bottom: 32px; }

/* ── Book direct ── */
.book-direct { padding: 96px 36px; background: var(--white); text-align: center; }
.book-direct-inner { max-width: 520px; margin: 0 auto; }
.book-direct-inner .label { margin-bottom: 14px; }
.book-direct-inner .heading { font-size: clamp(1.7rem,3vw,2.5rem); margin-bottom: 14px; }
.book-direct-inner .body-text { margin-bottom: 36px; }
.book-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 24px; }
.direct-note { font-size: 0.75rem; font-weight: 300; color: var(--stone-lt); line-height: 1.7; }
.direct-props { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; max-width: var(--max); margin: 0 auto 40px; border: 1px solid var(--border); }
.direct-prop { padding: 24px 28px; border-right: 1px solid var(--border); text-align: left; }
.direct-prop:last-child { border-right: none; }
.direct-prop-icon { font-size: 1rem; margin-bottom: 10px; }
.direct-prop-t { font-size: 0.82rem; font-weight: 500; color: var(--charcoal); margin-bottom: 5px; }
.direct-prop-d { font-size: 0.78rem; font-weight: 300; color: var(--stone); line-height: 1.65; }

/* ============================================================
   ROOMS PAGE
============================================================ */
.rooms-list { padding: 72px 36px; background: var(--white); }
.rooms-list-inner { max-width: var(--max); margin: 0 auto; display: flex; flex-direction: column; }
.room-row { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; padding: 72px 0; border-bottom: 1px solid var(--border); }
.room-row:first-child { padding-top: 0; }
.room-row:last-child { border-bottom: none; padding-bottom: 0; }
.room-row.alt { direction: rtl; }
.room-row.alt > * { direction: ltr; }
.room-img { overflow: hidden; aspect-ratio: 4/3; background: var(--cream); }
.room-img img { width: 100%; height: 100%; object-fit: cover; }
.room-badge { display: inline-block; margin-bottom: 16px; font-size: 0.64rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ocean); border: 1px solid var(--ocean); padding: 4px 10px; }
.room-name { font-family: var(--serif); font-size: clamp(1.7rem,2.8vw,2.3rem); font-weight: 300; line-height: 1.2; color: var(--charcoal); margin-bottom: 16px; }
.room-name em { font-style: italic; }
.amenities { display: flex; flex-wrap: wrap; gap: 7px; margin: 20px 0 24px; }
.tag { font-size: 0.68rem; letter-spacing: 0.06em; color: var(--stone); background: var(--cream); padding: 5px 11px; border: 1px solid var(--border); }

/* ============================================================
   EXPLORE ROTA PAGE
============================================================ */
.rota-ph { position: relative; height: 55vh; min-height: 400px; display: flex; align-items: flex-end; overflow: hidden; }
.rota-ph-bg {
  position: absolute; inset: 0;
  background-image: url('https://static.wixstatic.com/media/27be38_e75c0e0b67614b65902ec22efd4449ab~mv2.jpeg');
  background-size: cover; background-position: center;
}
.rota-ph-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(14,17,17,0.08), rgba(14,17,17,0.62)); }
.rota-ph-content { position: relative; z-index: 2; padding: 0 36px 56px; max-width: calc(var(--max) + 72px); margin: 0 auto; width: 100%; }
.rota-ph-content .label { color: rgba(250,249,247,0.6); margin-bottom: 12px; }
.rota-ph-content .heading { color: var(--white); font-size: clamp(2.2rem,5vw,3.8rem); }
.rota-body { padding: 72px 36px; background: var(--white); }
.rota-intro { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 3fr 1fr; gap: 72px; padding-bottom: 72px; border-bottom: 1px solid var(--border); }
.rota-intro .label { margin-bottom: 14px; }
.rota-intro .heading { font-size: clamp(1.7rem,3vw,2.4rem); margin-bottom: 18px; }
.rota-intro .body-text { margin-bottom: 12px; }
.r-sidebar { border-left: 1px solid var(--border); padding-left: 40px; }
.r-fact { margin-bottom: 26px; }
.r-fact-lbl { font-size: 0.63rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--stone-lt); margin-bottom: 5px; }
.r-fact-val { font-family: var(--serif); font-size: 1rem; color: var(--charcoal); }
.activities { max-width: var(--max); margin: 0 auto; padding-top: 64px; }
.act-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 36px; margin-top: 40px; }
.act-card { border-top: 2px solid var(--ocean); padding-top: 20px; }
.act-name { font-family: var(--serif); font-size: 1.2rem; font-weight: 400; color: var(--charcoal); margin-bottom: 9px; }
.act-body { font-size: 0.83rem; font-weight: 300; color: var(--stone); line-height: 1.75; }
.getting-here { max-width: var(--max); margin: 64px auto 0; padding-top: 64px; border-top: 1px solid var(--border); }
.get-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 36px; margin-top: 36px; }
.get-title { font-family: var(--serif); font-size: 1.15rem; font-weight: 400; color: var(--charcoal); margin-bottom: 10px; }
.honest-note { max-width: var(--max); margin: 64px auto 0; padding: 36px; background: var(--cream); border: 1px solid var(--border); }
.honest-note .label { margin-bottom: 12px; }

/* ============================================================
   ABOUT PAGE
============================================================ */
.about-body { padding: 72px 36px 88px; background: var(--white); }
.about-inner { max-width: var(--max); margin: 0 auto; }
.about-open { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; margin-bottom: 88px; padding-bottom: 88px; border-bottom: 1px solid var(--border); }
.about-open .label { margin-bottom: 14px; }
.about-open .heading { font-size: clamp(2rem,4vw,3.2rem); }
.about-open .body-text { margin-bottom: 14px; }
.about-photo-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 6px; margin-bottom: 88px; }
.about-photo { overflow: hidden; aspect-ratio: 3/4; background: var(--cream); }
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-what { max-width: 660px; margin-bottom: 88px; padding-bottom: 88px; border-bottom: 1px solid var(--border); }
.about-what .label { margin-bottom: 14px; }
.about-what .heading { font-size: clamp(1.7rem,3vw,2.5rem); margin-bottom: 18px; }
.about-what .body-text { margin-bottom: 14px; }
.about-pillars { display: grid; grid-template-columns: repeat(3,1fr); gap: 40px; }
.pillar .label { margin-bottom: 10px; }

/* ============================================================
   CONTACT PAGE
============================================================ */
.contact-body { padding: 72px 36px 88px; background: var(--white); }
.contact-inner { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 88px; }
.contact-lhs .label { margin-bottom: 14px; }
.contact-lhs .heading { font-size: clamp(1.9rem,3.5vw,2.8rem); margin-bottom: 28px; }
.cdetail { margin-bottom: 40px; }
.cdetail-lbl { font-size: 0.63rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--stone-lt); margin-bottom: 7px; }
.cdetail-val { font-family: var(--serif); font-size: 1.4rem; font-weight: 300; color: var(--charcoal); line-height: 1.4; }
.cdetail-val a { transition: color 0.2s; }
.cdetail-val a:hover { color: var(--ocean); }
.tz-note { font-size: 0.81rem; font-weight: 300; color: var(--stone); line-height: 1.7; }
.map-wrap { margin-top: 32px; height: 230px; overflow: hidden; border: 1px solid var(--border); }
.map-wrap iframe { width: 100%; height: 100%; border: 0; filter: grayscale(25%) contrast(1.05); }
.direct-box { background: var(--cream); padding: 36px; border: 1px solid var(--border); }
.direct-box-t { font-family: var(--serif); font-size: 1.4rem; font-weight: 400; color: var(--charcoal); margin-bottom: 12px; }
.direct-box-b { font-size: 0.84rem; font-weight: 300; color: var(--stone); line-height: 1.75; margin-bottom: 22px; }
.direct-reason { display: flex; align-items: flex-start; gap: 11px; padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 0.82rem; font-weight: 300; color: var(--charcoal-lt); line-height: 1.55; }
.direct-reason::before { content: '✓'; color: var(--ocean); flex-shrink: 0; }
.direct-btns { display: flex; flex-direction: column; gap: 9px; margin-top: 26px; padding-top: 22px; border-top: 1px solid var(--border); }
.direct-btns .contact-btn { justify-content: center; }
.ota-note { margin-top: 20px; padding: 22px 24px; background: var(--white); border: 1px solid var(--border); font-size: 0.81rem; font-weight: 300; color: var(--stone); line-height: 1.7; }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
  .feature-inner { gap: 48px; }
  .facts-grid { grid-template-columns: repeat(2,1fr); }
  .rooms-preview-inner { grid-template-columns: 1fr; gap: 40px; }
  .rooms-grid { grid-template-columns: repeat(2,1fr); }
  .reasons-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .rota-intro { grid-template-columns: 1fr; gap: 44px; }
  .r-sidebar { border-left: none; padding-left: 0; border-top: 1px solid var(--border); padding-top: 36px; }
  .act-grid { grid-template-columns: repeat(2,1fr); }
  .get-grid { grid-template-columns: repeat(2,1fr); }
  .direct-props { grid-template-columns: 1fr; }
  .direct-prop { border-right: none; border-bottom: 1px solid var(--border); }
  .direct-prop:last-child { border-bottom: none; }
}

@media (max-width: 768px) {
  .nav { padding: 0 20px; }
  .nav-links, .nav-book { display: none; }
  .nav-burger { display: flex; }
  .hero-content { padding: 0 20px 56px; }
  .hero-title { font-size: 2.6rem; }
  .statement { padding: 60px 20px; }
  .facts { padding: 32px 20px; }
  .facts-grid { grid-template-columns: repeat(2,1fr); gap: 20px; }
  .feature { padding: 64px 20px; }
  .feature-inner { grid-template-columns: 1fr; gap: 36px; }
  .feature-inner.rev { direction: ltr; }
  .rooms-preview { padding: 64px 20px; }
  .rooms-preview-inner { grid-template-columns: 1fr; gap: 36px; }
  .rooms-grid { grid-template-columns: 1fr; gap: 36px; }
  .fit-section { padding: 64px 20px; }
  .fit-grid { grid-template-columns: 1fr; }
  .fit-col { padding: 28px 24px; }
  .reasons { padding: 64px 20px; }
  .reasons-grid { grid-template-columns: 1fr; gap: 36px; }
  .perks { padding: 56px 20px; }
  .perks-inner { flex-direction: column; gap: 40px; }
  .rota-teaser-content { padding: 0 20px; }
  .book-direct { padding: 72px 20px; }
  .book-btns { flex-direction: column; align-items: center; }
  .page-hero { height: 35vh; }
  .page-hero-content { padding: 0 20px 32px; }
  .rooms-list { padding: 56px 20px; }
  .room-row { grid-template-columns: 1fr; gap: 28px; padding: 56px 0; }
  .room-row.alt { direction: ltr; }
  .rota-ph-content { padding: 0 20px 44px; }
  .rota-body { padding: 56px 20px; }
  .rota-intro { grid-template-columns: 1fr; }
  .act-grid, .get-grid { grid-template-columns: 1fr; }
  .honest-note { padding: 24px 20px; }
  .about-body { padding: 52px 20px 64px; }
  .about-open { grid-template-columns: 1fr; gap: 40px; margin-bottom: 64px; padding-bottom: 64px; }
  .about-photo-row { grid-template-columns: 1fr 1fr; }
  .about-photo:last-child { display: none; }
  .about-what { margin-bottom: 64px; padding-bottom: 64px; }
  .about-pillars { grid-template-columns: 1fr; gap: 28px; }
  .contact-body { padding: 52px 20px 64px; }
  .contact-inner { grid-template-columns: 1fr; gap: 52px; }
  .footer { padding: 52px 20px 32px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bot { flex-direction: column; gap: 12px; text-align: center; }
}
