/* ═════════════ HOME ═════════════ */

/* ─── HERO PIN (scroll-lock wrapper) ─── */
.hero-pin {
  height: 200vh;        /* extra 100vh of scroll room for the expand animation */
  position: relative;
}

/* ─── HERO ──────────────────────── */
.hero {
  position: sticky;
  top: 0;
  min-height: 100vh;
  padding: 140px var(--pad) 80px;
  overflow: clip;          /* clip keeps visuals contained without breaking sticky */
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 40px;
  isolation: isolate;
}

/* Huge orbiting line-art shapes in the background */
.hero__orbit {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero__orbit-shape {
  position: absolute;
  opacity: .14;
  filter: brightness(0) invert(1);
  will-change: transform;
}
.hero__orbit-shape.a { top: -10%; right: -10%; width: 49%; animation: spin 120s linear infinite; }
.hero__orbit-shape.b { bottom: -20%; left: -14%; width: 55%; animation: spin 180s linear infinite reverse; }
.hero__orbit-shape.c { top: 10%; left: 28%; width: 19.6%; opacity: .08; animation: spin 90s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* Meta row — top */
.hero__meta {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  gap: 28px;
  font-family: var(--f-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--grey-blue);
  position: relative;
  z-index: 2;
}
.hero__meta-left { text-align: left; }
.hero__meta-right { text-align: right; }
.hero__meta-center {
  text-align: center;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.hero__meta strong { color: var(--paper); font-weight: 500; }

/* Headline — stencil */
.hero__head {
  position: relative;
  z-index: 2;
  align-self: center;
  padding: 40px 0 20px;
}
.hero__eyebrow {
  font-family: var(--f-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .24em;
  color: var(--orange);
  margin-bottom: 32px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.hero__eyebrow::before {
  content: "";
  width: 36px; height: 1px;
  background: currentColor;
}

.hero__title {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: var(--fs-hero);
  line-height: .88;
  letter-spacing: -0.03em;
  color: var(--paper);
  position: relative;
}
.hero__title .row { display: block; position: relative; white-space: nowrap; }
.hero__title .row--indent { padding-left: 18%; }
.hero__title .row--indent-2 { padding-left: 36%; }
.hero__title .em { color: var(--orange); font-style: normal; }

/* Cut through: an orange band slicing through the middle row */
.hero__title .cut {
  display: inline-block;
  position: relative;
}
.hero__title .cut::after {
  content: "";
  position: absolute;
  left: -4%; right: -4%;
  top: 86%;
  height: 14%;
  background: var(--orange);
  z-index: -1;
  transform-origin: left center;
  transform: scaleX(0);
  animation: cut-in 1.2s var(--e-out) .6s forwards;
}
@keyframes cut-in { to { transform: scaleX(1); } }

/* Expanding orange background — fills hero on scroll */
.hero__expand {
  position: absolute;
  z-index: 1;
  background: var(--orange);
  border-radius: 4px;
  pointer-events: none;
  will-change: transform;
  overflow: hidden;
  /* JS sets top/left/width/height to match the cut bar, then scales it */
}
.hero__expand-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity .4s ease;
}
.hero__expand.has-video .hero__expand-video {
  opacity: 1;
}
.hero__expand::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    transparent 40%,
    rgba(0, 0, 0, 0.35) 70%,
    rgba(0, 0, 0, 0.6) 100%
  );
  opacity: 0;
  transition: opacity .4s ease;
  pointer-events: none;
}
.hero__expand.has-video::after {
  opacity: 1;
}

/* Hero bottom bar: shape-nav + sub copy + CTA */
.hero__dock {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 48px;
  position: relative;
  z-index: 2;
}
.hero__sub {
  max-width: 440px;
  font-size: 16px;
  line-height: 1.5;
  color: #cfd8dc;
}
.hero__sub strong { color: var(--paper); font-weight: 500; }

.hero__cta-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-end;
}
.hero__scroll-hint {
  font-family: var(--f-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--grey-blue);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.hero__scroll-hint svg {
  width: 12px; height: 18px;
  animation: bob 1.6s var(--e-io) infinite;
}
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(4px); } }

/* ─── SHAPE-NAV (the 6 shapes as nav device) ─── */
.shape-nav {
  margin-top: 60px;
  padding: 28px 0;
  border-top: 1px solid rgba(255,255,255,.12);
  border-bottom: 1px solid rgba(255,255,255,.12);
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  position: relative;
  z-index: 2;
  -webkit-backdrop-filter: blur(12px) saturate(1.2);
  backdrop-filter: blur(12px) saturate(1.2);
  background: rgba(0, 0, 0, 0.15);
  border-radius: 6px;
}
.shape-nav__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 22px;
  border-right: 1px solid rgba(255,255,255,.08);
  position: relative;
  cursor: pointer;
  transition: background .3s;
}
.shape-nav__item:last-child { border-right: 0; }
.shape-nav__item:hover { background: rgba(255,255,255,.06); }

.shape-nav__shape {
  width: 52px; height: 52px;
  position: relative;
  display: block;
}
.shape-nav__shape img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: contain;
  transition: opacity .45s var(--e-io), transform .8s var(--e-out);
}
/* Hide separate line images — derive outline from the solid instead */
.shape-nav__shape .line { display: none; }
.shape-nav__shape .solid {
  opacity: .35;
  filter: brightness(0) invert(1);
  transform: scale(1);
}
.shape-nav__item:hover .shape-nav__shape .solid {
  opacity: 1;
  filter: none;
  transform: scale(1.05) rotate(6deg);
}

.shape-nav__num {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: .22em;
  color: var(--grey-blue);
}
.shape-nav__label {
  font-family: var(--f-display);
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--paper);
}
.shape-nav__desc {
  font-family: var(--f-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--grey-blue);
  line-height: 1.4;
}

@media (max-width: 1080px) {
  .shape-nav { grid-template-columns: repeat(3, 1fr); }
  .shape-nav__item:nth-child(3) { border-right: 0; }
}
@media (max-width: 640px) {
  .shape-nav { grid-template-columns: repeat(2, 1fr); }
  .shape-nav__item:nth-child(3) { border-right: 1px solid rgba(255,255,255,.08); }
  .shape-nav__item:nth-child(2n) { border-right: 0; }
}

/* ─── MARQUEE BAND ─── */
.band {
  padding: 36px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(40px, 7vw, 96px);
  line-height: 1;
  letter-spacing: -0.03em;
}
.band .em { color: var(--orange); font-style: normal; }
.band .dot {
  display: inline-block;
  width: .5em; height: .5em;
  border-radius: 50%;
  background: var(--orange);
  margin: 0 .4em;
  vertical-align: middle;
  transform: translateY(-10%);
}

/* ─── INTRO (light section — manifesto) ─── */
/* Scroll-lock wrapper for typewriter animation */
.intro-pin {
  height: 300vh;
  position: relative;
}
.intro {
  padding: 140px var(--pad);
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: sticky;
  top: 0;
  min-height: 100vh;
  justify-content: center;
}
.intro__label {
  font-family: var(--f-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--subtle);
}
.intro__label strong { color: var(--orange); font-weight: 500; }
.intro__lede {
  font-family: var(--f-display);
  font-size: clamp(28px, 3.4vw, 56px);
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: var(--ink);
  max-width: 100%;
}
.intro__lede .em { color: var(--orange); font-style: normal; }
.intro__lede .strike {
  display: inline-block;
  position: relative;
}
.intro__lede .strike::after {
  content: "";
  position: absolute;
  left: -2%; right: -2%;
  top: 50%;
  height: 2px;
  background: var(--orange);
  transform-origin: left center;
}
/* Typewriter cursor */
.intro__cursor {
  display: inline-block;
  width: 3px;
  height: 1em;
  background: var(--orange);
  margin-left: 4px;
  vertical-align: text-bottom;
  animation: blink-cursor .7s step-end infinite;
}
@keyframes blink-cursor {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}
.intro__meta {
  margin-top: 44px;
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  font-family: var(--f-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--subtle);
  opacity: 0;
  transition: opacity .6s ease;
}
.intro__meta.is-visible { opacity: 1; }
.intro__meta span strong { color: var(--ink); font-weight: 500; }

@media (max-width: 900px) {
  .intro { gap: 30px; padding: 100px var(--pad); }
}

/* ─── SECTORS (dark section — scroll-driven photo reveals) ─── */
.sectors {
  padding: 160px var(--pad) 0;
  position: relative;
  overflow: hidden;
}
.sectors__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 40px;
  margin-bottom: 80px;
}
.sectors__title {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(44px, 7vw, 108px);
  line-height: .9;
  letter-spacing: -0.03em;
}
.sectors__title .em { color: var(--orange); font-style: normal; }
.sectors__right {
  max-width: 420px;
  justify-self: end;
  font-size: 16px;
  line-height: 1.55;
  color: #cfd8dc;
}

.sectors__list { padding-bottom: 160px; }
.sector-row {
  display: grid;
  grid-template-columns: 80px 1fr 1.3fr;
  gap: 40px;
  padding: 56px 0;
  border-top: 1px solid rgba(255,255,255,.12);
  align-items: center;
  transition: background .5s, padding .5s var(--e-out);
  position: relative;
  text-decoration: none;
  color: inherit;
}
.sector-row:last-child { border-bottom: 1px solid rgba(255,255,255,.12); }
.sector-row:hover { background: color-mix(in srgb, var(--orange) 5%, transparent); padding-left: 12px; }
.sector-row__num {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: .22em;
  color: var(--orange);
}
.sector-row__name {
  font-family: var(--f-display);
  font-size: clamp(36px, 4.8vw, 84px);
  line-height: .95;
  font-weight: 300;
  letter-spacing: -0.02em;
  color: var(--paper);
}
.sector-row__name .em { color: var(--orange); font-style: normal; }
.sector-row__body {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
}
.sector-row__desc {
  font-size: 15px;
  line-height: 1.5;
  color: #9fb0b5;
  max-width: 360px;
}
.sector-row__icon {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  transition: transform .5s var(--e-out);
}
.sector-row__icon img {
  width: 100%; height: 100%;
  object-fit: contain;
}
.sector-row:hover .sector-row__icon { transform: rotate(18deg) scale(1.15); }

@media (max-width: 900px) {
  .sectors__head { grid-template-columns: 1fr; }
  .sectors__right { justify-self: start; }
  .sector-row { grid-template-columns: 60px 1fr; }
  .sector-row__body { grid-column: 1 / -1; grid-template-columns: 1fr; }
  .sector-row__icon { width: 48px; height: 48px; }
}

/* ─── THUMBNAIL CURSOR (monks-style hover effect) ─── */
.thumb-cursor {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 50;
  opacity: 0;
  transition: opacity .3s;
}
.thumb-cursor.active { opacity: 1; }

.thumb-cursor__img {
  width: 180px;
  height: 120px;
  border-radius: 10px;
  overflow: hidden;
  position: absolute;
  background-size: cover;
  background-position: center;
  box-shadow: 0 8px 32px rgba(0,0,0,.35);
  z-index: 5;
}

.thumb-cursor__ghost {
  width: 180px;
  height: 120px;
  position: absolute;
  border: 1.5px solid rgba(255,255,255,.35);
  border-radius: 10px;
  background: none;
}
.thumb-cursor__ghost:nth-child(2) { z-index: 4; }
.thumb-cursor__ghost:nth-child(3) { z-index: 3; }
.thumb-cursor__ghost:nth-child(4) { z-index: 2; }
.thumb-cursor__ghost:nth-child(5) { z-index: 1; }

/* ─── STATS (orange section) ─── */
.stats {
  padding: 140px var(--pad);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 60px;
  border-top: 1px solid rgba(255,255,255,.2);
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.stat__num {
  font-family: var(--f-display);
  font-size: clamp(80px, 14vw, 220px);
  line-height: .82;
  font-weight: 200;
  letter-spacing: -0.05em;
  color: var(--paper);
}
.stat__num .plus { color: var(--dusk); font-weight: 300; }
.stat__label {
  font-size: 15px;
  line-height: 1.4;
  color: rgba(255,255,255,.9);
  max-width: 280px;
  border-top: 1px solid rgba(255,255,255,.3);
  padding-top: 18px;
}
.stat__label strong { color: var(--dusk); font-weight: 500; }
.stat__tag {
  font-family: var(--f-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: rgba(255,255,255,.75);
}
@media (max-width: 900px) {
  .stats { grid-template-columns: 1fr; gap: 60px; }
}

/* ─── FEATURED WORK (dark, horizontal scroll-driven gallery) ─── */
.work-pin {
  /* Extra scroll room: enough for the horizontal track to scroll through */
  position: relative;
}
.work {
  padding: 160px var(--pad) 80px;
  position: sticky;
  top: 0;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.work__head {
  margin-bottom: 60px;
}
.work__kicker {
  font-family: var(--f-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--orange);
  margin-bottom: 18px;
}
.work__title {
  font-family: var(--f-display);
  font-size: clamp(44px, 7vw, 108px);
  line-height: .9;
  letter-spacing: -0.03em;
  font-weight: 300;
}
.work__title .em { color: var(--orange); font-style: normal; }

.work__grid {
  display: flex;
  gap: 20px;
  will-change: transform;
}
.proj-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--dusk-soft);
  display: block;
  isolation: isolate;
  border-radius: 8px;
  flex: 0 0 calc((100% - 60px) / 4);  /* 4 cards visible with 3 gaps */
  min-width: 0;
}
.proj-card__img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--e-out), filter .5s;
  filter: brightness(.55) saturate(1.1);
}
.proj-card:hover .proj-card__img { transform: scale(1.06); filter: brightness(.75) saturate(1.2); }
.proj-card__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(0,0,0,.8));
  z-index: 1;
}
.proj-card__body {
  position: absolute;
  bottom: 20px; left: 20px; right: 20px;
  z-index: 2;
  color: var(--paper);
}
.proj-card__client {
  font-family: var(--f-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .2em;
  margin-bottom: 8px;
  color: rgba(255,255,255,.7);
}
.proj-card__name {
  font-family: var(--f-display);
  font-size: clamp(16px, 1.6vw, 24px);
  line-height: 1;
  letter-spacing: -0.02em;
  font-weight: 400;
}
.proj-card__tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.proj-card__tag {
  font-family: var(--f-mono);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .16em;
  padding: 4px 10px;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 100px;
  color: rgba(255,255,255,.85);
}

/* Card 9: CTA card */
.proj-card--cta {
  background: transparent;
  border: 1px solid rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .3s, background .3s;
}
.proj-card--cta:hover {
  border-color: var(--orange);
  background: rgba(247, 79, 4, .08);
}
.proj-card--cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  color: var(--paper);
}
.proj-card--cta__label {
  font-family: var(--f-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--orange);
}
.proj-card--cta__arrow {
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--paper);
  transition: background .3s, border-color .3s, transform .3s var(--e-out);
}
.proj-card--cta:hover .proj-card--cta__arrow {
  background: var(--orange);
  border-color: var(--orange);
  transform: translateX(4px);
}
.proj-card--cta__arrow svg { width: 20px; height: 20px; }

@media (max-width: 1080px) {
  .proj-card { flex: 0 0 calc((100% - 40px) / 3); }
}
@media (max-width: 780px) {
  .proj-card { flex: 0 0 calc((100% - 20px) / 2); }
}
@media (max-width: 480px) {
  .proj-card { flex: 0 0 100%; aspect-ratio: 4 / 3; }
}

/* ─── PROCESS (warm paper section) ─── */
.process {
  padding: 160px var(--pad);
  position: relative;
  overflow: hidden;
}
.process__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 40px;
  margin-bottom: 100px;
}
.process__title {
  font-family: var(--f-display);
  font-size: clamp(44px, 7vw, 108px);
  line-height: .9;
  letter-spacing: -0.03em;
  font-weight: 300;
}
.process__title .em { color: var(--orange); font-style: normal; }
.process__right {
  font-size: 16px;
  line-height: 1.55;
  max-width: 440px;
  justify-self: end;
  color: var(--subtle);
}

.process__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  counter-reset: step;
}
.step {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 28px 0;
  border-top: 1px solid var(--ink);
  counter-increment: step;
}
.step::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--f-display);
  font-size: 14px;
  letter-spacing: .06em;
  color: var(--orange);
  font-weight: 500;
}
.step__shape {
  width: 72px; height: 72px;
  margin: 8px 0;
}
.step__shape img { width: 100%; height: 100%; object-fit: contain; }
.step__name {
  font-family: var(--f-display);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1;
}
.step__desc {
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--subtle);
}

@media (max-width: 900px) {
  .process__head { grid-template-columns: 1fr; }
  .process__right { justify-self: start; }
  .process__list { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .process__list { grid-template-columns: 1fr; }
}

/* ─── CLIENTS (light section — logo grid) ─── */
.clients {
  padding: 40px var(--pad) 120px;
}
.clients__head {
  margin-bottom: 60px;
}
.clients__kicker {
  font-family: var(--f-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--subtle);
  margin-bottom: 18px;
}
.clients__kicker strong { color: var(--orange); font-weight: 500; }
.clients__title {
  font-family: var(--f-display);
  font-size: clamp(32px, 4vw, 64px);
  line-height: .95;
  letter-spacing: -0.02em;
  font-weight: 300;
  color: var(--ink);
  margin-bottom: 16px;
}
.clients__title .em { color: var(--orange); font-style: normal; }
.clients__sub {
  max-width: 520px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--subtle);
}
.clients__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: var(--rule-light);
  border: 1px solid var(--rule-light);
  border-radius: 8px;
  overflow: hidden;
}
.clients__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 36px 24px;
  background: var(--paper);
  min-height: 100px;
  transition: background .3s;
}
.clients__logo:hover {
  background: #edeeed;
}
.clients__logo img {
  max-width: 100px;
  max-height: 36px;
  object-fit: contain;
  filter: grayscale(1) opacity(.5);
  transition: filter .4s ease;
}
.clients__logo:hover img {
  filter: grayscale(0) opacity(1);
}
/* Larger logos for smaller/less readable brand marks */
.clients__logo:nth-child(5) img,
.clients__logo:nth-child(6) img,
.clients__logo:nth-child(8) img,
.clients__logo:nth-child(11) img,
.clients__logo:nth-child(12) img {
  max-width: 140px;
  max-height: 50px;
}
.clients__fallback {
  display: none;
  font-family: var(--f-display);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
  opacity: .4;
  transition: opacity .3s;
}
.clients__logo:hover .clients__fallback {
  opacity: .8;
}

@media (max-width: 1080px) {
  .clients__grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 640px) {
  .clients__grid { grid-template-columns: repeat(3, 1fr); }
  .clients__logo { padding: 28px 16px; }
}
@media (max-width: 400px) {
  .clients__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ─── TEAM (Makers photo — deep section) ─── */
.makers {
  padding: 160px var(--pad);
  position: relative;
  overflow: hidden;
}
.makers__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
.makers__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #0a2a33;
}
.makers__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.08);
}
.makers__ring {
  position: absolute;
  inset: -8%;
  border: 2px solid var(--orange);
  border-radius: 50%;
  mix-blend-mode: normal;
  z-index: 2;
  pointer-events: none;
  transform-origin: center;
  animation: ring-spin 24s linear infinite;
}
@keyframes ring-spin { to { transform: rotate(360deg); } }
.makers__ring::before {
  content: "";
  position: absolute;
  top: -6px; left: 50%;
  width: 12px; height: 12px;
  background: var(--orange);
  border-radius: 50%;
  transform: translateX(-50%);
}

.makers__eyebrow {
  font-family: var(--f-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--orange);
  margin-bottom: 24px;
}
.makers__title {
  font-family: var(--f-display);
  font-size: clamp(40px, 6vw, 88px);
  line-height: .9;
  letter-spacing: -0.03em;
  font-weight: 300;
  color: var(--paper);
  margin-bottom: 30px;
}
.makers__title .em { color: var(--orange); font-style: normal; }
.makers__copy {
  font-size: 16px;
  line-height: 1.6;
  color: #cfd8dc;
  margin-bottom: 14px;
}
.makers__stats {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.makers__stat .num {
  font-family: var(--f-display);
  font-size: 44px;
  line-height: 1;
  color: var(--orange);
  font-weight: 300;
  margin-bottom: 8px;
}
.makers__stat .lab {
  font-family: var(--f-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--grey-blue);
  line-height: 1.4;
}

@media (max-width: 900px) {
  .makers__grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ─── CONTACT BAND (light section right before footer) ─── */
.contact-band {
  padding: 120px var(--pad);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  border-top: 1px solid var(--rule-light);
}
.contact-band__left {
  font-family: var(--f-display);
  font-size: clamp(40px, 5.8vw, 88px);
  line-height: .92;
  font-weight: 300;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.contact-band__left .em { color: var(--orange); font-style: normal; }
.contact-band__right {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 440px;
  justify-self: end;
  font-size: 15px;
  color: var(--subtle);
  line-height: 1.55;
}
.contact-band__cta {
  margin-top: 16px;
  align-self: flex-start;
}
@media (max-width: 900px) {
  .contact-band { grid-template-columns: 1fr; }
  .contact-band__right { justify-self: start; }
}
