:root {
  --ink:       #0f1b1e;      /* near-black teal, base */
  --ink-2:     #142528;
  --ink-3:     #1c2f33;
  --paper:     #f4ecd8;      /* aged cream */
  --paper-dim: #c8bfa7;
  --muted:     #8a8273;
  --gold:      #caa66d;      /* tarnished gold */
  --gold-lt:   #e0c38c;
  --gold-dk:   #9a7a4a;
  --wine:      #7a2430;      /* deep burgundy accent */
  --wine-lt:   #aa4554;
  --line:      rgba(202,166,109,.25);
  --serif:     "Playfair Display", "EB Garamond", Georgia, serif;
  --serif-2:   "Cormorant Garamond", Garamond, serif;
  --sans:      "Inter", system-ui, sans-serif;
  --pad:       clamp(24px, 6vw, 96px);
  --max:       1280px;
  --ease:      cubic-bezier(.22,.7,.22,1);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1em; }
h1,h2,h3,h4 { font-family: var(--serif); font-weight: 400; line-height: 1.05; letter-spacing: 0; margin: 0 0 .5em; color: var(--paper); }
h1 em, h2 em, h3 em { font-family: var(--serif-2); font-style: italic; font-weight: 400; color: var(--gold-lt); }

.cn-eyebrow {
  font-family: var(--sans);
  font-size: 10px; letter-spacing: .45em; text-transform: uppercase; font-weight: 500;
  color: var(--gold-lt);
  display: inline-flex; align-items: center; gap: 14px;
}
.cn-eyebrow::before, .cn-eyebrow::after {
  content: ""; display: inline-block; width: 24px; height: 1px; background: currentColor;
}
.cn-eyebrow.no-rule::before, .cn-eyebrow.no-rule::after { display: none; }
.cn-gold-rule { height: 1px; background: var(--gold); width: 60px; margin: 28px 0; }
.cn-gold-rule.center { margin-left: auto; margin-right: auto; }
.small-caps { font-family: var(--serif-2); font-variant: small-caps; letter-spacing: .12em; }

/* ── Top utility ── */
.cn-top {
  background: #071215;
  border-bottom: 1px solid var(--line);
  padding: 9px var(--pad);
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  font-size: 10px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--paper-dim);
}
.cn-top a:hover { color: var(--gold-lt); }
@media (max-width: 900px) { .cn-top { display: none; } }

/* ── Nav ── */
.cn-nav {
  position: sticky; top: 0; z-index: 80;
  background: rgba(15,27,30,.96); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  padding: 22px var(--pad);
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center;
  transition: padding .3s var(--ease);
}
.cn-nav.scrolled { padding: 14px var(--pad); }
.cn-nav ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 32px; font-size: 10.5px; letter-spacing: .26em; text-transform: uppercase; font-weight: 500; color: var(--paper); }
.cn-nav .left ul { justify-content: flex-start; }
.cn-nav .right { display: flex; justify-content: flex-end; align-items: center; gap: 24px; }
.cn-nav .brand { display: flex; flex-direction: column; align-items: center; gap: 8px; color: var(--paper); }
.cn-nav .brand .cn-crest { color: var(--gold); }
.cn-nav .brand .wm { font-family: var(--serif); font-style: italic; font-size: 26px; letter-spacing: .04em; font-weight: 400; line-height: 1; color: var(--paper); }
.cn-nav .brand .tag { font-size: 8.5px; letter-spacing: .5em; text-transform: uppercase; color: var(--gold-lt); }
.cn-nav a:hover { color: var(--gold-lt); }
.cn-nav .reserve { padding: 11px 22px; border: 1px solid var(--gold); color: var(--gold-lt); font-size: 10px; letter-spacing: .3em; text-transform: uppercase; transition: background .3s, color .3s; }
.cn-nav .reserve:hover { background: var(--gold); color: var(--ink); }
.cn-burger { display: none; border: 0; background: transparent; font-size: 11px; letter-spacing: .3em; text-transform: uppercase; color: var(--paper); padding: 8px 10px; cursor: pointer; }
@media (max-width: 900px) {
  .cn-nav { grid-template-columns: 1fr auto; padding: 16px var(--pad); }
  .cn-nav .left, .cn-nav .menu { display: none; }
  .cn-nav .brand { align-items: flex-start; }
  .cn-nav .brand .tag { display: none; }
  .cn-nav .brand .wm { font-size: 22px; }
  .cn-burger { display: inline-block; }
}
.cn-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; }
.cn-panel.open { transform: translateY(0); visibility: visible; }
.cn-panel-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 36px; border-bottom: 1px solid var(--line); padding-bottom: 20px; }
.cn-panel-head .wm { font-family: var(--serif); font-style: italic; font-size: 22px; letter-spacing: .04em; color: var(--gold-lt); }
.cn-panel .close { background: transparent; border: 0; color: var(--paper); font-size: 24px; cursor: pointer; }
.cn-panel ul { list-style: none; padding: 0; margin: 0; }
.cn-panel li { border-bottom: 1px solid var(--line); }
.cn-panel a { display: block; padding: 22px 0; font-family: var(--serif); font-style: italic; font-size: clamp(26px, 6vw, 36px); color: var(--paper); }
.cn-panel a:hover { color: var(--gold-lt); padding-left: 8px; }

/* ── Hero — dark, centered, heraldic ── */
.hero {
  position: relative; min-height: 88vh; color: #fff; overflow: hidden;
  display: flex; align-items: center; justify-content: center; text-align: center;
}
.hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: saturate(.75) contrast(1.05); }
.hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(15,27,30,.55) 0%, rgba(15,27,30,.35) 50%, rgba(15,27,30,.85) 100%); }
.hero-inner { position: relative; z-index: 2; padding: 0 var(--pad); max-width: 1000px; }
.hero .cn-crest { color: var(--gold-lt); margin-bottom: 24px; opacity: 0; animation: up 1s .2s var(--ease) forwards; }
.hero .chapter-label { font-family: var(--serif-2); font-style: italic; font-size: 13px; letter-spacing: .2em; color: var(--gold-lt); margin-bottom: 8px; opacity: 0; animation: up 1s .35s var(--ease) forwards; }
.hero h1 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(48px, 9vw, 116px);
  line-height: .98;
  margin: 10px auto 26px;
  max-width: 18ch;
  color: #fff;
  opacity: 0; animation: up 1.2s .55s var(--ease) forwards;
}
.hero h1 em { font-family: var(--serif-2); font-weight: 400; color: var(--gold-lt); }
.hero .sub { font-size: 16px; max-width: 50ch; margin: 0 auto 38px; color: rgba(244,236,216,.88); font-weight: 300; opacity: 0; animation: up 1.2s .75s var(--ease) forwards; }
.hero .btns { opacity: 0; animation: up 1.2s .95s var(--ease) forwards; display: inline-flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.cn-btn { display: inline-block; padding: 14px 28px; font-size: 10.5px; letter-spacing: .34em; text-transform: uppercase; font-weight: 500; transition: all .3s var(--ease); }
.cn-btn.primary { background: var(--wine); color: var(--paper); border: 1px solid var(--wine); }
.cn-btn.primary:hover { background: var(--wine-lt); border-color: var(--wine-lt); }
.cn-btn.ghost { color: var(--paper); border: 1px solid var(--gold); }
.cn-btn.ghost:hover { background: var(--gold); color: var(--ink); }
.cn-btn.ink { background: var(--ink); color: var(--paper); border: 1px solid var(--gold); }
.cn-btn.ink:hover { background: var(--gold); color: var(--ink); }
.hero-base { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); font-family: var(--serif-2); font-style: italic; font-size: 13px; color: var(--gold-lt); opacity: 0; animation: in 2s 1.5s var(--ease) forwards; z-index: 2; }
@keyframes up { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
@keyframes in { to { opacity: 1; } }

/* ── Section / chapter ── */
.chapter { padding: clamp(80px, 14vw, 180px) 0; position: relative; }
.chapter.alt { background: var(--ink-2); }
.chapter.cream { background: var(--paper); color: var(--ink); }
.chapter.cream h2, .chapter.cream h3, .chapter.cream h4 { color: var(--ink); }
.chapter.cream .cn-eyebrow { color: var(--wine); }

.chapter-head { max-width: 900px; margin: 0 auto 80px; padding: 0 var(--pad); text-align: center; }
.chapter-head .cn-crest { color: var(--gold); margin-bottom: 22px; }
.chapter.cream .chapter-head .cn-crest { color: var(--wine); }
.chapter-head .roman { font-family: var(--serif-2); font-style: italic; font-size: 15px; letter-spacing: .25em; color: var(--gold-lt); margin-bottom: 8px; text-transform: uppercase; }
.chapter.cream .chapter-head .roman { color: var(--wine); }
.chapter-head h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(34px, 5.3vw, 72px); margin: 6px auto 22px; max-width: 22ch; line-height: 1.05; }
.chapter-head h2 em { font-family: var(--serif-2); font-style: italic; color: var(--gold-lt); }
.chapter.cream .chapter-head h2 em { color: var(--wine); }
.chapter-head .lede { max-width: 58ch; margin: 0 auto; font-size: 16.5px; line-height: 1.9; color: rgba(244,236,216,.7); font-weight: 300; }
.chapter.cream .chapter-head .lede { color: #4a443a; }
.chapter-head .rule { display: block; width: 40px; height: 1px; background: var(--gold); margin: 24px auto 0; }

/* ── Rooms ledger (left-aligned, ornate) ── */
.ledger { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }
.ledger-row {
  display: grid; grid-template-columns: 100px 1.2fr 1.5fr 80px;
  gap: 40px; align-items: start;
  padding: 40px 0;
  border-top: 1px solid var(--line);
  transition: padding .3s var(--ease), background .3s;
}
.ledger-row:last-child { border-bottom: 1px solid var(--line); }
.ledger-row:hover { padding-left: 16px; padding-right: 16px; background: rgba(202,166,109,.04); }
.ledger-row .num { font-family: var(--serif-2); font-style: italic; font-size: 20px; color: var(--gold-lt); letter-spacing: .05em; }
.ledger-row .t { color: var(--paper); }
.ledger-row .t h3 { font-family: var(--serif); font-size: clamp(28px, 3.5vw, 44px); font-weight: 400; margin: 0 0 6px; }
.ledger-row .t .kind { font-family: var(--serif-2); font-style: italic; font-size: 14px; color: var(--gold-lt); }
.ledger-row .d { color: var(--paper-dim); font-size: 15px; line-height: 1.75; max-width: 48ch; }
.ledger-row .a { justify-self: end; align-self: center; font-family: var(--serif-2); font-style: italic; font-size: 22px; color: var(--gold-lt); transition: transform .4s var(--ease); }
.ledger-row:hover .a { transform: translateX(8px); }
@media (max-width: 900px) { .ledger-row { grid-template-columns: 1fr; gap: 10px; padding: 32px 0; } .ledger-row .a { justify-self: start; } }

/* ── Feature split (cream side, image) ── */
.feat {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 8vw, 110px);
  max-width: var(--max); margin: 0 auto clamp(80px, 12vw, 140px); padding: 0 var(--pad);
  align-items: center;
}
.feat.reverse > :first-child { order: 2; }
.feat .ph { aspect-ratio: 4/5; overflow: hidden; }
.feat .ph img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.75) contrast(1.02); transition: transform 1.4s var(--ease); }
.feat:hover .ph img { transform: scale(1.04); }
.feat .txt .cn-eyebrow { margin-bottom: 18px; display: inline-flex; }
.feat .txt h3 { font-family: var(--serif); font-size: clamp(30px, 4.2vw, 56px); font-weight: 400; margin: 8px 0 22px; max-width: 18ch; }
.feat .txt h3 em { font-family: var(--serif-2); font-style: italic; color: var(--gold-lt); }
.chapter.cream .feat .txt h3 em { color: var(--wine); }
.feat .txt .body { font-size: 16px; line-height: 1.85; color: rgba(244,236,216,.8); max-width: 48ch; font-weight: 300; }
.chapter.cream .feat .txt .body { color: #3a342b; }
.feat .txt .cta { margin-top: 30px; display: inline-block; padding: 14px 28px; border: 1px solid var(--gold); color: var(--gold-lt); font-size: 10.5px; letter-spacing: .3em; text-transform: uppercase; transition: background .3s, color .3s; }
.feat .txt .cta:hover { background: var(--gold); color: var(--ink); }
@media (max-width: 900px) { .feat, .feat.reverse { grid-template-columns: 1fr; gap: 36px; } .feat.reverse > :first-child { order: 0; } }

/* ── Pull-quote ── */
.cn-quote { max-width: 960px; margin: 0 auto; padding: clamp(80px, 14vw, 160px) var(--pad); text-align: center; }
.cn-quote .cn-crest { color: var(--gold); margin-bottom: 30px; }
.cn-quote p { font-family: var(--serif-2); font-style: italic; font-weight: 300; font-size: clamp(26px, 3.8vw, 48px); line-height: 1.3; max-width: 26ch; margin: 0 auto 30px; color: var(--paper); }
.cn-quote p em { font-family: var(--serif); font-style: italic; color: var(--gold-lt); font-weight: 400; }
.cn-quote cite { font-style: normal; font-size: 11px; letter-spacing: .32em; text-transform: uppercase; color: var(--muted); }

/* ── Destination band ── */
.destination { position: relative; height: clamp(60vh, 80vh, 740px); overflow: hidden; color: #fff; display: flex; align-items: center; justify-content: center; text-align: center; }
.destination img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: saturate(.7) contrast(1.05); }
.destination::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(15,27,30,.35), rgba(15,27,30,.8)); }
.destination .inner { position: relative; z-index: 2; max-width: 820px; padding: 0 var(--pad); }
.destination .cn-crest { color: var(--gold-lt); margin-bottom: 18px; }
.destination .roman { font-family: var(--serif-2); font-style: italic; font-size: 13px; letter-spacing: .24em; color: var(--gold-lt); text-transform: uppercase; }
.destination h2 { font-family: var(--serif); font-size: clamp(38px, 5.5vw, 72px); margin: 14px 0 18px; font-weight: 400; }
.destination h2 em { font-family: var(--serif-2); font-style: italic; color: var(--gold-lt); }
.destination p { font-size: 15.5px; color: rgba(255,255,255,.85); max-width: 56ch; margin: 0 auto 28px; font-weight: 300; }

/* ── Contact ── */
.contact-section { background: var(--ink-2); padding: clamp(80px, 12vw, 160px) var(--pad); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.contact-wrap { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.contact-wrap .cn-crest { color: var(--gold); margin-bottom: 18px; }
.contact-wrap h2 { font-family: var(--serif); font-size: clamp(32px, 5vw, 60px); font-weight: 400; margin: 0 0 28px; max-width: 18ch; color: var(--paper); }
.contact-wrap h2 em { font-family: var(--serif-2); font-style: italic; color: var(--gold-lt); }
.contact-wrap .row { display: grid; grid-template-columns: 110px 1fr; gap: 24px; padding: 18px 0; border-top: 1px solid var(--line); font-size: 14px; }
.contact-wrap .row:last-child { border-bottom: 1px solid var(--line); }
.contact-wrap .row .k { font-size: 10px; letter-spacing: .3em; text-transform: uppercase; color: var(--gold-lt); padding-top: 3px; font-weight: 500; }
.contact-wrap .row .v { color: var(--paper-dim); line-height: 1.8; font-weight: 300; }
.contact-wrap .row .v a:hover { color: var(--gold-lt); }
.contact-wrap .map { aspect-ratio: 4/5; }
.contact-wrap .map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(.7) brightness(.75) contrast(.9); }
@media (max-width: 900px) { .contact-wrap { grid-template-columns: 1fr; gap: 40px; } }

/* ── Page hero ── */
.page-hero { position: relative; height: 58vh; min-height: 440px; 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(.75); }
.page-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(15,27,30,.45), rgba(15,27,30,.75)); }
.page-hero .wrap { position: relative; z-index: 2; max-width: 900px; padding: 0 var(--pad); }
.page-hero h1 { font-family: var(--serif); font-size: clamp(44px, 7vw, 96px); margin: 14px 0 0; font-weight: 400; }
.page-hero h1 em { font-family: var(--serif-2); font-style: italic; color: var(--gold-lt); }
.prose { max-width: 780px; margin: 0 auto; padding: clamp(80px, 12vw, 140px) var(--pad); font-size: 17px; line-height: 1.9; font-weight: 300; color: var(--paper-dim); }
.prose h2 { font-family: var(--serif); font-size: clamp(26px, 3.5vw, 40px); font-weight: 400; font-style: italic; margin: 2em 0 .6em; color: var(--gold-lt); }
.prose h3 { font-family: var(--serif); font-size: clamp(20px, 2.5vw, 28px); margin: 2em 0 .5em; color: var(--paper); font-weight: 400; }
.prose a { color: var(--gold-lt); border-bottom: 1px solid var(--line); padding-bottom: 2px; }
.prose img { margin: 2em 0; }

/* ── Footer ── */
.cn-footer { background: #071215; padding: 100px var(--pad) 40px; color: var(--paper); }
.cn-footer-top { max-width: var(--max); margin: 0 auto 60px; text-align: center; }
.cn-footer-top .cn-crest { color: var(--gold-lt); margin-bottom: 14px; }
.cn-footer-top .wm { font-family: var(--serif); font-style: italic; font-size: 34px; }
.cn-footer-top .tag { font-size: 10px; letter-spacing: .4em; text-transform: uppercase; color: rgba(244,236,216,.5); margin-top: 10px; }
.cn-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 var(--line); border-bottom: 1px solid var(--line); }
.cn-footer-grid h5 { font-family: var(--sans); font-size: 10px; letter-spacing: .3em; text-transform: uppercase; font-weight: 500; margin-bottom: 18px; color: var(--gold-lt); }
.cn-footer-grid ul { list-style: none; padding: 0; margin: 0; line-height: 2; font-size: 14px; color: var(--paper-dim); }
.cn-footer-grid a { opacity: .8; }
.cn-footer-grid a:hover { opacity: 1; color: var(--gold-lt); }
.cn-footer-bot { max-width: var(--max); margin: 0 auto; padding-top: 30px; font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: rgba(244,236,216,.4); display: flex; justify-content: space-between; gap: 16px; }
@media (max-width: 900px) { .cn-footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; } .cn-footer-bot { flex-direction: column; text-align: center; } }

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