@font-face {
  font-family: "Inter Variable";
  src: url("assets/fonts/inter-var-latin.woff2") format("woff2");
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --ink: #080a0d;
  --ink-soft: #0c0f13;
  --panel: #11151a;
  --panel-2: #171c22;
  --paper: #e8edf1;
  --silver: #c6cdd4;
  --silver-bright: #f4f7f9;
  --muted: #8e99a5;
  --blue: #a9dced;
  --blue-deep: #345f70;
  --green: #b6f0d9;
  --line: rgba(214, 225, 234, 0.17);
  --line-strong: rgba(225, 235, 242, 0.3);
  --serif: Iowan Old Style, Baskerville, "Times New Roman", serif;
  --sans: "Inter Variable", Inter, system-ui, sans-serif;
  --wrap: min(1440px, calc(100% - 96px));
  --header-h: 86px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

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

html {
  scroll-behavior: smooth;
  background: var(--ink);
  scrollbar-color: var(--blue-deep) var(--ink);
}

body {
  margin: 0;
  color: var(--silver-bright);
  background: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: clip;
}

body.menu-open { overflow: hidden; }

::selection { color: var(--ink); background: var(--blue); }

a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { color: inherit; }
img { display: block; max-width: 100%; }

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 999;
  padding: 10px 15px;
  color: var(--ink);
  background: var(--silver-bright);
  transform: translateY(-150%);
}

.skip-link:focus { transform: none; }

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 300;
  height: 2px;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--blue-deep), var(--silver-bright));
  box-shadow: 0 0 16px var(--blue);
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 18px;
  left: 50%;
  width: min(1440px, calc(100% - 36px));
  height: var(--header-h);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 13px 0 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(8, 10, 13, .94);
  transform: translateX(-50%);
  transition: background .3s ease, border-color .3s ease;
}

.site-header.is-scrolled {
  background: rgba(8, 10, 13, .98);
  border-color: var(--line-strong);
}

.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 13px;
}

.brand-mark {
  position: relative;
  width: 38px;
  height: 38px;
  border: 1px solid var(--silver);
  border-radius: 50%;
  box-shadow: inset 0 0 0 6px rgba(198, 205, 212, .08);
}

.brand-mark::after {
  content: "";
  position: absolute;
  right: 1px;
  bottom: 3px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 10px rgba(169, 220, 237, .5);
}

.brand-mark i {
  position: absolute;
  width: 7px;
  height: 7px;
  top: 4px;
  left: 5px;
  border-radius: 50%;
  background: var(--silver-bright);
}

.brand-copy { display: flex; flex-direction: column; line-height: 1.12; }
.brand-copy strong { font-size: .86rem; letter-spacing: .02em; }
.brand-copy small { margin-top: 5px; color: var(--muted); font-size: .6rem; letter-spacing: .12em; text-transform: uppercase; }

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 5px;
  border: 1px solid rgba(214, 225, 234, .1);
  border-radius: 100px;
  background: rgba(255, 255, 255, .025);
}

.desktop-nav a {
  padding: 8px 13px;
  border-radius: 100px;
  color: var(--muted);
  font-size: .7rem;
  font-weight: 650;
  letter-spacing: .06em;
  transition: color .2s ease, background .2s ease;
}

.desktop-nav a:hover, .desktop-nav a.is-active {
  color: var(--silver-bright);
  background: rgba(255, 255, 255, .07);
}

.header-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 58px;
  padding: 0 22px;
  color: var(--ink);
  border-radius: 12px;
  background: var(--silver-bright);
  font-size: .78rem;
  font-weight: 750;
  transition: transform .25s var(--ease), background .25s ease;
}

.header-cta:hover { transform: translateY(-2px); background: var(--blue); }
.header-cta span { font-size: 1rem; }

.menu-toggle { display: none; }
.mobile-nav[hidden] { display: none; }

.hero {
  position: relative;
  width: var(--wrap);
  min-height: 100svh;
  margin: 0 auto;
  padding: calc(var(--header-h) + 110px) 0 75px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, .92fr);
  gap: clamp(45px, 6vw, 100px);
  align-items: center;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-strong) 16%, var(--line-strong) 84%, transparent);
}

.hero-copy { position: relative; z-index: 2; padding-top: 18px; }

.eyebrow, .section-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: .7rem;
  font-weight: 650;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.eyebrow {
  min-height: 24px;
  margin-bottom: 0;
  line-height: 1;
}

.eyebrow .eyebrow-dot {
  flex: 0 0 6px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px rgba(182, 240, 217, .5);
}

.eyebrow-text {
  display: inline-flex;
  align-items: center;
  line-height: 1;
  transform: translateY(2px);
}

.hero h1 {
  margin: 28px 0 38px;
  font-size: clamp(4.3rem, 7.7vw, 8.4rem);
  font-weight: 540;
  letter-spacing: -.077em;
  line-height: .79;
}

.hero h1 em, h2 em {
  color: var(--blue);
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -.055em;
}

.hero h1 em {
  display: inline-block;
  padding-right: .08em;
  font-size: 1.03em;
  line-height: 1.1;
}

.hero-intro {
  display: grid;
  grid-template-columns: minmax(220px, 410px) auto;
  gap: 30px;
  align-items: end;
  padding-left: clamp(0px, 7vw, 115px);
}

.hero-intro > p {
  margin-bottom: 0;
  color: #b6bec6;
  font-size: clamp(1rem, 1.15vw, 1.18rem);
  line-height: 1.62;
}

.hero-actions { display: flex; flex-direction: column; align-items: flex-start; gap: 19px; }

.button {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 58px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 10px;
  cursor: pointer;
  font-size: .76rem;
  font-weight: 750;
  transition: transform .25s var(--ease), background .25s ease, border-color .25s ease;
}

.button-primary { color: var(--ink); background: var(--silver-bright); }
.button-primary:hover { background: var(--blue); transform: translateY(-3px); }

.text-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding-bottom: 4px;
  color: var(--silver);
  font-size: .75rem;
  font-weight: 650;
}

.text-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform-origin: right;
  transition: transform .35s var(--ease);
}

.text-link:hover::after { transform: scaleX(.35); }

.hero-visual {
  position: relative;
  max-width: 625px;
  justify-self: end;
  margin-right: 2vw;
}

.hero-photo {
  position: relative;
  margin: 0;
  aspect-ratio: .82;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 190px 190px 24px 24px;
  background: var(--panel);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .42);
}

.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 9, 11, .02) 50%, rgba(7, 9, 11, .68)),
    linear-gradient(90deg, rgba(111, 176, 199, .14), transparent 45%);
  pointer-events: none;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 54% center;
  opacity: .8;
  transform: scale(1.015);
  transition: transform 1.2s var(--ease), opacity 1.2s ease;
}

.hero-photo:hover img { opacity: .9; transform: scale(1.055); }

.hero-photo figcaption {
  position: absolute;
  z-index: 2;
  left: 24px;
  right: 24px;
  bottom: 21px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(244, 247, 249, .72);
  font-size: .57rem;
  font-weight: 650;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.metal-badge {
  position: absolute;
  z-index: 3;
  top: 42%;
  left: -64px;
  width: 126px;
  height: 126px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(225, 235, 242, .22);
  border-radius: 50%;
  background: rgba(11, 14, 18, .96);
}

.badge-ring {
  position: absolute;
  inset: 7px;
  width: calc(100% - 14px);
  height: calc(100% - 14px);
}
.metal-badge > span { font-family: var(--serif); font-size: 2rem; font-style: italic; }

.hero-note {
  position: absolute;
  z-index: 3;
  right: -40px;
  bottom: 72px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  width: 210px;
  padding: 16px 18px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: rgba(11, 14, 18, .97);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .35);
}

.hero-note p { margin: 0; color: var(--muted); font-size: .67rem; line-height: 1.55; }
.hero-note strong { color: var(--silver-bright); font-size: .73rem; }
.status-dot { flex: 0 0 auto; width: 7px; height: 7px; margin-top: 4px; border-radius: 50%; background: var(--green); box-shadow: 0 0 8px var(--green); }

.hero-index, .section-number {
  position: absolute;
  left: 0;
  bottom: 27px;
  color: var(--muted);
  font-size: .62rem;
  font-weight: 650;
  letter-spacing: .14em;
}

.hero-orbit {
  position: absolute;
  pointer-events: none;
  border: 1px solid rgba(198, 205, 212, .06);
  border-radius: 50%;
}

.orbit-one { right: -12vw; top: 15%; width: 50vw; height: 50vw; }
.orbit-two { right: -4vw; top: 23%; width: 34vw; height: 34vw; }

.marquee {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
}

.marquee-track {
  width: max-content;
  display: flex;
  animation: marquee 34s linear infinite;
  backface-visibility: hidden;
  will-change: transform;
}

.marquee-sequence {
  flex: none;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 14px 28px 14px 0;
}

.marquee span { font-size: .68rem; font-weight: 760; letter-spacing: .12em; text-transform: uppercase; }
.marquee i { color: var(--blue-deep); font-size: .6rem; font-style: normal; }

.section-shell {
  position: relative;
  width: var(--wrap);
  margin: 0 auto;
  padding: clamp(105px, 10vw, 175px) 0;
}

.manifesto { border-bottom: 1px solid var(--line); }
.manifesto .section-number { top: 56px; bottom: auto; }
.section-number span { opacity: .4; }

.manifesto-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(180px, .32fr) 1fr;
  gap: 5vw;
}

.manifesto-copy h2, .section-heading h2, .process-heading h2, .promise h2, .questions h2, .contact h2 {
  margin-bottom: 0;
  font-size: clamp(2.9rem, 5.4vw, 6.6rem);
  font-weight: 520;
  letter-spacing: -.065em;
  line-height: .98;
}

.manifesto-copy h2 { max-width: 1100px; }

.manifesto-body {
  max-width: 790px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin: 70px 0 0 auto;
}

.manifesto-body p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.75;
}

.manifesto-prompt {
  position: absolute;
  top: clamp(240px, 18vw, 285px);
  left: 0;
  width: min(235px, 21vw);
  padding-top: 23px;
  border-top: 1px solid var(--line-strong);
}

.manifesto-prompt::before {
  content: "";
  position: absolute;
  top: -3px;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue);
}

.manifesto-prompt > span {
  color: var(--blue);
  font-size: .57rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.manifesto-prompt > p {
  margin: 15px 0 13px;
  color: var(--silver-bright);
  font-family: var(--serif);
  font-size: clamp(1.65rem, 2.15vw, 2.45rem);
  font-style: italic;
  letter-spacing: -.035em;
  line-height: 1.04;
}

.manifesto-prompt > small {
  display: block;
  color: var(--muted);
  font-size: .68rem;
  line-height: 1.65;
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 70px;
}

.section-heading h2 { margin-top: 24px; font-size: clamp(2.8rem, 4.8vw, 5.7rem); }
.heading-note { flex: 0 0 235px; margin: 0 0 8px; color: var(--muted); font-size: .73rem; line-height: 1.65; }

.possibility-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr 1fr;
  grid-auto-rows: minmax(230px, auto);
  gap: 14px;
}

.possibility-card {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  padding: 27px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.018));
  transition: transform .45s var(--ease), border-color .45s ease, background .45s ease;
}

.possibility-card:hover { transform: translateY(-5px); border-color: var(--line-strong); background-color: rgba(255,255,255,.025); }

.card-feature { grid-row: span 2; min-height: 654px; }
.card-photo { grid-column: span 2; min-height: 360px; }
.card-compact { min-height: 300px; }
.card-wide { grid-column: span 2; min-height: 300px; display: grid; grid-template-columns: 1.15fr .85fr; align-items: end; gap: 35px; }
.card-blue { color: var(--ink); background: var(--blue); border-color: transparent; }
.card-blue:hover { background: #b9e5f2; }
.card-blue .card-topline, .card-blue .card-copy p { color: rgba(8, 10, 13, .62); }

.card-topline {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 25px;
  color: var(--muted);
  font-size: .62rem;
  font-weight: 650;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.card-flow-label {
  display: inline-flex;
  align-items: center;
  gap: .7em;
  line-height: 1;
}

.card-flow-arrow {
  display: block;
  flex: 0 0 2.15em;
  width: 2.15em;
  height: .72em;
  overflow: visible;
  transform: translateY(-.06em);
}

.card-flow-arrow path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.card-copy { position: relative; z-index: 2; }
.card-copy h3 { max-width: 500px; margin: 0 0 13px; font-size: clamp(1.35rem, 2vw, 2.1rem); font-weight: 570; letter-spacing: -.045em; line-height: 1.08; }
.card-copy p { max-width: 460px; margin: 0; color: var(--muted); font-size: .75rem; line-height: 1.65; }

.ring-study {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  margin: 5px 0;
}

.ring {
  position: absolute;
  border: 1px solid rgba(220, 230, 237, .33);
  border-radius: 50%;
  box-shadow: inset 10px -8px 28px rgba(201, 221, 230, .07), 0 0 40px rgba(164, 210, 228, .05);
}

.ring::before, .ring::after { content: ""; position: absolute; border-radius: 50%; }
.ring::before { inset: 12%; border: 1px solid rgba(220, 230, 237, .14); }
.ring::after { width: 7px; height: 7px; top: 12%; right: 17%; background: var(--blue); box-shadow: 0 0 18px rgba(169, 220, 237, .8); }
.ring-a { width: 64%; height: 64%; top: 12%; left: 8%; transform: rotateX(61deg) rotateZ(-18deg); }
.ring-b { width: 57%; height: 57%; top: 26%; right: 2%; transform: rotateX(65deg) rotateZ(26deg); }
.ring-c { width: 38%; height: 38%; bottom: 2%; left: 22%; transform: rotateX(58deg) rotateZ(5deg); }

.card-photo { justify-content: flex-end; }
.card-photo > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .65; transition: transform .8s var(--ease), opacity .8s ease; }
.card-photo:hover > img { opacity: .74; transform: scale(1.035); }
.photo-shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(7,9,12,.15), rgba(7,9,12,.9)); }
.card-photo .card-topline { position: absolute; top: 27px; left: 27px; right: 27px; }

.gem-icon {
  position: relative;
  width: 105px;
  height: 105px;
  margin: 12px auto;
  clip-path: polygon(50% 0, 88% 28%, 72% 82%, 50% 100%, 28% 82%, 12% 28%);
  background: linear-gradient(145deg, rgba(8,10,13,.06), rgba(8,10,13,.26));
}

.gem-icon::after {
  content: "";
  position: absolute;
  inset: 12px;
  clip-path: inherit;
  border: 1px solid rgba(8,10,13,.4);
  background: rgba(255,255,255,.11);
}

.sketch-lines { position: relative; height: 115px; margin: 12px 0; }
.sketch-lines i { position: absolute; display: block; height: 1px; background: linear-gradient(90deg, transparent, var(--line-strong), transparent); transform-origin: left; }
.sketch-lines i:nth-child(1) { top: 20%; left: 5%; width: 88%; transform: rotate(17deg); }
.sketch-lines i:nth-child(2) { top: 60%; left: 1%; width: 78%; transform: rotate(-12deg); }
.sketch-lines i:nth-child(3) { top: 45%; left: 22%; width: 68%; transform: rotate(39deg); }

.wide-statement {
  align-self: center;
  padding: 0 2vw;
  color: var(--silver-bright);
  font-size: clamp(2rem, 3vw, 3.5rem);
  font-weight: 540;
  letter-spacing: -.055em;
  line-height: 1.02;
}

.wide-statement em {
  display: block;
  margin-top: .08em;
  color: var(--blue);
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  letter-spacing: -.045em;
}
.card-wide .card-topline { margin-bottom: 45px; }

.process { border-top: 1px solid var(--line); }
.process .section-number { top: 75px; bottom: auto; }
.process-heading { width: 70%; margin-left: auto; }
.process-heading h2 { margin-top: 24px; }

.process-console {
  margin-top: 75px;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(13, 16, 20, .8);
}

.process-tabs { display: grid; grid-template-columns: repeat(4, 1fr); border-bottom: 1px solid var(--line); }

.process-tab {
  position: relative;
  min-height: 125px;
  padding: 24px;
  display: grid;
  grid-template-columns: 30px 1fr;
  align-content: center;
  column-gap: 14px;
  text-align: left;
  color: var(--muted);
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  transition: color .25s ease, background .25s ease;
}

.process-tab:last-child { border-right: 0; }
.process-tab::after { content: ""; position: absolute; left: 0; bottom: -1px; width: 100%; height: 2px; background: var(--blue); transform: scaleX(0); transition: transform .4s var(--ease); }
.process-tab:hover { color: var(--silver); background: rgba(255,255,255,.025); }
.process-tab.is-active { color: var(--silver-bright); background: rgba(255,255,255,.035); }
.process-tab.is-active::after { transform: scaleX(1); }
.process-tab span { grid-row: span 2; color: var(--blue); font-size: .6rem; letter-spacing: .1em; }
.process-tab strong { font-size: .8rem; font-weight: 680; }
.process-tab small { color: var(--muted); font-size: .6rem; }

.process-panel { min-height: 580px; display: grid; grid-template-columns: 1.1fr .9fr; outline: 0; }
.process-console.is-enhanced .process-panel:not(.is-active) { display: none; }
.process-panel:focus-visible { outline: 2px solid var(--blue); outline-offset: -2px; }
.process-console:not(.is-enhanced) .process-panel + .process-panel { border-top: 1px solid var(--line); }
.process-image-wrap { position: relative; min-height: 580px; overflow: hidden; }
.process-image-wrap::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent 55%, rgba(12,15,19,.42)); pointer-events: none; }
.process-image-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: 52% center; opacity: .65; }
.process-image-wrap span { position: absolute; z-index: 2; left: 24px; bottom: 22px; padding: 7px 10px; color: var(--silver); border: 1px solid var(--line-strong); border-radius: 100px; background: rgba(8,10,13,.65); font-size: .55rem; font-weight: 650; letter-spacing: .12em; text-transform: uppercase; }

.process-content { align-self: center; padding: clamp(38px, 5vw, 85px); }
.process-content > span { color: var(--blue); font-size: .63rem; font-weight: 650; letter-spacing: .14em; text-transform: uppercase; }
.process-content h3 { margin: 24px 0 20px; font-size: clamp(2rem, 3.4vw, 4rem); font-weight: 520; letter-spacing: -.06em; line-height: 1; }
.process-content > p { color: var(--muted); font-size: .86rem; line-height: 1.75; }
.process-content ul { list-style: none; padding: 0; margin: 32px 0 36px; }
.process-content li { position: relative; padding: 11px 0 11px 23px; color: var(--silver); border-bottom: 1px solid var(--line); font-size: .7rem; }
.process-content li::before { content: ""; position: absolute; left: 2px; top: 50%; width: 5px; height: 5px; border-radius: 50%; background: var(--green); transform: translateY(-50%); }

.promise { padding-top: 0; }
.promise-panel {
  position: relative;
  min-height: 690px;
  padding: clamp(45px, 6vw, 90px);
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  gap: 8vw;
  overflow: hidden;
  color: var(--ink);
  border-radius: 22px;
  background:
    radial-gradient(circle at 7% 100%, rgba(83, 127, 145, .2), transparent 35%),
    linear-gradient(135deg, #c8d0d6, #f1f4f5 52%, #aebbc4);
}

.promise-panel::after { content: ""; position: absolute; inset: 0; background: repeating-linear-gradient(120deg, transparent 0 50px, rgba(255,255,255,.035) 51px, transparent 52px); }
.promise-copy, .promise-specs { position: relative; z-index: 2; }
.promise .section-kicker { color: rgba(8, 10, 13, .55); }
.promise h2 { margin: 25px 0 34px; font-size: clamp(3rem, 5.1vw, 6rem); }
.promise h2 em { color: var(--blue-deep); }
.promise-copy > p:not(.section-kicker) { max-width: 630px; font-size: .95rem; line-height: 1.75; }
.promise .small-print { margin-top: 34px; padding-left: 20px; border-left: 1px solid rgba(8,10,13,.3); color: rgba(8,10,13,.62); font-size: .7rem !important; }

.promise-specs { border-top: 1px solid rgba(8,10,13,.2); }
.promise-specs > div { display: grid; grid-template-columns: 35px 1fr; gap: 5px 13px; padding: 22px 0; border-bottom: 1px solid rgba(8,10,13,.2); }
.promise-specs span { grid-row: span 2; color: var(--blue-deep); font-size: .61rem; font-weight: 750; }
.promise-specs strong { font-size: .8rem; }
.promise-specs small { color: rgba(8,10,13,.58); font-size: .67rem; }

.promise-orbit { position: absolute; left: -11%; bottom: -45%; width: 620px; height: 620px; border: 1px solid rgba(8,10,13,.18); border-radius: 50%; }
.promise-orbit::before, .promise-orbit::after { content: ""; position: absolute; border: 1px solid rgba(8,10,13,.14); border-radius: 50%; }
.promise-orbit::before { inset: 14%; }
.promise-orbit::after { inset: 31%; }
.workshop { border-top: 1px solid var(--line); }
.workshop-collage {
  min-height: 1080px;
  display: grid;
  grid-template-columns: .78fr 1.25fr 1fr;
  grid-template-rows: 450px 580px;
  gap: 18px;
}

.workshop-shot { position: relative; margin: 0; overflow: hidden; border-radius: 14px; background: var(--panel); }
.workshop-shot img { width: 100%; height: 100%; object-fit: cover; opacity: .75; transition: transform 1s var(--ease), opacity 1s ease; }
.shot-two img { object-position: 59% center; }
.workshop-shot:hover img { opacity: .85; transform: scale(1.04); }
.workshop-shot figcaption { position: absolute; right: 14px; bottom: 14px; padding: 6px 9px; border-radius: 100px; background: rgba(8,10,13,.72); color: var(--silver); font-size: .54rem; letter-spacing: .12em; text-transform: uppercase; }
.shot-one { grid-column: 1 / 3; }
.shot-two { grid-column: 3; grid-row: 1 / 3; }
.shot-three { grid-column: 2; grid-row: 2; }

.workshop-story {
  grid-column: 1;
  grid-row: 2;
  align-self: stretch;
  padding: clamp(30px, 4vw, 60px) 8px 0 0;
}

.workshop-story > span { color: var(--blue); font-size: .62rem; font-weight: 650; letter-spacing: .13em; text-transform: uppercase; }
.workshop-story h3 { margin: 25px 0 25px; font-size: clamp(2.2rem, 3.4vw, 4rem); font-weight: 520; letter-spacing: -.055em; line-height: 1; }
.workshop-story p { color: var(--muted); font-size: .78rem; line-height: 1.75; }
.workshop-story .signature { margin-top: 45px; color: var(--silver-bright); font-family: var(--serif); font-size: 1.6rem; font-style: italic; }
.signature i { color: var(--muted); font-family: var(--sans); font-size: .6rem; font-style: normal; letter-spacing: .1em; text-transform: uppercase; }

.questions {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 9vw;
  border-top: 1px solid var(--line);
}

.questions-intro { position: sticky; top: 135px; align-self: start; }
.questions h2 { margin: 28px 0 35px; font-size: clamp(2.9rem, 4.4vw, 5.3rem); }
.questions-intro > p:not(.section-kicker) { max-width: 470px; color: var(--muted); font-size: .82rem; line-height: 1.75; }
.questions-intro .text-link { margin-top: 20px; }

.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; list-style: none; display: grid; grid-template-columns: 38px 1fr 24px; gap: 15px; align-items: center; padding: 31px 2px; cursor: pointer; font-size: clamp(1rem, 1.25vw, 1.25rem); font-weight: 560; letter-spacing: -.02em; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: var(--blue); font-size: .58rem; font-weight: 650; letter-spacing: .1em; }
.faq-list summary i, .faq-list summary i::after { display: block; width: 12px; height: 1px; background: var(--silver); transition: transform .3s var(--ease); }
.faq-list summary i::after { content: ""; transform: rotate(90deg); }
.faq-list details[open] summary i::after { transform: rotate(0); }
.faq-list details p { margin: -3px 45px 30px 53px; color: var(--muted); font-size: .76rem; line-height: 1.75; }

.contact { width: 100%; padding-left: max(48px, calc((100% - 1440px) / 2)); padding-right: max(48px, calc((100% - 1440px) / 2)); background: #0b0e12; }
.contact-panel { display: grid; grid-template-columns: 1.05fr .95fr; gap: 10vw; }
.contact-copy h2 { margin: 28px 0 30px; max-width: 680px; }
.contact-copy > p:not(.section-kicker) { max-width: 570px; color: var(--muted); }

.whatsapp-button {
  max-width: 650px;
  min-height: 100px;
  margin-top: 45px;
  padding: 18px;
  display: grid;
  grid-template-columns: 52px 1fr auto;
  align-items: center;
  gap: 18px;
  color: var(--ink);
  border-radius: 14px;
  background: var(--green);
  transition: transform .35s var(--ease), background .2s ease;
}

.whatsapp-button:hover { transform: translateY(-4px); background: #cbf7e7; }
.whatsapp-icon { width: 52px; height: 52px; display: grid; place-items: center; border: 1px solid rgba(8,10,13,.25); border-radius: 50%; font-size: 1.1rem; }
.whatsapp-button span:nth-child(2) { display: flex; flex-direction: column; }
.whatsapp-button small { color: rgba(8,10,13,.56); font-size: .55rem; font-weight: 650; letter-spacing: .1em; text-transform: uppercase; }
.whatsapp-button strong { font-size: .94rem; }
.whatsapp-button b { font-size: .75rem; }

.contact-details { max-width: 650px; display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 50px; border-top: 1px solid var(--line); }
.contact-details > div { padding: 21px 15px 0 0; border-right: 1px solid var(--line); }
.contact-details > div:not(:first-child) { padding-left: 15px; }
.contact-details > div:last-child { border: 0; }
.contact-details span, .footer-main span { color: var(--blue); font-size: .56rem; font-weight: 650; letter-spacing: .13em; text-transform: uppercase; }
.contact-details p { margin: 10px 0 0; color: var(--silver); font-size: .65rem; line-height: 1.65; }

.contact-form {
  padding: clamp(28px, 4vw, 54px);
  border: 1px solid var(--line);
  border-radius: 17px;
  background: linear-gradient(145deg, rgba(255,255,255,.045), rgba(255,255,255,.018));
}

.form-heading { display: flex; justify-content: space-between; align-items: center; margin-bottom: 38px; }
.form-heading span { font-size: 1.1rem; font-weight: 640; }
.form-heading small { color: var(--muted); font-size: .56rem; letter-spacing: .1em; text-transform: uppercase; }
.contact-form label { display: block; margin: 23px 0 8px; color: var(--muted); font-size: .59rem; font-weight: 650; letter-spacing: .11em; text-transform: uppercase; }
.contact-form input, .contact-form textarea { width: 100%; padding: 13px 0; color: var(--silver-bright); border: 0; border-bottom: 1px solid var(--line-strong); border-radius: 0; outline: 0; background: transparent; font-size: .84rem; transition: border-color .2s ease; }
.contact-form textarea { resize: vertical; min-height: 130px; }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: #59626c; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--blue); }
.contact-form .button { width: 100%; margin-top: 30px; }
.honeypot { position: absolute !important; left: -10000px !important; opacity: 0 !important; }
.form-response { display: none; margin-top: 15px; padding: 11px 13px; border-radius: 7px; font-size: .7rem; }
.form-response.is-success { display: block; color: var(--green); background: rgba(182,240,217,.08); }
.form-response.is-error { display: block; color: #ffc4bd; background: rgba(255,120,105,.08); }
.form-privacy { margin: 13px 0 0; color: #788592; font-size: .56rem; }

.site-footer {
  padding: 90px max(48px, calc((100% - 1440px) / 2)) 25px;
  border-top: 1px solid var(--line);
  background: var(--ink);
}

.footer-brand { display: inline-block; font-size: clamp(3.6rem, 8vw, 8rem); font-weight: 520; letter-spacing: -.075em; line-height: .72; }
.footer-brand em { color: var(--blue); font-family: var(--serif); font-weight: 400; }
.footer-main { display: grid; grid-template-columns: repeat(3, 1fr); gap: 55px; width: 58%; margin: 90px 0 70px auto; }
.footer-main p { margin-top: 12px; color: var(--muted); font-size: .68rem; line-height: 1.85; }
.footer-main a:hover { color: var(--silver-bright); }

.footer-bottom { min-height: 65px; display: grid; grid-template-columns: 1fr auto 1fr; gap: 25px; align-items: end; border-top: 1px solid var(--line); color: #788592; font-size: .55rem; letter-spacing: .03em; }
.footer-bottom p { margin: 0; }
.footer-bottom > a { justify-self: end; }
.footer-bottom div { display: flex; gap: 18px; }
.footer-bottom button { padding: 0; border: 0; background: none; cursor: pointer; font-size: inherit; }
.footer-bottom button:hover, .footer-bottom a:hover { color: var(--silver); }

.legal-modal {
  width: min(680px, calc(100% - 34px));
  max-height: min(760px, calc(100dvh - 40px));
  padding: 45px;
  color: var(--silver);
  border: 1px solid var(--line-strong);
  border-radius: 17px;
  background: #11151a;
  box-shadow: 0 30px 100px rgba(0,0,0,.7);
}

.legal-modal::backdrop { background: rgba(3,4,6,.88); }
.legal-modal h2 { margin: 18px 0 30px; color: var(--silver-bright); font-size: clamp(2.4rem, 5vw, 4.3rem); font-weight: 520; letter-spacing: -.06em; }
.legal-modal p { color: var(--muted); font-size: .76rem; line-height: 1.75; }
.legal-modal h3 { color: var(--silver-bright); font-size: .82rem; font-weight: 600; margin: 22px 0 8px; letter-spacing: -.01em; }
.legal-modal h3:first-of-type { margin-top: 0; }
.legal-modal a { color: var(--blue); }
.modal-close { position: absolute; top: 17px; right: 18px; width: 36px; height: 36px; border: 1px solid var(--line); border-radius: 50%; background: transparent; cursor: pointer; font-size: 1.1rem; }
.modal-close:hover { color: var(--ink); background: var(--silver-bright); }

.hero .reveal { opacity: 1; transform: none; }

@keyframes marquee { to { transform: translate3d(var(--marquee-shift, -50%), 0, 0); } }
@keyframes badge-spin { to { transform: rotate(1turn); } }
@keyframes hero-fade-in { from { opacity: 0; } to { opacity: 1; } }

@media (min-width: 961px) {
  .site-header {
    border-color: rgba(225, 235, 242, .22);
    background: linear-gradient(180deg, rgba(27, 32, 38, .97), rgba(10, 13, 17, .98) 48%, rgba(7, 9, 12, .99));
    box-shadow: inset 0 1px 0 rgba(255,255,255,.09), 0 14px 38px rgba(0,0,0,.28);
  }

  .site-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 17%;
    width: 35%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(224, 240, 248, .55), transparent);
    pointer-events: none;
  }

  .site-header.is-scrolled {
    border-color: rgba(225, 235, 242, .3);
    background: linear-gradient(180deg, rgba(22, 27, 33, .99), rgba(7, 9, 12, .99));
    box-shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 11px 30px rgba(0,0,0,.34);
  }

  .hero { isolation: isolate; }

  .hero::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 13%;
    right: -4vw;
    width: min(57vw, 820px);
    height: 72%;
    border: 1px solid rgba(205, 221, 231, .07);
    border-radius: 52% 52% 18% 18%;
    background:
      radial-gradient(circle at 52% 30%, rgba(137, 193, 214, .13), transparent 38%),
      linear-gradient(145deg, rgba(255,255,255,.035), rgba(255,255,255,0) 52%);
    pointer-events: none;
  }

  .hero-copy::after {
    content: "";
    position: absolute;
    top: 47%;
    left: -32px;
    width: 1px;
    height: 31%;
    background: linear-gradient(180deg, transparent, rgba(169, 220, 237, .7), transparent);
    pointer-events: none;
  }

  .hero-photo {
    border-color: rgba(225, 235, 242, .36);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.09), 0 32px 82px rgba(0,0,0,.48), 0 0 0 8px rgba(255,255,255,.018);
  }

  .hero-photo::before {
    content: "";
    position: absolute;
    z-index: 1;
    inset: 0;
    background: url("assets/images/noise-tile.png") repeat;
    background-size: 96px 96px;
    opacity: .025;
    pointer-events: none;
  }

  .hero-photo::after { z-index: 1; }

  .metal-badge {
    border-color: rgba(225, 235, 242, .34);
    background: radial-gradient(circle at 38% 28%, #242a30, #0b0e12 58%, #050608);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.11), inset 0 -10px 24px rgba(0,0,0,.38), 0 16px 35px rgba(0,0,0,.36);
  }

  .badge-ring {
    animation: badge-spin 28s linear infinite;
    backface-visibility: hidden;
    will-change: transform;
  }

  .hero-note {
    background: linear-gradient(145deg, rgba(27, 32, 38, .99), rgba(8, 10, 13, .99));
    box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 18px 42px rgba(0,0,0,.38);
  }

  .possibility-card:not(.card-blue) {
    border-color: rgba(214, 225, 234, .2);
    background: linear-gradient(145deg, rgba(255,255,255,.064), rgba(255,255,255,.015) 66%);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.055);
  }

  .possibility-card:not(.card-blue)::after {
    content: "";
    position: absolute;
    z-index: 1;
    top: 0;
    left: 10%;
    width: 48%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(216, 234, 242, .4), transparent);
    pointer-events: none;
  }

  .card-blue { box-shadow: inset 0 1px 0 rgba(255,255,255,.48); }

  .process-console {
    border-color: rgba(214, 225, 234, .23);
    background: linear-gradient(145deg, rgba(22, 27, 33, .92), rgba(9, 12, 16, .96));
    box-shadow: inset 0 1px 0 rgba(255,255,255,.055), 0 25px 60px rgba(0,0,0,.22);
  }

  .contact-form {
    border-color: rgba(214, 225, 234, .22);
    background: linear-gradient(145deg, rgba(255,255,255,.06), rgba(255,255,255,.014));
    box-shadow: inset 0 1px 0 rgba(255,255,255,.055);
  }
}

@media (min-width: 961px) and (prefers-reduced-motion: no-preference) {
  .js .hero-copy { animation: hero-fade-in .55s ease-out; }
  .js .hero-visual { animation: hero-fade-in .75s ease-out; }
}

@media (max-width: 1200px) {
  :root { --wrap: min(100% - 56px, 1180px); }
  .site-header { width: calc(100% - 28px); }
  .hero { grid-template-columns: minmax(0, 1.1fr) minmax(340px, .9fr); gap: 45px; }
  .hero h1 { font-size: clamp(4.2rem, 8vw, 7rem); }
  .hero-intro { grid-template-columns: 1fr; padding-left: 6vw; }
  .hero-actions { flex-direction: row; align-items: center; }
  .hero-note { right: -18px; }
  .desktop-nav a { padding: 8px 9px; }
  .process-heading { width: 78%; }
  .workshop-collage { min-height: 900px; grid-template-rows: 380px 490px; }
}

@media (max-width: 960px) {
  :root { --wrap: calc(100% - 40px); --header-h: 72px; }
  .hero {
    isolation: isolate;
  }
  .hero::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0 auto 0 50%;
    width: 100vw;
    background:
      radial-gradient(circle at 12% 18%, rgba(88, 139, 159, .11), transparent 25rem),
      radial-gradient(circle at 82% 48%, rgba(130, 151, 173, .08), transparent 32rem);
    transform: translateX(-50%);
    pointer-events: none;
  }
  main > section:not(.hero),
  .site-footer {
    content-visibility: auto;
    contain-intrinsic-block-size: auto 1100px;
  }
  .promise { contain-intrinsic-block-size: auto 900px; }
  .workshop { contain-intrinsic-block-size: auto 1500px; }
  .site-footer { contain-intrinsic-block-size: auto 650px; }
  .site-header { top: 10px; height: var(--header-h); grid-template-columns: 1fr auto; padding: 0 12px 0 17px; }
  .desktop-nav, .header-cta { display: none; }
  .menu-toggle { justify-self: end; display: flex; flex-direction: column; justify-content: center; gap: 7px; width: 48px; height: 48px; padding: 0 12px; border: 1px solid var(--line); border-radius: 10px; background: transparent; cursor: pointer; }
  .menu-toggle span { display: block; width: 100%; height: 1px; background: var(--silver-bright); transition: transform .3s var(--ease); }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .mobile-nav { position: fixed; z-index: 90; inset: 0; padding: 125px 24px 35px; display: flex; flex-direction: column; background: rgba(8,10,13,.98); }
  .mobile-nav a { display: grid; grid-template-columns: 45px 1fr; align-items: center; padding: 21px 5px; border-bottom: 1px solid var(--line); font-size: clamp(1.8rem, 7vw, 3.4rem); font-weight: 520; letter-spacing: -.045em; }
  .mobile-nav a span { color: var(--blue); font-size: .58rem; letter-spacing: .1em; }
  .mobile-nav .mobile-nav-cta { display: flex; justify-content: center; margin-top: auto; color: var(--ink); border: 0; border-radius: 12px; background: var(--silver-bright); font-size: .85rem; font-weight: 750; letter-spacing: 0; }

  .hero { min-height: auto; padding-top: 145px; grid-template-columns: 1fr; }
  .hero-copy { max-width: 800px; }
  .hero h1 { font-size: clamp(4.3rem, 12vw, 7.2rem); }
  .hero-intro { max-width: 680px; grid-template-columns: 1fr auto; padding-left: 12vw; }
  .hero-visual { width: min(74vw, 590px); justify-self: end; margin: 25px 28px 40px 0; }
  .hero-index { display: none; }
  .metal-badge { left: -55px; }
  .manifesto-grid { grid-template-columns: 1fr; }
  .manifesto-copy { margin-left: 13vw; }
  .manifesto-body { gap: 28px; margin-top: 55px; }
  .manifesto-prompt { position: relative; top: auto; width: min(360px, calc(100% - 13vw)); margin: 48px 0 0 13vw; }
  .section-heading { align-items: flex-start; }
  .possibility-grid { grid-template-columns: 1fr 1fr; }
  .card-feature { grid-row: span 2; }
  .card-photo { grid-column: 2; min-height: 320px; }
  .card-wide { grid-column: 1 / -1; }
  .process-heading { width: 86%; }
  .process-tab { padding: 18px 13px; grid-template-columns: 25px 1fr; }
  .process-tab small { display: none; }
  .process-panel { grid-template-columns: 1fr; }
  .process-image-wrap { min-height: 430px; }
  .promise-panel { grid-template-columns: 1fr; gap: 55px; }
  .promise-specs { max-width: 650px; }
  .workshop-collage { min-height: auto; grid-template-columns: 1fr 1fr; grid-template-rows: 380px auto 480px; }
  .shot-one { grid-column: 1 / -1; }
  .shot-two { grid-column: 2; grid-row: 2 / 4; }
  .shot-three { grid-column: 1; grid-row: 3; }
  .workshop-story { grid-column: 1; grid-row: 2; padding: 35px 10px 35px 0; }
  .questions { grid-template-columns: 1fr; }
  .questions-intro { position: static; }
  .contact-panel { grid-template-columns: 1fr; }
  .contact-form { max-width: 720px; }
  .footer-main { width: 75%; }
}

@media (max-width: 640px) {
  :root { --wrap: calc(100% - 28px); }
  .brand-copy small { display: none; }
  .brand-copy strong { font-size: .74rem; }
  .brand-mark { width: 34px; height: 34px; }
  main > section:not(.hero) { contain-intrinsic-block-size: auto 1400px; }
  .workshop { contain-intrinsic-block-size: auto 1800px; }

  .hero { gap: 28px; padding-top: 128px; }
  .hero h1 { margin: 24px 0 32px; font-size: clamp(3.7rem, 18vw, 5.4rem); line-height: .82; }
  .hero-intro { grid-template-columns: 1fr; gap: 25px; padding-left: 0; }
  .hero-actions { align-items: center; }
  .hero-visual { width: calc(100% - 24px); margin-right: 0; }
  .hero-photo { border-radius: 130px 130px 18px 18px; }
  .metal-badge { left: -18px; top: 43%; width: 104px; height: 104px; }
  .metal-badge text { font-size: 8px; }
  .hero-note { right: -8px; bottom: 48px; width: 184px; padding: 13px; }
  .hero-photo figcaption { left: 16px; right: 16px; bottom: 15px; }
  .hero-photo figcaption span:last-child { display: none; }

  .section-shell { padding: 90px 0; }
  .manifesto .section-number, .process .section-number { top: 32px; }
  .manifesto-copy { margin-left: 0; }
  .manifesto-copy h2, .section-heading h2, .process-heading h2, .promise h2, .questions h2, .contact h2 { font-size: clamp(2.7rem, 13vw, 4.4rem); }
  .manifesto-body { grid-template-columns: 1fr; gap: 17px; }
  .manifesto-prompt { width: 100%; max-width: 360px; margin: 42px 0 0; }
  .section-heading { display: block; margin-bottom: 45px; }
  .heading-note { margin-top: 25px; }

  .possibility-grid { display: flex; flex-direction: column; }
  .possibility-card, .card-feature, .card-photo, .card-compact, .card-wide { min-height: 360px; }
  .card-feature { min-height: 520px; }
  .card-wide { display: flex; }
  .wide-statement { padding: 20px 0; font-size: 2.4rem; }

  .process-heading { width: 100%; }
  .process-console { margin-top: 50px; }
  .process-tabs { grid-template-columns: 1fr 1fr; }
  .process-tab { min-height: 95px; border-bottom: 1px solid var(--line); }
  .process-tab:nth-child(2) { border-right: 0; }
  .process-panel, .process-image-wrap { min-height: 350px; }
  .process-content { padding: 32px 24px 40px; }
  .process-content h3 { font-size: 2.7rem; }

  .promise { padding-top: 0; }
  .promise-panel { min-height: 0; padding: 42px 25px; border-radius: 15px; }
  .promise-specs > div { padding: 18px 0; }

  .workshop-collage { display: flex; flex-direction: column; }
  .workshop-shot { height: 340px; }
  .shot-two { height: 520px; }
  .workshop-story { order: 2; padding: 30px 0; }
  .shot-two { order: 3; }
  .shot-three { order: 4; }

  .questions { gap: 60px; }
  .faq-list summary { grid-template-columns: 29px 1fr 18px; gap: 10px; padding: 25px 0; }
  .faq-list details p { margin: -1px 20px 27px 39px; }

  .contact { padding: 90px 14px; }
  .whatsapp-button { grid-template-columns: 46px 1fr; min-height: 88px; }
  .whatsapp-icon { width: 46px; height: 46px; }
  .whatsapp-button b { grid-column: 2; margin-top: -19px; color: rgba(8,10,13,.6); }
  .contact-details { grid-template-columns: 1fr; }
  .contact-details > div, .contact-details > div:not(:first-child) { padding: 18px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .contact-form { padding: 27px 20px; }

  .site-footer { padding: 75px 14px 20px; }
  .footer-brand { font-size: 4.2rem; }
  .footer-main { width: 100%; grid-template-columns: 1fr 1fr; margin: 65px 0 50px; }
  .footer-main > div:last-child { grid-column: 1 / -1; }
  .footer-bottom { grid-template-columns: 1fr auto; padding-top: 18px; }
  .footer-bottom p { grid-column: 1 / -1; }
  .footer-bottom > a { justify-self: end; }
  .legal-modal { padding: 38px 24px 28px; }
}

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