:root {
  --black: #080706;
  --ink: #17120e;
  --ivory: #f6f1e9;
  --paper: #e9dfd0;
  --mist: rgba(246, 241, 233, 0.76);
  --brown: #2a160f;
  --gold: #b99a61;
  --line: rgba(185, 154, 97, 0.62);
  --white: rgba(255, 252, 247, 0.92);
  --muted-white: rgba(255, 252, 247, 0.68);
  --shadow: 0 30px 90px rgba(16, 10, 6, 0.22);
  color-scheme: light;
  font-family:
    system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans SC",
    "Microsoft YaHei", "PingFang SC", "Hiragino Sans GB", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--ivory);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 clamp(24px, 4vw, 68px);
  color: var(--white);
  border-bottom: 1px solid transparent;
  transition:
    height 0.45s ease,
    color 0.45s ease,
    background 0.45s ease,
    border-color 0.45s ease,
    backdrop-filter 0.45s ease;
}

.site-header.is-scrolled {
  height: 62px;
  color: var(--ink);
  background: var(--mist);
  border-color: rgba(42, 22, 15, 0.08);
  backdrop-filter: blur(18px) saturate(145%);
}

.brand {
  position: relative;
  z-index: 54;
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.18em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(25px, 3.2vw, 44px);
  font-size: 13px;
  letter-spacing: 0.08em;
}

.site-nav a {
  opacity: 0.82;
  transition: opacity 0.25s ease, color 0.25s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  opacity: 1;
  color: var(--gold);
}

.menu-toggle {
  display: none;
}

.media-stage {
  --mx: 50%;
  --my: 50%;
  --rx: 0deg;
  --ry: 0deg;
  --tx: 0px;
  --ty: 0px;
  --float-x: 0px;
  --float-y: 0px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  color: var(--white);
  background: var(--black);
}

.media-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(
    circle at var(--mx) var(--my),
    rgba(255, 246, 224, 0.2),
    rgba(255, 246, 224, 0.07) 20%,
    transparent 42%
  );
  transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.media-stage:hover::after {
  opacity: 1;
}

.media-frame {
  position: absolute;
  inset: 0;
  z-index: 0;
  transform: perspective(1200px) translate3d(var(--tx), var(--ty), 0) rotateX(var(--rx))
    rotateY(var(--ry)) scale(1.001);
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1), filter 0.9s ease;
  transform-style: preserve-3d;
  will-change: transform;
}

.media-frame img,
.media-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.001);
  will-change: transform;
}

.media-frame video {
  display: block;
}

.media-stage:hover .media-frame {
  transform: perspective(1200px) translate3d(var(--tx), var(--ty), 0) rotateX(var(--rx))
    rotateY(var(--ry)) scale(1.105);
}

.media-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5, 4, 3, 0.76), rgba(5, 4, 3, 0.2) 54%, rgba(5, 4, 3, 0.34)),
    linear-gradient(0deg, rgba(5, 4, 3, 0.48), transparent 42%, rgba(5, 4, 3, 0.16));
  transition: opacity 0.9s ease, background 0.9s ease;
}

.media-stage:hover .media-veil {
  background:
    linear-gradient(90deg, rgba(5, 4, 3, 0.68), rgba(5, 4, 3, 0.14) 58%, rgba(5, 4, 3, 0.3)),
    linear-gradient(0deg, rgba(5, 4, 3, 0.42), transparent 48%, rgba(5, 4, 3, 0.12));
}

.hero {
  min-height: 100svh;
}

.hero__media img {
  object-position: 64% center;
  animation: heroBreath 22s ease-out forwards;
}

.hero__video-frame {
  background: var(--black);
}

.hero__video-frame .hero__poster {
  position: absolute;
  inset: 0;
  z-index: 0;
  object-position: 64% center;
}

.hero__video {
  position: absolute;
  inset: 0;
  z-index: 1;
  object-position: 64% center;
  animation: heroBreath 22s ease-out forwards;
}

.hero__content {
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100svh;
  width: min(780px, calc(100% - 48px));
  margin-left: clamp(24px, 8vw, 136px);
  padding-top: 72px;
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.hero h1,
.manifesto h2,
.contact h2,
.section-head h2 {
  margin: 0;
  font-weight: 520;
  letter-spacing: 0.04em;
}

.hero h1 {
  max-width: 820px;
  font-size: clamp(42px, 6.2vw, 90px);
  line-height: 1.08;
}

.hero__lead {
  max-width: 520px;
  margin: 25px 0 0;
  color: var(--muted-white);
  font-size: clamp(16px, 1.55vw, 22px);
  line-height: 1.8;
  letter-spacing: 0.05em;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 132px;
  min-height: 46px;
  padding: 0 24px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0.1em;
  transition:
    transform 0.45s cubic-bezier(0.19, 1, 0.22, 1),
    color 0.45s ease,
    background 0.45s ease,
    border-color 0.45s ease;
}

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

.button--light {
  color: var(--ink);
  background: var(--white);
}

.button--outline {
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}

.button--dark {
  width: max-content;
  color: var(--ivory);
  background: var(--ink);
  border-color: var(--ink);
}

.panel-stack {
  background: var(--black);
}

.feature-panel {
  min-height: 92svh;
}

.feature-panel .media-frame img {
  filter: saturate(0.78) contrast(1.04);
}

.feature-panel:nth-child(1) .media-frame img {
  object-position: 62% center;
}

.feature-panel:nth-child(2) .media-frame img {
  object-position: 54% center;
  filter: saturate(0.62) brightness(0.86) contrast(1.07);
}

.feature-panel:nth-child(3) .media-frame img {
  object-position: 68% center;
  filter: saturate(0.76) brightness(0.9) contrast(1.02);
}

.feature-panel--right .media-veil {
  background:
    linear-gradient(270deg, rgba(5, 4, 3, 0.74), rgba(5, 4, 3, 0.14) 56%, rgba(5, 4, 3, 0.54)),
    linear-gradient(0deg, rgba(5, 4, 3, 0.46), transparent 48%);
}

.feature-panel--center .media-veil {
  background:
    radial-gradient(circle at 52% 48%, rgba(7, 5, 4, 0.08), rgba(7, 5, 4, 0.68)),
    linear-gradient(0deg, rgba(5, 4, 3, 0.5), transparent 48%);
}

.panel-copy {
  position: absolute;
  z-index: 4;
  left: clamp(26px, 8vw, 128px);
  bottom: clamp(48px, 9vw, 116px);
  max-width: min(560px, calc(100% - 52px));
  transition: transform 0.72s cubic-bezier(0.19, 1, 0.22, 1);
}

.feature-panel--right .panel-copy {
  left: auto;
  right: clamp(26px, 8vw, 128px);
  text-align: right;
}

.feature-panel--center .panel-copy {
  left: 50%;
  bottom: 50%;
  width: min(760px, calc(100% - 52px));
  max-width: none;
  text-align: center;
  transform: translate(-50%, 50%);
}

.media-stage:hover .panel-copy {
  transform: translateY(-12px);
}

.feature-panel--center:hover .panel-copy {
  transform: translate(-50%, calc(50% - 12px));
}

.panel-copy p {
  margin: 0 0 15px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.24em;
}

.panel-copy h2 {
  margin: 0;
  font-size: clamp(50px, 8vw, 118px);
  font-weight: 520;
  letter-spacing: 0.08em;
}

.panel-copy span {
  display: block;
  margin-top: 18px;
  color: var(--muted-white);
  font-size: clamp(16px, 1.45vw, 21px);
  line-height: 1.75;
  letter-spacing: 0.08em;
}

.gold-line {
  position: absolute;
  z-index: 4;
  left: clamp(26px, 8vw, 128px);
  bottom: clamp(30px, 6vw, 70px);
  width: 0;
  height: 1px;
  background: var(--line);
  transition: width 0.72s cubic-bezier(0.19, 1, 0.22, 1);
}

.feature-panel--right .gold-line {
  left: auto;
  right: clamp(26px, 8vw, 128px);
}

.feature-panel--center .gold-line {
  left: 50%;
  transform: translateX(-50%);
}

.media-stage:hover .gold-line {
  width: 88px;
}

.choice-section {
  padding: clamp(90px, 12vw, 156px) clamp(18px, 4vw, 64px);
  background: var(--ivory);
}

.section-head {
  width: min(1280px, 100%);
  margin: 0 auto 28px;
}

.section-head .eyebrow {
  color: rgba(42, 22, 15, 0.58);
}

.section-head h2 {
  font-size: clamp(30px, 3vw, 46px);
}

.section-head > p:not(.eyebrow) {
  max-width: 660px;
  margin: 16px 0 0;
  color: rgba(42, 22, 15, 0.58);
  font-size: 15px;
  line-height: 1.9;
  letter-spacing: 0.05em;
}

.about-section {
  position: relative;
  overflow: hidden;
  padding: clamp(100px, 13vw, 170px) clamp(20px, 5vw, 72px) clamp(72px, 9vw, 120px);
  background:
    linear-gradient(180deg, #f7f1e8 0%, #fbf8f2 100%);
  color: var(--ink);
}

.about-section--media {
  min-height: 72svh;
  display: grid;
  align-items: end;
  color: var(--white);
  background: #15100c;
}

.about-section--media .section-head {
  position: relative;
  z-index: 3;
  color: var(--white);
}

.about-section--media .section-head .eyebrow,
.about-section--media .section-head > p:not(.eyebrow) {
  color: rgba(246, 241, 233, 0.78);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 1.8vw, 24px);
  width: min(1280px, 100%);
  margin: 44px auto 0;
}

.about-card {
  min-height: 220px;
  padding: clamp(28px, 3vw, 42px);
  border: 1px solid rgba(42, 22, 15, 0.11);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.74), rgba(244, 235, 222, 0.46));
  box-shadow: 0 24px 80px rgba(45, 29, 18, 0.08);
}

.about-card span {
  display: block;
  color: rgba(185, 154, 97, 0.9);
  font-size: 12px;
  letter-spacing: 0.18em;
}

.about-card h3 {
  margin: 40px 0 14px;
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 520;
  letter-spacing: 0.06em;
}

.about-card p,
.about-meta {
  color: rgba(42, 22, 15, 0.58);
  font-size: 14px;
  line-height: 1.9;
  letter-spacing: 0.05em;
}

.about-meta {
  width: min(1280px, 100%);
  margin: 28px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(185, 154, 97, 0.32);
}

.process-section {
  padding: clamp(78px, 9vw, 128px) clamp(20px, 5vw, 72px);
  background: #fbf8f2;
  color: var(--ink);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  width: min(1280px, 100%);
  margin: 42px auto 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
  border-top: 1px solid rgba(42, 22, 15, 0.14);
}

.process-list li {
  position: relative;
  padding: 30px 18px 0 0;
  color: rgba(42, 22, 15, 0.78);
  font-size: clamp(15px, 1.4vw, 18px);
  letter-spacing: 0.08em;
}

.process-list li::before {
  content: "";
  position: absolute;
  top: -4px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--gold);
}

.process-list li::after {
  counter-increment: step;
  content: "0" counter(step);
  display: block;
  margin-top: 16px;
  color: rgba(42, 22, 15, 0.32);
  font-size: 12px;
  letter-spacing: 0.2em;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 28px);
  width: min(1280px, 100%);
  margin: 0 auto;
}

.choice-card {
  --cx: 0px;
  --cy: 0px;
  --mx: 50%;
  --my: 50%;
  position: relative;
  min-height: min(72svh, 720px);
  overflow: hidden;
  isolation: isolate;
  color: var(--white);
  background: #15100c;
  box-shadow: var(--shadow);
  transition: box-shadow 0.8s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.choice-card:hover {
  box-shadow: 0 38px 120px rgba(16, 10, 6, 0.32);
  transform: translateY(-8px);
}

.choice-card__media {
  position: absolute;
  inset: 0;
  transform: translate3d(var(--cx), var(--cy), 0) scale(1.01);
  transition: transform 0.95s cubic-bezier(0.22, 1, 0.36, 1), filter 0.95s ease;
  will-change: transform;
}

.choice-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.74) brightness(0.9) contrast(1.04);
}

.choice-card:nth-child(2) .choice-card__media img {
  object-position: 54% center;
  filter: saturate(0.64) brightness(0.84) contrast(1.05);
}

.choice-card:hover .choice-card__media {
  transform: translate3d(calc(var(--cx) + var(--float-x)), calc(var(--cy) - 16px), 0) scale(1.105);
}

.choice-card__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(5, 4, 3, 0.08), rgba(5, 4, 3, 0.76)),
    linear-gradient(90deg, rgba(5, 4, 3, 0.42), transparent 70%);
}

.choice-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(255, 244, 220, 0.12), transparent 34%);
  transition: opacity 0.7s ease;
}

.choice-card:hover::after {
  opacity: 1;
}

.choice-card__copy {
  position: absolute;
  z-index: 3;
  left: clamp(24px, 4vw, 58px);
  right: clamp(24px, 4vw, 58px);
  bottom: clamp(28px, 4vw, 58px);
  transition: transform 0.65s cubic-bezier(0.19, 1, 0.22, 1);
}

.choice-card:hover .choice-card__copy {
  transform: translateY(-9px);
}

.choice-card h3 {
  margin: 0;
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 520;
  letter-spacing: 0.06em;
}

.choice-card p {
  max-width: 430px;
  margin: 16px 0 27px;
  color: var(--muted-white);
  font-size: 15px;
  line-height: 1.85;
  letter-spacing: 0.05em;
}

.choice-card a {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  letter-spacing: 0.12em;
}

.choice-card a::after {
  content: "";
  width: 42px;
  height: 1px;
  background: var(--line);
  transform-origin: left;
  transition: transform 0.45s ease;
}

.choice-card:hover a::after {
  transform: scaleX(1.55);
}

.manifesto {
  display: grid;
  place-items: center;
  min-height: 72svh;
  padding: 112px 24px;
  text-align: center;
  background: #f8f4ed;
}

.manifesto h2 {
  max-width: 980px;
  font-size: clamp(34px, 5vw, 72px);
  line-height: 1.25;
  white-space: nowrap;
}

.manifesto p:last-child {
  margin: 26px 0 0;
  color: rgba(23, 18, 14, 0.54);
  font-size: 15px;
  line-height: 1.9;
  letter-spacing: 0.08em;
}

.contact {
  position: relative;
  overflow: hidden;
  padding: clamp(92px, 13vw, 170px) clamp(22px, 5vw, 80px);
  color: var(--ivory);
  background:
    linear-gradient(120deg, rgba(8, 7, 6, 0.98), rgba(42, 22, 15, 0.96)),
    radial-gradient(circle at 82% 16%, rgba(185, 154, 97, 0.12), transparent 34%);
}

.contact--media {
  min-height: 72svh;
  display: grid;
  align-items: center;
  background: #15100c;
}

.contact__inner {
  position: relative;
  z-index: 3;
  width: min(920px, 100%);
  margin: 0 auto;
}

.contact h2 {
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1.18;
}

.contact h2 + p {
  max-width: 650px;
  margin: 24px 0 34px;
  color: rgba(246, 241, 233, 0.68);
  font-size: 16px;
  line-height: 1.95;
  letter-spacing: 0.05em;
}

.contact-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 56px 0 0;
}

.contact-list div {
  padding-top: 20px;
  border-top: 1px solid rgba(185, 154, 97, 0.34);
}

.contact-list dt {
  color: rgba(246, 241, 233, 0.5);
  font-size: 12px;
  letter-spacing: 0.2em;
}

.contact-list dd {
  margin: 12px 0 0;
  color: rgba(246, 241, 233, 0.86);
  font-size: 14px;
  line-height: 1.7;
}

.contact-origin {
  margin: 34px 0 0;
  color: rgba(246, 241, 233, 0.42);
  font-size: 12px;
  line-height: 1.8;
  letter-spacing: 0.12em;
}

.faq-hero {
  min-height: 72svh;
}

.faq-section {
  padding: clamp(88px, 12vw, 160px) clamp(20px, 6vw, 92px);
  background: var(--ivory);
}

.faq-list {
  width: min(980px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 16px;
}

.faq-item {
  border-top: 1px solid rgba(42, 22, 15, 0.15);
  padding: 4px 0;
}

.faq-item:last-child {
  border-bottom: 1px solid rgba(42, 22, 15, 0.15);
}

.faq-item summary {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  cursor: pointer;
  list-style: none;
  font-size: clamp(18px, 2.5vw, 28px);
  font-weight: 450;
  letter-spacing: 0;
}

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

.faq-item summary::after {
  content: "";
  width: 34px;
  height: 1px;
  flex: 0 0 34px;
  background: var(--gold);
  transition: transform 700ms var(--ease), opacity 700ms var(--ease);
}

.faq-item[open] summary::after {
  transform: translateX(10px);
  opacity: 0.58;
}

.faq-item p {
  max-width: 760px;
  margin: 0 0 30px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.9;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) auto;
  gap: 20px 32px;
  align-items: start;
  padding: 30px clamp(22px, 4vw, 64px) 34px;
  color: rgba(246, 241, 233, 0.66);
  background: var(--black);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.site-footer div {
  display: grid;
  gap: 10px;
}

.site-footer strong {
  color: var(--ivory);
  font-size: 12px;
  letter-spacing: 0.18em;
}

.site-footer small {
  font-size: 12px;
}

.site-footer p {
  grid-column: 1 / -1;
  max-width: 820px;
  margin: 0;
  color: rgba(246, 241, 233, 0.42);
  font-size: 11px;
  line-height: 1.8;
  letter-spacing: 0.05em;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 1s ease,
    transform 1s cubic-bezier(0.19, 1, 0.22, 1);
}

.reveal.is-visible,
.hero .reveal {
  opacity: 1;
  transform: translateY(0);
}

.hero .reveal {
  animation: fadeRise 1s cubic-bezier(0.19, 1, 0.22, 1) both;
}

.reveal-delay-1 {
  animation-delay: 0.14s !important;
}

.reveal-delay-2 {
  animation-delay: 0.3s !important;
}

.reveal-delay-3 {
  animation-delay: 0.46s !important;
}

@keyframes fadeRise {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroBreath {
  from {
    transform: scale(1) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.08) translate3d(-1.4%, -0.8%, 0);
  }
}

@keyframes softBreath {
  0%,
  100% {
    transform: scale(1.02) translateY(0);
  }
  50% {
    transform: scale(1.055) translateY(-8px);
  }
}

.motion-card.is-inview .motion-image-wrap {
  animation: softBreath 12s ease-in-out infinite;
}

.motion-card:not(.is-inview) .motion-image-wrap {
  opacity: 0.88;
  transform: translateY(18px) scale(1.04);
}

@media (max-width: 1024px) {
  .feature-panel,
  .hero {
    min-height: 88svh;
  }

  .choice-card {
    min-height: 620px;
  }
}

@media (max-width: 820px) {
  .site-header {
    height: 64px;
    padding: 0 20px;
  }

  .site-header.is-scrolled {
    height: 60px;
  }

  .brand {
    font-size: 12px;
    letter-spacing: 0.14em;
  }

  .menu-toggle {
    position: relative;
    z-index: 54;
    display: grid;
    width: 42px;
    height: 42px;
    place-content: center;
    gap: 7px;
    padding: 0;
    color: inherit;
    background: transparent;
    border: 0;
  }

  .menu-toggle span {
    display: block;
    width: 22px;
    height: 1px;
    background: currentColor;
    transition: transform 0.35s ease;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(34deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-4px) rotate(-34deg);
  }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 52;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    color: var(--ink);
    background: rgba(246, 241, 233, 0.94);
    backdrop-filter: blur(20px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.35s ease, transform 0.35s ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    font-size: 24px;
    letter-spacing: 0.18em;
  }

  .hero__content {
    justify-content: flex-end;
    min-height: 100svh;
    width: calc(100% - 40px);
    margin: 0 20px;
    padding: 84px 0 64px;
  }

  .hero__media img {
    object-position: 72% center;
  }

  .media-veil,
  .feature-panel--right .media-veil,
  .feature-panel--center .media-veil {
    background:
      linear-gradient(180deg, rgba(5, 4, 3, 0.12), rgba(5, 4, 3, 0.76)),
      linear-gradient(90deg, rgba(5, 4, 3, 0.48), transparent 70%);
  }

  .hero h1 {
    font-size: clamp(34px, 9.2vw, 43px);
    line-height: 1.16;
  }

  .hero__lead {
    font-size: 15px;
  }

  .button {
    min-width: 122px;
  }

  .feature-panel {
    min-height: 86svh;
  }

  .feature-panel .media-frame {
    animation: softBreath 12s ease-in-out infinite;
  }

  .feature-panel:nth-child(1) .media-frame img,
  .feature-panel:nth-child(2) .media-frame img,
  .feature-panel:nth-child(3) .media-frame img {
    object-position: 66% center;
  }

  .panel-copy,
  .feature-panel--right .panel-copy,
  .feature-panel--center .panel-copy {
    left: 22px;
    right: 22px;
    bottom: 62px;
    width: auto;
    max-width: none;
    text-align: left;
    transform: none;
  }

  .feature-panel--center:hover .panel-copy,
  .media-stage:hover .panel-copy {
    transform: translateY(-10px);
  }

  .panel-copy h2 {
    font-size: clamp(42px, 15vw, 72px);
  }

  .panel-copy span {
    font-size: 15px;
  }

  .gold-line,
  .feature-panel--right .gold-line,
  .feature-panel--center .gold-line {
    left: 22px;
    right: auto;
    transform: none;
  }

  .choice-section {
    padding: 76px 16px;
  }

  .about-section,
  .process-section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    margin-top: 30px;
  }

  .about-card {
    min-height: 0;
  }

  .about-card h3 {
    margin-top: 28px;
  }

  .process-list {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 32px;
    border-top: 0;
    border-left: 1px solid rgba(42, 22, 15, 0.14);
  }

  .process-list li {
    padding: 0 0 30px 28px;
  }

  .process-list li::before {
    top: 6px;
    left: -4px;
  }

  .process-list li::after {
    margin-top: 10px;
  }

  .choice-grid {
    grid-template-columns: 1fr;
  }

  .choice-card {
    min-height: 72svh;
  }

  .choice-card__media {
    animation: softBreath 13s ease-in-out infinite;
  }

  .manifesto {
    min-height: 62svh;
    padding: 88px 22px;
  }

  .manifesto h2 {
    font-size: clamp(31px, 9vw, 48px);
    white-space: normal;
  }

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

  .faq-section {
    padding: 76px 22px;
  }

  .faq-item summary {
    min-height: 66px;
    align-items: flex-start;
    padding-top: 20px;
    font-size: 19px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 30px 22px 36px;
  }
}

@media (max-width: 430px) {
  .hero__actions {
    gap: 10px;
  }

  .button {
    min-width: 0;
    padding: 0 19px;
  }

  .choice-card p,
  .contact h2 + p {
    font-size: 15px;
  }
}

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

  .media-frame,
  .choice-card__media {
    transform: none !important;
    animation: none !important;
  }

  .hero__video {
    display: none !important;
  }
}
