:root {
  --amber: #ee943c;
  --amber-light: #ffbd67;
  --amber-dark: #c66a2c;
  --brown: #41271f;
  --brown-2: #633b2c;
  --cream: #fffaf3;
  --beige: #f3e8da;
  --sand: #ead7c2;
  --ink: #29211e;
  --muted: #776b65;
  --white: #fff;
  --serif: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --shadow: 0 30px 80px rgba(71, 39, 25, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; overflow-x: clip; }
body { margin: 0; background: var(--cream); color: var(--ink); font-family: var(--sans); font-size: 16px; line-height: 1.65; overflow-x: hidden; }
.home-page main { display: flex; flex-direction: column; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
::selection { background: var(--amber-light); color: var(--brown); }
:focus-visible { outline: 3px solid var(--amber); outline-offset: 4px; }
.container-wide { width: min(100% - 56px, 1400px); margin-inline: auto; }
.section-pad { padding: clamp(88px, 10vw, 168px) 0; }
.skip-link { position: fixed; z-index: 2000; left: 20px; top: -100px; padding: 12px 18px; background: var(--brown); color: white; border-radius: 100px; transition: top .2s; }
.skip-link:focus { top: 16px; }

.eyebrow { display: inline-flex; align-items: center; gap: 12px; color: var(--amber-dark); font-size: .68rem; font-weight: 750; letter-spacing: .2em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 28px; height: 1px; background: currentColor; }
.eyebrow.light { color: #eec397; }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { letter-spacing: -.045em; }
h1 em, h2 em, .display-copy em { font-family: var(--serif); font-weight: 400; color: var(--amber-dark); }
.btn { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; gap: 24px; border: 1px solid transparent; border-radius: 100px; padding: 12px 24px; font-size: .82rem; font-weight: 720; letter-spacing: .04em; transition: transform .3s var(--ease), background .3s, color .3s, border-color .3s; }
.btn:hover { transform: translateY(-2px); }
.btn-ink { background: var(--brown); color: white; }
.btn-ink:hover { background: var(--amber-dark); color: white; }
.btn-cream { background: var(--cream); color: var(--brown); }
.btn-cream:hover { background: white; color: var(--brown); }
.btn-outline-warm { color: var(--brown); border-color: rgba(65,39,31,.3); }
.btn-outline-warm:hover { background: var(--brown); color: white; }
.btn-sm-custom { min-height: 42px; padding: 9px 18px; gap: 14px; font-size: .76rem; }
.btn-text { border: 0; background: transparent; padding: 10px 0; font-size: .8rem; font-weight: 700; text-decoration: underline; text-underline-offset: 5px; }
.text-link, .read-link { display: inline-flex; align-items: center; gap: 26px; border-bottom: 1px solid rgba(65,39,31,.3); padding-bottom: 4px; font-size: .82rem; font-weight: 700; }
.text-link span, .read-link span, .btn span { transition: transform .25s var(--ease); }
.text-link:hover span, .read-link:hover span, .btn:hover span { transform: translate(3px, -2px); }
.round-link { width: 64px; height: 64px; border: 1px solid rgba(65,39,31,.25); border-radius: 50%; display: grid; place-items: center; transition: .3s var(--ease); }
.round-link:hover { background: var(--brown); color: white; transform: rotate(10deg); }

/* Header */
.site-header { position: fixed; z-index: 1000; inset: 0 0 auto; transition: background .3s, box-shadow .3s, transform .3s; }
.site-header.is-scrolled { background: color-mix(in srgb, var(--cream) 90%, transparent); -webkit-backdrop-filter: blur(18px); backdrop-filter: blur(18px); box-shadow: 0 1px 0 rgba(65,39,31,.1); }
.header-inner { height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.brand { display: inline-flex; align-items: center; gap: 12px; flex: 0 0 auto; }
.brand img { width: 48px; height: 48px; border-radius: 50%; }
.brand span { display: flex; flex-direction: column; line-height: 1.05; }
.brand strong { text-transform: uppercase; letter-spacing: .09em; font-size: .84rem; }
.brand small { margin-top: 6px; color: var(--muted); font-size: .58rem; letter-spacing: .12em; text-transform: uppercase; }
.desktop-nav { display: flex; align-items: center; gap: clamp(20px, 2.5vw, 40px); }
.desktop-nav a { position: relative; font-size: .78rem; font-weight: 650; color: #5a4a44; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -9px; height: 1px; background: var(--amber-dark); transition: right .25s; }
.desktop-nav a:hover::after, .desktop-nav a.is-active::after { right: 0; }
.desktop-nav a.is-active { color: var(--brown); }
.header-actions { display: flex; align-items: center; gap: 12px; }
.search-toggle, .menu-toggle { width: 42px; height: 42px; border: 0; border-radius: 50%; background: transparent; display: grid; place-items: center; }
.search-toggle svg { width: 20px; fill: none; stroke: currentColor; stroke-width: 1.5; }
.menu-toggle { display: none; gap: 5px; align-content: center; }
.menu-toggle span { width: 19px; height: 1px; background: currentColor; }
.mobile-menu { position: fixed; z-index: 1300; inset: 0; background: var(--brown); color: white; padding: 24px; transform: translateX(100%); visibility: hidden; transition: transform .55s var(--ease), visibility .55s; }
.mobile-menu.is-open { transform: translateX(0); visibility: visible; }
.mobile-menu-head { display: flex; justify-content: space-between; color: #dbbaaa; font-size: .7rem; text-transform: uppercase; letter-spacing: .18em; }
.mobile-menu-head button { border: 0; background: transparent; color: white; font-size: 2rem; line-height: 1; }
.mobile-menu nav { display: grid; margin-top: 9vh; }
.mobile-menu nav a { border-bottom: 1px solid rgba(255,255,255,.12); padding: 14px 0; font-family: var(--serif); font-size: clamp(2rem, 8vw, 3.5rem); line-height: 1; }
.mobile-menu nav span { display: inline-block; width: 42px; font: 650 .65rem var(--sans); color: #d99a72; letter-spacing: .1em; }
.mobile-menu > p { position: absolute; bottom: 28px; color: #d7b9a8; font: italic 1.05rem var(--serif); }
.search-panel { position: fixed; z-index: 1350; inset: 0 0 auto; background: var(--cream); padding: 9vh max(28px, calc((100vw - 1400px) / 2)); transform: translateY(-110%); visibility: hidden; transition: .55s var(--ease); box-shadow: var(--shadow); }
.search-panel.is-open { transform: none; visibility: visible; }
.search-panel > button { position: absolute; top: 22px; right: max(28px, calc((100vw - 1400px) / 2)); border: 0; background: none; font-size: 2rem; }
.search-panel label { display: block; font-family: var(--serif); font-size: clamp(2.2rem, 5vw, 5rem); letter-spacing: -.04em; }
.search-panel form div { display: flex; border-bottom: 1px solid rgba(65,39,31,.25); margin-top: 28px; }
.search-panel input { width: 100%; border: 0; background: transparent; padding: 14px 0; outline: none; font-size: 1.2rem; }
.search-panel form button { border: 0; background: none; font-weight: 700; }

/* Hero */
.hero { position: relative; min-height: 840px; padding-top: 135px; overflow: hidden; background: radial-gradient(circle at 76% 25%, #ffdca7 0, rgba(255,220,167,.68) 18%, transparent 42%), var(--cream); }
.hero::before { content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .22; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.13'/%3E%3C/svg%3E"); }
.hero-glow { position: absolute; width: 620px; height: 620px; border: 1px solid rgba(196,103,43,.16); border-radius: 50%; right: 2vw; top: 90px; }
.hero-glow::before, .hero-glow::after { content: ""; position: absolute; border: 1px solid rgba(196,103,43,.13); border-radius: 50%; inset: 8%; }
.hero-glow::after { inset: 19%; }
.hero-grid { position: relative; display: grid; grid-template-columns: 1.18fr .82fr; align-items: center; min-height: 610px; }
.hero-copy { position: relative; z-index: 2; }
.hero-kicker { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 42px; color: var(--brown-2); font-size: .7rem; font-weight: 650; letter-spacing: .18em; text-transform: uppercase; }
.hero-kicker i { width: 8px; height: 8px; background: var(--amber); border-radius: 50% 50% 50% 0; transform: rotate(-45deg); }
.hero h1 { font-size: clamp(5.3rem, 9.7vw, 10rem); font-weight: 760; line-height: .72; text-transform: uppercase; color: var(--brown); }
.hero h1 span { display: block; }
.hero h1 .accent-word { margin-left: clamp(30px, 8vw, 130px); font-family: var(--serif); font-style: italic; font-weight: 400; text-transform: none; color: var(--amber-dark); }
.hero-intro { width: min(540px, 90%); margin: 64px 0 0 clamp(30px, 8vw, 130px); display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: end; }
.hero-intro > p { margin: 0; color: #594c47; font-size: 1.08rem; line-height: 1.7; }
.hero-actions { display: grid; justify-items: start; gap: 18px; }
.hero-art { position: relative; justify-self: end; width: min(100%, 520px); transform: rotate(2deg); }
.hero-card { position: relative; overflow: hidden; aspect-ratio: .79; border-radius: 260px 260px 18px 18px; padding: 42px; background: linear-gradient(155deg, #f8ae56, #d87431 70%, #8a472b); box-shadow: var(--shadow); }
.hero-card::after { content: ""; position: absolute; inset: 58% -20% -28%; background: var(--brown); border-radius: 50% 50% 0 0; transform: rotate(-7deg); }
.hero-card img { position: absolute; z-index: 2; width: 64%; aspect-ratio: 1; object-fit: cover; left: 18%; top: 20%; border-radius: 50%; mix-blend-mode: multiply; filter: saturate(.82) contrast(1.08); }
.hero-card .card-label { position: relative; z-index: 3; color: var(--brown); font-size: .58rem; font-weight: 750; letter-spacing: .16em; text-transform: uppercase; }
.hero-card p { position: absolute; z-index: 3; bottom: 22px; left: 32px; color: white; font: italic 1.35rem/1.2 var(--serif); }
.orbit-copy { position: absolute; inset: -20px; animation: orbit 24s linear infinite; pointer-events: none; }
.orbit-copy span { position: absolute; padding: 7px 13px; background: var(--cream); border: 1px solid rgba(65,39,31,.15); border-radius: 30px; font-size: .62rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.orbit-copy span:nth-child(1) { left: -7%; top: 24%; }
.orbit-copy span:nth-child(2) { right: -4%; top: 48%; }
.orbit-copy span:nth-child(3) { left: 16%; bottom: -2%; }
.floating-note { position: absolute; z-index: 4; top: 46%; left: -88px; padding: 18px 20px; background: rgba(255,250,243,.88); border: 1px solid rgba(65,39,31,.12); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); box-shadow: 0 18px 40px rgba(65,39,31,.08); font: italic 1rem/1.3 var(--serif); transform: rotate(-2deg); }
.floating-note strong { font-family: var(--sans); font-size: .65rem; text-transform: uppercase; letter-spacing: .08em; }
.hero-foot { position: relative; display: grid; grid-template-columns: auto 1fr auto; gap: 24px; align-items: end; padding: 42px 0 28px; font-size: .65rem; text-transform: uppercase; letter-spacing: .14em; color: var(--muted); }
.hero-foot div { height: 1px; background: rgba(65,39,31,.18); }
.hero-foot p { margin: 0; font: italic .8rem/1.5 var(--serif); text-transform: none; letter-spacing: 0; text-align: right; }
@keyframes orbit { to { transform: rotate(360deg); } }

/* Sections */
.manifesto { background: #f8f0e6; border-top: 1px solid rgba(65,39,31,.08); }
.manifesto-grid { display: grid; grid-template-columns: .45fr 1.55fr; gap: 8vw; }
.manifesto-mark { display: flex; flex-direction: column; justify-content: space-between; min-height: 420px; }
.manifesto-mark > span { color: var(--muted); font-size: .66rem; letter-spacing: .2em; }
.seed-mark { position: relative; width: 110px; height: 160px; border: 1px solid rgba(65,39,31,.2); border-radius: 55% 45% 55% 45%; transform: rotate(32deg); }
.seed-mark i { position: absolute; width: 14px; height: 14px; border-radius: 50% 50% 50% 0; background: var(--amber); left: 52%; top: 48%; }
.manifesto-copy .display-copy { margin: 36px 0 64px; font-size: clamp(3rem, 5.4vw, 6.5rem); font-weight: 620; line-height: .98; letter-spacing: -.05em; }
.manifesto-bottom { display: grid; grid-template-columns: minmax(260px, 520px) auto; align-items: end; justify-content: space-between; gap: 40px; }
.manifesto-bottom p { margin: 0; color: var(--muted); font-size: 1.08rem; }
.section-heading { display: grid; grid-template-columns: 1.4fr .6fr; align-items: end; gap: 7vw; margin-bottom: 72px; }
.section-heading h2, .vlog-heading h2 { margin: 22px 0 0; font-size: clamp(3rem, 5.6vw, 6rem); font-weight: 620; line-height: .94; }
.section-heading > p { margin: 0; max-width: 390px; color: var(--muted); }
.editorial-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 34px 22px; align-items: start; }
.story-card { grid-column: span 6; }
.story-card:nth-child(3n+2), .story-card:nth-child(3n+3) { grid-column: span 3; }
.blog-grid .story-card { grid-column: span 4; }
.story-visual { position: relative; display: block; overflow: hidden; aspect-ratio: 1.22; margin-bottom: 20px; background: var(--sand); }
.story-card:nth-child(3n+2) .story-visual, .story-card:nth-child(3n+3) .story-visual { aspect-ratio: .82; }
.blog-grid .story-card .story-visual { aspect-ratio: 1.05; }
.story-visual img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.story-visual:hover img { transform: scale(1.035); }
.tone-1 { background: linear-gradient(145deg, #f7bc6c, #cb6a31); }
.tone-2 { background: linear-gradient(145deg, #f0dfcd, #d9b78f); }
.tone-3 { background: linear-gradient(145deg, #6d3e2e, #2e211e); }
.tone-4 { background: linear-gradient(145deg, #ffd991, #ec913c); }
.visual-orbit { position: absolute; width: 58%; aspect-ratio: 1; border: 1px solid rgba(255,255,255,.55); border-radius: 50%; left: 21%; top: 15%; }
.visual-orbit::before, .visual-orbit::after { content: ""; position: absolute; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; inset: 13%; }
.visual-orbit::after { inset: 27%; }
.visual-seed { position: absolute; z-index: 2; width: 38px; height: 54px; background: var(--brown); border-radius: 58% 42% 58% 42%; left: calc(50% - 19px); top: calc(45% - 27px); transform: rotate(32deg); }
.tone-3 .visual-seed { background: var(--amber-light); }
.visual-path { position: absolute; width: 110%; height: 54%; background: var(--cream); border-radius: 50% 50% 0 0; left: -5%; bottom: -31%; transform: rotate(-7deg); }
.story-index { position: absolute; right: 16px; top: 14px; color: rgba(65,39,31,.72); font-size: .6rem; font-weight: 700; letter-spacing: .12em; }
.tone-3 .story-index { color: white; }
.story-meta { display: flex; justify-content: space-between; gap: 12px; margin-bottom: 12px; color: var(--muted); font-size: .65rem; letter-spacing: .08em; text-transform: uppercase; }
.story-card h3 { font: 500 clamp(1.45rem, 2.2vw, 2.4rem)/1.08 var(--serif); letter-spacing: -.025em; }
.story-card p { color: var(--muted); font-size: .9rem; }
.read-link { font-size: .7rem; }
.section-end { display: flex; justify-content: center; margin-top: 70px; }
.path-section { position: relative; overflow: hidden; background: var(--brown); color: white; }
.path-line { position: absolute; inset: 0; opacity: .22; }
.path-line svg { width: 100%; height: 100%; }
.path-line path { fill: none; stroke: var(--amber-light); stroke-width: 2; stroke-dasharray: 8 10; }
.path-grid { position: relative; z-index: 2; }
.path-heading h2 { margin: 26px 0 120px; font-size: clamp(3.5rem, 7vw, 7rem); font-weight: 560; line-height: .92; }
.path-heading h2 em { color: #ffc57b; }
.path-steps { display: grid; grid-template-columns: repeat(3, 1fr); margin-left: 25%; border-top: 1px solid rgba(255,255,255,.2); }
.path-steps article { padding: 32px 28px 0; border-left: 1px solid rgba(255,255,255,.2); }
.path-steps article > span { color: #d69c78; font-size: .65rem; letter-spacing: .16em; }
.path-steps h3 { margin: 35px 0 14px; font: italic 2.3rem var(--serif); color: #ffd09b; }
.path-steps p { color: #d8c8c0; font-size: .9rem; }
.founder { background: #f3e9dd; }
.founder-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(60px, 10vw, 150px); align-items: center; }
.portrait-canvas { position: relative; overflow: hidden; aspect-ratio: .78; background: linear-gradient(165deg, #e99a50, #7a402d); border-radius: 230px 230px 12px 12px; }
.portrait-canvas::after { content: ""; position: absolute; inset: 48% -20% -25%; border-radius: 50%; background: var(--brown); transform: rotate(12deg); }
.portrait-canvas p { position: absolute; z-index: 3; left: 12%; bottom: 5%; margin: 0; color: #ffd49e; font-size: clamp(3rem, 6vw, 6rem); font-weight: 800; line-height: .75; letter-spacing: -.06em; }
.portrait-sun { position: absolute; width: 62%; aspect-ratio: 1; border: 1px solid rgba(255,255,255,.5); border-radius: 50%; left: 19%; top: 12%; }
.portrait-line { position: absolute; width: 120%; height: 56%; border: 1px solid #ffd49e; border-radius: 50%; left: -10%; top: 35%; transform: rotate(-15deg); }
.portrait-caption { display: block; margin-top: 14px; color: var(--muted); font-size: .65rem; letter-spacing: .16em; text-transform: uppercase; }
.founder-copy h2 { margin: 28px 0 36px; font-size: clamp(3rem, 5.5vw, 6.2rem); font-weight: 560; line-height: .94; }
.founder-copy p { max-width: 570px; color: var(--muted); font-size: 1.02rem; }
.founder-copy .btn { margin-top: 20px; }
.vlog-teaser { background: var(--cream); }
.vlog-heading { display: flex; justify-content: space-between; align-items: end; margin-bottom: 62px; }
.vlog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.video-card > a { position: relative; display: block; overflow: hidden; aspect-ratio: 16/9; background: var(--brown); }
.video-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.video-card a:hover img { transform: scale(1.04); }
.play { position: absolute; left: 24px; bottom: 24px; width: 54px; height: 54px; display: grid; place-items: center; padding-left: 3px; background: var(--cream); border-radius: 50%; font-size: .8rem; }
.video-card > span { display: inline-block; margin: 18px 0 9px; color: var(--amber-dark); font-size: .65rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; }
.video-card h2, .video-card h3 { margin: 18px 0 8px; font: 500 1.7rem/1.1 var(--serif); }
.video-card p { color: var(--muted); font-size: .88rem; }
.vlog-empty { min-height: 360px; display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; gap: 7vw; padding: 7vw; background: #e8d5c1; }
.sound-lines { height: 190px; display: flex; align-items: center; gap: 7px; }
.sound-lines i { flex: 1; height: var(--h); min-width: 2px; border-radius: 3px; background: linear-gradient(var(--amber), var(--brown)); }
.vlog-empty > div:last-child > span { color: var(--amber-dark); font-size: .64rem; font-weight: 750; letter-spacing: .16em; }
.vlog-empty h2, .vlog-empty h3 { margin: 20px 0; font: italic clamp(2.2rem, 4vw, 4.4rem)/.98 var(--serif); }
.vlog-empty p { color: var(--muted); }
.appointment-cta { background: #e7903e; }
.appointment-cta-inner { position: relative; overflow: hidden; display: grid; grid-template-columns: 1.15fr .55fr; gap: 8vw; align-items: end; padding: clamp(60px, 8vw, 120px); background: var(--brown); color: white; border-radius: 4px; }
.appointment-cta-inner > div { min-width: 0; }
.appointment-cta-inner::before { content: ""; position: absolute; width: 600px; height: 600px; border: 1px solid rgba(255,190,110,.17); border-radius: 50%; right: -140px; top: -320px; }
.appointment-cta h2 { margin: 27px 0 0; font-size: clamp(3.2rem, 5.8vw, 6.7rem); font-weight: 560; line-height: .9; }
.appointment-cta h2 em { color: #ffbf75; }
.appointment-cta-inner > div:last-child { position: relative; z-index: 2; }
.appointment-cta-inner > div:last-child p { color: #d9c6bc; }
.cta-seed { position: absolute; width: 56px; height: 80px; border-radius: 60% 40% 60% 40%; background: var(--amber); right: 18%; top: 15%; transform: rotate(40deg); }

/* Inner pages */
.breadcrumb-wrap { display: flex; gap: 10px; align-items: center; padding-top: 112px; color: var(--muted); font-size: .68rem; }
.breadcrumb-wrap a:hover { color: var(--amber-dark); }
.inner-hero { padding: 82px 0 95px; border-bottom: 1px solid rgba(65,39,31,.12); }
.inner-hero-grid { display: grid; grid-template-columns: 1.3fr .7fr; gap: 7vw; align-items: end; }
.inner-hero h1 { margin: 30px 0 0; font-size: clamp(4.2rem, 8.5vw, 9rem); font-weight: 650; line-height: .83; }
.inner-lead { padding-bottom: 10px; }
.inner-lead > p { color: var(--muted); font-size: clamp(1rem, 1.4vw, 1.25rem); }
.chapter-no { display: block; margin-top: 40px; font-size: .65rem; letter-spacing: .18em; }
.about-story-grid { display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: 9vw; }
.story-art { position: relative; overflow: hidden; min-height: 660px; display: grid; place-items: center; background: #e6c6a7; }
.story-art svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.story-art path { fill: none; stroke: var(--brown); stroke-width: 42; }
.story-art p { position: relative; z-index: 2; margin: 0; color: var(--cream); font-size: clamp(4rem, 8vw, 8rem); font-weight: 780; line-height: .76; letter-spacing: -.08em; }
.giant-seed { position: absolute; z-index: 3; width: 55px; height: 78px; background: var(--amber); border-radius: 60% 40% 60% 40%; transform: rotate(42deg); }
.prose-block h2 { margin: 28px 0 45px; font-size: clamp(2.8rem, 4.8vw, 5.4rem); font-weight: 560; line-height: 1; }
.prose-block p { color: var(--muted); font-size: 1.05rem; }
.values { background: var(--brown); color: white; }
.values .section-heading h2 em { color: #f7b86f; }
.values .section-heading p { color: #d6c3b9; }
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(255,255,255,.18); }
.value-grid article { padding: 46px 40px 10px 0; border-right: 1px solid rgba(255,255,255,.18); }
.value-grid article + article { padding-left: 40px; }
.value-grid span { color: #d49a77; font-size: .65rem; letter-spacing: .15em; }
.value-grid h3 { margin: 55px 0 22px; font: italic 2.6rem var(--serif); color: #ffc98c; }
.value-grid p { color: #d8c7be; }
.founder-about { background: var(--cream); }

/* Articles */
.article-header { display: grid; grid-template-columns: 1.3fr .35fr; gap: 8vw; align-items: end; padding-top: 74px; padding-bottom: 70px; }
.article-title h1 { margin: 26px 0 30px; max-width: 1100px; font-size: clamp(3.5rem, 7.1vw, 7.8rem); font-weight: 600; line-height: .9; }
.article-title > p { max-width: 720px; color: var(--muted); font: italic clamp(1.25rem, 2vw, 1.8rem)/1.45 var(--serif); }
.article-meta { display: grid; gap: 8px; padding-bottom: 10px; color: var(--muted); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; }
.article-cover { position: relative; overflow: hidden; height: min(70vh, 760px); }
.article-cover img { width: 100%; height: 100%; object-fit: cover; }
.article-cover .visual-orbit { width: 35%; left: 32.5%; top: 10%; }
.article-cover .visual-seed { width: 54px; height: 76px; left: calc(50% - 27px); }
.article-cover strong { position: absolute; z-index: 3; left: 5%; bottom: 5%; color: rgba(255,255,255,.76); font-size: clamp(4rem, 9vw, 10rem); line-height: .72; letter-spacing: -.08em; }
.article-layout { display: grid; grid-template-columns: .3fr 1fr .3fr; gap: 5vw; padding-top: 90px; padding-bottom: 130px; }
.article-aside { grid-column: 1; display: flex; flex-direction: column; align-items: flex-start; gap: 14px; padding-top: 8px; }
.article-aside span { color: var(--muted); font-size: .62rem; font-weight: 700; letter-spacing: .18em; }
.article-aside button { border: 0; background: none; padding: 3px 0; color: var(--brown); font-size: .72rem; text-decoration: underline; text-underline-offset: 4px; }
.article-body { grid-column: 2; max-width: 740px; font: 1.08rem/1.85 var(--sans); }
.article-body .lead { color: var(--brown); font: italic 1.65rem/1.5 var(--serif); }
.article-body h2 { margin: 2.2em 0 .75em; font: 520 2.7rem/1.08 var(--serif); letter-spacing: -.03em; }
.article-body h3 { margin-top: 2em; font: 600 1.7rem var(--serif); }
.article-body p, .article-body li { color: #544944; }
.article-body blockquote { position: relative; margin: 2.5em -10vw; padding: 2em 7vw; border: 0; background: var(--beige); color: var(--brown); font: italic clamp(1.8rem, 3.4vw, 3.3rem)/1.2 var(--serif); text-align: center; }
.article-body blockquote::before { content: "“"; display: block; color: var(--amber); font-size: 4rem; line-height: .5; }
.article-body a { color: var(--amber-dark); text-decoration: underline; }
.related { background: #f2e7da; }
.pagination { display: flex; justify-content: center; margin-top: 70px; }
.pagination a { border-bottom: 1px solid; padding-bottom: 5px; font-weight: 700; }

/* Forms & appointments */
.appointment-section { background: #f2e6d8; }
.appointment-shell { display: grid; grid-template-columns: 1fr 260px; gap: 50px; }
.progress-steps { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(4, 1fr); margin: 0 0 25px; padding: 0; list-style: none; }
.progress-steps li { position: relative; display: flex; align-items: center; gap: 12px; border-top: 1px solid rgba(65,39,31,.2); padding-top: 16px; color: var(--muted); font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.progress-steps li::before { content: ""; position: absolute; left: 0; right: 100%; top: -1px; height: 2px; background: var(--amber-dark); transition: right .4s; }
.progress-steps li.is-current, .progress-steps li.is-done { color: var(--brown); }
.progress-steps li.is-current::before, .progress-steps li.is-done::before { right: 14px; }
.progress-steps li span { width: 25px; height: 25px; border: 1px solid currentColor; border-radius: 50%; display: grid; place-items: center; font-size: .6rem; }
#appointment-form { background: var(--cream); padding: clamp(28px, 5vw, 72px); }
.appointment-step { display: none; }
.appointment-step.is-active { display: block; animation: stepIn .45s var(--ease); }
@keyframes stepIn { from { opacity: 0; transform: translateY(12px); } }
.step-title { display: flex; gap: 22px; align-items: start; margin-bottom: 45px; }
.step-title > span { color: var(--amber-dark); font-size: .68rem; font-weight: 700; letter-spacing: .14em; }
.step-title h2 { margin: 0 0 8px; font: 500 clamp(2.4rem, 4vw, 4rem)/.95 var(--serif); }
.step-title p { margin: 0; color: var(--muted); }
.type-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.type-card { position: relative; display: block; padding: 28px; border: 1px solid rgba(65,39,31,.16); cursor: pointer; transition: border-color .25s, transform .25s, background .25s; }
.type-card:hover { transform: translateY(-3px); border-color: var(--amber); }
.type-card:has(input:checked) { background: #f8eadb; border-color: var(--amber-dark); }
.type-card input { position: absolute; opacity: 0; }
.type-card > i { display: block; width: 12px; height: 18px; margin-bottom: 28px; background: var(--type-color); border-radius: 60% 40% 60% 40%; transform: rotate(35deg); }
.type-check { position: absolute; right: 18px; top: 18px; width: 24px; height: 24px; border: 1px solid rgba(65,39,31,.2); border-radius: 50%; display: grid; place-items: center; opacity: .35; }
.type-card:has(input:checked) .type-check { background: var(--brown); color: white; opacity: 1; }
.type-card h3 { font: 500 1.7rem var(--serif); }
.type-card p { min-height: 64px; color: var(--muted); font-size: .83rem; }
.type-card footer { display: flex; justify-content: space-between; padding-top: 18px; border-top: 1px solid rgba(65,39,31,.1); font-size: .66rem; text-transform: uppercase; letter-spacing: .07em; }
.type-card footer strong { color: var(--amber-dark); }
.step-actions { display: flex; justify-content: space-between; align-items: center; margin-top: 42px; }
.appointment-help { align-self: start; border-top: 2px solid var(--brown); padding-top: 20px; }
.appointment-help > span { font-weight: 750; }
.appointment-help p { margin-top: 12px; color: var(--muted); font-size: .82rem; }
.appointment-help a { font-size: .75rem; font-weight: 700; border-bottom: 1px solid; }
.date-time-grid { display: grid; grid-template-columns: .65fr 1.35fr; gap: 40px; }
.form-field { display: grid; gap: 8px; }
.form-field label, .field-label { display: flex; justify-content: space-between; color: var(--brown); font-size: .72rem; font-weight: 700; }
.form-field label span { color: var(--muted); font-weight: 450; }
.form-field input, .form-field textarea, .form-field select, .inline-search input { width: 100%; border: 0; border-bottom: 1px solid rgba(65,39,31,.28); border-radius: 0; background: transparent; padding: 13px 0; outline: none; transition: border-color .2s; }
.form-field input:focus, .form-field textarea:focus { border-color: var(--amber-dark); }
.slot-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; margin-top: 12px; }
.slot-option { position: relative; }
.slot-option input { position: absolute; opacity: 0; }
.slot-option span { display: grid; place-items: center; min-height: 46px; border: 1px solid rgba(65,39,31,.2); cursor: pointer; font-size: .8rem; }
.slot-option input:checked + span { background: var(--brown); color: white; }
.slot-placeholder { grid-column: 1 / -1; padding: 30px; background: #f3eadf; color: var(--muted); text-align: center; font-size: .8rem; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px 22px; }
.form-grid .full { grid-column: 1 / -1; }
.consent { display: flex; align-items: flex-start; gap: 10px; color: var(--muted); font-size: .75rem; }
.consent input { margin-top: 4px; accent-color: var(--brown); }
.consent a { color: var(--brown); text-decoration: underline; }
.hp-field { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; }
.appointment-error { min-height: 24px; margin-top: 24px; color: #9e2e21; font-size: .82rem; }
.success-step { padding: 30px 0; text-align: center; }
.success-seed { width: 68px; height: 68px; display: grid; place-items: center; margin: 0 auto 30px; border-radius: 60% 40% 60% 40%; background: var(--amber); color: var(--brown); font-size: 1.4rem; transform: rotate(35deg); }
.success-seed::first-letter { transform: rotate(-35deg); }
.success-step h2 { margin: 25px 0; font: 540 clamp(3rem, 5vw, 5.6rem)/.94 var(--sans); }
.success-step > p { max-width: 620px; margin: 0 auto; color: var(--muted); }
.appointment-summary { display: inline-grid; gap: 4px; min-width: 320px; margin: 30px 0; padding: 20px; background: #f3e7da; font-size: .8rem; }
.contact-section { background: #f1e5d8; }
.contact-grid { display: grid; grid-template-columns: .5fr 1.2fr; gap: 10vw; }
.contact-aside { border-top: 2px solid var(--brown); padding-top: 22px; }
.contact-aside > span, .contact-detail small { color: var(--amber-dark); font-size: .65rem; font-weight: 750; letter-spacing: .16em; }
.contact-aside > p { margin: 30px 0 50px; color: var(--muted); }
.contact-detail { display: grid; gap: 8px; padding: 20px 0; border-top: 1px solid rgba(65,39,31,.15); }
.contact-detail strong { font-weight: 500; }
.contact-detail a { text-decoration: underline; text-underline-offset: 4px; }
.contact-form-wrap { padding: clamp(30px, 5vw, 70px); background: var(--cream); }
.contact-form-wrap h2 { margin: 20px 0 45px; font: 500 clamp(2.8rem, 4vw, 4.4rem) var(--serif); }
.alert-success-custom, .alert-error-custom { margin-bottom: 25px; padding: 14px 18px; border-left: 3px solid #62834f; background: #edf4e8; }
.alert-error-custom { border-color: #a53e2d; background: #f8e7e2; }

/* Utility pages */
.legal-layout { margin-top: 0; }
.search-hero { padding: 190px 0 100px; background: #f1e4d4; }
.search-hero h1 { margin: 28px 0 50px; font-size: clamp(4rem, 8vw, 8.5rem); font-weight: 600; line-height: .85; }
.search-hero form { display: flex; gap: 20px; max-width: 850px; }
.search-hero input { flex: 1; border: 0; border-bottom: 1px solid rgba(65,39,31,.35); background: transparent; font-size: 1.1rem; outline: none; }
.result-count { margin-bottom: 45px; color: var(--muted); }
.empty-state { min-height: 360px; display: grid; place-items: center; align-content: center; text-align: center; }
.empty-state > span { color: var(--amber); font-size: 4rem; }
.empty-state h2 { font: italic clamp(2rem, 4vw, 4rem) var(--serif); }
.empty-state p { color: var(--muted); }
.empty-state a { border-bottom: 1px solid; font-weight: 700; }
.not-found { min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 8vw; padding: 120px 8vw 60px; }
.lost-path { position: relative; overflow: hidden; height: 70vh; background: #e8d0b7; }
.lost-path svg { width: 100%; height: 100%; }
.lost-path path { fill: none; stroke: var(--brown); stroke-width: 46; }
.lost-path span { position: absolute; width: 46px; height: 62px; left: 53%; top: 40%; background: var(--amber); border-radius: 60% 40% 60% 40%; transform: rotate(40deg); }
.error-code { color: var(--amber-dark); font-size: .7rem; font-weight: 750; letter-spacing: .2em; }
.not-found h1 { margin: 25px 0; font-size: clamp(3.5rem, 6vw, 7rem); font-weight: 560; line-height: .91; }
.not-found p { margin-bottom: 30px; color: var(--muted); }
.video-detail header { max-width: 950px; margin-bottom: 55px; }
.video-detail h1 { margin: 25px 0; font-size: clamp(3.7rem, 7vw, 7.5rem); line-height: .9; }
.video-detail header p { color: var(--muted); font-size: 1.15rem; }
.lazy-video { position: relative; overflow: hidden; aspect-ratio: 16/9; background: var(--brown); }
.lazy-video img { width: 100%; height: 100%; object-fit: cover; }
.lazy-video button { position: absolute; inset: 50% auto auto 50%; transform: translate(-50%, -50%); width: 82px; height: 82px; border: 0; border-radius: 50%; background: var(--cream); }

/* Footer */
.site-footer { background: #241b18; color: white; }
.footer-main { display: grid; grid-template-columns: 1.25fr .55fr .55fr .75fr; gap: 5vw; padding-top: 90px; padding-bottom: 70px; }
.footer-brand img { border-radius: 50%; margin-bottom: 24px; }
.footer-brand p { max-width: 330px; color: #c4b6af; font: italic 1.2rem/1.5 var(--serif); }
.footer-links, .footer-note { display: flex; flex-direction: column; gap: 10px; }
.footer-links > span, .footer-note > span { margin-bottom: 16px; color: #d69a71; font-size: .62rem; font-weight: 750; letter-spacing: .16em; text-transform: uppercase; }
.footer-links a, .social-list a { color: #ded4cf; font-size: .82rem; }
.footer-links a:hover, .social-list a:hover { color: #ffc37b; }
.footer-note p { color: #9f918b; font-size: .78rem; }
.social-list { display: flex; flex-wrap: wrap; gap: 12px; }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 20px; padding-bottom: 22px; border-top: 1px solid rgba(255,255,255,.1); color: #897a74; font-size: .63rem; letter-spacing: .1em; text-transform: uppercase; }
.mobile-appointment { display: none; }
.cookie-banner { position: fixed; z-index: 1200; right: 24px; bottom: 24px; width: min(480px, calc(100% - 48px)); padding: 20px; background: var(--cream); border: 1px solid rgba(65,39,31,.16); box-shadow: var(--shadow); }
.cookie-banner p { margin: 0; color: var(--muted); font-size: .78rem; }
.cookie-banner p strong { color: var(--brown); }
.cookie-banner p a { text-decoration: underline; }
.cookie-banner > div { display: flex; justify-content: flex-end; gap: 18px; margin-top: 14px; }

.reveal { transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js-ready .reveal:not(.is-visible) { opacity: .001; transform: translateY(24px); }

@media (max-width: 1100px) {
  .desktop-nav { display: none; }
  .menu-toggle { display: grid; }
  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: 1.08fr .8fr; }
  .hero h1 { font-size: clamp(5rem, 10vw, 7.5rem); }
  .hero-intro { grid-template-columns: 1fr; margin-top: 48px; }
  .hero-art { width: 400px; }
  .floating-note { left: -40px; }
  .story-card, .story-card:nth-child(3n+2), .story-card:nth-child(3n+3), .blog-grid .story-card { grid-column: span 6; }
  .story-card .story-visual, .story-card:nth-child(3n+2) .story-visual, .story-card:nth-child(3n+3) .story-visual { aspect-ratio: 1.05; }
  .article-layout { grid-template-columns: .25fr 1fr; }
  .appointment-shell { grid-template-columns: 1fr; }
  .appointment-help { max-width: 500px; }
}

@media (max-width: 768px) {
  .container-wide { width: min(100% - 36px, 1400px); }
  .section-pad { padding: 82px 0; }
  .header-inner { height: 70px; }
  .brand img { width: 42px; height: 42px; }
  .brand small { display: none; }
  .header-actions .search-toggle { display: none; }
  .hero { padding-top: 105px; background: radial-gradient(circle at 70% 40%, #ffdda9 0, transparent 48%), var(--cream); }
  .hero-grid { display: flex; flex-direction: column; align-items: stretch; }
  .hero-copy { display: contents; }
  .hero-kicker { order: 1; margin-bottom: 26px; }
  .hero h1 { order: 2; font-size: clamp(4.1rem, 20.5vw, 7rem); line-height: .74; }
  .hero h1 .accent-word { margin-left: 8vw; }
  .hero-art { order: 3; align-self: flex-end; width: 76vw; margin: 38px 0 0; }
  .hero-card { aspect-ratio: .82; padding: 28px; }
  .hero-card .card-label { font-size: .47rem; }
  .hero-card p { left: 22px; font-size: 1rem; }
  .orbit-copy { display: none; }
  .floating-note { left: -28vw; top: 54%; font-size: .85rem; }
  .hero-intro { order: 4; grid-template-columns: 1fr; width: 100%; margin: 42px 0 0; }
  .hero-actions { display: flex; flex-wrap: wrap; align-items: center; }
  .hero-foot { grid-template-columns: auto 1fr; margin-top: 26px; }
  .hero-foot p { display: none; }
  .manifesto-grid { grid-template-columns: 1fr; }
  .manifesto-mark { min-height: auto; flex-direction: row; align-items: center; }
  .seed-mark { width: 60px; height: 88px; }
  .manifesto-copy .display-copy { font-size: clamp(2.8rem, 12vw, 4.5rem); }
  .manifesto-bottom { grid-template-columns: 1fr auto; }
  .section-heading { grid-template-columns: 1fr; gap: 24px; margin-bottom: 48px; }
  .section-heading h2, .vlog-heading h2 { font-size: clamp(2.8rem, 12vw, 4.8rem); }
  .editorial-grid { gap: 45px 14px; }
  .story-card, .story-card:nth-child(3n+2), .story-card:nth-child(3n+3), .blog-grid .story-card { grid-column: span 12; }
  .story-card:nth-child(even) { margin-left: 12vw; }
  .story-card:nth-child(odd) { margin-right: 7vw; }
  .story-card h3 { font-size: 1.9rem; }
  .path-heading h2 { margin-bottom: 75px; }
  .path-steps { grid-template-columns: 1fr; margin-left: 15%; border-top: 0; }
  .path-steps article { padding: 24px 0 28px 24px; border-top: 1px solid rgba(255,255,255,.2); }
  .path-steps h3 { margin: 18px 0 8px; }
  .founder-grid { grid-template-columns: 1fr; gap: 60px; }
  .founder-portrait { width: 82%; }
  .founder-copy h2 { font-size: clamp(3rem, 12vw, 5rem); }
  .vlog-heading { align-items: center; }
  .vlog-grid { grid-template-columns: 1fr; }
  .vlog-empty { grid-template-columns: 1fr; padding: 35px 24px; }
  .sound-lines { height: 100px; }
  .appointment-cta-inner { grid-template-columns: 1fr; padding: 50px 24px; }
  .appointment-cta-inner .btn-cream { max-width: 100%; white-space: normal; text-align: center; }
  .appointment-cta h2 { font-size: clamp(3rem, 11vw, 4.8rem); }
  .breadcrumb-wrap { padding-top: 94px; white-space: nowrap; overflow: hidden; }
  .breadcrumb-wrap span[aria-current] { overflow: hidden; text-overflow: ellipsis; }
  .inner-hero { padding: 58px 0 70px; }
  .inner-hero-grid { grid-template-columns: 1fr; gap: 38px; }
  .inner-hero h1 { font-size: clamp(4rem, 18vw, 6.5rem); }
  .about-story-grid { grid-template-columns: 1fr; }
  .story-art { min-height: 500px; }
  .value-grid { grid-template-columns: 1fr; }
  .value-grid article, .value-grid article + article { padding: 30px 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.18); }
  .value-grid h3 { margin: 25px 0 12px; }
  .article-header { grid-template-columns: 1fr; gap: 24px; padding-top: 45px; }
  .article-title h1 { font-size: clamp(3.3rem, 14vw, 5.7rem); }
  .article-cover { width: 100%; height: 58vh; }
  .article-layout { grid-template-columns: 1fr; padding-top: 60px; padding-bottom: 90px; }
  .article-aside, .article-body { grid-column: 1; }
  .article-aside { flex-direction: row; flex-wrap: wrap; align-items: center; }
  .article-body blockquote { margin-inline: 0; }
  .progress-steps li { font-size: 0; gap: 0; }
  .progress-steps li span { font-size: .6rem; }
  #appointment-form { padding: 28px 18px; }
  .type-grid, .date-time-grid { grid-template-columns: 1fr; }
  .type-card p { min-height: 0; }
  .slot-grid { grid-template-columns: repeat(3, 1fr); }
  .form-grid { grid-template-columns: 1fr; }
  .form-grid .full { grid-column: 1; }
  .step-actions .btn { padding-inline: 18px; }
  .contact-grid { grid-template-columns: 1fr; gap: 55px; }
  .contact-form-wrap { padding: 32px 20px; }
  .search-hero { padding: 140px 0 70px; }
  .search-hero form { flex-direction: column; align-items: stretch; }
  .search-hero input { min-height: 55px; }
  .not-found { grid-template-columns: 1fr; padding: 100px 18px 70px; }
  .lost-path { height: 44vh; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-brand, .footer-note { grid-column: 1 / -1; }
  .mobile-appointment { position: fixed; z-index: 900; display: flex; justify-content: space-between; align-items: center; left: 14px; right: 14px; bottom: 12px; min-height: 48px; padding: 0 20px; border-radius: 100px; background: var(--brown); color: white; box-shadow: 0 10px 35px rgba(65,39,31,.25); font-size: .75rem; font-weight: 750; }
  body:has(.cookie-banner:not([hidden])) .mobile-appointment { display: none; }
  .cookie-banner { bottom: 75px; right: 14px; width: calc(100% - 28px); }
  .footer-bottom { padding-bottom: 80px; }
}

@media (max-width: 390px) {
  .container-wide { width: min(100% - 28px, 1400px); }
  .brand strong { font-size: .76rem; }
  .hero h1 { font-size: 4rem; }
  .hero-art { width: 80vw; }
  .floating-note { left: -18vw; }
  .hero-actions .btn { width: 100%; }
  .manifesto-bottom { grid-template-columns: 1fr; }
  .type-card footer { flex-direction: column; gap: 7px; }
  .slot-grid { grid-template-columns: repeat(2, 1fr); }
  .appointment-summary { min-width: 0; width: 100%; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-brand, .footer-note { grid-column: 1; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .js-ready .reveal:not(.is-visible) { opacity: 1; transform: none; }
}
