@layer reset, base, components, pages, responsive;

@layer reset {
  *, *::before, *::after { box-sizing: border-box; }
  html { -webkit-text-size-adjust: 100%; }
  body, h1, h2, h3, h4, p, figure, blockquote, dl, dd { margin: 0; }
  ul, ol { margin: 0; padding: 0; }
  img, picture, svg { display: block; max-width: 100%; }
  button, input, textarea, select { font: inherit; }
  button { border: 0; }
}

@layer base {
  :root {
    --paper: #f3efe5;
    --paper-deep: #e7e0d2;
    --ink: #15251f;
    --ink-soft: #3e4b46;
    --cream: #fffaf0;
    --lime: #d8ff63;
    --coral: #ff6846;
    --coral-ink: #ad321f;
    --blue: #96c7ff;
    --violet: #b9a9ff;
    --line: rgba(21, 37, 31, .18);
    --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
    --serif: Iowan Old Style, Baskerville, "Times New Roman", serif;
    --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
    --shadow: 0 26px 80px rgba(21, 37, 31, .13);
    --radius: 18px;
    --header-h: 86px;
  }

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

  body {
    min-width: 320px;
    color: var(--ink);
    background: var(--paper);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
  }

  a { color: inherit; text-decoration: none; }
  button, a { -webkit-tap-highlight-color: transparent; }
  button { color: inherit; cursor: pointer; }
  ::selection { background: var(--coral); color: var(--ink); }
  :focus-visible { outline: 3px solid var(--blue); outline-offset: 4px; }
  [hidden] { display: none !important; }

  .shell { width: min(100% - 48px, 1280px); margin-inline: auto; }
  .section-pad { padding-block: clamp(88px, 10vw, 150px); }
  .sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
  }

  .skip-link {
    position: fixed;
    z-index: 1000;
    top: 12px;
    left: 12px;
    padding: 10px 16px;
    color: var(--cream);
    background: var(--ink);
    transform: translateY(-160%);
    transition: transform .2s;
  }
  .skip-link:focus { transform: none; }

  .reveal { transition: opacity .7s ease, transform .7s cubic-bezier(.22, 1, .36, 1); }
  .js .reveal:not(.is-visible) { opacity: 0; transform: translateY(25px); }
  .js .reveal-late { transition-delay: .12s; }
  .js .reveal-later { transition-delay: .24s; }
  @media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
  }
}

@layer components {
  .site-header {
    position: relative;
    z-index: 50;
    height: var(--header-h);
    border-bottom: 1px solid var(--line);
    background: rgba(243, 239, 229, .88);
    backdrop-filter: blur(15px);
  }
  .site-header.is-sticky { position: sticky; top: 0; }
  .header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 40px; }
  .brand { display: inline-flex; align-items: center; gap: 11px; font-size: 18px; font-weight: 760; letter-spacing: -.045em; white-space: nowrap; }
  .brand-mark { width: 30px; height: 30px; overflow: visible; fill: var(--ink); }
  .brand-mark circle { fill: var(--coral); }
  .site-nav { display: flex; align-items: center; gap: clamp(20px, 2.4vw, 38px); font-size: 13px; font-weight: 660; }
  .site-nav > a:not(.button) { position: relative; }
  .site-nav > a:not(.button)::after { content: ""; position: absolute; right: 0; bottom: -7px; left: 0; height: 1px; background: currentColor; transform: scaleX(0); transform-origin: right; transition: transform .25s ease; }
  .site-nav > a:hover::after, .site-nav > a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
  .nav-toggle { display: none; width: 44px; height: 44px; padding: 12px 8px; background: none; }
  .nav-toggle span:not(.sr-only) { display: block; height: 2px; margin-block: 6px; background: var(--ink); transition: transform .2s; }

  .button {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 12px 22px;
    border: 1px solid var(--ink);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 760;
    line-height: 1;
    transition: color .2s, background .2s, transform .2s, box-shadow .2s;
  }
  .button svg, .text-link svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; }
  .button:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(21, 37, 31, .14); }
  .button-small { min-height: 42px; padding: 10px 17px; font-size: 12px; }
  .button-large { min-height: 62px; padding-inline: 30px; font-size: 14px; }
  .button-primary { background: var(--lime); color: var(--ink); }
  .button-primary:hover { background: #caff3f; }
  .button-dark { background: var(--ink); color: var(--cream); }
  .button-dark:hover { background: #263a32; }
  .button-light { border-color: var(--cream); color: var(--cream); }
  .button-light:hover { color: var(--ink); background: var(--cream); }
  .text-link { display: inline-flex; align-items: center; gap: 10px; padding-block: 6px; border-bottom: 1px solid rgba(255,255,255,.45); font-size: 13px; font-weight: 720; }
  .text-link-dark { border-color: var(--ink); }
  .text-link svg { transition: transform .2s; }
  .text-link:hover svg { transform: translateX(4px); }
  .text-button { padding: 8px 2px; border-bottom: 1px solid currentColor; color: var(--ink); background: none; font-size: 13px; font-weight: 720; }
  .text-button:disabled { opacity: .35; cursor: default; }

  .eyebrow { display: flex; align-items: center; gap: 10px; font-size: 11px; font-weight: 780; letter-spacing: .13em; line-height: 1.2; text-transform: uppercase; }
  .eyebrow > span { width: 28px; height: 1px; background: currentColor; }
  .eyebrow-light { color: var(--cream); }
  .display-title { font-family: var(--serif); font-size: clamp(50px, 6.2vw, 88px); font-weight: 400; letter-spacing: -.055em; line-height: .96; }
  .display-title em, h1 em, h2 em { color: var(--coral-ink); font-weight: 400; }
  .section-kicker { display: flex; align-items: center; gap: 22px; margin-bottom: 52px; font-size: 12px; font-weight: 740; letter-spacing: .08em; text-transform: uppercase; }
  .section-kicker span { display: inline-grid; width: 36px; height: 36px; place-items: center; border: 1px solid var(--ink); border-radius: 50%; font-family: var(--mono); font-size: 10px; }

  .site-footer { color: var(--cream); background: #0f1d18; }
  .footer-grid { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1.4fr; gap: 60px; padding-block: 82px 70px; }
  .brand-footer { margin-bottom: 20px; font-size: 20px; }
  .brand-footer .brand-mark { fill: var(--cream); }
  .footer-lead p { max-width: 310px; color: rgba(255,250,240,.66); font-family: var(--serif); font-size: 24px; line-height: 1.25; }
  .footer-grid > div:not(.footer-lead) { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; font-size: 13px; }
  .footer-grid a { color: rgba(255,250,240,.76); }
  .footer-grid a:hover { color: var(--lime); }
  .footer-label { margin-bottom: 9px; color: var(--cream); font-size: 10px; font-weight: 750; letter-spacing: .15em; text-transform: uppercase; }
  .footer-note { max-width: 230px; margin-top: 10px; color: rgba(255,250,240,.68); font-size: 11px; line-height: 1.5; }
  .footer-bottom { display: flex; justify-content: space-between; padding-block: 21px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,250,240,.64); font-family: var(--mono); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }

  .article-cta { margin-block: 80px 120px; padding: 65px clamp(28px, 6vw, 82px); border-radius: 4px; color: var(--cream); background: var(--ink); }
  .article-cta h2 { max-width: 730px; margin: 24px 0 35px; font-family: var(--serif); font-size: clamp(42px, 5vw, 70px); font-weight: 400; letter-spacing: -.045em; line-height: 1; }
}

@layer pages {
  /* Home */
  .hero { min-height: calc(100vh - var(--header-h)); display: grid; grid-template-columns: .91fr 1.09fr; align-items: center; gap: clamp(30px, 5vw, 86px); padding-block: 58px 75px; }
  .hero-copy { position: relative; z-index: 2; }
  .hero-copy h1 { margin: 27px 0 30px; font-family: var(--serif); font-size: clamp(62px, 7.5vw, 110px); font-weight: 400; letter-spacing: -.068em; line-height: .84; }
  .hero-copy h1 em { display: inline-block; margin-left: 16%; }
  .hero-deck { max-width: 520px; color: var(--ink-soft); font-size: clamp(17px, 1.5vw, 21px); line-height: 1.5; }
  .hero-actions { display: flex; align-items: center; gap: 28px; margin-top: 38px; }
  .hero-actions .text-link { border-color: var(--line); }
  .hero-proof { display: flex; gap: 36px; margin-top: 54px; color: var(--ink-soft); font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
  .hero-proof span { display: flex; align-items: center; gap: 10px; }
  .hero-proof span + span { padding-left: 36px; border-left: 1px solid var(--line); }
  .hero-proof b { color: var(--ink); font-family: var(--mono); font-size: 12px; }
  .hero-visual { position: relative; min-height: 650px; }
  .visual-label { position: absolute; z-index: 3; padding: 5px 10px; border: 1px solid var(--ink); border-radius: 20px; background: var(--paper); font-family: var(--mono); font-size: 8px; letter-spacing: .1em; text-transform: uppercase; }
  .visual-label-top { top: 13%; right: -2%; transform: rotate(7deg); }
  .visual-label-bottom { bottom: 12%; left: -2%; transform: rotate(-6deg); }
  .desk-scene { position: relative; width: 100%; min-height: 640px; overflow: hidden; border-radius: 50% 50% 7px 7px / 38% 38% 7px 7px; background: var(--blue); }
  .desk-scene::before { content: ""; position: absolute; inset: 35px; border: 1px solid rgba(21,37,31,.35); border-radius: 50% 50% 3px 3px / 36% 36% 3px 3px; }
  .desk-scene::after { content: "DESIGNED FOR / REAL LIFE"; position: absolute; top: 48%; right: -93px; font-family: var(--mono); font-size: 8px; letter-spacing: .25em; transform: rotate(90deg); }
  .scene-sun { position: absolute; z-index: 0; top: 12%; left: 20%; width: 38%; aspect-ratio: 1; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 22px rgba(216,255,99,.22); }
  .scene-note { position: absolute; z-index: 2; top: 26%; left: 12%; padding-left: 11px; border-left: 2px solid var(--ink); font-family: var(--serif); font-size: 17px; font-style: italic; line-height: 1.05; transform: rotate(-8deg); }
  .scene-screen { position: absolute; z-index: 5; top: 27%; left: 34%; width: 36%; height: 27%; border: 8px solid var(--ink); border-radius: 8px; background: #f5a994; box-shadow: 0 13px 0 -6px rgba(21,37,31,.2); }
  .scene-screen::before, .scene-screen::after { content: ""; position: absolute; }
  .scene-screen::before { inset: 18% 14%; border: 1px solid var(--ink); border-radius: 50%; background: var(--lime); }
  .scene-screen::after { top: 42%; right: 20%; left: 20%; height: 1px; background: var(--ink); transform: rotate(-12deg); }
  .scene-screen span { position: absolute; right: -4px; bottom: -43px; width: 13px; height: 38px; background: var(--ink); }
  .scene-screen em { position: absolute; right: -40px; bottom: -48px; width: 80px; height: 8px; border-radius: 8px; background: var(--ink); }
  .scene-laptop { position: absolute; z-index: 7; top: 51%; left: 41%; width: 31%; height: 13%; border: 5px solid var(--ink); border-radius: 5px; background: var(--cream); transform: perspective(300px) rotateX(54deg); transform-origin: bottom; }
  .scene-laptop span { position: absolute; inset: 15%; border-radius: 2px; background: var(--violet); }
  .scene-lamp { position: absolute; z-index: 4; top: 20%; right: 12%; width: 28%; height: 38%; }
  .scene-lamp i { position: absolute; right: 20%; bottom: 0; width: 8px; height: 72%; background: var(--ink); transform: rotate(-13deg); transform-origin: bottom; }
  .scene-lamp b { position: absolute; top: 0; right: 4%; width: 42%; height: 27%; border-radius: 50% 50% 7px 7px; background: var(--coral); transform: rotate(15deg); }
  .scene-lamp b::after { content: ""; position: absolute; right: 10%; bottom: -7px; width: 75%; height: 9px; border-radius: 50%; background: var(--ink); }
  .scene-desk { position: absolute; z-index: 6; right: 11%; bottom: 22%; left: 11%; height: 20%; }
  .scene-desk span { position: absolute; inset: 0 0 auto; height: 36%; border: 5px solid var(--ink); background: #b88859; box-shadow: inset 0 -8px rgba(90,51,23,.2); }
  .scene-desk i, .scene-desk b { position: absolute; bottom: -84%; width: 6%; height: 122%; border: 4px solid var(--ink); background: var(--cream); }
  .scene-desk i { left: 6%; }
  .scene-desk b { right: 6%; }
  .scene-drawer { position: absolute; z-index: 7; right: 15%; bottom: 10.5%; width: 18%; height: 22%; border: 4px solid var(--ink); background: var(--coral); }
  .scene-drawer i, .scene-drawer b { display: block; height: 50%; border-bottom: 2px solid var(--ink); }
  .scene-drawer i::before, .scene-drawer b::before { content: ""; display: block; width: 18%; height: 4px; margin: 11px auto; background: var(--ink); }
  .scene-plant { position: absolute; z-index: 8; left: 15%; bottom: 40%; width: 20%; height: 22%; }
  .scene-plant i { position: absolute; bottom: 22%; left: 45%; width: 25%; height: 72%; border-radius: 100% 0 100% 0; background: var(--ink); transform-origin: bottom; }
  .scene-plant i:nth-child(1) { transform: rotate(-44deg); }
  .scene-plant i:nth-child(2) { height: 87%; transform: rotate(-8deg); }
  .scene-plant i:nth-child(3) { transform: rotate(35deg); }
  .scene-plant b { position: absolute; right: 17%; bottom: 0; left: 17%; height: 37%; border: 4px solid var(--ink); border-radius: 2px 2px 20px 20px; background: var(--lime); }
  .scene-chair { position: absolute; z-index: 9; bottom: 6%; left: 28%; width: 25%; height: 31%; }
  .scene-chair span { position: absolute; top: 0; left: 24%; width: 59%; height: 55%; border: 5px solid var(--ink); border-radius: 30px 30px 9px 9px; background: var(--violet); transform: rotate(8deg); }
  .scene-chair i { position: absolute; top: 48%; left: 18%; width: 70%; height: 20%; border: 5px solid var(--ink); border-radius: 50%; background: var(--violet); transform: rotate(8deg); }
  .scene-chair b { position: absolute; top: 65%; left: 51%; width: 6px; height: 29%; background: var(--ink); }
  .scene-chair b::after { content: ""; position: absolute; right: -35px; bottom: 0; width: 75px; height: 5px; border-radius: 5px; background: var(--ink); }
  .scene-shadow { position: absolute; z-index: 1; right: 7%; bottom: 4%; left: 7%; height: 9%; border-radius: 50%; background: rgba(21,37,31,.17); filter: blur(10px); }
  .desk-scene::before, .desk-scene::after { content: none; }
  .scene-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 52% center; filter: saturate(.92) contrast(1.02); }
  .visual-card { position: absolute; z-index: 12; right: -20px; bottom: 1%; width: 222px; padding: 17px 18px 16px; border: 1px solid var(--ink); border-radius: 4px; background: var(--cream); box-shadow: var(--shadow); transform: rotate(3deg); }
  .visual-card > span { font-family: var(--mono); font-size: 8px; letter-spacing: .12em; }
  .visual-card strong { display: block; margin: 7px 0 12px; font-family: var(--serif); font-size: 24px; font-style: italic; font-weight: 400; }
  .visual-card div { display: flex; align-items: center; }
  .visual-card i { width: 19px; height: 19px; margin-right: -5px; border: 1px solid var(--cream); border-radius: 50%; background: var(--coral); }
  .visual-card i:nth-child(2) { background: var(--blue); }
  .visual-card i:nth-child(3) { background: var(--lime); }
  .visual-card b { margin-left: auto; font-family: var(--mono); font-size: 8px; text-transform: uppercase; }

  .marquee { overflow: hidden; border-block: 1px solid var(--ink); background: var(--lime); }
  .marquee > div { width: max-content; display: flex; align-items: center; gap: 35px; padding-block: 14px; animation: ticker 26s linear infinite; font-family: var(--mono); font-size: 11px; font-weight: 700; letter-spacing: .22em; }
  .marquee i { font-style: normal; }
  @keyframes ticker { to { transform: translateX(-50%); } }

  .intro-grid { display: grid; grid-template-columns: 1.35fr .65fr; gap: clamp(50px, 10vw, 150px); align-items: end; }
  .intro-copy { padding-bottom: 6px; color: var(--ink-soft); font-size: 17px; }
  .intro-copy p + p { margin-top: 18px; }
  .intro-copy .text-link { margin-top: 26px; color: var(--ink); }

  .steps-section { color: var(--cream); background: var(--ink); }
  .section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; margin-bottom: 70px; }
  .section-head h2 { margin-top: 24px; font-family: var(--serif); font-size: clamp(52px, 6vw, 82px); font-weight: 400; letter-spacing: -.05em; line-height: .95; }
  .steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-block: 1px solid rgba(255,255,255,.2); }
  .step-card { position: relative; padding: 32px clamp(22px, 3vw, 42px) 44px; }
  .step-card + .step-card { border-left: 1px solid rgba(255,255,255,.2); }
  .step-number { font-family: var(--mono); font-size: 10px; letter-spacing: .1em; }
  .step-card h3 { margin: 32px 0 13px; font-family: var(--serif); font-size: 33px; font-weight: 400; letter-spacing: -.03em; }
  .step-card p { max-width: 340px; color: rgba(255,250,240,.62); font-size: 13px; line-height: 1.65; }
  .step-art { position: relative; height: 195px; margin-top: 28px; overflow: hidden; border-radius: 3px; }
  .step-art-space { background: var(--blue); }
  .step-art-space::before, .step-art-space::after { content: ""; position: absolute; border: 2px solid var(--ink); }
  .step-art-space::before { inset: 25px; }
  .step-art-space::after { top: 25px; bottom: 25px; left: 50%; }
  .step-art-space span { position: absolute; right: 34px; bottom: 35px; width: 42%; height: 37%; border: 3px solid var(--ink); background: var(--coral); }
  .step-art-space i { position: absolute; right: 46px; bottom: 78px; width: 19%; height: 28%; border: 3px solid var(--ink); background: var(--lime); }
  .step-art-work { background: var(--coral); }
  .step-art-work::before { content: ""; position: absolute; top: 24px; left: 50%; width: 148px; height: 116px; border: 4px solid var(--ink); border-radius: 5px; background: var(--cream); transform: translateX(-50%); }
  .step-art-work span { position: absolute; top: 40px; left: 50%; width: 120px; height: 76px; background: var(--blue); transform: translateX(-50%); }
  .step-art-work i { position: absolute; top: 137px; left: calc(50% - 3px); width: 7px; height: 26px; background: var(--ink); }
  .step-art-work b { position: absolute; bottom: 29px; left: calc(50% - 45px); width: 90px; height: 7px; background: var(--ink); }
  .step-art-plan { background: var(--lime); }
  .step-art-plan::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(21,37,31,.15) 1px, transparent 1px), linear-gradient(90deg, rgba(21,37,31,.15) 1px, transparent 1px); background-size: 22px 22px; }
  .step-art-plan span { position: absolute; top: 50%; left: 50%; width: 60%; height: 52%; border: 2px solid var(--ink); transform: translate(-50%, -50%); }
  .step-art-plan i { position: absolute; top: 34px; left: 20%; width: 60%; height: 1px; background: var(--ink); }
  .step-art-plan i::before, .step-art-plan i::after { content: ""; position: absolute; top: -4px; width: 1px; height: 9px; background: var(--ink); }
  .step-art-plan i::after { right: 0; }
  .step-art-plan b { position: absolute; top: 26px; left: 44%; padding: 2px 7px; background: var(--lime); font-family: var(--mono); font-size: 8px; }
  .step-art.photo-art { background: var(--paper-deep); }
  .step-art.photo-art::before, .step-art.photo-art::after { content: none; }
  .step-art .section-photo { width: 100%; height: 100%; object-fit: cover; transition: transform .55s cubic-bezier(.22, 1, .36, 1); }
  .step-card:hover .section-photo { transform: scale(1.035); }
  .step-art-space .section-photo { object-position: center 55%; }
  .step-art-work .section-photo { object-position: center 42%; }
  .step-art-plan .section-photo { object-position: center 48%; }

  .fit-section { display: grid; grid-template-columns: 1fr .82fr; gap: clamp(60px, 10vw, 150px); align-items: center; }
  .fit-visual { position: relative; aspect-ratio: 1; display: grid; place-items: center; border-radius: 50%; background: var(--coral); }
  .fit-orbit { position: absolute; inset: 9%; border: 1px dashed var(--ink); border-radius: 50%; animation: orbit 34s linear infinite; }
  .fit-orbit span { position: absolute; top: -11px; left: 50%; padding: 2px 7px; background: var(--coral); font-family: var(--mono); font-size: 8px; letter-spacing: .2em; transform: translateX(-50%); }
  @keyframes orbit { to { transform: rotate(360deg); } }
  .fit-score { width: 42%; aspect-ratio: 1; display: flex; align-items: center; justify-content: center; gap: 12px; border: 5px solid var(--ink); border-radius: 50%; background: var(--lime); transform: rotate(-5deg); }
  .fit-score strong { font-family: var(--serif); font-size: clamp(75px, 9vw, 130px); font-weight: 400; letter-spacing: -.08em; line-height: .8; }
  .fit-score span { font-family: var(--mono); font-size: 8px; font-weight: 700; letter-spacing: .1em; line-height: 1.2; }
  .fit-chip { position: absolute; padding: 8px 14px; border: 1px solid var(--ink); border-radius: 30px; background: var(--cream); font-family: var(--mono); font-size: 9px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; box-shadow: 3px 3px 0 var(--ink); }
  .chip-one { top: 19%; right: -2%; transform: rotate(8deg); }
  .chip-two { bottom: 18%; left: -1%; transform: rotate(-8deg); }
  .chip-three { right: 2%; bottom: 8%; transform: rotate(4deg); }
  .fit-copy h2 { margin: 28px 0 25px; font-family: var(--serif); font-size: clamp(50px, 5.6vw, 76px); font-weight: 400; letter-spacing: -.05em; line-height: .96; }
  .fit-copy > p:not(.eyebrow) { max-width: 550px; color: var(--ink-soft); font-size: 17px; }
  .check-list { margin: 34px 0; list-style: none; border-top: 1px solid var(--line); }
  .check-list li { position: relative; padding: 13px 0 13px 28px; border-bottom: 1px solid var(--line); font-size: 13px; font-weight: 620; }
  .check-list li::before { content: "✓"; position: absolute; left: 2px; color: var(--coral-ink); font-weight: 800; }

  .guides-section { background: var(--paper-deep); }
  .section-head-dark h2 { color: var(--ink); }
  .guide-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .guide-card { position: relative; min-height: 540px; display: flex; flex-direction: column; padding: 25px; overflow: hidden; border: 1px solid var(--ink); border-radius: 4px; transition: transform .25s, box-shadow .25s; }
  .guide-card:hover { transform: translateY(-7px) rotate(-.3deg); box-shadow: 8px 10px 0 var(--ink); }
  .guide-card-coral { background: #f4a08b; }
  .guide-card-green { background: #a8d7b5; }
  .guide-card-blue { background: var(--blue); }
  .guide-tag { align-self: flex-start; padding: 4px 10px; border: 1px solid var(--ink); border-radius: 30px; background: rgba(255,255,255,.3); font-family: var(--mono); font-size: 8px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
  .guide-art { position: relative; height: 235px; margin-block: 20px; }
  .guide-art-body i { position: absolute; top: 8%; left: 43%; width: 50px; height: 50px; border: 4px solid var(--ink); border-radius: 50%; background: var(--lime); }
  .guide-art-body b { position: absolute; top: 30%; left: 37%; width: 90px; height: 115px; border: 4px solid var(--ink); border-radius: 45px 45px 8px 8px; background: var(--violet); transform: rotate(-5deg); }
  .guide-art-body em { position: absolute; right: 13%; bottom: 12%; width: 52%; height: 5px; background: var(--ink); transform: rotate(-14deg); }
  .guide-art-space::before { content: ""; position: absolute; inset: 15px 42px; border: 3px solid var(--ink); background: rgba(255,255,255,.16); }
  .guide-art-space i { position: absolute; right: 26%; bottom: 22%; width: 45%; height: 25%; border: 3px solid var(--ink); background: var(--lime); }
  .guide-art-space b { position: absolute; top: 23%; left: 26%; width: 22%; height: 32%; border: 3px solid var(--ink); background: var(--coral); }
  .guide-art-space em { position: absolute; right: 16%; bottom: 16%; width: 16%; aspect-ratio: 1; border: 3px solid var(--ink); border-radius: 50%; background: var(--violet); }
  .guide-art-light i { position: absolute; top: 6%; left: 35%; width: 30%; aspect-ratio: 1; border: 4px solid var(--ink); border-radius: 50% 50% 10px 10px; background: var(--lime); transform: rotate(-8deg); }
  .guide-art-light i::after { content: ""; position: absolute; top: 100%; left: calc(50% - 3px); width: 6px; height: 105px; background: var(--ink); }
  .guide-art-light b { position: absolute; right: 9%; bottom: 6%; left: 9%; height: 22%; border: 4px solid var(--ink); background: var(--cream); }
  .guide-art-light em { position: absolute; right: 18%; bottom: 28%; width: 25%; height: 35%; border: 3px solid var(--ink); background: var(--coral); }
  img.guide-art { width: calc(100% + 50px); max-width: none; height: 245px; margin: 20px -25px 24px; border-block: 1px solid var(--ink); object-fit: cover; transition: transform .55s cubic-bezier(.22, 1, .36, 1); }
  .guide-art-body { object-position: center 38%; }
  .guide-art-space { object-position: center; }
  .guide-art-light { object-position: center 55%; }
  .guide-card:hover img.guide-art { transform: scale(1.025); }
  .guide-card h3 { max-width: 330px; font-family: var(--serif); font-size: 34px; font-weight: 400; letter-spacing: -.035em; line-height: 1.05; }
  .guide-card p { max-width: 315px; margin-top: 13px; font-size: 12px; line-height: 1.55; }
  .card-arrow { position: absolute; right: 23px; bottom: 22px; display: grid; width: 34px; height: 34px; place-items: center; border: 1px solid var(--ink); border-radius: 50%; font-size: 15px; transition: transform .2s; }
  .guide-card:hover .card-arrow { transform: rotate(45deg); }

  .final-cta { overflow: hidden; color: var(--ink); background: var(--coral); }
  .final-cta .eyebrow-light { color: var(--ink); }
  .final-cta-inner { position: relative; min-height: 610px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
  .final-cta-inner::before, .final-cta-inner::after { content: ""; position: absolute; width: 430px; aspect-ratio: 1; border: 1px solid rgba(21,37,31,.4); border-radius: 50%; }
  .final-cta-inner::before { top: -270px; left: -210px; box-shadow: 0 0 0 50px rgba(216,255,99,.18), 0 0 0 100px rgba(216,255,99,.10); }
  .final-cta-inner::after { right: -210px; bottom: -300px; box-shadow: 0 0 0 50px rgba(150,199,255,.18), 0 0 0 100px rgba(150,199,255,.1); }
  .final-cta h2 { position: relative; z-index: 1; margin: 30px 0 38px; font-family: var(--serif); font-size: clamp(65px, 9vw, 126px); font-weight: 400; letter-spacing: -.065em; line-height: .83; }
  .final-cta h2 em { color: var(--ink); }
  .final-cta .button { position: relative; z-index: 2; }
  .final-cta .button svg { width: 20px; stroke: var(--ink); }

  /* Guide and article shared */
  .page-hero { min-height: 610px; display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 90px; padding-block: 85px; }
  .page-hero-copy h1 { margin: 25px 0 28px; font-family: var(--serif); font-size: clamp(62px, 7.5vw, 105px); font-weight: 400; letter-spacing: -.065em; line-height: .88; }
  .page-hero-copy > p:last-child { max-width: 570px; color: var(--ink-soft); font-size: 19px; line-height: 1.55; }
  .page-hero-art { position: relative; aspect-ratio: 1.22; overflow: hidden; border: 1px solid var(--ink); border-radius: 50% 50% 5px 5px / 43% 43% 5px 5px; background: var(--blue); }
  .page-hero-art .art-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(21,37,31,.12) 1px, transparent 1px), linear-gradient(90deg, rgba(21,37,31,.12) 1px, transparent 1px); background-size: 30px 30px; }
  .art-desk i { position: absolute; right: 11%; bottom: 31%; left: 11%; height: 14%; border: 5px solid var(--ink); background: #b98a5c; }
  .art-desk i::before, .art-desk i::after { content: ""; position: absolute; top: 100%; width: 6%; height: 150%; border: 4px solid var(--ink); background: var(--cream); }
  .art-desk i::before { left: 5%; } .art-desk i::after { right: 5%; }
  .art-desk b { position: absolute; top: 23%; left: 37%; width: 35%; height: 30%; border: 5px solid var(--ink); border-radius: 6px; background: var(--coral); }
  .art-desk b::after { content: ""; position: absolute; top: 100%; left: 47%; width: 7%; height: 46%; background: var(--ink); }
  .art-desk em { position: absolute; top: 15%; left: 9%; width: 27%; aspect-ratio: 1; border: 3px solid var(--ink); border-radius: 50%; background: var(--lime); }
  .art-body { background: var(--coral); }
  .art-body i { position: absolute; top: 12%; left: 44%; width: 16%; aspect-ratio: 1; border: 5px solid var(--ink); border-radius: 50%; background: var(--lime); }
  .art-body b { position: absolute; top: 33%; left: 39%; width: 23%; height: 40%; border: 5px solid var(--ink); border-radius: 50% 50% 5px 5px; background: var(--violet); transform: rotate(-7deg); }
  .art-body em { position: absolute; right: 8%; bottom: 18%; width: 48%; height: 5px; background: var(--ink); transform: rotate(-13deg); }
  .art-small { background: #a8d7b5; }
  .art-small i { position: absolute; inset: 10%; border: 4px solid var(--ink); background: rgba(255,255,255,.15); }
  .art-small b { position: absolute; right: 13%; bottom: 14%; width: 52%; height: 30%; border: 4px solid var(--ink); background: var(--coral); }
  .art-small em { position: absolute; top: 14%; left: 15%; width: 28%; height: 38%; border: 4px solid var(--ink); background: var(--lime); }
  .art-light { background: #f4a08b; }
  .art-light::before { content: ""; position: absolute; top: 10%; left: 29%; width: 42%; aspect-ratio: 1; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 35px rgba(216,255,99,.25), 0 0 0 70px rgba(216,255,99,.12); }
  .art-light i { position: absolute; top: 18%; left: 38%; width: 24%; height: 20%; border: 5px solid var(--ink); border-radius: 50% 50% 5px 5px; background: var(--blue); }
  .art-light b { position: absolute; top: 38%; left: 49%; width: 6px; height: 40%; background: var(--ink); }
  .art-light em { position: absolute; right: 15%; bottom: 18%; left: 15%; height: 10%; border: 4px solid var(--ink); background: var(--cream); }
  .art-cable { background: var(--lime); }
  .art-cable::before { content: ""; position: absolute; top: 12%; left: 20%; width: 60%; height: 65%; border: 6px solid var(--ink); border-top: 0; border-radius: 0 0 50% 50%; }
  .art-cable i, .art-cable b { position: absolute; top: 6%; width: 17%; height: 18%; border: 5px solid var(--ink); border-radius: 5px; background: var(--coral); }
  .art-cable i { left: 12%; } .art-cable b { right: 12%; }
  .art-cable em { position: absolute; bottom: 8%; left: 42%; width: 16%; height: 25%; border: 5px solid var(--ink); border-radius: 5px; background: var(--blue); }
  .art-journal { background: var(--violet); }
  .art-journal i { position: absolute; top: 15%; right: 17%; bottom: 15%; left: 17%; border: 5px solid var(--ink); background: var(--cream); transform: rotate(-5deg); box-shadow: 14px 14px 0 var(--coral); }
  .art-journal i::before { content: "FIELD NOTES"; position: absolute; top: 18%; left: 12%; font-family: var(--serif); font-size: clamp(22px, 3vw, 42px); font-style: normal; }
  .art-journal b { position: absolute; z-index: 2; top: 44%; right: 27%; left: 27%; height: 2px; background: var(--ink); transform: rotate(-5deg); box-shadow: 0 25px var(--ink), 0 50px var(--ink); }
  .art-journal em { position: absolute; z-index: 3; right: 11%; bottom: 8%; width: 22%; aspect-ratio: 1; border: 4px solid var(--ink); border-radius: 50%; background: var(--lime); }
  .page-hero-art::before, .page-hero-art::after { content: none; }
  .page-hero-photo { width: 100%; height: 100%; object-fit: cover; filter: saturate(.9) contrast(1.03); }
  .art-desk .page-hero-photo { object-position: center; }
  .art-body .page-hero-photo { object-position: center 40%; }
  .art-small .page-hero-photo { object-position: center; }
  .art-light .page-hero-photo { object-position: center; }
  .art-cable .page-hero-photo { object-position: center; }
  .art-journal .page-hero-photo { object-position: center; }

  .in-page-nav { display: flex; align-items: center; justify-content: center; gap: 40px; padding-block: 21px; border-block: 1px solid var(--line); font-size: 12px; }
  .in-page-nav span { font-family: var(--mono); font-size: 9px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
  .in-page-nav a { border-bottom: 1px solid transparent; font-weight: 660; }
  .in-page-nav a:hover { border-color: var(--ink); }
  .content-section { display: grid; grid-template-columns: 180px 1fr; gap: 65px; padding-block: 115px; scroll-margin-top: 90px; }
  .content-tint, .content-dark { max-width: none; width: 100%; }
  .content-section.content-tint, .content-section.content-dark { display: block; }
  .content-inner { display: grid; grid-template-columns: 180px 1fr; gap: 65px; }
  .content-tint { background: var(--paper-deep); }
  .content-dark { color: var(--cream); background: var(--ink); }
  .content-index { padding-top: 15px; font-family: var(--mono); font-size: 9px; font-weight: 700; letter-spacing: .14em; }
  .content-main { max-width: 960px; }
  .content-main > h2 { margin-bottom: 28px; font-family: var(--serif); font-size: clamp(48px, 5.5vw, 75px); font-weight: 400; letter-spacing: -.05em; line-height: .96; }
  .content-main .lead { max-width: 830px; margin-bottom: 50px; color: var(--ink-soft); font-size: 21px; line-height: 1.6; }
  .content-dark .lead { color: rgba(255,250,240,.66); }
  .dimension-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
  .dimension-grid article { padding: 28px 23px; border: 1px solid var(--ink); border-radius: 3px; background: var(--cream); }
  .dimension-grid article.featured { background: var(--lime); transform: translateY(-10px); box-shadow: 6px 7px 0 var(--ink); }
  .dimension-grid strong { font-family: var(--serif); font-size: clamp(38px, 4vw, 54px); font-weight: 400; letter-spacing: -.04em; }
  .dimension-grid > article > span { margin-left: 5px; font-family: var(--mono); font-size: 9px; }
  .dimension-grid h3 { margin: 23px 0 7px; font-size: 14px; }
  .dimension-grid p { color: var(--ink-soft); font-size: 12px; }
  .rule-card { margin-top: 30px; padding: 25px 28px; border-left: 5px solid var(--coral); background: var(--cream); }
  .rule-card.lime { border-color: var(--lime); background: var(--paper-deep); }
  .rule-card span { font-family: var(--mono); font-size: 9px; font-weight: 700; letter-spacing: .15em; }
  .rule-card p { max-width: 780px; margin-top: 8px; font-size: 14px; }
  .two-col-copy { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin-bottom: 38px; }
  .two-col-copy h3 { margin-bottom: 12px; font-family: var(--serif); font-size: 30px; font-weight: 400; }
  .two-col-copy p { color: var(--ink-soft); font-size: 14px; }
  .material-list { border-top: 1px solid var(--line); }
  .material-list article { display: grid; grid-template-columns: 100px 1fr; gap: 30px; align-items: center; padding-block: 24px; border-bottom: 1px solid var(--line); }
  .material-swatch { width: 100px; height: 75px; border: 1px solid var(--ink); border-radius: 2px; }
  .material-swatch.oak { background: repeating-linear-gradient(7deg, transparent 0 13px, rgba(65,35,15,.2) 14px 15px), #bc8a58; }
  .material-swatch.laminate { background: #f5f1e8; }
  .material-swatch.linoleum { background: #819c83; }
  .material-list h3 { font-family: var(--serif); font-size: 28px; font-weight: 400; }
  .material-list p { max-width: 650px; color: var(--ink-soft); font-size: 13px; }
  .large-checks { list-style: none; border-top: 1px solid rgba(255,255,255,.2); }
  .large-checks li { display: grid; grid-template-columns: 55px 1fr; gap: 20px; padding-block: 22px; border-bottom: 1px solid rgba(255,255,255,.2); font-family: var(--serif); font-size: 24px; line-height: 1.25; }
  .large-checks span { font-family: var(--mono); font-size: 9px; }
  .large-checks.dark { border-color: var(--line); }
  .large-checks.dark li { border-color: var(--line); }

  .numbered-guide { list-style: none; }
  .numbered-guide li { display: grid; grid-template-columns: 60px 1fr; gap: 25px; padding-block: 24px; border-top: 1px solid var(--line); }
  .numbered-guide > li > span { display: grid; width: 42px; height: 42px; place-items: center; border: 1px solid var(--ink); border-radius: 50%; font-family: var(--mono); font-size: 11px; }
  .numbered-guide h3 { margin-bottom: 6px; font-family: var(--serif); font-size: 29px; font-weight: 400; }
  .numbered-guide p { color: var(--ink-soft); font-size: 14px; }
  .ergonomic-diagram { padding-block: 100px; color: var(--cream); background: var(--ink); }
  .diagram-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 100px; align-items: center; }
  .diagram-copy h2 { margin: 25px 0; font-family: var(--serif); font-size: 70px; font-weight: 400; letter-spacing: -.05em; line-height: .95; }
  .diagram-copy > p:last-child { max-width: 420px; color: rgba(255,250,240,.6); }
  .body-diagram { position: relative; height: 500px; border: 1px solid rgba(255,255,255,.2); background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px); background-size: 30px 30px; }
  .figure-head { position: absolute; top: 75px; left: 210px; width: 65px; height: 65px; border: 5px solid var(--cream); border-radius: 50%; background: var(--coral); }
  .figure-body { position: absolute; top: 138px; left: 215px; width: 60px; height: 155px; border: 5px solid var(--cream); border-radius: 30px; background: var(--violet); transform: rotate(-8deg); transform-origin: top; }
  .figure-arm { position: absolute; top: 168px; left: 255px; width: 150px; height: 100px; border: solid var(--cream); border-width: 0 0 6px 6px; transform: skewY(20deg); }
  .figure-leg { position: absolute; top: 277px; left: 245px; width: 160px; height: 145px; border: solid var(--cream); border-width: 6px 0 0 6px; }
  .diagram-chair { position: absolute; top: 277px; left: 174px; width: 135px; height: 22px; background: var(--blue); box-shadow: -10px -110px 0 -3px var(--blue); }
  .diagram-desk { position: absolute; top: 260px; right: 35px; width: 250px; height: 14px; background: var(--lime); box-shadow: 175px 0 0 -3px var(--lime); }
  .diagram-screen { position: absolute; top: 103px; right: 85px; width: 135px; height: 100px; border: 6px solid var(--cream); background: var(--blue); }
  .body-diagram { overflow: hidden; background: #26372f; }
  .body-photo { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; filter: saturate(.8) brightness(.78); }
  .angle { position: absolute; z-index: 3; padding: 6px 9px; border: 1px solid var(--lime); border-radius: 20px; color: var(--lime); font-family: var(--mono); font-size: 9px; }
  .angle-one { top: 28px; right: 28px; left: auto; background: rgba(21,37,31,.78); }
  .angle-two { right: 28px; bottom: 28px; left: auto; background: rgba(21,37,31,.78); }
  .habit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .habit-grid article { padding: 27px; border: 1px solid var(--ink); background: var(--cream); }
  .habit-grid strong { font-family: var(--serif); font-size: 54px; font-weight: 400; letter-spacing: -.05em; }
  .habit-grid span { display: block; margin-top: -10px; font-family: var(--mono); font-size: 8px; text-transform: uppercase; }
  .habit-grid p { margin-top: 20px; color: var(--ink-soft); font-size: 12px; }
  .fine-print { margin-top: 26px; color: var(--ink-soft); font-size: 11px; }
  .tip-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .tip-grid article { padding: 27px; border: 1px solid var(--line); background: var(--cream); }
  .tip-grid article > span { font-family: var(--serif); font-size: 35px; }
  .tip-grid h3 { margin: 12px 0 7px; font-family: var(--serif); font-size: 28px; font-weight: 400; }
  .tip-grid p { color: var(--ink-soft); font-size: 12px; }
  .layout-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .layout-cards article { padding: 18px; border: 1px solid var(--ink); background: var(--cream); }
  .mini-plan { position: relative; height: 190px; margin-bottom: 22px; background: var(--blue); }
  .mini-plan::before { content: ""; position: absolute; inset: 18px; border: 2px solid var(--ink); }
  .mini-plan i { position: absolute; right: 25px; bottom: 26px; width: 60%; height: 28%; border: 3px solid var(--ink); background: var(--coral); }
  .mini-plan b { position: absolute; top: 27px; left: 28px; width: 24%; height: 38%; border: 3px solid var(--ink); background: var(--lime); }
  .mini-plan em { position: absolute; right: 21%; bottom: 15%; width: 20%; aspect-ratio: 1; border: 3px solid var(--ink); border-radius: 50%; background: var(--violet); }
  .plan-bedroom { background: #e6c7b8; }
  .plan-living { background: #a8d7b5; }
  img.mini-plan { width: 100%; height: 190px; object-fit: cover; }
  img.plan-alcove { object-position: center; }
  img.plan-bedroom { object-position: center 60%; }
  img.plan-living { object-position: center; }
  .layout-cards h3 { font-family: var(--serif); font-size: 26px; font-weight: 400; }
  .layout-cards p { margin-top: 6px; color: var(--ink-soft); font-size: 12px; }
  .quote-block { margin: 40px 0; padding: 40px; border: 1px solid var(--ink); background: var(--lime); }
  .quote-block p { font-family: var(--serif); font-size: clamp(28px, 3.5vw, 45px); font-style: italic; line-height: 1.15; }
  .do-dont { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
  .do-dont article { padding: 30px; border: 1px solid var(--ink); }
  .do-dont .do { background: #a8d7b5; }
  .do-dont .dont { background: #f4a08b; }
  .do-dont span { font-family: var(--mono); font-size: 9px; font-weight: 700; letter-spacing: .12em; }
  .do-dont h3 { margin: 30px 0 8px; font-family: var(--serif); font-size: 30px; font-weight: 400; }
  .do-dont p { font-size: 13px; }
  .light-layers article { display: grid; grid-template-columns: 90px 1fr; gap: 30px; padding-block: 28px; border-top: 1px solid rgba(255,255,255,.2); }
  .light-layers > article > span { display: grid; width: 52px; height: 52px; place-items: center; border: 1px solid var(--lime); border-radius: 50%; color: var(--lime); font-family: var(--mono); font-size: 10px; }
  .light-layers h3 { font-family: var(--serif); font-size: 32px; font-weight: 400; }
  .light-layers p { color: rgba(255,250,240,.6); font-size: 13px; }
  .cable-flow { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr; align-items: center; gap: 12px; margin-block: 45px; }
  .cable-flow div { padding: 25px 10px; border: 1px solid var(--ink); background: var(--cream); text-align: center; font-family: var(--mono); font-size: 10px; font-weight: 700; text-transform: uppercase; }
  .cable-flow span { font-size: 25px; }
  .tool-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 35px; }
  .tool-row span { padding: 8px 14px; border: 1px solid var(--ink); border-radius: 50px; background: var(--cream); font-family: var(--mono); font-size: 9px; font-weight: 700; text-transform: uppercase; }

  /* Configurator */
  .config-main { padding-bottom: 120px; }
  .config-intro { display: grid; grid-template-columns: 1.2fr .8fr; align-items: end; gap: 80px; padding-block: 65px 55px; }
  .config-intro h1 { margin-top: 20px; font-family: var(--serif); font-size: clamp(62px, 8vw, 105px); font-weight: 400; letter-spacing: -.065em; line-height: .83; }
  .config-intro > p { max-width: 460px; padding-bottom: 4px; color: var(--ink-soft); font-size: 18px; }
  .config-shell { border: 1px solid var(--ink); background: var(--cream); box-shadow: 9px 11px 0 var(--ink); }
  .config-progress { padding: 20px 28px 16px; border-bottom: 1px solid var(--ink); }
  .progress-track { height: 3px; margin-bottom: 14px; overflow: hidden; background: var(--paper-deep); }
  .progress-track span { display: block; width: 20%; height: 100%; background: var(--coral); transition: width .4s ease; }
  .config-progress ol { display: flex; justify-content: space-between; list-style: none; }
  .config-progress li { display: flex; align-items: center; gap: 7px; color: #69736e; font-family: var(--mono); font-size: 8px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; transition: color .2s; }
  .config-progress li span { display: grid; width: 19px; height: 19px; place-items: center; border: 1px solid currentColor; border-radius: 50%; font-size: 7px; }
  .config-progress li.is-active, .config-progress li.is-done { color: var(--ink); }
  .config-progress li.is-done span { border-color: var(--coral); background: var(--coral); }
  .config-layout { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(400px, .92fr); min-height: 720px; }
  .config-form { display: flex; flex-direction: column; min-width: 0; padding: clamp(35px, 5vw, 65px); }
  .config-step { flex: 1; animation: fade-step .35s ease; }
  @keyframes fade-step { from { opacity: 0; transform: translateX(10px); } }
  .step-count { margin-bottom: 13px; color: var(--coral-ink); font-family: var(--mono); font-size: 9px; font-weight: 700; letter-spacing: .13em; }
  .config-step > h2 { max-width: 650px; font-family: var(--serif); font-size: clamp(40px, 4vw, 57px); font-weight: 400; letter-spacing: -.045em; line-height: 1; }
  .config-step > h2 { scroll-margin-top: calc(var(--header-h) + 22px); }
  .step-help { max-width: 630px; margin: 16px 0 32px; color: var(--ink-soft); font-size: 13px; }
  fieldset { min-width: 0; margin: 0; padding: 0; border: 0; }
  fieldset > legend { margin-bottom: 12px; font-size: 12px; font-weight: 720; }
  .choice-grid { display: grid; gap: 12px; }
  .choice-grid-3 { grid-template-columns: repeat(3, 1fr); }
  .choice-grid-2 { grid-template-columns: repeat(2, 1fr); }
  .choice-card { position: relative; min-width: 0; display: flex; flex-direction: column; padding: 18px; border: 1px solid var(--line); border-radius: 4px; background: var(--cream); cursor: pointer; transition: border-color .2s, background .2s, box-shadow .2s, transform .2s; }
  .choice-card:hover { border-color: var(--ink); transform: translateY(-2px); }
  .choice-card:has(input:checked) { border-color: var(--ink); background: #f5ffd7; box-shadow: inset 0 0 0 1px var(--ink); }
  .choice-card input { position: absolute; top: 13px; right: 13px; width: 16px; height: 16px; accent-color: var(--coral); }
  .choice-card strong { font-family: var(--serif); font-size: 19px; font-weight: 400; line-height: 1.2; }
  .choice-card small { margin-top: 5px; color: var(--ink-soft); font-size: 9px; }
  .choice-icon { position: relative; height: 62px; margin: 9px 0 16px; }
  .choice-icon::before { content: ""; position: absolute; inset: 5px 9px; border: 1px solid var(--ink); }
  .choice-icon i { position: absolute; right: 15px; bottom: 10px; width: 55%; height: 19px; border: 2px solid var(--ink); background: var(--coral); }
  .choice-icon b { position: absolute; bottom: 11px; left: 15px; width: 17px; height: 17px; border: 2px solid var(--ink); border-radius: 50%; background: var(--blue); }
  .icon-standard i { width: 68%; }
  .icon-generous i { width: 79%; height: 25px; }
  .range-field { display: block; margin-top: 30px; }
  .range-field > span { display: flex; justify-content: space-between; margin-bottom: 8px; font-size: 11px; }
  .range-field output { font-family: var(--mono); font-size: 10px; font-weight: 700; }
  .range-field input { width: 100%; height: 4px; appearance: none; border-radius: 10px; background: linear-gradient(90deg, var(--coral) 0 var(--range-progress, 22%), var(--paper-deep) var(--range-progress, 22%)); }
  .range-field input::-webkit-slider-thumb { width: 20px; height: 20px; appearance: none; border: 2px solid var(--ink); border-radius: 50%; background: var(--lime); cursor: grab; }
  .range-field input::-moz-range-thumb { width: 17px; height: 17px; border: 2px solid var(--ink); border-radius: 50%; background: var(--lime); cursor: grab; }
  .range-field small { display: flex; justify-content: space-between; margin-top: 8px; color: var(--ink-soft); font-family: var(--mono); font-size: 8px; }
  .range-large { margin-block: 35px 40px; }
  .range-large > span { font-size: 14px; }
  .range-large output { color: var(--coral-ink); font-size: 20px; }
  .compact-choices { margin-bottom: 25px; }
  .choice-row { min-height: 76px; flex-direction: row; align-items: center; justify-content: space-between; padding: 14px 18px; }
  .choice-row input { top: 50%; right: auto; left: 15px; transform: translateY(-50%); }
  .choice-row > span { padding-left: 27px; }
  .choice-row > b { color: var(--coral-ink); font-family: var(--serif); font-size: 24px; font-weight: 400; }
  .segmented-field { display: grid; grid-template-columns: repeat(4, 1fr); }
  .segmented-field legend { grid-column: 1 / -1; }
  .segmented-field label { position: relative; }
  .segmented-field input { position: absolute; opacity: 0; }
  .segmented-field span { display: grid; min-height: 43px; place-items: center; border: 1px solid var(--line); font-size: 10px; font-weight: 650; cursor: pointer; }
  .segmented-field label + label span { border-left: 0; }
  .segmented-field input:checked + span { color: var(--cream); background: var(--ink); }
  .segmented-field input:focus-visible + span { outline: 3px solid var(--blue); outline-offset: 3px; }
  .posture-grid .choice-card { text-align: center; }
  .posture-icon { position: relative; height: 70px; margin-block: 6px 17px; }
  .posture-icon i { position: absolute; top: 0; left: calc(50% - 10px); width: 20px; height: 20px; border: 2px solid var(--ink); border-radius: 50%; background: var(--coral); }
  .posture-icon b { position: absolute; top: 21px; left: calc(50% - 2px); width: 4px; height: 40px; background: var(--ink); box-shadow: 11px 21px 0 -1px var(--ink), -11px 21px 0 -1px var(--ink); }
  .posture-icon.seated b { height: 31px; transform: rotate(12deg); }
  .posture-icon.seated::after { content: ""; position: absolute; top: 45px; left: calc(50% - 3px); width: 35px; height: 4px; background: var(--ink); transform: rotate(15deg); }
  .posture-icon.hybrid::after { content: "↕"; position: absolute; right: 20%; bottom: 5px; color: var(--coral-ink); font-size: 25px; }
  .finish-field { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
  .finish-field legend { grid-column: 1 / -1; }
  .finish-field label { position: relative; cursor: pointer; }
  .finish-field input { position: absolute; top: 8px; right: 8px; width: 15px; height: 15px; accent-color: var(--coral); }
  .finish-field strong { display: block; margin-top: 6px; font-family: var(--serif); font-size: 15px; font-weight: 400; }
  .swatch { display: block; height: 66px; border: 1px solid var(--line); }
  input:checked + .swatch { border: 3px solid var(--ink); }
  .swatch-oak { background: repeating-linear-gradient(8deg, transparent 0 12px, rgba(85,49,25,.16) 13px 14px), #b98552; }
  .swatch-white { background: #f7f4eb; }
  .swatch-dark { background: #26302d; }
  .swatch-color { background: var(--coral); }
  .budget-field { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 32px; }
  .budget-field legend { grid-column: 1 / -1; }
  .budget-field label { position: relative; padding: 16px; border: 1px solid var(--line); cursor: pointer; }
  .budget-field label:has(input:checked) { border: 2px solid var(--ink); background: #f5ffd7; }
  .budget-field input { position: absolute; top: 17px; right: 13px; accent-color: var(--coral); }
  .budget-field strong, .budget-field small { display: block; }
  .budget-field strong { padding-right: 20px; font-family: var(--serif); font-size: 16px; font-weight: 400; }
  .budget-field small { margin-top: 4px; color: var(--ink-soft); font-family: var(--mono); font-size: 8px; }
  .config-nav { display: flex; align-items: center; gap: 28px; margin-top: 38px; padding-top: 22px; border-top: 1px solid var(--line); }
  .config-nav .button { margin-left: auto; }
  .reset-button { margin-left: 0; }
  .config-preview { min-width: 0; display: flex; flex-direction: column; padding: 24px; border-left: 1px solid var(--ink); background: var(--paper-deep); }
  .preview-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 15px; font-family: var(--mono); font-size: 8px; letter-spacing: .1em; }
  .preview-top span { display: flex; align-items: center; gap: 7px; }
  .preview-top span::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--coral); animation: pulse 2s infinite; }
  @keyframes pulse { 50% { opacity: .35; } }
  .preview-top b { font-weight: 600; }
  .preview-toggle { display: none; padding: 3px 0; border-bottom: 1px solid currentColor; background: none; font-family: var(--mono); font-size: 8px; font-weight: 700; text-transform: uppercase; }
  .desk-blueprint { position: relative; flex: 1; min-height: 560px; overflow: hidden; border: 1px solid var(--ink); background: #a69b88; }
  .config-desk-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: opacity .2s ease, transform .5s ease; }
  .config-photo-shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(21,37,31,.23), transparent 28%, transparent 62%, rgba(21,37,31,.5)); pointer-events: none; }
  .preview-chip { position: absolute; top: 18px; right: 18px; padding: 7px 10px; border: 1px solid var(--ink); border-radius: 20px; background: var(--lime); font-family: var(--mono); font-size: 8px; font-weight: 700; letter-spacing: .08em; }
  .photo-measure { position: absolute; right: 18px; bottom: 18px; left: 18px; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 11px 13px; color: var(--cream); border: 1px solid rgba(255,255,255,.55); background: rgba(21,37,31,.76); backdrop-filter: blur(10px); font-family: var(--mono); letter-spacing: .08em; }
  .photo-measure span { font-size: 7px; }
  .photo-measure b { font-size: 10px; }
  .preview-note { margin-top: 12px; color: var(--ink-soft); font-size: 9px; text-align: center; }
  .noscript { padding: 15px; border-bottom: 1px solid var(--ink); background: var(--coral); font-weight: 650; text-align: center; }
  .noscript a { text-decoration: underline; }
  .result-heading { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding-bottom: 28px; border-bottom: 1px solid var(--line); }
  .result-heading h2 { font-family: var(--serif); font-size: clamp(45px, 4.5vw, 65px); font-weight: 400; letter-spacing: -.05em; line-height: 1; }
  .result-heading h2 span { color: var(--coral-ink); font-style: italic; }
  .result-heading p { max-width: 490px; margin-top: 12px; color: var(--ink-soft); font-size: 13px; }
  .result-score { flex: 0 0 auto; display: flex; align-items: center; gap: 9px; }
  .result-score strong { font-family: var(--serif); font-size: 64px; font-weight: 400; letter-spacing: -.08em; }
  .result-score span { font-family: var(--mono); font-size: 7px; font-weight: 700; text-transform: uppercase; }
  .result-specs { display: grid; grid-template-columns: 1fr 1fr; margin-block: 25px; border-block: 1px solid var(--line); }
  .result-specs div { padding: 16px 0; }
  .result-specs div:nth-child(odd) { border-right: 1px solid var(--line); }
  .result-specs div:nth-child(even) { padding-left: 24px; }
  .result-specs div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .result-specs span, .result-specs strong { display: block; }
  .result-specs span { margin-bottom: 3px; color: var(--ink-soft); font-family: var(--mono); font-size: 8px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; }
  .result-specs strong { font-family: var(--serif); font-size: 20px; font-weight: 400; }
  .priority-list h3 { margin-bottom: 11px; font-size: 12px; }
  .priority-list ol { list-style: none; counter-reset: priority; }
  .priority-list li { counter-increment: priority; position: relative; padding: 8px 0 8px 34px; border-top: 1px solid var(--line); color: var(--ink-soft); font-size: 11px; }
  .priority-list li::before { content: "0" counter(priority); position: absolute; left: 0; color: var(--coral-ink); font-family: var(--mono); font-size: 8px; font-weight: 700; }
  .result-actions { display: flex; align-items: center; gap: 25px; margin-top: 22px; }
  .share-status { min-height: 20px; margin-top: 10px; color: #347044; font-size: 10px; }

  /* Journal */
  .journal-feature { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(50px, 8vw, 110px); align-items: center; padding-block: 90px 120px; border-top: 1px solid var(--line); }
  .journal-feature-art { position: relative; height: 520px; border: 1px solid var(--ink); background: var(--coral); }
  img.journal-feature-art { width: 100%; object-fit: cover; object-position: center 38%; filter: saturate(.86); }
  .journal-feature-art::before { content: ""; position: absolute; inset: 11%; border: 2px solid var(--ink); border-radius: 50%; background: var(--lime); }
  .height-ruler { position: absolute; z-index: 2; top: 11%; right: 16%; bottom: 11%; width: 27%; border-left: 3px solid var(--ink); background: var(--blue); }
  .height-ruler::before { content: ""; position: absolute; inset: 0; background: repeating-linear-gradient(to bottom, var(--ink) 0 1px, transparent 1px 18px); opacity: .5; }
  .height-ruler span { position: absolute; z-index: 2; left: 20px; font-family: var(--mono); font-size: 9px; }
  .height-ruler span:nth-child(1) { top: 4%; }.height-ruler span:nth-child(2) { top: 47%; }.height-ruler span:nth-child(3) { bottom: 4%; }
  .height-ruler i { position: absolute; z-index: 3; top: 44%; left: -85px; width: 160px; height: 4px; background: var(--ink); transform: rotate(-8deg); }
  .journal-feature h2 { margin: 24px 0; font-family: var(--serif); font-size: clamp(50px, 6vw, 80px); font-weight: 400; letter-spacing: -.055em; line-height: .95; }
  .journal-feature h2 a:hover { color: var(--coral-ink); }
  .journal-feature > div > p:not(.eyebrow) { max-width: 480px; color: var(--ink-soft); }
  .journal-feature .text-link { margin-top: 30px; }
  .journal-list { border-top: 1px solid var(--line); }
  .article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 65px 22px; }
  .article-thumb { position: relative; height: 270px; display: block; overflow: hidden; border: 1px solid var(--ink); margin-bottom: 18px; }
  img.article-thumb { width: 100%; object-fit: cover; filter: saturate(.88); transition: transform .45s ease, filter .45s ease; }
  .article-grid article:hover img.article-thumb { transform: scale(1.025); filter: saturate(1); }
  img.thumb-checklist { object-position: center; }
  img.thumb-small { object-position: center; }
  img.thumb-light { object-position: center 55%; }
  img.thumb-cable { object-position: center; }
  img.thumb-desk { object-position: center; }
  .article-thumb::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(21,37,31,.1) 1px, transparent 1px), linear-gradient(90deg, rgba(21,37,31,.1) 1px, transparent 1px); background-size: 24px 24px; }
  .thumb-checklist { background: var(--lime); }
  .thumb-checklist i { position: absolute; top: 15%; right: 20%; bottom: 15%; left: 20%; border: 3px solid var(--ink); background: var(--cream); transform: rotate(-5deg); box-shadow: 8px 8px 0 var(--ink); }
  .thumb-checklist b { position: absolute; z-index: 2; top: 34%; right: 30%; left: 30%; height: 2px; background: var(--ink); box-shadow: 0 33px var(--ink), 0 66px var(--ink), 0 99px var(--ink); }
  .thumb-small { background: #a8d7b5; }.thumb-small i { position: absolute; right: 10%; bottom: 10%; left: 10%; height: 30%; border: 3px solid var(--ink); background: var(--coral); }.thumb-small b { position: absolute; top: 12%; left: 14%; width: 30%; height: 45%; border: 3px solid var(--ink); background: var(--blue); }
  .thumb-light { background: var(--coral); }.thumb-light i { position: absolute; top: 15%; left: 38%; width: 25%; aspect-ratio: 1; border: 3px solid var(--ink); border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 25px rgba(216,255,99,.28); }.thumb-light b { position: absolute; top: 40%; left: 50%; width: 4px; height: 45%; background: var(--ink); }
  .thumb-cable { background: var(--blue); }.thumb-cable i { position: absolute; top: 12%; left: 22%; width: 56%; height: 65%; border: 5px solid var(--ink); border-top: 0; border-radius: 0 0 50% 50%; }.thumb-cable b { position: absolute; top: 8%; left: 13%; width: 22%; height: 22%; border: 3px solid var(--ink); background: var(--lime); }
  .thumb-desk { background: var(--violet); }.thumb-desk i { position: absolute; right: 12%; bottom: 29%; left: 12%; height: 16%; border: 4px solid var(--ink); background: #b98653; }.thumb-desk b { position: absolute; top: 20%; left: 39%; width: 30%; height: 33%; border: 4px solid var(--ink); background: var(--coral); }
  .article-grid > article > p, .article-config > p { margin-bottom: 8px; font-family: var(--mono); font-size: 8px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
  .article-grid h3 { font-family: var(--serif); font-size: 29px; font-weight: 400; letter-spacing: -.03em; line-height: 1.1; }
  .article-grid h3 a:hover { color: var(--coral-ink); }
  .article-config { min-height: 354px; display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-end; padding: 28px; border: 1px solid var(--ink); background: var(--coral); }
  .article-config h3 { margin-bottom: 28px; font-size: 36px; }

  .article-header { max-width: 1040px; padding-block: 95px 70px; }
  .article-header h1 { margin: 25px 0 28px; font-family: var(--serif); font-size: clamp(66px, 9.2vw, 126px); font-weight: 400; letter-spacing: -.07em; line-height: .84; }
  .article-header > p:not(.eyebrow) { max-width: 740px; color: var(--ink-soft); font-size: 21px; }
  .article-meta { display: flex; gap: 30px; margin-top: 40px; font-family: var(--mono); font-size: 8px; font-weight: 700; letter-spacing: .1em; }
  .article-meta time { color: var(--ink-soft); }
  .article-cover { position: relative; width: min(100% - 48px, 1280px); height: auto; aspect-ratio: 1200 / 630; margin: 0 auto 90px; overflow: hidden; border: 1px solid var(--ink); background: var(--blue); }
  .article-cover img { width: 100%; height: 100%; object-fit: cover; }
  .cover-lines { position: absolute; inset: 0; background-image: linear-gradient(rgba(21,37,31,.12) 1px, transparent 1px), linear-gradient(90deg, rgba(21,37,31,.12) 1px, transparent 1px); background-size: 35px 35px; }
  .article-cover > span { position: absolute; top: 12%; left: 10%; font-family: var(--mono); font-size: 12px; font-weight: 700; letter-spacing: .18em; }
  .article-cover i { position: absolute; top: 13%; left: 37%; width: 30%; aspect-ratio: 1; border: 6px solid var(--ink); border-radius: 50%; background: var(--lime); box-shadow: 16px 16px 0 var(--coral); }
  .article-cover b { position: absolute; right: 10%; bottom: 12%; width: 33%; height: 17%; border: 5px solid var(--ink); background: #b98653; transform: rotate(-7deg); }
  .article-body { max-width: 780px; padding-bottom: 60px; }
  .article-body > *:not(.article-cta) { max-width: 720px; }
  .article-body p, .article-body li { color: var(--ink-soft); font-size: 17px; line-height: 1.8; }
  .article-body .article-lead { color: var(--ink); font-family: var(--serif); font-size: 30px; line-height: 1.35; }
  .article-body h2 { margin: 70px 0 18px; font-family: var(--serif); font-size: 48px; font-weight: 400; letter-spacing: -.04em; line-height: 1; scroll-margin-top: 100px; }
  .article-body p + p { margin-top: 22px; }
  .article-body ul { margin: 22px 0 30px; padding-left: 22px; }
  .article-body li + li { margin-top: 8px; }
  .article-body aside { margin: 45px 0; padding: 30px 35px; border: 1px solid var(--ink); background: var(--lime); }
  .article-body aside strong { font-family: var(--mono); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }
  .article-body aside p { margin-top: 10px; color: var(--ink); font-size: 15px; }
  .article-body .article-cta { margin-inline: calc((780px - min(100vw - 48px, 1050px)) / 2); }

  /* About */
  .about-hero { padding-block: 100px 120px; }
  .about-hero h1 { max-width: 1100px; margin: 28px 0 60px; font-family: var(--serif); font-size: clamp(68px, 9vw, 125px); font-weight: 400; letter-spacing: -.065em; line-height: .87; }
  .about-intro { display: flex; align-items: center; justify-content: space-between; gap: 50px; margin-left: 35%; }
  .about-intro p { max-width: 580px; color: var(--ink-soft); font-size: 21px; }
  .about-intro > span { display: grid; flex: 0 0 auto; width: 90px; height: 90px; place-items: center; border: 1px solid var(--ink); border-radius: 50%; background: var(--lime); }
  .about-intro svg { width: 35px; fill: none; stroke: var(--ink); }
  .manifesto { padding-block: 120px; color: var(--cream); background: var(--ink); }
  .manifesto-grid { display: grid; grid-template-columns: .45fr 1fr; gap: 90px; }
  .manifesto-mark { display: grid; width: 170px; aspect-ratio: 1; place-items: center; border: 1px solid var(--cream); border-radius: 50%; color: var(--lime); font-family: var(--serif); font-size: 48px; font-style: italic; }
  .manifesto h2 { margin-bottom: 45px; font-family: var(--mono); font-size: 10px; letter-spacing: .15em; text-transform: uppercase; }
  .manifesto-lead { max-width: 780px; margin-bottom: 38px; font-family: var(--serif); font-size: clamp(40px, 5vw, 65px); line-height: 1.1; }
  .manifesto p:not(.manifesto-lead) { max-width: 690px; color: rgba(255,250,240,.62); font-size: 16px; }
  .manifesto p + p { margin-top: 18px; }
  .principle-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-block: 1px solid var(--ink); }
  .principle-grid article { padding: 35px; }
  .principle-grid article + article { border-left: 1px solid var(--ink); }
  .principle-grid span { font-family: var(--mono); font-size: 9px; }
  .principle-grid h3 { margin: 55px 0 16px; font-family: var(--serif); font-size: 40px; font-weight: 400; letter-spacing: -.035em; }
  .principle-grid p { max-width: 300px; color: var(--ink-soft); font-size: 13px; }
  .about-contact { padding-block: 100px; color: var(--ink); background: var(--coral); }
  .about-contact .eyebrow-light { color: var(--ink); }
  .about-contact h2 { margin: 25px 0 30px; font-family: var(--serif); font-size: clamp(55px, 7vw, 95px); font-weight: 400; letter-spacing: -.055em; line-height: .95; }
  .about-contact a { border-bottom: 1px solid currentColor; font-family: var(--mono); font-size: 13px; }

  /* Legal notice */
  .legal-hero { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(50px, 8vw, 120px); align-items: end; padding-block: 100px 115px; }
  .legal-hero h1 { margin-top: 28px; font-family: var(--serif); font-size: clamp(72px, 9vw, 126px); font-weight: 400; letter-spacing: -.07em; line-height: .82; }
  .legal-hero-intro { padding-bottom: 8px; }
  .legal-hero-intro > p { max-width: 550px; color: var(--ink-soft); font-size: 20px; line-height: 1.55; }
  .legal-hero-intro > span { display: block; margin-top: 28px; font-family: var(--mono); font-size: 8px; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
  .legal-layout { display: grid; grid-template-columns: 210px minmax(0, 790px); gap: clamp(55px, 9vw, 130px); align-items: start; justify-content: center; padding-bottom: 130px; }
  .legal-nav { position: sticky; top: calc(var(--header-h) + 28px); display: flex; flex-direction: column; align-items: flex-start; gap: 12px; padding-top: 30px; border-top: 1px solid var(--ink); }
  .legal-nav p { margin-bottom: 7px; font-family: var(--mono); font-size: 8px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
  .legal-nav a { color: var(--ink-soft); font-size: 12px; }
  .legal-nav a:hover { color: var(--ink); }
  .legal-section { padding-block: 68px; border-top: 1px solid var(--line); scroll-margin-top: calc(var(--header-h) + 25px); }
  .legal-section:first-child { border-color: var(--ink); }
  .legal-section-label { margin-bottom: 24px; color: var(--ink-soft); font-family: var(--mono); font-size: 8px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
  .legal-section h2 { margin-bottom: 28px; font-family: var(--serif); font-size: clamp(45px, 5vw, 65px); font-weight: 400; letter-spacing: -.045em; line-height: 1; }
  .legal-section h3 { margin: 45px 0 14px; font-family: var(--serif); font-size: 30px; font-weight: 400; letter-spacing: -.025em; }
  .legal-section p, .legal-section address { color: var(--ink-soft); font-size: 16px; line-height: 1.75; }
  .legal-section p + p { margin-top: 20px; }
  .legal-section address { margin-top: 22px; font-style: normal; }
  .legal-section a { border-bottom: 1px solid currentColor; color: var(--ink); }
  .legal-details { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 28px; border: 1px solid var(--line); background: var(--line); }
  .legal-details div { min-width: 0; padding: 20px; background: var(--cream); }
  .legal-details dt { margin-bottom: 7px; font-family: var(--mono); font-size: 8px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
  .legal-details dd { overflow-wrap: anywhere; color: var(--ink-soft); font-size: 12px; }
  .legal-note { margin-top: 42px; padding: 25px 28px; border-left: 5px solid var(--coral); background: var(--paper-deep); }
  .legal-note strong { font-family: var(--mono); font-size: 8px; letter-spacing: .12em; text-transform: uppercase; }
  .legal-note p { margin-top: 8px; font-size: 14px; }

  /* 404 */
  .not-found { min-height: calc(100vh - var(--header-h)); display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 80px; padding-block: 70px; }
  .not-found h1 { margin: 20px 0; font-family: var(--serif); font-size: clamp(70px, 10vw, 140px); font-weight: 400; letter-spacing: -.08em; line-height: .8; }
  .not-found-copy > p:not(.eyebrow) { max-width: 500px; margin-bottom: 30px; color: var(--ink-soft); font-size: 18px; }
  .not-found-art { position: relative; aspect-ratio: 1; border: 1px solid var(--ink); border-radius: 50%; background: var(--coral); }
  .not-found-art span { position: absolute; inset: 23%; display: grid; place-items: center; border: 5px solid var(--ink); border-radius: 50%; background: var(--lime); font-family: var(--serif); font-size: 90px; }
}

@layer responsive {
  @media (max-width: 1100px) {
    .hero { grid-template-columns: .9fr 1.1fr; gap: 30px; }
    .hero-visual { min-height: 560px; }
    .desk-scene { min-height: 550px; }
    .hero-copy h1 { font-size: clamp(60px, 7vw, 85px); }
    .page-hero { gap: 50px; }
    .config-layout { grid-template-columns: 1fr .78fr; }
    .config-form { padding: 40px 34px; }
    .choice-grid-3 { gap: 8px; }
    .choice-card { padding: 14px; }
    .desk-blueprint { min-height: 520px; }
    .footer-grid { grid-template-columns: 1.8fr 1fr 1fr; }
    .footer-grid > div:last-child { grid-column: 2 / 4; }
  }

  @media (max-width: 900px) {
    :root { --header-h: 72px; }
    .shell { width: min(100% - 32px, 1280px); }
    .nav-toggle { display: block; }
    .site-nav { position: absolute; top: var(--header-h); right: 0; left: 0; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 12px 16px 22px; border-bottom: 1px solid var(--ink); background: var(--paper); }
    .site-nav.is-open { display: flex; }
    .site-nav > a:not(.button) { padding: 14px 5px; border-bottom: 1px solid var(--line); font-family: var(--serif); font-size: 25px; font-weight: 400; }
    .site-nav > a::after { display: none; }
    .site-nav .button { margin-top: 16px; }
    .nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
    .nav-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }
    .hero { grid-template-columns: 1fr; padding-top: 80px; }
    .hero-copy { max-width: 690px; }
    .hero-copy h1 { font-size: clamp(70px, 14vw, 110px); }
    .hero-visual { width: min(100%, 650px); min-height: 620px; margin: 30px auto 0; }
    .desk-scene { min-height: 610px; }
    .intro-grid, .fit-section, .page-hero, .config-intro, .journal-feature, .not-found { grid-template-columns: 1fr; }
    .intro-grid { gap: 45px; }
    .intro-copy { max-width: 600px; }
    .steps-grid, .guide-grid, .principle-grid { grid-template-columns: 1fr; }
    .step-card + .step-card, .principle-grid article + article { border-top: 1px solid; border-left: 0; }
    .step-card { display: grid; grid-template-columns: 40px 1fr; column-gap: 25px; }
    .step-art { grid-column: 2; width: min(100%, 450px); }
    .step-card h3, .step-card p { grid-column: 2; }
    .fit-section { max-width: 700px; }
    .fit-visual { width: min(100%, 610px); margin-inline: auto; }
    .guide-grid { max-width: 580px; margin-inline: auto; }
    .guide-card { min-height: 600px; }
    .page-hero { gap: 60px; }
    .page-hero-copy { max-width: 700px; }
    .page-hero-art { width: min(100%, 650px); margin-inline: auto; }
    .content-section, .content-inner { grid-template-columns: 110px 1fr; gap: 35px; }
    .diagram-grid { grid-template-columns: 1fr; gap: 60px; }
    .body-diagram { max-width: 650px; width: 100%; margin-inline: auto; }
    .config-intro { gap: 30px; }
    .config-intro > p { padding-left: 20%; }
    .config-layout { grid-template-columns: 1fr; }
    .config-preview { order: -1; min-height: 510px; border-bottom: 1px solid var(--ink); border-left: 0; }
    .desk-blueprint { min-height: 440px; }
    .preview-toggle { display: block; }
    .config-preview.is-collapsed { min-height: 48px; }
    .config-preview.is-collapsed .desk-blueprint, .config-preview.is-collapsed .preview-note { display: none; }
    .config-form { min-height: 690px; }
    .journal-feature-art { height: 460px; }
    .article-grid { grid-template-columns: 1fr 1fr; }
    .about-intro { margin-left: 15%; }
    .manifesto-grid { grid-template-columns: 180px 1fr; gap: 50px; }
    .legal-layout { grid-template-columns: 170px minmax(0, 1fr); gap: 45px; }
  }

  @media (max-width: 680px) {
    .shell { width: min(100% - 24px, 1280px); }
    .site-header { height: 68px; }
    .brand { font-size: 16px; }
    .brand-mark { width: 27px; height: 27px; }
    .hero { min-height: auto; padding-block: 60px; }
    .hero-copy h1 { margin-block: 22px; font-size: clamp(59px, 18vw, 80px); }
    .hero-copy h1 em { margin-left: 9%; }
    .hero-deck { font-size: 16px; }
    .hero-actions { align-items: flex-start; flex-direction: column; gap: 14px; }
    .hero-proof { flex-direction: column; gap: 12px; margin-top: 35px; }
    .hero-proof span + span { padding-left: 0; border: 0; }
    .hero-visual { min-height: 440px; }
    .desk-scene { min-height: 430px; border-radius: 46% 46% 5px 5px / 32% 32% 5px 5px; }
    .desk-scene::before { inset: 18px; }
    .scene-note { font-size: 12px; }
    .visual-card { right: 4px; width: 180px; }
    .visual-card strong { font-size: 19px; }
    .section-pad { padding-block: 78px; }
    .section-kicker { margin-bottom: 35px; }
    .display-title { font-size: clamp(48px, 15vw, 70px); }
    .intro-grid { gap: 35px; }
    .section-head { align-items: flex-start; flex-direction: column; margin-bottom: 45px; }
    .section-head h2 { font-size: 51px; }
    .step-card { display: block; padding-inline: 6px; }
    .step-card + .step-card { margin-top: 25px; }
    .step-art, .step-card h3, .step-card p { grid-column: auto; }
    .fit-section { gap: 65px; }
    .fit-copy h2 { font-size: 49px; }
    .fit-chip { font-size: 7px; }
    .guide-card { min-height: 510px; padding: 20px; }
    .guide-art { height: 205px; }
    img.guide-art { width: calc(100% + 40px); max-width: none; margin-inline: -20px; }
    .final-cta-inner { min-height: 510px; }
    .final-cta h2 { font-size: clamp(58px, 18vw, 86px); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 45px 25px; padding-block: 65px; }
    .footer-lead { grid-column: 1 / -1; }
    .footer-grid > div:last-child { grid-column: 1 / -1; }
    .footer-bottom { align-items: flex-start; flex-direction: column; gap: 7px; }
    .page-hero { min-height: auto; gap: 42px; padding-block: 65px; }
    .page-hero-copy h1 { font-size: clamp(56px, 17vw, 83px); }
    .page-hero-copy > p:last-child { font-size: 16px; }
    .in-page-nav { justify-content: flex-start; gap: 18px; overflow-x: auto; white-space: nowrap; }
    .content-section, .content-inner { grid-template-columns: 1fr; gap: 22px; padding-block: 75px; }
    .content-tint.content-section, .content-dark.content-section { padding-block: 75px; }
    .content-index { padding: 0; }
    .content-main > h2 { font-size: 48px; }
    .content-main .lead { margin-bottom: 35px; font-size: 17px; }
    .dimension-grid, .habit-grid, .layout-cards, .do-dont { grid-template-columns: 1fr; }
    .dimension-grid article.featured { transform: none; }
    .two-col-copy { grid-template-columns: 1fr; gap: 32px; }
    .material-list article { grid-template-columns: 72px 1fr; gap: 20px; }
    .material-swatch { width: 72px; height: 60px; }
    .large-checks li { font-size: 19px; }
    .diagram-copy h2 { font-size: 50px; }
    .body-diagram { height: 390px; overflow: hidden; transform-origin: top left; }
    .body-diagram > span, .body-diagram > div { transform: scale(.75); transform-origin: top left; }
    .body-diagram > div.angle { transform: none; }
    .figure-body { transform: scale(.75) rotate(-8deg) !important; }
    .figure-arm { transform: scale(.75) skewY(20deg) !important; }
    .tip-grid { grid-template-columns: 1fr; }
    .cable-flow { grid-template-columns: 1fr; }
    .cable-flow span { transform: rotate(90deg); text-align: center; }
    .article-cta { margin-block: 55px 80px; }
    .article-cta h2 { font-size: 42px; }
    .config-main { padding-bottom: 80px; }
    .config-intro { padding-block: 50px 35px; }
    .config-intro h1 { font-size: 65px; }
    .config-intro > p { padding-left: 0; font-size: 15px; }
    .config-shell { width: 100%; border-right: 0; border-left: 0; box-shadow: none; }
    .config-progress { padding-inline: 12px; }
    .config-progress li { font-size: 0; }
    .config-progress li span { width: 24px; height: 24px; font-size: 8px; }
    .config-preview { min-height: 390px; padding: 12px; }
    .desk-blueprint { min-height: 330px; }
    .preview-toggle { display: block; }
    .config-preview.is-collapsed { min-height: 48px; }
    .config-preview.is-collapsed .desk-blueprint, .config-preview.is-collapsed .preview-note { display: none; }
    .config-form { min-height: 700px; padding: 32px 18px; }
    .config-step > h2 { font-size: 39px; }
    .choice-grid-3, .choice-grid-2 { grid-template-columns: 1fr; }
    .choice-grid-3 .choice-card { min-height: 85px; display: grid; grid-template-columns: 70px 1fr; grid-template-rows: 1fr 1fr; column-gap: 12px; padding: 10px 38px 10px 10px; }
    .choice-grid-3 .choice-icon, .choice-grid-3 .posture-icon { grid-row: 1 / 3; width: 65px; height: 58px; margin: 0; }
    .choice-grid-3 .choice-card strong { align-self: end; }
    .choice-grid-3 .choice-card small { align-self: start; }
    .choice-grid-3 .choice-card input { top: 50%; transform: translateY(-50%); }
    .posture-grid .choice-card { text-align: left; }
    .segmented-field { grid-template-columns: 1fr 1fr; }
    .segmented-field label:nth-of-type(3) span { border-left: 1px solid var(--line); }
    .segmented-field label:nth-of-type(n+3) span { border-top: 0; }
    .finish-field { grid-template-columns: 1fr 1fr; }
    .budget-field { grid-template-columns: 1fr; }
    .config-nav { gap: 16px; }
    .config-nav .button { padding-inline: 18px; }
    .result-heading { align-items: flex-start; }
    .result-score { flex-direction: column; gap: 0; }
    .result-score strong { font-size: 52px; }
    .result-specs { grid-template-columns: 1fr; }
    .result-specs div { border-right: 0 !important; border-bottom: 1px solid var(--line); padding: 13px 0 !important; }
    .result-actions { align-items: flex-start; flex-direction: column; }
    .journal-feature { padding-block: 65px 90px; }
    .journal-feature-art { height: 360px; }
    .journal-feature h2 { font-size: 50px; }
    .article-grid { grid-template-columns: 1fr; gap: 55px; }
    .article-header { padding-block: 65px 45px; }
    .article-header h1 { font-size: clamp(60px, 18vw, 87px); }
    .article-header > p:not(.eyebrow) { font-size: 17px; }
    .article-cover { width: 100%; height: auto; margin-bottom: 65px; border-inline: 0; }
    .article-cover i { top: 21%; left: 31%; width: 40%; }
    .article-body p, .article-body li { font-size: 16px; }
    .article-body .article-lead { font-size: 26px; }
    .article-body h2 { margin-top: 55px; font-size: 40px; }
    .article-body .article-cta { margin-inline: 0; }
    .about-hero { padding-block: 70px 85px; }
    .about-hero h1 { font-size: clamp(58px, 17vw, 82px); }
    .about-intro { align-items: flex-start; flex-direction: column; margin-left: 0; }
    .manifesto { padding-block: 80px; }
    .manifesto-grid { grid-template-columns: 1fr; gap: 50px; }
    .manifesto-mark { width: 110px; font-size: 32px; }
    .principle-grid article { padding: 32px 5px; }
    .principle-grid h3 { margin-top: 35px; }
    .legal-hero { grid-template-columns: 1fr; gap: 32px; padding-block: 70px 75px; }
    .legal-hero h1 { font-size: clamp(66px, 20vw, 92px); }
    .legal-hero-intro > p { font-size: 17px; }
    .legal-layout { grid-template-columns: 1fr; gap: 32px; padding-bottom: 85px; }
    .legal-nav { position: static; flex-flow: row wrap; gap: 9px 18px; padding-block: 22px; }
    .legal-nav p { flex: 0 0 100%; }
    .legal-section { padding-block: 55px; }
    .legal-section h2 { font-size: 43px; }
    .legal-details { grid-template-columns: 1fr; }
    .not-found { gap: 45px; }
    .not-found-art { max-width: 450px; }
  }
}

@media print {
  .site-header, .site-footer, .config-intro, .config-progress, .config-nav, .result-actions, .preview-note { display: none !important; }
  body, .config-main, .config-shell, .config-form, .config-preview { color: #000; background: #fff; }
  .config-shell { width: 100%; border: 0; box-shadow: none; }
  .config-layout { display: grid; grid-template-columns: 1fr 1fr; }
  .config-preview { order: 2; border: 0; }
  .config-form { padding: 20px; }
  .config-step:not(.result-step) { display: none !important; }
  .result-step { display: block !important; }
  .desk-blueprint { min-height: 450px; -webkit-print-color-adjust: exact; print-color-adjust: exact; }
  .config-preview.is-collapsed { min-height: auto; }
  .config-preview.is-collapsed .desk-blueprint { display: block !important; }
}
