:root {
  --paper: #f3eadc;
  --paper-2: #e7dcc8;
  --ink: #1c1612;
  --ink-soft: #5c5146;
  --hull: #8f5a32;
  --gold: #c4a574;
  --pistachio: #4f6f52;
  --line: rgba(28, 22, 18, 0.12);
  --shadow: 0 8px 20px rgba(28, 22, 18, 0.08);
  --serif: "Fraunces", "Times New Roman", serif;
  --sans: "Outfit", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: 0.01em;
}
:focus-visible {
  outline: 2px solid var(--hull);
  outline-offset: 3px;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
address { font-style: normal; }
.skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ink);
  color: var(--paper);
  padding: 0.6rem 1rem;
  z-index: 20;
}
.skip:focus { left: 1rem; top: 1rem; }

.nav {
  position: sticky;
  top: 0;
  z-index: 8;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 6vw;
  background: var(--paper);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}
.nav.is-scrolled { border-bottom-color: var(--line); }
.wordmark {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.35rem;
  text-decoration: none;
  letter-spacing: -0.03em;
}
.mark {
  width: 1.35rem;
  height: 1.7rem;
  border-radius: 50% 50% 48% 48%;
  background: linear-gradient(90deg, var(--gold) 50%, #e8d7b8 50%);
  box-shadow: inset 0 0 0 1px rgba(28, 22, 18, 0.2);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
.nav-links a {
  text-decoration: none;
  font-size: 0.92rem;
  color: var(--ink-soft);
}
.nav-links a:hover { color: var(--ink); }
.nav-cta {
  background: var(--ink);
  color: var(--paper) !important;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
}
.menu-btn {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.4rem 0.85rem;
  font: inherit;
}

.hero {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  color: var(--paper);
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: ken 28s ease-in-out infinite alternate;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(28, 22, 18, 0.78) 8%, rgba(28, 22, 18, 0.42) 55%, rgba(28, 22, 18, 0.18) 100%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 4vw;
  align-items: end;
  padding: 8vh 6vw 8vh;
  max-width: 92rem;
}
.hero .eyebrow { color: var(--gold); }
.hero .lede { color: #eadfce; }
.hero-stats { border-top-color: rgba(255, 250, 242, 0.2); }
.hero-stats dt { color: #d9cbb6; }
.hero .btn-solid { background: var(--paper); color: var(--ink); }
.hero .btn-solid:hover { background: #fff; }
.hero .btn-ghost { color: var(--paper); box-shadow: inset 0 0 0 1px rgba(243, 234, 220, 0.8); }
.hero-plate { margin: 0; }
.hero-plate img {
  width: 100%;
  height: min(28rem, 58vh);
  object-fit: cover;
  border-radius: 4px;
  box-shadow: var(--shadow);
}
.hero-plate figcaption {
  margin-top: 0.65rem;
  color: #eadfce;
  font-size: 0.85rem;
}
@keyframes ken {
  from { transform: scale(1); }
  to { transform: scale(1.06); }
}
.eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--hull);
  margin: 0 0 1rem;
}
h1, h2, h3 { font-family: var(--serif); font-weight: 500; letter-spacing: -0.03em; line-height: 1.12; }
h1 { font-size: clamp(2.6rem, 7vw, 5.4rem); margin: 0 0 1.4rem; max-width: 16ch; }
h2 { font-size: clamp(2rem, 4.2vw, 3.4rem); margin: 0 0 1rem; }
h3 { font-size: 1.45rem; margin: 0 0 0.5rem; }
.lede {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  max-width: 40rem;
  color: var(--ink-soft);
  margin: 0 0 2rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 3.5rem; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  font: inherit;
  padding: 0.85rem 1.3rem;
  border-radius: 999px;
}
.btn-solid { background: var(--ink); color: var(--paper); }
.btn-solid:hover { background: #2c241c; }
.btn-solid:disabled { opacity: 0.6; cursor: wait; }
.btn-ghost { background: transparent; box-shadow: inset 0 0 0 1px var(--ink); }
.btn-ghost:hover { background: rgba(28, 22, 18, 0.06); }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
  margin: 0;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.hero-stats dt { font-size: 0.78rem; color: var(--ink-soft); }
.hero-stats dd {
  margin: 0.2rem 0 0;
  font-family: var(--serif);
  font-size: 1.45rem;
}

.marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--paper-2);
  padding: 0.85rem 0;
}
.marquee-track {
  display: flex;
  gap: 2.5rem;
  width: max-content;
  animation: drift 32s linear infinite;
  font-family: var(--serif);
  font-size: 1.15rem;
  align-items: center;
}
.marquee-track span {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.marquee-track img {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  object-fit: cover;
}
.marquee-track span::after {
  content: " · ";
  color: var(--gold);
}
@keyframes drift {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.section { padding: 7.5rem 6vw; content-visibility: auto; contain-intrinsic-size: auto 900px; }
.section-head { max-width: 42rem; margin-bottom: 3rem; }
.section-head p:last-child { color: var(--ink-soft); }

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}
.card {
  background: #fffaf2;
  border: 1px solid var(--line);
  padding: 0 0 1.4rem;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.card-media {
  margin: 0 0 1.05rem;
  height: 11.5rem;
  overflow: hidden;
}
.card-media img,
.who-grid img,
.mosaic img,
.score-photo img,
.booth-still img,
.book-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card-no {
  display: block;
  font-size: 0.8rem;
  color: var(--gold);
  margin: 0 1.3rem 0.35rem;
}
.card h3, .card p { margin-left: 1.3rem; margin-right: 1.3rem; }
.card p { color: var(--ink-soft); margin-bottom: 0; }

.split {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 4vw;
  align-items: center;
  padding: 0 6vw 7.5rem;
}
.split-copy p { color: var(--ink-soft); }
.nut-list { padding: 0; margin: 1.5rem 0; list-style: none; }
.nut-list button {
  all: unset;
  cursor: pointer;
  box-sizing: border-box;
  width: 100%;
  display: block;
}
.nut-list button:hover, .nut-list button:focus-visible { color: var(--hull); }

.mosaic {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.55rem;
  padding: 0 6vw 7rem;
}
.mosaic figure { margin: 0; }
.mosaic img {
  height: 11rem;
  border-radius: 2px;
}
.mosaic figcaption {
  margin-top: 0.4rem;
  font-size: 0.8rem;
  color: var(--ink-soft);
}
.nut-list li {
  padding: 0.85rem 0;
  border-top: 1px solid var(--line);
}
.split-visual img {
  width: 100%;
  height: min(38rem, 80vh);
  object-fit: cover;
  border-radius: 2px;
}
.split-visual figcaption {
  margin-top: 0.7rem;
  font-size: 0.85rem;
  color: var(--ink-soft);
}
.fine { font-size: 0.85rem; color: var(--ink-soft); }

.method {
  background: var(--ink);
  color: var(--paper);
}
.method-inner { position: relative; z-index: 1; }
.method .eyebrow { color: var(--gold); }
.method .section-head { max-width: 36rem; }
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
  counter-reset: step;
}
.steps li { counter-increment: step; }
.steps figure {
  margin: 0 0 1.1rem;
  height: 10.5rem;
  overflow: hidden;
  border-radius: 3px;
}
.steps img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.steps h3::before {
  content: counter(step, decimal-leading-zero);
  display: block;
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  color: var(--gold);
  margin-bottom: 0.7rem;
}
.steps p { color: #d9cbb6; }

.lexicon {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4vw;
  padding: 7.5rem 6vw;
  align-items: start;
}
.lexicon-copy p { color: var(--ink-soft); }
.nut-tabs { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.5rem; }
.nut-tabs button {
  font: inherit;
  border: 1px solid var(--line);
  background: transparent;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  cursor: pointer;
}
.nut-tabs button.is-on {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.scorecard {
  background: #fffaf2;
  border: 1px solid var(--line);
  padding: 1.6rem 1.5rem 1.8rem;
  box-shadow: var(--shadow);
}
.score-photo {
  margin: -1.6rem -1.5rem 1.15rem;
}
.score-photo img { height: 12.5rem; }
.score-kicker { font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--hull); margin: 0 0 0.4rem; }
.bar-row { margin: 0.85rem 0; }
.bar-row span { display: flex; justify-content: space-between; font-size: 0.88rem; margin-bottom: 0.3rem; }
.bar {
  height: 6px;
  background: var(--paper-2);
  border-radius: 99px;
  overflow: hidden;
}
.bar i {
  display: block;
  height: 100%;
  width: 0;
  background: var(--pistachio);
  border-radius: inherit;
  transition: width 0.6s ease;
}
.bar i.defect { background: var(--hull); }
.score-note { margin: 1.2rem 0 0; color: var(--ink-soft); font-size: 0.95rem; }

.booth {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 4vw;
  padding: 0 6vw 7.5rem;
  align-items: start;
}
.booth-form {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.5rem;
  max-width: 26rem;
}
.booth-form label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.85rem;
}
.booth-form label span { color: var(--ink-soft); font-weight: 400; }
.booth-form input, .booth-form select, .form input, .form select, .form textarea {
  font: inherit;
  width: 100%;
  padding: 0.7rem 0.75rem;
  border: 1px solid var(--line);
  background: #fffaf2;
  color: var(--ink);
  border-radius: 2px;
}
.booth-form input:focus, .booth-form select:focus, .form input:focus, .form select:focus, .form textarea:focus {
  outline: 2px solid var(--gold);
  border-color: transparent;
}
.booth-visual { display: grid; gap: 1rem; }
.booth-still {
  margin: 0;
  height: 16rem;
  border-radius: 4px;
  overflow: hidden;
}
.booth-still img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.booth-card { margin: 0; }
.verdict {
  display: inline-block;
  margin: 0.4rem 0 0.8rem;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--pistachio);
  color: #fffaf2;
}
.verdict.is-hold { background: var(--hull); }
.verdict.is-rework { background: #7a2e24; }

.who-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}
.who-grid img {
  height: 10rem;
  border-radius: 2px;
  margin-bottom: 0.9rem;
}
.who-grid p { color: var(--ink-soft); }
.book-photo {
  margin: 1.4rem 0 0;
  height: 14rem;
  border-radius: 4px;
}
.pull {
  margin: 4rem 0 0;
  padding: 2.2rem 0 0;
  border-top: 1px solid var(--line);
  max-width: 38rem;
}
.pull p {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.25;
  margin: 0 0 1rem;
}
.pull cite { color: var(--ink-soft); font-style: normal; font-size: 0.9rem; }

.faq-list { max-width: 46rem; }
details {
  border-top: 1px solid var(--line);
  padding: 1rem 0;
}
details:last-child { border-bottom: 1px solid var(--line); }
summary { cursor: pointer; font-weight: 500; }
details p { color: var(--ink-soft); margin: 0.7rem 0 0; }

.book {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4vw;
  padding: 4.5rem 6vw 7rem;
  background: var(--paper-2);
}
.book address { margin-top: 1.5rem; color: var(--ink-soft); line-height: 1.8; }
.book a { color: var(--ink); }
.form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem 1rem;
  background: #fffaf2;
  padding: 1.4rem;
  border: 1px solid var(--line);
}
.form label { display: flex; flex-direction: column; gap: 0.35rem; font-size: 0.85rem; }
.form .full { grid-column: 1 / -1; }
.form-foot { grid-column: 1 / -1; display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; }
.form-ok { grid-column: 1 / -1; color: var(--pistachio); margin: 0; }
.form-err { grid-column: 1 / -1; color: #7a2e24; margin: 0; }

.footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1.5rem 6vw 2rem;
  font-size: 0.88rem;
  color: var(--ink-soft);
  border-top: 1px solid var(--line);
}
.footer strong { color: var(--ink); font-family: var(--serif); font-size: 1.1rem; }
.footer p { margin: 0.35rem 0 0; }

@media (max-width: 980px) {
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .hero-inner, .card-grid, .steps, .who-grid, .split, .lexicon, .book, .booth {
    grid-template-columns: 1fr;
  }
  .mosaic { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .card-grid { grid-template-columns: 1fr 1fr; }
  .menu-btn { display: inline-flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 6vw 1.4rem;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
  }
  .nav-links.is-open { display: flex; }
}
@media (max-width: 640px) {
  .card-grid { grid-template-columns: 1fr; }
  .form { grid-template-columns: 1fr; }
  h1 { max-width: none; }
  .mosaic { grid-template-columns: 1fr 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee-track { animation: none; }
  .bar i { transition: none; }
  .card:hover { transform: none; }
  .hero-bg img { animation: none; }
}
