:root {
  --bg: #dcdcd8; --card: #f7f6f3; --ink: #211f1c; --muted: #6b665e; --faint: #a49e93;
  --line: rgba(33,31,28,.12); --hair: rgba(33,31,28,.08); --accent: #9a8c6d; --dark: #211f1c; --dark-text: #ece7dd;
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --ease: cubic-bezier(.22,.61,.36,1);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { background: var(--bg); color: var(--ink); font-family: var(--sans); font-size: 16px; line-height: 1.65; letter-spacing: .002em; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--accent); color: #fff; }
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 32px; }
.narrow { max-width: 760px; }
section { padding: 128px 0; }
[id] { scroll-margin-top: 90px; }

.eyebrow { font-size: 11px; letter-spacing: .34em; text-transform: uppercase; color: var(--accent); font-weight: 500; }
.num { font-family: var(--serif); font-style: italic; color: var(--faint); font-size: 15px; }
h2 { font-family: var(--serif); font-weight: 500; letter-spacing: -.015em; font-size: clamp(36px, 5.5vw, 62px); line-height: 1.02; }
.lede { color: var(--muted); }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; } .reveal.d3 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

.head { position: relative; display: flex; align-items: baseline; gap: 14px; margin-bottom: 52px; }
.head .eyebrow { flex-shrink: 0; position: relative; z-index: 1; }
.head .rule { flex: 1; height: 1px; background: var(--hair); }
.head h2 { margin-top: 6px; }
/* Oversized ghost word behind each section head (editorial, à la the greats) */
.head[data-ghost]::before { content: attr(data-ghost); position: absolute; right: 0; top: -0.6em; font-family: var(--serif); font-style: italic; font-weight: 500; font-size: clamp(70px, 13vw, 172px); line-height: 1; letter-spacing: -.03em; color: rgba(33,31,28,.055); pointer-events: none; user-select: none; white-space: nowrap; }

/* Marquee keyword strip */
.marquee { overflow: hidden; border-top: 1px solid var(--hair); border-bottom: 1px solid var(--hair); padding: 20px 0; }
.marquee-track { display: inline-flex; align-items: center; gap: 40px; white-space: nowrap; will-change: transform; animation: marquee 42s linear infinite; }
.marquee-track span { font-family: var(--serif); font-style: italic; font-size: clamp(22px, 3.2vw, 38px); color: var(--muted); }
.marquee-track i { color: var(--accent); font-style: normal; font-size: 14px; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Cinematic hero — slow Ken Burns drift */
.hero-img img { animation: kenburns 22s ease-in-out infinite alternate; }
@keyframes kenburns { from { transform: scale(1); } to { transform: scale(1.075); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } .hero-full-img { animation: none; } }

/* NAV */
.topnav { position: fixed; inset: 0 0 auto 0; z-index: 50; display: flex; align-items: center; justify-content: space-between; padding: 18px 32px; transition: padding .3s var(--ease), background .3s, box-shadow .3s, border-color .3s; border-bottom: 1px solid transparent; }
.topnav.scrolled, .topnav.solid { padding: 12px 32px; background: rgba(250,249,246,.9); backdrop-filter: blur(16px); border-color: rgba(33,31,28,.06); box-shadow: 0 6px 24px -14px rgba(33,31,28,.35); }
.topnav .name { font-family: var(--serif); font-size: 22px; font-weight: 500; letter-spacing: .04em; }
.topnav nav { display: flex; align-items: center; gap: 30px; }
.topnav nav a.link { position: relative; color: var(--ink); font-size: 13px; letter-spacing: .04em; opacity: .72; transition: opacity .2s; }
.topnav nav a.link::after { content: ""; position: absolute; left: 0; bottom: -4px; width: 100%; height: 1px; background: currentColor; transform: scaleX(0); transform-origin: right; transition: transform .38s var(--ease); }
.topnav nav a.link:hover { opacity: 1; }
.topnav nav a.link:hover::after { transform: scaleX(1); transform-origin: left; }
.topnav .navcta { border: 1px solid var(--ink); border-radius: 999px; padding: 8px 18px; font-size: 12.5px; letter-spacing: .04em; transition: background .25s var(--ease), color .25s; }
.topnav .navcta:hover { background: var(--ink); color: var(--bg); }

/* Scroll-progress bar (injected by site.js) */
.scrollprog { position: fixed; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--accent), var(--ink)); transform: scaleX(0); transform-origin: left; z-index: 60; will-change: transform; }

/* Mobile menu — hamburger + full-screen overlay (injected by site.js) */
.navtoggle { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 30px; height: 30px; background: transparent; border: none; cursor: pointer; padding: 0; z-index: 60; }
.navtoggle span { display: block; height: 1.5px; width: 24px; margin-left: auto; background: var(--ink); transition: transform .35s var(--ease), opacity .25s; }
.navtoggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.navtoggle.open span:nth-child(2) { opacity: 0; }
.navtoggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.mobilemenu { position: fixed; inset: 0; z-index: 55; background: rgba(220,220,216,.97); backdrop-filter: blur(22px); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; opacity: 0; pointer-events: none; transition: opacity .4s var(--ease); }
.mobilemenu.open { opacity: 1; pointer-events: auto; }
.mobilemenu a { opacity: 0; transform: translateY(12px); transition: opacity .5s var(--ease), transform .5s var(--ease); }
.mobilemenu.open a { opacity: 1; transform: none; }
.mobilemenu a.link { font-family: var(--serif); font-size: 32px; color: var(--ink); padding: 9px; letter-spacing: -.01em; }
.mobilemenu a.navcta { margin-top: 20px; border: 1px solid var(--ink); border-radius: 999px; padding: 12px 26px; font-size: 14px; letter-spacing: .04em; }
.mobilemenu.open a:nth-child(1) { transition-delay: .06s } .mobilemenu.open a:nth-child(2) { transition-delay: .12s } .mobilemenu.open a:nth-child(3) { transition-delay: .18s } .mobilemenu.open a:nth-child(4) { transition-delay: .24s } .mobilemenu.open a:nth-child(5) { transition-delay: .3s } .mobilemenu.open a:nth-child(6) { transition-delay: .36s }

/* HERO — full-bleed cinematic */
.hero-full { position: relative; height: 100vh; min-height: 640px; overflow: hidden; display: flex; align-items: center; }
.hero-full-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 34%; animation: kenburns 26s ease-in-out infinite alternate; }
.hero-full-scrim { position: absolute; inset: 0; background: linear-gradient(96deg, var(--bg) 3%, rgba(220,220,216,.88) 24%, rgba(220,220,216,.4) 46%, rgba(220,220,216,0) 68%); }
.hero-full-scrim::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(220,220,216,.55), transparent 32%); }
.hero-full-inner { position: relative; z-index: 2; width: 100%; }
.hero-full-inner .eyebrow { margin-bottom: 24px; }
.hero-full h1 { font-family: var(--serif); font-weight: 500; line-height: .9; font-size: clamp(64px, 12vw, 168px); letter-spacing: -.02em; }
.hero-full .tagline { font-family: var(--serif); font-style: italic; font-size: clamp(22px, 3vw, 34px); color: var(--muted); margin-top: 20px; }
.hero-full .lede { max-width: 40ch; margin-top: 26px; font-size: 16.5px; color: var(--muted); }
.hero-social { display: flex; align-items: center; gap: 16px; margin-top: 40px; }
.hero-social a { font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--ink); position: relative; padding-bottom: 3px; transition: color .25s; }
.hero-social a::after { content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 1px; background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease); }
.hero-social a:hover::after { transform: scaleX(1); }
.hero-social span { color: var(--faint); }
.hero-cap { position: absolute; right: 28px; bottom: 32px; z-index: 2; background: rgba(255,253,250,.9); backdrop-filter: blur(8px); border: 1px solid var(--hair); padding: 12px 18px; border-radius: 6px; font-family: var(--serif); font-style: italic; font-size: 16px; color: var(--ink); box-shadow: 0 20px 40px -24px rgba(33,31,28,.5); }
.scrollcue { position: absolute; left: 32px; bottom: 26px; font-size: 11px; letter-spacing: .3em; text-transform: uppercase; color: var(--faint); display: flex; align-items: center; gap: 10px; }
.scrollcue .l { width: 40px; height: 1px; background: var(--faint); animation: cue 2.4s var(--ease) infinite; transform-origin: left; }
@keyframes cue { 0%,100% { transform: scaleX(.4); opacity: .5 } 50% { transform: scaleX(1); opacity: 1 } }

/* MANIFESTO / dark bands */
.manifesto { background: var(--dark); color: var(--dark-text); text-align: center; }
.manifesto .inner { max-width: 900px; margin: 0 auto; padding: 0 32px; }
.manifesto .eyebrow { color: var(--accent); }
.manifesto p { font-family: var(--serif); font-weight: 400; font-size: clamp(28px, 4.6vw, 52px); line-height: 1.24; margin-top: 30px; letter-spacing: -.01em; }
.manifesto .sig { font-family: var(--serif); font-style: italic; font-size: 18px; color: var(--faint); margin-top: 34px; }

/* THE WORLD */
.block { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 72px; margin-bottom: 120px; }
.block:last-child { margin-bottom: 0; }
.block.flip .block-img { order: 2; }
.block-img { position: relative; aspect-ratio: 5/6; overflow: hidden; border-radius: 4px; }
.block-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.block-img:hover img { transform: scale(1.045); }
.block .num { display: block; font-family: var(--serif); font-style: italic; font-size: clamp(38px, 4.6vw, 58px); line-height: 1; color: var(--accent); opacity: .4; margin-bottom: 16px; letter-spacing: 0; }
.block .num::after { content: ""; display: block; width: 34px; height: 1px; background: var(--line); margin-top: 18px; }
.block h3 { font-family: var(--serif); font-weight: 500; font-size: clamp(28px, 3.6vw, 42px); line-height: 1.05; margin-bottom: 18px; letter-spacing: -.01em; }
.block p { color: var(--muted); font-size: 17px; max-width: 42ch; }

/* VALUES */
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--hair); border: 1px solid var(--hair); border-radius: 4px; overflow: hidden; }
.values .v { background: var(--bg); padding: 40px 28px; text-align: center; }
.values .k { font-family: var(--serif); font-size: 26px; margin-bottom: 10px; }
.values p { color: var(--muted); font-size: 14.5px; }

/* GALLERY */
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.grid figure { position: relative; aspect-ratio: 4/5; overflow: hidden; border-radius: 4px; background: var(--hair); cursor: zoom-in; }
.grid img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.grid figure::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(33,31,28,.18), transparent 40%); opacity: 0; transition: opacity .5s; }
.grid figure:hover img { transform: scale(1.06); }
.grid figure:hover::after { opacity: 1; }

/* COLLECTIONS */
.cols { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.col { display: block; }
.col .thumb { position: relative; aspect-ratio: 3/4; overflow: hidden; border-radius: 4px; margin-bottom: 14px; }
.col .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.col:hover .thumb img { transform: scale(1.06); }
.col .cname { font-family: var(--serif); font-size: 21px; }
.col .cdesc { font-size: 12px; color: var(--muted); margin-top: 2px; letter-spacing: .01em; }

/* Tactile hover-lift on card-like tiles (premium micro-interaction) */
.col, .jcard, .edit-card { transition: transform .55s var(--ease); }
.col:hover, .jcard:hover, .edit-card:hover { transform: translateY(-5px); }
.values .v { transition: background .4s var(--ease); }
.values .v:hover { background: var(--card); }

/* JOURNAL teaser (home) + list + article */
.teaser { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.jcard { display: block; }
.jcard .jthumb { aspect-ratio: 3/2; overflow: hidden; border-radius: 4px; margin-bottom: 16px; }
.jcard .jthumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.jcard:hover .jthumb img { transform: scale(1.05); }
.jcard .jtitle { font-family: var(--serif); font-size: 25px; line-height: 1.1; margin-bottom: 8px; }
.jcard .jexcerpt { color: var(--muted); font-size: 15px; }
.jcard .jdate { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--faint); margin-top: 10px; }
.morelink { display: inline-block; margin-top: 44px; font-size: 13px; letter-spacing: .06em; border-bottom: 1px solid var(--ink); padding-bottom: 3px; }

/* The Edit — curated shop */
.edit-group { margin-bottom: 68px; }
.edit-cat { font-family: var(--serif); font-weight: 500; font-size: clamp(24px, 3.4vw, 34px); letter-spacing: -.01em; margin: 0 0 26px; padding-bottom: 14px; border-bottom: 1px solid var(--hair); }
.edit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px 26px; }
.edit-card { display: flex; flex-direction: column; }
.edit-thumb { aspect-ratio: 4/5; overflow: hidden; border-radius: 4px; background: var(--card); margin-bottom: 14px; }
.edit-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.edit-card:hover .edit-thumb img { transform: scale(1.05); }
.edit-thumb--empty { background: linear-gradient(135deg, #efece5, #e5e0d6); }
.edit-title { font-family: var(--serif); font-size: 21px; line-height: 1.12; }
.edit-note { color: var(--muted); font-size: 14px; margin-top: 5px; }
.edit-foot { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-top: 12px; }
.edit-price { font-size: 14px; color: var(--ink); letter-spacing: .01em; }
.edit-view { font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); }
.edit-card:hover .edit-view { color: var(--ink); }
.edit-affnote { max-width: 62ch; margin: 8px auto 0; text-align: center; color: var(--faint); font-size: 12.5px; line-height: 1.6; }
@media (max-width: 860px) { .edit-grid { grid-template-columns: repeat(2, 1fr); gap: 26px 18px; } }
@media (max-width: 520px) { .edit-grid { grid-template-columns: 1fr 1fr; gap: 20px 14px; } .edit-title { font-size: 18px; } }

/* Palette quiz */
.quiz-wrap { padding-top: 40px; padding-bottom: 40px; max-width: 720px; }
.quiz-card { background: var(--card); border: 1px solid var(--hair); border-radius: 8px; padding: 40px 44px; }
.quiz-intro { text-align: center; }
.quiz-introlede { font-family: var(--serif); font-style: italic; font-size: clamp(20px, 2.6vw, 26px); line-height: 1.4; color: var(--muted); max-width: 46ch; margin: 0 auto 28px; }
.quiz-progress { height: 2px; background: var(--hair); border-radius: 2px; overflow: hidden; margin-bottom: 26px; }
.quiz-bar { height: 100%; background: var(--accent); transition: width .5s var(--ease); }
.quiz-step { font-size: 11px; letter-spacing: .24em; text-transform: uppercase; color: var(--faint); }
.quiz-q { font-family: var(--serif); font-weight: 500; font-size: clamp(26px, 4vw, 38px); line-height: 1.12; margin: 10px 0 26px; }
.quiz-opts { display: grid; gap: 12px; }
.quiz-opt { text-align: left; background: transparent; color: var(--ink); border: 1px solid var(--line); border-radius: 6px; padding: 16px 20px; font-family: var(--sans); font-size: 15.5px; letter-spacing: 0; transition: border-color .25s, background .25s, transform .25s; }
.quiz-opt:hover { border-color: var(--ink); background: rgba(33,31,28,.03); transform: none; }
.quiz-back { margin-top: 22px; background: transparent; color: var(--faint); border: none; padding: 0; font-size: 13px; letter-spacing: .04em; }
.quiz-back:hover { color: var(--ink); background: transparent; transform: none; }
.quiz-result { text-align: center; }
.quiz-reyebrow { color: var(--accent); }
.quiz-rname { font-family: var(--serif); font-weight: 500; font-size: clamp(36px, 6vw, 60px); line-height: 1; letter-spacing: -.02em; margin: 12px 0 22px; }
.quiz-swatches { display: flex; justify-content: center; gap: 0; margin: 0 auto 24px; width: 260px; max-width: 80%; border-radius: 4px; overflow: hidden; box-shadow: 0 1px 0 var(--hair); }
.quiz-swatches span { flex: 1; height: 64px; }
.quiz-rline { font-family: var(--serif); font-style: italic; font-size: 20px; color: var(--muted); margin-bottom: 16px; }
.quiz-rdesc { font-size: 16.5px; line-height: 1.7; color: #34312c; max-width: 48ch; margin: 0 auto; }
.quiz-rnote { font-family: var(--serif); font-style: italic; font-size: 17px; color: var(--accent); margin: 22px auto 0; max-width: 44ch; }
.quiz-capture { margin-top: 34px; padding-top: 30px; border-top: 1px solid var(--hair); }
.quiz-cap-h { font-family: var(--serif); font-size: 20px; margin-bottom: 4px; }
.quiz-capture form { margin: 18px auto 0; }
.quiz-after { margin-top: 30px; display: flex; gap: 22px; align-items: center; justify-content: center; flex-wrap: wrap; }
.quiz-restart { background: transparent; color: var(--faint); border: none; font-size: 13px; letter-spacing: .04em; }
.quiz-restart:hover { color: var(--ink); background: transparent; transform: none; }
@media (max-width: 560px) { .quiz-card { padding: 30px 22px; } }

/* Palette-quiz home band (dark) */
.quizband { background: var(--dark); color: var(--dark-text); text-align: center; }
.quizband .inner { max-width: 620px; margin: 0 auto; padding: 96px 32px; }
.quizband .eyebrow { color: var(--accent); }
.quizband h2 { color: var(--dark-text); margin: 14px 0 12px; }
.quizband p { color: var(--faint); max-width: 44ch; margin: 0 auto; }
.quizband-swatches { display: flex; justify-content: center; gap: 10px; margin: 30px 0 34px; }
.quizband-swatches span { width: 40px; height: 40px; border-radius: 50%; }
.btn.light { background: var(--dark-text); color: var(--dark); border-color: var(--dark-text); }
.btn.light:hover { background: var(--accent); color: #fff; border-color: var(--accent); }

.article { max-width: 720px; margin: 0 auto; }
.article .a-eyebrow { text-align: center; }
.article h1 { font-family: var(--serif); font-weight: 500; font-size: clamp(38px, 6vw, 64px); line-height: 1.03; letter-spacing: -.02em; text-align: center; margin: 16px 0 12px; }
.article .a-date { text-align: center; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--faint); margin-bottom: 40px; }
.article .a-cover { aspect-ratio: 3/2; overflow: hidden; border-radius: 4px; margin-bottom: 48px; }
.article .a-cover img { width: 100%; height: 100%; object-fit: cover; }
.article .a-body p { font-size: 18px; line-height: 1.75; color: #34312c; margin-bottom: 22px; }
.article .a-body p:first-of-type::first-letter { font-family: var(--serif); font-size: 62px; line-height: .8; float: left; padding: 6px 12px 0 0; color: var(--ink); }
.article .a-back { display: block; text-align: center; margin-top: 56px; font-size: 13px; letter-spacing: .06em; color: var(--muted); }
.article .a-back:hover { color: var(--ink); }

/* PAGE header (subpages) */
.pagehead { padding-top: 168px; text-align: center; }
.pagehead h1 { font-family: var(--serif); font-weight: 500; font-size: clamp(44px, 8vw, 88px); letter-spacing: -.02em; line-height: 1; }
.pagehead p { color: var(--muted); margin-top: 16px; font-size: 17px; }

/* WORK + FORMS */
.work { text-align: center; }
.work h2 { margin: 14px 0 20px; }
.work p.lead { color: var(--muted); font-size: 18px; margin: 0 auto; max-width: 54ch; }
.work p.fine { font-size: 13px; color: var(--faint); margin-top: 12px; }
form { max-width: 520px; margin: 40px auto 0; text-align: left; display: grid; gap: 18px; }
.field { position: relative; }
label { display: block; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--faint); margin-bottom: 8px; }
input, textarea { font-family: var(--sans); font-size: 15px; color: var(--ink); background: transparent; border: none; border-bottom: 1px solid var(--line); border-radius: 0; padding: 8px 2px; width: 100%; outline: none; transition: border-color .3s; }
input::placeholder, textarea::placeholder { color: var(--faint); }
input:focus, textarea:focus { border-color: var(--ink); }
textarea { min-height: 90px; resize: vertical; }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; overflow: hidden; }
button { font-family: var(--sans); font-weight: 500; font-size: 14px; letter-spacing: .04em; cursor: pointer; border: 1px solid var(--ink); background: var(--ink); color: var(--bg); border-radius: 999px; padding: 15px 34px; transition: background .3s var(--ease), color .3s, transform .2s, opacity .2s; justify-self: start; }
button:hover { background: transparent; color: var(--ink); }
button:disabled { opacity: .45; cursor: default; }
.form-msg { min-height: 20px; color: var(--accent); font-family: var(--serif); font-style: italic; font-size: 17px; }

/* NEWSLETTER */
.news { background: var(--dark); color: var(--dark-text); text-align: center; }
.news .inner { max-width: 620px; margin: 0 auto; padding: 0 32px; }
.news .eyebrow { color: var(--accent); }
.news h2 { color: var(--dark-text); margin: 14px 0 10px; }
.news p { color: var(--faint); max-width: 46ch; margin: 0 auto; }
.news form { display: flex; gap: 0; max-width: 460px; margin-top: 30px; border-bottom: 1px solid rgba(236,231,221,.3); }
.news input { flex: 1; color: var(--dark-text); border: none; }
.news input::placeholder { color: rgba(236,231,221,.5); }
.news button { border: none; background: transparent; color: var(--dark-text); padding: 8px 6px; border-radius: 0; letter-spacing: .04em; }
.news button:hover { background: transparent; color: var(--accent); transform: none; }

/* LINKS */
.links { text-align: center; }
.links .row { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 30px; }
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 28px; border-radius: 999px; border: 1px solid var(--line); font-weight: 500; font-size: 14px; letter-spacing: .03em; transition: background .3s var(--ease), color .3s, transform .2s; }
.btn:hover { transform: translateY(-2px); background: var(--ink); color: var(--bg); border-color: var(--ink); }

/* FOOTER */
footer { border-top: 1px solid var(--hair); padding: 64px 32px 40px; }
.foot { max-width: 1180px; margin: 0 auto; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 28px; align-items: flex-start; }
.foot .mono { font-family: var(--serif); font-size: 24px; letter-spacing: .04em; }
.foot .fcol { display: flex; flex-direction: column; gap: 8px; font-size: 13px; color: var(--muted); }
.foot .fcol a:hover { color: var(--ink); }
.foot .disclosure { max-width: 320px; font-size: 12px; color: var(--faint); }
.footbar { max-width: 1180px; margin: 40px auto 0; padding-top: 22px; border-top: 1px solid var(--hair); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 12px; color: var(--faint); }

/* LIGHTBOX */
.lightbox { position: fixed; inset: 0; z-index: 100; display: none; align-items: center; justify-content: center; background: rgba(20,18,16,.94); padding: 28px; opacity: 0; transition: opacity .3s var(--ease); cursor: zoom-out; }
.lightbox.open { display: flex; opacity: 1; }
.lightbox img { max-width: 92vw; max-height: 90vh; border-radius: 4px; box-shadow: 0 50px 100px -30px rgba(0,0,0,.7); cursor: default; }
.lightbox .lb-close { position: absolute; top: 20px; right: 26px; color: #ece7dd; font-size: 34px; line-height: 1; cursor: pointer; background: none; border: none; padding: 6px 12px; opacity: .8; transition: opacity .2s; }
.lightbox .lb-close:hover { opacity: 1; background: none; transform: none; }

/* GUIDE / LEAD MAGNET */
.guide-hero { max-width: 660px; margin: 0 auto; text-align: center; }
.guide-hero .kicker { display: inline-block; margin-bottom: 18px; font-size: 11px; letter-spacing: .28em; text-transform: uppercase; color: var(--accent); border: 1px solid var(--line); border-radius: 999px; padding: 6px 14px; }
.guide-hero h1 { font-family: var(--serif); font-weight: 500; font-size: clamp(36px, 6vw, 60px); line-height: 1.02; letter-spacing: -.02em; }
.guide-hero p.sub { color: var(--muted); font-size: 18px; margin-top: 16px; }
.guide-card { max-width: 520px; margin: 40px auto 0; background: var(--card); border: 1px solid var(--hair); border-radius: 8px; padding: 30px; box-shadow: 0 30px 60px -40px rgba(33,31,28,.3); }
.guide-card form { margin: 0; }
.guide-card .form-msg { text-align: center; }
.guide-reveal { text-align: center; }
.guide-reveal a { display: inline-block; margin-top: 4px; padding: 14px 30px; border-radius: 999px; background: var(--ink); color: var(--bg); font-weight: 500; font-size: 15px; }
.guide-preview { list-style: none; padding: 0; margin: 22px 0 4px; }
.guide-preview li { display: flex; gap: 10px; padding: 7px 0; font-size: 15px; color: var(--muted); }
.guide-preview li::before { content: "—"; color: var(--accent); }

/* the guide document */
.guide-doc { max-width: 720px; margin: 0 auto; }
.guide-doc h3 { font-family: var(--serif); font-weight: 500; font-size: 28px; margin: 44px 0 14px; letter-spacing: -.01em; }
.guide-doc p { color: var(--muted); font-size: 17px; line-height: 1.72; margin-bottom: 14px; }
.checklist { list-style: none; padding: 0; margin: 8px 0 4px; }
.checklist li { display: flex; gap: 12px; padding: 11px 0; border-bottom: 1px solid var(--hair); font-size: 16px; }
.checklist li:last-child { border-bottom: none; }
.checklist li b { font-weight: 500; color: var(--ink); }
.checklist li::before { content: "☐"; color: var(--accent); font-size: 15px; line-height: 1.5; }
.print-hint { text-align: center; font-size: 12px; color: var(--faint); margin-top: 44px; }
@media print { .topnav, footer, .print-hint, .navcta { display: none !important; } body { background: #fff; } }

/* RESPONSIVE */
@media (max-width: 900px) {
  section { padding: 84px 0; }
  .wrap { padding: 0 22px; }
  .topnav > nav { display: none; }
  .navtoggle { display: flex; }
  .head[data-ghost]::before { font-size: clamp(56px, 20vw, 96px); }
  .hero-full { height: 90vh; min-height: 560px; align-items: flex-end; }
  .hero-full-scrim { background: linear-gradient(180deg, rgba(220,220,216,.45) 0%, rgba(220,220,216,.15) 26%, rgba(220,220,216,.9) 80%, var(--bg) 100%); }
  .hero-full-scrim::after { display: none; }
  .hero-full-inner { padding-bottom: 44px; }
  .hero-cap { display: none; }
  .scrollcue { display: none; }
  .head { flex-direction: column; align-items: flex-start; gap: 6px; margin-bottom: 36px; }
  .head .rule { display: none; }
  .block { grid-template-columns: 1fr; gap: 28px; margin-bottom: 64px; }
  .block.flip .block-img { order: 0; }
  .values { grid-template-columns: 1fr; }
  .grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .cols { grid-template-columns: repeat(2, 1fr); gap: 22px; }
  .teaser { grid-template-columns: 1fr; gap: 32px; }
  .foot { flex-direction: column; }
  .pagehead { padding-top: 128px; }
}
