:root {
  --header-height-mobile: 5.7rem;
  --header-height-desktop: 4.4rem;
  --bg: #f5f2ea;
  --surface: rgba(255, 255, 255, 0.76);
  --surface-strong: rgba(255, 255, 255, 0.92);
  --line: rgba(33, 35, 31, 0.12);
  --line-strong: rgba(33, 35, 31, 0.2);
  --text: #181915;
  --muted: #686b62;
  --accent: #667a67;
  --accent-soft: rgba(102, 122, 103, 0.14);
  --shadow: 0 24px 60px rgba(25, 28, 25, 0.08);
  --max-width: 1240px;
  --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  --sans: "Avenir Next", "Helvetica Neue", "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.92), transparent 34%),
    linear-gradient(180deg, #f8f6f0 0%, #f0ece4 100%);
  color: var(--text);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.story-page {
  position: relative;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

.page-shell {
  min-height: 100vh;
  overflow: clip;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
  backdrop-filter: blur(18px);
  background: linear-gradient(180deg, rgba(248, 246, 240, 0.88), rgba(248, 246, 240, 0.55));
  border-bottom: 1px solid transparent;
  transition: padding 220ms ease, border-color 220ms ease, background 220ms ease;
}

.site-header.is-top {
  border-color: transparent;
}

.site-header.is-scrolled {
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
  border-color: var(--line);
  background: rgba(248, 246, 240, 0.8);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  font-family: var(--serif);
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  overflow: hidden;
}

.brand-mark img {
  width: 72%;
  height: 72%;
  object-fit: contain;
  display: block;
}

.brand-copy {
  display: grid;
  gap: 0.08rem;
}

.brand-copy strong,
.brand-copy small {
  display: block;
  line-height: 1;
}

.brand-copy strong {
  font-size: 0.95rem;
  font-weight: 600;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-nav {
  display: none;
  align-items: center;
  gap: 1.2rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-utility {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.menu-shell {
  position: relative;
}

.menu-toggle {
  display: inline-flex;
  flex-direction: column;
  place-items: center;
  justify-content: center;
  gap: 0.26rem;
  width: 2.7rem;
  height: 2.7rem;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 0.95rem;
  height: 1.5px;
  border-radius: 999px;
  background: var(--text);
  box-shadow: none;
}

.mobile-menu {
  position: absolute;
  top: calc(100% + 0.7rem);
  right: 0;
  width: min(15.5rem, calc(100vw - 2.2rem));
  padding: 0.9rem;
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  background: rgba(251, 249, 245, 0.98);
  box-shadow: var(--shadow);
}

.mobile-menu-nav {
  display: grid;
  gap: 0.2rem;
}

.mobile-menu-nav a {
  display: block;
  padding: 0.72rem 0.1rem;
  color: var(--text);
}

.lang-switch-mobile {
  margin-top: 0.7rem;
  width: 100%;
  justify-content: space-between;
}

.lang-switch-mobile button {
  flex: 1 1 0;
}

.lang-switch-desktop {
  display: none;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.4);
}

.lang-switch button {
  border: 0;
  background: transparent;
  color: var(--muted);
  min-width: 2.5rem;
  min-height: 2rem;
  padding: 0 0.65rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background 220ms ease, color 220ms ease;
}

.lang-switch button.is-active {
  background: var(--text);
  color: #f7f4ee;
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.25rem;
  width: 100%;
  height: 1px;
  background: var(--text);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.hero {
  position: relative;
  display: grid;
  gap: 1.6rem;
  width: min(100%, var(--max-width));
  margin: 0 auto;
  min-height: calc(100svh - var(--header-height-mobile));
  padding: 3.4rem 1.1rem 4.8rem;
  align-items: center;
  justify-items: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0)),
    radial-gradient(circle at 80% 20%, rgba(102, 122, 103, 0.1), transparent 28%);
  pointer-events: none;
}

.hero-copy,
.section,
.closing-panel {
  width: min(100%, var(--max-width));
  margin: 0 auto;
}

.hero-copy {
  position: relative;
  z-index: 1;
  padding-top: 0;
  display: grid;
  justify-items: center;
  align-content: center;
  text-align: center;
  max-width: 25rem;
}

.hero-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 5rem;
  height: 5rem;
  margin-bottom: 0.8rem;
}

.hero-mark img {
  position: relative;
  z-index: 1;
  width: 54%;
  height: 54%;
  object-fit: contain;
}

.hero-mark-ring {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.32)),
    rgba(102, 122, 103, 0.04);
  box-shadow: var(--shadow);
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.75rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(3rem, 8vw, 6.4rem);
  line-height: 0.92;
  max-width: 12ch;
  margin-inline: auto;
}

.hero-title-accent {
  color: var(--text);
}

.hero-title-equals {
  color: var(--muted);
}

.hero-title-muted {
  color: var(--accent);
}

.hero-lead {
  margin-top: 0.8rem;
  max-width: 20rem;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.85;
  letter-spacing: 0.01em;
  margin-inline: auto;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.8rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.78rem 1.2rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  transition:
    transform 220ms ease,
    background 220ms ease,
    border-color 220ms ease,
    color 220ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--text);
  border-color: var(--text);
  color: #f7f4ee;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #2a2c26;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.42);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.72);
}

.hero-facts {
  display: grid;
  gap: 0.65rem;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 0.94rem;
}

.hero-facts li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.hero-facts li::before {
  content: "";
  display: inline-block;
  width: 2.4rem;
  height: 1px;
  background: var(--line-strong);
}

.section {
  padding: 5rem 1.1rem;
  position: relative;
  text-align: center;
}

.page-main {
  padding-top: 1rem;
}

body[data-page="home"] .site-header {
  position: absolute;
  inset: 0 0 auto;
  background: transparent;
  backdrop-filter: none;
  border-bottom-color: transparent;
}

body[data-page="home"] .site-header.is-scrolled {
  position: fixed;
  background: rgba(248, 246, 240, 0.8);
  backdrop-filter: blur(18px);
}

body[data-page="home"] .hero {
  min-height: 100svh;
  padding-top: calc(var(--header-height-mobile) + 3rem);
  padding-bottom: 6rem;
}

body[data-page="home"] .hero-copy {
  max-width: 24rem;
}

body[data-page="home"] .hero-lead {
  max-width: 19rem;
}

.page-main .section.legal {
  width: min(100%, 48rem);
  margin: 0 auto;
  text-align: left;
}

.page-title {
  font-size: clamp(2.4rem, 9vw, 4.8rem);
  line-height: 0.98;
}

.official-grid {
  display: grid;
  gap: 1rem;
}

.official-card {
  padding: 1.2rem 0;
  border-top: 1px solid var(--line);
}

.official-card:last-child {
  border-bottom: 1px solid var(--line);
}

.section-head {
  display: grid;
  gap: 0.9rem;
  margin-bottom: 2.4rem;
  justify-items: center;
  text-align: center;
}

.legal .section-head {
  display: block;
  justify-items: start;
  text-align: left;
  width: 100%;
  margin-bottom: 2.8rem;
}

.legal .section-head .eyebrow,
.legal .page-title {
  width: 100%;
  text-align: left;
}

.legal .page-title {
  display: block;
  margin: 0;
  font-size: clamp(2rem, 6vw, 3.2rem);
}

.legal .section-head .section-lead {
  margin-top: 0.9rem;
  margin-left: 0;
  margin-right: 0;
  text-align: left;
}

.section-kicker {
  position: relative;
  z-index: 1;
  width: fit-content;
  margin: 0 auto 1.3rem;
  padding: 0 1rem;
  color: var(--muted);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: rgba(248, 246, 240, 0.92);
}

.section-lead {
  max-width: 32rem;
  color: var(--muted);
  line-height: 1.8;
  text-wrap: balance;
}

.section-head h2 {
  max-width: 18ch;
  font-size: clamp(2.1rem, 5.8vw, 3.7rem);
  line-height: 1;
}

.manifesto-grid {
  display: grid;
  gap: 1px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.manifesto-block {
  display: grid;
  gap: 0.8rem;
  padding: 1.3rem 0;
}

.manifesto-number,
.aside-label {
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.manifesto-block h3,
.flow-list h3,
.value-line h3 {
  font-size: 1.15rem;
  font-weight: 600;
}

.manifesto-block p:last-child,
.flow-list p,
.value-line p,
.closing-panel p {
  color: var(--muted);
  line-height: 1.9;
}

.flow-layout {
  display: grid;
  gap: 1.8rem;
  justify-items: center;
}

.flowchart {
  display: grid;
  justify-items: center;
  width: min(100%, 20rem);
  margin: 0 auto 0.6rem;
  position: relative;
}

.flowchart-step {
  display: grid;
  justify-items: center;
  align-content: center;
  text-align: center;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow);
  width: 100%;
  min-height: 4.9rem;
  padding: 0.95rem 0.9rem;
  border-radius: 1.4rem;
  position: relative;
  z-index: 2;
}

.flowchart-step strong {
  font-size: 1rem;
  font-weight: 600;
}

.flowchart-step-with-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
}

.flowchart-step-icon {
  width: 1.3rem;
  height: 1.3rem;
  object-fit: contain;
  flex: 0 0 auto;
}

.flowchart-step span {
  color: var(--muted);
  margin-top: 0.2rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.flowchart-arrow {
  color: var(--line-strong);
  font-size: 1.5rem;
  line-height: 1;
  padding: 0.25rem 0;
  position: relative;
  z-index: 1;
}

.flowchart-decision {
  display: grid;
  place-items: center;
  position: relative;
  width: 100%;
  height: 8rem;
  margin: 0;
  z-index: 2;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.06));
}

.flowchart-decision::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--line);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  z-index: -2;
}

.flowchart-decision::after {
  content: "";
  position: absolute;
  inset: 1px;
  background: #fdfdfc;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  z-index: -1;
}

.flowchart-decision strong {
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
}

.flowchart-loop-back {
  position: absolute;
  top: 9.35rem;
  bottom: 4rem;
  right: -1rem;
  width: 1rem;
  border: 1px solid var(--line-strong);
  border-left: none;
  border-radius: 0 0.5rem 0.5rem 0;
  z-index: 2;
}

@media (min-width: 480px) {
  .flowchart-loop-back {
    right: -2rem;
    width: 2rem;
  }
}

.flowchart-loop-back::after {
  content: "";
  position: absolute;
  top: -0.3rem;
  left: 0.2rem;
  width: 0.6rem;
  height: 0.6rem;
  border-top: 1px solid var(--line-strong);
  border-left: 1px solid var(--line-strong);
  transform: rotate(-45deg);
}

.flowchart-loop-back-label {
  position: absolute;
  top: 50%;
  right: -1.7rem;
  transform: translateY(-50%) rotate(90deg);
  font-size: 0.7rem;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: #fff;
  padding: 0 0.4rem;
}

.thought-layout {
  display: grid;
  gap: 1.5rem;
  align-items: center;
  justify-items: center;
  width: min(100%, 38rem);
  margin: 0 auto;
}

.thought {
  padding-top: 6.6rem;
}

.thought-symbol {
  display: grid;
  place-items: center;
}

.thought-emblem {
  display: grid;
  place-items: center;
  width: min(48vw, 13rem);
  height: min(48vw, 13rem);
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.58)),
    linear-gradient(180deg, rgba(102, 122, 103, 0.08), rgba(255, 255, 255, 0));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.thought-emblem img {
  width: 56%;
  height: 56%;
  object-fit: contain;
}

.thought-copy {
  display: grid;
  gap: 1.2rem;
  max-width: 36rem;
  justify-items: center;
  text-align: center;
}

.thought-copy-compact {
  gap: 1.25rem;
  align-content: center;
}

.thought-copy p {
  color: var(--muted);
  line-height: 1.95;
}

.thought-statement {
  color: var(--text);
  font-family: var(--serif);
  font-size: clamp(1.5rem, 4.8vw, 2.5rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.thought-list {
  display: grid;
  gap: 1rem;
  width: min(100%, 34rem);
  margin: 0;
  padding-left: 1.5rem;
  list-style-position: inside;
  text-align: center;
}

.thought-list li {
  color: var(--muted);
  line-height: 1.85;
}

.thought-points {
  display: grid;
  gap: 0.7rem;
  width: min(100%, 28rem);
}

.thought-points p {
  padding: 0.9rem 0;
  border-top: 1px solid var(--line);
  line-height: 1.75;
}

.thought-points p:last-child {
  border-bottom: 1px solid var(--line);
}

.flow-layout-wide {
  align-items: center;
  max-width: 36rem;
  margin: 0 auto;
}

.flow-visual {
  display: grid;
  place-items: center;
  width: 100%;
}

.flow-sequence {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: min(100%, 34rem);
}

.flow-sequence-node {
  display: grid;
  place-items: center;
  gap: 0.22rem;
  min-width: 7.2rem;
  padding: 1.3rem 1rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
  background: rgba(255, 255, 255, 0.24);
}

.flow-sequence-node strong {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
}

.flow-sequence-node span {
  color: var(--muted);
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.flow-sequence-node.is-active {
  color: var(--text);
  border-color: rgba(24, 25, 21, 0.2);
}

.flow-sequence-node.is-active span {
  color: var(--accent);
}

.flow-sequence-arrow {
  position: relative;
  width: 1.8rem;
  height: 1px;
  background: var(--line-strong);
}

.flow-sequence-arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 0.45rem;
  height: 0.45rem;
  border-top: 1px solid var(--line-strong);
  border-right: 1px solid var(--line-strong);
  transform: translateY(-50%) rotate(45deg);
}

@media (max-width: 520px) {
  .flow-sequence {
    flex-direction: column;
    gap: 0.6rem;
  }

  .flow-sequence-arrow {
    width: 1px;
    height: 1.6rem;
  }

  .flow-sequence-arrow::after {
    right: 50%;
    top: auto;
    bottom: 0;
    transform: translateX(50%) rotate(135deg);
  }
}

.legal-grid,
.contact-grid {
  display: grid;
  gap: 1rem;
}

.legal-grid {
  width: 100%;
  max-width: 44rem;
  margin: 0 auto;
}

.legal-block,
.contact-block,
.contact-card {
  padding: 1.4rem 0;
  border-top: 1px solid var(--line);
}

.legal-block:last-child {
  border-bottom: 1px solid var(--line);
}

.contact-card {
  border-bottom: 1px solid var(--line);
  margin-top: 1rem;
}

.legal-block h3,
.contact-block h3 {
  margin-bottom: 0.7rem;
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.5;
}

.legal-block p,
.contact-block p,
.contact-help,
.simple-list li {
  color: var(--muted);
  line-height: 1.9;
}

.contact-mail {
  display: inline-block;
  margin-top: 0.35rem;
  font-size: clamp(1.35rem, 5vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.03em;
}

.contact-help {
  margin-top: 1rem;
  margin-bottom: 0.6rem;
  font-weight: 600;
}

.simple-list {
  margin: 0;
  padding-left: 1.1rem;
}

.simple-list li + li {
  margin-top: 0.5rem;
}

.flow-list {
  display: grid;
  gap: 1px;
  padding: 0;
  margin: 0;
  list-style: none;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.flow-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1.2rem 0;
}

.flow-list li > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  margin-top: 0.2rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.85rem;
}

.flow-aside {
  padding: 1.2rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.aside-state {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: center;
  padding: 1rem 0;
}

.aside-state span {
  font-size: 1.5rem;
}

.aside-state strong,
.aside-state small {
  display: block;
}

.aside-state strong {
  margin-bottom: 0.2rem;
  font-size: 1.05rem;
}

.aside-state small {
  color: var(--muted);
  line-height: 1.7;
}

.aside-divider {
  height: 1px;
  background: var(--line);
}

.value-lines {
  border-top: 1px solid var(--line);
}

.value-line {
  display: grid;
  gap: 0.8rem;
  padding: 1.3rem 0;
  border-bottom: 1px solid var(--line);
}

.value-line-centered,
.manifesto-block-centered {
  justify-items: center;
  text-align: center;
}

.closing {
  padding-bottom: 6rem;
}

.closing-panel {
  padding: 2rem 1.3rem;
  border: 1px solid var(--line);
  border-radius: 1.8rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.52));
  box-shadow: var(--shadow);
}

.closing-panel h2 {
  font-size: clamp(1.9rem, 5.9vw, 3.7rem);
  line-height: 1.04;
  margin-bottom: 1rem;
}

.closing-panel {
  text-align: center;
}

.closing-panel .hero-actions {
  justify-content: center;
}

.official-grid {
  width: min(100%, 30rem);
}

.manifesto-grid {
  width: min(100%, 34rem);
  margin: 0 auto;
}

.site-footer {
  width: min(100%, var(--max-width));
  margin: 0 auto;
  padding: 1.6rem 1.1rem 2.6rem;
  display: grid;
  gap: 1rem;
  align-items: center;
  border-top: 1px solid var(--line);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  justify-self: center;
  justify-content: center;
  min-height: 2.25rem;
}

.footer-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.9rem 1.2rem;
  justify-content: center;
  justify-self: center;
  width: 100%;
  text-align: center;
  min-height: 2.25rem;
}

.footer-links a {
  color: var(--muted);
}

.footer-mark {
  flex: 0 0 auto;
}

.footer-brand strong {
  display: block;
  margin-bottom: 0.12rem;
}

.footer-brand p,
.footer-note {
  color: var(--muted);
  line-height: 1.8;
}

.footer-note {
  justify-self: center;
  width: 100%;
  text-align: center;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media (min-width: 760px) {
  .site-header {
    padding-left: 1.8rem;
    padding-right: 1.8rem;
  }

  .site-nav {
    display: inline-flex;
  }

  .menu-shell {
    display: none;
  }

  .lang-switch-desktop {
    display: inline-flex;
  }

  .hero {
    align-items: center;
    min-height: calc(100svh - var(--header-height-desktop));
    padding: 5.2rem 1.8rem 6.2rem;
  }

  body[data-page="home"] .hero {
    min-height: 100svh;
    padding-top: calc(var(--header-height-desktop) + 4.2rem);
    padding-bottom: 7rem;
  }

  .hero-copy {
    padding-top: 0;
    max-width: 34rem;
  }

  body[data-page="home"] .hero-copy {
    max-width: 34rem;
  }

  .hero-lead {
    max-width: 30rem;
    font-size: 1rem;
    line-height: 1.9;
    letter-spacing: 0;
  }

  body[data-page="home"] .hero-lead {
    max-width: 24rem;
  }

  .thought {
    padding-top: 7rem;
  }

  .section {
    padding: 7rem 1.8rem;
  }

  .manifesto-grid {
    max-width: 34rem;
    width: 100%;
  }

  .manifesto-block {
    padding: 1.4rem 0;
  }

  .thought-copy-compact {
    padding-right: 0;
  }

  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.4rem;
  }

  .contact-card {
    margin-top: 1.2rem;
  }

  .flow-aside {
    position: sticky;
    top: 5.7rem;
  }

  .flow-layout-wide {
    max-width: 36rem;
    width: 100%;
    gap: 2.4rem;
  }

  .value-lines {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 2rem;
  }

  .closing-panel {
    padding: 3rem;
  }

  .site-footer {
    padding-left: 1.8rem;
    padding-right: 1.8rem;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: start;
  }

  .footer-brand {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
    justify-content: flex-start;
  }

  .footer-links {
    grid-column: 2;
    grid-row: 1;
  }

  .footer-note {
    grid-column: 1 / -1;
    grid-row: 2;
  }
}

@media (min-width: 1080px) {
  .site-header {
    padding-left: 2.4rem;
    padding-right: 2.4rem;
  }

  .hero,
  .section {
    padding-left: 2.4rem;
    padding-right: 2.4rem;
  }

  .site-footer {
    padding-left: 2.4rem;
    padding-right: 2.4rem;
  }

}
