@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Manrope:wght@400;500;600;700&display=swap');

:root {
  --paper: #f4f0e8;
  --paper-2: #ebe5da;
  --ink: #131313;
  --muted: #68645e;
  --coral: #ff5d49;
  --pink: #f5a7b8;
  --acid: #e8ff63;
  --blue: #3157ff;
  --line: rgba(19, 19, 19, .16);
  --serif: 'Instrument Serif', Georgia, serif;
  --sans: 'Manrope', Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body::selection { color: var(--ink); background: var(--acid); }
body.dialog-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
img, video { display: block; max-width: 100%; }
.skip-link { position: fixed; left: 12px; top: -60px; z-index: 100; padding: 12px 18px; background: var(--ink); color: white; }
.skip-link:focus { top: 12px; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  height: 82px;
  padding: 0 clamp(24px, 4vw, 68px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  transition: background .3s ease, border-color .3s ease, height .3s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled { height: 68px; background: rgba(244, 240, 232, .9); border-color: var(--line); backdrop-filter: blur(16px); }
.brand { display: inline-flex; align-items: center; gap: 11px; width: max-content; font-size: 13px; font-weight: 700; letter-spacing: .08em; }
.brand em { font-style: normal; font-weight: 400; }
.brand-mark { position: relative; width: 28px; height: 28px; display: inline-grid; place-items: center; border: 1.5px solid var(--ink); border-radius: 50%; }
.brand-mark::before, .brand-mark::after { content: ''; position: absolute; top: -4px; width: 8px; height: 9px; background: var(--paper); border: 1.5px solid var(--ink); transform: rotate(45deg); z-index: -1; }
.brand-mark::before { left: 2px; }
.brand-mark::after { right: 2px; }
.brand-mark i { width: 7px; height: 7px; border-radius: 50%; background: var(--coral); }
.site-header nav { display: flex; gap: 30px; font-size: 12px; font-weight: 600; }
.site-header nav a { position: relative; padding: 8px 0; }
.site-header nav a::after { content: ''; position: absolute; left: 0; right: 100%; bottom: 3px; height: 1px; background: var(--ink); transition: right .25s ease; }
.site-header nav a:hover::after { right: 0; }
.header-cta { justify-self: end; display: flex; align-items: center; gap: 20px; padding: 12px 16px; border: 1px solid var(--ink); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; transition: color .2s, background .2s; }
.header-cta:hover { color: white; background: var(--ink); }
.header-cta span { font-size: 15px; }

.hero {
  position: relative;
  min-height: 900px;
  height: 100svh;
  max-height: 1080px;
  padding: 132px clamp(24px, 7vw, 118px) 72px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, .95fr);
  align-items: center;
  gap: 40px;
  isolation: isolate;
  overflow: hidden;
}
.hero-grain { position: absolute; inset: 0; z-index: -1; opacity: .18; pointer-events: none; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.24'/%3E%3C/svg%3E"); }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(3px); z-index: -2; }
.orb-one { width: 520px; height: 520px; right: -120px; top: -120px; background: radial-gradient(circle at 30% 35%, #ffc7cf, #ff8f7d 47%, rgba(255,93,73,.05) 72%); opacity: .65; }
.orb-two { width: 300px; height: 300px; left: 47%; bottom: -170px; background: var(--acid); opacity: .45; }
.eyebrow, .section-kicker { margin: 0 0 24px; font-size: 11px; line-height: 1; font-weight: 700; text-transform: uppercase; letter-spacing: .14em; }
.eyebrow { display: flex; align-items: center; gap: 10px; }
.eyebrow span { width: 27px; height: 1px; background: currentColor; }
.hero h1 { margin: 0; font-family: var(--serif); font-size: clamp(70px, 7vw, 116px); line-height: .82; letter-spacing: -.045em; font-weight: 400; }
.hero h1 em, h2 em { color: var(--coral); font-weight: 400; }
.hero-intro { max-width: 625px; margin: 38px 0 32px; font-size: clamp(15px, 1.25vw, 19px); line-height: 1.65; color: #4f4b46; }
.hero-actions { display: flex; align-items: center; gap: 30px; }
.button { display: inline-flex; justify-content: space-between; align-items: center; gap: 30px; padding: 17px 21px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; border: 1px solid var(--ink); transition: transform .2s ease, box-shadow .2s ease; }
.button:hover { transform: translate(-3px, -3px); box-shadow: 6px 6px 0 var(--coral); }
.button-dark { color: white; background: var(--ink); }
.button span { font-size: 17px; }
.text-link { font-size: 12px; font-weight: 700; border-bottom: 1px solid var(--ink); padding: 6px 0; }
.text-link span { margin-left: 7px; }
.hero-proof { display: flex; gap: 0; margin-top: 45px; max-width: 540px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.hero-proof div { flex: 1; display: flex; align-items: center; gap: 12px; padding: 15px 10px 15px 0; }
.hero-proof div + div { padding-left: 18px; border-left: 1px solid var(--line); }
.hero-proof b { font-family: var(--serif); font-size: 25px; font-weight: 400; color: var(--coral); }
.hero-proof span { font-size: 9px; line-height: 1.35; text-transform: uppercase; letter-spacing: .08em; }

.hero-visual { position: relative; height: min(740px, 76vh); min-height: 600px; display: grid; place-items: center; }
.phone { position: relative; overflow: hidden; background: #050505; border: 7px solid #111; border-radius: 42px; box-shadow: 0 28px 70px rgba(42, 31, 28, .28); }
.phone-hero { width: min(330px, 24vw); aspect-ratio: 9 / 17.5; transform: rotate(3.5deg); z-index: 2; }
.phone video { width: 100%; height: 100%; object-fit: cover; }
.phone-top { position: absolute; z-index: 4; top: 0; left: 50%; width: 43%; height: 24px; transform: translateX(-50%); background: #111; border-radius: 0 0 15px 15px; }
.phone-top span { display: block; width: 34px; height: 4px; margin: 7px auto; background: #292929; border-radius: 4px; }
.phone-footer { position: absolute; z-index: 3; inset: auto 12px 11px; display: flex; justify-content: space-between; color: white; font-size: 8px; text-shadow: 0 1px 5px black; }
.sound-disc { position: absolute; right: 3%; top: 8%; width: 160px; height: 160px; border-radius: 50%; background: repeating-radial-gradient(circle, #121212 0 3px, #303030 4px 5px, #111 6px 8px); box-shadow: 0 20px 35px rgba(0,0,0,.24); animation: spin 14s linear infinite; }
.sound-disc::after { content: ''; position: absolute; inset: 37%; border-radius: 50%; background: var(--coral); border: 9px solid var(--paper); }
.sound-disc span { position: absolute; z-index: 2; inset: 0; display: grid; place-items: center; color: var(--ink); font-size: 20px; }
.orbit-label { position: absolute; z-index: 4; padding: 8px 12px; border-radius: 30px; font-size: 9px; font-weight: 700; letter-spacing: .12em; box-shadow: 2px 3px 0 var(--ink); }
.label-one { left: 2%; top: 22%; background: var(--acid); transform: rotate(-8deg); }
.label-two { right: 4%; bottom: 26%; color: white; background: var(--blue); transform: rotate(8deg); }
.hand-note { position: absolute; z-index: 5; left: -8%; bottom: 7%; width: max-content; padding: 14px 17px 13px; color: var(--ink); background: var(--acid); border: 1.5px solid var(--ink); box-shadow: 5px 5px 0 var(--ink); transform: rotate(-3deg); }
.hand-note strong { display: block; font-family: var(--serif); font-size: 38px; font-weight: 400; line-height: .82; letter-spacing: -.025em; }
.hand-note span { display: block; margin-top: 8px; font-size: 9px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.hand-note small { display: block; margin-top: 6px; font-size: 7px; font-weight: 600; line-height: 1.3; letter-spacing: .06em; text-transform: uppercase; }
.hand-note svg { position: absolute; left: calc(100% + 7px); top: 10px; width: 82px; fill: none; stroke: var(--ink); stroke-width: 1.7; }
@keyframes spin { to { transform: rotate(360deg); } }

.ticker { overflow: hidden; color: white; background: var(--ink); border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.ticker div { width: max-content; display: flex; align-items: center; gap: 27px; padding: 15px 0; animation: ticker 28s linear infinite; }
.ticker span { font-family: var(--serif); font-size: 22px; letter-spacing: .025em; }
.ticker i { color: var(--coral); font-style: normal; }
@keyframes ticker { to { transform: translateX(-50%); } }

.audience { background: var(--paper); }
.audience-heading { display: grid; grid-template-columns: .65fr 1.45fr .8fr; gap: 60px; align-items: end; }
.audience-heading .section-kicker { align-self: start; }
.audience-heading h2 { margin: 0; font-family: var(--serif); font-size: clamp(56px, 6.4vw, 104px); font-weight: 400; line-height: .91; letter-spacing: -.04em; }
.audience-heading > p:last-child { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.7; }
.audience-heading > p:last-child a { color: var(--ink); border-bottom: 1px solid var(--ink); }
.metric-grid { display: grid; grid-template-columns: repeat(5, 1fr); margin-top: 85px; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.metric { min-width: 0; padding: 28px 20px 30px; }
.metric:first-child { padding-left: 0; }
.metric + .metric { border-left: 1px solid var(--line); }
.metric strong { display: block; font-family: var(--serif); font-size: clamp(42px, 4.3vw, 70px); font-weight: 400; line-height: 1; color: var(--coral); letter-spacing: -.035em; }
.metric span { display: block; margin-top: 11px; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; }
.metrics-note { max-width: 760px; margin: 20px 0 0 auto; color: var(--muted); font-size: 10px; line-height: 1.6; text-align: right; }

.section-pad { padding: 120px clamp(24px, 7vw, 118px); }
.section-kicker { color: var(--coral); }
.manifesto { background: #fff; }
.manifesto-grid { display: grid; grid-template-columns: 1.35fr .65fr; gap: clamp(50px, 9vw, 150px); align-items: end; }
.manifesto h2, .campaign-heading h2, .process h2, .fit-card h2, .final-cta h2 { margin: 0; font-family: var(--serif); font-weight: 400; letter-spacing: -.04em; line-height: .91; font-size: clamp(56px, 6.4vw, 104px); }
.manifesto-copy { padding-bottom: 8px; }
.manifesto-copy p { margin: 0 0 20px; color: var(--muted); font-size: 15px; line-height: 1.7; }
.work-grid { display: grid; grid-template-columns: 1.25fr .65fr .75fr; gap: 20px; margin-top: 85px; align-items: stretch; }
.work-card { min-width: 0; display: flex; flex-direction: column; gap: 18px; }
.video-shell { min-height: 510px; overflow: hidden; border-radius: 4px; background: var(--ink); position: relative; }
.video-shell video { width: 100%; height: 100%; min-height: 510px; object-fit: cover; }
.tiktok-example video { transition: transform .45s cubic-bezier(.2,.7,.2,1); }
.tiktok-example:hover video { transform: scale(1.025); }
.landscape-shell video { filter: saturate(.84) contrast(1.04); }
.video-chip { position: absolute; left: 16px; top: 16px; padding: 8px 10px; background: var(--acid); font-size: 9px; font-weight: 700; letter-spacing: .1em; }
.work-phone { align-items: center; }
.phone-card { width: min(100%, 286px); height: 510px; border-width: 5px; border-radius: 34px; }
.work-meta { width: 100%; border-top: 1px solid var(--line); padding-top: 13px; }
.work-meta span { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; }
.work-meta p { margin: 8px 0 0; color: var(--muted); font-size: 12px; line-height: 1.55; }

.campaign-section { color: white; background: var(--ink); }
.campaign-heading { display: grid; grid-template-columns: 1fr 1.2fr .7fr; gap: 70px; align-items: end; }
.campaign-heading .section-kicker { align-self: start; }
.campaign-heading h2 { grid-column: 2; font-size: clamp(58px, 6vw, 96px); }
.campaign-heading > p:last-child { color: #b5b0aa; font-size: 14px; line-height: 1.7; }
.package-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 90px; }
.package { display: flex; flex-direction: column; min-height: 620px; padding: 36px; border: 1px solid rgba(255,255,255,.25); background: #1b1b1b; }
.package.featured { color: var(--ink); background: var(--paper); border-color: var(--paper); }
.package-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 62px; }
.package-top span { padding: 7px 10px; border: 1px solid currentColor; border-radius: 30px; font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; }
.package-top b { font-family: var(--serif); font-size: 35px; font-weight: 400; color: var(--coral); }
.package h3 { margin: 0; font-family: var(--serif); font-size: clamp(42px, 4vw, 62px); font-weight: 400; }
.package > p { max-width: 550px; color: #aaa6a1; font-size: 14px; line-height: 1.65; }
.package.featured > p { color: var(--muted); }
.package ul { list-style: none; padding: 0; margin: 35px 0 50px; border-top: 1px solid currentColor; }
.package li { padding: 12px 0; border-bottom: 1px solid rgba(128,128,128,.35); font-size: 12px; }
.package li::before { content: '✓'; margin-right: 12px; color: var(--coral); }
.package > a { margin-top: auto; display: flex; justify-content: space-between; padding: 16px 0; border-bottom: 1px solid currentColor; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; }
.package > a span { font-size: 16px; }
.no-guarantee { margin: 28px 0 0; text-align: center; color: #8f8b86; font-size: 10px; text-transform: uppercase; letter-spacing: .08em; }

.process { background: var(--acid); }
.process-intro { display: grid; grid-template-columns: .45fr 1fr; gap: 50px; align-items: start; }
.process h2 { font-size: clamp(62px, 6.3vw, 100px); }
.process-list { list-style: none; padding: 0; margin: 90px 0 0; border-top: 1px solid var(--ink); }
.process-list li { display: grid; grid-template-columns: .35fr .7fr 1.1fr; gap: 40px; align-items: center; padding: 27px 0; border-bottom: 1px solid var(--ink); }
.process-list b { font-family: var(--serif); color: var(--coral); font-size: 28px; font-weight: 400; }
.process-list h3 { margin: 0; font-family: var(--serif); font-size: 32px; font-weight: 400; }
.process-list p { margin: 0; font-size: 13px; line-height: 1.65; }

.fit-section { padding-top: 80px; padding-bottom: 80px; background: #fff; }
.fit-card { min-height: 560px; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; padding: clamp(45px, 7vw, 95px); overflow: hidden; background: var(--paper-2); border-radius: 6px; }
.fit-card h2 { font-size: clamp(58px, 5.7vw, 92px); }
.feeling-cloud { position: relative; min-height: 350px; }
.feeling-cloud span { position: absolute; display: inline-block; padding: 13px 19px; border: 1px solid var(--ink); border-radius: 40px; background: white; font-family: var(--serif); font-size: 24px; box-shadow: 4px 4px 0 var(--ink); }
.feeling-cloud span:nth-child(1) { left: 5%; top: 10%; transform: rotate(-6deg); background: var(--pink); }
.feeling-cloud span:nth-child(2) { right: 8%; top: 2%; transform: rotate(5deg); }
.feeling-cloud span:nth-child(3) { left: 35%; top: 33%; transform: rotate(2deg); background: var(--blue); color: white; }
.feeling-cloud span:nth-child(4) { left: 2%; top: 55%; transform: rotate(7deg); }
.feeling-cloud span:nth-child(5) { right: 0; top: 59%; transform: rotate(-5deg); background: var(--acid); }
.feeling-cloud span:nth-child(6) { left: 27%; bottom: 0; transform: rotate(-2deg); }
.feeling-cloud span:nth-child(7) { right: 14%; bottom: 8%; transform: rotate(6deg); background: var(--coral); }

.faq { background: #fff; }
.faq-list { max-width: 1000px; margin-left: auto; }
.faq details { border-top: 1px solid var(--ink); }
.faq details:last-child { border-bottom: 1px solid var(--ink); }
.faq summary { cursor: pointer; list-style: none; display: flex; justify-content: space-between; gap: 30px; padding: 25px 0; font-family: var(--serif); font-size: clamp(24px, 2.3vw, 34px); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary span { transition: transform .2s; }
.faq details[open] summary span { transform: rotate(45deg); }
.faq details p { max-width: 720px; margin: -5px 0 28px; color: var(--muted); font-size: 14px; line-height: 1.7; }

.final-cta { position: relative; min-height: 880px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; color: white; background: var(--blue); overflow: hidden; scroll-margin-top: 68px; }
.final-cta::before { content: ''; position: absolute; width: 650px; height: 650px; border: 1px solid rgba(255,255,255,.22); border-radius: 50%; }
.final-cta::after { content: ''; position: absolute; width: 430px; height: 430px; border: 1px solid rgba(255,255,255,.22); border-radius: 50%; }
.final-cta > * { position: relative; z-index: 2; }
.final-cta .section-kicker { color: var(--acid); }
.final-cta h2 { font-size: clamp(70px, 8vw, 126px); line-height: .8; }
.final-cta h2 em { color: var(--pink); }
.final-disc { position: absolute; z-index: 1; width: 740px; height: 740px; border-radius: 50%; opacity: .16; background: repeating-radial-gradient(circle, #fff 0 1px, transparent 2px 7px); animation: spin 30s linear infinite; }
.contact-intro { max-width: 650px; margin: 28px 0 0; color: rgba(255,255,255,.82); font-size: 14px; line-height: 1.7; }
.button-light { margin-top: 34px; color: var(--ink); border-color: white; background: white; text-transform: none; font-size: 12px; }
.button-light:hover { box-shadow: 6px 6px 0 var(--acid); }
.contact-address { margin-top: 18px; padding-bottom: 3px; border-bottom: 1px solid rgba(255,255,255,.8); font-size: clamp(13px, 1.4vw, 17px); font-weight: 600; }
.contact-alternatives { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 24px; }
.contact-alternatives a, .contact-alternatives button { appearance: none; padding: 11px 15px; color: white; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.5); border-radius: 0; cursor: pointer; font-family: var(--sans); font-size: 10px; font-weight: 700; letter-spacing: .04em; transition: color .2s, background .2s, border-color .2s; }
.contact-alternatives a:hover, .contact-alternatives button:hover { color: var(--ink); background: var(--acid); border-color: var(--acid); }
.contact-status { min-height: 18px; margin: 10px 0 0; color: var(--acid); font-size: 10px; font-weight: 700; letter-spacing: .04em; }
.tiktok-link { margin-top: 12px; padding-bottom: 4px; border-bottom: 1px solid white; font-size: 11px; }
.header-cta:focus-visible, .button:focus-visible, .contact-address:focus-visible, .contact-alternatives a:focus-visible, .contact-alternatives button:focus-visible { outline: 3px solid var(--acid); outline-offset: 4px; }

.email-dialog { position: fixed; inset: 0; width: min(720px, calc(100% - 36px)); max-width: none; max-height: calc(100svh - 36px); margin: auto; padding: 0; overflow: auto; color: var(--ink); background: transparent; border: 0; }
.email-dialog[open] { animation: dialog-in .22s ease-out; }
.email-dialog::backdrop { background: rgba(19,19,19,.68); backdrop-filter: blur(7px); }
.email-dialog-card { position: relative; padding: clamp(34px, 5vw, 58px); background: var(--paper); border: 1px solid var(--ink); box-shadow: 12px 12px 0 var(--coral); }
.email-dialog-close { position: absolute; right: 18px; top: 15px; width: 40px; height: 40px; padding: 0; color: var(--ink); background: transparent; border: 1px solid var(--ink); cursor: pointer; font-family: var(--sans); font-size: 25px; line-height: 1; }
.email-dialog-close:hover { color: white; background: var(--ink); }
.email-dialog .section-kicker { margin-bottom: 19px; }
.email-dialog h2 { margin: 0; font-family: var(--serif); font-size: clamp(54px, 7vw, 82px); font-weight: 400; line-height: .88; letter-spacing: -.04em; }
.email-dialog h2 em { color: var(--coral); font-weight: 400; }
.email-dialog-card > p:not(.section-kicker, .email-dialog-address, .contact-status) { max-width: 560px; margin: 24px 0 0; color: var(--muted); font-size: 13px; line-height: 1.7; }
.email-dialog-options { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 32px; }
.email-dialog-options a, .email-dialog-options button { appearance: none; min-width: 0; padding: 17px; color: var(--ink); background: white; border: 1px solid var(--ink); cursor: pointer; text-align: left; transition: transform .2s, box-shadow .2s, background .2s; }
.email-dialog-options a:hover, .email-dialog-options button:hover { background: var(--acid); transform: translate(-2px, -2px); box-shadow: 4px 4px 0 var(--ink); }
.email-dialog-options strong, .email-dialog-options span { display: block; }
.email-dialog-options strong { font-size: 12px; }
.email-dialog-options span { margin-top: 6px; color: var(--muted); font-size: 9px; letter-spacing: .03em; }
.email-dialog-address { margin: 24px 0 0; padding-top: 18px; border-top: 1px solid var(--line); font-size: 12px; font-weight: 700; }
.email-dialog .contact-status { color: var(--coral); }
.email-dialog-close:focus-visible, .email-dialog-options a:focus-visible, .email-dialog-options button:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; }
@keyframes dialog-in { from { opacity: 0; transform: translateY(14px) scale(.985); } }

footer { min-height: 110px; padding: 30px clamp(24px, 4vw, 68px); display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 30px; background: var(--paper); }
footer p { margin: 0; font-size: 10px; text-transform: uppercase; letter-spacing: .08em; }
footer p:last-child { justify-self: end; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s cubic-bezier(.2,.7,.2,1), transform .75s cubic-bezier(.2,.7,.2,1); }
.reveal-late { transition-delay: .14s; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1050px) {
  .site-header { grid-template-columns: 1fr 1fr; }
  .site-header nav { display: none; }
  .hero { height: auto; max-height: none; grid-template-columns: 1fr 410px; padding-left: 5vw; padding-right: 5vw; }
  .phone-hero { width: 290px; }
  .audience-heading { grid-template-columns: .4fr 1fr; }
  .audience-heading h2, .audience-heading > p:last-child { grid-column: 2; }
  .metric-grid { grid-template-columns: repeat(3, 1fr); }
  .metric:nth-child(4) { padding-left: 0; border-left: 0; border-top: 1px solid var(--line); }
  .metric:nth-child(5) { border-top: 1px solid var(--line); }
  .manifesto-grid { grid-template-columns: 1fr .8fr; gap: 60px; }
  .work-grid { grid-template-columns: 1.2fr .8fr; }
  .work-copy { grid-column: 1 / -1; }
  .work-copy .video-shell, .work-copy .video-shell video { min-height: 380px; }
  .campaign-heading { grid-template-columns: .4fr 1fr; }
  .campaign-heading h2 { grid-column: 2; }
  .campaign-heading > p:last-child { grid-column: 2; }
}

@media (max-width: 760px) {
  .site-header { height: 68px; padding: 0 18px; }
  .brand { font-size: 11px; }
  .brand-mark { width: 25px; height: 25px; }
  .header-cta { padding: 10px 12px; font-size: 9px; }
  .header-cta span { display: none; }
  .hero { min-height: auto; display: flex; flex-direction: column; align-items: stretch; gap: 60px; padding: 112px 22px 70px; }
  .hero h1 { font-size: clamp(62px, 20vw, 86px); }
  .hero-intro { font-size: 15px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 18px; }
  .hero-proof { margin-top: 35px; }
  .hero-proof div { gap: 8px; padding-right: 7px; }
  .hero-proof div + div { padding-left: 8px; }
  .hero-proof b { font-size: 20px; }
  .hero-proof span { font-size: 7px; }
  .hero-visual { min-height: 610px; height: 610px; }
  .phone-hero { width: 275px; }
  .sound-disc { width: 125px; height: 125px; right: -8%; }
  .hand-note { left: 0; font-size: 21px; }
  .ticker span { font-size: 18px; }
  .section-pad { padding: 82px 22px; }
  .audience-heading, .manifesto-grid, .campaign-heading, .process-intro, .fit-card { grid-template-columns: 1fr; gap: 35px; }
  .audience-heading h2, .audience-heading > p:last-child { grid-column: auto; }
  .audience-heading h2, .manifesto h2, .campaign-heading h2, .process h2, .fit-card h2 { font-size: 58px; }
  .metric-grid { grid-template-columns: 1fr 1fr; margin-top: 55px; }
  .metric { padding: 24px 14px; }
  .metric:nth-child(odd) { padding-left: 0; border-left: 0; }
  .metric:nth-child(even) { border-left: 1px solid var(--line); }
  .metric:nth-child(n+3) { border-top: 1px solid var(--line); }
  .metric:last-child { grid-column: 1 / -1; }
  .metrics-note { text-align: left; }
  .campaign-heading h2, .campaign-heading > p:last-child { grid-column: auto; }
  .work-grid { grid-template-columns: 1fr; margin-top: 55px; }
  .video-shell, .video-shell video { min-height: 300px; }
  .phone-card { height: 520px; }
  .work-copy { grid-column: auto; }
  .package-grid { grid-template-columns: 1fr; margin-top: 55px; }
  .package { min-height: 570px; padding: 28px; }
  .package-top { margin-bottom: 42px; }
  .process-list { margin-top: 55px; }
  .process-list li { grid-template-columns: 55px 1fr; gap: 12px; }
  .process-list p { grid-column: 2; }
  .fit-card { min-height: 710px; padding: 40px 25px; }
  .feeling-cloud { min-height: 350px; }
  .feeling-cloud span { font-size: 20px; padding: 11px 15px; }
  .faq-list { margin-top: 40px; }
  .final-cta { min-height: 850px; }
  .final-cta h2 { font-size: clamp(64px, 19vw, 88px); }
  .contact-intro { font-size: 13px; }
  .button-light { font-size: 10px; gap: 14px; padding: 15px 14px; }
  .contact-alternatives { width: min(100%, 330px); }
  .contact-alternatives a, .contact-alternatives button { flex: 1 1 100%; }
  .email-dialog { width: calc(100% - 24px); max-height: calc(100svh - 24px); }
  .email-dialog-card { padding: 38px 24px 28px; box-shadow: 7px 7px 0 var(--coral); }
  .email-dialog-close { right: 12px; top: 12px; width: 36px; height: 36px; }
  .email-dialog h2 { font-size: 56px; }
  .email-dialog-options { grid-template-columns: 1fr; margin-top: 26px; }
  .email-dialog-options a, .email-dialog-options button { padding: 14px; }
  footer { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  footer p:last-child { justify-self: auto; }
}

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