:root {
  --paper: #ffffff;
  --paper-2: #f7f5f2;
  --ink: #0a0a0a;
  --ink-soft: #2c2c2c;
  --muted: #8a8784;
  --line: #e5e0d8;
  --blush: #e8b8b8;
  --blush-lt: #f5d5d5;
  --serif: "Playfair Display", "Didot", "Times New Roman", serif;
  --sans: "Inter", system-ui, sans-serif;
  --pad: clamp(24px, 6vw, 100px);
  --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: 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: 300; line-height: 1.05; letter-spacing: -0.005em; margin: 0 0 .5em; }

.cb-horse { vertical-align: middle; color: var(--ink); }
.cb-eyebrow { font-family: var(--sans); font-size: 10px; letter-spacing: .48em; text-transform: uppercase; color: var(--ink); font-weight: 500; }
.cb-eyebrow.blush { color: var(--blush); }

/* ── Nav — ultra-minimal, centered ── */
.cb-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 80;
  padding: 28px var(--pad);
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center;
  color: #fff;
  transition: background .5s var(--ease), color .5s var(--ease), padding .3s var(--ease);
}
.cb-nav.scrolled { background: rgba(255,255,255,.98); backdrop-filter: blur(16px); color: var(--ink); border-bottom: 1px solid var(--line); padding: 14px var(--pad); }
.cb-nav.light { color: var(--ink); }
.cb-nav ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 40px; font-size: 10.5px; letter-spacing: .34em; text-transform: uppercase; font-weight: 400; }
.cb-nav .left ul { justify-content: flex-start; }
.cb-nav .right { display: flex; justify-content: flex-end; align-items: center; gap: 32px; }
.cb-nav .brand { display: flex; flex-direction: column; align-items: center; gap: 4px; color: inherit; }
.cb-nav .brand .wm { font-family: var(--serif); font-style: italic; font-weight: 300; font-size: 22px; letter-spacing: .04em; line-height: 1; }
.cb-nav .brand .tag { font-size: 8.5px; letter-spacing: .6em; text-transform: uppercase; }
.cb-nav a { transition: opacity .3s; opacity: .85; }
.cb-nav a:hover { opacity: 1; }
.cb-nav .reserve { font-size: 10.5px; letter-spacing: .34em; text-transform: uppercase; }
.cb-burger { display: none; border: 0; background: transparent; color: inherit; font-size: 10px; letter-spacing: .34em; text-transform: uppercase; padding: 8px; cursor: pointer; }
@media (max-width: 900px) {
  .cb-nav { grid-template-columns: 1fr auto; padding: 20px var(--pad); }
  .cb-nav .left, .cb-nav .menu { display: none; }
  .cb-nav .brand { align-items: flex-start; }
  .cb-nav .brand .wm { font-size: 20px; }
  .cb-nav .brand .tag { display: none; }
  .cb-burger { display: inline-block; }
}
.cb-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 .6s var(--ease); visibility: hidden; overflow-y: auto; }
.cb-panel.open { transform: translateY(0); visibility: visible; }
.cb-panel-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 50px; }
.cb-panel-head .wm { font-family: var(--serif); font-style: italic; font-size: 24px; }
.cb-panel .close { background: transparent; border: 0; color: var(--paper); font-size: 24px; cursor: pointer; }
.cb-panel ul { list-style: none; padding: 0; margin: 0; text-align: center; }
.cb-panel a { display: block; padding: 24px 0; font-family: var(--serif); font-style: italic; font-weight: 300; font-size: clamp(32px, 8vw, 50px); color: var(--paper); }
.cb-panel a:hover { color: var(--blush); }

/* ── Hero — ultra-tall centered ── */
.hero {
  position: relative; min-height: 100vh; overflow: hidden; color: #fff;
  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(.85) contrast(1.05); }
.hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,10,10,.35) 0%, rgba(10,10,10,.1) 45%, rgba(10,10,10,.55) 100%); }
.hero-inner { position: relative; z-index: 2; max-width: 1100px; padding: 0 var(--pad); }
.hero .cb-horse { color: var(--blush-lt); margin-bottom: 40px; opacity: 0; animation: up 1.2s .3s var(--ease) forwards; }
.hero .maison { font-family: var(--serif); font-style: italic; font-weight: 300; font-size: 16px; color: var(--blush-lt); margin-bottom: 12px; opacity: 0; animation: up 1.2s .45s var(--ease) forwards; }
.hero h1 {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(52px, 10vw, 152px);
  line-height: .95; letter-spacing: -0.015em;
  margin: 0 0 28px; color: #fff;
  max-width: 18ch;
  opacity: 0; animation: up 1.3s .6s var(--ease) forwards;
}
.hero h1 em { font-style: italic; color: var(--blush-lt); font-weight: 300; }
.hero .sub { font-family: var(--sans); font-size: 15px; max-width: 46ch; margin: 0 auto 42px; color: rgba(255,255,255,.88); font-weight: 300; opacity: 0; animation: up 1.3s .8s var(--ease) forwards; }
.hero .cta { display: inline-block; padding: 16px 38px; border: 1px solid rgba(255,255,255,.7); color: #fff; font-size: 11px; letter-spacing: .42em; text-transform: uppercase; font-weight: 400; transition: all .35s var(--ease); opacity: 0; animation: up 1.3s 1s var(--ease) forwards; }
.hero .cta:hover { background: #fff; color: var(--ink); border-color: #fff; }
.hero-loc { position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%); z-index: 2; font-size: 10px; letter-spacing: .5em; text-transform: uppercase; color: rgba(255,255,255,.7); font-weight: 400; 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; } }

/* ── Ultra-centered chapter ── */
.chapter { padding: clamp(100px, 18vw, 220px) 0; text-align: center; }
.chapter.ink { background: var(--ink); color: var(--paper); }
.chapter.ink h2 { color: var(--paper); }

.chapter-inner { max-width: 960px; margin: 0 auto; padding: 0 var(--pad); }
.chapter-inner .cb-horse { color: var(--ink); margin-bottom: 30px; }
.chapter.ink .chapter-inner .cb-horse { color: var(--blush-lt); }
.chapter-inner h2 {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(38px, 6.5vw, 92px);
  line-height: 1.03;
  max-width: 18ch; margin: 14px auto 28px;
}
.chapter-inner h2 em { font-style: italic; color: var(--blush); }
.chapter.ink .chapter-inner h2 em { color: var(--blush-lt); }
.chapter-inner .lede { max-width: 58ch; margin: 0 auto; font-size: 16.5px; line-height: 1.95; color: var(--ink-soft); font-weight: 300; }
.chapter.ink .chapter-inner .lede { color: rgba(255,255,255,.72); }

/* ── Trio centered cards ── */
.cb-trio { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; max-width: 100%; margin: clamp(60px, 10vw, 120px) 0 0; }
.cb-trio-item { position: relative; aspect-ratio: 3/4; overflow: hidden; color: #fff; text-align: center; display: flex; align-items: flex-end; justify-content: center; padding: 40px 32px; }
.cb-trio-item img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 2s var(--ease); filter: saturate(.85); }
.cb-trio-item:hover img { transform: scale(1.08); }
.cb-trio-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,10,10,.15) 30%, rgba(10,10,10,.85) 100%); }
.cb-trio-item > div { position: relative; z-index: 2; }
.cb-trio-item .label { font-family: var(--sans); font-size: 10px; letter-spacing: .42em; text-transform: uppercase; color: var(--blush-lt); margin-bottom: 14px; display: block; }
.cb-trio-item h4 { font-family: var(--serif); font-style: italic; font-weight: 300; font-size: clamp(26px, 2.6vw, 36px); margin: 0 0 16px; color: #fff; }
.cb-trio-item p { font-size: 13px; color: rgba(255,255,255,.8); line-height: 1.75; margin: 0 0 18px; max-width: 28ch; }
.cb-trio-item .more { font-size: 10px; letter-spacing: .42em; text-transform: uppercase; color: #fff; border-bottom: 1px solid currentColor; padding-bottom: 3px; display: inline-block; }
@media (max-width: 900px) { .cb-trio { grid-template-columns: 1fr; } }

/* ── Portrait (centered tall, minimal) ── */
.portrait { display: grid; grid-template-columns: 1fr 1fr; }
.portrait .ph { aspect-ratio: 3/4; overflow: hidden; }
.portrait .ph img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.85) contrast(1.02); }
.portrait .txt { background: var(--paper); padding: clamp(60px, 10vw, 140px); display: flex; flex-direction: column; justify-content: center; text-align: center; align-items: center; }
.portrait .txt .cb-horse { color: var(--ink); margin-bottom: 24px; }
.portrait .txt .cb-eyebrow { margin-bottom: 20px; }
.portrait .txt h3 { font-family: var(--serif); font-weight: 300; font-size: clamp(32px, 4.5vw, 60px); max-width: 15ch; margin: 0 0 22px; line-height: 1.05; }
.portrait .txt h3 em { font-style: italic; color: var(--blush); }
.portrait .txt p { font-size: 15px; line-height: 1.9; color: var(--ink-soft); max-width: 40ch; }
.portrait .txt .cta { margin-top: 30px; font-size: 11px; letter-spacing: .36em; text-transform: uppercase; padding-bottom: 4px; border-bottom: 1px solid var(--ink); }
.portrait.reverse .ph { order: 2; }
@media (max-width: 900px) { .portrait, .portrait.reverse { grid-template-columns: 1fr; } .portrait.reverse .ph { order: 0; } }

/* ── Haute quote — centered italic, blush hairline ── */
.cb-quote { text-align: center; padding: clamp(100px, 18vw, 220px) var(--pad); max-width: 1000px; margin: 0 auto; }
.cb-quote::before { content: ""; display: block; width: 60px; height: 1px; background: var(--blush); margin: 0 auto 40px; }
.cb-quote p { font-family: var(--serif); font-style: italic; font-weight: 300; font-size: clamp(30px, 4.5vw, 60px); line-height: 1.2; max-width: 22ch; margin: 0 auto 32px; color: var(--ink); letter-spacing: -0.005em; }
.cb-quote p em { color: var(--blush); }
.cb-quote cite { font-style: normal; font-size: 10px; letter-spacing: .42em; text-transform: uppercase; color: var(--muted); }

/* ── Collection — 4 images side by side, names below ── */
.cb-collection { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }
.cb-collection .item { position: relative; aspect-ratio: 3/4; overflow: hidden; }
.cb-collection .item img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.6s var(--ease); filter: saturate(.85); }
.cb-collection .item:hover img { transform: scale(1.08); }
.cb-collection .item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,10,10,0) 55%, rgba(10,10,10,.8) 100%); }
.cb-collection .item .body { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 28px; color: var(--paper); text-align: center; }
.cb-collection .item .body h5 { font-family: var(--serif); font-style: italic; font-weight: 300; font-size: clamp(18px, 1.8vw, 24px); margin: 0 0 6px; color: #fff; }
.cb-collection .item .body p { font-size: 11px; letter-spacing: .34em; text-transform: uppercase; color: var(--blush-lt); margin: 0; }
@media (max-width: 900px) { .cb-collection { grid-template-columns: 1fr 1fr; } }

/* ── Contact ── */
.cb-contact { padding: clamp(100px, 18vw, 200px) var(--pad); text-align: center; background: var(--paper-2); }
.cb-contact .cb-horse { color: var(--ink); margin-bottom: 24px; }
.cb-contact h2 { font-family: var(--serif); font-weight: 300; font-size: clamp(36px, 5.5vw, 72px); max-width: 16ch; margin: 0 auto 30px; }
.cb-contact h2 em { font-style: italic; color: var(--blush); }
.cb-contact .rows { display: grid; grid-template-columns: repeat(3, 1fr); gap: 50px; max-width: 900px; margin: 60px auto 0; text-align: left; }
.cb-contact .rows .k { font-size: 10px; letter-spacing: .42em; text-transform: uppercase; color: var(--blush); margin-bottom: 12px; font-weight: 500; }
.cb-contact .rows .v { font-family: var(--serif); font-weight: 300; font-size: 18px; line-height: 1.6; color: var(--ink); }
.cb-contact .rows .v a:hover { color: var(--blush); }
.cb-contact .map { max-width: 1000px; margin: 60px auto 0; aspect-ratio: 16/8; overflow: hidden; }
.cb-contact .map iframe { width: 100%; height: 100%; border: 0; filter: saturate(.6); }
@media (max-width: 800px) { .cb-contact .rows { grid-template-columns: 1fr; gap: 30px; text-align: center; } }

/* ── Page hero ── */
.page-hero { position: relative; height: 70vh; min-height: 500px; 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(.85); }
.page-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,10,10,.35), rgba(10,10,10,.65)); }
.page-hero .wrap { position: relative; z-index: 2; max-width: 900px; padding: 0 var(--pad); }
.page-hero .cb-horse { color: var(--blush-lt); margin-bottom: 20px; }
.page-hero h1 { font-family: var(--serif); font-weight: 300; font-size: clamp(48px, 8vw, 108px); margin: 0; color: #fff; }
.page-hero h1 em { font-style: italic; color: var(--blush-lt); }
.prose { max-width: 780px; margin: 0 auto; padding: clamp(100px, 15vw, 160px) var(--pad); font-size: 17px; line-height: 2; font-weight: 300; color: var(--ink-soft); }
.prose h2 { font-family: var(--serif); font-weight: 300; font-style: italic; font-size: clamp(28px, 4vw, 46px); margin: 2em 0 .6em; color: var(--blush); }
.prose h3 { font-family: var(--serif); font-weight: 300; font-size: clamp(22px, 2.8vw, 32px); margin: 2em 0 .5em; color: var(--ink); }
.prose a { color: var(--blush); border-bottom: 1px solid var(--line); }

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

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