:root {
  --paper:     #f4ecd7;    /* warm cream */
  --paper-2:   #eadfc3;    /* deeper cream */
  --paper-3:   #fff8e9;    /* lightest ivory */
  --ink:       #1e3a3a;    /* deep teal */
  --ink-soft:  #2e4a4a;
  --ink-deeper:#132626;
  --muted:     #7d7363;
  --terracotta:#c26a3b;
  --terracotta-lt:#e08558;
  --warm-orange:#f2a365;
  --gold:      #b88d4a;
  --gold-lt:   #d9b880;
  --line:      #d6caae;
  --serif:     "Playfair Display", "Didot", Georgia, serif;
  --sans:      "Jost", 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.72; -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.08; letter-spacing: -0.005em; margin: 0 0 .5em; }

.bm-eyebrow { font-size: 11px; letter-spacing: .34em; text-transform: uppercase; color: var(--terracotta); font-weight: 500; }
.bm-vol { font-family: var(--serif); font-style: italic; font-size: 14px; color: var(--muted); }
.bm-seal { vertical-align: middle; color: var(--ink); }

/* ── Nav — centered brand, editorial, transparent then solid ── */
.bm-nav {
  position: sticky; top: 0; z-index: 80;
  background: var(--paper);
  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), background .3s;
}
.bm-nav.scrolled { padding: 14px var(--pad); box-shadow: 0 1px 0 var(--line), 0 8px 24px -18px rgba(30,58,58,.15); }
.bm-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; }
.bm-nav .left ul { justify-content: flex-start; }
.bm-nav .right { display: flex; justify-content: flex-end; align-items: center; gap: 24px; }
.bm-nav .brand { display: flex; flex-direction: column; align-items: center; gap: 4px; color: var(--ink); }
.bm-nav .brand .wm { font-family: var(--serif); font-size: 30px; letter-spacing: .04em; font-weight: 400; line-height: 1; font-style: italic; }
.bm-nav .brand .tag { font-size: 9px; letter-spacing: .5em; text-transform: uppercase; color: var(--terracotta); }
.bm-nav a { transition: color .25s; position: relative; }
.bm-nav .menu a:hover { color: var(--terracotta); }
.bm-nav .reserve { padding: 11px 24px; background: var(--ink); color: var(--paper); font-size: 11px; letter-spacing: .28em; text-transform: uppercase; transition: background .25s; }
.bm-nav .reserve:hover { background: var(--terracotta); color: var(--paper); }
.bm-burger { display: none; border: 0; background: transparent; font-size: 11px; letter-spacing: .24em; text-transform: uppercase; padding: 8px 10px; cursor: pointer; color: inherit; font-weight: 500; }
@media (max-width: 900px) {
  .bm-nav { grid-template-columns: 1fr auto; padding: 16px var(--pad); }
  .bm-nav .left, .bm-nav .menu { display: none; }
  .bm-nav .brand { align-items: flex-start; }
  .bm-nav .brand .tag { display: none; }
  .bm-nav .brand .wm { font-size: 24px; }
  .bm-burger { display: inline-block; }
}
.bm-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; }
.bm-panel.open { transform: translateY(0); visibility: visible; }
.bm-panel-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 36px; }
.bm-panel-head .wm { font-family: var(--serif); font-style: italic; font-size: 26px; }
.bm-panel .close { background: transparent; border: 0; color: var(--paper); font-size: 24px; cursor: pointer; }
.bm-panel ul { list-style: none; padding: 0; margin: 0; }
.bm-panel li { border-bottom: 1px solid rgba(244,236,215,.1); }
.bm-panel a { display: block; padding: 22px 0; font-family: var(--serif); font-style: italic; font-size: clamp(28px, 6vw, 38px); color: var(--paper); }
.bm-panel a:hover { color: var(--warm-orange); }

/* ── Hero — full bleed with bottom-left overlay + seal in corner ── */
.hero {
  position: relative;
  min-height: 92vh; overflow: hidden; color: #fff;
  display: flex; align-items: flex-end;
}
.hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transform: scale(1.03); animation: pan 28s ease-in-out infinite alternate; filter: saturate(.92) contrast(1.02); }
@keyframes pan { from { transform: scale(1.03) translate(0,0); } to { transform: scale(1.1) translate(-2%, -1%); } }
.hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(170deg, rgba(30,58,58,.35) 0%, rgba(30,58,58,.1) 40%, rgba(19,38,38,.85) 100%); }
.hero-inner { position: relative; z-index: 2; padding: 0 var(--pad) clamp(80px, 14vh, 150px); max-width: var(--max); width: 100%; margin: 0 auto; }
.hero .vol { font-family: var(--serif); font-style: italic; font-size: 13px; letter-spacing: .12em; color: var(--warm-orange); margin-bottom: 22px; opacity: 0; animation: up 1s .3s var(--ease) forwards; display: inline-block; padding-bottom: 4px; border-bottom: 1px solid var(--warm-orange); }
.hero h1 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(48px, 9vw, 120px);
  line-height: 0.98;
  max-width: 16ch; margin: 0 0 26px;
  color: #fff;
  opacity: 0; animation: up 1.2s .5s var(--ease) forwards;
}
.hero h1 em { font-style: italic; color: var(--warm-orange); font-weight: 400; }
.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.2s .7s var(--ease) forwards; }
.hero .ctas { display: flex; gap: 28px; align-items: center; flex-wrap: wrap; opacity: 0; animation: up 1.2s .9s var(--ease) forwards; }
.bm-btn { display: inline-flex; align-items: center; gap: 14px; font-size: 11px; letter-spacing: .32em; text-transform: uppercase; font-weight: 500; padding: 14px 0; color: #fff; border-bottom: 1px solid var(--warm-orange); transition: gap .3s var(--ease), color .3s, border-color .3s; }
.bm-btn:hover { gap: 22px; color: var(--warm-orange); }
.bm-btn.filled { padding: 14px 30px; background: var(--terracotta); color: var(--paper); border: 1px solid var(--terracotta); border-bottom-color: var(--terracotta); }
.bm-btn.filled:hover { background: var(--terracotta-lt); border-color: var(--terracotta-lt); color: var(--paper); }
.hero-seal { position: absolute; top: clamp(30px, 6vh, 70px); right: var(--pad); z-index: 2; color: var(--warm-orange); opacity: 0; animation: in 2s 1s var(--ease) forwards; }
.hero-seal .bm-seal { animation: spin 40s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes up { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
@keyframes in { to { opacity: 1; } }
@media (max-width: 700px) { .hero-seal { display: none; } }

/* ── Chapter / section ── */
.chapter { padding: clamp(80px, 14vw, 180px) 0; }
.chapter.ivory { background: var(--paper-3); }
.chapter.ink { background: var(--ink); color: var(--paper); }
.chapter.ink h2, .chapter.ink h3, .chapter.ink h4 { color: var(--paper); }

.chapter-head { max-width: 1000px; margin: 0 auto 80px; padding: 0 var(--pad); text-align: center; }
.chapter-head .vol-line { display: inline-flex; align-items: center; gap: 14px; font-size: 11px; letter-spacing: .36em; text-transform: uppercase; color: var(--terracotta); margin-bottom: 22px; }
.chapter-head .vol-line::before, .chapter-head .vol-line::after { content: ""; display: inline-block; width: 36px; height: 1px; background: var(--terracotta); }
.chapter.ink .chapter-head .vol-line { color: var(--warm-orange); }
.chapter.ink .chapter-head .vol-line::before, .chapter.ink .chapter-head .vol-line::after { background: var(--warm-orange); }
.chapter-head h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(36px, 5.6vw, 72px); max-width: 22ch; margin: 0 auto 20px; line-height: 1.05; }
.chapter-head h2 em { font-style: italic; color: var(--terracotta); }
.chapter.ink .chapter-head h2 em { color: var(--warm-orange); }
.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(244,236,215,.74); }

/* ── Journey cards — image left, narrative right ── */
.journey-card {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(40px, 8vw, 120px);
  max-width: var(--max); margin: 0 auto clamp(80px, 14vw, 160px); padding: 0 var(--pad);
  align-items: end;
}
.journey-card.reverse { grid-template-columns: 1fr 1.2fr; }
.journey-card.reverse > :first-child { order: 2; }
.journey-card .ph { aspect-ratio: 5/6; overflow: hidden; position: relative; }
.journey-card .ph img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.95); transition: transform 1.4s var(--ease); }
.journey-card:hover .ph img { transform: scale(1.05); }
.journey-card .ph .stamp { position: absolute; top: 20px; left: 20px; background: var(--paper); color: var(--ink); font-family: var(--serif); font-style: italic; font-size: 13px; padding: 7px 14px; border: 1px solid var(--terracotta); letter-spacing: .06em; transform: rotate(-3deg); }
.journey-card .txt { padding-bottom: 20px; }
.journey-card .issue { font-family: var(--serif); font-style: italic; font-size: 14px; color: var(--terracotta); margin-bottom: 10px; display: block; }
.journey-card h3 { font-size: clamp(32px, 4.5vw, 60px); font-weight: 400; margin: 4px 0 22px; max-width: 16ch; }
.journey-card h3 em { font-style: italic; color: var(--terracotta); }
.journey-card .body { font-size: 16px; line-height: 1.85; color: var(--ink-soft); max-width: 48ch; }
.journey-card .cta { display: inline-flex; align-items: center; gap: 14px; margin-top: 30px; font-size: 11px; letter-spacing: .32em; text-transform: uppercase; font-weight: 500; color: var(--ink); border-bottom: 1px solid var(--ink); padding-bottom: 4px; transition: gap .3s, color .3s, border-color .3s; }
.journey-card .cta:hover { gap: 22px; color: var(--terracotta); border-color: var(--terracotta); }
@media (max-width: 900px) { .journey-card, .journey-card.reverse { grid-template-columns: 1fr; gap: 36px; } .journey-card.reverse > :first-child { order: 0; } }

/* ── Destination 3-col cards ── */
.dests { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }
.dest {
  color: var(--ink); position: relative; overflow: hidden; aspect-ratio: 3/4;
}
.dest img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--ease), filter 1.4s var(--ease); filter: saturate(.92); }
.dest::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(19,38,38,.85) 100%); }
.dest .body { position: absolute; left: 0; right: 0; bottom: 0; padding: 28px; color: var(--paper); z-index: 2; }
.dest .issue { font-family: var(--serif); font-style: italic; font-size: 12px; color: var(--warm-orange); margin-bottom: 8px; display: block; }
.dest h4 { font-family: var(--serif); font-size: clamp(22px, 2.4vw, 30px); font-weight: 400; margin: 0 0 8px; color: var(--paper); }
.dest h4 em { font-style: italic; }
.dest p { font-size: 13.5px; line-height: 1.65; color: rgba(244,236,215,.85); margin: 0 0 12px; max-width: 36ch; }
.dest .more { font-size: 10px; letter-spacing: .32em; text-transform: uppercase; display: inline-flex; align-items: center; gap: 10px; color: var(--warm-orange); }
.dest:hover img { transform: scale(1.08); filter: saturate(1.05); }
@media (max-width: 900px) { .dests { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .dests { grid-template-columns: 1fr; } }

/* ── Pull quote — framed with vintage stamp ── */
.bm-quote { max-width: 960px; margin: 0 auto; padding: clamp(80px, 14vw, 160px) var(--pad); text-align: center; position: relative; }
.bm-quote .bm-seal { color: var(--terracotta); margin-bottom: 30px; }
.bm-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 30px; color: var(--ink); }
.bm-quote p em { color: var(--terracotta); }
.bm-quote cite { font-style: normal; font-size: 11px; letter-spacing: .32em; text-transform: uppercase; color: var(--muted); }

/* ── Rail strip — horizontal scrolling moments ── */
.rail { padding: 80px 0; background: var(--ink); color: var(--paper); }
.rail-head { display: flex; justify-content: space-between; align-items: end; max-width: var(--max); margin: 0 auto 40px; padding: 0 var(--pad); gap: 30px; }
.rail-head h3 { font-family: var(--serif); font-size: clamp(28px, 3.6vw, 44px); margin: 0; font-weight: 400; color: var(--paper); }
.rail-head h3 em { font-style: italic; color: var(--warm-orange); }
.rail-head .meta { font-size: 11px; letter-spacing: .3em; text-transform: uppercase; color: var(--warm-orange); }
.rail-track { display: flex; gap: 24px; overflow-x: auto; padding: 0 var(--pad) 20px; scroll-snap-type: x mandatory; scrollbar-width: thin; scrollbar-color: var(--warm-orange) var(--ink); }
.rail-track::-webkit-scrollbar { height: 4px; }
.rail-track::-webkit-scrollbar-track { background: var(--ink-deeper); }
.rail-track::-webkit-scrollbar-thumb { background: var(--warm-orange); }
.rail-card { flex: 0 0 320px; scroll-snap-align: start; display: flex; flex-direction: column; }
.rail-card .ph { aspect-ratio: 4/5; overflow: hidden; }
.rail-card .ph img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.95); }
.rail-card .body { padding: 20px 4px 0; }
.rail-card h5 { font-family: var(--serif); font-style: italic; font-size: 22px; font-weight: 400; margin: 0 0 6px; color: var(--paper); }
.rail-card p { font-size: 13.5px; line-height: 1.65; color: rgba(244,236,215,.72); margin: 0; }

/* ── Contact ── */
.contact-section { background: var(--paper-2); padding: clamp(80px, 12vw, 160px) var(--pad); }
.contact-wrap { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 70px; }
.contact-wrap .bm-seal { color: var(--terracotta); margin-bottom: 20px; }
.contact-wrap h2 { font-family: var(--serif); font-size: clamp(34px, 5vw, 60px); margin: 0 0 28px; max-width: 18ch; }
.contact-wrap h2 em { font-style: italic; color: var(--terracotta); }
.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: 11px; letter-spacing: .3em; text-transform: uppercase; color: var(--terracotta); padding-top: 3px; }
.contact-wrap .row .v { color: var(--ink-soft); line-height: 1.75; }
.contact-wrap .row .v a:hover { color: var(--terracotta); }
.contact-wrap .map { aspect-ratio: 4/5; }
.contact-wrap .map iframe { width: 100%; height: 100%; border: 0; filter: sepia(.25) saturate(.85); }
@media (max-width: 900px) { .contact-wrap { 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: flex-start; text-align: left; }
.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(120deg, rgba(19,38,38,.55), rgba(19,38,38,.2)); }
.page-hero .wrap { position: relative; z-index: 2; max-width: var(--max); padding: 0 var(--pad); }
.page-hero .vol { font-family: var(--serif); font-style: italic; font-size: 14px; color: var(--warm-orange); margin-bottom: 8px; display: block; }
.page-hero h1 { font-family: var(--serif); font-size: clamp(46px, 7.5vw, 98px); margin: 10px 0; font-weight: 400; color: #fff; max-width: 16ch; }
.page-hero h1 em { font-style: italic; color: var(--warm-orange); }
.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(--ink-soft); }
.prose h2 { font-family: var(--serif); font-size: clamp(26px, 3.5vw, 42px); font-weight: 400; font-style: italic; margin: 2em 0 .6em; color: var(--terracotta); }
.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(--terracotta); border-bottom: 1px solid var(--line); padding-bottom: 2px; }

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