:root {
  color-scheme: light;
  --ink: oklch(0.16 0.01 80);
  --ink-soft: oklch(0.24 0.012 80);
  --paper: oklch(0.97 0.003 80);
  --surface: oklch(0.92 0.006 80);
  --muted: oklch(0.48 0.01 80);
  --gold: oklch(0.7 0.12 78);
  --gold-bright: oklch(0.82 0.11 82);
  --white: oklch(0.99 0.002 80);
  --line: color-mix(in oklch, var(--ink) 14%, transparent);
  --line-dark: color-mix(in oklch, var(--white) 16%, transparent);
  --content: min(1240px, calc(100vw - 3rem));
  --header-height: 84px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --z-header: 20;
  --z-floating: 30;
  --z-dialog: 50;
  font-family: "Manrope", "Segoe UI", sans-serif;
  background: var(--paper);
  color: var(--ink);
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

html {
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.65;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

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

:focus-visible {
  outline: 3px solid var(--gold-bright);
  outline-offset: 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: var(--gold-bright);
  color: var(--ink);
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 180ms var(--ease-out);
}

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

.reading-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: calc(var(--z-header) + 1);
  height: 2px;
  pointer-events: none;
}

.reading-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--gold-bright);
  transform: scaleX(0);
  transform-origin: left;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: var(--z-header);
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 0.8rem max(1.5rem, calc((100vw - 1240px) / 2));
  color: var(--white);
  border-bottom: 1px solid transparent;
  transition:
    background-color 300ms var(--ease-out),
    border-color 300ms var(--ease-out),
    min-height 300ms var(--ease-out);
}

.site-header.is-scrolled,
.site-header.is-open {
  min-height: 72px;
  background: color-mix(in oklch, var(--ink) 94%, transparent);
  border-color: var(--line-dark);
  backdrop-filter: blur(18px);
}

.brand {
  flex: 0 0 auto;
}

.brand img {
  width: 112px;
  height: auto;
  filter: drop-shadow(0 8px 20px rgb(0 0 0 / 0.24));
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 2rem);
  font-size: 0.82rem;
  font-weight: 600;
}

.site-nav a {
  position: relative;
  text-decoration: none;
}

.site-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  inset: auto 0 -0.4rem;
  height: 1px;
  background: var(--gold-bright);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 250ms var(--ease-out);
}

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

.nav-cta {
  padding: 0.75rem 1rem;
  border: 1px solid color-mix(in oklch, var(--gold-bright) 65%, transparent);
  color: var(--gold-bright);
  transition:
    background-color 220ms ease,
    color 220ms ease;
}

.nav-cta:hover {
  background: var(--gold-bright);
  color: var(--ink);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px;
  border: 0;
  background: transparent;
  color: inherit;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  height: 1px;
  margin: 5px 0;
  background: currentColor;
  transition: transform 220ms ease, opacity 220ms ease;
}

.hero {
  position: relative;
  min-height: max(760px, 100svh);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  object-fit: cover;
  object-position: center 56%;
  animation: hero-settle 1.8s var(--ease-out) both;
}

.hero-shade {
  background:
    linear-gradient(180deg, rgb(16 15 13 / 0.28) 0%, rgb(16 15 13 / 0.02) 40%, rgb(16 15 13 / 0.86) 100%),
    linear-gradient(90deg, rgb(16 15 13 / 0.74) 0%, rgb(16 15 13 / 0.08) 68%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: var(--content);
  margin: 0 auto;
  padding: calc(var(--header-height) + 4rem) 0 clamp(5rem, 10vh, 8rem);
}

.hero-kicker,
.section-label {
  margin: 0 0 1.25rem;
  color: var(--gold-bright);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.manifesto h2,
.palette-copy h2,
.investment h2,
.architects h2,
.closing h2 {
  font-family: "Unbounded", "Arial Black", sans-serif;
  text-wrap: balance;
  letter-spacing: -0.035em;
}

.hero h1 {
  max-width: 1050px;
  margin: 0;
  font-size: clamp(2.5rem, 6.4vw, 5.7rem);
  font-weight: 500;
  line-height: 0.98;
  animation: hero-copy 1.2s 200ms var(--ease-out) both;
}

.hero h1 span {
  color: var(--gold-bright);
}

.hero-copy {
  max-width: 660px;
  margin: 1.8rem 0 0;
  color: color-mix(in oklch, var(--white) 88%, transparent);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  text-wrap: pretty;
  animation: hero-copy 1.2s 360ms var(--ease-out) both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
  animation: hero-copy 1.2s 500ms var(--ease-out) both;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.2rem;
  border: 1px solid transparent;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  transition:
    transform 220ms var(--ease-out),
    background-color 220ms ease,
    border-color 220ms ease,
    color 220ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-gold {
  background: var(--gold-bright);
  color: var(--ink);
}

.button-gold:hover {
  background: var(--white);
}

.button-ghost {
  border-color: color-mix(in oklch, var(--white) 48%, transparent);
  color: var(--white);
}

.button-ghost:hover {
  border-color: var(--white);
  background: color-mix(in oklch, var(--white) 12%, transparent);
}

.scroll-cue {
  position: absolute;
  right: max(1.5rem, calc((100vw - 1240px) / 2));
  bottom: 2rem;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.scroll-cue i {
  position: relative;
  width: 48px;
  height: 1px;
  overflow: hidden;
  background: color-mix(in oklch, var(--white) 32%, transparent);
}

.scroll-cue i::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gold-bright);
  animation: line-travel 2s ease-in-out infinite;
}

.section-pad {
  padding: clamp(5rem, 10vw, 9rem) max(1.5rem, calc((100vw - 1240px) / 2));
}

.manifesto {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
  gap: clamp(3rem, 9vw, 9rem);
  overflow: hidden;
  background: var(--paper);
}

.manifesto-mark {
  position: absolute;
  top: -0.38em;
  left: -0.05em;
  color: color-mix(in oklch, var(--gold) 8%, transparent);
  font-family: "Unbounded", sans-serif;
  font-size: clamp(18rem, 40vw, 42rem);
  font-weight: 600;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.manifesto-copy,
.manifesto-notes {
  position: relative;
}

.manifesto h2 {
  max-width: 18ch;
  margin: 0 0 2rem;
  font-size: clamp(2rem, 4.2vw, 4.1rem);
  font-weight: 500;
  line-height: 1.08;
}

.manifesto-copy > p:last-child,
.section-heading > p:last-child,
.palette-copy > p,
.investment-content > p {
  max-width: 68ch;
  color: var(--muted);
  font-size: 1.04rem;
  text-wrap: pretty;
}

.manifesto-notes {
  align-self: end;
  margin: 0;
}

.manifesto-notes div {
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--line);
}

.manifesto-notes dt {
  margin-bottom: 0.4rem;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.manifesto-notes dd {
  margin: 0;
  font-weight: 600;
}

.transformations {
  background: var(--surface);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.55fr);
  align-items: end;
  gap: clamp(2rem, 7vw, 7rem);
  margin-bottom: clamp(4rem, 8vw, 7rem);
}

.section-heading .section-label {
  grid-column: 1 / -1;
  margin-bottom: -0.5rem;
}

.section-heading h2 {
  max-width: 14ch;
  margin: 0;
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 500;
  line-height: 1.08;
}

.section-heading > p:last-child {
  margin: 0;
}

.comparison-list {
  display: grid;
  gap: clamp(5rem, 12vw, 10rem);
}

.comparison-block {
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1.38fr);
  align-items: center;
  gap: clamp(2.5rem, 7vw, 7rem);
}

.comparison-block-reverse .comparison-copy {
  order: 2;
}

.comparison-block-reverse .comparison {
  order: 1;
}

.comparison-index {
  margin: 0 0 0.5rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
}

.comparison-copy h3 {
  margin: 0 0 1rem;
  font-family: "Unbounded", sans-serif;
  font-size: clamp(1.55rem, 2.6vw, 2.65rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.comparison-copy > p:not(.comparison-index) {
  max-width: 52ch;
  color: var(--muted);
}

.material-list {
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.material-list li {
  position: relative;
  padding: 0.6rem 0 0.6rem 1.25rem;
  border-bottom: 1px solid var(--line);
  font-size: 0.86rem;
  font-weight: 600;
}

.material-list li::before {
  content: "";
  position: absolute;
  top: 1.1rem;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
}

.comparison {
  min-width: 0;
}

.comparison-stage {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--ink-soft);
  box-shadow: 0 30px 70px rgb(26 23 18 / 0.16);
}

.comparison-stage::after,
.lightbox figure::after {
  content: "";
  position: absolute;
  z-index: 3;
  right: clamp(0.65rem, 2vw, 1.1rem);
  bottom: clamp(0.65rem, 2vw, 1.1rem);
  width: clamp(72px, 13vw, 118px);
  aspect-ratio: 1.25;
  background: url("/assets/images/terrara-logo.png") center / contain no-repeat;
  filter: drop-shadow(0 3px 8px rgb(0 0 0 / 0.5));
  opacity: 0.82;
  pointer-events: none;
}

.comparison-stage img,
.comparison-after {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.comparison-stage img {
  object-fit: cover;
}

.comparison-after {
  clip-path: inset(0 0 0 var(--position));
}

.comparison-stage input[type="range"] {
  position: absolute;
  inset: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  margin: 0;
  cursor: ew-resize;
  opacity: 0;
}

.compare-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--position);
  z-index: 3;
  width: 2px;
  background: var(--white);
  box-shadow: 0 0 18px rgb(0 0 0 / 0.35);
  transform: translateX(-50%);
  pointer-events: none;
}

.compare-handle i {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50px;
  height: 50px;
  border: 1px solid var(--white);
  border-radius: 50%;
  background: color-mix(in oklch, var(--ink) 72%, transparent);
  backdrop-filter: blur(8px);
  transform: translate(-50%, -50%);
}

.compare-handle i::before,
.compare-handle i::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 8px;
  height: 8px;
  border-top: 1px solid var(--white);
  border-left: 1px solid var(--white);
}

.compare-handle i::before {
  left: 11px;
  transform: translateY(-50%) rotate(-45deg);
}

.compare-handle i::after {
  right: 11px;
  transform: translateY(-50%) rotate(135deg);
}

.compare-tag {
  position: absolute;
  top: 1rem;
  z-index: 2;
  padding: 0.42rem 0.7rem;
  background: color-mix(in oklch, var(--ink) 78%, transparent);
  color: var(--white);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.compare-tag-before {
  left: 1rem;
}

.compare-tag-after {
  right: 1rem;
  color: var(--gold-bright);
}

.expand-button {
  display: inline-flex;
  margin-top: 0.8rem;
  padding: 0.3rem 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 700;
}

.palette-section {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
  min-height: 760px;
  background: var(--paper);
}

.palette-image {
  min-height: 640px;
}

.palette-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.palette-copy {
  align-self: center;
}

.palette-copy h2 {
  max-width: 12ch;
  margin: 0 0 1.5rem;
  font-size: clamp(2rem, 3.8vw, 3.8rem);
  font-weight: 500;
  line-height: 1.08;
}

.swatches {
  display: flex;
  gap: 0.5rem;
  margin-top: 2rem;
}

.swatches span {
  position: relative;
  flex: 1;
  height: 74px;
  background: var(--swatch);
}

.swatches i {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  font-size: 0.7rem;
  font-style: normal;
}

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

.section-heading-dark h2 {
  color: var(--white);
}

.section-heading-dark > p:last-child {
  color: color-mix(in oklch, var(--white) 68%, transparent);
}

.scope-accordion {
  border-top: 1px solid var(--line-dark);
}

.scope-accordion details {
  border-bottom: 1px solid var(--line-dark);
}

.scope-accordion summary {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(220px, 1.3fr) 32px;
  gap: 2rem;
  align-items: center;
  padding: 1.65rem 0;
  cursor: pointer;
  list-style: none;
}

.scope-accordion summary::-webkit-details-marker {
  display: none;
}

.scope-accordion summary::after {
  content: "+";
  justify-self: end;
  color: var(--gold-bright);
  font-size: 1.5rem;
  font-weight: 300;
  transition: transform 250ms var(--ease-out);
}

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

.scope-accordion summary span {
  font-family: "Unbounded", sans-serif;
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  font-weight: 500;
}

.scope-accordion summary i {
  color: color-mix(in oklch, var(--white) 58%, transparent);
  font-style: normal;
}

.scope-accordion details > div {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(220px, 1.3fr) 32px;
  gap: 2rem;
}

.scope-accordion details p {
  grid-column: 2;
  max-width: 68ch;
  margin: 0 0 1.8rem;
  color: color-mix(in oklch, var(--white) 78%, transparent);
}

.scope-note {
  display: grid;
  grid-template-columns: 0.5fr 1.5fr;
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid color-mix(in oklch, var(--gold-bright) 42%, transparent);
}

.scope-note strong {
  color: var(--gold-bright);
}

.scope-note p {
  max-width: 72ch;
  margin: 0;
  color: color-mix(in oklch, var(--white) 66%, transparent);
  font-size: 0.9rem;
}

.process {
  background: var(--paper);
}

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

.process-list li {
  min-height: 310px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 3rem;
  padding: 1.5rem;
  border-right: 1px solid var(--line);
}

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

.process-list > li > span {
  color: var(--gold);
  font-family: "Unbounded", sans-serif;
  font-size: 1.3rem;
}

.process-list h3 {
  margin: 0 0 0.8rem;
  font-family: "Unbounded", sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.25;
}

.process-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.investment {
  position: relative;
  min-height: 720px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.investment-image,
.investment-image::after,
.investment-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.investment-image img {
  object-fit: cover;
  object-position: center;
  filter: saturate(0.72) brightness(0.52);
}

.investment-image::after {
  content: "";
  background: linear-gradient(90deg, rgb(16 15 13 / 0.92), rgb(16 15 13 / 0.26));
}

.investment-content {
  position: relative;
  z-index: 1;
  width: var(--content);
}

.investment-content h2 {
  margin: 0 0 1rem;
  color: var(--gold-bright);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 500;
  line-height: 1;
}

.investment-content > p {
  max-width: 60ch;
  margin-bottom: 2rem;
  color: color-mix(in oklch, var(--white) 78%, transparent);
}

.architects {
  background: var(--paper);
}

.architects-intro {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: clamp(2rem, 7vw, 7rem);
  align-items: center;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--line);
}

.architects-intro img {
  width: 190px;
}

.architects h2 {
  max-width: 14ch;
  margin: 0;
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  font-weight: 500;
  line-height: 1.08;
}

.architect-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}

.architect-list article {
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--line);
}

.architect-list article:first-child {
  padding-right: 3rem;
  border-right: 1px solid var(--line);
}

.architect-list article:last-child {
  padding-left: 3rem;
}

.architect-list h3 {
  margin: 0 0 0.4rem;
  font-family: "Unbounded", sans-serif;
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  font-weight: 500;
}

.architect-list p,
.architect-list span {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.closing {
  position: relative;
  min-height: min(850px, 100svh);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
}

.closing > img,
.closing-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.closing > img {
  object-fit: cover;
  object-position: center;
}

.closing-shade {
  background: linear-gradient(180deg, rgb(16 15 13 / 0.08), rgb(16 15 13 / 0.88));
}

.closing-content {
  position: relative;
  z-index: 1;
  width: var(--content);
  margin: 0 auto;
  padding: 5rem 0;
}

.closing h2 {
  max-width: 18ch;
  margin: 0 0 2rem;
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  font-weight: 500;
  line-height: 1.04;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem max(1.5rem, calc((100vw - 1240px) / 2));
  background: var(--ink);
  color: color-mix(in oklch, var(--white) 58%, transparent);
  font-size: 0.73rem;
}

.site-footer p {
  max-width: 62ch;
  margin: 0;
}

.floating-contact {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: var(--z-floating);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  min-height: 48px;
  padding: 0.6rem 0.9rem;
  background: var(--gold-bright);
  color: var(--ink);
  box-shadow: 0 14px 30px rgb(0 0 0 / 0.2);
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 220ms var(--ease-out);
}

.floating-contact:hover {
  transform: translateY(-3px);
}

.floating-contact svg {
  width: 22px;
  fill: currentColor;
}

.lightbox {
  z-index: var(--z-dialog);
  width: min(92vw, 1100px);
  max-height: 92vh;
  padding: 0;
  overflow: visible;
  border: 0;
  background: transparent;
  color: var(--white);
}

.lightbox::backdrop {
  background: rgb(12 11 10 / 0.92);
  backdrop-filter: blur(12px);
}

.lightbox figure {
  position: relative;
  margin: 0;
}

.lightbox figure::after {
  right: 1rem;
  bottom: 2.6rem;
  width: clamp(84px, 12vw, 132px);
  opacity: 0.86;
}

.lightbox img {
  width: 100%;
  max-height: 84vh;
  object-fit: contain;
}

.lightbox figcaption {
  margin-top: 0.7rem;
  text-align: center;
  font-size: 0.78rem;
}

.lightbox-close {
  position: absolute;
  top: -42px;
  right: 0;
  width: 36px;
  height: 36px;
  border: 1px solid color-mix(in oklch, var(--white) 42%, transparent);
  border-radius: 50%;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
}

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

.motion-ready .reveal {
  transform: translateY(28px);
  opacity: 0;
  filter: blur(5px);
  transition:
    transform 900ms var(--ease-out),
    opacity 700ms ease,
    filter 900ms var(--ease-out);
}

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

@keyframes hero-settle {
  from {
    transform: scale(1.06);
    filter: brightness(0.72);
  }
  to {
    transform: scale(1);
    filter: brightness(1);
  }
}

@keyframes hero-copy {
  from {
    transform: translateY(34px);
    opacity: 0;
    filter: blur(8px);
  }
  to {
    transform: translateY(0);
    opacity: 1;
    filter: blur(0);
  }
}

@keyframes line-travel {
  0% {
    transform: translateX(-100%);
  }
  50%,
  100% {
    transform: translateX(100%);
  }
}

@media (max-width: 980px) {
  :root {
    --header-height: 72px;
    --content: min(100% - 2rem, 760px);
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-height) 0 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    padding: 2rem;
    background: var(--ink);
    transform: translateX(100%);
    transition: transform 350ms var(--ease-out);
  }

  .site-nav.is-open {
    transform: translateX(0);
  }

  .site-nav a {
    padding: 1rem 0;
    border-bottom: 1px solid var(--line-dark);
    font-family: "Unbounded", sans-serif;
    font-size: clamp(1.2rem, 5vw, 2rem);
    font-weight: 500;
  }

  .site-nav .nav-cta {
    margin-top: 1.5rem;
    padding: 1rem;
    border: 1px solid var(--gold-bright);
    font-family: "Manrope", sans-serif;
    font-size: 0.9rem;
    text-align: center;
  }

  .site-header.is-open .menu-toggle > span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .site-header.is-open .menu-toggle > span:nth-child(2) {
    opacity: 0;
  }

  .site-header.is-open .menu-toggle > span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .manifesto,
  .section-heading,
  .comparison-block,
  .palette-section {
    grid-template-columns: 1fr;
  }

  .manifesto {
    gap: 3rem;
  }

  .section-heading {
    gap: 1.5rem;
  }

  .section-heading .section-label {
    margin-bottom: 0;
  }

  .comparison-block-reverse .comparison-copy,
  .comparison-block-reverse .comparison {
    order: initial;
  }

  .comparison-copy {
    max-width: 680px;
  }

  .comparison {
    width: min(100%, 720px);
  }

  .comparison-block-reverse .comparison {
    justify-self: end;
  }

  .palette-image {
    min-height: min(82vw, 720px);
  }

  .process-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-list li {
    min-height: 270px;
    border-bottom: 1px solid var(--line);
  }

  .process-list li:nth-child(2) {
    border-right: 0;
  }
}

@media (max-width: 680px) {
  :root {
    --content: calc(100vw - 2rem);
  }

  .brand img {
    width: 92px;
  }

  .hero {
    min-height: 760px;
  }

  .hero-media {
    object-position: 42% center;
  }

  .hero-content {
    padding-bottom: 6.4rem;
  }

  .hero h1 {
    font-size: clamp(2.15rem, 10.3vw, 3.35rem);
    line-height: 1.02;
  }

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

  .scroll-cue {
    right: 1rem;
    bottom: 1.4rem;
  }

  .section-pad {
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .manifesto h2,
  .section-heading h2,
  .palette-copy h2,
  .architects h2 {
    font-size: clamp(1.85rem, 8.5vw, 2.7rem);
  }

  .comparison-stage {
    aspect-ratio: 3 / 4;
  }

  .comparison-block {
    gap: 2rem;
  }

  .comparison-list {
    gap: 6rem;
  }

  .palette-copy {
    padding-bottom: 6.5rem;
  }

  .swatches i {
    display: none;
  }

  .scope-accordion summary {
    grid-template-columns: 1fr 28px;
    gap: 0.8rem;
  }

  .scope-accordion summary i {
    grid-column: 1;
    grid-row: 2;
    font-size: 0.82rem;
  }

  .scope-accordion summary::after {
    grid-column: 2;
    grid-row: 1 / 3;
  }

  .scope-accordion details > div {
    display: block;
  }

  .scope-note {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .process-list {
    grid-template-columns: 1fr;
  }

  .process-list li {
    min-height: 0;
    gap: 2rem;
    padding: 1.5rem 0;
    border-right: 0;
  }

  .investment {
    min-height: 680px;
  }

  .investment-content h2 {
    font-size: clamp(2.7rem, 12vw, 4.2rem);
  }

  .architects-intro,
  .architect-list {
    grid-template-columns: 1fr;
  }

  .architects-intro img {
    width: 150px;
  }

  .architect-list article:first-child,
  .architect-list article:last-child {
    padding: 2rem 0;
    border-right: 0;
  }

  .closing {
    min-height: 760px;
  }

  .closing > img {
    object-position: 56% center;
  }

  .closing h2 {
    font-size: clamp(2rem, 9vw, 3.2rem);
  }

  .site-footer {
    flex-direction: column;
  }

  .floating-contact span {
    display: none;
  }

  .floating-contact {
    width: 52px;
    height: 52px;
    justify-content: center;
    padding: 0;
    border-radius: 50%;
  }
}

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

  .motion-ready .reveal {
    transform: none;
    opacity: 1;
    filter: none;
  }
}
