:root {
  --bg: #0a0a0b;
  --surface: #111113;
  --text: #f5f3ef;
  --muted: #9a9590;
  --line: rgba(255, 255, 255, 0.1);
  --red: #cb2226;
  --radius: 10px;
  --max: 1120px;
  --gutter: clamp(20px, 5.5vw, 40px);
  --header-h: 68px;
  --font: "Manrope", system-ui, -apple-system, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  background: var(--bg);
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
}

body.menu-open {
  overflow: hidden;
}

body::selection {
  background: var(--red);
  color: #fff;
}

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

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Header */

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  height: var(--header-h);
  padding-left: max(var(--gutter), env(safe-area-inset-left, 0px));
  padding-right: max(var(--gutter), env(safe-area-inset-right, 0px));
  border-bottom: 1px solid var(--line);
  background: rgba(10, 10, 11, 0.92);
  backdrop-filter: blur(10px);
}

.brand {
  flex-shrink: 0;
  min-width: 0;
}

.brand-logo {
  height: 32px;
  width: auto;
  max-width: min(168px, 48vw);
  object-fit: contain;
}

.menu-toggle {
  display: none;
  flex-shrink: 0;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin-inline: auto;
  background: var(--text);
  transition: transform 0.2s ease;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(8px, 2vw, 24px);
  min-width: 0;
}

.nav a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(245, 243, 239, 0.65);
  white-space: nowrap;
  transition: color 0.2s ease;
}

.nav a:hover {
  color: var(--text);
}

.nav-cta {
  padding: 9px 14px;
  border: 1px solid rgba(245, 243, 239, 0.2);
  border-radius: 999px;
  color: var(--text) !important;
}

.nav-cta:hover {
  border-color: var(--red);
}

/* Layout */

main,
.site-footer {
  position: relative;
  z-index: 1;
}

.section {
  width: 100%;
  max-width: var(--max);
  padding-left: max(var(--gutter), env(safe-area-inset-left, 0px));
  padding-right: max(var(--gutter), env(safe-area-inset-right, 0px));
  margin-inline: auto;
}

/* Hero */

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(32px, 5vw, 56px);
  align-items: center;
  min-height: calc(100svh - var(--header-h));
  padding-block: calc(var(--header-h) + 40px) 64px;
}

.hero-eyebrow {
  margin: 0 0 16px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
}

.hero-title {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.hero-lead {
  margin: 24px 0 0;
  max-width: 36em;
  color: var(--muted);
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  font-family: inherit;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.button.primary {
  background: var(--red);
  color: #fff;
}

.button.primary:hover {
  background: #b01e22;
}

.button.ghost {
  border: 1px solid var(--line);
  color: var(--text);
  background: transparent;
}

.button.ghost:hover {
  border-color: rgba(245, 243, 239, 0.25);
}

/* Hero logo */

.hero-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-width: 0;
}

.hero-logo-img {
  width: min(100%, 480px);
  height: auto;
  object-fit: contain;
  opacity: 1;
}

/* Sections */

.intro {
  padding-block: 64px 20px;
}

.eyebrow {
  margin: 0 0 12px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
}

.intro h2,
.billboards-header h2,
.approach h2,
.contact h2 {
  margin: 0;
  max-width: 16em;
  font-size: clamp(1.625rem, 3.5vw, 2.75rem);
  font-weight: 600;
  line-height: 1.42;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.highlight {
  background: var(--red);
  color: #fff;
  padding: 0 0.12em 0 0;
  line-height: inherit;
  vertical-align: baseline;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.heading-lines {
  max-width: none;
  text-wrap: nowrap;
  line-height: 1.38;
}

@media (max-width: 560px) {
  .heading-lines {
    text-wrap: balance;
  }
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding-block: 32px 72px;
}

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color 0.2s ease;
}

.service-card:hover {
  border-color: rgba(203, 34, 38, 0.3);
}

.card-number {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: rgba(245, 243, 239, 0.35);
}

.service-card h3 {
  margin: 24px 0 10px;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.service-card p {
  margin: 0 0 16px;
  flex: 1;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.service-card a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
  transition: color 0.2s ease;
}

.service-card a:hover {
  color: var(--red);
}

.showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 40px);
  padding-bottom: 72px;
}

.billboards {
  padding-bottom: 72px;
}

.billboards-header {
  max-width: 36em;
  margin-bottom: 32px;
}

.billboards-header p:last-child {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

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

.billboard-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.billboard-card:hover {
  border-color: rgba(203, 34, 38, 0.35);
  transform: translateY(-2px);
}

.billboard-card__trigger {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
  font: inherit;
}

.billboard-card__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #0e0e10;
}

.billboard-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.billboard-card:hover .billboard-card__media img {
  transform: scale(1.03);
}

.billboard-card__body {
  padding: 16px 18px 18px;
}

.billboard-card__index {
  display: block;
  margin-bottom: 8px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--red);
}

.billboard-card__body h3 {
  margin: 0;
  font-size: 1.0625rem;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.billboard-card__spot {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.billboard-card__size {
  display: inline-block;
  margin-top: 10px;
  padding: 4px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(245, 243, 239, 0.72);
}

/* Billboard modal */

.billboard-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: var(--gutter);
}

.billboard-modal[hidden] {
  display: none;
}

.billboard-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(6px);
}

.billboard-modal__panel {
  position: relative;
  width: min(920px, 100%);
  max-height: min(92vh, 980px);
  overflow: auto;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 2px);
  background: var(--surface);
}

.billboard-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(10, 10, 11, 0.85);
  color: var(--text);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.billboard-modal__body {
  display: grid;
  gap: 12px;
}

.billboard-modal__info {
  width: 100%;
  height: auto;
  border-radius: 8px;
  border: 1px solid var(--line);
}

.billboard-modal__photos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 10px;
}

.billboard-modal__photos:empty {
  display: none;
}

.billboard-modal__photos img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--line);
}

.billboard-modal__cta {
  width: 100%;
  margin-top: 16px;
}

body.modal-open {
  overflow: hidden;
}

.showcase-copy p:last-child {
  max-width: 36em;
  margin-top: 16px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

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

.media-tile {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  min-height: 160px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  transition: border-color 0.2s ease;
}

.media-tile.wide {
  grid-column: 1 / -1;
  min-height: 180px;
}

.media-tile:hover {
  border-color: rgba(245, 243, 239, 0.16);
}

.media-tile span {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
}

.media-tile strong {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.approach {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(24px, 4vw, 48px);
  padding-bottom: 72px;
}

.approach-list {
  border-top: 1px solid var(--line);
}

.approach-row {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 8px 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.approach-row span {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--red);
}

.approach-row h3 {
  margin: 0;
  font-size: 1.0625rem;
  font-weight: 600;
  line-height: 1.3;
}

.approach-row p {
  grid-column: 2;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.contact {
  margin-bottom: clamp(32px, 5vw, 56px);
}

.contact-wrap {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(32px, 5vw, 64px);
  align-items: end;
  padding-top: clamp(48px, 7vw, 72px);
  border-top: 1px solid var(--line);
}

.contact-intro h2 {
  max-width: 13em;
  margin-top: 0;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: clamp(28px, 4vw, 40px);
  justify-self: center;
  width: fit-content;
  max-width: 100%;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.contact-item__label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.3s ease;
}

.contact-item__value {
  position: relative;
  align-self: flex-start;
  max-width: 100%;
  font-size: clamp(1.25rem, 2.4vw, 1.75rem);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.025em;
  word-break: break-word;
  transition: color 0.3s ease;
}

.contact-item__value::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.contact-item:hover .contact-item__label {
  color: var(--red);
}

.contact-item:hover .contact-item__value {
  color: var(--text);
}

.contact-item:hover .contact-item__value::after {
  transform: scaleX(1);
}

@media (max-width: 820px) {
  .contact-wrap {
    grid-template-columns: 1fr;
    gap: 36px;
    align-items: start;
  }

  .contact-list {
    justify-self: start;
    width: 100%;
    padding-top: 8px;
  }
}

/* Footer */

.site-footer {
  position: relative;
  margin-top: 0;
  padding-top: clamp(40px, 6vw, 72px);
  background: var(--bg);
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(calc(100% - var(--gutter) * 2), var(--max));
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.14) 25%,
    rgba(255, 255, 255, 0.14) 75%,
    transparent 100%
  );
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 48px);
  width: 100%;
  max-width: var(--max);
  padding: 32px max(var(--gutter), env(safe-area-inset-right, 0px)) 16px max(var(--gutter), env(safe-area-inset-left, 0px));
  margin-inline: auto;
}

.footer-brand p {
  max-width: 22em;
  margin: 14px 0 0;
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
}

.footer-logo {
  height: 22px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
}

.footer-nav,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav a,
.footer-contact a,
.footer-bottom a {
  font-size: 13px;
  font-weight: 500;
  color: rgba(245, 243, 239, 0.72);
  transition: color 0.2s ease;
}

.footer-nav a {
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-nav a:hover,
.footer-contact a:hover,
.footer-bottom a:hover {
  color: var(--text);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  max-width: var(--max);
  padding: 8px max(var(--gutter), env(safe-area-inset-right, 0px)) max(32px, env(safe-area-inset-bottom, 0px)) max(var(--gutter), env(safe-area-inset-left, 0px));
  margin-inline: auto;
  font-size: 12px;
  color: rgba(245, 243, 239, 0.38);
}

/* Motion */

[data-animate],
.reveal-item {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].is-visible,
.reveal-item.is-visible {
  opacity: 1;
  transform: none;
}

/* Responsive */

@media (max-width: 1100px) {
  .menu-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    top: calc(var(--header-h) + 8px);
    right: var(--gutter);
    left: var(--gutter);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 6px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(10, 10, 11, 0.98);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-6px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  }

  .nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }

  .nav a {
    padding: 14px 12px;
    border-radius: 6px;
  }

  .nav a:hover {
    background: rgba(255, 255, 255, 0.04);
  }

  .nav-cta {
    margin-top: 4px;
    text-align: center;
  }

  body.menu-open .menu-toggle span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  body.menu-open .menu-toggle span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }
}

@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-block: calc(var(--header-h) + 32px) 48px;
  }

  .hero-logo {
    display: none;
  }

  .cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .showcase,
  .approach {
    grid-template-columns: 1fr;
  }

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

  .intro h2,
  .billboards-header h2,
  .approach h2,
  .contact h2 {
    max-width: none;
  }
}

@media (max-width: 768px) {
  :root {
    --gutter: clamp(28px, 7vw, 40px);
  }
}

@media (max-width: 560px) {
  :root {
    --gutter: 32px;
  }

  .hero-title {
    font-size: clamp(1.625rem, 7.5vw, 2rem);
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .cards,
  .billboard-grid {
    grid-template-columns: 1fr;
  }

  .approach-row {
    grid-template-columns: 32px 1fr;
  }

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

  .footer-bottom {
    flex-direction: column;
  }
}

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

  [data-animate],
  .reveal-item {
    opacity: 1;
    transform: none;
  }
}
