:root {
  --color-signal: #ffe000;
  --color-signal-dark: #ffd000;
  --color-ink: #111111;
  --color-surface: #ffffff;
  --color-muted: #6b6b6b;
  --color-border: #e5e5e5;
  --color-bg-soft: #f7f7f7;

  --font-display: "Montserrat", sans-serif;
  --font-body: "Inter", sans-serif;

  --radius-sm: 4px;
  --radius-md: 8px;
  --shadow-card: 0 2px 8px rgba(0, 0, 0, 0.07);
  --shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.12);
  --shadow-nav: 0 1px 0 rgba(17, 17, 17, 0.1);
  --max-width: 1200px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-ink);
  background: var(--color-surface);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  background: var(--color-signal);
  font-weight: 700;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: relative;
  z-index: 10;
  width: min(var(--max-width), calc(100% - 48px));
  height: 104px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
  background: var(--color-surface);
}

.brand {
  width: 176px;
  height: 80px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.brand img {
  width: 176px;
  height: auto;
}

.site-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.2vw, 34px);
}

.site-nav a {
  position: relative;
  padding: 10px 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 2px;
  background: var(--color-signal);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 160ms ease;
}

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

.button {
  min-height: 44px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: var(--radius-sm);
  background: var(--color-signal);
  color: var(--color-ink);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition:
    background 150ms ease,
    transform 150ms ease;
}

.button:hover {
  background: var(--color-signal-dark);
  transform: scale(1.02);
}

.button:focus-visible,
.site-nav a:focus-visible,
.text-link:focus-visible,
.site-footer a:focus-visible {
  outline: 3px solid var(--color-signal);
  outline-offset: 3px;
}

.header-cta {
  flex: 0 0 auto;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  width: min(100%, 1672px);
  margin: 0 auto;
  background: #27303b;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: auto;
  aspect-ratio: 1672 / 941;
  object-fit: contain;
}

.hero-accessible-copy {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.section-shell {
  width: min(var(--max-width), calc(100% - 48px));
  margin: 0 auto;
}

.section-soft {
  background: var(--color-bg-soft);
}

.section-heading {
  margin-bottom: 48px;
  text-align: center;
}

.section-heading h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.section-heading h2::after {
  content: "";
  width: 48px;
  height: 2px;
  margin: 12px auto 0;
  display: block;
  background: var(--color-signal);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--color-muted);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.benefits {
  padding: 72px 0 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.benefit {
  position: relative;
  padding: 0 48px;
  text-align: center;
}

.benefit + .benefit {
  border-left: 1px solid var(--color-border);
}

.benefit svg {
  width: 46px;
  height: 46px;
  margin: 0 auto 16px;
  fill: none;
  stroke: var(--color-ink);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.benefit svg .accent-stroke {
  stroke: var(--color-signal-dark);
  stroke-width: 2.4;
}

.benefit h2 {
  margin: 0 0 6px;
  font-size: 1rem;
}

.benefit p {
  max-width: 220px;
  margin: 0 auto;
  color: var(--color-muted);
  font-size: 0.85rem;
  line-height: 1.55;
}

.process {
  padding: 72px 0 80px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.steps article {
  position: relative;
  padding: 0 24px;
  text-align: center;
  transition:
    opacity 80ms linear,
    transform 80ms linear;
}

.steps article:not(:last-child)::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: 25px;
  left: calc(50% + 38px);
  width: calc(100% - 76px);
  border-top: 1px dashed #c9c9c9;
  transform: scaleX(1);
  transform-origin: left;
  transition: transform 80ms linear;
}

.steps span {
  position: relative;
  z-index: 1;
  width: 52px;
  height: 52px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  border: 2px solid var(--color-signal);
  border-radius: 50%;
  background: var(--color-surface);
  color: var(--color-signal-dark);
  font-family: var(--font-display);
  font-weight: 800;
  transition:
    color 240ms ease,
    background 240ms ease,
    border-color 240ms ease,
    box-shadow 240ms ease,
    transform 240ms ease;
}

.steps p {
  max-width: 180px;
  margin: 0 auto;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.4;
}

.motion-ready .steps article {
  opacity: calc(0.22 + (var(--reveal, 0) * 0.78));
  transform: translateY(calc(14px * (1 - var(--reveal, 0))));
}

.motion-ready .steps article:not(:last-child)::after {
  transform: scaleX(var(--line-progress, 0));
}

.steps article.is-active span {
  border-color: var(--color-signal-dark);
  background: var(--color-signal);
  color: var(--color-ink);
  box-shadow: 0 0 0 8px rgba(255, 224, 0, 0.16);
  transform: scale(1.08);
}

.campaign-builder {
  padding-top: 104px;
  padding-bottom: 112px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(56px, 8vw, 120px);
  align-items: center;
}

.campaign-intro {
  max-width: 480px;
}

.campaign-intro .eyebrow {
  color: #b99700;
}

.campaign-intro h2 {
  margin: 0 0 22px;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.6vw, 4rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.035em;
}

.campaign-intro > p:not(.eyebrow) {
  margin: 0 0 32px;
  color: var(--color-muted);
  font-size: 1rem;
}

.campaign-options {
  border-top: 1px solid var(--color-border);
}

.campaign-options article {
  position: relative;
  padding: 28px 8px;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  border-bottom: 1px solid var(--color-border);
  transition:
    padding-left 180ms ease,
    background 180ms ease;
}

.campaign-options article::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--color-signal);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 180ms ease;
}

.campaign-options article:hover {
  padding-left: 18px;
  background: linear-gradient(90deg, rgba(255, 224, 0, 0.08), transparent 70%);
}

.campaign-options article:hover::before {
  transform: scaleY(1);
}

.campaign-options article > span {
  padding-top: 5px;
  color: #a9a9a5;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.option-label {
  margin: 0 0 3px;
  color: #b99700;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.campaign-options h3 {
  margin: 0 0 5px;
  font-family: var(--font-display);
  font-size: 1.12rem;
}

.campaign-options article div > p:last-child {
  max-width: 440px;
  margin: 0;
  color: var(--color-muted);
  font-size: 0.86rem;
}

.coverage {
  min-height: 420px;
  display: grid;
  grid-template-columns: 42% 58%;
}

.coverage-copy {
  max-width: 480px;
  margin-left: auto;
  padding: 84px 64px 84px 32px;
}

.coverage-copy .eyebrow {
  color: #bf9f00;
}

.coverage-copy h2 {
  margin: 0 0 22px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  line-height: 1.15;
}

.coverage-copy > p:not(.eyebrow) {
  margin: 0 0 30px;
  color: var(--color-muted);
}

.button-dark {
  background: var(--color-ink);
  color: var(--color-surface);
}

.button-dark:hover {
  background: #282828;
}

.map-art {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  background: #fafafa;
}

.map-art::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 48px rgba(255, 255, 255, 0.9);
}

.map-art > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
}

.map-glow {
  position: absolute;
  z-index: 1;
  left: 60%;
  top: 51%;
  width: min(84%, 640px);
  height: min(88%, 390px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 224, 0, 0.32), rgba(255, 224, 0, 0.08) 48%, transparent 70%);
  transform: translate(-50%, -50%);
  mix-blend-mode: multiply;
}

.contact-section {
  padding-top: 104px;
  padding-bottom: 112px;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(48px, 7vw, 104px);
  align-items: start;
}

.contact-copy {
  max-width: 430px;
  position: sticky;
  top: 32px;
}

.contact-copy .eyebrow {
  color: #b99700;
}

.contact-copy h2 {
  margin: 0 0 22px;
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4.8vw, 4.15rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.contact-copy > p:not(.eyebrow) {
  margin: 0;
  color: var(--color-muted);
  font-size: 1rem;
}

.contact-action {
  min-width: 0;
}

.contact-toggle {
  width: 100%;
  min-height: 58px;
  padding-inline: 22px;
  justify-content: space-between;
  font-size: 0.82rem;
}

.contact-toggle span:last-child {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(17, 17, 17, 0.16);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 1.1rem;
  line-height: 1;
  transition: transform 180ms ease;
}

.contact-toggle[aria-expanded="true"] span:last-child {
  transform: rotate(45deg);
}

.contact-form-panel {
  max-height: 1400px;
  overflow: hidden;
  opacity: 1;
  transform: translateY(0);
  transition:
    max-height 320ms ease,
    opacity 220ms ease,
    transform 220ms ease;
}

.contact-form-panel.is-collapsed {
  max-height: 0;
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
}

.contact-form {
  margin-top: 18px;
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface);
  box-shadow: var(--shadow-card);
}

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

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--color-ink);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--color-ink);
  font: inherit;
  font-size: 0.95rem;
  letter-spacing: 0;
  text-transform: none;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.contact-form input {
  min-height: 48px;
  padding: 0 14px;
}

.contact-form textarea {
  min-height: 136px;
  margin-top: 18px;
  padding: 14px;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #9a9a9a;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--color-signal-dark);
  outline: 0;
  box-shadow: 0 0 0 4px rgba(255, 224, 0, 0.18);
}

.contact-form .button {
  margin-top: 22px;
  width: 100%;
}

.clients {
  padding-top: 76px;
  padding-bottom: 88px;
}

.client-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, #000 7%, #000 93%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 7%, #000 93%, transparent);
}

.client-track {
  width: max-content;
  display: flex;
  animation: client-marquee 24s linear infinite;
  will-change: transform;
}

.client-marquee:hover .client-track,
.client-marquee:focus-within .client-track {
  animation-play-state: paused;
}

.client-group {
  width: max-content;
  min-width: max(100vw, 1200px);
  padding: 12px clamp(48px, 7vw, 110px);
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: clamp(64px, 9vw, 150px);
  color: #777;
  text-align: center;
}

.client-group > * {
  flex: 0 0 auto;
  font-style: normal;
  font-size: clamp(1rem, 2vw, 1.6rem);
}

.client-logo {
  width: auto;
  height: 44px;
  object-fit: contain;
}

.client-logo--veil {
  width: 112px;
  height: auto;
  opacity: 0.58;
  filter: grayscale(1) contrast(0.82);
}

.client-group small {
  margin-top: 2px;
  display: block;
  font-family: var(--font-body);
  font-size: 0.45rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.vapiano {
  font-family: Georgia, serif;
  letter-spacing: 0.06em;
}

.mohv {
  font-family: Georgia, serif;
  letter-spacing: 0.18em;
}

@keyframes client-marquee {
  to {
    transform: translateX(-50%);
  }
}

.site-footer {
  padding: 64px 24px 24px;
  background: var(--color-ink);
  color: var(--color-surface);
}

.footer-inner {
  width: min(1060px, 100%);
  margin: 0 auto 56px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 0.8fr 0.8fr;
  gap: 56px;
}

.footer-brand img {
  width: 190px;
  margin-bottom: 18px;
  filter: invert(1) grayscale(1) brightness(2);
  mix-blend-mode: screen;
}

.footer-brand p,
.site-footer a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
}

.footer-brand p {
  max-width: 210px;
  margin: 0;
}

.site-footer h2 {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-footer .footer-inner > div > a {
  margin-bottom: 7px;
  display: block;
}

.socials {
  display: flex;
  gap: 10px;
}

.socials span,
.socials a {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  font-size: 0.68rem;
  font-weight: 700;
}

.copyright {
  margin: 0;
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.7rem;
  text-align: center;
}

@media (max-width: 960px) {
  .site-header {
    height: 88px;
  }

  .brand,
  .brand img {
    width: 148px;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
    margin-left: auto;
    padding: 10px;
    display: grid;
    align-content: center;
    gap: 5px;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .menu-toggle span {
    width: 24px;
    height: 2px;
    display: block;
    background: var(--color-ink);
    transition:
      transform 180ms ease,
      opacity 180ms ease;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-7px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    inset: 88px 0 auto;
    min-height: calc(100dvh - 88px);
    padding: 48px 32px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    background: var(--color-surface);
    transform: translateX(100%);
    visibility: hidden;
    transition:
      transform 220ms ease,
      visibility 220ms;
  }

  .site-nav.open {
    transform: translateX(0);
    visibility: visible;
  }

  .site-nav a {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 7vw, 2.5rem);
    letter-spacing: -0.02em;
    text-transform: none;
  }

  .benefit {
    padding: 0 28px;
  }

  .campaign-builder {
    gap: 48px;
  }

  .coverage {
    grid-template-columns: 1fr 1fr;
  }

  .contact-section {
    grid-template-columns: 1fr;
  }

  .contact-copy {
    position: static;
  }

  .footer-inner {
    grid-template-columns: 1.4fr 1fr 1fr;
  }

  .footer-inner > div:last-child {
    display: none;
  }
}

@media (max-width: 640px) {
  .site-header {
    width: calc(100% - 32px);
    height: 78px;
  }

  .brand {
    width: 128px;
    height: 64px;
  }

  .brand img {
    width: 128px;
  }

  .site-nav {
    inset: 78px 0 auto;
    min-height: calc(100dvh - 78px);
  }

  .hero-image {
    width: 100%;
    height: auto;
    max-width: none;
    aspect-ratio: 1672 / 941;
    object-fit: contain;
  }

  .section-shell {
    width: min(100% - 32px, var(--max-width));
  }

  .section-heading {
    margin-bottom: 36px;
  }

  .benefits {
    padding: 56px 0;
    grid-template-columns: 1fr;
  }

  .benefit {
    padding: 32px 20px;
  }

  .benefit + .benefit {
    border-top: 1px solid var(--color-border);
    border-left: 0;
  }

  .process {
    padding: 60px 0 64px;
  }

  .steps {
    max-width: 340px;
    margin: 0 auto;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .steps article {
    min-height: 132px;
    padding: 0 0 44px;
  }

  .steps article:not(:last-child)::after {
    top: 64px;
    left: 50%;
    width: 1px;
    height: 48px;
    border-top: 0;
    border-left: 1px dashed #c9c9c9;
    transform: scaleY(1);
    transform-origin: top;
  }

  .motion-ready .steps article:not(:last-child)::after {
    transform: scaleY(var(--line-progress, 0));
  }

  .campaign-builder {
    padding-top: 72px;
    padding-bottom: 80px;
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .campaign-intro h2 {
    font-size: clamp(2.25rem, 12vw, 3.35rem);
  }

  .campaign-options article {
    padding: 24px 4px;
    grid-template-columns: 42px 1fr;
    gap: 12px;
  }

  .coverage {
    grid-template-columns: 1fr;
  }

  .coverage-copy {
    margin: 0;
    padding: 64px 24px;
  }

  .map-art {
    min-height: 340px;
  }

  .map-art > img {
    object-position: 54% center;
  }

  .map-glow {
    left: 60%;
    top: 51%;
    width: min(94%, 430px);
    height: min(82%, 280px);
  }

  .clients {
    padding-top: 60px;
    padding-bottom: 64px;
  }

  .contact-section {
    padding-top: 72px;
    padding-bottom: 80px;
  }

  .contact-copy h2 {
    font-size: clamp(2.25rem, 12vw, 3.35rem);
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .client-marquee {
    width: calc(100% + 32px);
    margin-left: -16px;
  }

  .client-group {
    min-width: 920px;
    padding-inline: 44px;
    gap: 72px;
  }

  .client-track {
    animation-duration: 19s;
  }

  .site-footer {
    padding-top: 52px;
  }

  .footer-inner {
    margin-bottom: 40px;
    grid-template-columns: 1fr 1fr;
    gap: 42px 24px;
  }

  .footer-inner > div:last-child {
    display: block;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

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

  .motion-ready .steps article {
    opacity: 1;
    transform: none;
  }

  .motion-ready .steps article:not(:last-child)::after {
    transform: none;
  }

  .client-track {
    width: 100%;
    transform: none;
  }

  .client-group {
    width: 100%;
    min-width: 0;
    padding-inline: 0;
    flex-wrap: wrap;
    gap: 32px;
  }

  .client-group[aria-hidden="true"] {
    display: none;
  }
}
