:root {
  --c-ink: #0a0a0a;
  --c-ink-2: #1a1a1a;
  --c-bone: #f6f4ef;
  --c-paper: #ffffff;
  --c-silver-1: #e7e5e0;
  --c-silver-2: #c9c6c0;
  --c-silver-3: #8a8884;
  --c-silver-4: #5a5854;
  --c-line: rgba(10, 10, 10, 0.12);
  --c-line-soft: rgba(10, 10, 10, 0.06);
  --c-line-dark: rgba(255, 255, 255, 0.14);

  --f-display: "Cormorant Garamond", "Times New Roman", serif;
  --f-sans: "Manrope", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;

  --rad-sm: 2px;
  --rad-md: 4px;
  --rad-lg: 10px;

  --container: 1320px;
  --gutter: clamp(20px, 4vw, 56px);

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--f-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--c-ink);
  background: var(--c-paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

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

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

button { font-family: inherit; cursor: pointer; }

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

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.section {
  padding: clamp(72px, 10vw, 140px) 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--f-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-silver-4);
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}
.eyebrow.on-dark { color: var(--c-silver-2); }

h1, h2, h3, h4 {
  font-family: var(--f-display);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.05;
  margin: 0;
  text-wrap: balance;
}

.h-display {
  font-size: clamp(44px, 7vw, 96px);
  letter-spacing: -0.02em;
  line-height: 0.98;
}
.h-display em {
  font-style: italic;
  font-weight: 300;
}

.h-section {
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.02;
}
.h-section em { font-style: italic; font-weight: 300; }

.lede {
  font-family: var(--f-sans);
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.65;
  color: var(--c-silver-4);
  max-width: 56ch;
  text-wrap: pretty;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  font-family: var(--f-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1px solid var(--c-ink);
  background: var(--c-ink);
  color: var(--c-paper);
  border-radius: 999px;
  transition: background 0.3s var(--ease-soft), color 0.3s var(--ease-soft), transform 0.3s var(--ease-soft), border-color 0.3s var(--ease-soft);
}
.btn:hover {
  background: transparent;
  color: var(--c-ink);
}
.btn.on-dark {
  background: var(--c-paper);
  border-color: var(--c-paper);
  color: var(--c-ink);
}
.btn.on-dark:hover {
  background: transparent;
  color: var(--c-paper);
}
.btn.ghost {
  background: transparent;
  color: var(--c-ink);
}
.btn.ghost:hover { background: var(--c-ink); color: var(--c-paper); }
.btn.ghost.on-dark { color: var(--c-paper); border-color: rgba(255,255,255,0.4); }
.btn.ghost.on-dark:hover { background: var(--c-paper); color: var(--c-ink); border-color: var(--c-paper); }

.btn .arrow {
  width: 14px; height: 14px;
  transition: transform 0.4s var(--ease-out);
}
.btn:hover .arrow { transform: translateX(4px); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
}
.link-arrow .arrow { width: 12px; height: 12px; transition: transform 0.4s var(--ease-out); }
.link-arrow:hover .arrow { transform: translateX(4px); }

.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  padding: 18px 0;
  transition: background 0.4s var(--ease-soft), padding 0.4s var(--ease-soft), border-color 0.4s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  padding: 12px 0;
  border-bottom-color: var(--c-line);
}
.nav.scrolled .nav-logo--dark { opacity: 1; }
.nav.scrolled .nav-logo--light { opacity: 0; }
.nav.scrolled .nav-link,
.nav.scrolled .nav-toggle span { color: var(--c-ink); }
.nav.scrolled .nav-toggle span { background: var(--c-ink); }
.nav.scrolled .nav-cta { color: var(--c-paper); background: var(--c-ink); border-color: var(--c-ink); }
.nav.scrolled .nav-cta:hover { background: transparent; color: var(--c-ink); }

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  position: relative;
  display: block;
  height: 56px;
  width: 162px;
}
@media (max-width: 760px) {
  .nav-logo {
    height: 48px;
    width: 140px;
  }
}
.nav-logo img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: contain;
  object-position: left center;
  transition: opacity 0.4s var(--ease-soft);
}
.nav-logo--dark { opacity: 0; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-link {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--c-paper);
  text-transform: uppercase;
  position: relative;
  transition: color 0.3s;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: -6px;
  height: 1px;
  background: currentColor;
  transition: right 0.4s var(--ease-out);
}
.nav-link:hover::after { right: 0; }

.nav-cta {
  padding: 12px 22px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.6);
  color: var(--c-paper);
  border-radius: 999px;
  transition: all 0.3s var(--ease-soft);
}
.nav-cta:hover {
  background: var(--c-paper);
  color: var(--c-ink);
  border-color: var(--c-paper);
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  width: 36px;
  height: 36px;
  position: relative;
  padding: 0;
}
.nav-toggle span {
  display: block;
  position: absolute;
  left: 6px; right: 6px;
  height: 1.5px;
  background: var(--c-paper);
  transition: transform 0.3s var(--ease-soft), opacity 0.2s, top 0.3s;
}
.nav-toggle span:nth-child(1) { top: 12px; }
.nav-toggle span:nth-child(2) { top: 18px; }
.nav-toggle span:nth-child(3) { top: 24px; }
.nav-toggle.open span:nth-child(1) { top: 18px; transform: rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { top: 18px; transform: rotate(-45deg); }

.hero {
  position: relative;
  min-height: 100svh;
  color: var(--c-paper);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(60px, 9vw, 120px);
  padding-top: 140px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: heroZoom 18s var(--ease-soft) forwards;
}
@keyframes heroZoom {
  to { transform: scale(1); }
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 25% 70%, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0) 55%),
    linear-gradient(180deg, rgba(10,10,10,0.65) 0%, rgba(10,10,10,0.35) 35%, rgba(10,10,10,0.45) 65%, rgba(10,10,10,0.85) 100%);
}

.hero-coming {
  position: absolute;
  top: clamp(90px, 12vw, 130px);
  left: var(--gutter);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: rgba(0, 0, 0, 0.35);
  color: var(--c-paper);
  z-index: 2;
}
.hero-coming .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--c-paper);
  box-shadow: 0 0 0 0 rgba(255,255,255,0.7);
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255,255,255,0.5); }
  70% { box-shadow: 0 0 0 10px rgba(255,255,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 4vw, 48px);
}

.hero-headline {
  max-width: 18ch;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45), 0 1px 2px rgba(0, 0, 0, 0.35);
}

.hero-meta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: end;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.18);
}
.hero-sub {
  font-size: clamp(14px, 1.2vw, 17px);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
  max-width: 44ch;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.55);
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-stats {
  position: absolute;
  right: var(--gutter);
  bottom: clamp(120px, 12vw, 180px);
  display: none;
  flex-direction: column;
  gap: 22px;
  text-align: right;
  z-index: 1;
}

.hero-stats .hero-stat:last-child {
  position: relative;
  top: -30px;
 }

.hero-stat .num {
  font-family: var(--f-display);
  font-size: 56px;
  line-height: 1;
  font-weight: 300;
}
.hero-stat .lbl {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-top: 6px;
}

.scroll-cue {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  z-index: 2;
  pointer-events: none;
}
@media (max-width: 980px) {
  .scroll-cue { display: none; }
}
.scroll-cue::after {
  content: "";
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, rgba(255,255,255,0.6), rgba(255,255,255,0));
  animation: scrollLine 2.2s ease-in-out infinite;
  transform-origin: top;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); }
  50% { transform: scaleY(1); }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

.ticker {
  background: var(--c-ink);
  color: var(--c-paper);
  padding: 22px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.ticker-track {
  display: flex;
  gap: 64px;
  white-space: nowrap;
  animation: ticker 10s linear infinite;
  font-family: var(--f-display);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 300;
  font-style: italic;
}
.ticker-track span { display: inline-flex; align-items: center; gap: 64px; }
.ticker-track svg { width: 18px; height: 18px; opacity: 0.55; flex-shrink: 0; }
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.about {
  background: var(--c-bone);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.about-head {
  display: grid;
  gap: 28px;
}
.about-copy {
  display: grid;
  gap: 24px;
}
.about-copy p {
  margin: 0;
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.75;
  color: var(--c-silver-4);
  max-width: 52ch;
}
.about-copy strong { color: var(--c-ink); font-weight: 600; }

.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--c-line);
  margin-top: clamp(48px, 6vw, 80px);
}
.value {
  padding: 36px 28px;
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 20px;
  align-items: start;
  border-bottom: 1px solid var(--c-line);
}
.value-num {
  font-family: var(--f-display);
  font-size: 18px;
  letter-spacing: 0.04em;
  color: var(--c-silver-3);
  padding-top: 0;
}
.value:nth-child(2) .value-num,
.value:nth-child(3) .value-num {
    transform: translateX(12px);
}


.value-body h3 {
  font-size: clamp(22px, 2vw, 28px);
  margin-bottom: 10px;
}
.value-body p {
  margin: 0 0 18px 0;
  font-size: 15px;
  color: var(--c-silver-4);
  line-height: 1.7;
  max-width: 60ch;
}

.value-body p:last-child {
    margin-bottom: 0;
}

@media (min-width: 900px) {
  .about-grid { grid-template-columns: 1.05fr 1fr; }
  .values-grid { grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--c-line); }
  .value {
    border-bottom: 0;
    border-right: 1px solid var(--c-line);
    padding: 40px 36px 40px 0;
  }
  .value:last-child { border-right: 0; padding-right: 0; }
  .value:first-child { padding-left: 0; }
}

.types {
  background: var(--c-ink);
  color: var(--c-paper);
}
.types-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: clamp(40px, 5vw, 64px);
  align-items: end;
}
.types-head h2 { color: var(--c-paper); }
.types-head .lede { color: rgba(255,255,255,0.7); }

@media (min-width: 900px) {
  .types-head { grid-template-columns: 1.2fr 1fr; gap: 56px; }
}

.types-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 3vw, 28px);
}
@media (min-width: 720px) {
  .types-grid { grid-template-columns: repeat(3, 1fr); }
}

.type-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 22px;
  color: var(--c-paper);
  isolation: isolate;
}
.type-media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--rad-md);
  background: #111;
}
.type-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.9s var(--ease-out), filter 0.6s;
  filter: saturate(0.95) brightness(0.96);
}
.type-card:hover .type-media img { transform: scale(1.05); }
.type-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.55));
}
.type-tag {
  position: absolute;
  top: 18px; left: 18px;
  z-index: 1;
  padding: 6px 12px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.92);
  color: var(--c-ink);
  border-radius: 999px;
  font-weight: 600;
}
.type-num {
  position: absolute;
  bottom: 16px; right: 18px;
  z-index: 1;
  font-family: var(--f-display);
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.1em;
}
.type-body { display: grid; gap: 10px; }
.type-body h3 {
  font-size: clamp(26px, 2.4vw, 34px);
  color: var(--c-paper);
}
.type-body p {
  margin: 0 0 18px 0;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
  max-width: 36ch;
}

.type-body p:last-child {
    margin-bottom: 0;
}

.type-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.16);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.type-foot .arrow {
  width: 18px; height: 18px;
  transition: transform 0.4s var(--ease-out);
}
.type-card:hover .type-foot .arrow { transform: translate(4px, -4px); }

.approach { background: var(--c-paper); }
.approach-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 5vw, 72px);
  align-items: start;
}
@media (min-width: 900px) {
  .approach-grid { grid-template-columns: 1fr 1.2fr; }
}

.approach-image {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--rad-md);
  background: var(--c-silver-1);
}
.approach-image img { width: 100%; height: 100%; object-fit: cover; }
.approach-image .badge {
  position: absolute;
  bottom: 22px; left: 22px;
  padding: 12px 18px;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(8px);
  color: var(--c-paper);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 999px;
}

.steps {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  border-top: 1px solid var(--c-line);
}
.step {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--c-line);
  cursor: pointer;
  transition: padding 0.4s var(--ease-soft);
}
.step:hover { padding-left: 16px; padding-right: 16px; }
.step-num {
  font-family: var(--f-display);
  font-size: 36px;
  color: var(--c-silver-3);
  line-height: 1;
}
.step h3 {
  font-size: clamp(20px, 1.8vw, 26px);
  margin: 0;
}
.step p {
  display: none;
  margin: 8px 0 0;
  font-size: 14px;
  color: var(--c-silver-4);
  line-height: 1.65;
  max-width: 50ch;
  grid-column: 2 / -1;
}
.step .plus {
  width: 28px; height: 28px;
  border: 1px solid var(--c-ink);
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
  transition: background 0.3s, transform 0.4s var(--ease-soft);
}
.step .plus::before, .step .plus::after {
  content: "";
  position: absolute;
  background: var(--c-ink);
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  transition: background 0.3s;
}
.step .plus::before { width: 10px; height: 1px; }
.step .plus::after { width: 1px; height: 10px; transition: height 0.3s var(--ease-soft), background 0.3s; }
.step.open .plus { background: var(--c-ink); transform: rotate(90deg); }
.step.open .plus::before, .step.open .plus::after { background: var(--c-paper); }
.step.open p { display: block; }

.gallery {
  background: var(--c-bone);
}
.gallery-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: clamp(36px, 4vw, 56px);
}
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(16px, 1.5vw, 20px);
}
@media (min-width: 720px) {
  .gallery-grid {
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 200px;
  }
}
.tile {
  position: relative;
  overflow: hidden;
  border-radius: var(--rad-md);
  background: var(--c-silver-1);
  cursor: zoom-in;
}
.tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}
.tile:hover img { transform: scale(1.05); }
.tile-cap {
  position: absolute;
  left: 18px; bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: var(--c-paper);
  z-index: 2;
}
.tile-cap .place {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.85;
}
.tile-cap .name {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 400;
}
.tile::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.6));
}
.tile { aspect-ratio: 4 / 3; }

@media (min-width: 720px) {
  .tile { aspect-ratio: auto; }
  .tile.t-1 { grid-column: span 2; grid-row: span 2; }
  .tile.t-2 { grid-column: span 2; grid-row: span 2; }
  .tile.t-3 { grid-column: span 2; grid-row: span 2; }
  .tile.t-4 { grid-column: span 2; grid-row: span 2; }
  .tile.t-5 { grid-column: span 2; grid-row: span 2; }
  .tile.t-6 { grid-column: span 2; grid-row: span 2; }
  .tile.t-7 { grid-column: span 2; grid-row: span 2; }
  .tile.t-8 { grid-column: span 2; grid-row: span 2; }
  .tile.t-9 { grid-column: span 2; grid-row: span 2; }
}

.areas {
  background: var(--c-paper);
}
.areas-head {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
  align-items: start;
  margin-bottom: clamp(40px, 5vw, 64px);
}
.areas-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 0;
    border-top: 1px solid var(--c-line);
}

@media (min-width: 900px) {
    .areas-head {
        grid-template-columns: 1.2fr 1fr;
        gap: 56px;
    }

    .areas-list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}
.area {
  padding: 28px 24px 28px 0;
  border-bottom: 1px solid var(--c-line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: padding 0.4s var(--ease-soft), background 0.3s;
}
.area:hover { padding-left: 16px; background: var(--c-bone); }
.area-name {
  font-family: var(--f-display);
  font-size: clamp(22px, 2vw, 28px);
}
.area-pin {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-silver-3);
}

.cta-strip {
  position: relative;
  color: var(--c-paper);
  text-align: center;
  overflow: hidden;
  padding: clamp(80px, 12vw, 160px) 0;
}
.cta-strip-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.cta-strip-bg img {
  width: 100%; height: 100%; object-fit: cover;
}
.cta-strip-bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.65), rgba(10,10,10,0.85));
}
.cta-strip .container { position: relative; z-index: 1; }
.cta-strip h2 {
  color: var(--c-paper);
  font-size: clamp(36px, 6vw, 80px);
  margin-bottom: 28px;
  max-width: 18ch;
  margin-inline: auto;
}
.cta-strip p {
  color: rgba(255,255,255,0.75);
  font-size: clamp(15px, 1.2vw, 18px);
  max-width: 52ch;
  margin: 0 auto 36px;
}

.contact {
  background: var(--c-bone);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 5vw, 72px);
}
@media (min-width: 900px) {
  .contact-grid { grid-template-columns: 1fr 1.05fr; }
}

.contact-info { display: grid; gap: 36px; }
.contact-info h2 { margin-bottom: 8px; }

.info-block {
  display: grid;
  gap: 6px;
  padding-top: 22px;
  border-top: 1px solid var(--c-line);
}
.info-block .label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-silver-3);
}
.info-block .value {
  font-family: var(--f-display);
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.25;
}
.info-block .phone-value {
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.01em;
}

.info-block a.value:hover { color: var(--c-silver-4); }

.info-block .studio-address {
  font-size: clamp(17px, 1.4vw, 22px);
  line-height: 1.4;
  font-style: italic;
  font-weight: 300;
  letter-spacing: 0.005em;
  display: inline-block;
  border-bottom: 1px solid var(--c-line);
  padding-bottom: 4px;
  transition: border-color 0.3s, color 0.3s;
}
.info-block .studio-address:hover {
  color: var(--c-silver-4);
  border-bottom-color: var(--c-silver-4);
}

.social-row {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}
.social-row a {
  width: 42px; height: 42px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--c-line);
  transition: background 0.3s, color 0.3s, border-color 0.3s;
  color: var(--c-ink);
}
.social-row a:hover {
  background: var(--c-ink);
  color: var(--c-paper);
  border-color: var(--c-ink);
}
.social-row svg { width: 16px; height: 16px; }

.form-card {
  background: var(--c-paper);
  border: 1px solid var(--c-line);
  padding: clamp(28px, 4vw, 48px);
  border-radius: var(--rad-md);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
@media (min-width: 600px) {
  .form-grid { grid-template-columns: 1fr 1fr; }
  .field-full { grid-column: 1 / -1; }
}

.field { display: grid; gap: 6px; position: relative; }
.field label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-silver-3);
  font-weight: 600;
}
.field input,
.field select,
.field textarea {
  font: inherit;
  font-size: 15px;
  color: var(--c-ink);
  padding: 12px 0;
  border: 0;
  border-bottom: 1px solid var(--c-line);
  background: transparent;
  border-radius: 0;
  transition: border-color 0.3s;
  width: 100%;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-bottom-color: var(--c-ink);
}
.field textarea { resize: vertical; min-height: 100px; }
.field select { appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'><path d='M1 1l5 5 5-5' stroke='%230a0a0a' stroke-width='1.4' stroke-linecap='round'/></svg>"); background-repeat: no-repeat; background-position: right 4px center; padding-right: 24px; }

.form-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.form-foot small {
  font-size: 12px;
  color: var(--c-silver-3);
  max-width: 36ch;
  line-height: 1.5;
}
.form-success {
  display: none;
  padding: 22px;
  border: 1px solid var(--c-ink);
  border-radius: var(--rad-md);
  background: var(--c-ink);
  color: var(--c-paper);
  margin-top: 22px;
  align-items: center;
  gap: 14px;
}
.form-success.show { display: flex; }
.form-success svg { width: 22px; height: 22px; flex-shrink: 0; }

.footer {
  background: var(--c-ink);
  color: rgba(255,255,255,0.7);
  padding: clamp(64px, 8vw, 100px) 0 28px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
@media (min-width: 720px) {
  .foot-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
}

.foot-brand { display: grid; gap: 22px; max-width: 36ch; }
.foot-logo { width: 130px; }
.foot-brand p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
}

.foot-col h4 {
  font-family: var(--f-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-paper);
  margin: 0 0 20px;
}
.foot-col ul {
  list-style: none;
  margin: 0; padding: 0;
  display: grid; gap: 12px;
}
.foot-col a {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  transition: color 0.3s;
}
.foot-col a:hover { color: var(--c-paper); }

.foot-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.06em;
}

.foot-mega {
  font-family: var(--f-display);
  font-size: clamp(80px, 18vw, 240px);
  font-weight: 300;
  line-height: 0.85;
  letter-spacing: -0.02em;
  color: rgba(255,255,255,0.06);
  text-align: center;
  margin-top: 40px;
  user-select: none;
  pointer-events: none;
}

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.js-reveal .reveal {
  opacity: 0;
  transform: translateY(28px);
}
.js-reveal .reveal.in {
  opacity: 1;
  transform: none;
}
.reveal.d-1 { transition-delay: 0.08s; }
.reveal.d-2 { transition-delay: 0.16s; }
.reveal.d-3 { transition-delay: 0.24s; }
.reveal.d-4 { transition-delay: 0.32s; }

.nav-mobile {
  position: fixed !important;
  top: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  background: var(--c-ink);
  color: var(--c-paper);
  padding: 110px var(--gutter) 40px;
  display: none;
  flex-direction: column;
  gap: 18px;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px);
  transition:
    opacity 0.32s var(--ease-soft),
    transform 0.32s var(--ease-soft),
    visibility 0s linear 0.32s;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.nav-mobile.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition:
    opacity 0.32s var(--ease-soft),
    transform 0.32s var(--ease-soft),
    visibility 0s linear 0s;
}
.nav-mobile a {
  font-family: var(--f-display);
  font-size: clamp(28px, 7vw, 38px);
  line-height: 1.1;
  color: var(--c-paper);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  text-decoration: none;
}
.nav-mobile .btn {
  margin-top: 18px;
  align-self: flex-start;
  background: var(--c-paper);
  color: var(--c-ink);
  border-color: var(--c-paper);
  font-size: 12px;
  padding: 14px 26px;
}
.nav-mobile .btn .arrow { width: 14px; height: 14px; }

.nav-close {
  position: absolute;
  top: 22px;
  right: var(--gutter);
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: var(--c-paper);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.nav-close:hover,
.nav-close:focus-visible {
  background: var(--c-paper);
  color: var(--c-ink);
  border-color: var(--c-paper);
  outline: none;
}
.nav-close svg {
  width: 18px !important;
  height: 18px !important;
  display: block;
}

@media (max-width: 980px) {
  .nav-mobile { display: flex; }
}

@media (min-width: 1100px) {
  .hero-stats { display: flex; }
}

@media (max-width: 980px) {
  .nav-links { display: none !important; }
  .nav-cta { display: none !important; }
  .nav-toggle {
    display: block;
    position: relative;
    z-index: 65;
  }
  .hero-meta { grid-template-columns: 1fr; gap: 24px; }
  .hero-ctas { width: 100%; }
  .hero-ctas .btn { flex: 1; justify-content: center; }
}

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