:root {
  --ink: #09090c;
  --ink-soft: #17171d;
  --paper: #f3f1ec;
  --white: #ffffff;
  --muted: #77777f;
  --line: #d8d5ce;
  --blue: #1838ff;
  --blue-deep: #101f9c;
  --page: min(1180px, calc(100vw - 48px));
  --display: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  --body: "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

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

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  background: var(--white);
  color: var(--ink);
  transform: translateY(-160%);
}

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

.page-shell {
  width: var(--page);
  margin-inline: auto;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  padding: 12px max(24px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.94);
  transition: min-height 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  min-height: 68px;
  border-color: rgba(9, 9, 12, 0.12);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.brand {
  position: relative;
  z-index: 102;
  display: block;
  width: 260px;
}

.brand img {
  width: 100%;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a {
  position: relative;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

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

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

.site-nav .nav-contact {
  padding: 11px 16px;
  background: var(--ink);
  color: var(--white);
}

.site-nav .nav-contact::after {
  display: none;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  display: flex;
  min-height: 100svh;
  align-items: flex-end;
  overflow: hidden;
  padding: 150px 0 126px;
  background: var(--ink);
  color: var(--white);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-image {
  background-image: url("../images/hero/concert-crowd-hero.png");
  background-position: center;
  background-size: cover;
  filter: grayscale(1) contrast(1.08);
  transform: scale(1.02);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(4, 4, 7, 0.93) 0%, rgba(4, 4, 7, 0.65) 52%, rgba(4, 4, 7, 0.18) 100%),
    linear-gradient(0deg, rgba(4, 4, 7, 0.82) 0%, transparent 55%);
}

.hero-content {
  position: relative;
  z-index: 2;
  margin-bottom: 36px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  color: var(--blue);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 3px;
  background: currentColor;
  content: "";
}

.eyebrow.light {
  color: #8e9dff;
}

.hero h1,
.section h2,
.contact-section h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.hero h1 {
  max-width: 900px;
  font-size: clamp(4.5rem, 10vw, 9rem);
}

.hero-intro {
  max-width: 620px;
  margin: 32px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border: 1px solid transparent;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button-primary {
  background: var(--blue);
  color: var(--white);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #4960ff;
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--white);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
}

.hero-capabilities {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(4, 4, 7, 0.74);
  backdrop-filter: blur(8px);
}

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

.capability-grid span {
  padding: 21px 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-align: center;
  text-transform: uppercase;
}

.capability-grid span:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.section {
  padding: 120px 0;
}

.section h2,
.contact-section h2 {
  max-width: 920px;
  font-size: clamp(3rem, 7vw, 6.5rem);
}

.section-about {
  position: relative;
  background: var(--paper);
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: clamp(60px, 9vw, 150px);
  align-items: start;
}

.section-heading {
  position: sticky;
  top: 120px;
}

.about-copy {
  padding-top: 45px;
}

.about-copy p,
.tim-copy p {
  margin: 0 0 25px;
  color: #3d3d43;
}

.about-copy .lead,
.tim-copy .lead {
  color: var(--ink);
  font-size: 1.25rem;
  line-height: 1.48;
}

.section-services {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.services-mark {
  position: absolute;
  top: 50%;
  right: -180px;
  width: 720px;
  opacity: 0.08;
  transform: translateY(-50%) rotate(-8deg);
}

.services-intro {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 82px;
}

.services-intro .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -28px;
}

.services-intro p:last-child {
  max-width: 440px;
  margin: 0 0 4px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.02rem;
}

.service-list {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  list-style: none;
}

.service-list li {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 30px;
  padding: 36px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.service-number {
  color: #8e9dff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.service-list h3 {
  margin: 0 0 8px;
  font-size: clamp(1.4rem, 3vw, 2.35rem);
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.service-list p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
}

.section-projects {
  overflow: hidden;
  background: var(--ink-soft);
  color: var(--white);
}

.projects-heading {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 60px;
}

.projects-heading p:last-child {
  max-width: 420px;
  margin: 0 0 6px;
  color: rgba(255, 255, 255, 0.58);
}

.poster-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.poster-card {
  position: relative;
  grid-column: span 3;
  min-height: 390px;
  margin: 0;
  overflow: hidden;
  background: #202027;
}

.poster-card-tall {
  grid-column: span 4;
  grid-row: span 2;
  min-height: 796px;
}

.poster-card-wide {
  grid-column: span 5;
}

.poster-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 300ms ease, transform 500ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.poster-card figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  padding: 70px 18px 17px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.95), transparent);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.poster-card figcaption span {
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.2;
}

.poster-card figcaption small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-align: right;
  text-transform: uppercase;
}

.poster-card:hover img {
  filter: brightness(0.75);
  transform: scale(1.035);
}

.poster-card:hover figcaption,
.poster-card:focus-within figcaption {
  opacity: 1;
  transform: translateY(0);
}

.section-cases {
  background: var(--paper);
}

.cases-heading {
  margin-bottom: 76px;
}

.case-study {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
  padding: 72px 0;
  border-top: 1px solid var(--line);
}

.case-study:last-child {
  border-bottom: 1px solid var(--line);
}

.case-study-reverse .case-visual {
  order: 2;
}

.case-visual {
  overflow: hidden;
  border: 1px solid rgba(9, 9, 12, 0.12);
  background: var(--white);
  box-shadow: 0 24px 70px rgba(9, 9, 12, 0.12);
}

.case-visual img {
  width: 100%;
  transition: transform 500ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.case-study:hover .case-visual img {
  transform: scale(1.018);
}

.case-kicker {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.case-copy h3 {
  margin: 0 0 22px;
  font-size: clamp(2rem, 4vw, 3.6rem);
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.case-copy > p:not(.case-kicker) {
  color: #494950;
}

.metric-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 34px 0 0;
  padding: 0;
}

.metric-list div {
  padding-top: 14px;
  border-top: 3px solid var(--blue);
}

.metric-list dt {
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1;
}

.metric-list dd {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-transform: uppercase;
}

.section-tim {
  background: var(--white);
}

.tim-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.68fr) minmax(0, 1.32fr);
  gap: clamp(60px, 9vw, 150px);
  align-items: start;
}

.tim-portrait {
  position: sticky;
  top: 112px;
}

.tim-portrait img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  filter: saturate(0.85);
}

.portrait-caption {
  display: flex;
  flex-direction: column;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.portrait-caption strong {
  font-size: 1rem;
}

.portrait-caption span {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.tim-copy h2 {
  margin-bottom: 40px;
}

.contact-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  background: var(--blue-deep);
  color: var(--white);
}

.contact-section::after {
  position: absolute;
  right: -80px;
  bottom: -140px;
  width: 500px;
  height: 500px;
  border: 100px solid rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  content: "";
}

.contact-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: end;
}

.contact-details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-bottom: 5px;
}

.contact-details p {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact-details a {
  margin-top: 8px;
  font-size: clamp(1.25rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.25;
  text-decoration-color: rgba(255, 255, 255, 0.35);
  text-underline-offset: 5px;
}

.contact-details a:hover,
.contact-details a:focus-visible {
  text-decoration-color: var(--white);
}

.site-footer {
  padding: 28px 0;
  background: var(--white);
}

.footer-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.footer-brand {
  width: 210px;
}

.site-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1050px) {
  .site-nav {
    gap: 18px;
  }

  .site-nav a {
    font-size: 0.69rem;
  }

  .brand {
    width: 220px;
  }

  .poster-card,
  .poster-card-wide {
    grid-column: span 4;
  }

  .poster-card-tall {
    grid-column: span 4;
  }
}

@media (max-width: 820px) {
  :root {
    --page: min(100% - 34px, 680px);
  }

  html {
    scroll-padding-top: 76px;
  }

  .site-header {
    min-height: 70px;
    padding: 10px 17px;
  }

  .brand {
    width: 205px;
  }

  .menu-toggle {
    position: relative;
    z-index: 102;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 0 9px 12px;
    border: 0;
    background: transparent;
    color: var(--ink);
    font: inherit;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
  }

  .menu-icon,
  .menu-icon::before,
  .menu-icon::after {
    width: 20px;
    height: 2px;
    background: currentColor;
    content: "";
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .menu-icon {
    position: relative;
  }

  .menu-icon::before,
  .menu-icon::after {
    position: absolute;
    left: 0;
  }

  .menu-icon::before {
    top: -6px;
  }

  .menu-icon::after {
    top: 6px;
  }

  .menu-toggle[aria-expanded="true"] .menu-icon {
    background: transparent;
  }

  .menu-toggle[aria-expanded="true"] .menu-icon::before {
    top: 0;
    transform: rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] .menu-icon::after {
    top: 0;
    transform: rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    z-index: 101;
    top: 70px;
    right: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    max-height: calc(100svh - 70px);
    padding: 18px 24px 26px;
    overflow-y: auto;
    border-top: 1px solid rgba(9, 9, 12, 0.12);
    background: var(--white);
    box-shadow: 0 24px 45px rgba(9, 9, 12, 0.16);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    width: 100%;
    padding: 14px 2px;
    border-bottom: 1px solid var(--line);
    font-size: 1.15rem;
    letter-spacing: 0.04em;
    line-height: 1.2;
    text-transform: uppercase;
  }

  .site-nav .nav-contact {
    width: auto;
    margin-top: 18px;
    padding: 14px 18px;
    border-bottom: 0;
    font-size: 1rem;
    letter-spacing: 0.09em;
    text-transform: uppercase;
  }

  .hero {
    min-height: 860px;
    padding-bottom: 170px;
  }

  .hero-image {
    background-position: 65% center;
  }

  .hero-shade {
    background: linear-gradient(90deg, rgba(4, 4, 7, 0.91), rgba(4, 4, 7, 0.45));
  }

  .hero h1 {
    font-size: clamp(4rem, 17vw, 6.8rem);
  }

  .capability-grid {
    width: 100%;
    margin-inline: 0;
    grid-template-columns: repeat(2, 1fr);
  }

  .capability-grid span {
    padding: 14px 8px;
    border-left: 0;
    border-right: 0;
    font-size: 0.62rem;
  }

  .capability-grid span:nth-child(1),
  .capability-grid span:nth-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .capability-grid span:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.18);
  }

  .section {
    padding: 84px 0;
  }

  .about-layout,
  .services-intro,
  .projects-heading,
  .case-study,
  .tim-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .section-heading,
  .tim-portrait {
    position: static;
  }

  .about-copy {
    min-width: 0;
    max-width: 100%;
    padding-top: 0;
    overflow-wrap: break-word;
  }

  .section-about .section-heading {
    min-width: 0;
    max-width: 100%;
  }

  .services-intro,
  .projects-heading,
  .contact-layout {
    gap: 34px;
  }

  .services-intro .eyebrow {
    grid-column: auto;
    margin-bottom: -12px;
  }

  .service-list li {
    grid-template-columns: 60px 1fr;
    gap: 12px;
  }

  .poster-grid {
    gap: 10px;
  }

  .poster-card,
  .poster-card-wide,
  .poster-card-tall {
    grid-column: span 6;
    grid-row: auto;
    min-height: auto;
    aspect-ratio: 0.675;
  }

  .poster-card figcaption {
    display: none;
  }

  .case-study,
  .case-study-reverse {
    gap: 36px;
    padding: 54px 0;
  }

  .case-study-reverse .case-visual {
    order: 0;
  }

  .tim-portrait {
    max-width: 430px;
  }

  .contact-section {
    padding: 84px 0;
  }

  .footer-layout {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 520px) {
  .section-about h2 {
    max-width: 100%;
    font-size: clamp(2.55rem, 11.5vw, 3.75rem);
    overflow-wrap: break-word;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .section h2,
  .contact-section h2 {
    font-size: clamp(2.8rem, 14vw, 4.3rem);
  }

  .metric-list {
    gap: 6px;
  }

  .metric-list dt {
    font-size: 1.45rem;
  }

  .metric-list dd {
    font-size: 0.57rem;
  }
}

@media (max-width: 390px) {
  .brand {
    width: 180px;
  }

  .site-nav {
    padding-inline: 18px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
