:root {
  color-scheme: dark;
  --black: #020202;
  --ink: #090909;
  --white: #f7f7f3;
  --paper: #eeeeea;
  --muted: #a8a8a0;
  --muted-dark: #565650;
  --line: rgba(255, 255, 255, 0.18);
  --line-dark: rgba(0, 0, 0, 0.16);
  --ease: cubic-bezier(0.19, 1, 0.22, 1);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
}

body::selection {
  background: var(--white);
  color: var(--black);
}

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

img {
  display: block;
  width: 100%;
  height: auto;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

.grain {
  position: fixed;
  inset: 0;
  z-index: 50;
  pointer-events: none;
  opacity: 0.12;
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mix-blend-mode: overlay;
}

.progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 80;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 70;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px clamp(18px, 4vw, 64px);
  color: var(--white);
  background: rgba(2, 2, 2, 0.66);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.brand,
.site-header nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand span:last-child {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 50%;
  font-size: 0.72rem;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-header nav a {
  position: relative;
  font-size: 0.74rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.site-header nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 700ms var(--ease);
}

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

.section-dark {
  background: var(--black);
  color: var(--white);
}

.section-light {
  background: var(--paper);
  color: var(--ink);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  align-items: end;
  gap: clamp(28px, 5vw, 84px);
  padding: clamp(118px, 15vh, 168px) clamp(18px, 4vw, 64px) clamp(28px, 6vh, 72px);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: min(18vw, 210px) min(18vw, 210px);
  mask-image: linear-gradient(to bottom, transparent, black 18%, black 72%, transparent);
  pointer-events: none;
}

.hero-copy,
.hero-visual,
.hero-ledger,
.section-heading,
.scarcity-grid,
.rooftop-copy,
.access-copy,
.office-panel {
  position: relative;
}

.eyebrow,
.section-kicker {
  margin: 0 0 22px;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: currentColor;
  opacity: 0.68;
}

.hero h1,
.scarcity h2,
.thesis h2,
.rooftop h2,
.private-office h2,
.access h2,
.legal-identity h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 680px;
  font-size: clamp(3rem, 5.7vw, 6.9rem);
}

.hero-motto {
  max-width: 660px;
  margin: 34px 0 0;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.2vw, 2.4rem);
  line-height: 1.1;
  color: rgba(255, 255, 255, 0.84);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border: 1px solid currentColor;
  border-radius: 2px;
  padding: 13px 20px;
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    background 900ms var(--ease),
    color 900ms var(--ease),
    transform 900ms var(--ease);
}

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

.button-primary,
.button-dark {
  background: var(--white);
  color: var(--black);
}

.button-primary:hover,
.button-primary:focus-visible,
.button-dark:hover,
.button-dark:focus-visible {
  background: transparent;
  color: currentColor;
}

.button-secondary {
  background: transparent;
  color: var(--white);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: var(--white);
  color: var(--black);
}

.hero-visual {
  align-self: stretch;
  min-height: min(72vh, 860px);
  display: grid;
  align-items: end;
  margin: 0;
  border-left: 1px solid var(--line);
  padding-left: clamp(18px, 3vw, 42px);
}

.hero-visual img {
  height: min(72vh, 860px);
  object-fit: cover;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.44);
}

.hero-visual figcaption,
.rooftop-visual figcaption {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 14px;
  font-size: 0.68rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.hero-ledger {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hero-ledger div {
  min-height: 112px;
  padding: 22px 24px;
  border-right: 1px solid var(--line);
}

.hero-ledger div:last-child {
  border-right: 0;
}

.hero-ledger span,
.scarcity-metrics span,
.thesis-card span,
.office-steps span,
.strip-item span {
  display: block;
  margin-bottom: 12px;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.62;
}

.hero-ledger strong,
.scarcity-metrics strong {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2vw, 2.4rem);
  font-weight: 400;
}

.hero-ledger small {
  display: block;
  max-width: 260px;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
  line-height: 1.35;
}

.gallery-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--black);
  color: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.strip-item {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(28px, 4vw, 58px);
  border-right: 1px solid var(--line);
}

.strip-item:last-child {
  border-right: 0;
}

.strip-item p {
  max-width: 410px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.38rem, 2.2vw, 2.6rem);
  line-height: 1.08;
}

.scarcity,
.thesis,
.rooftop,
.dossier,
.private-office,
.access,
.legal-identity {
  padding: clamp(84px, 11vw, 168px) clamp(18px, 4vw, 64px);
}

.scarcity-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.72fr);
  gap: clamp(32px, 7vw, 120px);
  align-items: start;
}

.scarcity h2,
.thesis h2,
.rooftop h2,
.private-office h2,
.access h2,
.legal-identity h2 {
  font-size: clamp(2.8rem, 6.2vw, 8rem);
}

.scarcity-copy {
  padding-top: 12px;
  color: rgba(0, 0, 0, 0.72);
}

.scarcity-copy p,
.rooftop-copy p,
.access-copy p,
.thesis-card p,
.office-steps p {
  margin: 0;
}

.scarcity-copy p + p {
  margin-top: 22px;
}

.scarcity-metrics {
  display: grid;
  grid-template-columns: 0.8fr 0.8fr 1.2fr;
  margin-top: clamp(58px, 7vw, 110px);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.scarcity-metrics div {
  min-height: 136px;
  padding: 24px;
  border-right: 1px solid var(--line-dark);
}

.scarcity-metrics div:last-child {
  border-right: 0;
}

.section-heading {
  max-width: 1040px;
  margin-bottom: clamp(44px, 6vw, 92px);
}

.thesis-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.thesis-card {
  min-height: 380px;
  padding: clamp(24px, 3vw, 42px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.thesis-card h3 {
  margin: 0 0 24px;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 2.4vw, 3.1rem);
  font-weight: 400;
  line-height: 1.04;
}

.thesis-card p {
  color: rgba(255, 255, 255, 0.66);
}

.rooftop {
  display: grid;
  grid-template-columns: minmax(280px, 0.68fr) minmax(0, 1.32fr);
  gap: clamp(34px, 6vw, 100px);
  align-items: center;
}

.rooftop-copy p,
.access-copy p {
  max-width: 620px;
  margin-top: 28px;
  color: rgba(0, 0, 0, 0.7);
}

.contact-options {
  display: grid;
  gap: 10px;
  max-width: 520px;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid var(--line-dark);
}

.contact-options a {
  display: inline-flex;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid var(--line-dark);
  padding: 0 0 12px;
  color: rgba(0, 0, 0, 0.72);
  font-size: 0.78rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.contact-options a::after {
  content: "+";
  color: var(--black);
}

.rooftop-copy .button {
  margin-top: 34px;
}

.rooftop-visual {
  margin: 0;
}

.rooftop-visual img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.rooftop-visual figcaption {
  color: rgba(0, 0, 0, 0.58);
}

.dossier {
  border-top: 1px solid var(--line);
}

.render-gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.render-gallery figure {
  min-width: 0;
  margin: 0;
  background: var(--black);
  overflow: hidden;
}

.render-large {
  grid-column: span 6;
}

.render-tile {
  grid-column: span 2;
}

.render-gallery img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  transition: transform 1600ms var(--ease), filter 1600ms var(--ease);
}

.render-large img {
  aspect-ratio: 16 / 7;
}

.render-tile img {
  aspect-ratio: 16 / 10;
}

.render-gallery figure:hover img {
  transform: scale(1.025);
  filter: contrast(1.04);
}

.render-gallery figcaption {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 16px 16px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.68rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.render-gallery figcaption span:last-child {
  text-align: right;
}

.plan-dossier {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: clamp(34px, 5vw, 72px);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.plan-card {
  position: relative;
  min-height: 260px;
  padding: clamp(22px, 3vw, 38px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.plan-card::before,
.plan-card::after {
  content: "";
  position: absolute;
  inset: 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  opacity: 0.36;
  pointer-events: none;
}

.plan-card::after {
  inset: 62px 28px 74px 46%;
  border-left: 1px solid rgba(255, 255, 255, 0.22);
  border-top: 0;
}

.plan-card span {
  display: block;
  margin-bottom: 38px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.plan-card h3 {
  max-width: 260px;
  margin: 0 0 18px;
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2vw, 2.5rem);
  font-weight: 400;
  line-height: 1.05;
}

.plan-card p {
  max-width: 260px;
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
}

.plan-card:hover,
.plan-card:focus-visible {
  background: var(--white);
  color: var(--black);
}

.plan-card:hover p,
.plan-card:focus-visible p,
.plan-card:hover span,
.plan-card:focus-visible span {
  color: rgba(0, 0, 0, 0.66);
}

.private-office {
  padding-top: clamp(72px, 9vw, 132px);
  padding-bottom: clamp(72px, 9vw, 132px);
}

.office-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 96px);
  align-items: end;
  border: 1px solid var(--line);
  padding: clamp(28px, 5vw, 72px);
}

.office-panel .eyebrow {
  grid-column: 1 / -1;
}

.private-office h2 {
  max-width: 620px;
  font-size: clamp(2.1rem, 4.65vw, 6rem);
  line-height: 1.04;
}

.office-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.office-steps div {
  min-height: 148px;
  padding: 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.office-steps p {
  font-family: var(--serif);
  font-size: clamp(1.28rem, 1.7vw, 2rem);
  line-height: 1.12;
}

.access {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(38px, 7vw, 116px);
  align-items: start;
}

.access-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.field {
  display: grid;
  gap: 8px;
}

.field-wide,
.form-submit,
.form-note {
  grid-column: 1 / -1;
}

label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.64);
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.26);
  border-radius: 2px;
  background: transparent;
  color: var(--ink);
  padding: 15px 14px;
  outline: 0;
  transition:
    border-color 600ms var(--ease),
    background 600ms var(--ease);
}

textarea {
  resize: vertical;
  min-height: 126px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--black);
  background: rgba(255, 255, 255, 0.42);
}

::placeholder {
  color: rgba(0, 0, 0, 0.42);
}

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

.form-note {
  min-height: 24px;
  margin: 0;
  color: rgba(0, 0, 0, 0.58);
}

.form-note.is-success {
  color: var(--black);
}

.legal-identity {
  display: grid;
  grid-template-columns: minmax(260px, 0.58fr) minmax(0, 1.42fr);
  gap: clamp(22px, 4vw, 58px);
  padding-top: clamp(42px, 5.5vw, 84px);
  padding-bottom: clamp(42px, 5.5vw, 84px);
  border-top: 1px solid var(--line);
}

.legal-identity-copy {
  max-width: 430px;
}

.legal-identity-copy p {
  margin: 0;
}

.legal-identity h2 {
  max-width: 340px;
  font-size: clamp(1.18rem, 2.35vw, 2.85rem);
  line-height: 1.04;
}

.legal-identity-copy p:last-child {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.95rem;
  line-height: 1.45;
}

.legal-identity-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.legal-identity-grid div {
  min-height: 96px;
  padding: clamp(14px, 2vw, 24px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.legal-identity-grid span,
.legal-identity-grid small {
  display: block;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.64rem;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.legal-identity-grid p {
  margin: 12px 0 9px;
  font-family: var(--serif);
  font-size: clamp(0.98rem, 1.18vw, 1.34rem);
  font-weight: 400;
  line-height: 1.18;
  color: var(--white);
  overflow-wrap: anywhere;
}

.site-footer {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(18px, 4vw, 64px);
  border-top: 1px solid var(--line);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.site-footer p {
  margin: 0;
}

.site-footer a,
.footer-privacy-button {
  border: 0;
  background: transparent;
  padding: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  cursor: pointer;
}

.site-footer a:hover,
.site-footer a:focus-visible,
.footer-privacy-button:hover,
.footer-privacy-button:focus-visible {
  color: var(--white);
}

.consent-banner {
  position: fixed;
  z-index: 120;
  right: clamp(14px, 3vw, 44px);
  bottom: clamp(14px, 3vw, 44px);
  left: clamp(14px, 3vw, 44px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  max-width: 1180px;
  margin: 0 auto;
  border: 1px solid var(--line);
  background: rgba(2, 2, 2, 0.94);
  color: var(--white);
  padding: clamp(22px, 3vw, 34px);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(22px);
}

.consent-banner[hidden],
.consent-modal[hidden] {
  display: none;
}

.consent-copy {
  max-width: 760px;
}

.consent-kicker {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.consent-copy h2,
.consent-modal h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 3.4rem);
  font-weight: 400;
  line-height: 1.02;
}

.consent-copy p:last-child,
.consent-modal-copy {
  max-width: 740px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.7);
}

.consent-actions,
.consent-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.consent-action {
  min-width: 154px;
  color: var(--white);
}

.consent-modal {
  position: fixed;
  inset: 0;
  z-index: 130;
  display: grid;
  place-items: center;
  padding: clamp(14px, 3vw, 44px);
}

.consent-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.74);
  backdrop-filter: blur(14px);
}

.consent-modal-panel {
  position: relative;
  width: min(860px, 100%);
  max-height: min(780px, 92svh);
  overflow: auto;
  border: 1px solid var(--line);
  background: var(--black);
  color: var(--white);
  padding: clamp(24px, 4vw, 52px);
  outline: 0;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.54);
}

.consent-modal-header {
  position: relative;
  padding-right: 52px;
}

.consent-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font-size: 1.7rem;
  line-height: 1;
}

.consent-toggle-list {
  display: grid;
  gap: 1px;
  margin: clamp(24px, 4vw, 42px) 0;
  border: 1px solid var(--line);
  background: var(--line);
}

.consent-toggle {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 58px;
  gap: 18px;
  align-items: center;
  background: var(--black);
  padding: 18px;
  cursor: pointer;
}

.consent-toggle-copy {
  display: grid;
  gap: 5px;
}

.consent-toggle-copy strong {
  font-weight: 400;
  font-size: 1.08rem;
}

.consent-toggle-copy span {
  color: rgba(255, 255, 255, 0.62);
}

.consent-toggle input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.consent-switch {
  position: relative;
  width: 58px;
  height: 30px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  background: transparent;
}

.consent-switch::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 20px;
  height: 20px;
  background: rgba(255, 255, 255, 0.58);
  transition: transform 500ms var(--ease), background 500ms var(--ease);
}

.consent-toggle input:checked + .consent-switch::after {
  transform: translateX(28px);
  background: var(--white);
}

.consent-toggle input:checked + .consent-switch {
  background: rgba(255, 255, 255, 0.16);
}

.consent-toggle input:disabled + .consent-switch {
  opacity: 0.52;
}

.has-consent-modal {
  overflow: hidden;
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 1400ms var(--ease),
    transform 1400ms var(--ease);
  transition-delay: var(--delay, 0ms);
}

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

.delay-1 {
  --delay: 160ms;
}

.delay-2 {
  --delay: 320ms;
}

.delay-3 {
  --delay: 480ms;
}

@media (max-width: 1080px) {
  .hero,
  .scarcity-grid,
  .rooftop,
  .dossier,
  .office-panel,
  .access,
  .legal-identity {
    grid-template-columns: 1fr;
  }

  .render-tile {
    grid-column: span 3;
  }

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

  .hero-visual {
    min-height: 0;
    border-left: 0;
    padding-left: 0;
  }

  .hero-visual img {
    height: auto;
    aspect-ratio: 16 / 11;
  }

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

@media (max-width: 760px) {
  .site-header {
    align-items: flex-start;
    padding-top: 18px;
  }

  .brand span:last-child {
    display: none;
  }

  .site-header nav {
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .site-header nav a {
    font-size: 0.66rem;
  }

  .hero {
    min-height: auto;
    padding-top: 104px;
  }

  .hero h1 {
    font-size: clamp(2.65rem, 12vw, 4.35rem);
  }

  .hero-motto {
    font-size: 1.35rem;
  }

  .button {
    width: 100%;
    min-height: 52px;
  }

  .hero-ledger,
  .gallery-strip,
  .scarcity-metrics,
  .thesis-grid,
  .office-steps,
  .plan-dossier,
  .access-form,
  .legal-identity-grid {
    grid-template-columns: 1fr;
  }

  .render-large,
  .render-tile {
    grid-column: 1 / -1;
  }

  .render-gallery img {
    min-height: 220px;
  }

  .render-gallery figcaption {
    flex-direction: column;
  }

  .render-gallery figcaption span:last-child {
    text-align: left;
  }

  .hero-ledger div,
  .strip-item,
  .scarcity-metrics div {
    border-right: 0;
    border-bottom: 1px solid currentColor;
  }

  .hero-ledger div:last-child,
  .strip-item:last-child,
  .scarcity-metrics div:last-child {
    border-bottom: 0;
  }

  .strip-item {
    min-height: 170px;
  }

  .thesis-card {
    min-height: 260px;
  }

  .hero-visual figcaption,
  .rooftop-visual figcaption,
  .site-footer,
  .consent-banner,
  .consent-actions,
  .consent-modal-actions {
    flex-direction: column;
  }

  .consent-banner {
    grid-template-columns: 1fr;
    align-items: stretch;
    max-height: calc(100svh - 28px);
    overflow: auto;
  }

  .consent-action {
    width: 100%;
  }

  .consent-toggle {
    grid-template-columns: 1fr;
  }
}

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

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