:root {
  --paper: #fafaf8;
  --paper-deep: #f2efe8;
  --paper-warm: #f3ead3;
  --ink: #222222;
  --ink-soft: #686661;
  --ink-faint: #97958e;
  --accent: #a83f2d;
  --accent-deep: #8f3223;
  --line: rgba(34, 34, 34, .15);
  --white: #fffefa;
  --display: 'Iowan Old Style', 'Palatino Linotype', Palatino, Georgia, serif;
  --sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  --mono: 'SFMono-Regular', Consolas, 'Liberation Mono', monospace;
  --shadow: 0 24px 64px rgba(50, 38, 24, .12);
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
::selection { background: rgba(168, 63, 45, .18); }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
img { display: block; max-width: 100%; }
.section-shell { width: min(var(--max), calc(100% - 64px)); margin-inline: auto; }
.grain { position: fixed; inset: 0; pointer-events: none; z-index: 20; opacity: .035; mix-blend-mode: multiply; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.72' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E"); }

.site-header {
  width: min(var(--max), calc(100% - 64px));
  margin: 0 auto;
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 30;
  border-bottom: 1px solid var(--line);
}
.wordmark { font: 700 clamp(1.25rem, 2vw, 1.5rem)/1 var(--display); letter-spacing: -.045em; }
.wordmark-dot { color: var(--accent); }
.desktop-nav { display: flex; align-items: center; gap: 36px; margin-left: 96px; font-size: .88rem; color: var(--ink-soft); }
.desktop-nav a, .footer-links a { transition: color .2s ease; }
.desktop-nav a:hover, .desktop-nav a.active, .footer-links a:hover { color: var(--accent); }
.header-actions { display: flex; align-items: center; gap: 22px; }
.language-switcher { display: flex; align-items: center; gap: 7px; font: .72rem var(--mono); letter-spacing: .03em; color: var(--ink-faint); }
.language-switcher button { cursor: pointer; border: 0; padding: 0; background: transparent; color: inherit; }
.language-switcher button[aria-pressed="true"], .language-switcher button:hover { color: var(--accent); }
.language-switcher span { color: var(--line); }
.menu-toggle { display: none; border: 0; background: transparent; padding: 8px 0 8px 8px; cursor: pointer; }
.menu-toggle span { width: 22px; height: 1px; background: var(--ink); display: block; transition: transform .2s ease; }
.menu-toggle span + span { margin-top: 6px; }
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
.mobile-menu { display: none; }

.hero { min-height: 720px; display: grid; grid-template-columns: minmax(0, .95fr) minmax(440px, 1.05fr); align-items: center; gap: clamp(32px, 7vw, 104px); padding: 80px 0 112px; }
.eyebrow, .section-kicker { margin: 0 0 22px; color: var(--accent); text-transform: uppercase; font: 500 .7rem/1.3 var(--mono); letter-spacing: .13em; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--display); font-weight: 400; letter-spacing: -.055em; }
h1 { max-width: 700px; margin-bottom: 30px; font-size: clamp(3rem, 6vw, 5.8rem); line-height: 1.05; }
h2 { margin-bottom: 24px; font-size: clamp(2.6rem, 5vw, 4.55rem); line-height: 1.08; }
h3 { font-size: clamp(1.45rem, 2.3vw, 2rem); line-height: 1.15; }
em { color: var(--accent); font-style: italic; }
.hero-lede { max-width: 510px; margin-bottom: 34px; color: var(--ink-soft); font-size: clamp(1.05rem, 1.3vw, 1.22rem); line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 22px; margin-bottom: 30px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 16px; min-height: 48px; padding: 13px 20px; border: 1px solid var(--ink); font-size: .9rem; transition: background .2s ease, color .2s ease, transform .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--white); background: var(--accent); border-color: var(--accent); }
.button-primary:hover { background: var(--accent-deep); border-color: var(--accent-deep); }
.text-link { display: inline-flex; align-items: center; gap: 10px; color: var(--ink-soft); font-size: .9rem; border-bottom: 1px solid var(--line); padding-bottom: 4px; transition: color .2s ease, border-color .2s ease; }
.text-link:hover { color: var(--accent); border-color: var(--accent); }
.hero-note { display: flex; align-items: center; gap: 9px; margin: 0; color: var(--ink-faint); font: .72rem var(--mono); }
.signal { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 5px rgba(168,63,45,.1); }
.hero-visual { min-height: 570px; position: relative; display: flex; align-items: center; justify-content: center; }
.hero-swatch { position: absolute; transform: rotate(-8deg); }
.hero-swatch-back { width: 62%; height: 80%; background: var(--paper-warm); top: 7%; right: 8%; }
.hero-swatch-front { width: 64%; height: 78%; background: #dddcd7; bottom: 5%; left: 12%; transform: rotate(9deg); }
.phone-frame { overflow: hidden; background: #141311; border: 7px solid #151411; border-radius: 32px; box-shadow: var(--shadow); }
.phone-frame img { width: 100%; height: auto; }
.phone-frame-hero { width: min(48%, 290px); transform: rotate(5deg); position: relative; z-index: 2; }
.hero-caption { position: absolute; left: 2%; bottom: 6%; z-index: 5; width: 190px; padding: 18px 17px 17px; background: var(--white); box-shadow: 0 12px 28px rgba(50,38,24,.1); }
.caption-rule { display: block; width: 48px; height: 2px; margin-bottom: 11px; background: var(--accent); }
.hero-caption p { margin: 0; font: .9rem/1.35 var(--display); }
.hero-fold { position: absolute; width: 116px; right: 3%; top: 6%; z-index: 4; opacity: .58; }

.manifesto { padding: 160px 0 170px; text-align: center; }
.manifesto-mark { width: 66px; height: 66px; margin: 0 auto 34px; border: 1px solid var(--ink); border-radius: 50%; position: relative; }
.manifesto-mark::before, .manifesto-mark::after { content: ''; position: absolute; top: 14px; bottom: 14px; width: 1px; background: var(--ink); }
.manifesto-mark::before { left: 29px; } .manifesto-mark::after { right: 29px; }
.manifesto h2 { margin-bottom: 30px; }
.manifesto-copy { max-width: 560px; margin: 0 auto; color: var(--ink-soft); font-size: 1.05rem; line-height: 1.7; }

.reader-section { padding: 120px 0 150px; background: var(--paper-deep); }
.split-heading { display: grid; grid-template-columns: 1.1fr .7fr; gap: 60px; align-items: end; margin-bottom: 72px; }
.heading-aside { max-width: 300px; margin: 0 0 9px auto; color: var(--ink-soft); font-size: 1.03rem; line-height: 1.65; }
.feature-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.feature-card { min-width: 0; border: 1px solid var(--line); background: var(--white); }
.feature-card-large, .feature-card-reverse { display: grid; grid-template-rows: 1fr auto; }
.feature-card-wide { grid-column: 1 / -1; display: grid; grid-template-columns: 1.17fr .83fr; align-items: stretch; }
.feature-art { position: relative; overflow: hidden; min-height: 420px; background: #e7e4dc; }
.phone-art { display: flex; align-items: end; justify-content: center; padding: 52px 40px 0; }
.phone-frame-card { width: min(54%, 236px); border-width: 5px; border-radius: 24px 24px 0 0; border-bottom: 0; transform: rotate(3deg) translateY(12px); }
.feature-card-reverse .phone-frame-card { transform: rotate(-3deg) translateY(12px); }
.feature-art-warm { background: var(--paper-warm); }
.art-stamp, .art-note { position: absolute; top: 22px; left: 24px; color: var(--accent); font: .68rem var(--mono); letter-spacing: .1em; }
.art-note { color: var(--ink-soft); right: 24px; left: auto; }
.feature-card-copy { padding: 31px 32px 36px; }
.card-index { margin-bottom: 22px; color: var(--accent); font: .7rem var(--mono); letter-spacing: .12em; }
.feature-card-copy h3 { margin-bottom: 15px; }
.feature-card-copy p { max-width: 440px; margin-bottom: 0; color: var(--ink-soft); line-height: 1.65; }
.feature-card-wide .feature-art { min-height: 360px; display: flex; align-items: end; justify-content: center; padding: 42px 60px 0; background: #d9d8d4; }
.phone-frame-wide { width: min(36%, 206px); border-width: 5px; border-radius: 22px 22px 0 0; border-bottom: 0; transform: rotate(3deg); }
.sound-lines { position: absolute; right: 13%; top: 46%; display: flex; align-items: center; gap: 6px; height: 72px; }
.sound-lines i { display: block; width: 3px; background: var(--accent); }
.sound-lines i:nth-child(1) { height: 26%; } .sound-lines i:nth-child(2) { height: 58%; } .sound-lines i:nth-child(3) { height: 100%; } .sound-lines i:nth-child(4) { height: 71%; } .sound-lines i:nth-child(5) { height: 40%; }
.mini-detail { display: block; margin-top: 27px; color: var(--ink-faint); font: .7rem var(--mono); }

.formats-section { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(44px, 9vw, 140px); align-items: center; padding: 155px 0 170px; }
.formats-visual { min-height: 360px; display: grid; place-items: center; position: relative; background: var(--paper-warm); border: 1px solid var(--line); }
.formats-visual img { width: min(230px, 54%); opacity: .68; }
.format-vertical { position: absolute; left: 18px; bottom: 20px; color: var(--ink-faint); font: .64rem var(--mono); letter-spacing: .14em; writing-mode: vertical-rl; transform: rotate(180deg); }
.formats-copy { max-width: 590px; }
.formats-copy > p:not(.eyebrow):not(.formats-footnote) { max-width: 510px; margin-bottom: 28px; color: var(--ink-soft); font-size: 1.03rem; line-height: 1.7; }
.format-list { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 26px; }
.format-list span { padding: 7px 10px; border: 1px solid var(--line); color: var(--ink-soft); font: .67rem var(--mono); letter-spacing: .04em; }
.formats-footnote { margin: 0; color: var(--ink-faint); font-size: .79rem; }

.privacy-section { color: var(--white); background: var(--ink); }
.privacy-grid { min-height: 650px; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.privacy-copy { padding: 104px 0; }
.privacy-copy .eyebrow { color: #df765f; }
.privacy-copy h2 { margin-bottom: 30px; }
.privacy-copy h2 em { color: #df765f; }
.privacy-copy > p { max-width: 460px; margin-bottom: 30px; color: #aaa7a1; font-size: 1.04rem; line-height: 1.7; }
.text-link-light { color: #e8e5df; border-color: rgba(232,229,223,.28); }
.text-link-light:hover { color: #df765f; border-color: #df765f; }
.privacy-art { min-height: 460px; position: relative; display: grid; place-items: center; }
.privacy-paper { position: absolute; width: 66%; height: 74%; transform: rotate(7deg); background: #e9e7e2; }
.privacy-art img { position: relative; z-index: 1; width: min(320px, 70%); opacity: .72; }
.privacy-seal { position: absolute; z-index: 2; top: 9%; right: 7%; width: 102px; height: 102px; display: grid; place-items: center; border: 1px solid #df765f; border-radius: 50%; color: #df765f; text-align: center; font: .63rem/1.45 var(--mono); letter-spacing: .08em; transform: rotate(11deg); }

.closing-section { padding: 165px 0 175px; text-align: center; }
.closing-rule { width: 1px; height: 92px; margin: 0 auto 38px; background: var(--accent); }
.closing-section h2 { margin-bottom: 20px; }
.closing-section > p:not(.eyebrow) { margin-bottom: 31px; color: var(--ink-soft); }

.site-footer { padding: 48px 0 52px; border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 1.3fr .7fr .8fr; align-items: end; gap: 24px; }
.wordmark-footer { font-size: 1.4rem; }
.footer-tagline { max-width: 280px; margin: 13px 0 0; color: var(--ink-faint); font-size: .8rem; }
.footer-links { display: flex; flex-wrap: wrap; gap: 20px; align-items: center; font-size: .82rem; color: var(--ink-soft); }
.copyright { margin: 0; color: var(--ink-faint); font-size: .76rem; text-align: right; }

/* Legal pages */
.legal-page { min-height: calc(100vh - 140px); }
.legal-shell { padding: 104px 0 130px; }
.legal-heading { max-width: 790px; padding-bottom: 75px; }
.legal-heading h1 { margin-bottom: 28px; font-size: clamp(3rem, 6vw, 5.2rem); }
.legal-intro { max-width: 670px; margin-bottom: 24px; color: var(--ink-soft); font-size: 1.1rem; line-height: 1.7; }
.legal-date { margin: 0; color: var(--ink-faint); font: .7rem var(--mono); letter-spacing: .03em; }
.legal-layout { display: grid; grid-template-columns: 210px minmax(0, 700px); gap: clamp(38px, 8vw, 110px); align-items: start; }
.legal-index { position: sticky; top: 32px; display: flex; flex-direction: column; gap: 11px; padding-top: 4px; }
.legal-index p { margin: 0 0 9px; color: var(--accent); font: .68rem var(--mono); letter-spacing: .12em; text-transform: uppercase; }
.legal-index a { color: var(--ink-faint); font-size: .78rem; line-height: 1.35; transition: color .2s ease; }
.legal-index a:hover { color: var(--accent); }
.legal-content { min-width: 0; }
.legal-content section { margin-bottom: 55px; scroll-margin-top: 35px; }
.legal-content h2 { margin-bottom: 16px; font-size: clamp(1.55rem, 3vw, 2.1rem); letter-spacing: -.045em; }
.legal-content p, .legal-content li { color: var(--ink-soft); line-height: 1.8; }
.legal-content p { margin-bottom: 17px; }
.legal-content p:last-child { margin-bottom: 0; }
.legal-content ul { margin: 12px 0 0; padding-left: 22px; }
.legal-content li + li { margin-top: 8px; }
.legal-content a { color: var(--accent); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }

.reveal { opacity: 1; transform: none; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 880px) {
  .section-shell, .site-header { width: min(var(--max), calc(100% - 40px)); }
  .desktop-nav { margin-left: 0; gap: 22px; }
  .hero { grid-template-columns: 1fr; padding: 76px 0 105px; }
  .hero-copy { max-width: 670px; }
  .hero-visual { min-height: 550px; margin-top: -5px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card-wide { grid-column: auto; grid-template-columns: 1fr; }
  .feature-card-wide .feature-art { min-height: 420px; }
  .formats-section { grid-template-columns: 1fr; padding: 120px 0 135px; }
  .formats-visual { min-height: 300px; }
  .privacy-grid { grid-template-columns: 1fr; gap: 0; }
  .privacy-copy { padding: 95px 0 25px; }
  .privacy-art { min-height: 400px; padding-bottom: 80px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .copyright { text-align: left; grid-column: 1 / -1; }
  .legal-layout { grid-template-columns: 1fr; }
  .legal-index { position: static; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px 18px; padding: 20px; background: var(--paper-deep); }
  .legal-index p { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  .section-shell, .site-header { width: min(var(--max), calc(100% - 32px)); }
  .site-header { min-height: 70px; }
  .desktop-nav, .header-actions .language-switcher { display: none; }
  .menu-toggle { display: block; }
  .mobile-menu { position: fixed; top: 70px; left: 0; right: 0; display: flex; flex-direction: column; gap: 0; padding: 18px 16px 22px; background: var(--paper); border-bottom: 1px solid var(--line); box-shadow: 0 18px 32px rgba(34,34,34,.08); opacity: 0; pointer-events: none; transform: translateY(-10px); transition: opacity .2s ease, transform .2s ease; }
  .mobile-menu.is-open { opacity: 1; pointer-events: auto; transform: none; }
  .mobile-menu > a { padding: 13px 0; border-bottom: 1px solid var(--line); font-size: 1rem; }
  .mobile-languages { display: flex; gap: 10px; padding-top: 18px; }
  .mobile-languages button { padding: 8px 10px; border: 1px solid var(--line); background: transparent; color: var(--ink-soft); font-size: .82rem; cursor: pointer; }
  h1 { font-size: clamp(2.8rem, 13vw, 4.5rem); }
  h2 { font-size: clamp(2.45rem, 12vw, 3.8rem); }
  .hero { min-height: auto; padding: 68px 0 88px; gap: 30px; }
  .hero-lede { font-size: 1rem; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 18px; }
  .hero-visual { min-height: 440px; }
  .phone-frame-hero { width: 55%; }
  .hero-caption { left: 0; bottom: 0; width: 150px; padding: 14px; }
  .hero-caption p { font-size: .78rem; }
  .hero-fold { width: 84px; right: 0; }
  .manifesto { padding: 108px 0 112px; }
  .reader-section { padding: 88px 0 100px; }
  .split-heading { display: block; margin-bottom: 50px; }
  .heading-aside { margin: 24px 0 0; }
  .feature-card-copy { padding: 25px 22px 29px; }
  .feature-art { min-height: 355px; }
  .phone-art { padding: 35px 24px 0; }
  .phone-frame-card { width: 58%; }
  .feature-card-wide .feature-art { min-height: 350px; padding: 35px 30px 0; }
  .phone-frame-wide { width: 48%; }
  .sound-lines { right: 10%; }
  .formats-section { padding: 93px 0 110px; gap: 44px; }
  .privacy-copy { padding-top: 82px; }
  .privacy-art { min-height: 335px; padding-bottom: 62px; }
  .privacy-seal { width: 82px; height: 82px; font-size: .55rem; }
  .closing-section { padding: 105px 0 118px; }
  .site-footer { padding: 38px 0 42px; }
  .footer-grid { display: block; }
  .footer-links { margin-top: 30px; }
  .copyright { margin-top: 30px; }
  .legal-shell { padding: 70px 0 90px; }
  .legal-heading { padding-bottom: 52px; }
  .legal-intro { font-size: 1rem; }
  .legal-index { grid-template-columns: 1fr; gap: 9px; }
  .legal-content section { margin-bottom: 43px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
