﻿:root {
  --black: #050505;
  --ink: #111111;
  --muted: #686868;
  --line: #d9d9d9;
  --soft: #f4f4f1;
  --white: #ffffff;
  --max: 1480px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.45;
}

img {
  max-width: 100%;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 22px clamp(18px, 3vw, 48px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.28em;
  width: max-content;
  font-size: clamp(20px, 1.8vw, 30px);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.6vw, 42px);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.mobile-b2b {
  display: none;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--black);
  background: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--black);
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-links a,
.header-action,
.footer-links a {
  position: relative;
}

.nav-links a::after,
.header-action::after,
.footer-links a::after {
  position: absolute;
  right: 0;
  bottom: -4px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.nav-links a:hover::after,
.header-action:hover::after,
.footer-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-action {
  justify-self: end;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 0.92fr) minmax(320px, 1fr);
  align-items: end;
  gap: clamp(28px, 6vw, 96px);
  max-width: var(--max);
  min-height: calc(100vh - 78px);
  margin: 0 auto;
  padding: clamp(48px, 7vw, 110px) clamp(18px, 3vw, 48px) 56px;
}

.hero-media {
  position: relative;
  min-height: 640px;
}

.image-tile {
  position: absolute;
  overflow: hidden;
  background-color: var(--soft);
  background-position: center;
  background-size: cover;
  filter: none;
}

.image-tile::after,
.visual-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, 0.32));
  content: "";
}

.tile-large {
  inset: 0 18% 0 0;
  background-image: url("https://images.unsplash.com/photo-1483985988355-763728e1935b?auto=format&fit=crop&w=1100&q=85");
}

.tile-top {
  top: 7%;
  right: 0;
  width: 38%;
  height: 32%;
  background-image: url("https://images.unsplash.com/photo-1445205170230-053b83016050?auto=format&fit=crop&w=760&q=85");
}

.tile-bottom {
  right: 4%;
  bottom: 8%;
  width: 44%;
  height: 38%;
  background-image: url("https://images.unsplash.com/photo-1496747611176-843222e1e57c?auto=format&fit=crop&w=760&q=85");
}

.hero-copy {
  max-width: 740px;
  padding-bottom: clamp(18px, 5vw, 78px);
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(48px, 7vw, 112px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.9;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(34px, 5vw, 78px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.9;
  text-transform: uppercase;
}

h3 {
  margin-bottom: 18px;
  font-size: clamp(22px, 2vw, 34px);
  line-height: 1;
  text-transform: uppercase;
}

.hero-text {
  max-width: 620px;
  margin-bottom: 34px;
  color: #303030;
  font-size: clamp(18px, 1.6vw, 25px);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 22px;
  border: 1px solid var(--black);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease;
}

.button-dark {
  background: var(--black);
  color: var(--white);
}

.button-dark:hover,
.button-light:hover {
  background: var(--white);
  color: var(--black);
}

.button-light {
  background: var(--white);
  color: var(--black);
}

.statement {
  border-block: 1px solid var(--black);
  padding: clamp(32px, 4vw, 58px) clamp(18px, 3vw, 48px);
  background: var(--black);
  color: var(--white);
}

.statement p {
  max-width: var(--max);
  margin: 0 auto;
  font-size: clamp(30px, 5.7vw, 92px);
  font-weight: 900;
  line-height: 0.93;
  text-transform: uppercase;
}

.statement-collage {
  overflow: hidden;
  padding: clamp(42px, 6vw, 96px) clamp(18px, 3vw, 48px);
  background: var(--black);
  color: var(--white);
}

.editorial-collage {
  position: relative;
  max-width: var(--max);
  min-height: clamp(420px, 46vw, 680px);
  margin: 0 auto;
}

.editorial-collage img {
  position: absolute;
  width: 21%;
  height: 34%;
  object-fit: cover;
  background: var(--white);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.45);
  filter: grayscale(1) contrast(1.06);
}

.collage-a {
  top: 6%;
  left: 1%;
  z-index: 2;
  width: 25%;
  height: 39%;
  transform: rotate(-2deg);
}

.collage-b {
  top: 2%;
  left: 18%;
  z-index: 4;
  width: 29%;
  height: 32%;
  transform: rotate(2deg);
}

.collage-c {
  top: 8%;
  left: 42%;
  z-index: 3;
  width: 25%;
  height: 38%;
  transform: rotate(-1deg);
}

.collage-d {
  top: 4%;
  right: 3%;
  z-index: 5;
  width: 31%;
  height: 42%;
  transform: rotate(-2deg);
}

.collage-e {
  top: 33%;
  left: 9%;
  z-index: 6;
  width: 27%;
  height: 36%;
  object-position: 50% 18%;
  transform: rotate(-5deg);
}

.collage-f {
  top: 31%;
  left: 32%;
  z-index: 8;
  width: 18%;
  height: 34%;
  transform: rotate(4deg);
}

.collage-g {
  top: 34%;
  right: 21%;
  z-index: 7;
  width: 26%;
  height: 35%;
  transform: rotate(3deg);
}

.collage-h {
  top: 42%;
  right: 4%;
  z-index: 4;
  width: 20%;
  height: 34%;
  transform: rotate(-3deg);
}

.collage-i {
  bottom: 4%;
  left: 2%;
  z-index: 1;
  width: 24%;
  height: 36%;
  transform: rotate(4deg);
}

.collage-j {
  bottom: 3%;
  left: 24%;
  z-index: 3;
  width: 24%;
  height: 31%;
  transform: rotate(-2deg);
}

.collage-k {
  bottom: 5%;
  left: 46%;
  z-index: 4;
  width: 25%;
  height: 38%;
  transform: rotate(2deg);
}

.collage-l {
  bottom: 2%;
  right: 17%;
  z-index: 2;
  width: 20%;
  height: 30%;
  transform: rotate(-4deg);
}

.collage-m {
  bottom: 7%;
  right: 2%;
  z-index: 7;
  width: 20%;
  height: 34%;
  transform: rotate(3deg);
}

.collage-n {
  top: 17%;
  left: 63%;
  z-index: 9;
  width: 18%;
  height: 26%;
  transform: rotate(5deg);
}

.split-section,
.audience-section,
.brands,
.services,
.appointment {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(72px, 9vw, 136px) clamp(18px, 3vw, 48px);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(300px, 1fr);
  gap: clamp(32px, 7vw, 120px);
  border-bottom: 1px solid var(--line);
}

.section-body {
  color: #242424;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: clamp(17px, 1.35vw, 22px);
  font-weight: 400;
  line-height: 1.65;
}

.section-body p:last-child {
  margin-bottom: 0;
}

.audience-section {
  border-bottom: 1px solid var(--black);
}

.audience-heading {
  max-width: 960px;
  margin-bottom: clamp(36px, 5vw, 72px);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--black);
  border-left: 1px solid var(--black);
}

.audience-grid article {
  min-height: 360px;
  padding: clamp(24px, 4vw, 54px);
  border-right: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
}

.audience-grid span {
  display: block;
  margin-bottom: clamp(40px, 6vw, 92px);
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.audience-grid p {
  max-width: 560px;
  color: var(--muted);
  font-size: clamp(18px, 1.6vw, 24px);
}

.brand-marquee {
  overflow: hidden;
  border-bottom: 1px solid var(--black);
  background: var(--white);
}

.marquee-track {
  display: flex;
  width: max-content;
  min-width: 100%;
  animation: move 28s linear infinite;
}

.marquee-track span {
  padding: 22px clamp(28px, 4vw, 68px);
  border-right: 1px solid var(--black);
  font-size: clamp(28px, 4vw, 72px);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

@keyframes move {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-35%);
  }
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(300px, 0.72fr);
  gap: clamp(28px, 6vw, 96px);
  margin-bottom: clamp(38px, 6vw, 86px);
}

.section-heading p:last-child,
.brand-intro p:last-child {
  align-self: end;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: clamp(17px, 1.5vw, 24px);
}

.section-heading.compact {
  display: block;
  max-width: 900px;
}

.brand-collage {
  position: relative;
  width: min(100%, 680px);
  min-height: 250px;
  margin-bottom: clamp(26px, 4vw, 54px);
}

.collage-photo {
  position: absolute;
  background-color: var(--soft);
  background-position: center;
  background-size: cover;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.16);
  filter: none;
}

.collage-one {
  top: 0;
  left: 0;
  z-index: 2;
  width: 34%;
  height: 62%;
  background-image: url("https://images.unsplash.com/photo-1483985988355-763728e1935b?auto=format&fit=crop&w=720&q=85");
  transform: rotate(-1.5deg);
}

.collage-two {
  top: 2%;
  left: 24%;
  z-index: 4;
  width: 40%;
  height: 48%;
  background-image: url("https://images.unsplash.com/photo-1445205170230-053b83016050?auto=format&fit=crop&w=820&q=85");
  transform: rotate(4deg);
}

.collage-three {
  top: 12%;
  right: 0;
  z-index: 5;
  width: 38%;
  height: 62%;
  background-image: url("https://images.unsplash.com/photo-1529139574466-a303027c1d8b?auto=format&fit=crop&w=620&q=85");
  transform: rotate(-2deg);
}

.collage-four {
  bottom: 0;
  left: 12%;
  z-index: 3;
  width: 36%;
  height: 50%;
  background-image: url("https://images.unsplash.com/photo-1503342217505-b0a15ec3261c?auto=format&fit=crop&w=720&q=85");
  transform: rotate(-7deg);
}

.collage-five {
  right: 20%;
  bottom: 0;
  z-index: 1;
  width: 34%;
  height: 44%;
  background-image: url("https://images.unsplash.com/photo-1496747611176-843222e1e57c?auto=format&fit=crop&w=820&q=85");
  transform: rotate(0.5deg);
}

.brand-intro {
  display: grid;
  grid-template-columns: minmax(360px, 0.78fr) minmax(420px, 0.82fr);
  gap: clamp(28px, 6vw, 96px);
  margin-bottom: clamp(32px, 5vw, 72px);
  padding-left: clamp(0px, 2.6vw, 46px);
}

.brand-intro h2 {
  margin-bottom: 0;
  max-width: 760px;
}

.brand-intro .section-kicker {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.brand-side p {
  max-width: 680px;
  align-self: end;
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--black);
  border-left: 1px solid var(--black);
}

.brand-grid article {
  display: flex;
  min-height: 158px;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
  border-right: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
  font-size: clamp(20px, 2vw, 34px);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.brand-grid .brand-number,
.service-number {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

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

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 44px;
  background: var(--black);
  border: 1px solid var(--black);
}

.service-grid article {
  min-height: 360px;
  padding: clamp(22px, 3vw, 42px);
  background: var(--white);
}

.service-grid p {
  max-width: 360px;
  color: var(--muted);
  font-size: 18px;
}

.visual-break {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  min-height: 720px;
  border-top: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
}

.visual-image {
  position: relative;
  min-height: 520px;
  background-image: url("https://images.unsplash.com/photo-1503342217505-b0a15ec3261c?auto=format&fit=crop&w=1300&q=85");
  background-position: center;
  background-size: cover;
  filter: none;
}

.visual-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(36px, 5vw, 76px);
  background: var(--black);
  color: var(--white);
}

.visual-copy p:last-child {
  max-width: 520px;
  margin: 28px 0 0;
  color: #d6d6d6;
  font-size: clamp(18px, 1.5vw, 24px);
}

.appointment {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(300px, 0.75fr);
  gap: clamp(36px, 7vw, 112px);
}

.appointment p {
  max-width: 680px;
  margin-top: 24px;
  color: var(--muted);
  font-size: clamp(18px, 1.5vw, 24px);
}

.appointment-collage {
  position: relative;
  width: min(100%, 760px);
  min-height: clamp(230px, 22vw, 340px);
  margin-top: clamp(36px, 5vw, 64px);
  margin-left: 0;
}

.appointment-layer {
  position: absolute;
  object-fit: cover;
  background: var(--white);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.2);
  filter: grayscale(0.94) sepia(0.08) hue-rotate(74deg) saturate(1.08) contrast(1.08);
}

.appointment-layer-a {
  top: 6%;
  left: 0;
  z-index: 5;
  width: 35%;
  height: 42%;
  transform: rotate(-3deg);
}

.appointment-layer-b {
  top: 18%;
  left: 25%;
  z-index: 6;
  width: 36%;
  height: 48%;
  object-position: 64% 50%;
  transform: rotate(2deg);
}

.appointment-layer-c {
  top: 7%;
  right: 8%;
  z-index: 10;
  width: 34%;
  height: 43%;
  transform: rotate(-2deg);
}

.appointment-layer-d {
  bottom: 5%;
  left: 6%;
  z-index: 2;
  width: 28%;
  height: 36%;
  transform: rotate(3deg);
}

.appointment-layer-e {
  bottom: 0;
  left: 33%;
  z-index: 6;
  width: 29%;
  height: 36%;
  transform: rotate(-4deg);
}

.appointment-layer-f {
  bottom: 8%;
  right: 18%;
  z-index: 3;
  width: 26%;
  height: 34%;
  transform: rotate(4deg);
}

.appointment-layer-g {
  bottom: 2%;
  right: 0;
  z-index: 5;
  width: 29%;
  height: 38%;
  transform: rotate(-3deg);
}

.contact-panel {
  border-top: 1px solid var(--black);
}

.contact-address {
  padding: 24px 0;
  border-bottom: 1px solid var(--black);
  font-size: clamp(22px, 2.5vw, 42px);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.contact-panel a {
  display: block;
  padding: 24px 0;
  border-bottom: 1px solid var(--black);
  font-size: clamp(22px, 2.5vw, 42px);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.contact-panel span,
.contact-address span {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 12px;
}

.site-footer {
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 34px clamp(18px, 3vw, 48px);
  border-top: 1px solid var(--black);
  background: var(--black);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-logo {
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 24px;
  white-space: nowrap;
}

.footer-brand p {
  margin: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}

.site-footer > p {
  margin: 0;
}

.site-footer p:last-child {
  justify-self: end;
  margin-bottom: 0;
  white-space: nowrap;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
    gap: 16px;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .site-header.menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .site-header.menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .nav-links {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: grid;
    max-height: 0;
    overflow: hidden;
    gap: 0;
    background: var(--white);
    border-bottom: 1px solid var(--black);
    font-size: 22px;
    transition: max-height 220ms ease;
  }

  .site-header.menu-open .nav-links {
    max-height: 420px;
  }

  .nav-links a {
    padding: 20px clamp(18px, 3vw, 48px);
    border-top: 1px solid var(--line);
  }

  .mobile-b2b {
    display: block;
  }

  .header-action {
    display: none;
  }

  .hero,
  .split-section,
  .section-heading,
  .brand-intro,
  .appointment,
  .visual-break {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    min-height: 460px;
    order: 2;
  }

  .hero-copy {
    padding-bottom: 0;
  }

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

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

  .brand-collage {
    min-height: 360px;
  }

  .brand-intro {
    max-width: 840px;
    padding-left: 0;
  }

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

  .service-grid article {
    min-height: 260px;
  }

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

  .footer-links {
    justify-content: flex-start;
  }

  .site-footer p:last-child {
    justify-self: start;
  }

  .appointment-collage {
    max-width: 100%;
  }

  .editorial-collage img {
    width: 31%;
    height: 26%;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding-block: 16px;
  }

  .hero {
    padding-top: 36px;
  }

  .hero-media {
    min-height: 360px;
  }

  .tile-large {
    right: 0;
  }

  .tile-top,
  .tile-bottom {
    display: none;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

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

  .audience-grid article {
    min-height: 280px;
  }

  .brand-collage {
    min-height: 260px;
  }

  .collage-one {
    left: 0;
    width: 56%;
    height: 55%;
  }

  .collage-two {
    left: 30%;
    width: 62%;
    height: 34%;
  }

  .collage-three {
    right: 0;
    width: 44%;
    height: 42%;
  }

  .collage-four {
    width: 48%;
    height: 43%;
  }

  .collage-five {
    right: 7%;
    width: 58%;
    height: 38%;
  }

  .brand-grid article {
    min-height: 120px;
  }

  .contact-panel a {
    font-size: 24px;
    overflow-wrap: anywhere;
  }

  .contact-address {
    font-size: 24px;
    overflow-wrap: anywhere;
  }

  .appointment-collage {
    min-height: 420px;
  }

  .editorial-collage {
    min-height: 720px;
  }

  .editorial-collage img,
  .editorial-collage img:nth-child(3n + 1) {
    width: 45%;
    height: 19%;
  }
}

