:root {
  --ink: #101715;
  --ink-2: #17211f;
  --paper: #f3f0e6;
  --paper-2: #e8e3d5;
  --acid: #d8f35a;
  --aqua: #8ee7d1;
  --orange: #ff6b45;
  --white: #fffdf7;
  --muted: #69726f;
  --line: rgba(16, 23, 21, .14);
  --radius: 26px;
  --shadow: 0 24px 70px rgba(15, 23, 21, .14);
  --container: min(1220px, calc(100vw - 48px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
.container { width: var(--container); margin-inline: auto; }

.noise {
  position: fixed; inset: 0; z-index: 999; pointer-events: none; opacity: .04;
  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='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

.announcement { background: var(--acid); border-bottom: 1px solid rgba(16,23,21,.12); font-size: 12px; font-weight: 700; letter-spacing: .02em; }
.announcement-inner { min-height: 34px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.announcement a { border-bottom: 1px solid currentColor; }
.pulse { display: inline-block; width: 7px; height: 7px; background: var(--ink); border-radius: 50%; margin-right: 8px; animation: pulse 1.8s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: .35; transform: scale(.75); } }

.site-header { position: sticky; top: 0; z-index: 50; background: color-mix(in srgb, var(--paper) 88%, transparent); backdrop-filter: blur(16px); border-bottom: 1px solid transparent; transition: .25s ease; }
.site-header.scrolled { border-color: var(--line); box-shadow: 0 8px 24px rgba(16,23,21,.05); }
.nav-wrap { min-height: 82px; display: flex; align-items: center; gap: 36px; }
.brand { display: inline-flex; align-items: center; gap: 10px; flex: 0 0 auto; }
.brand-mark { width: 35px; height: 35px; display: grid; place-items: center; background: var(--ink); border-radius: 50%; }
.brand-mark svg { width: 24px; height: 24px; fill: var(--acid); }
.brand-mark .mark-cut { fill: var(--ink); }
.brand-copy { display: flex; font-size: 19px; letter-spacing: -.055em; line-height: 1; }
.brand-copy b { font-weight: 850; }
.brand-copy span { font-weight: 450; }
.desktop-nav { display: flex; align-items: center; gap: 28px; margin-left: auto; font-size: 13px; font-weight: 650; }
.desktop-nav a { position: relative; opacity: .78; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -5px; height: 1px; background: var(--ink); transition: right .2s; }
.desktop-nav a:hover { opacity: 1; }
.desktop-nav a:hover::after { right: 0; }
.nav-cta { margin-left: 8px; }
.menu-toggle { display: none; width: 44px; height: 44px; border: 0; background: transparent; padding: 11px; cursor: pointer; margin-left: auto; }
.menu-toggle span { display: block; width: 100%; height: 2px; background: var(--ink); margin: 6px 0; transition: .25s; }
.menu-toggle.active span:first-child { transform: translateY(4px) rotate(45deg); }
.menu-toggle.active span:last-child { transform: translateY(-4px) rotate(-45deg); }
.mobile-menu { position: fixed; inset: 82px 0 auto; background: var(--ink); color: var(--white); overflow: hidden; max-height: 0; transition: max-height .35s ease; }
.mobile-menu.open { max-height: calc(100vh - 82px); }
.mobile-menu-inner { padding: 28px 0 36px; display: grid; gap: 5px; }
.mobile-menu a:not(.button) { font-size: 30px; font-weight: 720; letter-spacing: -.05em; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.12); }

.button { min-height: 52px; padding: 0 20px; border: 1px solid transparent; display: inline-flex; align-items: center; justify-content: center; gap: 18px; border-radius: 999px; font-size: 13px; font-weight: 800; letter-spacing: -.01em; cursor: pointer; transition: transform .2s ease, background .2s ease, color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button span { font-size: 16px; }
.button-sm { min-height: 44px; padding: 0 17px; }
.button-dark { color: var(--white); background: var(--ink); }
.button-dark:hover { background: #24312e; }
.button-light { color: var(--ink); background: var(--white); }
.button-acid { color: var(--ink); background: var(--acid); }
.button-acid:hover { background: #e7ff76; }
.button-full { width: 100%; border: 0; }
.text-link { display: inline-flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 800; border-bottom: 1px solid rgba(16,23,21,.4); padding-bottom: 5px; }

.hero { padding-top: 66px; position: relative; overflow: hidden; }
.hero::before { content: ""; position: absolute; width: 560px; height: 560px; border-radius: 50%; background: var(--aqua); filter: blur(110px); opacity: .2; right: -170px; top: 0; pointer-events: none; }
.hero-grid { display: grid; grid-template-columns: 1.03fr .97fr; gap: clamp(42px, 6vw, 92px); align-items: center; min-height: 660px; padding-bottom: 70px; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 26px; }
.eyebrow span { padding: 8px 11px; background: var(--ink); color: var(--acid); text-transform: uppercase; border-radius: 999px; font-size: 10px; font-weight: 850; letter-spacing: .12em; }
.hero h1 { font-size: clamp(58px, 7vw, 106px); line-height: .88; margin: 0; letter-spacing: -.075em; font-weight: 840; max-width: 780px; }
.hero h1 em, .creator-copy h2 em, .contact-copy h2 em { font-family: Georgia, "Times New Roman", serif; font-weight: 400; letter-spacing: -.07em; }
.hero h1 em { color: transparent; -webkit-text-stroke: 1.4px var(--ink); }
.hero-lead { max-width: 585px; margin: 30px 0 0; font-size: clamp(18px, 2vw, 23px); line-height: 1.45; color: #33403c; letter-spacing: -.025em; }
.hero-actions { display: flex; align-items: center; gap: 25px; margin-top: 34px; }
.hero-proof { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; padding-top: 36px; margin-top: 38px; border-top: 1px solid var(--line); max-width: 610px; }
.hero-proof div { display: grid; gap: 4px; }
.hero-proof b { font-size: 13px; }
.hero-proof span { font-size: 11px; color: var(--muted); }

.hero-visual { position: relative; min-height: 620px; }
.hero-image-wrap { width: 80%; height: 590px; border-radius: 180px 180px 26px 26px; overflow: hidden; margin-left: auto; position: relative; box-shadow: var(--shadow); }
.hero-image-wrap img { height: 100%; object-fit: cover; object-position: center 40%; }
.image-shade { position: absolute; inset: 0; background: linear-gradient(to top, rgba(15,23,21,.55), transparent 40%); }
.location-chip { position: absolute; left: 24px; bottom: 23px; background: rgba(255,253,247,.9); backdrop-filter: blur(10px); padding: 10px 14px; border-radius: 999px; font-size: 11px; font-weight: 750; }
.location-chip span { margin-right: 5px; }
.match-card { position: absolute; width: 208px; padding: 18px; background: var(--white); border: 1px solid rgba(16,23,21,.13); box-shadow: 0 18px 50px rgba(15,23,21,.12); z-index: 3; }
.match-card strong { display: block; font-size: 16px; margin: 8px 0 5px; letter-spacing: -.025em; }
.match-card p { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.45; }
.mini-label { font-size: 9px; text-transform: uppercase; letter-spacing: .13em; color: var(--muted); font-weight: 800; }
.match-card-brand { left: 0; top: 76px; transform: rotate(-3deg); border-radius: 20px 20px 20px 4px; }
.match-card-creator { right: -18px; bottom: 76px; transform: rotate(2deg); background: var(--acid); border-radius: 20px 20px 4px 20px; }
.match-card-creator .mini-label, .match-card-creator p { color: rgba(16,23,21,.62); }
.match-line { position: absolute; left: 136px; right: 118px; top: 214px; height: 1px; border-top: 1px dashed rgba(16,23,21,.35); transform: rotate(16deg); z-index: 2; }
.match-line span { position: absolute; right: 0; top: -4px; width: 8px; height: 8px; background: var(--ink); border-radius: 50%; }
.scribble { position: absolute; left: 30px; bottom: 80px; font-family: Georgia, serif; font-size: 72px; transform: rotate(-18deg); color: var(--orange); }

.marquee { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); overflow: hidden; background: var(--white); }
.marquee-track { width: max-content; display: flex; align-items: center; gap: 30px; padding: 18px 0; animation: scroll 30s linear infinite; }
.marquee span { font-size: 13px; font-weight: 820; text-transform: uppercase; letter-spacing: .08em; }
.marquee i { color: var(--orange); font-style: normal; }
@keyframes scroll { to { transform: translateX(-50%); } }

.section { padding: 110px 0; }
.section-light { background: var(--white); }
.section-heading { display: grid; grid-template-columns: 1fr .72fr; gap: 60px; align-items: end; margin-bottom: 54px; }
.section-heading h2, .split-content h2, .creator-copy h2, .process-intro h2, .about-copy h2, .contact-copy h2 { margin: 10px 0 0; font-size: clamp(45px, 5.2vw, 76px); line-height: .96; letter-spacing: -.065em; }
.section-heading p { margin: 0 0 5px; max-width: 500px; color: var(--muted); font-size: 17px; line-height: 1.6; }
.kicker { display: inline-flex; align-items: center; gap: 10px; text-transform: uppercase; font-size: 10px; letter-spacing: .16em; font-weight: 850; }
.kicker::before { content: ""; width: 24px; height: 1px; background: currentColor; }
.kicker-on-dark { color: var(--acid); }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); border-right: 0; }
.service-card { min-height: 350px; padding: 24px; border-right: 1px solid var(--line); position: relative; display: flex; flex-direction: column; transition: background .25s, color .25s; }
.service-card:hover { background: var(--ink); color: var(--white); }
.service-num { font-size: 10px; font-weight: 800; color: var(--muted); }
.service-icon { width: 50px; height: 50px; display: grid; place-items: center; background: var(--acid); color: var(--ink); border-radius: 50%; font-size: 23px; margin: 54px 0 35px; }
.service-card h3 { font-size: 21px; letter-spacing: -.035em; margin: 0 0 12px; }
.service-card p { color: var(--muted); font-size: 13px; line-height: 1.62; margin: 0; }
.service-card:hover p, .service-card:hover .service-num { color: rgba(255,255,255,.62); }
.card-arrow { position: absolute; top: 21px; right: 22px; font-size: 20px; opacity: 0; transform: translate(-5px,5px); transition: .2s; }
.service-card:hover .card-arrow { opacity: 1; transform: none; }

.split-section { display: grid; grid-template-columns: 1fr 1fr; min-height: 760px; background: var(--paper-2); }
.split-media { min-height: 760px; position: relative; overflow: hidden; }
.split-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(145deg, transparent 40%, rgba(16,23,21,.48)); }
.split-media img { height: 100%; object-fit: cover; }
.split-stamp { position: absolute; z-index: 2; right: 28px; bottom: 26px; width: 130px; height: 130px; border-radius: 50%; background: var(--acid); display: grid; place-items: center; align-content: center; transform: rotate(7deg); box-shadow: 0 16px 40px rgba(16,23,21,.18); }
.split-stamp span { font-family: Georgia, serif; font-style: italic; font-size: 17px; }
.split-stamp b { font-size: 28px; letter-spacing: -.06em; }
.split-content { padding: clamp(60px, 8vw, 120px); display: flex; flex-direction: column; justify-content: center; }
.large-copy { font-size: clamp(19px, 2.2vw, 27px); line-height: 1.45; letter-spacing: -.03em; }
.split-content .large-copy { max-width: 640px; margin: 30px 0 32px; }
.check-list { list-style: none; padding: 0; margin: 0 0 36px; display: grid; gap: 0; border-top: 1px solid var(--line); }
.check-list li { display: grid; grid-template-columns: 44px 1fr; align-items: start; gap: 12px; padding: 17px 0; border-bottom: 1px solid var(--line); font-size: 13px; line-height: 1.55; }
.check-list li span { color: var(--muted); font-size: 10px; margin-top: 3px; }
.split-content .button { align-self: flex-start; }

.creator-section { background: var(--ink); color: var(--white); padding: 120px 0; overflow: hidden; }
.creator-grid { display: grid; grid-template-columns: .88fr 1.12fr; gap: 80px; align-items: center; }
.creator-copy h2 em { color: var(--acid); }
.creator-copy > p { color: rgba(255,255,255,.65); font-size: 18px; line-height: 1.65; max-width: 590px; margin: 30px 0; }
.creator-points { display: grid; gap: 18px; margin-bottom: 35px; }
.creator-points > div { display: grid; grid-template-columns: 30px 1fr; align-items: start; }
.creator-points span { color: var(--acid); }
.creator-points p { margin: 0; color: rgba(255,255,255,.64); font-size: 13px; line-height: 1.55; }
.creator-points b { color: var(--white); font-size: 14px; }
.creator-visual { min-height: 610px; position: relative; }
.polaroid { position: absolute; background: var(--white); color: var(--ink); padding: 11px 11px 18px; box-shadow: 0 24px 70px rgba(0,0,0,.35); width: 58%; }
.polaroid img { aspect-ratio: 4/5; object-fit: cover; }
.polaroid span { display: block; font-family: Georgia, serif; font-style: italic; text-align: center; margin-top: 13px; font-size: 18px; }
.polaroid-one { right: 5%; top: 0; transform: rotate(5deg); }
.polaroid-two { left: 2%; bottom: 0; transform: rotate(-8deg); width: 50%; }

.section-work { background: var(--paper); padding-bottom: 65px; }
.gallery-grid { width: min(1400px, calc(100vw - 28px)); margin: 0 auto; display: grid; grid-template-columns: 1.1fr .9fr .9fr; grid-template-rows: 280px 280px; gap: 12px; }
.gallery-item { margin: 0; position: relative; overflow: hidden; min-height: 0; }
.gallery-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(12,18,16,.65), transparent 55%); }
.gallery-item img { height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.75,.2,1); }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-tall { grid-row: 1 / 3; }
.gallery-wide { grid-column: 2 / 4; }
.gallery-item figcaption { position: absolute; left: 21px; bottom: 19px; z-index: 2; color: var(--white); display: grid; gap: 4px; }
.gallery-item figcaption span { text-transform: uppercase; font-size: 9px; letter-spacing: .14em; font-weight: 800; color: var(--acid); }
.gallery-item figcaption b { font-size: 20px; letter-spacing: -.04em; }

.process-section { padding: 120px 0; background: var(--acid); }
.process-intro { display: grid; grid-template-columns: .45fr 1fr; gap: 60px; align-items: start; margin-bottom: 55px; }
.process-intro h2 { margin-top: 0; }
.process-list { border-top: 1px solid rgba(16,23,21,.28); }
.process-step { display: grid; grid-template-columns: .45fr 1fr; gap: 60px; padding: 29px 0 33px; border-bottom: 1px solid rgba(16,23,21,.28); }
.process-number { font-size: 12px; font-weight: 850; }
.process-step > div:last-child { display: grid; grid-template-columns: .7fr 1fr; gap: 60px; }
.process-step h3 { font-size: 28px; letter-spacing: -.045em; margin: 0; }
.process-step p { font-size: 14px; line-height: 1.65; margin: 0; max-width: 480px; }

.about-section { padding: 120px 0; background: var(--white); }
.about-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 80px; align-items: center; }
.about-badge { width: min(420px, 100%); aspect-ratio: 1; border-radius: 50%; background: var(--paper); position: relative; display: grid; place-items: center; overflow: hidden; }
.about-badge::before { content: ""; position: absolute; inset: 15%; border-radius: 50%; background: var(--orange); }
.about-badge span { position: relative; z-index: 2; font-size: 110px; font-weight: 900; letter-spacing: -.12em; transform: translateX(-4px); }
.about-badge small { position: absolute; z-index: 2; bottom: 25%; font-size: 9px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; background: var(--acid); padding: 7px 10px; border-radius: 999px; }
.orbit { position: absolute; border: 1px solid rgba(16,23,21,.3); border-radius: 50%; z-index: 1; }
.orbit-one { width: 110%; height: 45%; transform: rotate(22deg); }
.orbit-two { width: 45%; height: 110%; transform: rotate(22deg); }
.about-copy h2 { max-width: 820px; }
.about-copy .large-copy { max-width: 800px; margin: 30px 0 18px; }
.about-copy > p:last-child { max-width: 700px; color: var(--muted); font-size: 15px; line-height: 1.7; }

.contact-section { background: var(--ink); color: var(--white); padding: 120px 0; position: relative; overflow: hidden; }
.contact-section::before { content: ""; position: absolute; width: 700px; height: 700px; border-radius: 50%; background: var(--aqua); filter: blur(150px); opacity: .09; left: -300px; top: -300px; }
.contact-grid { display: grid; grid-template-columns: .86fr 1.14fr; gap: 90px; position: relative; z-index: 1; }
.contact-copy h2 em { color: var(--acid); }
.contact-copy > p { color: rgba(255,255,255,.58); font-size: 18px; margin: 26px 0 44px; }
.email-link { display: inline-flex; gap: 12px; font-size: 14px; font-weight: 750; border-bottom: 1px solid rgba(255,255,255,.38); padding-bottom: 7px; }
.contact-form { background: #1a2522; border: 1px solid rgba(255,255,255,.09); padding: 30px; border-radius: var(--radius); display: grid; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form label { display: grid; gap: 8px; }
.contact-form label > span { font-size: 10px; text-transform: uppercase; font-weight: 800; letter-spacing: .12em; color: rgba(255,255,255,.55); }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; border: 1px solid rgba(255,255,255,.12); background: #101916; color: var(--white); border-radius: 14px; outline: none; padding: 14px 15px; transition: border-color .2s, box-shadow .2s; }
.contact-form input, .contact-form select { min-height: 50px; }
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--acid); box-shadow: 0 0 0 3px rgba(216,243,90,.09); }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: rgba(255,255,255,.28); }
.form-note { margin: -5px 0 0; font-size: 10px; line-height: 1.5; color: rgba(255,255,255,.38); text-align: center; }

.site-footer { background: #0b100f; color: rgba(255,255,255,.7); padding: 44px 0 24px; }
.footer-top { display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: center; padding-bottom: 42px; border-bottom: 1px solid rgba(255,255,255,.1); }
.brand-footer { color: var(--white); }
.footer-top p { text-align: center; margin: 0; font-family: Georgia, serif; font-style: italic; font-size: 16px; }
.footer-top > a:last-child { text-align: right; font-size: 12px; font-weight: 700; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 22px; font-size: 10px; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.36); }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .75s cubic-bezier(.2,.65,.3,1), transform .75s cubic-bezier(.2,.65,.3,1); }
.reveal.in-view { opacity: 1; transform: none; }
.reveal-delay { transition-delay: .12s; }

@media (max-width: 1080px) {
  .desktop-nav { gap: 18px; }
  .hero-grid { gap: 35px; }
  .hero-image-wrap { width: 86%; }
  .match-card { width: 185px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); border-bottom: 0; }
  .service-card { border-bottom: 1px solid var(--line); }
  .creator-grid { gap: 30px; }
  .process-intro, .process-step { grid-template-columns: .32fr 1fr; }
}

@media (max-width: 860px) {
  :root { --container: min(100% - 34px, 720px); }
  .announcement-inner { justify-content: center; min-height: 32px; }
  .announcement a { display: none; }
  .nav-wrap { min-height: 70px; }
  .desktop-nav, .nav-cta { display: none; }
  .menu-toggle { display: block; }
  .mobile-menu { inset: 70px 0 auto; }
  .hero { padding-top: 38px; }
  .hero-grid { grid-template-columns: 1fr; min-height: 0; padding-bottom: 55px; }
  .hero h1 { font-size: clamp(58px, 14vw, 96px); }
  .hero-visual { min-height: 560px; margin-top: 10px; }
  .hero-image-wrap { width: 88%; height: 530px; }
  .match-card-brand { top: 52px; }
  .section { padding: 80px 0; }
  .section-heading { grid-template-columns: 1fr; gap: 22px; }
  .section-heading p { font-size: 15px; }
  .split-section { grid-template-columns: 1fr; }
  .split-media { min-height: 560px; }
  .split-content { padding: 70px var(--container-side, 24px); width: var(--container); margin: 0 auto; }
  .creator-section { padding: 85px 0 95px; }
  .creator-grid { grid-template-columns: 1fr; gap: 55px; }
  .creator-visual { min-height: 560px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 320px 240px 300px; }
  .gallery-tall { grid-row: 1 / 3; }
  .gallery-wide { grid-column: 1 / 3; }
  .process-section, .about-section, .contact-section { padding: 85px 0; }
  .process-intro { grid-template-columns: 1fr; gap: 12px; }
  .process-step { grid-template-columns: 60px 1fr; gap: 24px; }
  .process-step > div:last-child { grid-template-columns: 1fr; gap: 12px; }
  .about-grid { grid-template-columns: 1fr; gap: 55px; }
  .about-badge { max-width: 350px; margin: 0 auto; }
  .contact-grid { grid-template-columns: 1fr; gap: 50px; }
}

@media (max-width: 560px) {
  :root { --container: calc(100vw - 28px); --radius: 20px; }
  .brand-copy { font-size: 18px; }
  .hero { padding-top: 26px; }
  .hero-grid { gap: 22px; }
  .hero h1 { font-size: clamp(55px, 17vw, 78px); }
  .hero-lead { font-size: 17px; margin-top: 23px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 18px; }
  .hero-proof { grid-template-columns: 1fr 1fr; gap: 20px; padding-top: 25px; margin-top: 28px; }
  .hero-proof div:last-child { grid-column: 1 / 3; }
  .hero-visual { min-height: 475px; }
  .hero-image-wrap { width: 92%; height: 450px; border-radius: 120px 120px 22px 22px; }
  .match-card { width: 170px; padding: 14px; }
  .match-card strong { font-size: 14px; }
  .match-card-brand { top: 45px; left: -4px; }
  .match-card-creator { right: -6px; bottom: 42px; }
  .match-line, .scribble { display: none; }
  .section-heading h2, .split-content h2, .creator-copy h2, .process-intro h2, .about-copy h2, .contact-copy h2 { font-size: 44px; }
  .service-grid { grid-template-columns: 1fr; border-right: 1px solid var(--line); }
  .service-card { min-height: 260px; }
  .service-icon { margin: 34px 0 24px; }
  .split-media { min-height: 480px; }
  .split-content { width: 100%; padding: 65px 18px; }
  .creator-visual { min-height: 465px; }
  .polaroid { width: 62%; }
  .polaroid-two { width: 55%; }
  .gallery-grid { width: calc(100vw - 16px); grid-template-columns: 1fr; grid-template-rows: repeat(4, 330px); gap: 8px; }
  .gallery-tall, .gallery-wide { grid-column: auto; grid-row: auto; }
  .process-step { grid-template-columns: 40px 1fr; gap: 14px; }
  .process-step h3 { font-size: 23px; }
  .about-badge span { font-size: 90px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 19px; }
  .footer-top { grid-template-columns: 1fr; gap: 22px; }
  .footer-top p, .footer-top > a:last-child { text-align: left; }
  .footer-bottom { flex-direction: column; }
}

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