:root {
  --ink: #1a1c20;
  --paper: #f2f2ef;
  --line: #c8c9c5;
  --muted: #676a6f;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }

.site-nav {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  height: 66px;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.22);
}
.wordmark {
  white-space: nowrap;
  opacity: .6;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -.025em;
  text-shadow: none;
}
.wordmark span:first-child { font-weight: 500; }
.site-nav nav { display: flex; gap: 34px; }
.site-nav nav a, .contact-link {
  font: 500 13px/1 Inter, Arial, sans-serif;
  letter-spacing: -.01em;
}
.contact-link { justify-self: end; }
.contact-link span { margin-left: 12px; font-size: 11px; }

.hero {
  position: relative;
  height: 92vh;
  min-height: 680px;
  overflow: hidden;
  color: #fff;
  background: #101215;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.86) sepia(.34) contrast(.94) brightness(.52);
}
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 52% 34%, rgba(214, 145, 76, .14), transparent 57%),
    linear-gradient(90deg, rgba(55, 31, 16, .24), rgba(66, 39, 20, .06) 46%, rgba(42, 25, 15, .2)),
    linear-gradient(180deg, rgba(22, 16, 11, .16), rgba(17, 14, 11, .3) 52%, rgba(12, 11, 10, .74));
  box-shadow: inset 0 0 180px rgba(29, 18, 10, .4);
}
.hero-copy {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: min(1000px, calc(100% - 48px));
  transform: translate(-50%, -48%);
  text-align: center;
}
.hero h1 {
  margin: 0;
  font-size: clamp(48px, 6.4vw, 104px);
  font-weight: 300;
  line-height: .92;
  letter-spacing: -.065em;
}
.hero-copy p {
  max-width: 520px;
  margin: 30px auto 0;
  color: rgba(255,255,255,.76);
  font-size: 14px;
  line-height: 1.45;
}
.hero-actions {
  margin-top: 34px;
  display: flex;
  justify-content: center;
  gap: 9px;
}
.hero-actions a {
  width: 238px;
  height: 52px;
  padding: 0 0 0 18px;
  display: grid;
  grid-template-columns: 1fr 52px;
  align-items: center;
  color: #fff;
  background: rgba(13, 15, 18, .72);
  border: 1px solid rgba(255, 255, 255, .38);
  font: 500 13px/1 Inter, Arial, sans-serif;
  letter-spacing: -.01em;
  text-align: left;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .07);
  transition: background-color .2s ease, border-color .2s ease;
}
.hero-actions a:hover {
  background: rgba(20, 23, 27, .9);
  border-color: rgba(255, 255, 255, .7);
}
.hero-action-label { padding-right: 16px; }
.hero-action-icon {
  align-self: stretch;
  display: grid;
  place-items: center;
  border-left: 1px solid rgba(255, 255, 255, .24);
}
.hero-action-icon svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  stroke-width: 1.35;
  stroke-linecap: square;
  stroke-linejoin: miter;
}
.label {
  font: 400 9px/1.2 DM Mono, monospace;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.intro {
  padding: 150px 7vw 120px;
  display: flex;
  justify-content: center;
  border-bottom: 1px solid var(--line);
}
.label { margin: 7px 0 0; color: var(--muted); }
.intro-copy {
  width: min(1120px, 100%);
  margin: 0;
}
.intro-text {
  width: 100%;
  margin: 0;
  text-align: left;
}
.intro-text p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.5;
}
.intro-text p:first-child { color: var(--ink); }
.intro-text p + p { margin-top: 22px; }

.markets {
  padding: 68px 0 82px;
  overflow: hidden;
  color: #fff;
  background: var(--ink);
}
.markets-head {
  padding: 0 7vw;
  display: grid;
  grid-template-columns: auto minmax(80px, 1fr);
  align-items: center;
  gap: 28px;
}
.markets-head h2 {
  margin: 0;
  font: 400 clamp(28px, 2.6vw, 42px)/1 Inter, Arial, sans-serif;
  letter-spacing: -.045em;
}
.markets-head::after {
  content: "";
  height: 1px;
  background: rgba(255, 255, 255, .28);
}
.markets .label { color: #91949a; }
.city-carousel {
  margin-top: 34px;
  padding: 0 7vw 18px;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: min(68vw, 920px);
  gap: 16px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scrollbar-color: #777b82 transparent;
  scrollbar-width: thin;
}
.city-card {
  position: relative;
  display: block;
  container-type: size;
  height: min(56vw, 620px);
  min-height: 440px;
  overflow: hidden;
  scroll-snap-align: start;
  background: #292c31;
  border: 1px solid #3b3e43;
  cursor: pointer;
}
.city-card:focus-visible { outline: 2px solid #fff; outline-offset: 3px; }
.city-card video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.68);
}
.city-shade {
  position: absolute;
  z-index: 2;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,12,14,.08), rgba(10,12,14,.72));
}
.city-card > span {
  position: absolute;
  z-index: 3;
  top: 22px;
  left: 22px;
  padding-left: 14px;
  color: rgba(255, 255, 255, .78);
  font: 500 12px/1 Inter, Arial, sans-serif;
  letter-spacing: -.01em;
  font-variant-numeric: tabular-nums;
}
.city-card > span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 8px;
  height: 1px;
  background: rgba(255, 255, 255, .62);
}
.city-card > div:last-child { position: absolute; z-index: 3; left: 20px; right: 20px; bottom: 20px; }
.city-card h3 { margin: 0; font-size: clamp(34px, 5vw, 72px); font-weight: 300; line-height: .95; letter-spacing: -.06em; }
.city-card p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, .72);
  font: 400 14px/1.25 Inter, Arial, sans-serif;
  letter-spacing: -.015em;
}
.city-visit {
  width: fit-content;
  margin-top: 24px;
  padding-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, .9);
  border-bottom: 1px solid rgba(255, 255, 255, .56);
  font: 500 13px/1 Inter, Arial, sans-serif;
  letter-spacing: -.01em;
}
.city-visit span { font-size: 12px; }
.city-card:hover .city-visit { border-bottom-color: #fff; }
.partners {
  position: relative;
  padding: 108px 7vw 88px;
  overflow: hidden;
  color: #f2f2ef;
  background: #111317;
}
.partners > .audience-video,
.partners > .audience-video-shade {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.partners > .audience-video {
  display: block;
  object-fit: cover;
  filter: grayscale(1) contrast(1.15) brightness(.16);
  transform: scale(1.01);
}
.partners > .audience-video-shade {
  background: rgba(8, 10, 12, .42);
}
.audience-stage {
  position: relative;
  z-index: 1;
  max-width: 1500px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) repeat(2, minmax(0, .45fr));
  gap: clamp(48px, 6vw, 112px);
  align-items: end;
}
.audience-summary {
  position: relative;
  z-index: 1;
}
.audience-summary data {
  display: block;
  margin-top: 0;
  color: #f4f4f0;
  font: 300 clamp(92px, 10vw, 160px)/.78 Inter, sans-serif;
  letter-spacing: -.075em;
}
.audience-summary > p {
  min-height: 34px;
  margin: 26px 0 0 4px;
  color: #a4a8ae;
  font: 400 clamp(18px, 1.35vw, 22px)/1.25 Inter, sans-serif;
  letter-spacing: -.025em;
}
.engagement-metric strong {
  display: block;
  color: #f4f4f0;
  font-size: clamp(66px, 6vw, 98px);
  font-weight: 300;
  line-height: .8;
  letter-spacing: -.07em;
}
.engagement-metric span {
  display: block;
  min-height: 34px;
  max-width: 18ch;
  margin-top: 26px;
  color: #979ca1;
  font: 400 12px/1.4 Inter, sans-serif;
  letter-spacing: -.01em;
}
.market-counts {
  position: relative;
  z-index: 1;
  max-width: 1500px;
  margin: 88px auto 0;
  padding-top: 28px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: clamp(20px, 3vw, 58px);
  border-top: 1px solid rgba(242,242,239,.14);
}
.market-counts span {
  display: block;
  color: #7f848a;
  font: 400 12px/1.2 Inter, sans-serif;
  letter-spacing: -.01em;
}
.market-counts strong {
  display: block;
  margin-top: 10px;
  color: #e8eae5;
  font: 400 20px/1 DM Mono, monospace;
  font-variant-numeric: tabular-nums;
  letter-spacing: -.04em;
}
.contact-section {
  padding: 120px 7vw 108px;
  background: var(--paper);
  border-top: 1px solid var(--line);
}
.contact-copy,
.contact-form {
  width: 100%;
  max-width: 720px;
  margin-right: auto;
  margin-left: auto;
}
.form-trap {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
.contact-copy h2 {
  margin: 0 0 58px;
  font-size: clamp(48px, 5.5vw, 78px);
  font-weight: 300;
  line-height: .92;
  letter-spacing: -.06em;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-field {
  padding: 0;
}
.form-field label {
  display: block;
  margin-bottom: 10px;
  font: 500 14px/1.2 Inter, sans-serif;
  letter-spacing: -.01em;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid #b9bbb7;
  border-radius: 3px;
  outline: 0;
  color: var(--ink);
  background: #fafaf7;
  font: 400 16px/1.4 Inter, sans-serif;
  transition: border-color .2s ease, background .2s ease;
}
.form-field select { cursor: pointer; }
.form-field textarea {
  min-height: 148px;
  resize: vertical;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--ink);
  background: #fff;
}
.form-submit {
  padding-top: 4px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
}
.form-status {
  margin: 0;
  color: var(--muted);
  font: 400 14px/1.4 Inter, sans-serif;
  letter-spacing: -.01em;
}
.form-submit button {
  width: 100%;
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  border: 1px solid var(--ink);
  border-radius: 0;
  color: #fff;
  background: var(--ink);
  font: 500 15px/1 Inter, sans-serif;
  letter-spacing: -.01em;
  cursor: pointer;
  transition: color .2s ease, background .2s ease;
}
.form-submit button:hover {
  color: var(--ink);
  background: transparent;
}
.form-submit button:active { transform: translateY(1px); }
.form-submit button:disabled {
  opacity: .55;
  cursor: wait;
}
.form-status { min-height: 12px; margin-top: 14px; }

@media (max-width: 800px) {
  .site-nav { height: 58px; padding: 0 16px; grid-template-columns: 1fr auto; }
  .site-nav nav { display: none; }
  .hero { height: 86vh; min-height: 660px; }
  .hero-copy { width: calc(100% - 32px); text-align: left; }
  .hero h1 { font-size: clamp(49px, 14vw, 72px); }
  .hero h1 br { display: none; }
  .hero-copy p { margin-left: 0; }
  .hero-actions { justify-content: flex-start; flex-wrap: wrap; }
  .hero-actions a { min-width: 0; }
  .intro { padding: 95px 16px 75px; }
  .intro-text p { font-size: 16px; }
  .markets { padding: 56px 0 64px; }
  .markets-head { padding: 0 16px; gap: 18px; }
  .markets-head h2 { font-size: 26px; }
  .markets-head > p:last-child { max-width: 440px; }
  .city-carousel { margin-top: 28px; padding: 0 16px 16px; grid-auto-columns: 86vw; }
  .city-card { height: 112vw; min-height: 430px; }
  .partners { min-height: 0; padding: 72px 16px 62px; }
  .audience-stage { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 64px 28px; }
  .audience-summary { grid-column: 1 / -1; }
  .audience-summary data { margin-top: 0; font-size: 25vw; }
  .audience-summary > p { margin: 20px 0 0 3px; }
  .engagement-metric strong { font-size: 22vw; }
  .engagement-metric span { margin-top: 20px; font-size: 11px; }
  .market-counts { margin-top: 70px; padding-top: 24px; grid-template-columns: repeat(2, 1fr); gap: 30px 34px; }
  .market-counts strong { font-size: 19px; }
  .contact-section { padding: 80px 16px 70px; }
  .contact-copy h2 { margin-bottom: 44px; font-size: 48px; }
  .contact-form { max-width: none; }
  .form-submit button { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

.credits-page {
  min-height: 100dvh;
  padding: 9vw 7vw;
  color: #f2f2ef;
  background: #111317;
}
.credits-back {
  color: rgba(255, 255, 255, .58);
  font-size: 14px;
  letter-spacing: -.02em;
}
.credits-page h1 {
  max-width: 900px;
  margin: 18vh 0 72px;
  font-size: clamp(52px, 8vw, 118px);
  font-weight: 300;
  line-height: .9;
  letter-spacing: -.065em;
}
.credit-entry {
  max-width: 900px;
  padding: 26px 0;
  display: grid;
  grid-template-columns: minmax(160px, .7fr) 1.3fr auto;
  gap: 28px;
  align-items: baseline;
  border-top: 1px solid rgba(255, 255, 255, .25);
  border-bottom: 1px solid rgba(255, 255, 255, .25);
}
.credit-entry p { margin: 0; }
.credit-entry p:first-child { color: rgba(255, 255, 255, .58); }
.credit-entry a { text-decoration: underline; text-underline-offset: 4px; }
.credit-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

@media (max-width: 700px) {
  .credits-page { padding: 28px 16px 70px; }
  .credits-page h1 { margin: 24vh 0 52px; }
  .credit-entry { grid-template-columns: 1fr; gap: 10px; }
}
