:root {
  color-scheme: dark;
  --paper: #f0ece3;
  --ink: #0b0b0a;
  --panel: #121311;
  --panel-soft: #171815;
  --muted: #aaa79f;
  --quiet: #77766f;
  --amber: #d99a49;
  --amber-pale: #efc27e;
  --line: rgba(240, 236, 227, 0.13);
  --image-radius: 18px;
  --page: min(1280px, calc(100vw - 56px));
  --sans: -apple-system, BlinkMacSystemFont, "SF Pro Display", "PingFang SC", "Microsoft YaHei", sans-serif;
  --serif: "Songti SC", "STSong", "Noto Serif CJK SC", serif;
  --latin-serif: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--paper);
  background:
    radial-gradient(circle at 74% 3%, rgba(217, 154, 73, 0.1), transparent 25rem),
    var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.18;
  background-image: url("assets/walnut-record-board-v5.png");
  background-position: center bottom;
  background-size: 100% 44px;
  background-repeat: no-repeat;
  filter: grayscale(0.5);
}

body.lightbox-open {
  overflow: hidden;
}

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

button,
input {
  color: inherit;
  font: inherit;
}

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

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

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

.page-shell {
  width: var(--page);
  margin-inline: auto;
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: var(--page);
  height: 92px;
  margin-inline: auto;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: max-content;
  gap: 10px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.brand img {
  width: 30px;
  height: 30px;
  border-radius: 8px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  color: var(--muted);
  font-size: 13px;
}

.site-nav a,
.header-note,
.language-switch {
  transition: color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.header-note:hover,
.header-note:focus-visible,
.language-switch:hover,
.language-switch:focus-visible {
  color: var(--paper);
}

.header-tools {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 18px;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 28px;
  padding: 0 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.header-note {
  color: var(--amber-pale);
  font-size: 13px;
}

html[lang="en"] .hero h1,
html[lang="en"] .manifesto h2,
html[lang="en"] .story-copy h2,
html[lang="en"] .gallery-heading h2,
html[lang="en"] .closing h2,
html[lang="en"] .page-intro h1,
html[lang="en"] .faq-list summary,
html[lang="en"] .page-callout p,
html[lang="en"] .contact-email,
html[lang="en"] .contact-topics h2,
html[lang="en"] .privacy-principles h2,
html[lang="en"] .policy-content h2 {
  font-family: var(--latin-serif);
}

.header-note span {
  margin-left: 8px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(330px, 0.78fr) minmax(560px, 1.42fr);
  align-items: center;
  gap: clamp(40px, 6vw, 92px);
  min-height: 100svh;
  padding: 142px 0 76px;
}

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

.kicker,
.section-index {
  color: var(--amber-pale);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
}

.kicker span {
  width: 28px;
  height: 1px;
  background: var(--amber);
}

.hero h1 {
  max-width: 650px;
  font-family: var(--serif);
  font-size: clamp(54px, 5.6vw, 88px);
  font-weight: 700;
  line-height: 1.07;
  letter-spacing: -0.04em;
}

.hero-intro {
  max-width: 480px;
  margin-top: 30px;
  color: #bbb7ae;
  font-size: 17px;
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 36px;
}

.primary-link,
.secondary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  min-height: 50px;
  padding: 0 18px;
  border: 1px solid var(--amber);
  font-size: 13px;
  font-weight: 700;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.primary-link {
  color: var(--ink);
  background: var(--amber);
}

.secondary-link {
  color: var(--amber-pale);
  background: transparent;
}

.primary-link:hover,
.primary-link:focus-visible {
  color: var(--paper);
  background: transparent;
  transform: translateY(-2px);
}

.secondary-link:hover,
.secondary-link:focus-visible {
  color: var(--ink);
  background: var(--amber-pale);
  border-color: var(--amber-pale);
  transform: translateY(-2px);
}

.hero-visual {
  position: relative;
  min-width: 0;
  padding: 0 0 78px 72px;
}

.hero-shot {
  position: relative;
  min-width: 0;
  padding: 8px;
  border: 1px solid rgba(239, 194, 126, 0.28);
  border-radius: calc(var(--image-radius) + 4px);
  overflow: hidden;
  background: #10110f;
  box-shadow: 0 42px 100px rgba(0, 0, 0, 0.58);
}

.hero-mac-shot {
  position: relative;
  z-index: 1;
}

.hero-shot::before {
  content: "";
  position: absolute;
  inset: 11% -8% -14% 24%;
  z-index: -1;
  background: rgba(217, 154, 73, 0.12);
  filter: blur(80px);
}

.hero-shot img {
  width: 100%;
  height: auto;
  border-radius: var(--image-radius);
}

.hero-shot figcaption {
  display: flex;
  justify-content: space-between;
  padding: 12px 4px 4px;
  color: var(--quiet);
  font-size: 10px;
  letter-spacing: 0.08em;
}

.hero-phone-shot {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 3;
  width: clamp(150px, 15vw, 202px);
  margin: 0;
  filter: drop-shadow(0 30px 46px rgba(0, 0, 0, 0.72));
}

.hero-phone-shot .image-button {
  border-radius: 14%;
  background: #0e0f0d;
}

.hero-phone-shot img {
  width: 100%;
  border-radius: 14%;
  clip-path: inset(0.8% 1.7% round 13%);
}

.hero-phone-shot figcaption {
  position: absolute;
  right: 0;
  bottom: -24px;
  color: var(--quiet);
  font-size: 10px;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.image-button {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  border-radius: inherit;
  overflow: hidden;
  cursor: zoom-in;
}

.image-button:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 4px;
}

.manifesto {
  display: grid;
  grid-template-columns: 0.72fr 1.55fr;
  gap: 60px;
  padding: 160px 0 180px;
  border-top: 1px solid var(--line);
}

.manifesto > div {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  gap: 50px;
}

.manifesto h2,
.story-copy h2,
.gallery-heading h2,
.closing h2 {
  font-family: var(--serif);
  font-size: clamp(42px, 5vw, 70px);
  font-weight: 650;
  line-height: 1.17;
  letter-spacing: -0.035em;
}

.manifesto > div > p,
.story-copy > p,
.gallery-heading > p,
.closing > p:last-of-type {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.9;
}

.product-story {
  display: grid;
  grid-template-columns: minmax(280px, 0.64fr) minmax(600px, 1.36fr);
  align-items: center;
  gap: clamp(52px, 8vw, 120px);
  min-height: 860px;
  padding: 130px 0;
  border-top: 1px solid var(--line);
}

.player-story {
  grid-template-columns: minmax(600px, 1.36fr) minmax(280px, 0.64fr);
}

.story-copy .section-index {
  margin-bottom: 28px;
}

.story-copy > p {
  max-width: 420px;
  margin-top: 28px;
}

.plain-list {
  margin: 38px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.plain-list li {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: #d0ccc3;
  font-size: 12px;
}

.plain-list li::after {
  content: "·";
  color: var(--amber);
}

.story-media {
  position: relative;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: calc(var(--image-radius) + 4px);
  overflow: hidden;
  background: var(--panel);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.5);
}

.story-media::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 46%;
  height: 58%;
  background: rgba(217, 154, 73, 0.09);
  filter: blur(60px);
}

.shelf-media::after {
  right: -8%;
  bottom: -8%;
}

.player-media::after {
  top: -8%;
  left: -8%;
}

.story-media img {
  width: 100%;
  border-radius: var(--image-radius);
}

.detail-gallery {
  padding: 160px 0;
  border-top: 1px solid var(--line);
}

.gallery-heading {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: end;
  gap: 80px;
  margin-bottom: 72px;
}

.gallery-heading .section-index {
  margin-bottom: 26px;
}

.gallery-heading > p {
  max-width: 430px;
  padding-bottom: 7px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.gallery-card {
  min-width: 0;
}

.gallery-wide {
  grid-column: 1 / -1;
}

.gallery-card .image-button {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--image-radius);
  background: var(--panel);
}

.gallery-card img {
  width: 100%;
  border-radius: calc(var(--image-radius) - 1px);
  transition: transform 700ms cubic-bezier(0.2, 0.75, 0.2, 1), filter 300ms ease;
}

.gallery-card:hover img {
  transform: scale(1.012);
  filter: brightness(1.05);
}

.gallery-card figcaption {
  padding: 14px 2px 8px;
  color: var(--quiet);
  font-size: 11px;
}

.closing {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 720px;
  padding: 140px 0;
  border-top: 1px solid var(--line);
  text-align: center;
}

.closing img {
  width: 68px;
  height: 68px;
  margin-bottom: 32px;
  border-radius: 16px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.38);
}

.closing .section-index {
  margin-bottom: 30px;
}

.closing > p:last-of-type {
  max-width: 420px;
  margin-top: 28px;
}

.download-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 38px;
}

.closing > a {
  margin-top: 54px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--amber);
  color: var(--amber-pale);
  font-size: 13px;
}

.closing > a span {
  margin-left: 20px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 0 34px;
  border-top: 1px solid var(--line);
  color: var(--quiet);
  font-size: 10px;
  letter-spacing: 0.06em;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 24px;
  letter-spacing: 0;
}

.icp-record {
  letter-spacing: 0;
  white-space: nowrap;
}

.footer-links a {
  transition: color 180ms ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--paper);
}

/* Content pages */
.subpage .site-header {
  position: relative;
  inset: auto;
}

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

.content-page {
  min-height: calc(100svh - 160px);
  padding: 90px 0 150px;
}

.page-intro {
  display: grid;
  grid-template-columns: 0.56fr 1.44fr;
  gap: 60px;
  align-items: start;
  padding: 52px 0 94px;
  border-bottom: 1px solid var(--line);
}

.page-intro h1 {
  font-family: var(--serif);
  font-size: clamp(56px, 7vw, 96px);
  font-weight: 650;
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.page-intro > div > p {
  max-width: 520px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.faq-list {
  width: min(820px, 100%);
  margin: 72px 0 0 auto;
  border-bottom: 1px solid var(--line);
}

.faq-list details {
  border-top: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 28px 54px 28px 0;
  color: var(--paper);
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 650;
  line-height: 1.35;
  list-style: none;
  cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 27px;
  right: 4px;
  color: var(--amber-pale);
  font-family: var(--sans);
  font-size: 22px;
  font-weight: 400;
  transition: transform 180ms ease;
}

.faq-list details[open] summary::after {
  transform: rotate(45deg);
}

.faq-list details > p {
  max-width: 680px;
  padding: 0 50px 30px 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.9;
}

.faq-list a,
.policy-content a {
  color: var(--amber-pale);
  border-bottom: 1px solid rgba(239, 194, 126, 0.45);
}

.page-callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  width: min(820px, 100%);
  margin: 90px 0 0 auto;
  padding: 34px 38px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--panel);
}

.page-callout p {
  font-family: var(--serif);
  font-size: 24px;
}

.page-callout a {
  color: var(--amber-pale);
  font-size: 13px;
}

.page-callout a span {
  margin-left: 18px;
}

.contact-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 60px;
  margin-top: 72px;
  padding: 52px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    radial-gradient(circle at 82% 20%, rgba(217, 154, 73, 0.1), transparent 18rem),
    var(--panel);
}

.contact-label {
  margin-bottom: 18px;
  color: var(--quiet);
  font-size: 11px;
  letter-spacing: 0.12em;
}

.contact-email {
  display: inline-block;
  color: var(--paper);
  font-family: var(--serif);
  font-size: clamp(30px, 5vw, 62px);
  line-height: 1.2;
  word-break: break-all;
}

.contact-copy > p:last-child {
  max-width: 560px;
  margin-top: 25px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.mail-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
  min-width: 190px;
  min-height: 56px;
  padding: 0 20px;
  border: 1px solid var(--amber);
  color: var(--ink);
  background: var(--amber);
  font-size: 13px;
  font-weight: 700;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.mail-action:hover,
.mail-action:focus-visible {
  color: var(--paper);
  background: transparent;
  transform: translateY(-2px);
}

.contact-topics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 28px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.contact-topics article {
  min-height: 230px;
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.contact-topics article > span {
  color: var(--amber-pale);
  font-size: 10px;
  letter-spacing: 0.12em;
}

.contact-topics h2 {
  margin: 54px 0 16px;
  font-family: var(--serif);
  font-size: 25px;
}

.contact-topics p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.privacy-intro > div > p {
  color: var(--quiet);
  font-size: 12px;
}

.privacy-principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 54px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.privacy-principles article {
  min-height: 250px;
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.012);
}

.privacy-principles article > span {
  color: var(--amber-pale);
  font-size: 10px;
  letter-spacing: 0.12em;
}

.privacy-principles h2 {
  margin: 58px 0 17px;
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.35;
}

.privacy-principles p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.policy-layout {
  display: grid;
  grid-template-columns: 0.56fr 1.44fr;
  gap: 60px;
  padding-top: 72px;
}

.policy-aside {
  position: sticky;
  top: 30px;
  align-self: start;
  max-width: 300px;
}

.policy-aside p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.policy-aside a {
  display: inline-flex;
  gap: 16px;
  margin-top: 28px;
  padding-bottom: 7px;
  border-bottom: 1px solid var(--amber);
  color: var(--amber-pale);
  font-size: 12px;
}

.policy-content {
  border-bottom: 1px solid var(--line);
}

.policy-content section {
  padding: 0 0 44px;
  margin-bottom: 44px;
  border-bottom: 1px solid var(--line);
}

.policy-content section:last-child {
  margin-bottom: 0;
  border-bottom: 0;
}

.policy-content h2 {
  margin-bottom: 18px;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 650;
}

.policy-content p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.9;
}

.policy-content p + p {
  margin-top: 14px;
}

.lightbox {
  width: min(1480px, calc(100vw - 48px));
  max-width: none;
  max-height: calc(100vh - 48px);
  margin: auto;
  padding: 44px 14px 14px;
  overflow: visible;
  border: 1px solid rgba(240, 236, 227, 0.22);
  border-radius: calc(var(--image-radius) + 4px);
  background: #11120f;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.7);
}

.lightbox::backdrop {
  background: rgba(5, 5, 4, 0.9);
  backdrop-filter: blur(12px);
}

.lightbox img {
  width: 100%;
  max-height: calc(100vh - 106px);
  object-fit: contain;
  border-radius: var(--image-radius);
}

.lightbox-close {
  position: absolute;
  top: 12px;
  right: 14px;
  padding: 0;
  border: 0;
  color: var(--muted);
  background: transparent;
  font-size: 12px;
  cursor: pointer;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 760ms ease, transform 760ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

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

  [data-reveal],
  .gallery-card img,
  .primary-link,
  .secondary-link {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 1040px) {
  :root {
    --page: min(100% - 40px, 900px);
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 70px;
    min-height: auto;
    padding-top: 174px;
  }

  .hero-copy {
    max-width: 740px;
  }

  .hero-visual {
    width: 100%;
  }

  .manifesto,
  .manifesto > div,
  .gallery-heading {
    grid-template-columns: 1fr;
  }

  .manifesto {
    gap: 44px;
  }

  .manifesto > div {
    gap: 30px;
  }

  .manifesto > div > p,
  .gallery-heading > p {
    max-width: 520px;
  }

  .product-story,
  .player-story {
    grid-template-columns: 1fr;
    gap: 70px;
    min-height: auto;
  }

  .player-story .player-media {
    order: 2;
  }

  .story-copy {
    max-width: 620px;
  }

  .page-intro,
  .policy-layout {
    grid-template-columns: 1fr;
  }

  .page-intro {
    gap: 30px;
  }

  .policy-layout {
    gap: 50px;
  }

  .privacy-principles {
    grid-template-columns: 1fr;
  }

  .privacy-principles article {
    min-height: 210px;
  }

  .privacy-principles h2 {
    margin-top: 38px;
  }

  .policy-aside {
    position: static;
    max-width: 560px;
  }
}

@media (max-width: 700px) {
  :root {
    --page: calc(100% - 28px);
  }

  .site-header {
    height: 74px;
  }

  .site-nav {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr 1fr;
  }

  .header-tools {
    gap: 10px;
  }

  .language-switch {
    min-width: 32px;
    padding-inline: 7px;
  }

  .hero {
    gap: 48px;
    padding: 126px 0 72px;
  }

  .hero h1 {
    font-size: clamp(44px, 13.6vw, 64px);
    line-height: 1.12;
  }

  .hero-intro {
    font-size: 15px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 16px;
  }

  .hero-actions a {
    width: 100%;
  }

  .download-actions {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .download-actions a {
    width: min(320px, 100%);
  }

  .hero-visual {
    width: calc(100% + 14px);
    padding: 0 0 72px;
  }

  .hero-shot {
    padding: 4px;
  }

  .hero-phone-shot {
    right: 10px;
    left: auto;
    width: clamp(118px, 34vw, 154px);
  }

  .hero-phone-shot figcaption {
    right: 4px;
    bottom: -21px;
  }

  .hero-shot figcaption {
    padding: 9px 3px 3px;
  }

  .manifesto,
  .product-story,
  .detail-gallery {
    padding: 96px 0;
  }

  .manifesto {
    gap: 34px;
  }

  .manifesto > div {
    gap: 24px;
  }

  .manifesto h2,
  .story-copy h2,
  .gallery-heading h2,
  .closing h2 {
    font-size: clamp(38px, 11vw, 54px);
  }

  .product-story,
  .player-story {
    gap: 44px;
  }

  .story-media {
    width: calc(100% + 14px);
    padding: 4px;
  }

  .gallery-heading {
    gap: 28px;
    margin-bottom: 46px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .gallery-wide {
    grid-column: auto;
  }

  .closing {
    min-height: 640px;
    padding: 110px 0;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 12px 20px;
  }

  .content-page {
    padding: 60px 0 100px;
  }

  .page-intro {
    padding: 34px 0 66px;
  }

  .page-intro h1 {
    font-size: clamp(48px, 15vw, 68px);
  }

  .faq-list {
    margin-top: 48px;
  }

  .faq-list summary {
    padding: 23px 44px 23px 0;
    font-size: 20px;
  }

  .faq-list summary::after {
    top: 22px;
  }

  .faq-list details > p {
    padding-right: 20px;
  }

  .page-callout {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 60px;
    padding: 28px;
  }

  .contact-panel {
    grid-template-columns: 1fr;
    gap: 38px;
    margin-top: 48px;
    padding: 30px 24px;
  }

  .mail-action {
    width: 100%;
  }

  .contact-topics {
    grid-template-columns: 1fr;
  }

  .contact-topics article {
    min-height: 190px;
  }

  .contact-topics h2 {
    margin-top: 36px;
  }

  .policy-layout {
    padding-top: 48px;
  }

  .policy-content section {
    padding-bottom: 36px;
    margin-bottom: 36px;
  }

  .lightbox {
    width: calc(100vw - 20px);
    max-height: calc(100vh - 20px);
    padding: 40px 8px 8px;
  }
}
