:root {
  --paper: #f7f1ea;
  --paper-2: #ede2d3;
  --ink: #2c2420;
  --ink-soft: #4a3e36;
  --muted: #9a8a7d;
  --line: #ddc9b4;
  --rose-gold: #b5856d;
  --rose-gold-lt: #d6a68a;
  --rose-gold-dk: #8e6550;
  --blush: #c9808a;
  --serif: "Cormorant", Georgia, serif;
  --sans: "Inter", system-ui, sans-serif;
  --pad: clamp(24px, 6vw, 96px);
  --max: 1360px;
  --ease: cubic-bezier(.22,.7,.22,1);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--sans); font-weight: 300; font-size: 16px; line-height: 1.8; -webkit-font-smoothing: antialiased; }
img { max-width:100%; display:block; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1.1em; }
h1,h2,h3,h4 { font-family: var(--serif); font-weight: 400; line-height: 1.08; letter-spacing: 0; margin: 0 0 .5em; }

.rw-eyebrow { font-family: var(--sans); font-size: 11px; letter-spacing: .36em; text-transform: uppercase; color: var(--rose-gold); font-weight: 500; display: inline-flex; align-items: center; gap: 14px; }
.rw-eyebrow::before, .rw-eyebrow::after { content: ""; width: 20px; height: 1px; background: currentColor; }
.rw-eyebrow.left::before { display: none; }
.rw-rosette { vertical-align: middle; color: var(--rose-gold); }

/* ── Nav — centered, soft, warm ── */
.rw-nav {
  position: sticky; top: 0; z-index: 80;
  background: rgba(247,241,234,.94); backdrop-filter: blur(14px);
  padding: 22px var(--pad);
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid transparent;
  transition: padding .3s var(--ease), border-color .3s;
}
.rw-nav.scrolled { padding: 14px var(--pad); border-color: var(--line); }
.rw-nav ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 32px; font-size: 11px; letter-spacing: .28em; text-transform: uppercase; font-weight: 500; }
.rw-nav .left ul { justify-content: flex-start; }
.rw-nav .right { display: flex; justify-content: flex-end; align-items: center; gap: 24px; }
.rw-nav .brand { display: flex; flex-direction: column; align-items: center; gap: 6px; color: var(--ink); }
.rw-nav .brand .rw-rosette { color: var(--rose-gold); }
.rw-nav .brand .wm { font-family: var(--serif); font-size: 28px; font-style: italic; letter-spacing: .04em; font-weight: 400; line-height: 1; }
.rw-nav .brand .tag { font-size: 9px; letter-spacing: .5em; text-transform: uppercase; color: var(--rose-gold); }
.rw-nav a { transition: color .25s; }
.rw-nav .menu a:hover { color: var(--rose-gold); }
.rw-nav .reserve { padding: 11px 22px; border: 1px solid var(--ink); color: var(--ink); font-size: 11px; letter-spacing: .28em; text-transform: uppercase; transition: background .25s, color .25s; }
.rw-nav .reserve:hover { background: var(--rose-gold); color: var(--paper); border-color: var(--rose-gold); }
.rw-burger { display: none; border: 0; background: transparent; color: inherit; font-size: 11px; letter-spacing: .26em; text-transform: uppercase; font-weight: 500; padding: 8px 10px; cursor: pointer; }
@media (max-width: 900px) {
  .rw-nav { grid-template-columns: 1fr auto; padding: 16px var(--pad); }
  .rw-nav .left, .rw-nav .menu { display: none; }
  .rw-nav .brand { align-items: flex-start; }
  .rw-nav .brand .tag { display: none; }
  .rw-nav .brand .wm { font-size: 22px; }
  .rw-burger { display: inline-block; }
}
.rw-panel { position: fixed; inset: 0; z-index: 300; background: var(--ink); color: var(--paper); padding: 32px var(--pad); display: flex; flex-direction: column; transform: translateY(-100%); transition: transform .5s var(--ease); visibility: hidden; overflow-y: auto; }
.rw-panel.open { transform: translateY(0); visibility: visible; }
.rw-panel-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; }
.rw-panel-head .wm { font-family: var(--serif); font-style: italic; font-size: 26px; color: var(--rose-gold-lt); }
.rw-panel .close { background: transparent; border: 0; color: var(--paper); font-size: 24px; cursor: pointer; }
.rw-panel ul { list-style: none; padding: 0; margin: 0; }
.rw-panel li { border-bottom: 1px solid rgba(247,241,234,.1); }
.rw-panel a { display: block; padding: 22px 0; font-family: var(--serif); font-style: italic; font-size: clamp(28px, 6vw, 38px); color: var(--paper); }
.rw-panel a:hover { color: var(--rose-gold-lt); }

/* ── Hero — full bleed, bottom-left copy ── */
.hero { position: relative; min-height: 94vh; overflow: hidden; color: #fff; display: flex; align-items: flex-end; }
.hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: saturate(.95); transform: scale(1.02); animation: pan 30s ease-in-out infinite alternate; }
@keyframes pan { from { transform: scale(1.02); } to { transform: scale(1.09) translate(-2%, -1%); } }
.hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.2) 0%, rgba(0,0,0,.05) 45%, rgba(44,36,32,.75) 100%); }
.hero-inner { position: relative; z-index: 2; padding: 0 var(--pad) clamp(80px, 14vh, 140px); max-width: var(--max); width: 100%; margin: 0 auto; }
.hero .sense { display: inline-flex; align-items: center; gap: 14px; font-size: 11px; letter-spacing: .4em; text-transform: uppercase; color: var(--rose-gold-lt); margin-bottom: 26px; padding: 8px 18px; border: 1px solid rgba(214,166,138,.45); border-radius: 999px; opacity: 0; animation: up 1.1s .3s var(--ease) forwards; }
.hero h1 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(48px, 9vw, 124px);
  line-height: .97;
  color: #fff; max-width: 15ch; margin: 0 0 26px;
  opacity: 0; animation: up 1.3s .5s var(--ease) forwards;
}
.hero h1 em { font-style: italic; color: var(--rose-gold-lt); }
.hero .sub { font-size: 16px; max-width: 52ch; margin: 0 0 36px; color: rgba(255,255,255,.88); font-weight: 300; opacity: 0; animation: up 1.3s .7s var(--ease) forwards; }
.hero .ctas { display: flex; gap: 16px; flex-wrap: wrap; opacity: 0; animation: up 1.3s .9s var(--ease) forwards; }
.rw-btn { display: inline-block; padding: 14px 28px; font-size: 11px; letter-spacing: .3em; text-transform: uppercase; font-weight: 500; transition: all .3s var(--ease); }
.rw-btn.primary { background: var(--rose-gold); color: var(--paper); border: 1px solid var(--rose-gold); }
.rw-btn.primary:hover { background: var(--rose-gold-dk); border-color: var(--rose-gold-dk); }
.rw-btn.ghost { color: #fff; border: 1px solid rgba(255,255,255,.5); }
.rw-btn.ghost:hover { background: #fff; color: var(--ink); border-color: #fff; }
.rw-btn.ink { background: var(--ink); color: var(--paper); border: 1px solid var(--ink); }
.rw-btn.ink:hover { background: var(--rose-gold-dk); border-color: var(--rose-gold-dk); color: var(--paper); }
.hero-rosette { position: absolute; bottom: 30px; right: var(--pad); z-index: 2; color: var(--rose-gold-lt); opacity: 0; animation: fade 2s 1.5s var(--ease) forwards; }
@keyframes up { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
@keyframes fade { to { opacity: 1; } }
@media (max-width: 700px) { .hero-rosette { display: none; } }

/* ── A Sense of Place band — 4-up local story cards ── */
.chapter { padding: clamp(80px, 14vw, 180px) 0; }
.chapter.blush { background: linear-gradient(180deg, var(--paper) 0%, var(--paper-2) 100%); }
.chapter.ink { background: var(--ink); color: var(--paper); }
.chapter.ink h2, .chapter.ink h3 { color: var(--paper); }

.chapter-head { max-width: 900px; margin: 0 auto 80px; padding: 0 var(--pad); text-align: center; }
.chapter-head .rw-rosette { margin-bottom: 22px; }
.chapter-head h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(36px, 5.5vw, 72px); max-width: 22ch; margin: 14px auto 22px; line-height: 1.06; }
.chapter-head h2 em { font-style: italic; color: var(--rose-gold); }
.chapter.ink .chapter-head h2 em { color: var(--rose-gold-lt); }
.chapter-head .lede { max-width: 60ch; margin: 0 auto; font-size: 17px; line-height: 1.88; color: var(--ink-soft); font-weight: 300; }
.chapter.ink .chapter-head .lede { color: rgba(247,241,234,.72); }

/* ── Local story cards (4 up) — hyper-local Chennai ── */
.place-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }
.place { position: relative; overflow: hidden; aspect-ratio: 3/4; color: #fff; }
.place img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--ease); filter: saturate(.92); }
.place:hover img { transform: scale(1.07); }
.place::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0) 45%, rgba(44,36,32,.88) 100%); }
.place .body { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 24px; color: var(--paper); }
.place .pin { font-size: 10px; letter-spacing: .3em; text-transform: uppercase; color: var(--rose-gold-lt); margin-bottom: 8px; display: block; }
.place h4 { font-family: var(--serif); font-style: italic; font-size: clamp(22px, 2.2vw, 30px); font-weight: 400; margin: 0 0 6px; color: var(--paper); }
.place p { font-size: 13px; line-height: 1.7; color: rgba(247,241,234,.85); margin: 0; max-width: 30ch; }
@media (max-width: 1000px) { .place-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .place-grid { grid-template-columns: 1fr; } }

/* ── Split story (asymmetric) ── */
.rw-story { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(40px, 8vw, 110px); max-width: var(--max); margin: clamp(60px, 10vw, 120px) auto; padding: 0 var(--pad); align-items: center; }
.rw-story.reverse { grid-template-columns: 1.2fr 1fr; }
.rw-story.reverse > :first-child { order: 2; }
.rw-story .ph { aspect-ratio: 4/5; overflow: hidden; position: relative; }
.rw-story .ph img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.92); transition: transform 1.4s var(--ease); }
.rw-story:hover .ph img { transform: scale(1.04); }
.rw-story .ph .rosette-corner { position: absolute; top: 18px; left: 18px; color: var(--rose-gold-lt); background: rgba(44,36,32,.4); padding: 8px; border-radius: 50%; backdrop-filter: blur(6px); }
.rw-story .txt .rw-eyebrow { margin-bottom: 18px; }
.rw-story .txt h3 { font-family: var(--serif); font-size: clamp(30px, 4.2vw, 56px); font-weight: 400; margin: 8px 0 22px; max-width: 16ch; }
.rw-story .txt h3 em { font-style: italic; color: var(--rose-gold); }
.rw-story .txt .body { font-size: 16px; line-height: 1.85; color: var(--ink-soft); max-width: 48ch; }
.rw-story .txt .cta { display: inline-flex; align-items: center; gap: 14px; margin-top: 30px; font-size: 11px; letter-spacing: .3em; text-transform: uppercase; font-weight: 500; color: var(--ink); padding-bottom: 4px; border-bottom: 1px solid var(--rose-gold); transition: gap .3s, color .3s, border-color .3s; }
.rw-story .txt .cta:hover { gap: 22px; color: var(--rose-gold); border-color: var(--rose-gold); }
@media (max-width: 900px) { .rw-story, .rw-story.reverse { grid-template-columns: 1fr; gap: 36px; } .rw-story.reverse > :first-child { order: 0; } }

/* ── Pull-quote (with rosette frame) ── */
.rw-quote { max-width: 960px; margin: 0 auto; padding: clamp(80px, 14vw, 180px) var(--pad); text-align: center; }
.rw-quote .rw-rosette { color: var(--rose-gold); margin-bottom: 30px; }
.rw-quote p { font-family: var(--serif); font-style: italic; font-weight: 400; font-size: clamp(28px, 4vw, 52px); line-height: 1.25; max-width: 24ch; margin: 0 auto 28px; color: var(--ink); }
.rw-quote p em { color: var(--rose-gold); }
.rw-quote cite { font-style: normal; font-size: 11px; letter-spacing: .34em; text-transform: uppercase; color: var(--muted); }

/* ── Destination band ── */
.rw-dest { position: relative; height: clamp(60vh, 80vh, 740px); overflow: hidden; color: #fff; display: flex; align-items: center; justify-content: center; text-align: center; }
.rw-dest img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: saturate(.95); }
.rw-dest::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.3), rgba(44,36,32,.7)); }
.rw-dest .inner { position: relative; z-index: 2; max-width: 860px; padding: 0 var(--pad); }
.rw-dest .rw-rosette { color: var(--rose-gold-lt); margin-bottom: 16px; }
.rw-dest h2 { font-family: var(--serif); font-size: clamp(40px, 6vw, 76px); margin: 12px 0 18px; font-weight: 400; color: #fff; }
.rw-dest h2 em { font-style: italic; color: var(--rose-gold-lt); }
.rw-dest p { font-size: 16px; color: rgba(255,255,255,.88); max-width: 56ch; margin: 0 auto 28px; font-weight: 300; }

/* ── Contact ── */
.rw-contact { background: var(--paper-2); padding: clamp(80px, 12vw, 160px) var(--pad); }
.rw-contact .inner { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 70px; }
.rw-contact .rw-rosette { margin-bottom: 18px; }
.rw-contact h2 { font-family: var(--serif); font-size: clamp(34px, 5vw, 60px); margin: 0 0 28px; max-width: 18ch; font-weight: 400; }
.rw-contact h2 em { font-style: italic; color: var(--rose-gold); }
.rw-contact .row { display: grid; grid-template-columns: 110px 1fr; gap: 24px; padding: 18px 0; border-top: 1px solid var(--line); font-size: 14px; }
.rw-contact .row:last-child { border-bottom: 1px solid var(--line); }
.rw-contact .row .k { font-size: 10px; letter-spacing: .3em; text-transform: uppercase; color: var(--rose-gold); padding-top: 3px; font-weight: 500; }
.rw-contact .row .v { color: var(--ink-soft); line-height: 1.75; }
.rw-contact .row .v a:hover { color: var(--rose-gold); }
.rw-contact .map { aspect-ratio: 4/5; overflow: hidden; }
.rw-contact .map iframe { width: 100%; height: 100%; border: 0; filter: saturate(.85) sepia(.1); }
@media (max-width: 900px) { .rw-contact .inner { grid-template-columns: 1fr; gap: 40px; } }

/* ── Page hero ── */
.page-hero { position: relative; height: 58vh; min-height: 420px; color: #fff; overflow: hidden; display: flex; align-items: center; justify-content: center; text-align: center; }
.page-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: saturate(.92); }
.page-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.4), rgba(44,36,32,.7)); }
.page-hero .wrap { position: relative; z-index: 2; max-width: 900px; padding: 0 var(--pad); }
.page-hero .rw-rosette { color: var(--rose-gold-lt); margin-bottom: 14px; }
.page-hero h1 { font-family: var(--serif); font-size: clamp(44px, 7vw, 92px); font-weight: 400; margin: 10px 0; color: #fff; }
.page-hero h1 em { font-style: italic; color: var(--rose-gold-lt); }
.prose { max-width: 780px; margin: 0 auto; padding: clamp(80px, 12vw, 140px) var(--pad); font-size: 17px; line-height: 1.95; font-weight: 300; color: var(--ink-soft); }
.prose h2 { font-family: var(--serif); font-size: clamp(28px, 3.5vw, 42px); font-weight: 400; font-style: italic; margin: 2em 0 .6em; color: var(--rose-gold); }
.prose h3 { font-family: var(--serif); font-size: clamp(20px, 2.5vw, 28px); margin: 2em 0 .5em; color: var(--ink); font-weight: 400; }
.prose a { color: var(--rose-gold); border-bottom: 1px solid var(--line); }
.prose a:hover { border-color: var(--rose-gold); }

/* ── Footer ── */
.rw-footer { background: var(--ink); color: var(--paper); padding: 100px var(--pad) 40px; }
.rw-footer-top { max-width: var(--max); margin: 0 auto 60px; text-align: center; }
.rw-footer-top .rw-rosette { color: var(--rose-gold-lt); margin-bottom: 14px; }
.rw-footer-top .wm { font-family: var(--serif); font-style: italic; font-size: 34px; color: var(--paper); }
.rw-footer-top .tag { font-size: 10px; letter-spacing: .4em; text-transform: uppercase; color: rgba(247,241,234,.5); margin-top: 10px; }
.rw-footer-grid { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; padding: 60px 0; border-top: 1px solid rgba(247,241,234,.1); border-bottom: 1px solid rgba(247,241,234,.1); }
.rw-footer-grid h5 { font-family: var(--sans); font-size: 10px; letter-spacing: .3em; text-transform: uppercase; font-weight: 500; margin-bottom: 18px; color: var(--rose-gold-lt); }
.rw-footer-grid ul { list-style: none; padding: 0; margin: 0; line-height: 2; font-size: 14px; }
.rw-footer-grid a { opacity: .75; }
.rw-footer-grid a:hover { opacity: 1; color: var(--rose-gold-lt); }
.rw-footer-bot { max-width: var(--max); margin: 0 auto; padding-top: 30px; font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: rgba(247,241,234,.4); display: flex; justify-content: space-between; gap: 16px; }
@media (max-width: 900px) { .rw-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } .rw-footer-bot { flex-direction: column; text-align: center; } }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
body.menu-open { overflow: hidden; }
