:root {
  --paper: #faf7f2;
  --paper-2: #f2ede3;
  --ink: #1f1a14;
  --ink-soft: #3a3128;
  --muted: #908679;
  --line: #ddd3c0;
  --gold: #9c8456;
  --gold-lt: #c0a979;
  --crimson: #a5332e;
  --crimson-lt: #c54a43;
  --serif: "EB Garamond", "Adobe Garamond", "Garamond", "Times New Roman", serif;
  --sans:  "Inter", system-ui, sans-serif;
  --pad: clamp(24px, 6vw, 80px);
  --max: 1320px;
  --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: 400; font-size: 16px; line-height: 1.7; -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.1; margin: 0 0 .5em; letter-spacing: 0; }

/* Shared */
.fs-eyebrow { font-family: var(--sans); font-size: 11px; letter-spacing: .36em; text-transform: uppercase; color: var(--gold); font-weight: 500; }
.fs-eyebrow.crimson { color: var(--crimson); }
.hairline { display: block; width: 1px; height: 40px; background: var(--gold); margin: 24px auto; }
.hairline.h { width: 60px; height: 1px; }
.rule { display: flex; align-items: center; gap: 12px; color: var(--gold); justify-content: center; margin: 30px 0; }
.rule::before, .rule::after { content: ""; flex: 1; height: 1px; background: var(--gold); max-width: 80px; }
.fs-tree { vertical-align: middle; color: var(--gold); }

/* ── Nav ── */
.fs-nav {
  position: sticky; top: 0; z-index: 80;
  background: rgba(250,247,242,.96); backdrop-filter: blur(12px) saturate(150%);
  border-bottom: 1px solid var(--line);
  padding: 18px var(--pad);
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center;
  transition: padding .3s var(--ease);
}
.fs-nav.scrolled { padding: 12px var(--pad); }
.fs-nav ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 34px; font-size: 11px; letter-spacing: .22em; text-transform: uppercase; font-weight: 500; }
.fs-nav .left ul { justify-content: flex-start; }
.fs-nav .right { display: flex; justify-content: flex-end; align-items: center; gap: 24px; }
.fs-nav .brand { display: flex; flex-direction: column; align-items: center; gap: 6px; color: var(--ink); }
.fs-nav .brand .wm { font-family: var(--serif); font-size: 30px; letter-spacing: .25em; text-transform: uppercase; line-height: 1; }
.fs-nav .brand .tag { font-size: 9px; letter-spacing: .5em; text-transform: uppercase; color: var(--gold); }
.fs-nav a { transition: color .25s; position: relative; }
.fs-nav .menu a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -4px; height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: right; transition: transform .4s var(--ease);
}
.fs-nav .menu a:hover { color: var(--gold); }
.fs-nav .menu a:hover::after { transform: scaleX(1); transform-origin: left; }
.fs-nav .reserve {
  padding: 10px 22px; background: var(--crimson); color: #fff;
  font-size: 11px; letter-spacing: .24em; text-transform: uppercase; font-weight: 500;
  transition: background .25s;
}
.fs-nav .reserve:hover { background: var(--crimson-lt); color: #fff; }
.fs-burger { display: none; border: 0; background: transparent; cursor: pointer; font-size: 18px; padding: 6px; letter-spacing: .2em; text-transform: uppercase; font-weight: 500; color: inherit; }
@media (max-width: 900px) {
  .fs-nav { grid-template-columns: 1fr auto; padding: 16px var(--pad); }
  .fs-nav .left, .fs-nav .menu { display: none; }
  .fs-nav .brand .tag { display: none; }
  .fs-nav .brand { align-items: flex-start; }
  .fs-nav .brand .wm { font-size: 22px; letter-spacing: .2em; }
  .fs-burger { display: inline-block; }
}
.fs-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; }
.fs-panel.open { transform: translateY(0); visibility: visible; }
.fs-panel-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; }
.fs-panel-head .wm { font-family: var(--serif); font-size: 24px; letter-spacing: .25em; color: var(--gold-lt); text-transform: uppercase; }
.fs-panel .close { background: transparent; border: 0; color: var(--paper); font-size: 24px; cursor: pointer; }
.fs-panel ul { list-style: none; padding: 0; margin: 0; }
.fs-panel li { border-bottom: 1px solid rgba(250,247,242,.1); }
.fs-panel a { display: block; padding: 22px 0; font-family: var(--serif); font-size: clamp(26px, 6vw, 36px); color: var(--paper); }
.fs-panel a:hover { color: var(--gold-lt); }

/* ── Hero ── */
.hero {
  position: relative; min-height: 92vh; color: #fff; overflow: hidden;
  display: flex; flex-direction: column; align-items: center; justify-content: space-between;
  text-align: center;
}
.hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.45) 0%, rgba(0,0,0,.2) 35%, rgba(0,0,0,.7) 100%); }
.hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-top { position: relative; z-index: 2; padding: clamp(80px, 14vh, 140px) var(--pad) 0; opacity: 0; animation: up 1s .2s var(--ease) forwards; }
.hero-top .fs-tree { color: var(--gold-lt); opacity: .95; }
.hero-body { position: relative; z-index: 2; padding: 0 var(--pad) clamp(80px, 14vh, 140px); max-width: 900px; }
.hero h1 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(48px, 8.5vw, 110px);
  line-height: .98; max-width: 16ch; margin: 0 auto 28px;
  color: #fff;
  opacity: 0; animation: up 1.2s .5s var(--ease) forwards;
}
.hero h1 em { font-style: italic; color: var(--gold-lt); }
.hero .eyebrow { font-size: 11px; letter-spacing: .45em; text-transform: uppercase; color: var(--gold-lt); margin-bottom: 26px; opacity: 0; animation: up 1s .35s var(--ease) forwards; }
.hero .sub { font-size: 16px; max-width: 54ch; margin: 0 auto 36px; color: rgba(255,255,255,.9); font-weight: 300; opacity: 0; animation: up 1.2s .7s var(--ease) forwards; }
.hero-cta { opacity: 0; animation: up 1.2s .9s var(--ease) forwards; }
.hero-cta a { font-size: 11px; letter-spacing: .32em; text-transform: uppercase; font-weight: 500; color: #fff; display: inline-flex; align-items: center; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--gold-lt); transition: gap .3s, color .3s; }
.hero-cta a::after { content: ""; display: inline-block; width: 48px; height: 1px; background: var(--gold-lt); transition: width .3s; }
.hero-cta a:hover { gap: 24px; color: var(--gold-lt); }
.hero-cta a:hover::after { width: 72px; }
.hero-badge { position: absolute; bottom: 30px; right: var(--pad); z-index: 2; font-size: 10px; letter-spacing: .35em; text-transform: uppercase; color: rgba(255,255,255,.75); opacity: 0; animation: in 2s 1.5s var(--ease) forwards; }
@keyframes up { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }
@keyframes in { to { opacity: 1; } }
@media (max-width: 700px) { .hero-badge { display: none; } }

/* ── Intro / chapter heads ── */
.chapter { padding: clamp(80px, 14vw, 180px) 0; }
.chapter.alt { background: var(--paper-2); }
.chapter.ink { background: var(--ink); color: var(--paper); }

.chapter-head {
  max-width: 780px; margin: 0 auto 80px; padding: 0 var(--pad); text-align: center;
}
.chapter-head .rule { max-width: 200px; margin-left: auto; margin-right: auto; margin-bottom: 30px; }
.chapter-head h2 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(34px, 5.2vw, 64px);
  max-width: 20ch; margin: 0 auto 22px;
  line-height: 1.06;
}
.chapter-head h2 em { font-style: italic; color: var(--crimson); }
.chapter.ink .chapter-head h2 em { color: var(--gold-lt); }
.chapter-head .lede { max-width: 60ch; margin: 0 auto; font-size: 17px; line-height: 1.85; font-weight: 300; color: #5c5243; }
.chapter.ink .chapter-head .lede { color: rgba(250,247,242,.72); }

/* ── 4-col collection grid ── */
.collection {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px;
  max-width: var(--max); margin: 0 auto; padding: 0 var(--pad);
}
.collection .item { color: inherit; transition: transform .6s var(--ease); }
.collection .item:hover { transform: translateY(-4px); }
.collection .item .ph { aspect-ratio: 3/4; overflow: hidden; }
.collection .item .ph img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); filter: saturate(.92); }
.collection .item:hover .ph img { transform: scale(1.06); }
.collection .item .body { padding: 18px 0 0; }
.collection .item .kind { font-size: 10px; letter-spacing: .3em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; display: block; }
.collection .item h3 { font-family: var(--serif); font-size: clamp(20px, 1.8vw, 26px); font-weight: 400; margin: 0 0 8px; }
.collection .item p { font-size: 13.5px; color: #5c5243; line-height: 1.65; margin: 0 0 12px; max-width: 36ch; }
.collection .item .more { font-size: 10px; letter-spacing: .3em; text-transform: uppercase; color: var(--crimson); display: inline-flex; align-items: center; gap: 10px; transition: gap .3s; }
.collection .item .more::after { content: "—"; }
.collection .item:hover .more { gap: 18px; }
@media (max-width: 1000px) { .collection { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .collection { grid-template-columns: 1fr; } }

/* ── Story split (alternating) ── */
.story {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 7vw, 110px);
  max-width: var(--max); margin: clamp(60px, 10vw, 120px) auto; padding: 0 var(--pad);
  align-items: center;
}
.story.reverse > :first-child { order: 2; }
.story .ph { aspect-ratio: 4/5; overflow: hidden; }
.story .ph img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.92); transition: transform 1.2s var(--ease); }
.story:hover .ph img { transform: scale(1.04); }
.story .txt .eyebrow { margin-bottom: 18px; display: inline-block; }
.story .txt h3 { font-size: clamp(30px, 4.2vw, 56px); font-weight: 400; margin: 8px 0 20px; max-width: 18ch; }
.story .txt h3 em { font-style: italic; color: var(--crimson); }
.story .txt .body { font-size: 16px; line-height: 1.85; color: var(--ink-soft); max-width: 48ch; }
.story .txt .cta { display: inline-flex; align-items: center; gap: 14px; margin-top: 28px; font-size: 11px; letter-spacing: .32em; text-transform: uppercase; font-weight: 500; color: var(--ink); padding-bottom: 4px; border-bottom: 1px solid var(--gold); transition: gap .3s, color .3s, border-color .3s; }
.story .txt .cta:hover { gap: 22px; color: var(--crimson); border-color: var(--crimson); }
@media (max-width: 900px) { .story, .story.reverse { grid-template-columns: 1fr; gap: 40px; } .story.reverse > :first-child { order: 0; } }

/* ── Editorial quote ── */
.editorial-quote { max-width: 900px; margin: 0 auto; padding: clamp(80px, 14vw, 160px) var(--pad); text-align: center; }
.editorial-quote p { font-family: var(--serif); font-style: italic; font-size: clamp(28px, 4vw, 48px); line-height: 1.25; max-width: 26ch; margin: 0 auto 30px; }
.editorial-quote p em { color: var(--crimson); font-weight: 500; }
.editorial-quote cite { font-style: normal; font-size: 11px; letter-spacing: .32em; text-transform: uppercase; color: var(--muted); }

/* ── Full-bleed destination ── */
.destination { position: relative; height: clamp(60vh, 82vh, 760px); 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; }
.destination::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.25), rgba(0,0,0,.55)); }
.destination .inner { position: relative; z-index: 2; max-width: 820px; padding: 0 var(--pad); }
.destination h2 { font-family: var(--serif); font-size: clamp(42px, 6vw, 80px); margin: 16px 0 20px; }
.destination h2 em { font-style: italic; color: var(--gold-lt); }
.destination .eyebrow { color: var(--gold-lt); margin-bottom: 18px; }

/* ── Contact ── */
.contact-section { background: var(--ink); color: var(--paper); padding: clamp(80px, 14vw, 160px) var(--pad); }
.contact-wrap { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.contact-wrap h2 { font-family: var(--serif); font-size: clamp(34px, 5vw, 56px); margin: 0 0 28px; max-width: 18ch; }
.contact-wrap h2 em { font-style: italic; color: var(--gold-lt); }
.contact-wrap .fs-tree { color: var(--gold-lt); margin-bottom: 14px; }
.contact-wrap .row { display: grid; grid-template-columns: 110px 1fr; gap: 24px; padding: 18px 0; border-top: 1px solid rgba(250,247,242,.1); font-size: 14px; }
.contact-wrap .row:last-child { border-bottom: 1px solid rgba(250,247,242,.1); }
.contact-wrap .row .k { font-size: 10px; letter-spacing: .3em; text-transform: uppercase; color: var(--gold-lt); padding-top: 3px; }
.contact-wrap .row .v { color: rgba(250,247,242,.85); line-height: 1.7; }
.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(.6) contrast(.95); }
@media (max-width: 900px) { .contact-wrap { grid-template-columns: 1fr; gap: 36px; } }

/* ── Page hero (secondary) ── */
.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; }
.page-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.4), rgba(0,0,0,.65)); }
.page-hero .wrap { position: relative; z-index: 2; max-width: 900px; padding: 0 var(--pad); }
.page-hero h1 { font-size: clamp(44px, 7vw, 92px); font-weight: 400; margin: 16px 0 0; font-family: var(--serif); }
.page-hero h1 em { 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; }
.prose h2 { font-family: var(--serif); font-size: clamp(26px, 3.5vw, 40px); font-weight: 400; margin: 2em 0 .6em; color: var(--crimson); }
.prose h3 { font-size: clamp(20px, 2.5vw, 28px); font-weight: 500; margin: 2em 0 .5em; }
.prose a { color: var(--crimson); border-bottom: 1px solid var(--line); }
.prose a:hover { border-color: var(--crimson); }

/* ── Footer ── */
.fs-footer { background: var(--ink); color: var(--paper); padding: 100px var(--pad) 40px; }
.fs-footer-top { max-width: var(--max); margin: 0 auto 60px; text-align: center; }
.fs-footer-top .fs-tree { color: var(--gold-lt); margin-bottom: 14px; }
.fs-footer-top .wm { font-family: var(--serif); font-size: 32px; letter-spacing: .22em; text-transform: uppercase; }
.fs-footer-top .tag { font-size: 10px; letter-spacing: .4em; text-transform: uppercase; color: rgba(250,247,242,.5); margin-top: 10px; }
.fs-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(250,247,242,.1); border-bottom: 1px solid rgba(250,247,242,.1); }
.fs-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); }
.fs-footer-grid ul { list-style: none; padding: 0; margin: 0; line-height: 2; font-size: 14px; }
.fs-footer-grid a { opacity: .7; }
.fs-footer-grid a:hover { opacity: 1; color: var(--gold-lt); }
.fs-footer-bot { max-width: var(--max); margin: 0 auto; padding-top: 30px; font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: rgba(250,247,242,.4); display: flex; justify-content: space-between; gap: 16px; }
@media (max-width: 900px) { .fs-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } .fs-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; }
