:root {
  --ink: #101010;
  --paper: #f5f2ec;
  --muted: #6b665d;
  --line: rgba(16, 16, 16, 0.14);
  --accent: #d7ff3f;
  --accent-dark: #4f6f00;
  --accent-2: #ff6b4a;
  --charcoal: #171615;
  --white: #ffffff;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

.landing-page {
  min-height: 100vh;
  background: #0b0b0b;
  color: var(--white);
}

a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 20;
  width: min(1160px, calc(100% - 32px));
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 10px 10px 18px;
  color: var(--white);
  background: rgba(16, 16, 16, 0.52);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  backdrop-filter: blur(18px);
  animation: headerDrop .8s cubic-bezier(.16, 1, .3, 1) .15s both;
}

.brand, .site-nav, .hero-actions, .footer-cols, .stats {
  display: flex;
  align-items: center;
}

.brand { gap: 10px; font-weight: 800; letter-spacing: 0; }
.brand-mark { width: 24px; height: 24px; border-radius: 50%; background: linear-gradient(135deg, var(--accent), var(--accent-2)); }

.site-nav { gap: 4px; }
.site-nav a { padding: 10px 14px; border-radius: 999px; color: rgba(255,255,255,.82); font-size: 14px; }
.site-nav a:hover, .site-nav .nav-cta { color: var(--ink); background: var(--accent); }

.menu-toggle { display: none; background: transparent; border: 0; width: 42px; height: 42px; }
.menu-toggle span { display: block; height: 2px; margin: 7px 8px; background: var(--white); }

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
}

.hero-media, .hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("https://images.unsplash.com/photo-1516035069371-29a1b244cc32?auto=format&fit=crop&w=1800&q=85");
  background-size: cover;
  background-position: center;
  transform: translate3d(0, calc(var(--hero-shift, 0) * 1px), 0) scale(1.08);
  animation: heroZoom 1.35s cubic-bezier(.16, 1, .3, 1) both;
}

.media-page {
  --paper: #e9e4d7;
  --accent: #ffb84d;
  --accent-dark: #815200;
  --accent-2: #4b8cff;
  --charcoal: #11100f;
}

.media-page .hero-media {
  background-image: url("https://images.unsplash.com/photo-1485846234645-a62644f84728?auto=format&fit=crop&w=1800&q=85");
}

.media-page .hero-overlay {
  background:
    linear-gradient(90deg, rgba(10,9,8,.92), rgba(10,9,8,.58) 48%, rgba(10,9,8,.28)),
    linear-gradient(0deg, rgba(10,9,8,.86), rgba(10,9,8,0) 54%);
}

.media-page .brand-mark {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(10,10,10,.86), rgba(10,10,10,.46) 45%, rgba(10,10,10,.18)),
    linear-gradient(0deg, rgba(10,10,10,.82), rgba(10,10,10,0) 48%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 150px 0 116px;
}

.hero .eyebrow,
.hero h1,
.hero-copy,
.hero-actions,
.branch-card {
  animation: riseFade .9s cubic-bezier(.16, 1, .3, 1) both;
}

.hero .eyebrow { animation-delay: .25s; }
.hero h1 { animation-delay: .36s; }
.hero-copy { animation-delay: .48s; }
.branch-card:first-child { animation-delay: .6s; }
.branch-card:last-child { animation-delay: .72s; }
.hero-actions { animation-delay: .8s; }

.hero .eyebrow {
  text-transform: none;
}

.eyebrow, .section-kicker {
  margin: 0 0 18px;
  color: var(--accent-dark);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.hero .eyebrow,
.process .section-kicker,
.project-card span,
.process-grid span,
blockquote cite,
.footer-cols span {
  color: var(--accent);
}

.hero h1 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(50px, 8vw, 112px);
  line-height: .88;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 610px;
  margin: 28px 0 0;
  color: rgba(255,255,255,.82);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.45;
}

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

.business-choice {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 1120px;
  margin-top: 44px;
}

.choice-screen {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 92px 16px 32px;
}

.choice-brand {
  position: fixed;
  top: 26px;
  left: 32px;
  z-index: 5;
  color: var(--white);
}

.choice-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .26;
  filter: saturate(.92);
  transform: scale(1.04);
  transition: opacity .45s ease, transform .75s cubic-bezier(.16, 1, .3, 1);
}

.choice-bg-digital {
  clip-path: polygon(0 0, 50% 0, 42% 100%, 0 100%);
  background-image:
    linear-gradient(90deg, rgba(10,10,10,.82), rgba(10,10,10,.42)),
    url("https://images.unsplash.com/photo-1516035069371-29a1b244cc32?auto=format&fit=crop&w=1600&q=85");
}

.choice-bg-media {
  clip-path: polygon(50% 0, 100% 0, 100% 100%, 42% 100%);
  background-image:
    linear-gradient(90deg, rgba(10,10,10,.48), rgba(10,10,10,.9)),
    url("https://images.unsplash.com/photo-1485846234645-a62644f84728?auto=format&fit=crop&w=1600&q=85");
}

.choice-content {
  position: relative;
  z-index: 2;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.choice-content .eyebrow {
  color: var(--accent);
  text-transform: none;
}

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

.choice-card {
  min-height: min(68vh, 680px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  color: var(--white);
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(18px);
  animation: riseFade .9s cubic-bezier(.16, 1, .3, 1) both;
  transition: transform .35s ease, border-color .35s ease, background .35s ease;
}

.choice-card:nth-child(2) {
  animation-delay: .12s;
}

.choice-card:hover {
  transform: translateY(-10px);
  border-color: rgba(215,255,63,.72);
  background: rgba(255,255,255,.1);
}

.choice-card-media:hover {
  border-color: rgba(255,184,77,.78);
}

.choice-card span,
.choice-card strong {
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.choice-card-media span,
.choice-card-media strong {
  color: #ffb84d;
}

.choice-card h1 {
  max-width: 520px;
  margin: auto 0 22px;
  font-size: clamp(48px, 7vw, 112px);
  line-height: .88;
}

.choice-card p {
  max-width: 520px;
  margin: 0 0 32px;
  color: rgba(255,255,255,.76);
  font-size: clamp(17px, 1.7vw, 22px);
  line-height: 1.48;
}

.choice-card h1:first-child {
  margin-top: auto;
}

.branch-card {
  position: relative;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 26px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(255,255,255,.14), rgba(255,255,255,.04)),
    rgba(16,16,16,.56);
  backdrop-filter: blur(16px);
  transition: transform .35s ease, border-color .35s ease, background .35s ease;
}

.branch-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .22;
  background-size: cover;
  background-position: center;
  transition: opacity .35s ease, transform .7s cubic-bezier(.16, 1, .3, 1);
}

.digital-branch::before {
  background-image: url("https://images.unsplash.com/photo-1616469829941-c7200edec809?auto=format&fit=crop&w=1200&q=80");
}

.media-branch::before {
  background-image: url("https://images.unsplash.com/photo-1485846234645-a62644f84728?auto=format&fit=crop&w=1200&q=80");
}

.branch-card:hover {
  transform: translateY(-8px);
  border-color: rgba(215,255,63,.58);
  background:
    linear-gradient(145deg, rgba(215,255,63,.16), rgba(255,255,255,.04)),
    rgba(16,16,16,.68);
}

.branch-card:hover::before {
  opacity: .36;
  transform: scale(1.06);
}

.branch-card > * {
  position: relative;
  z-index: 1;
}

.branch-card span,
.branch-card strong {
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.branch-card h2 {
  max-width: 420px;
  margin: auto 0 16px;
  font-size: clamp(34px, 4vw, 58px);
  line-height: .92;
}

.branch-card p {
  max-width: 460px;
  margin: 0 0 26px;
  color: rgba(255,255,255,.76);
  line-height: 1.55;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  transition: transform .25s ease, background .25s ease, border-color .25s ease, color .25s ease;
}

.button.primary { color: var(--ink); background: var(--accent); }
.button.ghost { color: var(--white); background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.22); }
.button:hover { transform: translateY(-3px); }

.scroll-cue {
  position: absolute;
  right: 36px;
  bottom: 34px;
  z-index: 2;
  color: rgba(255,255,255,.72);
  font-size: 12px;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  animation: cuePulse 1.6s ease-in-out infinite;
}

.section { width: min(1120px, calc(100% - 32px)); margin: 0 auto; padding: 94px 0; }
.section h2, .about-copy h2 { margin: 0; font-size: clamp(36px, 5vw, 72px); line-height: .98; letter-spacing: 0; }
.section-head { max-width: 780px; margin-bottom: 40px; }

.business-lines {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
  gap: 48px;
  align-items: end;
  border-bottom: 1px solid var(--line);
}

.media-line {
  padding-top: 44px;
}

.line-copy p:not(.section-kicker) {
  max-width: 680px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.6;
}

.line-list {
  display: grid;
  gap: 10px;
}

.line-list span {
  min-height: 54px;
  display: flex;
  align-items: center;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #2f2d29;
  background: rgba(255,255,255,.36);
  font-weight: 850;
}

.partners { padding-bottom: 46px; }
.logo-strip {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.logo-track {
  display: flex;
  width: max-content;
  animation: marquee 24s linear infinite;
}

.logo-strip:hover .logo-track { animation-play-state: paused; }

.logo-strip span {
  width: 186px;
  min-height: 94px;
  display: grid;
  place-items: center;
  color: #3d3932;
  font-weight: 900;
  border-right: 1px solid var(--line);
}
.logo-strip span:last-child { border-right: 0; }

.split-title { display: flex; align-items: end; justify-content: space-between; gap: 36px; padding-bottom: 34px; }
.split-title h2 { max-width: 760px; }
.text-link { font-weight: 900; border-bottom: 2px solid var(--ink); padding-bottom: 6px; white-space: nowrap; }
.text-link { transition: color .25s ease, border-color .25s ease; }
.text-link:hover { color: var(--accent-2); border-color: var(--accent-2); }

.project-grid {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto 74px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.project-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--charcoal);
  transform-style: preserve-3d;
  transition: transform .35s ease, box-shadow .35s ease;
}

.project-card.large { grid-column: span 2; min-height: 540px; }
.project-card.wide { grid-column: span 2; }
.project-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,.74), rgba(0,0,0,0) 60%); }
.project-card img { transition: transform .7s cubic-bezier(.16, 1, .3, 1), filter .35s ease; }
.project-card:hover { transform: translateY(-8px); box-shadow: 0 22px 46px rgba(16,16,16,.18); }
.project-card:hover img { transform: scale(1.08); filter: saturate(1.08); }
.project-card div { position: absolute; z-index: 1; left: 22px; right: 22px; bottom: 22px; color: var(--white); }
.project-card span { font-size: 13px; font-weight: 800; text-transform: uppercase; }
.project-card h3 { margin: 8px 0 0; font-size: clamp(26px, 3vw, 42px); line-height: 1; }

.process { background: var(--charcoal); color: var(--white); width: 100%; padding-left: max(16px, calc((100% - 1120px)/2)); padding-right: max(16px, calc((100% - 1120px)/2)); }
.process-grid, .service-grid, .quote-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.process-grid article, .service-grid article, blockquote {
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 8px;
  padding: 26px;
  transition: transform .3s ease, border-color .3s ease, background .3s ease;
}
.process-grid article:hover, .service-grid article:hover, blockquote:hover {
  transform: translateY(-6px);
  border-color: rgba(215,255,63,.48);
}
.process-grid span { font-weight: 900; }
.process-grid p, .service-grid p, .about-copy p, blockquote { line-height: 1.65; color: var(--muted); }
.process-grid p { color: rgba(255,255,255,.68); }

.service-grid { grid-template-columns: repeat(2, 1fr); }
.service-grid article { border-color: var(--line); background: rgba(255,255,255,.34); }
.media-page .service-grid article {
  background: rgba(255,255,255,.28);
}
.service-grid h3, .process-grid h3 { margin: 18px 0 10px; font-size: 26px; }

.about-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: #e2ded4;
}

.media-page .about-band {
  background: #d8cfbd;
}

.media-simple-page {
  background: #11100f;
  color: var(--white);
}

.media-simple-header {
  background: rgba(17,16,15,.64);
}

.media-simple-hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: end;
  overflow: hidden;
}

.media-reel-hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 110px 16px 42px;
}

.media-simple-bg,
.media-simple-overlay {
  position: absolute;
  inset: 0;
}

.media-simple-bg {
  background-image: url("https://images.unsplash.com/photo-1485846234645-a62644f84728?auto=format&fit=crop&w=1800&q=85");
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  animation: heroZoom 1.35s cubic-bezier(.16, 1, .3, 1) both;
}

.media-simple-overlay {
  background:
    linear-gradient(90deg, rgba(8,8,8,.9), rgba(8,8,8,.44) 58%, rgba(8,8,8,.72)),
    linear-gradient(0deg, rgba(8,8,8,.9), rgba(8,8,8,0) 54%);
}

.media-simple-content {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 150px 0 96px;
}

.media-simple-content .eyebrow {
  color: var(--accent);
  text-transform: none;
}

.media-simple-content h1 {
  max-width: 940px;
  margin: 0;
  font-size: clamp(52px, 8vw, 116px);
  line-height: .9;
}

.media-reel-stage {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
}

.media-reel-frame {
  aspect-ratio: 16 / 9;
  min-height: 380px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 8px;
  background:
    radial-gradient(circle at center, rgba(255,184,77,.2), rgba(255,184,77,0) 34%),
    linear-gradient(145deg, rgba(255,255,255,.1), rgba(255,255,255,.02));
  box-shadow: 0 34px 90px rgba(0,0,0,.34);
}

.media-reel-frame span {
  color: rgba(255,255,255,.86);
  font-size: clamp(54px, 12vw, 172px);
  line-height: .9;
  font-weight: 900;
}

.media-simple-section {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 96px 0 120px;
}

.media-copy-grid {
  display: grid;
  grid-template-columns: 1fr .86fr;
  gap: 56px;
  align-items: start;
}

.media-copy-grid h2 {
  margin: 0;
  font-size: clamp(38px, 5.7vw, 78px);
  line-height: .96;
}

.media-copy-grid p {
  margin: 0;
  color: rgba(255,255,255,.68);
  font-size: 20px;
  line-height: 1.7;
}

.media-contact {
  padding-top: 0;
}

.media-contact-grid {
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr);
  gap: 22px;
  align-items: stretch;
}

.media-contact-info {
  display: grid;
  align-content: end;
  gap: 14px;
  min-height: 420px;
  padding: 28px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 8px;
  background: rgba(255,255,255,.06);
}

.media-contact-info a,
.media-contact-info p {
  margin: 0;
  color: rgba(255,255,255,.82);
  font-size: clamp(18px, 2.1vw, 28px);
  line-height: 1.25;
  font-weight: 800;
}

.media-contact-info p {
  color: rgba(255,255,255,.62);
  font-size: 18px;
  line-height: 1.5;
  font-weight: 650;
}

.media-contact iframe {
  width: 100%;
  min-height: 420px;
  border: 0;
  border-radius: 8px;
  filter: grayscale(1) invert(.92) contrast(.9);
}

.about-image { min-height: 620px; }
.about-image img { transform: scale(1.04); transition: transform 1s cubic-bezier(.16, 1, .3, 1); }
.about-band.in-view .about-image img { transform: scale(1); }
.about-copy { padding: 80px max(28px, calc((100vw - 1120px)/2)) 80px 64px; align-self: center; }
.about-copy .section-kicker { color: var(--accent-2); }
.stats { gap: 18px; flex-wrap: wrap; margin-top: 34px; }
.stats span { min-width: 132px; }
.stats strong { display: block; font-size: 44px; line-height: 1; }

.testimonials { padding-bottom: 42px; }
.quote-row { grid-template-columns: repeat(2, 1fr); }
blockquote { margin: 0; background: var(--charcoal); color: var(--white); font-size: 21px; }
blockquote cite { display: block; margin-top: 22px; font-size: 14px; font-style: normal; font-weight: 800; }

.faq-list { display: grid; gap: 10px; }
details { border-top: 1px solid var(--line); padding: 22px 0; }
summary { cursor: pointer; font-size: 22px; font-weight: 850; }
details p { max-width: 760px; color: var(--muted); line-height: 1.6; }
details p { animation: detailsOpen .28s ease both; }

.site-footer {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 48px;
  padding: 76px max(16px, calc((100% - 1120px)/2));
  color: var(--white);
  background: #101010;
}
.footer-title { max-width: 620px; margin: 0 0 26px; font-size: clamp(38px, 6vw, 82px); line-height: .95; font-weight: 900; }
.footer-cols { align-items: start; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.footer-cols span { display: block; font-weight: 900; margin-bottom: 10px; }
.footer-cols p { margin: 0; color: rgba(255,255,255,.72); }
.footer-map {
  grid-column: 1 / -1;
  width: 100%;
  min-height: 360px;
  border: 0;
  border-radius: 8px;
  filter: grayscale(1) invert(.92) contrast(.9);
}

.showreel-modal {
  width: min(880px, calc(100% - 30px));
  border: 0;
  border-radius: 8px;
  padding: 0;
  background: #050505;
  color: var(--white);
}
.showreel-modal::backdrop { background: rgba(0,0,0,.72); }
.showreel-modal[open] { animation: modalIn .28s cubic-bezier(.16, 1, .3, 1) both; }
.showreel-modal > button { position: absolute; top: 10px; right: 10px; z-index: 2; width: 42px; height: 42px; border: 0; border-radius: 50%; font-size: 28px; cursor: pointer; }
.video-frame { aspect-ratio: 16 / 9; display: grid; place-items: center; text-align: center; padding: 36px; background: radial-gradient(circle at center, #313131, #080808 65%); }
.video-frame p { margin: 0; font-size: 48px; font-weight: 900; }
.video-frame span { color: rgba(255,255,255,.62); }

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .7s cubic-bezier(.16, 1, .3, 1), transform .7s cubic-bezier(.16, 1, .3, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.project-card.reveal {
  transform: translateY(42px) scale(.98);
}

.project-card.reveal.in-view {
  transform: translateY(0) scale(1);
}

.project-card.reveal.in-view:hover {
  transform: translateY(-8px) scale(1);
}

@keyframes headerDrop {
  from { opacity: 0; transform: translate(-50%, -18px); }
  to { opacity: 1; transform: translate(-50%, 0); }
}

@keyframes heroZoom {
  from { transform: translate3d(0, 0, 0) scale(1.16); filter: brightness(.72); }
  to { transform: translate3d(0, calc(var(--hero-shift, 0) * 1px), 0) scale(1.08); filter: brightness(1); }
}

@keyframes riseFade {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes cuePulse {
  0%, 100% { transform: translateY(0); opacity: .55; }
  50% { transform: translateY(10px); opacity: 1; }
}

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

@keyframes detailsOpen {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes modalIn {
  from { opacity: 0; transform: translateY(24px) scale(.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 820px) {
  .choice-screen { align-items: start; padding-top: 92px; }
  .choice-brand { left: 18px; top: 24px; }
  .choice-bg-digital,
  .choice-bg-media { clip-path: none; }
  .choice-bg-digital { inset: 0 0 50% 0; }
  .choice-bg-media { inset: 50% 0 0 0; }
  .choice-grid { grid-template-columns: 1fr; }
  .choice-card { min-height: 38vh; }
  .site-header { border-radius: 24px; align-items: flex-start; }
  .menu-toggle { display: block; }
  .site-nav {
    position: absolute;
    left: 10px;
    right: 10px;
    top: 58px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    background: rgba(16,16,16,.94);
    border-radius: 18px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px) scale(.98);
    transition: opacity .22s ease, transform .22s ease;
  }
  .site-header.menu-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }
  .site-nav a { text-align: center; }
  .hero { min-height: 92vh; }
  .hero-content { padding-bottom: 86px; }
  .business-choice { grid-template-columns: 1fr; margin-top: 30px; }
  .branch-card { min-height: 250px; padding: 22px; }
  .scroll-cue { display: none; }
  .logo-strip span { width: 160px; }
  .split-title, .site-footer { display: block; }
  .text-link { display: inline-block; margin-top: 22px; }
  .project-grid, .process-grid, .service-grid, .quote-row, .about-band, .business-lines { grid-template-columns: 1fr; }
  .media-copy-grid { grid-template-columns: 1fr; gap: 28px; }
  .media-contact-grid { grid-template-columns: 1fr; }
  .media-contact-info, .media-contact iframe { min-height: 330px; }
  .media-simple-section { padding: 74px 0; }
  .media-simple-content { padding-bottom: 78px; }
  .project-card, .project-card.large, .project-card.wide { grid-column: auto; min-height: 390px; }
  .about-image { min-height: 390px; }
  .about-copy { padding: 54px 16px; }
  .footer-cols { margin-top: 38px; display: grid; }
  .footer-map { margin-top: 34px; min-height: 320px; }
}

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

  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 520px) {
  .choice-card h1 { font-size: 44px; }
  .choice-card { padding: 22px; }
  .brand { font-size: 14px; }
  .hero h1 { font-size: 52px; }
  .branch-card h2 { font-size: 35px; }
  .section { padding: 70px 0; }
  .section h2, .about-copy h2 { font-size: 38px; }
  .project-card, .project-card.large, .project-card.wide { min-height: 330px; }
  .process-grid article, .service-grid article, blockquote { padding: 22px; }
}
