:root {
  --ink: #090909;
  --ink-soft: #171717;
  --paper: #f1efe7;
  --paper-bright: #faf9f4;
  --acid: #e4ff37;
  --line: rgba(9, 9, 9, 0.18);
  --white-line: rgba(255, 255, 255, 0.22);
  --muted: #696962;
  --shell: min(1320px, calc(100vw - 48px));
  --radius: 3px;
  --header-h: 86px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink); }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
section[id] { scroll-margin-top: 78px; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
::selection { color: var(--ink); background: var(--acid); }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  z-index: 999;
  left: 16px;
  top: 16px;
  transform: translateY(-150%);
  background: var(--acid);
  color: var(--ink);
  padding: 12px 16px;
  font-weight: 800;
}
.skip-link:focus { transform: translateY(0); }
.shell { width: var(--shell); margin-inline: auto; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  height: var(--header-h);
  z-index: 100;
  color: white;
  border-bottom: 1px solid transparent;
  transition: background 220ms ease, border-color 220ms ease, height 220ms ease;
}
.site-header.is-scrolled {
  height: 72px;
  background: rgba(9, 9, 9, 0.91);
  backdrop-filter: blur(18px);
  border-color: var(--white-line);
}
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: inline-flex; align-items: center; color: white; }
.brand img { width: 220px; height: auto; filter: none; }
.site-nav { display: flex; align-items: center; gap: 28px; font-size: 13px; font-weight: 760; letter-spacing: 0.08em; text-transform: uppercase; }
.site-nav > a:not(.button) { position: relative; padding-block: 10px; }
.site-nav > a:not(.button)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 4px;
  height: 2px;
  background: var(--acid);
  transition: right 180ms ease;
}
.site-nav > a:not(.button):hover::after { right: 0; }
.menu-toggle { display: none; border: 0; background: transparent; padding: 10px; cursor: pointer; }
.menu-toggle span:not(.sr-only) { display: block; width: 25px; height: 2px; background: currentColor; margin: 5px 0; transition: transform 180ms ease, opacity 180ms ease; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 24px;
  border: 1px solid var(--acid);
  border-radius: var(--radius);
  background: var(--acid);
  color: var(--ink);
  font-weight: 850;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}
.button:hover { transform: translateY(-2px); background: white; border-color: white; }
.button-small { min-height: 42px; padding-inline: 17px; font-size: 12px; }
.button-dark { background: var(--ink); border-color: var(--ink); color: white; }
.button-dark:hover { background: white; border-color: white; color: var(--ink); }

.hero {
  position: relative;
  min-height: 820px;
  height: max(820px, 100svh);
  overflow: hidden;
  color: white;
  background: #111;
}
.hero-media, .hero-shade { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 59% center; transform: scale(1.015); animation: heroIn 1.2s cubic-bezier(.2,.8,.2,1) both; }
.hero-shade {
  background:
    linear-gradient(90deg, rgba(0,0,0,.91) 0%, rgba(0,0,0,.68) 40%, rgba(0,0,0,.18) 76%, rgba(0,0,0,.26) 100%),
    linear-gradient(0deg, rgba(0,0,0,.68) 0%, transparent 40%);
}
.hero-inner { position: relative; z-index: 2; min-height: inherit; height: 100%; display: grid; grid-template-columns: minmax(0, 1fr) 350px; align-items: center; gap: 70px; padding-top: var(--header-h); }
.hero-copy { max-width: 850px; padding-block: 80px; }
.eyebrow { margin: 0 0 24px; display: flex; align-items: center; gap: 12px; font-size: 12px; line-height: 1; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow span { width: 28px; height: 3px; background: var(--acid); }
.eyebrow.dark span { background: var(--ink); }
.hero h1, .section-heading h2, .offer-copy h2, .work-heading h2, .deliverables h2, .quote h2, .faq h2 {
  margin: 0;
  font-size: clamp(58px, 7vw, 116px);
  line-height: .86;
  letter-spacing: -.065em;
  font-weight: 900;
  text-transform: uppercase;
}
.hero h1 em { color: var(--acid); font-style: normal; }
.hero-lede { max-width: 680px; margin: 34px 0 0; color: rgba(255,255,255,.82); font-size: clamp(18px, 2vw, 24px); line-height: 1.48; }
.hero-actions { display: flex; align-items: center; gap: 28px; margin-top: 38px; }
.text-link { display: inline-flex; gap: 10px; align-items: center; font-weight: 800; border-bottom: 1px solid rgba(255,255,255,.4); padding-bottom: 5px; }
.text-link span { transition: transform 180ms ease; }
.text-link:hover span { transform: translate(3px, 3px); }
.hero-points { display: flex; flex-wrap: wrap; gap: 8px 24px; margin-top: 42px; color: rgba(255,255,255,.68); font-size: 12px; font-weight: 740; letter-spacing: .08em; text-transform: uppercase; }
.hero-points span::before { content: "✓"; color: var(--acid); margin-right: 7px; }

.offer-card {
  position: relative;
  align-self: end;
  margin-bottom: 62px;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.45);
  box-shadow: 0 28px 70px rgba(0,0,0,.36);
  transition: transform 240ms ease;
}
.offer-card:hover { transform: translateY(-7px) rotate(-.4deg); }
.offer-card img { width: 100%; height: 100%; object-fit: cover; }
.offer-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,.94), transparent 65%); }
.offer-chip { position: absolute; z-index: 2; top: 18px; left: 18px; padding: 8px 10px; background: var(--acid); color: var(--ink); font-size: 10px; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; }
.offer-card-copy { position: absolute; z-index: 2; inset: auto 22px 23px; display: grid; gap: 8px; }
.offer-card-copy strong { color: var(--acid); font-size: 29px; line-height: .92; letter-spacing: -.04em; }
.offer-card-copy small { color: rgba(255,255,255,.75); line-height: 1.35; }
.offer-arrow { position: absolute; z-index: 2; right: 20px; top: 19px; color: white; font-size: 23px; }
.scroll-cue { position: absolute; z-index: 2; left: 24px; bottom: 22px; display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.58); font-size: 10px; letter-spacing: .15em; text-transform: uppercase; writing-mode: vertical-rl; }
.scroll-cue span { display: block; width: 1px; height: 42px; background: rgba(255,255,255,.4); }

.ticker { overflow: hidden; background: var(--acid); border-block: 1px solid var(--ink); }
.ticker-track { width: max-content; display: flex; align-items: center; gap: 34px; padding: 18px 0; color: var(--ink); font-size: 16px; font-weight: 950; letter-spacing: .08em; text-transform: uppercase; animation: ticker 28s linear infinite; }
.ticker-track i { font-style: normal; font-size: 12px; }

.section { padding: 130px 0; }
.intro { background: var(--paper); }
.section-heading { display: grid; grid-template-columns: 1fr 410px; gap: 70px; align-items: end; margin-bottom: 70px; }
.section-heading .eyebrow { grid-column: 1 / -1; margin-bottom: -24px; }
.section-heading h2 { font-size: clamp(52px, 6.4vw, 104px); }
.section-heading > p:last-child { margin: 0 0 7px; color: var(--muted); font-size: 19px; line-height: 1.58; }
.section-heading.compact { display: block; margin-bottom: 54px; }
.section-heading.compact .eyebrow { margin-bottom: 22px; }

.service-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.service-card { min-width: 0; }
.service-image { position: relative; height: 520px; overflow: hidden; }
.service-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 700ms cubic-bezier(.2,.75,.2,1); }
.service-card:hover .service-image img { transform: scale(1.035); }
.service-number { position: absolute; top: 18px; right: 18px; display: grid; place-items: center; width: 48px; height: 48px; background: var(--acid); color: var(--ink); font-size: 12px; font-weight: 900; }
.service-copy { padding: 42px; min-height: 400px; }
.service-card-light { background: var(--paper-bright); border: 1px solid var(--line); }
.service-card-dark { color: white; background: var(--ink); }
.label { margin: 0 0 18px; font-size: 11px; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.service-copy h3 { margin: 0; font-size: clamp(38px, 4vw, 67px); line-height: .92; letter-spacing: -.055em; text-transform: uppercase; }
.service-copy > p:not(.label) { max-width: 580px; margin: 25px 0 26px; font-size: 18px; color: var(--muted); }
.service-card-dark .service-copy > p:not(.label) { color: rgba(255,255,255,.65); }
.service-copy ul { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.service-card-dark .service-copy ul { border-color: var(--white-line); }
.service-copy li { padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 13px; font-weight: 720; }
.service-card-dark .service-copy li { border-color: var(--white-line); }
.service-copy li::before { content: "↗"; margin-right: 10px; color: currentColor; }

.offer-section { background: var(--acid); border-block: 1px solid var(--ink); overflow: hidden; }
.offer-grid { display: grid; grid-template-columns: 1.1fr .9fr; min-height: 790px; }
.offer-copy { padding: 100px 75px 90px 0; align-self: center; }
.offer-copy h2 { font-size: clamp(72px, 8vw, 132px); }
.offer-copy > p:not(.eyebrow) { max-width: 680px; margin: 32px 0; font-size: 22px; line-height: 1.5; }
.offer-copy small { display: block; max-width: 700px; margin-top: 25px; color: rgba(9,9,9,.66); font-size: 12px; line-height: 1.55; }
.offer-visual { position: relative; min-height: 790px; }
.offer-visual img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(10%) contrast(1.07); }
.projection-stamp { position: absolute; right: -44px; bottom: 34px; width: 270px; height: 270px; display: grid; align-content: center; justify-items: center; border-radius: 50%; border: 3px solid var(--acid); background: var(--ink); color: var(--acid); transform: rotate(-9deg); box-shadow: 0 20px 50px rgba(0,0,0,.35); }
.projection-stamp::before, .projection-stamp::after { content: ""; position: absolute; inset: 13px; border-radius: 50%; border: 1px dashed rgba(228,255,55,.6); }
.projection-stamp::after { inset: 25px; }
.projection-stamp span { font-size: 24px; line-height: 1; font-weight: 950; letter-spacing: -.03em; }
.projection-stamp span:nth-child(2) { font-size: 30px; }

.work { background: var(--paper-bright); }
.work-heading { display: grid; grid-template-columns: 1fr 380px; gap: 60px; align-items: end; margin-bottom: 62px; }
.work-heading h2 { font-size: clamp(58px, 7vw, 112px); }
.work-heading > p { margin: 0 0 8px; color: var(--muted); font-size: 18px; line-height: 1.6; }
.gallery { display: grid; grid-template-columns: repeat(12, 1fr); gap: 14px; }
.gallery-item { grid-column: span 4; position: relative; min-height: 420px; margin: 0; overflow: hidden; background: #d8d5cc; }
.gallery-item.gallery-wide { grid-column: span 8; }
.gallery-item.gallery-tall { min-height: 620px; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 700ms cubic-bezier(.2,.75,.2,1); }
.gallery-item:hover img { transform: scale(1.035); }
.gallery-item figcaption { position: absolute; inset: auto 0 0; display: flex; justify-content: space-between; gap: 10px; padding: 16px 18px; background: linear-gradient(0deg, rgba(0,0,0,.86), transparent); color: white; font-size: 10px; font-weight: 820; letter-spacing: .12em; text-transform: uppercase; }

.deliverables { color: white; background: var(--ink); }
.deliverables-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: start; }
.deliverables h2 { font-size: clamp(55px, 6vw, 98px); }
.deliverable-list { border-top: 1px solid var(--white-line); }
.deliverable { display: grid; grid-template-columns: 52px 1fr; gap: 25px; padding: 30px 0; border-bottom: 1px solid var(--white-line); }
.deliverable > span { color: var(--acid); font-size: 12px; font-weight: 900; }
.deliverable h3 { margin: 0 0 8px; font-size: 24px; text-transform: uppercase; letter-spacing: -.02em; }
.deliverable p { margin: 0; color: rgba(255,255,255,.58); }

.process { background: var(--paper); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--ink); border-left: 1px solid var(--ink); }
.process-step { min-height: 320px; padding: 28px; border-right: 1px solid var(--ink); border-bottom: 1px solid var(--ink); transition: background 220ms ease, color 220ms ease; }
.process-step:hover { background: var(--acid); }
.process-step > span { display: inline-flex; margin-bottom: 100px; font-size: 12px; font-weight: 900; }
.process-step h3 { margin: 0 0 14px; font-size: 28px; line-height: 1; text-transform: uppercase; letter-spacing: -.035em; }
.process-step p { margin: 0; color: var(--muted); }
.process-step:hover p { color: rgba(9,9,9,.72); }

.quote { position: relative; overflow: hidden; padding: 135px 0; color: white; background: #0c0c0c; }
.quote-bg { position: absolute; inset: 0; opacity: .19; }
.quote-bg img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.3); }
.quote::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(9,9,9,.98), rgba(9,9,9,.72)); }
.quote-grid { position: relative; z-index: 2; display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; align-items: start; }
.quote h2 { font-size: clamp(55px, 6vw, 96px); }
.quote-copy > p:not(.eyebrow) { max-width: 560px; margin: 30px 0; color: rgba(255,255,255,.68); font-size: 19px; }
.quote-offer { display: inline-grid; gap: 5px; padding: 18px 20px; border: 1px solid var(--acid); }
.quote-offer strong { color: var(--acid); font-size: 23px; letter-spacing: -.02em; }
.quote-offer span { color: rgba(255,255,255,.65); font-size: 12px; }
.lead-form { padding: 34px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.2); backdrop-filter: blur(12px); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 16px; }
.lead-form label { display: grid; gap: 8px; }
.lead-form label > span { color: rgba(255,255,255,.65); font-size: 10px; font-weight: 820; letter-spacing: .12em; text-transform: uppercase; }
.lead-form input, .lead-form select, .lead-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.32);
  border-radius: 0;
  padding: 12px 0;
  color: white;
  background: transparent;
  outline: none;
  transition: border-color 180ms ease;
}
.lead-form input:focus, .lead-form select:focus, .lead-form textarea:focus { border-color: var(--acid); }
.lead-form input::placeholder, .lead-form textarea::placeholder { color: rgba(255,255,255,.36); }
.lead-form select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, white 50%), linear-gradient(135deg, white 50%, transparent 50%); background-position: calc(100% - 8px) 50%, calc(100% - 3px) 50%; background-size: 5px 5px, 5px 5px; background-repeat: no-repeat; }
.lead-form select option { color: var(--ink); background: white; }
.form-full { grid-column: 1 / -1; }
.lead-form textarea { resize: vertical; min-height: 105px; }
.form-footer { display: flex; align-items: center; gap: 24px; margin-top: 28px; }
.form-footer p { margin: 0; color: rgba(255,255,255,.47); font-size: 11px; line-height: 1.45; }
.lead-form .is-invalid { border-color: #ff6d5e; }

.faq { background: var(--paper-bright); }
.faq-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 90px; align-items: start; }
.faq h2 { font-size: clamp(54px, 5.5vw, 90px); }
.accordion { border-top: 1px solid var(--ink); }
.accordion details { border-bottom: 1px solid var(--ink); }
.accordion summary { list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 24px 0; cursor: pointer; font-size: 21px; font-weight: 820; letter-spacing: -.02em; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary span { font-size: 30px; font-weight: 400; transition: transform 180ms ease; }
.accordion details[open] summary span { transform: rotate(45deg); }
.accordion details p { margin: -4px 45px 24px 0; color: var(--muted); font-size: 17px; line-height: 1.65; }

.site-footer { color: white; background: var(--ink); border-top: 1px solid var(--white-line); }
.footer-top { display: flex; justify-content: space-between; gap: 70px; padding: 70px 0; }
.footer-top img { color: white; }
.footer-top p { margin: 18px 0 0; color: rgba(255,255,255,.55); }
.footer-cta { text-align: right; }
.footer-cta p { margin: 0 0 10px; font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.footer-cta a { color: var(--acid); font-size: clamp(30px, 4vw, 58px); font-weight: 900; letter-spacing: -.05em; border-bottom: 2px solid var(--acid); }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding: 20px 0 28px; border-top: 1px solid var(--white-line); color: rgba(255,255,255,.42); font-size: 10px; letter-spacing: .09em; text-transform: uppercase; }
.mobile-cta { display: none; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 700ms ease, transform 700ms cubic-bezier(.2,.75,.2,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@keyframes heroIn { from { opacity: 0; transform: scale(1.08); } to { opacity: 1; transform: scale(1.015); } }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

@media (max-width: 1100px) {
  :root { --shell: min(100% - 36px, 1100px); }
  .site-nav { gap: 17px; }
  .hero-inner { grid-template-columns: minmax(0, 1fr) 290px; gap: 42px; }
  .hero h1 { font-size: clamp(56px, 8.5vw, 90px); }
  .section-heading, .work-heading { grid-template-columns: 1fr 330px; }
  .offer-copy { padding-right: 40px; }
  .projection-stamp { right: -20px; width: 230px; height: 230px; }
  .projection-stamp span { font-size: 21px; }
  .projection-stamp span:nth-child(2) { font-size: 26px; }
  .service-image { height: 440px; }
  .service-copy { padding: 34px; }
  .deliverables-grid, .quote-grid, .faq-grid { gap: 55px; }
}

@media (max-width: 900px) {
  :root { --header-h: 72px; }
  .site-header { height: 72px; }
  .brand img { width: 185px; }
  .menu-toggle { display: block; z-index: 3; }
  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
    padding: 90px 28px 40px;
    background: var(--ink);
    transform: translateY(-105%);
    transition: transform 260ms cubic-bezier(.2,.8,.2,1);
    font-size: 22px;
  }
  .site-nav.is-open { transform: translateY(0); }
  .site-nav .button { margin-top: 10px; }
  .menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle.is-open span:nth-child(2) { opacity: 0; }
  .menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  body.menu-open { overflow: hidden; }

  .hero { min-height: 900px; height: auto; }
  .hero-media img { object-position: 66% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(0,0,0,.92), rgba(0,0,0,.48)), linear-gradient(0deg, rgba(0,0,0,.82), transparent 50%); }
  .hero-inner { grid-template-columns: 1fr; align-items: end; padding-top: 140px; padding-bottom: 38px; }
  .hero-copy { padding: 0; }
  .offer-card { width: 260px; margin: 0 0 0 auto; }
  .scroll-cue { display: none; }
  .section-heading, .work-heading, .deliverables-grid, .quote-grid, .faq-grid { grid-template-columns: 1fr; }
  .section-heading { gap: 28px; }
  .section-heading .eyebrow { margin-bottom: -4px; }
  .service-grid { grid-template-columns: 1fr; }
  .offer-grid { grid-template-columns: 1fr; }
  .offer-copy { padding: 90px 0 70px; }
  .offer-visual { min-height: 620px; }
  .gallery-item, .gallery-item.gallery-wide { grid-column: span 6; }
  .gallery-item.gallery-tall { min-height: 500px; }
  .deliverables-title { position: static; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-step > span { margin-bottom: 60px; }
  .quote-copy { max-width: 700px; }
  .faq-grid { gap: 50px; }
}

@media (max-width: 620px) {
  :root { --shell: calc(100% - 28px); }
  body { padding-bottom: 62px; }
  .site-header, .site-header.is-scrolled { height: 64px; }
  .brand img { width: 160px; }
  .hero { min-height: 850px; }
  .hero-inner { padding-top: 120px; gap: 42px; }
  .hero h1 { font-size: clamp(48px, 15vw, 68px); line-height: .88; }
  .hero-lede { margin-top: 25px; font-size: 17px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 18px; margin-top: 28px; }
  .hero-actions .button { width: 100%; }
  .hero-points { display: grid; margin-top: 30px; }
  .offer-card { width: min(72vw, 260px); margin-left: auto; }
  .offer-card-copy strong { font-size: 25px; }
  .ticker-track { padding: 14px 0; font-size: 13px; }
  .section { padding: 88px 0; }
  .section-heading h2, .work-heading h2, .deliverables h2, .quote h2, .faq h2 { font-size: clamp(46px, 14vw, 67px); }
  .section-heading > p:last-child, .work-heading > p { font-size: 16px; }
  .service-image { height: 360px; }
  .service-copy { min-height: 0; padding: 28px 22px; }
  .service-copy h3 { font-size: 42px; }
  .service-copy > p:not(.label) { font-size: 16px; }
  .offer-copy { padding: 78px 0 60px; }
  .offer-copy h2 { font-size: clamp(64px, 20vw, 90px); }
  .offer-copy > p:not(.eyebrow) { font-size: 18px; }
  .offer-copy .button { width: 100%; }
  .offer-visual { min-height: 520px; margin-inline: -14px; }
  .projection-stamp { width: 190px; height: 190px; right: 4px; bottom: 20px; }
  .projection-stamp span { font-size: 17px; }
  .projection-stamp span:nth-child(2) { font-size: 21px; }
  .work-heading { gap: 25px; }
  .gallery { grid-template-columns: 1fr; gap: 10px; }
  .gallery-item, .gallery-item.gallery-wide { grid-column: auto; min-height: 360px; }
  .gallery-item.gallery-tall { min-height: 430px; }
  .deliverables-grid { gap: 50px; }
  .deliverable { grid-template-columns: 35px 1fr; gap: 12px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-step { min-height: 250px; }
  .process-step > span { margin-bottom: 42px; }
  .quote { padding: 92px 0; }
  .quote-grid { gap: 48px; }
  .lead-form { padding: 24px 18px; margin-inline: -2px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-full { grid-column: auto; }
  .form-footer { align-items: stretch; flex-direction: column; }
  .form-footer .button { width: 100%; }
  .accordion summary { font-size: 18px; }
  .footer-top { flex-direction: column; padding: 55px 0; }
  .footer-cta { text-align: left; }
  .footer-cta a { font-size: 35px; }
  .footer-bottom { flex-direction: column; }
  .mobile-cta { position: fixed; z-index: 90; left: 0; right: 0; bottom: 0; display: flex; align-items: center; justify-content: space-between; min-height: 62px; padding: 0 20px; background: var(--acid); color: var(--ink); border-top: 1px solid var(--ink); font-weight: 900; letter-spacing: -.01em; }
}

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