:root {
  color-scheme: dark;
  --paper: #2b2926;
  --paper-2: #242020;
  --card: #363130;
  --ink: #f7f4ec;
  --muted: #b6ada0;
  --line: rgba(247, 244, 236, 0.14);
  --red: #c8372d;
  --blue: #7c96a8;
  --yellow: #d7a544;
  --lavender: #8f7f95;
  --green: #6f8f6c;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.42);
  --radius: 34px;
  font-family: ui-rounded, "SF Pro Rounded", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.65;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 20;
  opacity: 0.14;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140' viewBox='0 0 140 140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.11'/%3E%3C/svg%3E");
  mix-blend-mode: screen;
}

a { color: inherit; }

img { display: block; max-width: 100%; }

button, a { -webkit-tap-highlight-color: transparent; }

.shell {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: 92px;
  padding: 16px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  font-size: 21px;
  font-weight: 850;
  letter-spacing: -0.02em;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 13px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
}

.site-nav a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 720;
  text-decoration: none;
}

.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--ink); }

.language-picker {
  display: flex;
  gap: 3px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: color-mix(in srgb, var(--card) 84%, transparent);
}

.language-picker button {
  min-width: 34px;
  height: 32px;
  padding: 0 8px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 12px;
  font-weight: 760;
  cursor: pointer;
}

.language-picker button[aria-pressed="true"] {
  background: var(--ink);
  color: var(--paper);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(340px, 0.94fr);
  align-items: center;
  gap: clamp(34px, 7vw, 98px);
  min-height: 760px;
  padding: 64px 0 92px;
}

.hero-copy { position: relative; z-index: 2; }

.eyebrow {
  margin: 0 0 18px;
  color: var(--red);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

h1, h2, h3, p { margin-top: 0; }

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(52px, 7.1vw, 96px);
  line-height: 0.98;
  letter-spacing: -0.065em;
  text-wrap: balance;
}

.hero-lede {
  max-width: 610px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: clamp(18px, 2.2vw, 23px);
  line-height: 1.52;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: var(--card);
  font-size: 15px;
  font-weight: 820;
  text-decoration: none;
}

.button.primary { background: var(--red); color: #fbf1e8; border-color: var(--red); }
.button.muted { color: var(--muted); cursor: default; }

.hero-art {
  position: relative;
  min-height: 650px;
  display: grid;
  place-items: center;
}

.hero-art::before,
.hero-art::after {
  content: "";
  position: absolute;
  border-radius: 47% 53% 56% 44% / 48% 40% 60% 52%;
  transform: rotate(-8deg);
}

.hero-art::before {
  width: 72%;
  aspect-ratio: 1;
  top: 7%;
  left: 0;
  background: var(--red);
  opacity: 0.5;
}

.hero-art::after {
  width: 65%;
  aspect-ratio: 1;
  right: -5%;
  bottom: 4%;
  background: var(--yellow);
  opacity: 0.45;
  transform: rotate(13deg);
}

.hero-shot {
  position: relative;
  z-index: 2;
  width: min(82%, 470px);
  border: 10px solid var(--ink);
  border-radius: 54px;
  box-shadow: var(--shadow);
  transform: rotate(2.4deg);
}

.paper-note {
  position: absolute;
  z-index: 3;
  right: 0;
  top: 17%;
  width: 170px;
  padding: 23px 20px;
  background: var(--ink);
  color: #1a1816;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.4);
  transform: rotate(7deg);
  font-size: 15px;
  font-weight: 760;
  line-height: 1.35;
}

.paper-note::before {
  content: "";
  position: absolute;
  width: 74px;
  height: 22px;
  top: -10px;
  left: 48px;
  background: rgba(247, 244, 236, 0.6);
  transform: rotate(-3deg);
}

.section { padding: 110px 0; }

.section-kicker {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.section-title {
  max-width: 760px;
  margin-bottom: 26px;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.manifesto {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.88fr);
  gap: 32px;
  align-items: stretch;
}

.manifesto-main {
  min-height: 480px;
  padding: clamp(34px, 6vw, 70px);
  border-radius: var(--radius);
  background: var(--red);
  color: #fbf1e8;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.manifesto-main h2 { font-size: clamp(42px, 5.4vw, 72px); line-height: 1; letter-spacing: -0.055em; }
.manifesto-main p { max-width: 520px; margin-bottom: 0; font-size: 19px; }

.manifesto-side {
  display: grid;
  gap: 18px;
}

.feature-strip {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--card);
}

.feature-strip:nth-child(2) { margin-left: 42px; background: #4a3e35; color: var(--ink); }
.feature-strip h3 { margin-bottom: 9px; font-size: 23px; letter-spacing: -0.03em; }
.feature-strip p { margin-bottom: 0; color: var(--muted); }

.series-shots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.series-shots figure {
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: var(--card);
}

.series-shots img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 3 / 4; }

.series-shots figcaption {
  padding: 14px 16px;
  font-size: 13px;
  font-weight: 760;
  color: var(--ink);
}

.privacy-band {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
  gap: clamp(44px, 9vw, 130px);
  padding: 112px 0;
}

.privacy-symbol {
  aspect-ratio: 1;
  border-radius: 50% 43% 47% 53% / 44% 55% 45% 56%;
  display: grid;
  place-items: center;
  background: var(--green);
  color: #f9f5e9;
  font-size: clamp(82px, 12vw, 150px);
  font-weight: 900;
  transform: rotate(-5deg);
}

.privacy-copy p { max-width: 630px; color: var(--muted); font-size: 19px; }

.page-hero {
  padding: 84px 0 58px;
  border-bottom: 1px solid var(--line);
}

.page-hero h1 { max-width: 900px; font-size: clamp(48px, 7vw, 84px); }
.page-hero p { max-width: 720px; color: var(--muted); font-size: 19px; }

.prose-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 760px);
  gap: clamp(40px, 8vw, 120px);
  padding: 78px 0 120px;
}

.prose-aside {
  position: sticky;
  top: 30px;
  align-self: start;
  color: var(--muted);
  font-size: 13px;
}

.prose-aside strong { display: block; margin-bottom: 8px; color: var(--ink); font-size: 15px; }
.prose article { display: none; }
.prose article[data-active="true"] { display: block; }
.prose h2 { margin: 58px 0 14px; font-size: 30px; line-height: 1.15; letter-spacing: -0.035em; }
.prose h2:first-child { margin-top: 0; }
.prose p, .prose li { color: var(--muted); }
.prose ul, .prose ol { padding-left: 22px; }
.prose li { margin-bottom: 9px; }
.prose a { color: var(--ink); font-weight: 750; text-decoration-thickness: 1px; text-underline-offset: 4px; }

.contact-card {
  margin-top: 54px;
  padding: 34px;
  border-radius: 28px;
  background: var(--yellow);
  color: #201a10;
  transform: rotate(-0.6deg);
}

.contact-card h2 { margin-top: 0; }
.contact-card p { color: #3d3220; }
.contact-card a { color: #201a10; }

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: end;
  padding: 42px 0 54px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.footer-links { display: flex; flex-wrap: wrap; gap: 20px; }
.footer-links a { text-decoration: none; }

[data-lang] { display: none; }
[data-lang][data-active="true"] { display: block; }
span[data-lang][data-active="true"] { display: inline; }

@media (max-width: 820px) {
  .site-header { flex-wrap: wrap; gap: 12px; }
  .site-nav { order: 3; width: 100%; justify-content: center; padding-top: 8px; border-top: 1px solid var(--line); }
  .language-picker { margin-left: auto; }
  .hero { grid-template-columns: 1fr; padding-top: 48px; }
  .hero-art { min-height: 600px; }
  .manifesto, .privacy-band, .prose-layout { grid-template-columns: 1fr; }
  .prose-aside { position: static; }
  .series-shots { grid-template-columns: repeat(2, 1fr); }
  .series-shots figure:last-child { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  .shell { width: min(100% - 28px, 1160px); }
  .site-nav { gap: 16px; overflow-x: auto; justify-content: flex-start; }
  h1 { font-size: clamp(46px, 15vw, 70px); }
  .hero { min-height: auto; padding-bottom: 64px; }
  .hero-art { min-height: 510px; }
  .hero-shot { width: 82%; border-width: 7px; border-radius: 42px; }
  .paper-note { width: 140px; right: -5px; padding: 18px 16px; font-size: 13px; }
  .section { padding: 78px 0; }
  .manifesto-main { min-height: 410px; }
  .feature-strip:nth-child(2) { margin-left: 0; }
  .privacy-band { padding: 82px 0; }
  .site-footer { grid-template-columns: 1fr; }
}

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