:root {
  color-scheme: dark;
  --black: #070504;
  --ink: #f4ede5;
  --muted: #b9aa9b;
  --soft: #8d7d70;
  --espresso: #130c09;
  --espresso-2: #1d120e;
  --wood: #261812;
  --oxblood: #361014;
  --burgundy: #4a171d;
  --brass: #b08a55;
  --amber: #d7a15d;
  --smoke: #948a81;
  --line: rgba(244, 237, 229, 0.14);
  --line-strong: rgba(244, 237, 229, 0.24);
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --container: min(1120px, calc(100vw - 40px));
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  min-width: 320px;
  font-family: var(--sans);
  background:
    radial-gradient(circle at 18% 0%, rgba(74, 23, 29, 0.28), transparent 38rem),
    linear-gradient(180deg, #070504 0%, #100a07 42%, #070504 100%);
  color: var(--ink);
  letter-spacing: -0.01em;
  text-rendering: optimizeLegibility;
}

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

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

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

button, input, textarea { font: inherit; }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-140%);
  padding: 12px 16px;
  background: var(--ink);
  color: var(--black);
  border-radius: 999px;
}

.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 80;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  padding: 22px clamp(20px, 4vw, 52px);
  color: rgba(244, 237, 229, 0.9);
  background: linear-gradient(180deg, rgba(7, 5, 4, 0.78), rgba(7, 5, 4, 0));
  transition: background 240ms ease, border-color 240ms ease, padding 240ms ease;
}

.site-header.is-scrolled {
  padding-top: 16px;
  padding-bottom: 16px;
  background: rgba(7, 5, 4, 0.82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand-mark {
  justify-self: start;
  font-family: var(--serif);
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.brand-mark span {
  display: block;
  margin-top: 1px;
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.32em;
  color: var(--muted);
}

.nav-links {
  justify-self: center;
  display: flex;
  gap: clamp(18px, 3vw, 36px);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(244, 237, 229, 0.68);
}

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

.nav-links a:hover, .site-footer a:hover { color: var(--ink); }

.nav-cta {
  justify-self: end;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid rgba(176, 138, 85, 0.45);
  border-radius: 999px;
  color: var(--ink);
  font-size: 12px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  background: rgba(176, 138, 85, 0.08);
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.nav-cta:hover {
  transform: translateY(-1px);
  background: rgba(176, 138, 85, 0.14);
  border-color: rgba(176, 138, 85, 0.72);
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section-dark { background: var(--black); }
.section-warm { background: linear-gradient(180deg, #100a07 0%, #160e0a 100%); }
.section-espresso { background: linear-gradient(180deg, #130c09 0%, #090605 100%); }

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: grid;
  align-items: end;
  padding: 150px clamp(20px, 5vw, 72px) 76px;
  isolation: isolate;
}

.hero-visual,
.closing-visual {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(7, 5, 4, 0.95), rgba(7, 5, 4, 0.58) 45%, rgba(7, 5, 4, 0.82)),
    radial-gradient(circle at 72% 42%, rgba(215, 161, 93, 0.24), transparent 16rem),
    radial-gradient(circle at 58% 58%, rgba(74, 23, 29, 0.32), transparent 28rem),
    url("./assets/hero.webp") center right / cover no-repeat,
    linear-gradient(135deg, #070504 0%, #1e100b 44%, #090605 100%);
}

.hero-visual::before,
.closing-visual::before {
  content: "";
  position: absolute;
  inset: -10%;
  opacity: 0.28;
  background: radial-gradient(circle at 72% 34%, rgba(176, 138, 85, 0.08), transparent 28rem);
  transform: scale(1.1);
}

.cinema-frame {
  position: absolute;
  border: 1px solid rgba(244, 237, 229, 0.13);
  box-shadow: var(--shadow);
  opacity: 0.18;
  background:
    radial-gradient(circle at 30% 20%, rgba(215, 161, 93, 0.24), transparent 14rem),
    linear-gradient(145deg, rgba(54, 16, 20, 0.46), rgba(12, 7, 5, 0.92));
}

.frame-one {
  right: clamp(24px, 9vw, 132px);
  top: 16vh;
  width: min(38vw, 510px);
  height: 56vh;
  transform: rotate(1.5deg);
}

.frame-two {
  right: clamp(12px, 4vw, 70px);
  bottom: 12vh;
  width: min(22vw, 290px);
  height: 30vh;
  background:
    radial-gradient(circle at 70% 30%, rgba(176, 138, 85, 0.22), transparent 9rem),
    linear-gradient(150deg, rgba(35, 20, 14, 0.88), rgba(7, 5, 4, 0.96));
}

.cinema-line {
  position: absolute;
  left: 55%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(215, 161, 93, 0.26), transparent);
}

.grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(circle at 50% 0%, transparent 0, rgba(0,0,0,.56) 68%),
    linear-gradient(180deg, rgba(0,0,0,.18), rgba(0,0,0,.72));
}

.hero-content {
  max-width: 760px;
  position: relative;
  z-index: 2;
}

.eyebrow,
.section-kicker {
  margin: 0 0 22px;
  color: var(--brass);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

h1, h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.04em;
  text-wrap: pretty;
}

h1 {
  max-width: 820px;
  font-size: clamp(58px, 10vw, 128px);
  line-height: 0.86;
}

.hero-subhead {
  max-width: 520px;
  margin: 26px 0 0;
  color: rgba(244, 237, 229, 0.74);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 38px;
  flex-wrap: wrap;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 0 24px;
  border: 1px solid transparent;
  cursor: pointer;
  color: var(--ink);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.button.primary {
  background: linear-gradient(180deg, rgba(176, 138, 85, 0.26), rgba(176, 138, 85, 0.12));
  border-color: rgba(215, 161, 93, 0.46);
  box-shadow: 0 12px 40px rgba(176, 138, 85, 0.12);
}

.button.primary:hover,
.button.primary:focus-visible {
  transform: translateY(-1px);
  background: rgba(176, 138, 85, 0.22);
  border-color: rgba(215, 161, 93, 0.72);
}

.review-note {
  margin: 0;
  color: rgba(244, 237, 229, 0.58);
  font-size: 13px;
}

.mobile-access { display: none; }

.intro, .philosophy, .circle, .editorial, .access, .how, .final-cta {
  position: relative;
  padding: clamp(86px, 13vw, 170px) 0;
  overflow: hidden;
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.55fr minmax(0, 1.45fr) 0.8fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.intro-copy h2,
.manifesto h2,
.circle-copy h2,
.access-copy h2,
.how-copy h2,
.editorial-head h2,
.closing-content h2 {
  font-size: clamp(40px, 6vw, 82px);
  line-height: 0.98;
}

.intro-copy p,
.manifesto p,
.circle-copy p,
.access-copy p,
.how-copy p {
  margin: 26px 0 0;
  max-width: 660px;
  color: rgba(244, 237, 229, 0.72);
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.72;
}

.detail-panel {
  align-self: end;
  border-left: 1px solid rgba(176, 138, 85, 0.24);
  padding-left: 22px;
  color: var(--muted);
}

.detail-crop,
.portrait-block,
.editorial-image {
  position: relative;
  overflow: hidden;
  background: #140d0a;
  box-shadow: var(--shadow);
}

.detail-crop::before,
.portrait-block::before,
.editorial-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 28% 18%, rgba(215, 161, 93, 0.34), transparent 7rem),
    radial-gradient(circle at 78% 70%, rgba(74, 23, 29, 0.38), transparent 10rem),
    linear-gradient(135deg, rgba(244, 237, 229, 0.08), rgba(7, 5, 4, 0.98));
}

.detail-crop::after,
.portrait-block::after,
.editorial-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.42));
  opacity: 0.7;
}

.detail-crop-a {
  height: 320px;
  border-radius: 999px 999px 10px 10px;
  background:
    linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.58)),
    url("./assets/detail-amber.webp") center / cover no-repeat,
    #140d0a;
}

.detail-panel p {
  margin: 18px 0 0;
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.1;
  color: rgba(244, 237, 229, 0.68);
}

.manifesto-layout {
  display: grid;
  grid-template-columns: 0.52fr 1.48fr;
  gap: clamp(30px, 7vw, 100px);
}

.manifesto {
  max-width: 850px;
  border-top: 1px solid rgba(176, 138, 85, 0.28);
  padding-top: clamp(34px, 4vw, 58px);
}

.quiet-line {
  color: var(--ink) !important;
  font-family: var(--serif);
  font-size: clamp(30px, 4.2vw, 58px) !important;
  line-height: 1.02 !important;
}

.circle-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(34px, 7vw, 98px);
  align-items: center;
}

.people-composition {
  position: relative;
  min-height: 680px;
}

.portrait-main {
  position: absolute;
  left: 0;
  top: 0;
  width: 82%;
  height: 560px;
  border-radius: 2px;
  background:
    linear-gradient(180deg, rgba(0,0,0,.22), rgba(0,0,0,.78)),
    radial-gradient(circle at 48% 30%, rgba(215, 161, 93, 0.2), transparent 10rem),
    url("./assets/circle.webp") center / cover no-repeat,
    linear-gradient(135deg, #2b1812, #070504);
}

.portrait-small {
  position: absolute;
  right: 0;
  bottom: 20px;
  width: 48%;
  height: 270px;
  border: 1px solid rgba(244, 237, 229, 0.12);
  background:
    radial-gradient(circle at 60% 30%, rgba(74, 23, 29, 0.36), transparent 9rem),
    url("./assets/detail-burgundy.webp") center / cover no-repeat,
    linear-gradient(140deg, #1a0f0b, #070504);
}

.caption-chip {
  position: absolute;
  left: 28px;
  bottom: 74px;
  padding: 10px 14px;
  border: 1px solid rgba(244, 237, 229, 0.16);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(7, 5, 4, 0.62);
  backdrop-filter: blur(12px);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.editorial-head {
  display: grid;
  grid-template-columns: .6fr 1.4fr;
  gap: clamp(28px, 6vw, 88px);
  align-items: end;
  margin-bottom: clamp(42px, 7vw, 92px);
}

.editorial-head h2 { max-width: 760px; }

.editorial-intro,
.editorial-note,
.closing-subhead {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(244, 237, 229, 0.7);
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.7;
}

.format-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-bottom: 28px;
  border: 1px solid rgba(244, 237, 229, 0.12);
  background: rgba(244, 237, 229, 0.08);
}

.format-list p {
  margin: 0;
  min-height: 88px;
  display: flex;
  align-items: flex-end;
  padding: 18px;
  background: rgba(7, 5, 4, 0.72);
  color: rgba(244, 237, 229, 0.78);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.editorial-note {
  margin-bottom: clamp(42px, 7vw, 84px);
  color: rgba(244, 237, 229, 0.58);
}

.closing-subhead {
  margin-bottom: 34px;
}

.editorial-strip {
  width: min(1280px, calc(100vw - 28px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr .72fr .9fr;
  grid-template-rows: 290px 270px;
  gap: clamp(14px, 2vw, 26px);
  align-items: stretch;
}

.editorial-card {
  margin: 0;
  position: relative;
}

.editorial-wide { grid-column: 1 / 3; grid-row: 1; }
.editorial-tall { grid-column: 3; grid-row: 1 / 3; }
.editorial-small { grid-column: 1; grid-row: 2; width: 78%; justify-self: end; }
.editorial-offset { grid-column: 2; grid-row: 2; transform: translateY(38px); }

.editorial-image { width: 100%; height: 100%; min-height: 230px; }

.image-amber::before { background: radial-gradient(circle at 25% 25%, rgba(215,161,93,.44), transparent 12rem), linear-gradient(180deg, rgba(0,0,0,.12), rgba(0,0,0,.68)), url("./assets/detail-amber.webp") center / cover no-repeat, linear-gradient(135deg, #27160e, #070504); }
.image-wood::before { background: radial-gradient(circle at 70% 20%, rgba(176,138,85,.25), transparent 9rem), linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.72)), url("./assets/detail-wood.webp") center / cover no-repeat, linear-gradient(150deg, #301a12, #080504); }
.image-glass::before { background: radial-gradient(circle at 55% 50%, rgba(148,138,129,.20), transparent 8rem), linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.68)), url("./assets/detail-glass.webp") center / cover no-repeat, linear-gradient(140deg, #1b1310, #070504); }
.image-burgundy::before { background: radial-gradient(circle at 38% 28%, rgba(74,23,29,.58), transparent 13rem), linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.72)), url("./assets/detail-burgundy.webp") center / cover no-repeat, linear-gradient(135deg, #210d10, #070504); }

.editorial-card figcaption {
  margin-top: 13px;
  color: rgba(244, 237, 229, 0.63);
  font-family: var(--serif);
  font-size: clamp(22px, 2.6vw, 34px);
  line-height: 1;
}

.access-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: start;
}

.integration-note {
  font-size: 13px !important;
  color: var(--soft) !important;
  border-top: 1px solid rgba(244, 237, 229, 0.12);
  padding-top: 20px;
  margin-top: 32px !important;
}

.access-form {
  padding: clamp(22px, 4vw, 46px);
  border: 1px solid rgba(244, 237, 229, 0.14);
  background:
    linear-gradient(180deg, rgba(244, 237, 229, 0.055), rgba(244, 237, 229, 0.018)),
    rgba(7, 5, 4, 0.36);
  box-shadow: var(--shadow);
}

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

.field { margin-bottom: 18px; }

label {
  display: block;
  margin-bottom: 9px;
  color: rgba(244, 237, 229, 0.76);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

input, textarea {
  width: 100%;
  color: var(--ink);
  background: rgba(7, 5, 4, 0.44);
  border: 1px solid rgba(244, 237, 229, 0.16);
  border-radius: 0;
  outline: none;
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

input {
  min-height: 50px;
  padding: 0 15px;
}

textarea {
  resize: vertical;
  min-height: 140px;
  padding: 14px 15px;
}

input:focus,
textarea:focus {
  border-color: rgba(215, 161, 93, 0.68);
  background: rgba(7, 5, 4, 0.62);
  box-shadow: 0 0 0 3px rgba(215, 161, 93, 0.08);
}

input[aria-invalid="true"],
textarea[aria-invalid="true"] {
  border-color: rgba(205, 84, 84, 0.85);
}

.form-button { width: 100%; margin-top: 8px; }

.form-note, .success-message {
  margin: 16px 0 0;
  color: var(--soft);
  font-size: 13px;
  line-height: 1.55;
}

.success-message {
  display: none;
  color: rgba(244, 237, 229, 0.86);
  border-top: 1px solid rgba(176, 138, 85, 0.25);
  padding-top: 16px;
}

.access-form.is-submitted .success-message { display: block; }

.how-grid {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: clamp(32px, 6vw, 84px);
  align-items: start;
}

.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line);
}

.steps li {
  min-height: 180px;
  padding: 26px 22px;
  border-right: 1px solid var(--line);
}

.steps li:last-child { border-right: 0; }

.steps span {
  color: var(--brass);
  font-family: var(--serif);
  font-size: 42px;
  line-height: 1;
}

.steps p {
  margin: 56px 0 0;
  color: rgba(244, 237, 229, 0.78);
  font-size: 14px;
  line-height: 1.45;
}

.final-cta {
  min-height: 72svh;
  display: grid;
  align-items: center;
  isolation: isolate;
}

.closing-visual {
  background:
    linear-gradient(90deg, rgba(7,5,4,.96), rgba(7,5,4,.62), rgba(7,5,4,.9)),
    radial-gradient(circle at 68% 48%, rgba(176, 138, 85, 0.28), transparent 18rem),
    linear-gradient(135deg, #070504 0%, #2a1114 52%, #070504 100%);
}

.closing-content {
  max-width: 820px;
}

.closing-content h2 { margin-bottom: 34px; }

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 4vw, 52px);
  color: rgba(244, 237, 229, 0.46);
  background: #070504;
  border-top: 1px solid rgba(244, 237, 229, 0.1);
  font-size: 12px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.site-footer p { margin: 0; }

.site-footer .footer-seo {
  max-width: 540px;
  margin-top: 10px;
  line-height: 1.7;
  letter-spacing: 0.04em;
  text-transform: none;
  color: rgba(244, 237, 229, 0.48);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

@media (max-width: 940px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links { display: none; }
  .nav-cta { display: none; }

  .hero {
    padding-top: 132px;
    padding-bottom: 96px;
  }

  .frame-one {
    right: -12vw;
    top: 20vh;
    width: 70vw;
    height: 50vh;
    opacity: 0.72;
  }

  .frame-two { display: none; }

  .intro-grid,
  .manifesto-layout,
  .circle-grid,
  .editorial-head,
  .access-grid,
  .how-grid {
    grid-template-columns: 1fr;
  }

  .intro-copy { order: 1; }
  .detail-panel { order: 2; max-width: 360px; }
  .people-composition { min-height: 540px; }
  .portrait-main { height: 460px; }
  .portrait-small { height: 230px; }

  .editorial-strip {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .editorial-wide,
  .editorial-tall,
  .editorial-small,
  .editorial-offset {
    grid-column: auto;
    grid-row: auto;
    width: 100%;
    transform: none;
  }

  .editorial-image { min-height: 300px; }
  .editorial-tall .editorial-image { min-height: 430px; }
  .format-list { grid-template-columns: 1fr 1fr; }

  .steps { grid-template-columns: 1fr 1fr; }
  .steps li:nth-child(2) { border-right: 0; }
  .steps li:nth-child(-n+2) { border-bottom: 1px solid var(--line); }

  .mobile-access {
    position: fixed;
    left: 18px;
    right: 18px;
    bottom: 16px;
    z-index: 90;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(215, 161, 93, 0.6);
    border-radius: 999px;
    background: rgba(12, 7, 5, 0.84);
    backdrop-filter: blur(18px);
    color: var(--ink);
    box-shadow: 0 20px 60px rgba(0,0,0,.42);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
  }
}

@media (max-width: 620px) {
  :root { --container: min(100% - 32px, 1120px); }

  html { scroll-padding-top: 78px; }

  .site-header {
    padding: 18px 18px 12px;
  }

  .brand-mark { font-size: 20px; }

  .hero {
    min-height: 100svh;
    padding: 122px 18px 90px;
    align-items: center;
  }

  h1 {
    font-size: clamp(54px, 16vw, 78px);
    line-height: 0.9;
  }

  .hero-subhead {
    font-size: 16px;
    line-height: 1.48;
    max-width: 330px;
  }

  .hero-actions { margin-top: 30px; }
  .hero-actions .button { width: 100%; }
  .review-note { width: 100%; text-align: center; }

  .frame-one {
    top: 36vh;
    right: -30vw;
    width: 96vw;
    height: 48vh;
    opacity: 0.5;
  }

  .intro, .philosophy, .circle, .editorial, .access, .how, .final-cta {
    padding: 78px 0;
  }

  .intro-copy h2,
  .manifesto h2,
  .circle-copy h2,
  .access-copy h2,
  .how-copy h2,
  .editorial-head h2,
  .closing-content h2 {
    font-size: clamp(37px, 11vw, 54px);
    line-height: 1;
  }

  .intro-copy p,
  .manifesto p,
  .circle-copy p,
  .access-copy p,
  .how-copy p {
    font-size: 16px;
    line-height: 1.66;
  }

  .detail-crop-a { height: 250px; }

  .people-composition { min-height: 460px; }
  .portrait-main { width: 86%; height: 380px; }
  .portrait-small { width: 54%; height: 190px; bottom: 0; }
  .caption-chip { left: 16px; bottom: 48px; }

  .editorial-strip {
    width: calc(100vw - 32px);
    grid-template-columns: 1fr;
  }

  .editorial-image,
  .editorial-tall .editorial-image { min-height: 260px; }

  .format-list { grid-template-columns: 1fr; }
  .format-list p { min-height: 64px; }

  .field-pair { grid-template-columns: 1fr; gap: 0; }
  .access-form { padding: 22px 16px; }

  .steps { grid-template-columns: 1fr; }
  .steps li,
  .steps li:nth-child(2),
  .steps li:nth-child(-n+2) {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .steps li:last-child { border-bottom: 0; }
  .steps p { margin-top: 28px; }

  .site-footer {
    display: block;
    padding-bottom: 82px;
  }
  .site-footer a { display: inline-block; margin-top: 12px; }
}

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