:root {
  --charcoal: #171717;
  --black: #050505;
  --ivory: #f1ede4;
  --sand: #b8a58f;
  --olive: #756e5d;
  --muted: #d7d0c5;
  --line: rgba(241, 237, 228, .17);
  --sans: "Helvetica Neue", "Neue Haas Grotesk Text Pro", Arial, sans-serif;
  --hand: "Bradley Hand", "Segoe Print", "Comic Sans MS", cursive;
  --button-radius: 9px;
}

* { box-sizing: border-box; }
html { scroll-behavior: auto; background: var(--charcoal); }
body { margin: 0; overflow-x: hidden; background: var(--charcoal); color: var(--ivory); font-family: var(--sans); -webkit-font-smoothing: antialiased; }
button, a { color: inherit; }
button { font: inherit; }
img { display: block; max-width: 100%; }
iframe { display: block; }
::selection { background: var(--sand); color: var(--charcoal); }

.skip-link { position: fixed; z-index: 100; top: 10px; left: 10px; padding: 10px 14px; background: var(--ivory); color: var(--charcoal); transform: translateY(-180%); transition: transform .2s ease; }
.skip-link:focus { transform: translateY(0); }
.wide-container { width: min(88vw, 1640px); margin-inline: auto; }

.site-header { position: relative; z-index: 50; background: var(--black); }
.header-inner { min-height: 96px; display: flex; align-items: center; justify-content: space-between; gap: 42px; }
.brand { display: grid; flex: 0 0 auto; gap: 6px; text-decoration: none; }
.brand strong { font-size: clamp(17px, 1.35vw, 23px); line-height: 1; letter-spacing: .055em; text-transform: uppercase; }
.brand small { color: var(--sand); font-size: 10px; line-height: 1.25; letter-spacing: .02em; }
.desktop-nav { display: flex; align-items: center; gap: clamp(20px, 2vw, 42px); font-size: clamp(12px, .9vw, 15px); }
.desktop-nav a { padding: 12px 0; text-decoration: none; transition: color .25s ease; }
.desktop-nav a:hover, .desktop-nav a:focus-visible { color: var(--sand); }
.desktop-nav .nav-contact { margin-left: 6px; padding: 17px 25px; border-radius: var(--button-radius); background: var(--sand); color: var(--charcoal); }
.desktop-nav .nav-contact:hover, .desktop-nav .nav-contact:focus-visible { background: var(--ivory); color: var(--charcoal); }
.menu-toggle, .mobile-menu { display: none; }

h1, h2, h3, p { text-wrap: pretty; }
h1, h2, h3 { margin: 0; font-family: var(--sans); }
p { margin: 0; }
strong { color: var(--ivory); font-weight: 700; }
.content-section { padding: clamp(110px, 10vw, 180px) 0; }
.section-kicker, .eyebrow { color: var(--sand); font-size: clamp(13px, 1vw, 17px); line-height: 1.2; }
.section-kicker::before { content: "— "; }
.human-note { position: relative; z-index: 2; max-width: 100%; padding-bottom: 13px; color: var(--sand); font-family: var(--hand); font-size: clamp(23px, 2vw, 35px); font-weight: 500; line-height: 1.12; letter-spacing: -.04em; }
.human-note::before, .human-note::after { display: none; }
.scribble-arrow { position: absolute; display: block; overflow: visible; color: currentColor; pointer-events: none; }
.scribble-arrow path { fill: none; stroke: currentColor; stroke-width: 2.1; stroke-linecap: round; stroke-linejoin: round; vector-effect: non-scaling-stroke; }

.hero { min-height: calc(100svh - 96px); padding: clamp(56px, 5.5vw, 100px) 0 clamp(72px, 6vw, 110px); background: var(--black); }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(440px, .9fr); gap: clamp(38px, 3.5vw, 62px); align-items: center; }
.hero-copy { padding-top: 8px; }
.eyebrow { margin-bottom: clamp(28px, 3vw, 52px); text-align: center; }
.hero h1 { max-width: 940px; font-size: clamp(52px, 5.6vw, 96px); font-weight: 800; line-height: .96; letter-spacing: -.065em; text-transform: uppercase; text-align: center; }
.hero-text { display: grid; gap: 16px; max-width: 720px; margin: clamp(34px, 3.2vw, 56px) auto 0; }
.hero-text p { color: var(--muted); font-size: clamp(14px, 1.1vw, 18px); line-height: 1.58; }
.primary-link { display: flex; width: min(280px, 100%); min-height: 60px; align-items: center; justify-content: center; margin: clamp(34px, 3vw, 54px) auto 0; border-radius: var(--button-radius); background: var(--sand); color: var(--charcoal); font-size: 15px; font-weight: 650; text-decoration: none; transition: background .25s ease, color .25s ease; }
.primary-link:hover, .primary-link:focus-visible { background: var(--ivory); }
.hero-media { position: relative; top: clamp(-48px, -2.5vw, -24px); width: 100%; aspect-ratio: 16 / 9; overflow: hidden; background: #0e0e0e; }
.hero-media button, .hero-media iframe { position: absolute; inset: 0; width: 100%; height: 100%; padding: 0; border: 0; background: #0e0e0e; }
.hero-media iframe { pointer-events: none; }
.hero-media button { cursor: pointer; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 48% center; filter: saturate(.73) contrast(1.03) brightness(.76); transition: transform .8s cubic-bezier(.22,1,.36,1), filter .6s ease; }
.hero-media button:hover img, .hero-media button:focus-visible img { transform: scale(1.025); filter: saturate(.86) contrast(1.02) brightness(.83); }
.media-shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.04), rgba(0,0,0,.2)); }
.play-button { position: absolute; left: 50%; top: 50%; display: grid; width: 56px; height: 56px; place-items: center; border: 1px solid rgba(241,237,228,.88); border-radius: 50%; transform: translate(-50%,-50%); transition: background .25s ease, color .25s ease, transform .25s ease; }
.play-icon { width: 0; height: 0; margin-left: 3px; border-top: 7px solid transparent; border-bottom: 7px solid transparent; border-left: 11px solid currentColor; }
button:hover > .play-button, button:focus-visible > .play-button { background: var(--ivory); color: var(--charcoal); transform: translate(-50%,-50%) scale(1.05); }

.subjects { background: var(--ivory); color: var(--charcoal); }
.subjects-heading { display: grid; grid-template-columns: minmax(0, 1fr) minmax(260px, .42fr); gap: clamp(50px, 7vw, 120px); align-items: end; }
.subjects h2 { max-width: 1060px; font-size: clamp(65px, 7.2vw, 124px); font-weight: 800; line-height: .96; letter-spacing: -.065em; text-transform: uppercase; }
.subjects-note { justify-self: end; width: min(100%, 390px); padding-bottom: 0; color: var(--olive); transform: rotate(-2deg); }
.subjects-note::before, .subjects-note::after { display: none; }
.subjects-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(90px, 9vw, 150px) clamp(70px, 9vw, 150px); margin-top: clamp(110px, 11vw, 180px); }
.subject-situation { max-width: 650px; }
.subject-situation h3 { font-weight: 400; }
.subject-situation h3 strong { display: block; color: var(--charcoal); font-size: clamp(36px, 3.3vw, 58px); font-weight: 800; line-height: .95; letter-spacing: -.05em; }
.subject-situation h3 span { display: block; margin-top: 13px; color: var(--olive); font-size: clamp(20px, 1.55vw, 28px); font-weight: 400; line-height: 1.25; letter-spacing: -.02em; }
.subject-situation > p { max-width: 590px; margin-top: 31px; color: #403b35; font-size: clamp(17px, 1.3vw, 22px); line-height: 1.65; }
.subject-situation > p strong, .subjects-conclusion strong { color: var(--charcoal); font-weight: 750; }
.subjects-conclusion { max-width: 940px; margin-top: clamp(110px, 11vw, 180px); color: #403b35; font-size: clamp(17px, 1.25vw, 21px); line-height: 1.7; }

.portfolio { background: var(--charcoal); }
.portfolio-heading { width: min(100%, 1080px); margin: 0 auto clamp(58px, 6vw, 100px); display: grid; grid-template-columns: minmax(0, 1fr) auto; text-align: center; }
.portfolio-heading .section-kicker { grid-column: 1 / -1; margin-bottom: 18px; }
.portfolio h2 { font-size: clamp(58px, 7.4vw, 126px); font-weight: 700; line-height: .96; letter-spacing: -.065em; }
.portfolio-heading h2 { grid-column: 1 / -1; }
.portfolio-heading .human-note { grid-column: 1 / -1; justify-self: center; width: max-content; margin: 32px 0 0 clamp(80px, 15vw, 220px); transform: rotate(-2deg); }
.portfolio-heading .portfolio-note::before, .portfolio-heading .portfolio-note::after { display: none; }
.portfolio-scribble { right: 1%; top: calc(100% - 4px); width: 52px; height: 48px; }
.films { display: grid; width: min(88vw, 1540px); grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(90px, 8vw, 140px) clamp(44px, 4.5vw, 78px); margin-inline: auto; }
.film-frame { position: relative; aspect-ratio: 16 / 9; overflow: hidden; background: #0d0d0d; }
.film-frame iframe { width: 100%; height: 100%; border: 0; }
.film-poster { position: absolute; inset: 0; width: 100%; height: 100%; padding: 0; overflow: hidden; border: 0; background: #0d0d0d; cursor: pointer; }
.film-poster img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.76) contrast(1.02) brightness(.8); transition: transform .9s cubic-bezier(.22,1,.36,1), filter .7s ease; }
.film-poster:hover img, .film-poster:focus-visible img { transform: scale(1.018); filter: saturate(.9) contrast(1.02) brightness(.88); }
.film-caption { display: grid; grid-template-columns: 1fr; gap: 17px; align-items: start; padding: 31px 0 12px; }
.film-caption h3 { font-size: clamp(31px, 2.8vw, 48px); font-weight: 700; line-height: 1; letter-spacing: -.04em; }
.film-purpose { display: grid; gap: 9px; padding-top: 1px; }
.film-type { color: var(--ivory); font-size: clamp(20px, 1.65vw, 28px); font-weight: 650; line-height: 1.18; letter-spacing: -.025em; }
.film-value { color: var(--sand); font-size: clamp(15px, 1.1vw, 18px); line-height: 1.5; }

.method { min-height: 92svh; display: grid; align-items: center; background: var(--charcoal); border-top: 1px solid var(--line); }
.method-grid { display: grid; grid-template-columns: minmax(0, .9fr) repeat(2, minmax(0, 1fr)); grid-template-areas: "title one two" "note three four"; gap: clamp(90px, 8vw, 140px) clamp(44px, 5vw, 90px); align-items: start; }
.method-title { grid-area: title; }
.method-title .section-kicker { margin-bottom: 22px; }
.method h2 { font-size: clamp(52px, 5vw, 86px); font-weight: 700; line-height: .98; letter-spacing: -.06em; }
.method-one { grid-area: one; }
.method-two { grid-area: two; }
.method-three { grid-area: three; }
.method-four { grid-area: four; }
.method-block { max-width: 470px; }
.method-block p { color: var(--muted); font-size: clamp(17px, 1.35vw, 22px); line-height: 1.65; }
.method-copy p + p { margin-top: 20px; }
.step-number { display: block; min-height: 45px; margin-bottom: 28px; color: var(--sand); font-size: 19px; font-weight: 700; line-height: 1; letter-spacing: .08em; }
.method-note { grid-area: note; align-self: start; justify-self: start; max-width: 360px; margin-top: 12px; transform: rotate(-2deg); }
.method-note::before, .method-note::after { display: none; }

.expertise { background: var(--black); border-top: 1px solid rgba(241,237,228,.08); }
.expertise-inner { display: grid; }
.expertise-intro { display: grid; grid-template-columns: minmax(0, 1.06fr) minmax(420px, .94fr); gap: clamp(70px, 8vw, 145px); align-items: start; }
.expertise h2 { max-width: 840px; font-size: clamp(58px, 6.3vw, 108px); font-weight: 800; line-height: .96; letter-spacing: -.065em; text-transform: uppercase; }
.expertise-copy { max-width: 700px; padding-top: clamp(8px, 1vw, 18px); }
.expertise-copy p { color: var(--muted); font-size: clamp(17px, 1.35vw, 22px); line-height: 1.68; }
.expertise-copy p + p { margin-top: 27px; }
.expertise-media { position: relative; width: 100%; aspect-ratio: 1644 / 441; margin-top: clamp(82px, 8vw, 135px); overflow: hidden; background: #0d0d0d; }
.expertise-media::after { content: ""; position: absolute; inset: 0; background: rgba(0,0,0,.08); pointer-events: none; }
.expertise-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; filter: saturate(.86) brightness(.91) contrast(1.01); }

.about { min-height: 96svh; display: grid; grid-template-columns: 52% 48%; background: var(--black); overflow: hidden; }
.about-photo { position: relative; display: grid; min-height: 760px; align-content: center; background: var(--black); }
.about-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent 78%, var(--black) 100%); pointer-events: none; }
.about-photo img { grid-area: 1 / 1; width: 100%; height: auto; object-fit: contain; object-position: center; filter: saturate(.72) contrast(1.04) brightness(.78); }
.about-content { display: flex; flex-direction: column; justify-content: center; padding: clamp(84px, 8vw, 150px) max(6vw, 70px) clamp(84px, 8vw, 150px) 3vw; }
.about-content .section-kicker { margin-bottom: 22px; }
.about h2 { max-width: 760px; font-size: clamp(64px, 7vw, 116px); font-weight: 800; line-height: .96; letter-spacing: -.065em; text-transform: uppercase; }
.about-copy { max-width: 720px; margin-top: clamp(38px, 4vw, 68px); }
.about-copy p { color: var(--muted); font-size: clamp(17px, 1.4vw, 23px); line-height: 1.7; }
.about-copy p + p { margin-top: 27px; }
.contact { min-height: 86svh; display: grid; grid-template-columns: 44% 56%; }
.contact-intro { display: grid; place-items: center; padding: clamp(80px, 8vw, 150px) 7vw; background: var(--charcoal); }
.contact-intro > div { max-width: 660px; }
.contact-intro .section-kicker { margin-bottom: 28px; }
.contact h2 { font-size: clamp(64px, 6.8vw, 118px); font-weight: 700; line-height: .96; letter-spacing: -.06em; }
.contact-intro div > p:last-child { max-width: 620px; margin-top: clamp(42px, 4vw, 70px); color: var(--muted); font-size: clamp(17px, 1.35vw, 22px); line-height: 1.7; }
.contact-action { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: clamp(80px, 8vw, 150px) 6vw; background: var(--black); }
.contact-cta { display: flex; width: min(390px, 100%); min-height: clamp(74px, 6vw, 96px); align-items: center; justify-content: center; padding: 18px 26px; border-radius: var(--button-radius); background: var(--sand); color: var(--charcoal); font-size: clamp(24px, 2.2vw, 38px); font-weight: 650; line-height: 1.15; text-align: center; text-decoration: none; transition: background .25s ease, transform .25s ease; }
.contact-cta:hover, .contact-cta:focus-visible { background: var(--ivory); transform: translateY(-3px); }

.site-footer { min-height: 88svh; display: grid; place-items: center; padding: clamp(92px, 10vw, 170px) 24px 34px; background: var(--black); border-top: 1px solid rgba(241,237,228,.08); }
.footer-inner { width: min(780px, 100%); text-align: center; }
.footer-identity > a { display: block; color: var(--ivory); font-size: clamp(40px, 5.3vw, 88px); font-weight: 800; line-height: .95; letter-spacing: .03em; text-transform: uppercase; text-decoration: none; }
.footer-identity p { margin-top: 16px; color: var(--sand); font-size: clamp(13px, 1vw, 17px); }
.footer-nav { display: grid; gap: 15px; justify-items: center; margin-top: clamp(44px, 5vw, 76px); }
.footer-nav a { width: max-content; color: var(--muted); font-size: clamp(16px, 1.25vw, 21px); text-decoration: none; transition: color .25s ease; }
.footer-nav a:hover, .footer-nav a:focus-visible { color: var(--sand); }
.footer-contact { display: grid; gap: 10px; justify-items: center; margin-top: clamp(52px, 6vw, 90px); font-style: normal; }
.footer-contact > a:not(.linkedin-link) { color: var(--ivory); font-size: clamp(21px, 2vw, 32px); text-decoration-color: transparent; text-underline-offset: 7px; transition: color .25s ease, text-decoration-color .25s ease; }
.footer-contact > a:hover, .footer-contact > a:focus-visible { color: var(--sand); text-decoration-color: currentColor; }
.linkedin-link { display: grid; width: 48px; height: 48px; place-items: center; margin-top: 21px; border: 1px solid var(--sand); color: var(--ivory); font-size: 23px; font-weight: 750; text-decoration: none; transition: background .25s ease, color .25s ease; }
.linkedin-link:hover, .linkedin-link:focus-visible { background: var(--sand); color: var(--charcoal); }
.footer-legal { display: flex; justify-content: center; gap: 18px 30px; margin-top: clamp(74px, 8vw, 120px); padding-top: 26px; border-top: 1px solid var(--line); color: var(--sand); font-size: 13px; }
.footer-legal a { color: var(--ivory); text-underline-offset: 5px; }

.legal-page { min-height: 100vh; background: var(--charcoal); }
.legal-header { background: var(--black); }
.legal-header .page-width { width: min(88vw, 1500px); min-height: 96px; display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-inline: auto; }
.legal-header a { text-decoration: none; }
.legal-header strong { font-size: 19px; letter-spacing: .05em; }
.legal-back { color: var(--sand); font-size: 14px; }
.legal-content { width: min(82vw, 1320px); margin-inline: auto; padding: clamp(80px, 8vw, 140px) 0; }
.legal-content h1 { max-width: 880px; font-size: clamp(58px, 7vw, 112px); line-height: .96; letter-spacing: -.06em; }
.legal-intro { max-width: 780px; margin-top: 35px; color: var(--sand); font-size: 18px; line-height: 1.65; }
.legal-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 64px 90px; margin-top: 88px; }
.legal-block { border-top: 1px solid var(--line); padding-top: 25px; }
.legal-block h2 { font-size: 29px; letter-spacing: -.03em; }
.legal-block p { margin-top: 18px; color: var(--muted); font-size: 16px; line-height: 1.7; }
.legal-block a { color: var(--ivory); }
.legal-missing { display: inline-block; margin-top: 8px; color: var(--sand); font-style: italic; }

.js [data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s cubic-bezier(.22,1,.36,1); }
.js [data-reveal][data-visible="true"] { opacity: 1; transform: translateY(0); }

@media (max-width: 1120px) {
  .wide-container { width: min(92vw, 1040px); }
  .desktop-nav { gap: 18px; }
  .desktop-nav a { font-size: 12px; }
  .hero-grid { grid-template-columns: minmax(0, 1.1fr) minmax(360px, .9fr); gap: 38px; }
  .hero h1 { font-size: clamp(50px, 6.7vw, 72px); }
  .hero-text { gap: 15px; }
  .films { width: 84vw; }
  .method-grid { gap: 72px 45px; }
  .about { grid-template-columns: 45% 55%; }
  .about-content { padding-left: 1vw; padding-right: 5vw; }
}

@media (max-width: 860px) {
  .wide-container { width: calc(100% - 48px); }
  .desktop-nav { display: none; }
  .menu-toggle { display: block; padding: 11px 0; border: 0; background: transparent; color: var(--sand); font-size: 14px; }
  .mobile-menu { position: fixed; z-index: 45; inset: 0; display: grid; align-content: center; padding: 112px 28px 36px; background: var(--charcoal); opacity: 0; pointer-events: none; transition: opacity .25s ease; }
  .mobile-menu.is-open { opacity: 1; pointer-events: auto; }
  .mobile-menu nav { display: grid; gap: 20px; }
  .mobile-menu nav a { font-size: clamp(30px, 7vw, 48px); font-weight: 650; line-height: 1.05; letter-spacing: -.04em; text-decoration: none; }
  .mobile-email { margin-top: 48px; color: var(--sand); font-size: 15px; }
  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; gap: 56px; }
  .hero-copy { max-width: 760px; margin-inline: auto; }
  .hero-media { top: 0; width: 100%; aspect-ratio: 16 / 9; margin-inline: auto; }
  .hero h1 { font-size: clamp(54px, 9vw, 78px); }
  .subjects-heading { grid-template-columns: 1fr; gap: 42px; }
  .subjects-note { justify-self: end; }
  .subjects-grid { grid-template-columns: 1fr; gap: 82px; }
  .subject-situation { max-width: 680px; }
  .portfolio-heading { width: 100%; }
  .portfolio-heading .human-note { margin-right: 3%; }
  .films { width: 88vw; grid-template-columns: 1fr; gap: 90px; }
  .method-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-template-areas: "title title" "one two" "three four" "note note"; }
  .method-note { justify-self: end; }
  .expertise-intro { grid-template-columns: 1fr; gap: 54px; }
  .expertise-copy { max-width: 720px; }
  .about { min-height: auto; grid-template-columns: 1fr; }
  .about-photo { display: block; min-height: 0; aspect-ratio: auto; padding-bottom: 16px; }
  .about-photo::after { background: linear-gradient(180deg, transparent 75%, var(--black) 100%); }
  .about-content { padding: 80px 7vw 100px; }
  .about h2 { font-size: clamp(62px, 13vw, 100px); }
  .contact { min-height: auto; grid-template-columns: 1fr; }
  .contact-intro, .contact-action { min-height: 650px; padding: 90px 8vw; }
}

@media (max-width: 620px) {
  .wide-container { width: calc(100% - 36px); }
  .header-inner { min-height: 78px; }
  .brand strong { font-size: 16px; }
  .brand small { max-width: 220px; font-size: 9px; }
  .content-section { padding: 84px 0; }
  .human-note { font-size: 24px; }
  .hero { padding: 56px 0 72px; }
  .eyebrow { margin-bottom: 30px; text-align: left; }
  .hero h1 { font-size: clamp(38px, 10.5vw, 50px); line-height: .98; letter-spacing: -.055em; text-align: left; }
  .hero-text { gap: 17px; margin-top: 34px; }
  .hero-text p { font-size: 16px; }
  .primary-link { width: min(280px, 100%); min-height: 60px; margin-top: 32px; }
  .hero-media { width: 100%; aspect-ratio: 16 / 9; }
  .play-button { width: 48px; height: 48px; }
  .subjects { padding: 96px 0; }
  .subjects h2 { font-size: clamp(50px, 15vw, 70px); line-height: .96; }
  .subjects-note { width: min(90%, 320px); margin-top: 4px; font-size: 24px; }
  .subjects-grid { gap: 68px; margin-top: 92px; }
  .subject-situation h3 strong { font-size: clamp(34px, 10.5vw, 47px); }
  .subject-situation h3 span { margin-top: 10px; font-size: 21px; }
  .subject-situation > p { margin-top: 25px; font-size: 17px; line-height: 1.62; }
  .subjects-conclusion { margin-top: 92px; font-size: 17px; }
  .portfolio-heading { width: 100%; margin-bottom: 84px; text-align: left; }
  .portfolio h2 { font-size: clamp(52px, 17vw, 76px); }
  .portfolio-heading .human-note { grid-column: 1 / -1; justify-self: end; width: max-content; margin: 64px 6% 0 0; }
  .films { width: 100%; gap: 70px; }
  .film-caption { grid-template-columns: 1fr; gap: 17px; padding-top: 21px; }
  .film-caption h3 { font-size: 30px; }
  .film-purpose { gap: 7px; }
  .film-type { font-size: 20px; }
  .film-value { font-size: 15px; }
  .method { min-height: auto; }
  .method-grid { grid-template-columns: 1fr; grid-template-areas: "title" "one" "two" "three" "four" "note"; gap: 58px; }
  .method h2 { font-size: clamp(49px, 14vw, 67px); }
  .method-block p { font-size: 17px; }
  .step-number { min-height: 40px; margin-bottom: 22px; }
  .method-note { justify-self: end; max-width: 310px; margin-top: -12px; }
  .expertise { padding: 96px 0; }
  .expertise h2 { font-size: clamp(44px, 12.5vw, 61px); line-height: .96; }
  .expertise-intro { gap: 42px; }
  .expertise-copy p { font-size: 17px; line-height: 1.62; }
  .expertise-copy p + p { margin-top: 23px; }
  .expertise-media { margin-top: 62px; }
  .about-photo { display: block; aspect-ratio: auto; padding-bottom: 14px; }
  .about-photo img { object-position: center; }
  .about-content { padding: 72px 22px 92px; }
  .about h2 { font-size: clamp(56px, 17vw, 78px); }
  .about-copy { margin-top: 35px; }
  .about-copy p { font-size: 17px; line-height: 1.62; }
  .portfolio-scribble { right: 1%; top: calc(100% - 3px); width: 46px; height: 40px; }
  .contact-intro, .contact-action { min-height: auto; padding: 76px 22px; }
  .contact h2 { font-size: clamp(59px, 18vw, 82px); }
  .contact-intro div > p:last-child { margin-top: 36px; font-size: 17px; line-height: 1.62; }
  .contact-cta { min-height: 78px; padding: 18px; font-size: 27px; text-align: center; }
  .site-footer { min-height: auto; padding: 90px 22px 28px; }
  .footer-identity > a { font-size: clamp(38px, 12vw, 54px); }
  .footer-identity p { line-height: 1.5; }
  .footer-nav { margin-top: 50px; }
  .footer-contact > a:not(.linkedin-link) { font-size: 20px; }
  .footer-legal { display: grid; gap: 10px; margin-top: 72px; }
  .legal-header .page-width, .legal-content { width: calc(100% - 40px); }
  .legal-content h1 { font-size: 55px; }
  .legal-intro { font-size: 16px; }
  .legal-grid { grid-template-columns: 1fr; gap: 44px; margin-top: 58px; }
}

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