:root {
  color-scheme: light dark;
  --paper: #f4efe4;
  --paper-2: #ebe3d3;
  --card: #fbf8f1;
  --ink: #171817;
  --muted: #6d6a62;
  --line: rgba(23, 24, 23, 0.14);
  --red: #e74a35;
  --blue: #4b7fc1;
  --yellow: #e8b849;
  --lavender: #a894c8;
  --green: #638e73;
  --shadow: 0 22px 70px rgba(54, 46, 35, 0.13);
  --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.22;
  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: multiply;
}

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(38, 31, 23, 0.12);
}

.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(--ink); color: var(--paper); border-color: var(--ink); }
.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(--yellow);
}

.hero-art::after {
  width: 65%;
  aspect-ratio: 1;
  right: -5%;
  bottom: 4%;
  background: var(--lavender);
  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: #f4d474;
  color: #1a1a18;
  box-shadow: 0 14px 30px rgba(49, 39, 23, 0.17);
  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(245, 235, 204, 0.82);
  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(--blue);
  color: #fdf9ed;
  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: #e4d6e7; color: #252025; }
.feature-strip h3 { margin-bottom: 9px; font-size: 23px; letter-spacing: -0.03em; }
.feature-strip p { margin-bottom: 0; color: var(--muted); }

.style-ribbon {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr 0.72fr 1.18fr;
  min-height: 220px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.style-ribbon span {
  display: flex;
  align-items: flex-end;
  padding: 22px;
  color: #171817;
  font-weight: 850;
}

.style-ribbon span:nth-child(1) { background: #e56653; }
.style-ribbon span:nth-child(2) { background: #e8b849; }
.style-ribbon span:nth-child(3) { background: #6d9f87; }
.style-ribbon span:nth-child(4) { background: #b09aca; }
.style-ribbon span:nth-child(5) { background: #77a5d4; }

.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: #191812;
  transform: rotate(-0.6deg);
}

.contact-card h2 { margin-top: 0; }
.contact-card p { color: #514a37; }
.contact-card a { color: #191812; }

.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; }
  .style-ribbon { grid-template-columns: repeat(2, 1fr); }
  .style-ribbon span: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-color-scheme: dark) {
  :root {
    --paper: #171817;
    --paper-2: #22231f;
    --card: #242520;
    --ink: #f2ecde;
    --muted: #aaa69c;
    --line: rgba(242, 236, 222, 0.14);
    --shadow: 0 24px 74px rgba(0, 0, 0, 0.42);
  }
  body::before { opacity: 0.12; mix-blend-mode: screen; }
  .language-picker button[aria-pressed="true"], .button.primary { color: #171817; }
  .feature-strip:nth-child(2) { background: #382f3a; color: var(--ink); }
  .paper-note, .style-ribbon span, .contact-card { color: #171817; }
}

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