/* ============================================
   NX CENTURY — COMPONENTS
   ============================================ */

/* ---------- SERVICES (editorial rows) ---------- */
.svc-list { border-top: 1px solid var(--line); }
.svc-row {
  display: grid;
  grid-template-columns: 88px 1.1fr 1.4fr;
  gap: var(--s-5);
  align-items: start;
  padding: var(--s-7) var(--gutter);
  border-bottom: 1px solid var(--line);
  max-width: var(--max);
  margin: 0 auto;
  transition: background var(--dur-1) var(--ease);
}
.svc-row:hover { background: var(--bg-soft); }
.svc-row__n {
  font-family: var(--font-mono);
  font-size: var(--t-sm);
  color: var(--accent);
  letter-spacing: 0.18em;
  padding-top: 10px;
}
.svc-row__h {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.6vw, 56px);
  line-height: 0.98;
  letter-spacing: -0.02em;
}
.svc-row__body { padding-top: 6px; }
.svc-row__desc { color: var(--fg-mute); font-size: var(--t-base); line-height: 1.55; max-width: 56ch; }
.svc-row__deliver {
  margin-top: 16px;
  font-family: var(--font-mono);
  font-size: var(--t-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-dim);
}
.svc-row__deliver b { color: var(--fg-mute); font-weight: 500; }
@media (max-width: 860px) {
  .svc-row { grid-template-columns: 1fr; gap: 14px; padding: var(--s-6) var(--gutter); }
  .svc-row__n { padding-top: 0; }
}

/* always-included strip */
.svc-included {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin-top: 28px;
}
.svc-included span {
  font-family: var(--font-mono);
  font-size: var(--t-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-mute);
  padding: 9px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
}

/* ---------- WORK — by client ---------- */
.client-nav {
  position: sticky;
  top: 0;
  z-index: 60;
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  padding: 14px var(--gutter);
  background: rgba(5,5,5,0.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.client-nav a {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-mute);
  padding: 8px 14px;
  border: 1px solid transparent;
  border-radius: 999px;
  transition: color var(--dur-1) var(--ease), border-color var(--dur-1) var(--ease);
}
.client-nav a:hover { color: var(--fg); border-color: var(--line-strong); }

.client-block { padding: var(--s-9) 0; border-top: 1px solid var(--line); scroll-margin-top: 60px; }
.client-block:first-of-type { border-top: 0; }
.client-block__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--s-4);
  flex-wrap: wrap;
  padding: 0 var(--gutter) var(--s-6);
  max-width: var(--max);
  margin: 0 auto;
}
.client-block__title {
  font-family: var(--font-display);
  font-size: clamp(40px, 7vw, 110px);
  line-height: 0.88;
  letter-spacing: -0.03em;
}
.client-block__title .it { font-style: italic; color: var(--fg-mute); }
.client-block__tag {
  font-family: var(--font-mono);
  font-size: var(--t-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  white-space: nowrap;
}

/* feature cards — full-bleed cinematic, one per client (morestudio-style) */
.feature {
  position: relative;
  margin: 0 auto;
  max-width: 1720px;
  padding: 10px var(--gutter) 0;
  scroll-margin-top: 64px;
}
.feature__card {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 460px;
  max-height: 88vh;
  overflow: hidden;
  background: #0a0a0a;
  isolation: isolate;
}
.feature__bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0; padding: 0; margin: 0;
  background: #0a0a0a;
  cursor: pointer;
  z-index: 0;
}
.feature__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1200ms var(--ease), opacity var(--dur-2) var(--ease);
}
.feature__card:hover .feature__bg img { transform: scale(1.05); }
/* cinematic grade */
.feature__card::after {
  content: "";
  position: absolute; inset: 0; z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(120% 90% at 78% 38%, rgba(255,42,42,0.16) 0%, transparent 45%),
    linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.05) 30%, rgba(0,0,0,0.15) 55%, rgba(0,0,0,0.82) 100%);
}
.feature__inner {
  position: absolute; inset: 0; z-index: 2;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: clamp(20px, 3vw, 40px);
  pointer-events: none;
}
.feature__inner * { pointer-events: none; }
.feature__top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  gap: 16px;
  font-family: var(--font-mono);
  font-size: var(--t-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
}
.feature__roles span { display: block; line-height: 1.7; }
.feature__roles span:first-child { color: #fff; }
.feature__contact { justify-self: center; color: rgba(255,255,255,0.7); }
.feature__where { justify-self: end; text-align: right; color: rgba(255,255,255,0.82); }
.feature__where b { color: #fff; font-weight: 500; }

.feature__mid { align-self: center; }
.feature__index {
  font-family: var(--font-display);
  font-size: clamp(40px, 7vw, 96px);
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: #fff;
}
.feature__index span {
  display: block;
  font-family: var(--font-mono);
  font-size: var(--t-xs);
  letter-spacing: 0.28em;
  color: rgba(255,255,255,0.7);
  margin-top: 8px;
}

.feature__bottom {
  align-self: end;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.feature__name {
  font-family: var(--font-display);
  font-size: clamp(54px, 11vw, 188px);
  line-height: 0.82;
  letter-spacing: -0.04em;
  color: #fff;
  text-shadow: 0 8px 40px rgba(0,0,0,0.4);
}
.feature__name .it { font-style: italic; color: rgba(255,255,255,0.7); }

/* hero play cue */
.feature__cue {
  position: absolute; z-index: 3;
  top: 50%; right: clamp(20px,4vw,56px);
  transform: translateY(-50%) scale(0.92);
  width: 84px; height: 84px;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity var(--dur-1) var(--ease), transform var(--dur-1) var(--ease);
  pointer-events: none;
}
.feature__card:hover .feature__cue { opacity: 1; transform: translateY(-50%) scale(1); }
.feature__cue svg { width: 100%; height: 100%; filter: drop-shadow(0 6px 24px rgba(0,0,0,0.5)); }

/* filmstrip of the client's other pieces */
.feature__films {
  position: absolute; z-index: 4;
  right: clamp(20px,3vw,40px); bottom: clamp(20px,3vw,40px);
  display: flex; gap: 8px;
}
.feature__film {
  position: relative;
  width: clamp(56px, 6vw, 92px);
  aspect-ratio: 16/9;
  border: 1px solid rgba(255,255,255,0.25);
  overflow: hidden;
  cursor: pointer;
  padding: 0; margin: 0;
  background: #000;
  transition: border-color var(--dur-1) var(--ease), transform var(--dur-1) var(--ease);
}
.feature__film--tall { aspect-ratio: 9/16; width: clamp(40px, 4vw, 60px); }
.feature__film img { width: 100%; height: 100%; object-fit: cover; display: block; opacity: 0.78; transition: opacity var(--dur-1) var(--ease); }
.feature__film:hover { border-color: var(--accent); transform: translateY(-3px); }
.feature__film:hover img { opacity: 1; }

@media (max-width: 760px) {
  .feature__card { aspect-ratio: auto; height: 78vh; min-height: 520px; }
  .feature__top { grid-template-columns: 1fr; gap: 6px; }
  .feature__contact, .feature__where { justify-self: start; text-align: left; }
  .feature__films { position: static; margin-top: 14px; }
  .feature__bottom { padding-bottom: 8px; }
}

/* ---------- BEHIND THE SCENES (cinematic mosaic) ---------- */
.bts { padding: var(--s-9) 0 var(--s-10); }
.bts__intro { padding: 0 var(--gutter) var(--s-8); max-width: var(--max); margin: 0 auto; }
.bts__intro h2 {
  font-family: var(--font-display);
  font-size: var(--t-xl);
  line-height: 0.92;
  letter-spacing: -0.03em;
  margin: 14px 0 0;
}

.bts-shoot { margin-top: var(--s-9); }
.bts-shoot:first-of-type { margin-top: var(--s-6); }
.bts-shoot__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--s-4);
  padding: 0 var(--gutter) var(--s-5);
  max-width: var(--max);
  margin: 0 auto;
  border-bottom: 1px solid var(--line);
}
.bts-shoot__title {
  font-family: var(--font-display);
  font-size: clamp(34px, 6vw, 88px);
  line-height: 0.9;
  letter-spacing: -0.03em;
}
.bts-shoot__title .it { font-style: italic; color: var(--fg-mute); }
.bts-shoot__meta {
  font-family: var(--font-mono);
  font-size: var(--t-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-mute);
  white-space: nowrap;
}

/* uniform 9:16 grid — every clip framed vertical (horizontals center-crop) */
.bts-mosaic {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
  padding: var(--s-5) var(--gutter) 0;
  max-width: var(--max);
  margin: 0 auto;
}
@media (max-width: 1200px) { .bts-mosaic { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 760px)  { .bts-mosaic { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 460px)  { .bts-mosaic { grid-template-columns: repeat(2, 1fr); } }

.bts-tile {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  margin: 0;
  padding: 0;
  border: 0;
  background: #0a0a0a;
  overflow: hidden;
  cursor: pointer;
}
.bts-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity var(--dur-2) var(--ease), transform var(--dur-2) var(--ease);
}
.bts-tile:hover img { opacity: 0.62; transform: scale(1.045); }
.bts-tile__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--dur-1) var(--ease);
  pointer-events: none;
}
.bts-tile__play svg { width: 48px; height: 48px; filter: drop-shadow(0 4px 16px rgba(0,0,0,0.5)); }
.bts-tile:hover .bts-tile__play { opacity: 1; }
.bts-tile__cap {
  position: absolute;
  left: 12px; bottom: 12px;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #fff;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity var(--dur-1) var(--ease), transform var(--dur-1) var(--ease);
}
.bts-tile:hover .bts-tile__cap { opacity: 0.85; transform: translateY(0); }

/* ---------- NAV ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 18px var(--gutter);
  pointer-events: none;
  mix-blend-mode: difference;
}
.nav > * { pointer-events: auto; }
.nav__brand { display: flex; align-items: center; gap: 10px; color: #fff; }
.nav__brand img { width: 28px; height: 28px; object-fit: contain; }
.nav__wordmark {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #fff;
}
.nav__menu {
  display: flex;
  gap: 28px;
  justify-self: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #fff;
}
.nav__menu a { position: relative; padding: 4px 0; }
.nav__menu a::after {
  content: "";
  position: absolute;
  inset: auto 0 -2px 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--dur-1) var(--ease);
}
.nav__menu a:hover::after,
.nav__menu a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }

.nav__cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1px solid #fff;
  color: #fff;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: background var(--dur-1) var(--ease), color var(--dur-1) var(--ease);
}
.nav__cta:hover { background: #fff; color: #000; }

.nav__toggle {
  position: fixed;
  top: 18px;
  right: var(--gutter);
  z-index: 110;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  display: none;
}

@media (max-width: 820px) {
  .nav { grid-template-columns: 1fr auto auto; gap: 10px; align-items: center; }
  .nav__menu { display: none; }
  .nav__cta { display: inline-flex; padding: 9px 14px; font-size: 10px; letter-spacing: 0.14em; }
  .nav__toggle { position: static; display: block; justify-self: end; }
}
@media (max-width: 440px) {
  .nav__wordmark { display: none; }     /* keep just the mark so the CTA fits */
  .nav__cta { padding: 8px 12px; }
}

/* mobile sheet */
.menu-sheet {
  position: fixed; inset: 0;
  background: #000;
  z-index: 105;
  display: none;
  flex-direction: column;
  padding: 100px var(--gutter) var(--gutter);
  gap: 20px;
}
.menu-sheet.is-open { display: flex; }
.menu-sheet__close {
  position: absolute;
  top: 20px;
  right: var(--gutter);
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,0.3);
  background: none;
  cursor: pointer;
  transition: background var(--dur-1) var(--ease), border-color var(--dur-1) var(--ease);
}
.menu-sheet__close:hover { background: rgba(255,255,255,0.1); border-color: #fff; }
.menu-sheet__close span { font-size: 15px; }
.menu-sheet a {
  font-family: var(--font-display);
  font-size: clamp(36px, 8vw, 64px);
  color: #fff;
}

/* view switch (Cinema / Editorial) */
.view-switch {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 4px;
  border: 1px solid var(--line-strong);
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(12px);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.theme-harbor .view-switch { background: rgba(255,255,255,0.6); border-color: rgba(0,0,0,0.2); }
.view-switch a {
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--fg-mute);
  transition: color var(--dur-1) var(--ease), background var(--dur-1) var(--ease);
}
.view-switch a.is-active {
  color: var(--fg);
  background: var(--surface);
}
.theme-harbor .view-switch a.is-active { background: #0d0d0d; color: #ece8e1; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border: 1px solid currentColor;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: background var(--dur-1) var(--ease), color var(--dur-1) var(--ease);
}
.btn--solid { background: var(--fg); color: var(--bg); border-color: var(--fg); }
.btn--solid:hover { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn--ghost { color: var(--fg); }
.btn--ghost:hover { background: var(--fg); color: var(--bg); }
.btn .arr { transition: transform var(--dur-1) var(--ease); }
.btn:hover .arr { transform: translateX(4px); }

/* ---------- HERO — PURE CINEMA ---------- */
.hero-cinema__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-self: end;
  align-self: end;
}
@media (max-width: 768px) {
  .hero-cinema__ctas { justify-self: start; }
}

.hero-cinema {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
  background: #000;
}
.hero-cinema__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0;
  transition: opacity 1500ms var(--ease-out);
}
.hero-cinema__video.is-loaded { opacity: 0.7; }
.hero-cinema::before {
  /* gradient grade */
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 30%, transparent 0%, rgba(0,0,0,0.55) 80%),
    linear-gradient(180deg, rgba(0,0,0,0.45) 0%, transparent 30%, rgba(0,0,0,0.65) 100%);
  z-index: 1;
}
.hero-cinema__inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: grid;
  grid-template-rows: 1fr auto;
  padding: 120px var(--gutter) 64px;
}
.hero-cinema__title {
  align-self: end;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(64px, 10.5vw, 180px);
  line-height: 0.92;
  letter-spacing: -0.04em;
  color: #fff;
  max-width: 14ch;
}
.hero-cinema__title .it { font-style: italic; color: var(--fg-mute); }
.hero-cinema__meta {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: var(--s-7);
  padding-top: var(--s-7);
}
.hero-cinema__lede {
  max-width: 36ch;
  font-size: var(--t-base);
  color: var(--fg-mute);
}
.hero-cinema__center {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--fg-mute);
  text-align: center;
}
.hero-cinema__center span { color: var(--fg); }
.hero-cinema__cta { justify-self: end; }

@media (max-width: 768px) {
  .hero-cinema__meta { grid-template-columns: 1fr; gap: var(--s-5); }
  .hero-cinema__cta { justify-self: start; }
}

/* scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  pointer-events: none;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--fg-mute);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
@media (max-width: 768px) { .scroll-cue { display: none; } }
.scroll-cue__line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--fg-mute), transparent);
  animation: cue 2.4s var(--ease) infinite;
}
@keyframes cue {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ---------- HERO — HARBOR ---------- */
.hero-harbor {
  position: relative;
  min-height: 100vh;
  padding: 140px var(--gutter) 80px;
  background: var(--bg);
  color: var(--fg);
  overflow: hidden;
}
.hero-harbor__wordmark {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(80px, 18vw, 320px);
  line-height: 0.82;
  letter-spacing: -0.05em;
  margin: 0;
  color: var(--fg);
}
.hero-harbor__wordmark .it { font-style: italic; color: var(--fg-mute); }
.hero-harbor__reel {
  position: relative;
  margin-top: 32px;
  width: 100%;
  aspect-ratio: 21/9;
  background: #000;
  overflow: hidden;
}
.hero-harbor__reel video { width: 100%; height: 100%; object-fit: cover; }
.hero-harbor__row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--s-5);
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  align-items: end;
}
.hero-harbor__row .label { color: var(--fg-mute); font-family: var(--font-mono); font-size: var(--t-xs); letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 8px; }
.hero-harbor__row p { margin: 0; max-width: 36ch; }
@media (max-width: 768px) { .hero-harbor__row { grid-template-columns: 1fr; gap: var(--s-4); } }

/* ---------- WORK LIST (Pure Cinema numbered) ---------- */
.work {
  position: relative;
  padding: var(--s-9) 0 var(--s-10);
  border-top: 1px solid var(--line);
}
.work__head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: end;
  padding: 0 var(--gutter) var(--s-7);
  gap: var(--s-5);
}
.work__head h2 {
  font-family: var(--font-display);
  font-size: var(--t-xl);
  line-height: 0.92;
  letter-spacing: -0.03em;
  margin: 0;
}
.work__list { list-style: none; padding: 0; margin: 0; }
.work__item {
  position: relative;
  display: grid;
  grid-template-columns: 64px 1fr auto auto;
  align-items: center;
  gap: var(--s-5);
  padding: var(--s-5) var(--gutter);
  border-top: 1px solid var(--line);
  transition: background var(--dur-1) var(--ease);
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.work__item::after {
  content: "→";
  position: absolute;
  right: var(--gutter);
  top: 50%;
  transform: translate(20px, -50%);
  opacity: 0;
  font-family: var(--font-mono);
  font-size: 18px;
  color: var(--accent);
  transition: transform var(--dur-1) var(--ease), opacity var(--dur-1) var(--ease);
  pointer-events: none;
}
.work__item:hover::after { opacity: 1; transform: translate(0, -50%); }
.work__item:last-child { border-bottom: 1px solid var(--line); }
.work__item:hover { background: var(--bg-soft); }
.work__num { font-family: var(--font-mono); font-size: var(--t-xs); color: var(--fg-mute); letter-spacing: 0.1em; }
.work__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4.5vw, 64px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--fg);
  transition: color var(--dur-1) var(--ease), transform var(--dur-2) var(--ease-out);
}
.work__item:hover .work__title { color: var(--accent); transform: translateX(8px); }
.work__client { font-family: var(--font-mono); font-size: var(--t-xs); color: var(--fg-mute); letter-spacing: 0.18em; text-transform: uppercase; }
.work__cat { font-family: var(--font-mono); font-size: var(--t-xs); color: var(--fg-dim); letter-spacing: 0.18em; text-transform: uppercase; }

/* hover preview video — follows cursor */
.work__preview {
  position: fixed;
  top: 0; left: 0;
  width: clamp(280px, 24vw, 420px);
  aspect-ratio: 16/10;
  pointer-events: none;
  z-index: 80;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.94);
  transition: opacity 220ms var(--ease), transform 320ms var(--ease-out);
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}
.work__preview.is-on { opacity: 1; transform: translate(-50%, -50%) scale(1); }
.work__preview video, .work__preview img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 768px) {
  .work__item { grid-template-columns: 48px 1fr; gap: 12px; padding: 22px var(--gutter); }
  .work__num { white-space: nowrap; align-self: start; padding-top: 8px; }
  .work__title { font-size: clamp(26px, 7vw, 40px); }
  .work__client, .work__cat { display: none; }
  .work__preview { display: none; }
}

/* filters */
.work__filters {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  padding: 0 var(--gutter) var(--s-5);
}
.work__filter {
  padding: 8px 14px;
  border: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-mute);
  border-radius: 999px;
  cursor: pointer;
  transition: all var(--dur-1) var(--ease);
}
.work__filter:hover { color: var(--fg); border-color: var(--line-strong); }
.work__filter.is-active { background: var(--fg); color: var(--bg); border-color: var(--fg); }

/* ---------- MARQUEE / clients ---------- */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
  background: var(--bg-soft);
}
.marquee__track {
  display: flex;
  gap: 80px;
  white-space: nowrap;
  animation: marquee 38s linear infinite;
  padding-left: 80px;
}
.marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 44px);
  letter-spacing: -0.02em;
  color: var(--fg);
}
.marquee__item .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---------- SECTION TITLES / blocks ---------- */
.section { padding: var(--s-10) var(--gutter); border-top: 1px solid var(--line); }
.section--alt { background: var(--bg-soft); }

.split {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--s-8);
  align-items: start;
}
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: var(--s-6); } }

.split__h {
  font-family: var(--font-display);
  font-size: var(--t-lg);
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.split__body p { color: var(--fg-mute); font-size: var(--t-md); line-height: 1.5; max-width: 56ch; }

/* big quote / manifesto */
.manifesto {
  padding: var(--s-11) var(--gutter);
  text-align: center;
  border-top: 1px solid var(--line);
}
.manifesto__text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(34px, 5.5vw, 96px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  max-width: 22ch;
  margin: 0 auto;
}
.manifesto__attr {
  margin-top: 32px;
  font-family: var(--font-mono);
  font-size: var(--t-xs);
  color: var(--fg-mute);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

/* ---------- VIDEO STRIP ---------- */
.strip {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2px;
  background: var(--line);
}
@media (max-width: 900px) { .strip { grid-template-columns: 1fr; } }

.strip__cell {
  position: relative;
  aspect-ratio: 16/9;
  background: #000;
  overflow: hidden;
}
.strip__cell video, .strip__cell img { width: 100%; height: 100%; object-fit: cover; }
.strip__cell--portrait { aspect-ratio: 9/16; }
.strip__cell .strip__label {
  position: absolute;
  bottom: 16px; left: 16px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #fff;
  padding: 6px 10px;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
}

/* ---------- SERVICES ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
@media (max-width: 760px) { .services-grid { grid-template-columns: 1fr; } }
.svc-card {
  background: var(--bg);
  padding: var(--s-7) var(--s-6);
  position: relative;
  transition: background var(--dur-1) var(--ease);
}
.svc-card:hover { background: var(--bg-soft); }
.svc-card__num { font-family: var(--font-mono); font-size: var(--t-xs); color: var(--fg-mute); letter-spacing: 0.18em; }
.svc-card__h {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 48px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 14px 0 18px;
}
.svc-card__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 6px; color: var(--fg-mute); font-size: var(--t-base); }
.svc-card__list li::before { content: "— "; color: var(--accent); }

/* ---------- FORM ---------- */
.form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-5);
  max-width: 840px;
}
.form__field { display: flex; flex-direction: column; gap: 8px; }
.form__field--full { grid-column: 1 / -1; }
.form__field label {
  font-family: var(--font-mono); font-size: var(--t-xs);
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--fg-mute);
}
.form__field input, .form__field textarea, .form__field select {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line-strong);
  padding: 12px 0;
  font-size: var(--t-md);
  color: var(--fg);
  transition: border-color var(--dur-1) var(--ease);
}
.form__field input:focus, .form__field textarea:focus, .form__field select:focus {
  outline: 0;
  border-color: var(--accent);
}
.form__field textarea { resize: vertical; min-height: 120px; }
@media (max-width: 700px) { .form { grid-template-columns: 1fr; } }

/* footer socials */
.footer__socials { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.footer__socials a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--fg);
  transition: color var(--dur-1) var(--ease);
}
.footer__socials a::before { content: "↗"; font-family: var(--font-mono); color: var(--fg-mute); transition: transform var(--dur-1) var(--ease); }
.footer__socials a:hover { color: var(--accent); }
.footer__socials a:hover::before { transform: translate(2px, -2px); color: var(--accent); }

/* footer social row (horizontal, mid-footer) */
.footer__social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin: 0 0 var(--s-7);
}
.footer__social-row a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border: 1px solid var(--line-strong);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg);
  border-radius: 999px;
  transition: background var(--dur-1) var(--ease), color var(--dur-1) var(--ease), border-color var(--dur-1) var(--ease);
}
.footer__social-row a:hover { background: var(--fg); color: var(--bg); border-color: var(--fg); }

/* ---------- FOOTER ---------- */
.footer {
  padding: var(--s-9) var(--gutter) var(--s-6);
  border-top: 1px solid var(--line);
  background: var(--bg);
}
.footer__top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: var(--s-6);
  padding-bottom: var(--s-7);
}
@media (max-width: 900px) { .footer__top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer__top { grid-template-columns: 1fr; } }
.footer__brand img { width: 36px; height: 36px; object-fit: contain; margin-bottom: 14px; }
.footer__brand h3 { font-family: var(--font-display); font-size: clamp(28px, 3vw, 44px); line-height: 1; letter-spacing: -0.02em; margin-bottom: 12px; }
.footer__col h4 { font-family: var(--font-mono); font-size: var(--t-xs); letter-spacing: 0.22em; text-transform: uppercase; color: var(--fg-mute); margin-bottom: 14px; font-weight: 500; }
.footer__col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.footer__col a { color: var(--fg); transition: color var(--dur-1) var(--ease); }
.footer__col a:hover { color: var(--accent); }
.footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: var(--s-5); border-top: 1px solid var(--line);
  font-family: var(--font-mono); font-size: var(--t-xs); color: var(--fg-mute);
  letter-spacing: 0.18em; text-transform: uppercase;
}
@media (max-width: 600px) { .footer__bottom { flex-direction: column; gap: 16px; align-items: flex-start; } }

/* ---------- CLIENT LOGOS (static row, replaces marquee) ---------- */
.client-logos {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 36px var(--gutter);
  background: var(--bg-soft);
}
.client-logos__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.client-logos__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px 48px;
}
.client-logos__row img {
  height: 26px;
  width: auto;
  max-width: 120px;
  opacity: 0.5;
  filter: grayscale(100%) brightness(200%);
  transition: opacity var(--dur-1) var(--ease), filter var(--dur-1) var(--ease);
}
.client-logos__row img:hover {
  opacity: 1;
  filter: grayscale(0%) brightness(100%);
}
@media (max-width: 600px) {
  .client-logos__row { justify-content: center; gap: 24px 36px; }
}

/* ---------- VIDEO GALLERY (click-to-open, replaces autoplay strip) ---------- */
.video-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  background: transparent;
}
@media (max-width: 600px) { .video-gallery { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; } }
.video-gallery__item {
  position: relative;
  aspect-ratio: 9/16;
  overflow: hidden;
  cursor: pointer;
  background: #000;
  border: none;
  padding: 0;
  display: block;
  width: 100%;
}
.video-gallery__item--portrait { aspect-ratio: 9/16; }
.video-gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: opacity var(--dur-2) var(--ease), transform var(--dur-2) var(--ease);
  display: block;
}
.video-gallery__item:hover img { opacity: 0.7; transform: scale(1.03); }
.video-gallery__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--dur-1) var(--ease);
  pointer-events: none;
}
.video-gallery__play svg { width: 56px; height: 56px; }
.video-gallery__item:hover .video-gallery__play { opacity: 1; }
.video-gallery__label {
  position: absolute;
  bottom: 16px; left: 16px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #fff;
  padding: 6px 10px;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
}

/* ---------- VIDEO LIGHTBOX ---------- */
.v-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.94);
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.v-lightbox[hidden] { display: none; }
.v-lightbox__video {
  width: min(90vw, 1280px);
  max-height: 90vh;
  aspect-ratio: 16/9;
  background: #000;
  display: block;
}
.v-lightbox__video--portrait {
  width: auto;
  height: min(90vh, 900px);
  aspect-ratio: 9/16;
}
.v-lightbox__close {
  position: absolute;
  top: 20px; right: 24px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  padding: 10px 16px;
  border: 1px solid rgba(255,255,255,0.28);
  background: none;
  cursor: pointer;
  transition: background var(--dur-1) var(--ease);
}
.v-lightbox__close:hover { background: rgba(255,255,255,0.1); }

/* ---------- TESTIMONIALS ---------- */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
@media (max-width: 900px) { .testimonials { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .testimonials { grid-template-columns: 1fr; } }
.testimonial {
  background: var(--bg);
  padding: var(--s-7) var(--s-6);
  display: flex;
  flex-direction: column;
  gap: var(--s-5);
}
.testimonial__quote {
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--fg);
  margin: 0;
}
.testimonial__quote::before { content: "“"; color: var(--accent); }
.testimonial__quote::after { content: "”"; color: var(--accent); }
.testimonial__attr {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.testimonial__name {
  font-family: var(--font-mono);
  font-size: var(--t-sm);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg);
}
.testimonial__role {
  font-family: var(--font-mono);
  font-size: var(--t-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-mute);
}

/* ---------- LEGAL / PROSE PAGES ---------- */
.prose {
  max-width: 72ch;
  margin: 0 auto;
  padding: 160px var(--gutter) 120px;
}
.prose h1 {
  font-family: var(--font-display);
  font-size: var(--t-xl);
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.prose .updated {
  font-family: var(--font-mono);
  font-size: var(--t-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-mute);
  margin-bottom: 48px;
}
.prose h2 {
  font-family: var(--font-sans);
  font-size: var(--t-md);
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 48px 0 14px;
}
.prose p, .prose li { color: var(--fg-mute); line-height: 1.65; }
.prose ul { padding-left: 1.2em; margin: 0 0 1em; }
.prose li { margin-bottom: 8px; }
.prose a { color: var(--fg); text-decoration: underline; text-underline-offset: 3px; }
.prose a:hover { color: var(--accent); }
.prose strong { color: var(--fg); font-weight: 500; }

/* big footer wordmark (Harbor-style) */
.footer__giant {
  font-family: var(--font-display);
  font-size: clamp(80px, 18vw, 280px);
  line-height: 0.82;
  letter-spacing: -0.05em;
  color: var(--fg);
  padding: 0 var(--gutter) var(--s-7);
  margin: 0;
}

/* ---------- CUSTOM CURSOR ---------- */
.cursor {
  position: fixed;
  top: 0; left: 0;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--fg);
  pointer-events: none;
  mix-blend-mode: difference;
  z-index: 200;
  transform: translate(-50%, -50%);
  transition: width 220ms var(--ease), height 220ms var(--ease), background 220ms var(--ease);
}
.cursor--lg { width: 80px; height: 80px; background: var(--accent); }
.cursor__label {
  position: absolute;
  inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  opacity: 0;
  transition: opacity 220ms var(--ease);
}
.cursor--lg .cursor__label { opacity: 1; }

@media (hover: none) {
  .cursor { display: none; }
}

/* ---------- REVEAL ANIMATIONS ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 900ms var(--ease-out), transform 900ms var(--ease-out); }
.reveal.is-in { opacity: 1; transform: translateY(0); }

/* ============================================
   INTRO LOADER — 3D logo spin-reveal
   ============================================ */
.intro {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  background: #000;
  animation: intro-out 0.8s var(--ease) 3.4s forwards;
}
.intro__stage {
  perspective: 1200px;
  animation: intro-zoom 1.1s cubic-bezier(0.62, 0, 0.2, 1) 3.1s forwards;
}
.intro__logo {
  width: clamp(200px, 30vw, 380px);
  height: auto;
  /* the render's black background drops out entirely — logo reads as transparent */
  mix-blend-mode: screen;
  opacity: 0;
  animation: intro-logo-in 0.7s var(--ease) forwards;
}
.intro__word {
  position: absolute;
  bottom: clamp(16%, 22vh, 28%);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--fg-mute);
  opacity: 0;
  animation: intro-word 2.6s var(--ease) 0.8s forwards;
}
@keyframes intro-logo-in {
  0% { opacity: 0; transform: scale(0.82); filter: blur(10px); }
  100% { opacity: 1; transform: scale(1); filter: blur(0); }
}
@keyframes intro-zoom {
  to { transform: scale(1.4); }
}
@keyframes intro-word {
  0% { opacity: 0; letter-spacing: 0.2em; }
  25% { opacity: 1; }
  80% { opacity: 1; }
  100% { opacity: 0; letter-spacing: 0.6em; }
}
@keyframes intro-out {
  to { opacity: 0; visibility: hidden; pointer-events: none; }
}
/* skip when already seen this session, or reduced motion */
.intro--skip { display: none !important; }
@media (prefers-reduced-motion: reduce) {
  .intro { animation: intro-out 0.4s linear 0.6s forwards; }
  .intro__stage { animation: none; }
  .intro__logo { animation: none; opacity: 1; }
  .intro__word { animation: none; opacity: 1; }
}

/* ============================================
   MOTION SYSTEM — scroll, 3D depth, atmosphere
   ============================================ */

/* global vignette — pulls focus to center, cinematic depth */
.vignette {
  position: fixed;
  inset: 0;
  z-index: 149;
  pointer-events: none;
  background: radial-gradient(ellipse 120% 90% at 50% 45%, transparent 55%, rgba(0,0,0,0.55) 100%);
  mix-blend-mode: multiply;
}
.theme-harbor .vignette { opacity: 0.4; }

/* cursor spotlight on dark sections */
.hero-cinema__glow {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.6;
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 35%), rgba(255,42,42,0.16), transparent 60%);
  transition: opacity var(--dur-2) var(--ease);
}

/* cinematic letterbox bars — close in as the hero scrolls away */
.cine-bar {
  position: absolute;
  left: 0; right: 0;
  height: 18vh;
  background: #000;
  z-index: 4;
  transform: scaleY(0);
  pointer-events: none;
}
.cine-bar--top { top: 0; transform-origin: top; }
.cine-bar--bot { bottom: 0; transform-origin: bottom; }

/* film-grain overlay — cinematic texture */
.grain {
  position: fixed;
  inset: -50%;
  width: 200%;
  height: 200%;
  z-index: 150;
  pointer-events: none;
  opacity: 0.07;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain-shift 0.6s steps(2) infinite;
}
.theme-harbor .grain { mix-blend-mode: multiply; opacity: 0.06; }
@keyframes grain-shift {
  0% { transform: translate(0, 0); }
  25% { transform: translate(-3%, 2%); }
  50% { transform: translate(2%, -3%); }
  75% { transform: translate(-2%, -2%); }
  100% { transform: translate(2%, 3%); }
}

/* mask-reveal — display headings wipe up from a clip */
.mask-reveal { clip-path: inset(0 0 100% 0); opacity: 0; will-change: clip-path, opacity, transform; }
.mask-reveal.is-in {
  clip-path: inset(0 0 -10% 0);
  opacity: 1;
  transition: clip-path 1100ms var(--ease-out), opacity 700ms var(--ease-out), transform 1100ms var(--ease-out);
}

/* kinetic word-split reveal */
[data-split] .word { display: inline-block; overflow: hidden; vertical-align: top; }
[data-split] .word > span { display: inline-block; transform: translateY(110%) rotate(4deg); transition: transform 900ms var(--ease-out); will-change: transform; }
[data-split].is-in .word > span { transform: translateY(0) rotate(0); }

/* 3D tilt — pointer-driven depth on cards/rows */
.tilt { transform-style: preserve-3d; will-change: transform; transition: transform 420ms var(--ease-out); }
.tilt__layer { transform: translateZ(40px); transition: transform 420ms var(--ease-out); }

/* perspective contexts */
.work__list,
.services-grid,
.testimonials,
.video-gallery { perspective: 1400px; }

/* magnetic buttons follow the cursor slightly */
[data-magnetic] { will-change: transform; }

/* depth parallax helper */
[data-parallax] { will-change: transform; }

@media (hover: none) {
  .tilt { transform: none !important; }
  .tilt__layer { transform: none !important; }
}
@media (prefers-reduced-motion: reduce) {
  .grain { animation: none; }
  .mask-reveal { clip-path: none; opacity: 1; }
  .tilt, .tilt__layer { transform: none !important; }
}

.split-line { overflow: hidden; display: inline-block; }
.split-line__inner { display: inline-block; transform: translateY(110%); transition: transform 1100ms var(--ease-out); }
.is-in .split-line__inner, .split-line.is-in .split-line__inner { transform: translateY(0); }

/* ---------- HARBOR PAGE TONE ---------- */
.theme-harbor body { background: var(--bg); color: var(--fg); }
.theme-harbor .nav { mix-blend-mode: normal; color: #0d0d0d; }
.theme-harbor .nav__brand,
.theme-harbor .nav__menu,
.theme-harbor .nav__wordmark,
.theme-harbor .nav__cta,
.theme-harbor .nav__toggle { color: #0d0d0d; }
.theme-harbor .nav__cta { border-color: #0d0d0d; }
.theme-harbor .nav__cta:hover { background: #0d0d0d; color: #ece8e1; }

/* ---------- THANKS PAGE ---------- */
.thanks {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 120px var(--gutter);
  text-align: center;
}
.thanks__h {
  font-family: var(--font-display);
  font-size: var(--t-xl);
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  max-width: 18ch;
  margin-inline: auto;
}
