:root {
  --ink: #161616;
  --paper: #f8f4ec;
  --paper-deep: #eee7dc;
  --accent: #9b6042;
  --accent-soft: #eed8c9;
  --line: rgba(22, 22, 22, 0.16);
  --serif: "Fraunces", Georgia, serif;
  --sans: "DM Sans", sans-serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 4%, color-mix(in srgb, var(--accent-soft) 70%, transparent), transparent 34rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.42), transparent 54%),
    var(--paper);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.7;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: linear-gradient(rgba(22, 22, 22, 0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(22, 22, 22, 0.025) 1px, transparent 1px);
  background-size: 42px 42px;
  content: "";
  pointer-events: none;
}

a { color: inherit; text-underline-offset: 0.22em; }
img { display: block; max-width: 100%; }

h1, h2, h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  hyphens: auto;
  letter-spacing: -0.045em;
  line-height: 0.98;
  overflow-wrap: anywhere;
}

h1 { max-width: 14ch; font-size: clamp(3.35rem, 8.3vw, 8.2rem); }
h2 { font-size: clamp(2.2rem, 4.4vw, 4.6rem); }
h3 { font-size: clamp(1.5rem, 2.2vw, 2.2rem); }
p { margin: 0 0 1.35rem; }

.site-header {
  display: flex;
  position: relative;
  z-index: 10;
  align-items: center;
  justify-content: space-between;
  width: min(1480px, calc(100% - 56px));
  margin: 0 auto;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.wordmark {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.wordmark span {
  padding-right: 14px;
  border-right: 1px solid var(--ink);
  font-family: var(--serif);
  font-size: 1.35rem;
  letter-spacing: 0.12em;
}

.site-header nav { display: flex; align-items: center; gap: 24px; font-size: 0.86rem; font-weight: 600; }
.site-header nav a { text-decoration: none; }
.nav-cta { padding: 10px 18px; border: 1px solid var(--ink); border-radius: 100px; }

main { overflow: hidden; }

.hub-hero,
.article-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  align-items: center;
  width: min(1480px, calc(100% - 56px));
  min-height: 760px;
  margin: 0 auto;
  padding: 76px 0 94px;
}

.hero-copy,
.article-hero > div { min-width: 0; }
.hero-copy { position: relative; z-index: 2; }
.eyebrow { margin-bottom: 24px; color: var(--accent); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; }
.lede, .dek { max-width: 700px; margin: 34px 0; font-size: clamp(1.15rem, 1.75vw, 1.65rem); line-height: 1.5; }

.button {
  display: inline-flex;
  align-items: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid var(--ink);
  border-radius: 100px;
  background: var(--ink);
  color: var(--paper);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover { transform: translateY(-2px); background: var(--accent); }

.hero-object {
  display: grid;
  position: relative;
  place-items: center;
  min-height: 620px;
  margin: 0;
}

.hero-object::before {
  position: absolute;
  width: min(34vw, 520px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--accent-soft);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.55), 0 60px 120px rgba(22,22,22,.08);
  content: "";
}

.hero-object img {
  position: relative;
  z-index: 2;
  width: min(31vw, 470px);
  aspect-ratio: 1;
  object-fit: contain;
  filter: drop-shadow(0 28px 28px rgba(0,0,0,.16));
}

.hero-object figcaption {
  position: absolute;
  right: 5%;
  bottom: 9%;
  z-index: 3;
  padding: 9px 16px;
  border: 1px solid var(--line);
  border-radius: 100px;
  background: rgba(248,244,236,.82);
  font-size: 0.76rem;
  backdrop-filter: blur(12px);
}

.orbit { position: absolute; border: 1px solid color-mix(in srgb, var(--accent) 35%, transparent); border-radius: 50%; }
.orbit-one { width: 76%; aspect-ratio: 1; animation: float 9s ease-in-out infinite; }
.orbit-two { width: 94%; aspect-ratio: 1; animation: float 12s ease-in-out -3s infinite reverse; }

.manifesto {
  display: grid;
  grid-template-columns: 90px minmax(300px, 1fr) minmax(280px, 0.6fr);
  gap: 40px;
  width: min(1220px, calc(100% - 56px));
  margin: 20px auto 140px;
  padding-top: 50px;
  border-top: 1px solid var(--line);
}

.section-number { color: var(--accent); font-family: var(--serif); font-size: 1rem; }
.manifesto h2 { max-width: 13ch; }
.manifesto > p:last-child { padding-top: 10px; font-size: 1.08rem; }

.route-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  width: min(1220px, calc(100% - 56px));
  margin: 0 auto 140px;
  border: 1px solid var(--line);
}

.route-card { min-height: 430px; padding: clamp(34px, 5vw, 72px); }
.route-card + .route-card { border-left: 1px solid var(--line); }
.route-primary { background: var(--accent-soft); }
.route-card > span { display: block; margin-bottom: 38px; font-size: .75rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.route-card h2 { max-width: 12ch; margin-bottom: 28px; font-size: clamp(2.1rem, 3.6vw, 4rem); }
.route-card ol { margin: 0; padding-left: 1.25rem; }
.route-card li { padding: 12px 0; border-bottom: 1px solid var(--line); }
.route-card a { font-weight: 600; }

.article-hero { grid-template-columns: minmax(0, 1fr) minmax(300px, .66fr); min-height: 700px; border-bottom: 1px solid var(--line); }
.article-hero h1 { max-width: 12ch; font-size: clamp(3rem, 7vw, 7rem); }
.article-hero img { width: min(35vw, 500px); margin-left: auto; aspect-ratio: 1; object-fit: contain; filter: drop-shadow(0 28px 36px rgba(0,0,0,.13)); }

.article-grid {
  display: grid;
  grid-template-columns: 320px minmax(0, 780px);
  gap: 90px;
  justify-content: center;
  width: min(1220px, calc(100% - 56px));
  margin: 110px auto;
}

.article-note { align-self: start; position: sticky; top: 32px; padding: 28px; border-top: 3px solid var(--accent); background: rgba(255,255,255,.4); }
.article-note span { display: block; margin-bottom: 22px; color: var(--accent); font-size: .73rem; font-weight: 600; letter-spacing: .14em; }
.article-note p { margin: 0; font-family: var(--serif); font-size: 1.35rem; line-height: 1.45; }
.guide-section { margin-bottom: 78px; }
.guide-section h2 { max-width: 15ch; margin-bottom: 32px; font-size: clamp(2.1rem, 3.4vw, 3.8rem); }
.guide-section p { font-size: 1.05rem; }

.steps,
.decision-tool,
.product-bridge,
.faq {
  width: min(1050px, calc(100% - 56px));
  margin: 120px auto;
}

.steps { padding: 58px; border: 1px solid var(--line); background: rgba(255,255,255,.34); }
.steps ol { margin: 28px 0 0; padding: 0; list-style: none; }
.steps li { display: grid; grid-template-columns: 80px 1fr; gap: 22px; padding: 34px 0; border-top: 1px solid var(--line); }
.steps li > span { color: var(--accent); font-family: var(--serif); font-size: 1.5rem; }
.steps h3 { margin-bottom: 12px; font-size: 2rem; }
.steps p { margin: 0; }

.decision-tool { position: relative; padding: clamp(42px, 7vw, 90px); overflow: hidden; background: var(--ink); color: var(--paper); }
.decision-tool::after { position: absolute; right: -110px; bottom: -160px; width: 420px; aspect-ratio: 1; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; content: ""; }
.decision-tool h2 { max-width: 15ch; margin-bottom: 42px; }
.tool-options { display: flex; position: relative; z-index: 2; flex-wrap: wrap; gap: 12px; }
.tool-options button { padding: 14px 18px; border: 1px solid rgba(255,255,255,.5); border-radius: 100px; background: transparent; color: inherit; font: 600 .88rem var(--sans); cursor: pointer; }
.tool-options button:hover, .tool-options button[aria-pressed="true"] { border-color: var(--accent-soft); background: var(--accent-soft); color: var(--ink); }
.tool-result { position: relative; z-index: 2; max-width: 720px; min-height: 82px; margin: 34px 0 0; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.25); font-size: 1.1rem; }

.product-bridge { display: grid; grid-template-columns: minmax(260px, .8fr) minmax(300px, 1fr); align-items: center; gap: clamp(40px, 7vw, 100px); padding: clamp(32px, 5vw, 70px); background: var(--accent-soft); }
.product-bridge img { aspect-ratio: 1; object-fit: contain; filter: drop-shadow(0 22px 22px rgba(0,0,0,.12)); }
.product-bridge h2 { max-width: 13ch; margin-bottom: 25px; font-size: clamp(2.2rem, 4vw, 4.1rem); }

.faq { padding-top: 60px; border-top: 1px solid var(--line); }
.faq h2 { margin-bottom: 38px; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { padding: 22px 0; font-weight: 600; cursor: pointer; }
.faq details p { max-width: 760px; padding-bottom: 22px; }

footer {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 30px;
  width: min(1480px, calc(100% - 56px));
  margin: 80px auto 0;
  padding: 45px 0 55px;
  border-top: 1px solid var(--line);
  font-size: .8rem;
}

footer p { margin: 0; }

.language-gate { display: grid; min-height: 100vh; place-items: center; padding: 28px; }
.language-gate main { width: min(720px, 100%); padding: clamp(38px, 8vw, 90px); border: 1px solid var(--line); background: rgba(255,255,255,.48); }
.language-gate h1 {
  max-width: none;
  font-size: clamp(2.75rem, 6vw, 4.25rem);
  overflow-wrap: normal;
  text-wrap: balance;
}
.language-gate nav { display: flex; gap: 12px; margin-top: 34px; }
.language-gate nav a { padding: 11px 20px; border: 1px solid var(--ink); border-radius: 100px; text-decoration: none; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity 700ms ease, transform 700ms ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@keyframes float {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); }
  50% { transform: translate3d(0, -12px, 0) rotate(3deg); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .orbit { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

@media (max-width: 860px) {
  body { font-size: 16px; }
  h1 { font-size: clamp(3rem, 14vw, 5.5rem); }
  .site-header { width: calc(100% - 32px); padding: 20px 0; }
  .wordmark { max-width: 62%; align-items: flex-start; font-size: .63rem; line-height: 1.3; }
  .wordmark span { font-size: 1rem; }
  .site-header nav { gap: 10px; font-size: .72rem; }
  .nav-cta { display: none; }
  .hub-hero, .article-hero { grid-template-columns: minmax(0, 1fr); width: calc(100% - 32px); min-height: 0; padding: 58px 0 72px; }
  .hero-object { min-height: 420px; margin-top: 24px; }
  .hero-object::before { width: min(78vw, 390px); }
  .hero-object img { width: min(68vw, 340px); }
  .hero-object figcaption { right: 0; bottom: 4%; }
  .manifesto { grid-template-columns: 44px 1fr; gap: 18px; width: calc(100% - 32px); margin-bottom: 82px; }
  .manifesto > p:last-child { grid-column: 2; }
  .route-grid { grid-template-columns: 1fr; width: calc(100% - 32px); margin-bottom: 90px; }
  .route-card { min-height: 0; padding: 36px 28px; }
  .route-card + .route-card { border-top: 1px solid var(--line); border-left: 0; }
  .article-hero img { width: min(82vw, 420px); margin: 42px auto 0; }
  .article-grid { grid-template-columns: 1fr; gap: 50px; width: calc(100% - 32px); margin: 70px auto; }
  .article-note { position: static; }
  .guide-section { margin-bottom: 60px; }
  .steps, .decision-tool, .product-bridge, .faq { width: calc(100% - 32px); margin: 82px auto; }
  .steps { padding: 28px 22px; }
  .steps li { grid-template-columns: 46px 1fr; }
  .product-bridge { grid-template-columns: 1fr; padding: 30px 24px 38px; }
  .product-bridge img { max-width: 320px; margin: 0 auto; }
  footer { grid-template-columns: 1fr; width: calc(100% - 32px); }
  .language-gate { padding: 12px; }
  .language-gate main { padding: 32px 28px; }
  .language-gate h1 { font-size: clamp(2.2rem, 10vw, 2.65rem); }
}

@media (max-width: 390px) {
  .site-header { width: calc(100% - 24px); }
  .wordmark { gap: 8px; }
  .wordmark span { padding-right: 8px; }
  .hub-hero, .article-hero, .manifesto, .route-grid, .article-grid, .steps, .decision-tool, .product-bridge, .faq, footer { width: calc(100% - 24px); }
  .tool-options { align-items: stretch; flex-direction: column; }
}
