:root {
  --cream: #f7f3ee;
  --paper: #ffffff;
  --ink: #44372f;
  --brown: #765541;
  --red: #b75b2b;
  --yellow: #d98a4b;
  --sage: #9b6b50;
  --line: rgba(40, 36, 25, 0.2);
  --serif: "YuMincho", "Yu Mincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", serif;
  --sans: "Avenir Next", "Helvetica Neue", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 0.04em;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
figure, p, h1, h2, h3, ul { margin: 0; }
ul { padding: 0; list-style: none; }
::selection { background: var(--yellow); color: var(--ink); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
[hidden] { display: none !important; }
.skip-link { position: fixed; left: 20px; top: 12px; z-index: 100; padding: 12px 20px; background: var(--paper); color: var(--ink); transform: translateY(-160%); }
.skip-link:focus { transform: none; }
body.menu-is-open { overflow: hidden; }
main:focus { outline: none; }

.motion-ready [data-reveal] {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
.motion-ready [data-reveal="left"] { transform: translateX(-34px); }
.motion-ready [data-reveal="right"] { transform: translateX(34px); }
.motion-ready [data-reveal="scale"] { transform: scale(.965); }
.motion-ready [data-reveal][data-revealed="true"] { opacity: 1; transform: none; will-change: auto; }
[data-reveal-delay="1"] { --reveal-delay: 90ms; }
[data-reveal-delay="2"] { --reveal-delay: 180ms; }
[data-reveal-delay="3"] { --reveal-delay: 270ms; }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 20;
  height: 112px;
  padding: 30px clamp(24px, 4vw, 68px);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  color: var(--paper);
  transition: height .55s cubic-bezier(.2,.7,.2,1), padding .55s cubic-bezier(.2,.7,.2,1), background-color .55s ease, backdrop-filter .55s ease;
}
.admin-bar .site-header { top: 32px; }
.site-header.is-compact { height: 70px; padding-top: 18px; padding-bottom: 16px; background: transparent; backdrop-filter: none; }
.site-header.is-compact .brand-kana { font-size: 18px; }
.site-header.is-compact .brand-en { opacity: 0; transform: translateY(-4px); }
.brand { display: flex; flex-direction: column; line-height: 1; gap: 8px; position: relative; z-index: 2; }
.brand-kana { font-family: var(--serif); font-size: 22px; font-weight: 600; letter-spacing: 0.12em; transition: font-size .55s cubic-bezier(.2,.7,.2,1); }
.brand-en { font-size: 8px; letter-spacing: 0.28em; transition: opacity .35s ease, transform .35s ease; }
.global-nav { display: flex; align-items: center; gap: clamp(18px, 2vw, 38px); font-size: 12px; font-weight: 600; letter-spacing: 0.14em; }
.global-nav > a { padding: 10px 0; position: relative; min-height: 44px; }
.brand, .global-nav, .menu-button { transition: color .2s ease; }
.site-header .is-dark-ink { color: var(--ink); }
.site-header .is-light-ink { color: var(--paper); text-shadow: 0 1px 10px rgba(0,0,0,.4); }
.site-header.menu-is-open .brand, .site-header.menu-is-open .global-nav, .site-header.menu-is-open .menu-button { color: var(--paper); }
.global-nav > a:not(.nav-instagram)::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 1px; background: currentColor; transition: right .3s ease;
}
.global-nav > a:hover::after, .global-nav > a[aria-current="page"]::after { right: 0; }
.nav-instagram { display: grid; place-items: center; width: 44px; height: 44px; border: 1px solid currentColor; border-radius: 50%; padding: 0 !important; transition: background .3s ease, color .3s ease, transform .3s ease; }
.nav-instagram svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.5; }
.nav-instagram:hover { background: var(--paper); color: var(--brown); transform: translateY(-2px); }
.arrow { display: inline-block; font-size: .9em; margin-left: .25em; transition: transform .25s ease; }
a:hover .arrow { transform: translate(3px, -3px); }
.menu-button { display: none; }

.hero {
  min-height: 780px;
  height: min(920px, 100svh);
  background: var(--brown);
  position: relative;
  color: var(--paper);
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .14;
  pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,.65) .6px, transparent .7px);
  background-size: 6px 6px;
  mix-blend-mode: soft-light;
}
.hero-copy {
  position: absolute;
  z-index: 3;
  left: clamp(28px, 8vw, 124px);
  top: 50%;
  width: min(42vw, 590px);
  transform: translateY(-44%);
}
.hero-eyebrow { font-size: 9px; letter-spacing: .3em; margin-bottom: 42px; opacity: .72; }
.hero h1 { font-family: var(--serif); font-size: clamp(42px, 5.1vw, 78px); line-height: 1.42; font-weight: 500; letter-spacing: .1em; }
.hero h1 span { display: block; animation: heroRise .85s cubic-bezier(.2,.7,.2,1) both; }
.hero h1 span:nth-child(2) { animation-delay: .12s; }
.hero h1 span:nth-child(3) { animation-delay: .24s; }
@keyframes heroRise { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: translateY(0); } }
.hero-lead { margin-top: 34px; font-family: var(--serif); font-size: 14px; line-height: 2.05; letter-spacing: .12em; opacity: .9; }
.round-link {
  width: 104px; height: 104px; border: 1px solid rgba(255,255,255,.5); border-radius: 50%; margin-top: 38px;
  display: flex; align-items: center; justify-content: center; gap: 12px; font-size: 9px; letter-spacing: .16em; line-height: 1.5;
  transition: background .35s ease, color .35s ease, transform .35s ease;
}
.round-link:hover { background: var(--paper); color: var(--brown); transform: rotate(-6deg); }
.round-link > span:last-child { font-size: 16px; }
.hero-visual { position: absolute; inset: 0; }
.hero-photo { position: absolute; overflow: hidden; background: #312c21; }
.hero-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(28,20,15,.64) 0%, rgba(28,20,15,.4) 40%, rgba(28,20,15,.1) 72%, rgba(28,20,15,.2) 100%); }
.hero-photo img { filter: saturate(.82) sepia(.08); }
.hero-photo-main { inset: 0; clip-path: none; }
.hero-photo-main img { object-position: 50% 58%; transform: scale(1.035); animation: heroZoom 9s ease-out both; }
@keyframes heroZoom { from { transform: scale(1.1); } to { transform: scale(1.035); } }
.hero-photo-sub { display: none; width: 27%; aspect-ratio: 3 / 4; left: -2%; bottom: 7%; z-index: 2; border: 8px solid var(--brown); transform: rotate(-3deg); }
.hero-photo-sub img { object-position: 52% 80%; }
.vertical-note { position: absolute; right: 35px; top: 155px; z-index: 2; writing-mode: vertical-rl; font-family: var(--serif); font-size: 12px; line-height: 2; letter-spacing: .2em; text-shadow: 0 1px 10px rgba(0,0,0,.35); }
.scroll-note { position: absolute; z-index: 3; right: clamp(24px, 4vw, 64px); bottom: 30px; font-size: 8px; letter-spacing: .26em; display: flex; align-items: center; gap: 12px; }
.scroll-note span { width: 48px; height: 1px; background: rgba(255,255,255,.7); position: relative; overflow: hidden; }
.scroll-note span::after { content: ""; position: absolute; inset: 0; background: #fff; transform: translateX(-100%); animation: scrollLine 2s ease-in-out infinite; }
@keyframes scrollLine { 55%,100% { transform: translateX(100%); } }

/* 物語型FV。旧静的HTML版のスクロール演出を、現行の複数ページ構成へ移植。 */
.immersive-hero {
  position: relative;
  z-index: 2;
  height: 100svh;
  min-height: 680px;
  background: #211a15;
  color: var(--paper);
}
.motion-story-ready .immersive-hero {
  height: 460svh;
  min-height: calc(var(--site-vh, 1vh) * 460);
  background: transparent;
}
.immersive-hero__stage {
  position: relative;
  height: 100svh;
  min-height: 680px;
  overflow: hidden;
  background: #211a15;
}
.motion-story-ready .immersive-hero__stage {
  position: sticky;
  top: 0;
  height: calc(var(--site-vh, 1vh) * 100);
  min-height: 0;
  background: transparent;
}
.immersive-hero__stage::after {
  content: "";
  position: absolute;
  z-index: 8;
  inset: 0;
  pointer-events: none;
  opacity: var(--immersive-grain-opacity, .09);
  background-image: radial-gradient(rgba(255,255,255,.65) .48px, transparent .66px);
  background-size: 7px 7px;
  mix-blend-mode: soft-light;
}
.immersive-hero__copy {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 50%;
  width: min(92vw, 1040px);
  text-align: center;
  opacity: var(--immersive-copy-opacity, 1);
  transform: translate(-50%, calc(-44% + var(--immersive-copy-y, 0px)));
  text-shadow: 0 3px 32px rgba(0,0,0,.45);
  will-change: transform, opacity;
  pointer-events: none;
}
.immersive-hero__eyebrow { font-size: 10px; font-weight: 700; letter-spacing: .24em; animation: immersiveBloom 1.35s cubic-bezier(.16,1,.3,1) .08s both; }
.immersive-hero__copy h1 {
  margin-top: 0;
  font-family: var(--serif);
  font-size: clamp(38px, 4.9vw, 70px);
  font-weight: 400;
  line-height: 1.42;
  letter-spacing: .09em;
}
.immersive-hero__copy h1 span { display: block; animation: immersiveBloom 1.65s cubic-bezier(.16,1,.3,1) .2s both; }
.immersive-hero__copy h1 span:first-child { white-space: nowrap; }
.immersive-hero__copy h1 span:nth-child(2) { animation-delay: .42s; }
.immersive-hero__lead { margin-top: 28px; font-family: var(--serif); font-size: 14px; line-height: 2.05; letter-spacing: .12em; }
@keyframes immersiveBloom { from { opacity: 0; filter: blur(12px); transform: translateY(17px) scale(.985); } to { opacity: 1; filter: blur(0); transform: translateY(0) scale(1); } }
.immersive-hero__narrative {
  display: none;
  position: absolute;
  z-index: 4;
  left: 50%;
  top: 0;
  height: 100%;
  width: min(88vw, 760px);
  text-align: center;
  opacity: 0;
  pointer-events: none;
  will-change: transform, opacity;
}
.motion-story-ready .immersive-hero__narrative { display: block; }
.immersive-hero__narrative-block {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: clamp(19px, 2.1vw, 32px);
  font-weight: 400;
  line-height: 2.15;
  letter-spacing: .2em;
  text-shadow: 0 2px 26px rgba(0,0,0,.62);
  will-change: filter, opacity, transform;
}
.immersive-hero__narrative-block::before {
  content: none;
  display: none;
}
.immersive-hero__visual {
  position: absolute;
  z-index: 2;
  pointer-events: none;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  opacity: 1;
  will-change: left, top, width, height, border-radius, opacity;
}
.immersive-hero__visual.is-handed-off { opacity: 0; }
.immersive-hero__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: var(--immersive-overlay-opacity, 1);
  background: linear-gradient(90deg, rgba(17,14,11,.52), rgba(17,14,11,.28) 48%, rgba(17,14,11,.3)), linear-gradient(0deg, rgba(17,14,11,.36), rgba(17,14,11,.04) 48%, rgba(17,14,11,.2));
}
.immersive-hero__visual img {
  object-position: center center;
  filter: saturate(.78) sepia(.08);
  transform: scale(var(--immersive-hero-scale, 1.04));
  will-change: transform;
}
.immersive-hero__scroll {
  position: absolute;
  z-index: 3;
  right: clamp(24px, 4vw, 64px);
  bottom: 30px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 9px;
  letter-spacing: .24em;
}
.immersive-hero__scroll span { position: relative; width: 50px; height: 1px; overflow: hidden; background: rgba(255,255,255,.45); }
.immersive-hero__scroll span::after { content: ""; position: absolute; inset: 0; background: #fff; transform: translateX(-100%); animation: immersiveScrollLine 2s ease-in-out infinite; }
@keyframes immersiveScrollLine { 55%,100% { transform: translateX(100%); } }

.immersive-stream {
  position: relative;
  z-index: 1;
  height: 100svh;
  padding: 0;
  background: #c9bba9;
}
.motion-story-ready .immersive-stream {
  position: absolute;
  inset: 0;
  height: 100%;
  opacity: 1;
}
.immersive-stream__stage { position: relative; height: 100svh; overflow: hidden; background: #c9bba9; }
.motion-story-ready .immersive-stream__stage { height: 100%; }
.immersive-stream__viewport { height: 50svh; overflow: hidden; }
.motion-story-ready .immersive-stream__viewport { height: 50%; }
.immersive-stream__track {
  --immersive-stream-start-x: 0px;
  display: flex;
  width: max-content;
  animation: immersiveStreamLeft 76s linear infinite paused;
  will-change: transform;
}
.immersive-stream__track--reverse { animation-name: immersiveStreamRight; animation-duration: 88s; }
.motion-story-ready .immersive-stream__track { animation-play-state: paused; }
.motion-story-ready .immersive-stream.is-playing .immersive-stream__track { animation-play-state: running; }
.immersive-stream__toggle { position: absolute; z-index: 5; right: clamp(20px,4vw,64px); bottom: 24px; min-height: 44px; padding: 10px 20px; border: 1px solid rgba(255,255,255,.6); border-radius: 99px; background: rgba(40,36,25,.86); color: var(--paper); font-size: 11px; letter-spacing: .1em; cursor: pointer; }
.immersive-stream__group { display: flex; }
.immersive-stream__item {
  position: relative;
  flex: none;
  width: max(20vw, 37.5svh);
  height: 50svh;
  overflow: hidden;
  background: #ddd2c4;
}
.motion-story-ready .immersive-stream__item { width: max(20vw, calc(var(--site-vh, 1vh) * 37.5)); height: calc(var(--site-vh, 1vh) * 50); }
.immersive-stream__item--handoff { width: min(100vw, max(20vw, 75svh)); }
.motion-story-ready .immersive-stream__item--handoff { width: min(100vw, max(20vw, calc(var(--site-vh, 1vh) * 75))); }
.immersive-stream__item img { filter: saturate(.84) contrast(1.06); transition: transform .9s cubic-bezier(.2,.7,.2,1), filter .35s ease; }
.immersive-stream__item--lead img { object-position: center center; }
.immersive-stream__item--handoff img { object-position: center center; filter: saturate(.78) sepia(.08); }
.immersive-stream__item:not(.immersive-stream__item--handoff):hover img { transform: scale(1.035); filter: saturate(1) contrast(1.08); }
@keyframes immersiveStreamLeft { from { transform: translateX(var(--immersive-stream-start-x)); } to { transform: translateX(calc(var(--immersive-stream-start-x) - 50%)); } }
@keyframes immersiveStreamRight { from { transform: translateX(-50%); } to { transform: translateX(0); } }

.partners { border-bottom: 1px solid var(--line); background: var(--paper); padding: 30px 0 26px; overflow: hidden; }
.partner-title { padding: 0 clamp(24px, 5vw, 72px) 20px; display: flex; align-items: baseline; gap: 18px; }
.partner-title span { font-size: 9px; font-weight: 700; letter-spacing: .22em; }
.partner-title small { font-size: 9px; color: rgba(40,36,25,.52); letter-spacing: .06em; }
.marquee { width: 100%; overflow: hidden; }
.marquee-track { width: max-content; display: flex; animation: marquee 30s linear infinite; }
.partner-mark { width: 230px; border-left: 1px solid var(--line); font-family: var(--serif); font-style: italic; font-size: 20px; letter-spacing: .08em; text-align: center; padding: 18px 26px; color: rgba(40,36,25,.46); }
.partner-links { margin: 26px clamp(24px, 5vw, 72px) 0; padding-top: 22px; border-top: 1px solid var(--line); display: grid; grid-template-columns: 150px 1fr auto; gap: 24px; align-items: center; }
.partner-links > p { font-size: 8px; font-weight: 700; letter-spacing: .22em; }
.partner-links > div { display: flex; flex-wrap: wrap; gap: 10px; }
.partner-links a { border: 1px solid var(--line); border-radius: 999px; padding: 9px 15px; font-size: 10px; letter-spacing: .08em; transition: background .25s ease, color .25s ease, border-color .25s ease; }
.partner-links a:hover { background: var(--brown); border-color: var(--brown); color: var(--paper); }
.partner-links small { max-width: 250px; font-size: 8px; line-height: 1.7; color: rgba(40,36,25,.52); }
@keyframes marquee { to { transform: translateX(-50%); } }

.story { min-height: 920px; padding: 125px clamp(24px, 6vw, 92px); position: relative; display: grid; grid-template-columns: .35fr 1fr 1fr; gap: 6vw; overflow: hidden; }
.story-index { display: flex; align-items: flex-start; gap: 12px; font-size: 9px; letter-spacing: .2em; }
.story-index span { font-family: var(--serif); font-size: 34px; line-height: .8; }
.story-index p { writing-mode: vertical-rl; }
.story-photos { position: relative; min-height: 650px; }
.story-photos figure:first-child { position: absolute; width: 78%; height: 76%; left: 0; top: 0; transform: rotate(-2deg); }
.story-photos figure:last-child { position: absolute; width: 51%; height: 48%; right: -3%; bottom: 0; border: 10px solid var(--cream); transform: rotate(5deg); }
.story-photos img { filter: saturate(.78) contrast(.96); }
.story-copy { display: flex; gap: clamp(28px, 4vw, 58px); padding-top: 25px; }
.vertical-story { writing-mode: vertical-rl; font-family: var(--serif); font-size: clamp(26px, 2.5vw, 39px); line-height: 1.8; letter-spacing: .13em; }
.story-body { align-self: flex-end; max-width: 370px; padding-bottom: 90px; font-family: var(--serif); font-size: 14px; line-height: 2.25; letter-spacing: .08em; }
.story-body p + p { margin-top: 30px; }
.signature { font-family: "Snell Roundhand", "Segoe Script", cursive !important; font-size: 24px !important; color: var(--brown); transform: rotate(-4deg); }

.recipe-section { background: var(--paper); padding: 125px clamp(24px, 5.5vw, 86px) 150px; }
.section-heading { max-width: 1240px; margin: 0 auto 66px; display: flex; justify-content: space-between; align-items: flex-end; gap: 50px; }
.section-number { font-size: 9px; font-weight: 700; letter-spacing: .24em; margin-bottom: 25px; }
.section-heading h2, .works h2, .contact h2 { font-family: var(--serif); font-size: clamp(34px, 4vw, 59px); line-height: 1.55; font-weight: 500; letter-spacing: .08em; }
.section-heading > p { max-width: 420px; font-family: var(--serif); font-size: 13px; line-height: 2; color: rgba(40,36,25,.7); }
.search-panel { max-width: 1240px; margin: 0 auto 72px; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--line); }
.search-field { min-height: 104px; display: flex; align-items: center; border-bottom: 1px solid var(--line); position: relative; }
.search-icon { width: 22px; height: 22px; border: 1px solid var(--ink); border-radius: 50%; margin: 0 25px 0 5px; position: relative; flex: none; }
.search-icon::after { content: ""; width: 8px; height: 1px; background: var(--ink); position: absolute; right: -6px; bottom: 0; transform: rotate(45deg); transform-origin: left center; }
.search-field input { width: 100%; border: 0; outline: 0; background: transparent; font-family: var(--serif); font-size: clamp(18px, 2vw, 27px); letter-spacing: .08em; }
.search-field:focus-within { outline: 2px solid var(--brown); outline-offset: 6px; }
.search-field input::placeholder { color: rgba(40,36,25,.36); }
.search-field button { border: 0; background: transparent; width: 46px; height: 46px; cursor: pointer; font-size: 22px; }
.filter-group { display: grid; grid-template-columns: 150px 1fr; min-height: 86px; align-items: center; border-bottom: 1px solid var(--line); }
.filter-group > p { font-size: 8px; font-weight: 700; letter-spacing: .2em; }
.filter-list { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; padding: 18px 0; }
.filter-list button { border: 1px solid var(--line); border-radius: 999px; background: transparent; padding: 9px 16px; font-size: 11px; letter-spacing: .08em; cursor: pointer; transition: .25s ease; }
.filter-list button:hover, .filter-list button.is-selected { background: var(--brown); border-color: var(--brown); color: var(--paper); }
.result-meta { min-height: 72px; display: flex; justify-content: space-between; align-items: center; }
.result-meta p { font-size: 9px; letter-spacing: .2em; }
.result-meta strong { font-family: var(--serif); font-size: 28px; font-weight: 500; margin-right: 8px; }
.result-meta button { border: 0; background: transparent; text-decoration: underline; text-underline-offset: 4px; font-size: 10px; cursor: pointer; }

.recipe-grid { max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 68px 28px; }
.recipe-card a { display: block; }
.recipe-image { aspect-ratio: 4 / 5; overflow: hidden; position: relative; background: #e8e0d2; }
.recipe-image img { transition: transform .8s cubic-bezier(.2,.7,.2,1), filter .5s ease; filter: saturate(.86); object-position: 50% 68%; }
.recipe-card:hover .recipe-image img { transform: scale(1.045); filter: saturate(1); }
.card-number { position: absolute; left: 15px; top: 14px; color: #fff; font-family: var(--serif); font-size: 13px; text-shadow: 0 1px 6px rgba(0,0,0,.35); }
.card-arrow { position: absolute; right: 13px; top: 13px; width: 38px; height: 38px; border-radius: 50%; background: var(--paper); display: flex; align-items: center; justify-content: center; font-size: 13px; }
.recipe-copy { padding: 22px 4px 0; }
.recipe-meta { display: flex; justify-content: space-between; align-items: center; font-size: 9px !important; letter-spacing: .12em; text-transform: uppercase; color: rgba(40,36,25,.55) !important; }
.recipe-meta span { color: var(--brown); }
.recipe-copy h3 { margin: 12px 0 10px; font-family: var(--serif); font-weight: 600; font-size: 20px; line-height: 1.55; letter-spacing: .06em; }
.recipe-copy > p { font-family: var(--serif); font-size: 12px; line-height: 1.9; color: rgba(40,36,25,.68); }
.recipe-copy ul { display: flex; flex-wrap: wrap; gap: 4px 12px; margin-top: 15px; }
.recipe-copy li { font-size: 9px; color: var(--sage); }
.empty-state { text-align: center; padding: 80px 20px; max-width: 1240px; margin: 0 auto; border-bottom: 1px solid var(--line); }
.empty-state > span { font-size: 32px; color: var(--brown); }
.empty-state h3 { font-family: var(--serif); font-size: 20px; font-weight: 500; margin: 12px 0; }
.empty-state p { font-size: 12px; color: rgba(40,36,25,.6); }
.empty-state button { margin-top: 26px; cursor: pointer; }

.recipe-entry { min-height: 430px; padding: 94px clamp(24px,7vw,110px); background: var(--brown); color: var(--paper); display: flex; align-items: flex-end; justify-content: space-between; gap: 70px; }
.recipe-entry h2 { font-family: var(--serif); font-size: clamp(34px,4vw,59px); font-weight: 500; line-height: 1.55; letter-spacing: .08em; }
.recipe-entry p:not(.section-number) { max-width: 570px; margin-top: 22px; font-family: var(--serif); font-size: 13px; line-height: 2; color: rgba(251,248,241,.72); }
.recipe-entry .pill-button { flex: none; }

.works { background: var(--brown); color: var(--paper); padding: 125px clamp(24px, 6vw, 92px); display: grid; grid-template-columns: 1fr 1.1fr; gap: 10vw; }
.works-copy > p:not(.section-number) { font-family: var(--serif); font-size: 13px; line-height: 2.1; margin-top: 32px; color: rgba(251,248,241,.72); }
.text-link { margin-top: 40px; display: inline-block; font-size: 9px; letter-spacing: .22em; border-bottom: 1px solid rgba(255,255,255,.5); padding-bottom: 8px; }
.works-list { border-top: 1px solid rgba(255,255,255,.3); }
.works-list > div { min-height: 180px; border-bottom: 1px solid rgba(255,255,255,.3); display: grid; grid-template-columns: 70px 1fr 150px; align-items: center; gap: 20px; }
.works-list span { font-family: var(--serif); font-size: 13px; opacity: .7; }
.works-list h3 { font-family: var(--serif); font-size: 25px; line-height: 1.35; font-weight: 500; letter-spacing: .08em; }
.works-list p { font-size: 10px; opacity: .65; }

.profile { display: grid; grid-template-columns: 1fr 1fr; min-height: 760px; background: var(--yellow); }
.profile-photo { position: relative; overflow: hidden; }
.profile-photo::after { content: ""; position: absolute; inset: 0; background: rgba(95,40,29,.08); }
.profile-photo img { filter: sepia(.12) saturate(.7); object-position: 50% 72%; }
.profile-photo span { position: absolute; z-index: 2; right: 28px; bottom: 24px; font-size: 8px; letter-spacing: .18em; color: #fff; text-align: right; }
.profile-copy { padding: 100px clamp(35px, 7vw, 110px); display: flex; flex-direction: column; justify-content: center; }
.profile-role { font-family: var(--serif); font-size: 14px; margin-bottom: 14px; }
.profile-copy h2 { font-family: var(--serif); font-size: clamp(34px, 4vw, 56px); font-weight: 500; letter-spacing: .12em; }
.profile-copy h2 span { display: block; margin-top: 10px; font-family: var(--sans); font-size: 9px; letter-spacing: .28em; }
.profile-copy > p:not(.section-number):not(.profile-role) { margin-top: 35px; font-family: var(--serif); font-size: 13px; line-height: 2.2; }
.profile-note { opacity: .56; font-size: 10px !important; }

.contact { padding: 150px 24px 130px; text-align: center; position: relative; overflow: hidden; }
.contact-script { font-family: "Snell Roundhand", "Segoe Script", cursive; font-size: clamp(48px, 8vw, 115px); color: rgba(95,40,29,.09); white-space: nowrap; position: absolute; left: 50%; top: 65px; transform: translateX(-50%) rotate(-4deg); }
.contact .section-number { position: relative; }
.contact h2 { position: relative; }
.contact > p:not(.contact-script):not(.section-number) { margin-top: 28px; font-family: var(--serif); font-size: 13px; }
.contact-button { width: min(420px, 90vw); margin: 50px auto 0; border: 1px solid var(--ink); border-radius: 999px; min-height: 90px; display: flex; align-items: center; justify-content: center; gap: 28px; font-size: 11px; letter-spacing: .2em; transition: .3s ease; }
.contact-button:hover { background: var(--brown); border-color: var(--brown); color: var(--paper); }
.contact small { display: block; margin-top: 20px; font-size: 9px; opacity: .5; }

footer { background: var(--ink); color: var(--paper); padding: 70px clamp(24px, 5vw, 76px) 30px; }
.footer-brand { font-family: var(--serif); font-size: 24px; display: flex; flex-direction: column; gap: 9px; }
.footer-brand small { font-family: var(--sans); font-size: 8px; letter-spacing: .24em; opacity: .6; }
.footer-links { display: flex; gap: 35px; margin: 60px 0; font-size: 9px; letter-spacing: .2em; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.18); padding-top: 24px; display: flex; align-items: center; justify-content: space-between; font-size: 8px; letter-spacing: .16em; }

@media (max-width: 980px) {
  .motion-ready [data-reveal="left"], .motion-ready [data-reveal="right"] { transform: translateY(34px); }
  .motion-ready [data-reveal][data-revealed="true"] { transform: none; }
  .site-header { height: 86px; padding: 24px; }
  .site-header.is-compact { height: 66px; padding: 14px 24px; }
  .brand-kana { font-size: 18px; }
  .global-nav { position: fixed; inset: 0; background: var(--brown); flex-direction: column; justify-content: center; gap: 28px; font-size: 13px; opacity: 0; visibility: hidden; transition: .35s ease; }
  .global-nav.is-open { opacity: 1; visibility: visible; }
  .menu-button { display: flex; z-index: 2; width: 44px; height: 44px; border: 0; background: transparent; flex-direction: column; align-items: center; justify-content: center; gap: 7px; cursor: pointer; }
  .menu-button span { width: 24px; height: 1px; background: currentColor; transition: .3s ease; }
  .menu-button.is-open span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-button.is-open span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .hero { height: auto; min-height: 820px; display: flex; flex-direction: column; }
  .hero-copy { position: relative; left: auto; top: auto; transform: none; width: auto; padding: 150px 28px 54px; order: 1; }
  .hero-eyebrow { margin-bottom: 28px; }
  .hero h1 { font-size: clamp(39px, 11vw, 58px); }
  .hero-visual { position: relative; inset: auto; height: 520px; order: 2; }
  .hero-photo-main { inset: 0; clip-path: none; }
  .hero-photo-sub { width: 34%; left: 7%; bottom: 5%; border-width: 6px; }
  .vertical-note { right: 20px; top: 38px; }
  .round-link { position: absolute; right: 30px; bottom: -52px; z-index: 5; background: var(--brown); }
  .scroll-note { display: none; }
  .immersive-hero__copy { width: min(92vw, 820px); }
  .immersive-hero__copy h1 { font-size: clamp(36px, 6.4vw, 58px); }
  .immersive-hero__narrative { width: min(88vw, 680px); }
  .story { grid-template-columns: 50px 1fr; min-height: auto; padding-top: 95px; }
  .story-photos { min-height: 570px; }
  .story-copy { grid-column: 2; }
  .recipe-grid { grid-template-columns: repeat(2, 1fr); }
  .works { grid-template-columns: 1fr; gap: 70px; }
}

@media (max-width: 680px) {
  body { font-size: 14px; }
  .hero { min-height: 760px; }
  .hero-copy { padding-top: 132px; }
  .hero h1 { letter-spacing: .05em; }
  .hero-lead { font-size: 12px; }
  .hero-visual { height: 440px; }
  .immersive-hero__copy { top: 46%; width: calc(100% - 34px); }
  .immersive-hero__copy h1 { font-size: clamp(27px, 8.1vw, 36px); line-height: 1.5; letter-spacing: .045em; }
  .immersive-hero__lead { font-size: 12px; }
  .immersive-hero__narrative { width: calc(100% - 48px); }
  .immersive-hero__narrative-block { min-height: 52vh; font-size: clamp(13px, 4.1vw, 17px); line-height: 2.25; letter-spacing: .08em; }
  .immersive-hero__scroll { display: none; }
  .immersive-stream__item { width: 84vw; }
  .immersive-stream__track { --immersive-stream-start-x: 0px; }
  .partner-title { display: block; }
  .partner-title small { display: block; margin-top: 7px; }
  .partner-mark { width: 180px; font-size: 16px; }
  .partner-links { grid-template-columns: 1fr; gap: 13px; }
  .partner-links small { max-width: none; }
  .story { display: block; padding: 80px 24px 90px; }
  .story-index { margin-bottom: 35px; }
  .story-index p { writing-mode: initial; }
  .story-photos { min-height: 470px; margin-left: 30px; }
  .story-copy { display: block; padding-top: 54px; }
  .vertical-story { writing-mode: initial; font-size: 29px; line-height: 1.75; }
  .story-body { padding: 38px 0 0; }
  .desktop-only { display: none; }
  .recipe-section { padding: 90px 20px 100px; }
  .recipe-entry { min-height: 410px; padding: 80px 20px; display: block; }
  .recipe-entry h2 { font-size: 31px; }
  .recipe-entry .pill-button { margin-top: 38px; }
  .section-heading { display: block; margin-bottom: 42px; }
  .section-heading > p { margin-top: 26px; }
  .section-heading h2, .works h2, .contact h2 { font-size: 32px; }
  .search-field { min-height: 82px; }
  .search-field input { font-size: 16px; }
  .search-icon { margin-left: 3px; margin-right: 18px; }
  .filter-group { display: block; padding: 20px 0 14px; }
  .filter-list { padding: 12px 0 0; gap: 7px; }
  .filter-list button { padding: 8px 12px; font-size: 10px; }
  .recipe-grid { grid-template-columns: 1fr; gap: 54px; }
  .recipe-card:nth-child(even) { margin-left: 13%; }
  .recipe-card:nth-child(odd) { margin-right: 13%; }
  .works { padding: 90px 24px; }
  .works-list > div { min-height: 145px; grid-template-columns: 38px 1fr; }
  .works-list h3 { font-size: 20px; }
  .works-list p { grid-column: 2; margin-top: -28px; padding-bottom: 22px; }
  .profile { grid-template-columns: 1fr; }
  .profile-photo { min-height: 520px; }
  .profile-copy { padding: 80px 24px; }
  .contact { padding-top: 110px; }
  .footer-links { display: grid; grid-template-columns: 1fr 1fr; }
}

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

/* No-JavaScript and reduced-motion visitors retain all four story paragraphs. */
html:not(.motion-story-ready) .immersive-hero { height: auto; min-height: 0; }
html:not(.motion-story-ready) .immersive-hero__stage { height: auto; min-height: 0; padding-top: 100svh; }
html:not(.motion-story-ready) .immersive-hero__visual { height: 100svh; }
html:not(.motion-story-ready) .immersive-hero__copy { top: 50svh; }
html:not(.motion-story-ready) .immersive-hero__narrative { display: grid; gap: 64px; position: relative; inset: auto; width: 100%; height: auto; padding: 90px 24px; opacity: 1; }
html:not(.motion-story-ready) .immersive-hero__narrative-block { position: relative; inset: auto; min-height: 0; }
html:not(.motion-story-ready) .immersive-hero__scroll { display: none; }
html:not(.motion-story-ready) .immersive-stream, html:not(.motion-story-ready) .immersive-stream__stage { height: auto; }
html:not(.motion-story-ready) .immersive-stream__viewport { height: auto; overflow-x: auto; }
html:not(.motion-story-ready) .immersive-stream__track { animation: none; width: 100%; }
html:not(.motion-story-ready) .immersive-stream__group { width: 100%; display: grid; grid-template-columns: repeat(5, minmax(0,1fr)); }
html:not(.motion-story-ready) .immersive-stream__item { width: 100%; height: auto; aspect-ratio: 2 / 3; }
html:not(.motion-story-ready) .immersive-stream__group.is-duplicate { display: none; }

:focus-visible { outline: 2px solid var(--yellow); outline-offset: 4px; }

/* Shared subpages */
.subpage { background: var(--paper); }
.recipe-search-hero { position: relative; min-height: 720px; overflow: hidden; background: #3a3129; color: var(--paper); }
.recipe-search-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 16% 25%,rgba(216,184,76,.16),transparent 34%), linear-gradient(135deg,rgba(255,255,255,.04),transparent 40%); }
.recipe-search-hero__inner { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0,.95fr) minmax(0,1.05fr); align-items: center; gap: clamp(36px,5vw,80px); width: min(100%,1380px); min-height: 720px; margin: 0 auto; padding: 140px clamp(24px,7vw,108px) 74px; }
.recipe-search-hero__copy { position: relative; z-index: 2; min-width: 0; container-type: inline-size; }
.recipe-search-hero h1 { margin-top: 22px; font-family: var(--serif); font-size: clamp(26px,10cqw,54px); font-weight: 500; line-height: 1.55; letter-spacing: .075em; }
.recipe-search-hero h1 span { display: block; white-space: nowrap; }
.recipe-search-hero__copy > p:last-of-type { margin-top: 24px; color: rgba(251,248,241,.76); font-family: var(--serif); font-size: 13px; line-height: 2; letter-spacing: .07em; }
.recipe-search-hero__button { display: inline-flex; align-items: center; justify-content: space-between; gap: 38px; min-width: 280px; min-height: 66px; margin-top: 34px; padding: 0 26px; border: 1px solid rgba(255,255,255,.58); border-radius: 999px; background: rgba(255,255,255,.08); font-size: 11px; letter-spacing: .14em; transition: background .3s ease,color .3s ease,transform .3s ease; }
.recipe-search-hero__button:hover { background: var(--paper); color: var(--brown); transform: translateY(-2px); }
.recipe-search-hero__visual { position: relative; height: 500px; }
.recipe-search-hero__photo { position: absolute; overflow: hidden; background: #d8ccbc; box-shadow: 0 24px 55px rgba(16,12,9,.22); }
.recipe-search-hero__photo img { filter: saturate(.84) contrast(1.04); }
.recipe-search-hero__photo--main { right: 0; top: 0; width: 76%; height: 78%; }
.recipe-search-hero__photo--sub { left: 0; bottom: 0; width: 47%; height: 46%; border: 8px solid #3a3129; }
.recipe-search-hero__photo--accent { right: 8%; bottom: 1%; width: 30%; height: 34%; border: 7px solid #3a3129; }
.section-shell { width: min(100%, 1380px); margin-inline: auto; padding: 120px clamp(24px, 6vw, 92px); }
.eyebrow { font-size: 9px; font-weight: 700; letter-spacing: .28em; }
.eyebrow.ink { color: var(--brown); }
.subhero { min-height: 780px; height: min(900px, 96svh); position: relative; display: flex; align-items: flex-end; color: var(--paper); overflow: hidden; }
.subhero-media, .subhero-overlay { position: absolute; inset: 0; }
.subhero-media img { filter: saturate(.72) contrast(1.02); object-position: 50% 55%; }
.subhero-overlay { background: linear-gradient(90deg, rgba(28,20,15,.78), rgba(28,20,15,.48) 50%, rgba(28,20,15,.2)); }
.subhero-inner { width: min(100%, 1380px); margin: 0 auto; padding: 170px clamp(24px, 7vw, 108px) 94px; position: relative; z-index: 2; }
.subhero h1 { max-width: 930px; margin-top: 27px; font-family: var(--serif); font-size: clamp(45px, 6vw, 84px); font-weight: 500; line-height: 1.42; letter-spacing: .1em; }
.subhero-lead { max-width: 730px; margin-top: 28px; font-family: var(--serif); font-size: clamp(13px, 1.35vw, 17px); line-height: 2.15; letter-spacing: .08em; }
.subhero h1 .phrase { display: inline-block; white-space: nowrap; }
.subhero-scroll { position: absolute; z-index: 2; right: clamp(24px, 5vw, 78px); bottom: 40px; font-size: 8px; letter-spacing: .24em; }
.split-heading { display: grid; grid-template-columns: .9fr 1fr; gap: clamp(55px, 10vw, 150px); align-items: start; }
.split-heading h2, .section-kicker h2, .profile-feature-copy h2, .book-feature h2, .page-bridge h2, .business-contact h2, .whitepaper-contact h2, .worksheet-copy h2 { margin-top: 20px; font-family: var(--serif); font-size: clamp(32px, 4vw, 58px); font-weight: 500; line-height: 1.55; letter-spacing: .08em; }
.prose-large { padding-top: 6px; font-family: var(--serif); font-size: 15px; line-height: 2.25; letter-spacing: .07em; }
.prose-large p + p { margin-top: 28px; }
.section-kicker { margin-bottom: 62px; }
.pill-button { min-width: 250px; min-height: 68px; padding: 0 28px; border: 1px solid currentColor; border-radius: 999px; display: inline-flex; align-items: center; justify-content: space-between; gap: 28px; font-size: 10px; font-weight: 700; letter-spacing: .13em; transition: transform .25s ease, background .25s ease, color .25s ease; }
.pill-button:hover { transform: translateY(-2px); }
.pill-button.dark { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.pill-button.dark:hover { background: var(--brown); border-color: var(--brown); }
.pill-button.light { color: var(--paper); border-color: rgba(255,255,255,.65); }
.pill-button.light:hover { background: var(--paper); color: var(--brown); }
.quiet-link { display: inline-flex; align-items: center; gap: 8px; padding-bottom: 7px; border-bottom: 1px solid currentColor; font-size: 9px; letter-spacing: .2em; }
.source-inline { display: inline-block; margin-top: 30px; font-size: 9px; letter-spacing: .16em; text-decoration: underline; text-underline-offset: 6px; }
.source-note { margin-top: 28px; color: rgba(40,36,25,.58); font-size: 9px; line-height: 1.9; }
.profile-link { color: var(--ink); }

/* About */
.principles-section { background: var(--cream); }
.principle-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--ink); }
.principle-card { padding: 34px 34px 20px 0; min-height: 330px; border-bottom: 1px solid var(--line); }
.principle-card + .principle-card { padding-left: 34px; border-left: 1px solid var(--line); }
.principle-card > span, .activity-list span { color: var(--red); font-size: 9px; letter-spacing: .2em; }
.principle-card h3 { margin-top: 55px; font-family: var(--serif); font-size: clamp(21px, 2vw, 29px); font-weight: 500; line-height: 1.65; letter-spacing: .07em; }
.principle-card p { margin-top: 22px; color: rgba(40,36,25,.68); font-size: 12px; line-height: 2; }
.profile-feature { display: grid; grid-template-columns: 1.05fr .95fr; min-height: 780px; background: var(--yellow); }
.profile-feature-photo { min-height: 680px; overflow: hidden; }
.profile-feature-photo img { filter: saturate(.72) sepia(.09); object-position: 50% 68%; }
.profile-feature-copy { padding: 100px clamp(34px, 7vw, 105px); align-self: center; }
.profile-feature-role { margin-top: 26px; font-family: var(--serif); font-size: 13px; letter-spacing: .08em; }
.profile-feature-copy h2 { margin-top: 12px; }
.profile-feature-copy > p:not(.eyebrow):not(.profile-feature-role) { margin-top: 25px; font-family: var(--serif); font-size: 13px; line-height: 2.2; }
.activity-list { border-top: 1px solid var(--ink); }
.activity-list > div { min-height: 145px; padding: 34px 0; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: 70px .8fr 1fr; gap: 35px; align-items: center; }
.activity-list h3 { font-family: var(--serif); font-size: clamp(19px, 2vw, 27px); font-weight: 500; letter-spacing: .06em; }
.activity-list p { color: rgba(40,36,25,.62); font-size: 12px; line-height: 2; }
.book-feature { background: var(--cream); }
.book-feature-inner { display: grid; grid-template-columns: .75fr 1fr; gap: clamp(55px, 11vw, 150px); align-items: center; }
.book-feature figure { width: min(100%, 470px); aspect-ratio: 4 / 5; padding: clamp(35px, 6vw, 80px); background: #ded5c6; }
.book-feature figure img { object-fit: contain; box-shadow: 0 20px 45px rgba(41,31,22,.2); }
.book-feature p:not(.eyebrow) { max-width: 640px; margin-top: 28px; font-family: var(--serif); font-size: 13px; line-height: 2.2; }
.book-feature dl { margin: 30px 0; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.book-feature dl div { padding: 16px 10px 0 0; }
.book-feature dt { font-size: 8px; color: rgba(40,36,25,.5); letter-spacing: .14em; }
.book-feature dd { margin: 5px 0 0; font-size: 11px; }
.page-bridge { padding: 100px clamp(24px, 7vw, 108px); background: var(--brown); color: var(--paper); display: flex; align-items: flex-end; justify-content: space-between; gap: 60px; }
.page-bridge > div { max-width: 800px; }
.page-bridge > div > p:last-child { margin-top: 25px; font-family: var(--serif); line-height: 2; opacity: .76; }

/* Business */
.business-hero-inner h1 { font-size: clamp(40px, 5.2vw, 73px); }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 26px; margin-top: 34px; }
.hero-proof { max-width: 840px; display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 45px; border-top: 1px solid rgba(255,255,255,.45); border-bottom: 1px solid rgba(255,255,255,.22); }
.hero-proof li { padding: 17px 18px 17px 0; }
.hero-proof li + li { padding-left: 18px; border-left: 1px solid rgba(255,255,255,.18); }
.hero-proof strong { display: block; font-family: var(--serif); font-size: 16px; font-weight: 500; }
.hero-proof span { display: block; margin-top: 4px; font-size: 7px; letter-spacing: .17em; opacity: .65; }
.service-section { background: var(--cream); }
.service-head { display: grid; grid-template-columns: 1fr .8fr; gap: 60px; align-items: end; }
.service-head > p { font-size: 12px; line-height: 2; color: rgba(40,36,25,.62); }
.business-service-list { border-top: 1px solid var(--ink); }
.business-service { display: grid; grid-template-columns: 70px .75fr 1fr; gap: clamp(22px, 5vw, 70px); align-items: start; padding: 40px 0; border-bottom: 1px solid var(--line); }
.business-service > span { color: var(--red); font-size: 9px; letter-spacing: .18em; }
.business-service h3 { font-family: var(--serif); font-size: clamp(21px, 2.6vw, 34px); font-weight: 500; line-height: 1.5; }
.business-service h3 small { display: block; margin-top: 6px; color: rgba(40,36,25,.54); font-family: var(--sans); font-size: 8px; letter-spacing: .16em; text-transform: uppercase; }
.business-service > div > p { color: rgba(40,36,25,.67); font-size: 12px; line-height: 2; }
.business-service ul { margin-top: 18px; display: flex; flex-wrap: wrap; gap: 7px; }
.business-service li { padding: 6px 11px; border: 1px solid var(--line); border-radius: 999px; font-size: 9px; }
.project-design-section { background: var(--paper); }
.project-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.project-card-grid article { min-height: 420px; padding: 36px; background: var(--brown); color: var(--paper); display: flex; flex-direction: column; }
.project-card-grid article:nth-child(2) { background: var(--sage); }
.project-card-grid article:nth-child(3) { background: var(--ink); }
.project-card-grid span { font-size: 8px; letter-spacing: .22em; opacity: .65; }
.project-card-grid h3 { margin-top: auto; padding-top: 80px; font-family: var(--serif); font-size: clamp(21px, 2vw, 29px); font-weight: 500; line-height: 1.65; letter-spacing: .06em; }
.project-card-grid p { margin-top: 24px; font-size: 11px; line-height: 2; opacity: .72; }
.whitepaper-band { min-height: 650px; padding: 100px clamp(24px, 8vw, 120px); background: var(--brown); color: var(--paper); display: grid; grid-template-columns: 1fr .8fr; gap: 80px; align-items: center; overflow: hidden; }
.whitepaper-band-copy { max-width: 700px; }
.whitepaper-band h2 { margin-top: 22px; font-family: var(--serif); font-size: clamp(34px, 4.4vw, 63px); font-weight: 500; line-height: 1.55; letter-spacing: .07em; }
.whitepaper-band-copy > p:not(.eyebrow) { margin: 25px 0 36px; max-width: 620px; font-family: var(--serif); font-size: 13px; line-height: 2.1; opacity: .76; }
.paper-stack { width: min(100%, 420px); aspect-ratio: .74; margin: auto; position: relative; }
.paper-sheet { position: absolute; inset: 0; display: block; background: var(--paper); box-shadow: 0 25px 60px rgba(20,10,7,.24); }
.paper-back { transform: rotate(8deg) translate(24px, 8px); background: #d9cbb8; }
.paper-mid { transform: rotate(-4deg) translate(-12px, 12px); background: #eee6d9; }
.paper-front { padding: 45px 38px; color: var(--ink); display: flex; flex-direction: column; }
.paper-front small { font-size: 8px; letter-spacing: .23em; color: var(--red); }
.paper-front strong { margin-top: 70px; font-family: var(--serif); font-size: clamp(24px, 3vw, 38px); font-weight: 500; line-height: 1.65; letter-spacing: .07em; }
.paper-front em { margin-top: auto; font-family: var(--serif); font-size: 11px; letter-spacing: .16em; font-style: normal; }
.selected-works { background: var(--paper); }
.work-groups { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--ink); }
.work-groups article { padding: 35px 32px 20px 0; border-bottom: 1px solid var(--line); }
.work-groups article + article { padding-left: 32px; border-left: 1px solid var(--line); }
.work-groups h3 { font-family: var(--serif); font-size: 20px; font-weight: 500; }
.work-groups p { margin-top: 22px; color: rgba(40,36,25,.63); font-size: 11px; line-height: 2; }
.process-section { background: var(--cream); }
.process-layout { display: grid; grid-template-columns: .65fr 1fr; gap: clamp(55px, 10vw, 140px); }
.process-layout h2 { margin-top: 20px; font-family: var(--serif); font-size: clamp(32px, 4vw, 58px); font-weight: 500; line-height: 1.55; letter-spacing: .08em; }
.process-layout ol { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--ink); }
.process-layout li { min-height: 110px; padding: 25px 0; display: grid; grid-template-columns: 55px .55fr 1fr; gap: 20px; align-items: start; border-bottom: 1px solid var(--line); }
.process-layout li span { color: var(--red); font-size: 9px; }
.process-layout li strong { font-family: var(--serif); font-size: 17px; font-weight: 500; }
.process-layout li p { color: rgba(40,36,25,.62); font-size: 11px; line-height: 1.9; }
.business-contact, .whitepaper-contact { padding: 110px clamp(24px, 8vw, 120px); background: var(--ink); color: var(--paper); display: grid; grid-template-columns: 1fr .55fr; gap: 90px; align-items: end; }
.business-contact > div > p:not(.eyebrow), .whitepaper-contact > div > p:not(.eyebrow) { max-width: 700px; margin-top: 25px; font-family: var(--serif); font-size: 13px; line-height: 2.1; opacity: .73; }
.contact-actions { display: flex; flex-wrap: wrap; gap: 24px; align-items: center; margin-top: 35px; }
.business-contact aside { padding: 32px; border: 1px solid rgba(255,255,255,.2); }
.business-contact aside > p { font-size: 9px; letter-spacing: .13em; }
.business-contact aside ul { margin-top: 20px; }
.business-contact aside li { padding: 8px 0 8px 17px; position: relative; font-size: 10px; opacity: .68; }
.business-contact aside li::before { content: "−"; position: absolute; left: 0; }

/* Whitepaper landing */
.whitepaper-hero { min-height: 900px; padding: 160px clamp(24px, 8vw, 120px) 90px; background: var(--brown); color: var(--paper); display: grid; grid-template-columns: 1fr .75fr; gap: 80px; align-items: center; }
.whitepaper-hero-copy h1 { margin-top: 25px; font-family: var(--serif); font-size: clamp(45px, 5.8vw, 82px); font-weight: 500; line-height: 1.42; letter-spacing: .09em; }
.whitepaper-hero-copy > p:not(.eyebrow) { max-width: 680px; margin: 28px 0 35px; font-family: var(--serif); font-size: 14px; line-height: 2.15; opacity: .8; }
.whitepaper-hero-copy > small { display: block; margin-top: 15px; font-size: 8px; letter-spacing: .12em; opacity: .6; }
.whitepaper-cover-stage { display: grid; place-items: center; perspective: 1000px; }
.whitepaper-cover { width: min(100%, 440px); aspect-ratio: .72; padding: 40px; background: var(--paper); color: var(--ink); box-shadow: 0 35px 70px rgba(25,12,8,.28); transform: rotateY(-5deg) rotateZ(1.5deg); display: flex; flex-direction: column; }
.whitepaper-cover > span { color: var(--red); font-size: 8px; letter-spacing: .24em; }
.whitepaper-cover h2 { margin-top: 45px; font-family: var(--serif); font-size: clamp(25px, 2.8vw, 39px); font-weight: 500; line-height: 1.6; letter-spacing: .07em; }
.whitepaper-cover figure { height: 30%; margin-top: 28px; overflow: hidden; }
.whitepaper-cover figure img { object-position: 50% 68%; filter: saturate(.7); }
.whitepaper-cover > p { margin-top: auto; font-family: var(--serif); font-size: 9px; letter-spacing: .18em; }
.whitepaper-for ul { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--ink); }
.whitepaper-for li { min-height: 140px; padding: 35px 45px 30px 30px; border-bottom: 1px solid var(--line); position: relative; font-family: var(--serif); font-size: 16px; line-height: 1.9; }
.whitepaper-for li:nth-child(odd) { border-right: 1px solid var(--line); }
.whitepaper-for li::before { content: "○"; position: absolute; left: 0; color: var(--red); }
.chapter-section { background: var(--cream); }
.chapter-section ol { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--ink); }
.chapter-section li { padding: 32px 0; display: grid; grid-template-columns: 85px 1fr; gap: 30px; border-bottom: 1px solid var(--line); }
.chapter-section li > span { color: var(--red); font-family: var(--serif); font-size: 28px; }
.chapter-section h3 { font-family: var(--serif); font-size: clamp(21px, 2.3vw, 31px); font-weight: 500; line-height: 1.6; letter-spacing: .06em; }
.chapter-section li p { margin-top: 10px; color: rgba(40,36,25,.62); font-size: 12px; line-height: 2; }
.worksheet-section { display: grid; grid-template-columns: .8fr 1fr; gap: clamp(55px, 10vw, 140px); align-items: center; }
.worksheet-preview { width: min(100%, 500px); aspect-ratio: .72; padding: 38px; background: #eee5d8; border: 1px solid var(--line); box-shadow: 18px 18px 0 var(--brown); position: relative; }
.worksheet-preview > span { font-size: 8px; letter-spacing: .22em; }
.worksheet-preview > div { height: 20%; margin-top: 28px; border: 1px solid rgba(40,36,25,.25); background: repeating-linear-gradient(to bottom, transparent 0, transparent 29px, rgba(40,36,25,.14) 30px); }
.worksheet-preview > em { position: absolute; right: 35px; bottom: 28px; color: var(--red); font-family: var(--serif); font-size: 12px; font-style: normal; }
.worksheet-copy > p:not(.eyebrow) { margin: 26px 0 34px; font-family: var(--serif); font-size: 13px; line-height: 2.2; }
.whitepaper-contact { grid-template-columns: 1fr auto; }

@media (max-width: 980px) {
  .recipe-search-hero__inner { grid-template-columns: minmax(0,.95fr) minmax(0,1.05fr); gap: 28px; padding-inline: 28px; }
  .recipe-section .section-heading { display: block; }
  .recipe-section .section-heading > p { margin-top: 24px; }
  .recipe-search-hero__visual { height: 440px; }
  .subhero { min-height: 720px; height: auto; }
  .subhero-inner { padding-top: 180px; padding-bottom: 90px; }
  .split-heading, .service-head, .process-layout { grid-template-columns: 1fr; }
  .principle-grid, .project-card-grid, .work-groups { grid-template-columns: 1fr; }
  .principle-card, .principle-card + .principle-card, .work-groups article, .work-groups article + article { padding: 30px 0; border-left: 0; }
  .principle-card { min-height: 250px; }
  .profile-feature { grid-template-columns: 1fr; }
  .profile-feature-photo { min-height: 580px; }
  .business-service { grid-template-columns: 55px 1fr; }
  .business-service > div { grid-column: 2; }
  .whitepaper-band, .whitepaper-hero { grid-template-columns: 1fr; }
  .whitepaper-hero { padding-top: 170px; }
  .paper-stack, .whitepaper-cover-stage { width: min(100%, 420px); margin: 20px auto 0; }
  .business-contact { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .section-shell { padding: 85px 22px; }
  .subhero { min-height: 670px; }
  .subhero-inner { padding: 150px 24px 90px; }
  .subhero h1 { font-size: 39px; letter-spacing: .05em; }
  .subhero-lead br { display: none; }
  .subhero-scroll { display: none; }
  .recipe-search-hero { min-height: 820px; }
  .recipe-search-hero__inner { display: block; min-height: 820px; padding: 132px 20px 58px; }
  .recipe-search-hero h1 { font-size: clamp(26px,10cqw,42px); letter-spacing: .055em; }
  .recipe-search-hero__copy > p:last-of-type br { display: none; }
  .recipe-search-hero__button { min-width: 0; width: 100%; margin-top: 28px; }
  .recipe-search-hero__visual { height: 330px; margin-top: 42px; }
  .recipe-search-hero__photo--main { width: 78%; height: 78%; }
  .recipe-search-hero__photo--sub { width: 47%; height: 45%; border-width: 6px; }
  .recipe-search-hero__photo--accent { right: 4%; width: 31%; height: 34%; border-width: 5px; }
  .split-heading { gap: 36px; }
  .prose-large { font-size: 14px; }
  .activity-list > div { grid-template-columns: 38px 1fr; gap: 16px; }
  .activity-list p { grid-column: 2; }
  .profile-feature-photo { min-height: 480px; }
  .profile-feature-copy { padding: 75px 24px; }
  .book-feature-inner { grid-template-columns: 1fr; gap: 55px; }
  .book-feature dl { grid-template-columns: 1fr; }
  .page-bridge { padding: 80px 24px; display: block; }
  .page-bridge .pill-button { margin-top: 34px; }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .hero-proof { grid-template-columns: 1fr; }
  .hero-proof li, .hero-proof li + li { padding: 11px 0; border-left: 0; border-bottom: 1px solid rgba(255,255,255,.14); }
  .business-service { grid-template-columns: 35px 1fr; gap: 15px; }
  .project-card-grid article { min-height: 350px; padding: 28px; }
  .whitepaper-band { padding: 85px 24px; }
  .paper-stack { width: 78vw; }
  .process-layout li { grid-template-columns: 35px 1fr; }
  .process-layout li p { grid-column: 2; }
  .business-contact, .whitepaper-contact { padding: 85px 24px; }
  .whitepaper-hero { padding: 150px 24px 80px; }
  .whitepaper-hero-copy h1 { font-size: 41px; letter-spacing: .05em; }
  .whitepaper-cover { padding: 28px; }
  .whitepaper-for ul { grid-template-columns: 1fr; }
  .whitepaper-for li:nth-child(odd) { border-right: 0; }
  .chapter-section li { grid-template-columns: 48px 1fr; gap: 15px; }
  .worksheet-section { grid-template-columns: 1fr; gap: 70px; }
  .whitepaper-contact { grid-template-columns: 1fr; }
  .whitepaper-contact .pill-button { margin-top: 34px; }
}

/* August 2026 homepage baseline: book, creator profile, partner logos and feature stories */
.august-book {
  position: relative;
  z-index: 7;
  display: grid;
  grid-template-columns: 48px minmax(0,1fr) minmax(0,1.05fr);
  align-items: center;
  gap: clamp(30px, 4vw, 64px);
  min-height: 0;
  padding: clamp(96px, 9vw, 135px) clamp(24px, 7vw, 110px);
  overflow: hidden;
  background: var(--cream);
}
.august-book__index { align-self: start; display: flex; align-items: flex-start; gap: 12px; }
.august-book__index strong { font-family: var(--serif); font-size: 34px; font-weight: 500; line-height: .8; }
.august-book__index span { writing-mode: vertical-rl; font-size: 11px; letter-spacing: .18em; }
.august-book__photos { position: relative; width: 100%; aspect-ratio: .82; }
.august-book__photos figure { position: absolute; overflow: hidden; border-radius: 0; }
.august-book__photos figure:first-child { left: 0; top: 0; width: 74%; height: auto; aspect-ratio: 1062 / 1500; overflow: visible; transform: rotate(-2deg); background: transparent; box-shadow: 0 12px 28px rgba(61,45,32,.16); }
.august-book__photos figure:first-child img { display: block; object-fit: cover; }
.august-book__photos figure:last-child { right: -3%; bottom: 0; width: 66%; height: 37%; transform: rotate(4deg); box-shadow: 0 10px 24px rgba(61,45,32,.1); }
.august-book__copy { display: flex; gap: clamp(24px, 3vw, 44px); min-height: 480px; padding-top: 0; }
.august-book__title { flex-shrink: 0; writing-mode: vertical-rl; font-family: var(--serif); font-size: clamp(31px, 3vw, 44px); line-height: 1.8; letter-spacing: .13em; }
.august-book__body { align-self: flex-end; max-width: 370px; padding-bottom: 0; font-family: var(--serif); font-size: 14px; line-height: 2.15; }
.august-book__body p + p { margin-top: 28px; }
.august-book__body .text-link { display: inline-flex; margin-top: 36px; }

.august-profile {
  position: relative;
  z-index: 7;
  min-height: 840px;
  padding: clamp(80px, 9vw, 130px) clamp(24px, 7vw, 110px);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #b9ab99;
  isolation: isolate;
}
.august-profile::before { content: ""; position: absolute; z-index: -2; inset: -46px; background: url("../images/hero/mariko-table-background-2026.jpg") center / cover no-repeat; filter: blur(20px) saturate(.66) sepia(.08); transform: scale(1.08); }

@media screen and (max-width: 782px) {
  .admin-bar .site-header { top: 46px; }
}
.august-profile::after { content: ""; position: absolute; z-index: -1; inset: 0; background: linear-gradient(100deg,rgba(248,245,239,.78),rgba(248,245,239,.46) 48%,rgba(53,38,27,.24)); backdrop-filter: blur(2px); }
.august-profile__inner { position: relative; width: min(920px,100%); margin: 0 auto; }
.august-profile__photo { position: relative; width: min(67%,640px); height: clamp(470px,58vw,680px); overflow: hidden; border-radius: 48% 48% 45% 45% / 36% 36% 60% 60%; background: #e8e0d3; box-shadow: 0 28px 80px rgba(64,49,34,.2); }
.august-profile__photo img { object-position: 59% center; filter: sepia(.08) saturate(.72); transform: scale(1.02); }
.august-profile__copy { position: relative; width: min(58%,560px); margin: -125px 0 0 auto; padding: clamp(58px,7vw,92px); border: 1px solid var(--line); border-radius: 28px; background: var(--paper); box-shadow: 0 24px 70px rgba(64,49,34,.1); }
.august-profile__role { position: static; writing-mode: horizontal-tb; color: var(--red); font-family: var(--serif); font-size: 16px; line-height: 1.4; letter-spacing: .12em; }
.august-profile h2 { margin-top: 17px; font-family: var(--serif); font-size: clamp(34px,4vw,56px); font-weight: 500; line-height: 1.45; letter-spacing: .1em; }
.august-profile__text { margin-top: 30px; font-family: var(--serif); font-size: 15px; line-height: 2.2; }
.august-profile__social { display: inline-block; margin-top: 28px; padding-bottom: 6px; border-bottom: 1px solid var(--ink); font-size: 11px; letter-spacing: .16em; }
.august-profile__more { display: flex; width: max-content; margin-top: 20px; }
.august-profile__note { margin-top: 25px; color: rgba(40,36,25,.58); font-size: 11px; }

.august-business { position: relative; z-index: 7; padding: clamp(96px,10vw,148px) clamp(24px,7vw,110px); border-bottom: 1px solid var(--line); background: var(--paper); }
.august-business__inner { width: min(1240px,100%); margin-inline: auto; }
.august-business__media { padding: clamp(60px,7vw,92px) clamp(24px,5vw,72px); border: 1px solid rgba(40,36,25,.1); border-radius: 30px; background: var(--cream); text-align: center; }
.august-business__media-head { margin-bottom: clamp(54px,6vw,86px); }
.august-business__media-head h2 { font-family: var(--serif); font-size: clamp(34px,3.6vw,52px); font-weight: 500; line-height: 1; letter-spacing: .08em; }
.august-business__media-head p { margin-top: 18px; color: rgba(40,36,25,.58); font-size: 11px; letter-spacing: .18em; }
.august-business__logos { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: clamp(38px,4vw,56px); width: min(100%,1100px); margin-inline: auto; }
.august-logo { display: grid; place-items: center; flex: 0 0 auto; min-width: 92px; min-height: 62px; }
.august-logo img { width: auto; max-width: 130px; height: auto; max-height: 54px; object-fit: contain; filter: grayscale(.12) saturate(.78) contrast(1.08); opacity: .92; transition: filter .3s ease, opacity .3s ease, transform .3s ease; }
.august-logo--namisato img { max-width: 128px; }
.august-logo--hanamaruki img { max-width: 118px; }
.august-logo--wellneo img { max-width: 148px; }
.august-logo--pietro img { max-width: 112px; }
.august-logo--boso img { max-width: 118px; }
.august-logo--cotta img { max-width: 104px; }
.august-logo:hover img { filter: none; opacity: 1; transform: translateY(-2px); }
.august-business__intro { position: relative; display: grid; grid-template-columns: minmax(0,1.1fr) minmax(0,1fr); column-gap: clamp(36px,4vw,64px); align-items: end; margin-top: clamp(34px,4vw,54px); padding: clamp(48px,5vw,72px); overflow: hidden; border-radius: 30px; background: #322820; color: var(--paper); box-shadow: 0 24px 70px rgba(47,34,24,.16); }
.august-business__intro::after { content: ""; position: absolute; right: -130px; top: -170px; width: 390px; aspect-ratio: 1; border: 1px solid rgba(255,255,255,.09); border-radius: 50%; box-shadow: 0 0 0 64px rgba(255,255,255,.025), 0 0 0 128px rgba(255,255,255,.018); pointer-events: none; }
.august-business__title, .august-business__content { position: relative; z-index: 1; }
.august-business__intro .section-number { color: rgba(248,245,239,.58); }
.august-business__title h2 { margin-top: 24px; color: #f0d8aa; font-family: var(--serif); font-size: clamp(32px,3.3vw,48px); font-weight: 500; line-height: 1.5; letter-spacing: .08em; }
.august-business__title h2 span { display: block; white-space: nowrap; }
.august-business__audience { margin-bottom: 20px; color: #f0d8aa; font-size: 12px; font-weight: 700; letter-spacing: .1em; }
.august-business__lead { color: rgba(248,245,239,.82); font-family: var(--serif); font-size: 16px; line-height: 2.2; }
.august-business__cta { display: inline-flex; align-items: center; justify-content: space-between; gap: 40px; width: min(100%,390px); min-height: 76px; margin-top: 36px; padding: 0 30px; border: 1px solid #f0d8aa; border-radius: 999px; background: #f0d8aa; color: #322820; font-size: 12px; letter-spacing: .16em; transition: background .3s ease,color .3s ease; }
.august-business__cta:hover { background: transparent; color: #f0d8aa; }

.august-features { overflow: hidden; padding: clamp(78px,8vw,118px) 0; background: var(--cream); }
.august-features .section-heading { width: min(1240px,100%); margin: 0 auto 62px; padding-inline: clamp(24px,7vw,110px); }
.august-features__grid { display: flex; gap: clamp(16px,2vw,28px); width: min(1240px,100%); margin: 0 auto; padding: 0 clamp(24px,7vw,110px) 18px; overflow-x: auto; overscroll-behavior-inline: contain; scroll-snap-type: x mandatory; scrollbar-color: #c7b59a transparent; scrollbar-width: thin; }
.august-feature-card { flex: 0 0 clamp(250px,25vw,318px); min-width: 0; scroll-snap-align: start; }
.august-feature-card__image { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: #e7dfd4; }
.august-feature-card__image img { filter: saturate(.78); transition: transform .8s cubic-bezier(.2,.7,.2,1), filter .3s ease; }
.august-feature-card:hover .august-feature-card__image img { transform: scale(1.045); filter: saturate(1); }
.august-feature-card__placeholder { display: grid; place-items: center; width: 100%; height: 100%; background: linear-gradient(135deg,#dcd1c2,#f5f0e8 55%,#c7b59a); color: rgba(67,51,38,.7); font-family: var(--serif); font-size: clamp(30px,5vw,70px); letter-spacing: .16em; }
.august-feature-card__status { position: absolute; left: 14px; top: 14px; padding: 6px 11px; background: rgba(255,255,255,.92); font-size: 10px; letter-spacing: .13em; }
.august-feature-card__copy { padding: 17px 3px 0; }
.august-feature-card__meta { color: var(--red); font-size: 11px; letter-spacing: .16em; }
.august-feature-card h3 { margin-top: 9px; font-family: var(--serif); font-size: clamp(17px,1.7vw,22px); font-weight: 500; line-height: 1.55; letter-spacing: .06em; }
.august-feature-card__excerpt { margin-top: 12px; color: rgba(40,36,25,.62); font-family: var(--serif); font-size: 13px; line-height: 1.9; }
.august-features__more { display: flex; align-items: center; justify-content: space-between; gap: 28px; width: min(310px,calc(100% - 40px)); min-height: 66px; margin: 34px auto 0; padding: 0 26px; border: 1px solid var(--sage); border-radius: 999px; color: var(--sage); font-size: 12px; letter-spacing: .14em; transition: background .3s ease,color .3s ease; }
.august-features__more:hover { background: var(--sage); color: var(--paper); }

@media (max-width: 980px) {
  .august-book { grid-template-columns: 50px 1fr; gap: 5vw; min-height: auto; }
  .august-book__index, .august-book__photos, .august-book__copy { position: relative; top: auto; }
  .august-book__photos { width: min(100%,490px); margin: 0 auto; }
  .august-book__copy { grid-column: 2; min-height: 360px; margin-top: 38px; }
  .august-profile { min-height: auto; }
  .august-profile__photo { width: 78%; }
  .august-profile__copy { width: 65%; margin-top: -92px; }
  .august-business__intro { grid-template-columns: 1fr; row-gap: 42px; }
}

@media (max-width: 680px) {
  .august-book { display: block; padding: 90px 20px 110px; }
  .august-book__index { margin-bottom: 34px; }
  .august-book__index span { writing-mode: initial; }
  .august-book__photos { width: calc(100% - 28px); min-height: 0; margin-left: 20px; }
  .august-book__photos figure:first-child { width: 74%; height: auto; }
  .august-book__photos figure:last-child { top: auto; bottom: 0; width: 66%; height: 37%; }
  .august-book__copy { display: block; min-height: auto; padding-top: 68px; }
  .august-book__title { writing-mode: initial; font-size: 29px; }
  .august-book__body { padding: 35px 0 0; }
  .august-profile { padding: 80px 20px; }
  .august-profile__photo { width: 92%; height: 500px; }
  .august-profile__copy { width: 92%; margin-top: -60px; padding: 58px 38px; }
  .august-profile__role { right: -13px; top: 52px; font-size: 16px; }
  .august-business { padding: 82px 20px; }
  .august-business__media { padding: 58px 22px; }
  .august-business__media-head { margin-bottom: 46px; }
  .august-business__media-head h2 { font-size: 30px; }
  .august-business__logos { gap: 36px 42px; }
  .august-logo { min-width: 108px; min-height: 54px; }
  .august-logo img { max-width: 112px; max-height: 44px; }
  .august-logo--wellneo img { max-width: 126px; }
  .august-business__intro { margin-top: 24px; padding: 62px 28px; border-radius: 24px; }
  .august-business__title h2 { font-size: clamp(26px,7.6vw,29px); letter-spacing: .06em; }
  .august-business__lead { font-size: 14px; }
  .august-features { padding-block: 66px; }
  .august-features .section-heading { margin-bottom: 30px; padding-inline: 20px; }
  .august-features__grid { gap: 14px; padding-inline: 20px; }
  .august-feature-card { flex: 0 0 68vw; scroll-snap-align: start; }
  .august-feature-card__copy { padding-top: 13px; }
  .august-feature-card h3 { font-size: 17px; }
  .august-feature-card__excerpt { display: none; }
  .august-features__more { margin-top: 25px; }
  html:not(.motion-story-ready) .immersive-stream__group { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

/* White canvas, warm neutrals and a restrained orange accent. */
.august-profile { background: var(--cream); }
.august-profile::before { background: none; }
.august-profile::after { background: linear-gradient(110deg,#fff,#f7f3ee); backdrop-filter: none; }
.august-profile h2 { margin-top: 10px; }
.august-business__media, .august-features { background: var(--paper); }
.august-business__intro { background: #f8efe6; color: var(--ink); border: 1px solid var(--line); box-shadow: 0 18px 48px rgba(91,68,50,.06); }
.august-business__intro::after { border-color: rgba(183,91,43,.12); box-shadow: 0 0 0 64px rgba(183,91,43,.025),0 0 0 128px rgba(183,91,43,.018); }
.august-business__intro .section-number, .august-business__audience { color: var(--red); }
.august-business__title h2 { color: var(--brown); }
.august-business__lead { color: var(--ink); }
.august-business__cta { background: var(--red); border-color: var(--red); color: var(--paper); }
.august-business__cta:hover { background: var(--brown); border-color: var(--brown); color: var(--paper); }
.recipe-entry, .whitepaper-band, footer { background: var(--cream); color: var(--ink); }
.recipe-entry p:not(.section-number), .recipe-search-hero__copy > p:last-of-type { color: var(--ink); }
.recipe-search-hero { background: var(--paper); color: var(--ink); }
.recipe-search-hero::before { background: linear-gradient(130deg,#fff 20%,#f7f3ee); }
.recipe-search-hero__photo--sub, .recipe-search-hero__photo--accent { border-color: var(--cream); }
.recipe-search-hero__button, .recipe-entry .pill-button.light, .whitepaper-band .pill-button.light, .business-contact .pill-button.light, .whitepaper-contact .pill-button.light { background: var(--red); border-color: var(--red); color: var(--paper); }
.recipe-search-hero__button:hover, .recipe-entry .pill-button.light:hover, .whitepaper-band .pill-button.light:hover, .business-contact .pill-button.light:hover, .whitepaper-contact .pill-button.light:hover { background: var(--brown); border-color: var(--brown); color: var(--paper); }
.business-contact, .whitepaper-contact { background: var(--paper); color: var(--ink); }
.business-contact aside, .footer-bottom { border-color: var(--line); }
.project-card-grid article, .project-card-grid article:nth-child(2), .project-card-grid article:nth-child(3) { background: var(--cream); color: var(--ink); border-top: 3px solid var(--red); }
