/*
Theme Name: Meyer & Sander Media
Theme URI: https://meyer-sander-media.de/
Author: Meyer & Sander Media
Description: Ein schnelles, responsives WordPress-Theme für Foto, Film, Livestream und Medienproduktionen.
Version: 2.1.0
Text Domain: meyer-sander-media
Requires at least: 6.0
Requires PHP: 7.4
License: GPL-2.0-or-later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
*/

:root {
	--ink: #111111;
	--ink-soft: #202020;
	--paper: #f4f2ed;
	--white: #ffffff;
	--muted: #706f6b;
	--line: rgba(17, 17, 17, .16);
	--line-light: rgba(255, 255, 255, .22);
	--lime: #d8fa58;
	--orange: #ff624a;
	--radius: 2px;
	--shell: min(1200px, calc(100% - 64px));
	--sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--serif: Iowan Old Style, Baskerville, "Times New Roman", Times, serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--sans); font-size: 16px; line-height: 1.5; -webkit-font-smoothing: antialiased; }
body.menu-is-open { overflow: hidden; }
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button, select { cursor: pointer; }
h1, h2, h3, p, ul, ol { margin-top: 0; }
h1, h2, h3 { font-weight: 750; }
::selection { background: var(--lime); color: var(--ink); }

.shell { width: var(--shell); margin-inline: auto; }
.section-space { padding-block: clamp(80px, 11vw, 160px); }
.screen-reader-text { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(1px, 1px, 1px, 1px); white-space: nowrap; }
.screen-reader-text:focus { z-index: 1000; top: 16px; left: 16px; width: auto; height: auto; padding: 12px 16px; clip: auto; color: var(--ink); background: var(--lime); }

.eyebrow { display: flex; align-items: center; gap: 9px; margin-bottom: 23px; font-size: 11px; font-weight: 800; letter-spacing: .15em; line-height: 1.2; text-transform: uppercase; }
.eyebrow--light { color: var(--white); }
.eyebrow--mint { color: var(--lime); }
.eyebrow__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 5px rgba(216, 250, 88, .15); }

.button { display: inline-flex; align-items: center; justify-content: center; gap: 14px; min-height: 54px; padding: 15px 21px; border: 1px solid var(--ink); border-radius: 0; background: var(--ink); color: var(--white); font-size: 13px; font-weight: 800; letter-spacing: .02em; line-height: 1; transition: transform .2s ease, background .2s ease, color .2s ease; }
.button span { font-size: 18px; line-height: 0; }
.button:hover { transform: translateY(-3px); background: var(--lime); color: var(--ink); }
.button--small { min-height: 42px; padding: 11px 15px; font-size: 11px; }
.button--light { border-color: var(--white); background: var(--white); color: var(--ink); }
.button--dark { background: var(--ink); color: var(--white); }
.button--outline { border-color: var(--white); background: transparent; color: var(--white); }
.button--outline:hover { border-color: var(--lime); background: var(--lime); color: var(--ink); }
.button--full { width: 100%; }
.text-link { display: inline-flex; align-items: center; gap: 10px; padding-bottom: 5px; border-bottom: 1px solid currentColor; font-size: 13px; font-weight: 800; transition: gap .2s ease, color .2s ease; }
.text-link span { font-size: 18px; line-height: 1; }
.text-link:hover { gap: 16px; color: var(--orange); }

/* Header */
.site-header { position: fixed; z-index: 50; top: 0; right: 0; left: 0; background: var(--ink); color: var(--white); transition: background .25s ease, box-shadow .25s ease; }
.site-header--scrolled { box-shadow: 0 8px 30px rgba(0, 0, 0, .18); }
.header__inner { display: flex; align-items: center; justify-content: space-between; min-height: 82px; gap: 24px; }
.brand { display: flex; flex: 0 0 auto; align-items: center; }
.brand__link, .custom-logo-link { display: block; line-height: 0; }
.brand img, .brand .custom-logo { width: 92px; height: 52px; object-fit: contain; object-position: left center; }
.primary-nav { margin-left: auto; }
.primary-nav ul, .mobile-menu ul { display: flex; gap: clamp(18px, 2.2vw, 32px); margin: 0; padding: 0; list-style: none; }
.primary-nav a { position: relative; display: block; padding-block: 8px; font-size: 12px; font-weight: 750; letter-spacing: .035em; }
.primary-nav a::after { position: absolute; right: 0; bottom: 2px; left: 0; height: 1px; background: var(--lime); content: ""; transform: scaleX(0); transform-origin: right; transition: transform .2s ease; }
.primary-nav a:hover::after, .primary-nav .current-menu-item a::after { transform: scaleX(1); transform-origin: left; }
.header__cta { margin-left: 9px; }
.menu-toggle { display: none; align-items: center; gap: 11px; padding: 0; border: 0; background: transparent; color: var(--white); font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.menu-toggle__icon { display: grid; width: 21px; gap: 5px; }
.menu-toggle__icon i { display: block; width: 100%; height: 1px; background: currentColor; transition: transform .2s ease; }
.menu-toggle[aria-expanded="true"] .menu-toggle__icon i:first-child { transform: translateY(3px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-toggle__icon i:last-child { transform: translateY(-3px) rotate(-45deg); }
.mobile-menu { border-top: 1px solid var(--line-light); background: var(--ink); }
.mobile-menu[hidden] { display: none; }
.mobile-menu .shell { display: grid; gap: 25px; padding-block: 28px 32px; }
.mobile-menu ul { display: grid; gap: 2px; }
.mobile-menu a { display: block; padding-block: 11px; font-size: 24px; font-weight: 750; letter-spacing: -.045em; }

/* Home */
.hero { position: relative; display: grid; min-height: min(860px, 100svh); overflow: hidden; background: var(--ink); color: var(--white); isolation: isolate; }
.hero__media, .hero__shade { position: absolute; inset: 0; }
.hero__media img, .hero__media video { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero__shade { z-index: 1; background: linear-gradient(90deg, rgba(0, 0, 0, .7) 0%, rgba(0, 0, 0, .35) 49%, rgba(0, 0, 0, .12) 100%), linear-gradient(0deg, rgba(0, 0, 0, .65), transparent 37%); }
.hero__content { position: relative; z-index: 2; display: flex; flex-direction: column; justify-content: end; min-height: inherit; padding-top: 180px; padding-bottom: clamp(88px, 11vw, 130px); }
.hero h1 { max-width: 1060px; margin-bottom: clamp(35px, 5vw, 60px); font-size: clamp(52px, 7.3vw, 112px); font-weight: 780; letter-spacing: -.075em; line-height: .86; }
h1 em, h2 em { font-family: var(--serif); font-weight: 400; letter-spacing: -.08em; }
.hero h1 em { color: var(--lime); }
.hero__bottom { display: flex; align-items: end; justify-content: space-between; gap: 30px; }
.hero__bottom p { max-width: 420px; margin: 0; color: rgba(255, 255, 255, .82); font-size: clamp(15px, 1.5vw, 18px); line-height: 1.55; }
.hero__scroll { position: absolute; z-index: 3; right: 32px; bottom: 28px; display: flex; align-items: center; gap: 10px; color: var(--white); font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; transform: rotate(-90deg); transform-origin: right bottom; }
.hero__scroll i { display: block; width: 36px; height: 1px; background: var(--lime); }

.ticker { overflow: hidden; padding-block: 15px; background: var(--lime); color: var(--ink); white-space: nowrap; }
.ticker__track { display: inline-flex; min-width: max-content; animation: ticker 32s linear infinite; }
.ticker span { margin-right: 38px; font-size: 12px; font-weight: 900; letter-spacing: .1em; }
.ticker b { margin-left: 38px; color: var(--orange); font-size: 15px; }
@keyframes ticker { to { transform: translateX(-50%); } }

.intro { border-bottom: 1px solid var(--line); }
.intro__grid { display: grid; grid-template-columns: .64fr 1.36fr; gap: 45px; }
.intro h2, .section-head h2, .live-callout h2, .contact-cta h2, .about-intro h2, .about-extras h2 { margin-bottom: 32px; font-size: clamp(40px, 5.7vw, 82px); letter-spacing: -.075em; line-height: .9; }
.intro h2 em, .section-head h2 em, .about-intro h2 em, .about-extras h2 em { color: var(--orange); }
.intro__copy { max-width: 650px; margin-bottom: 30px; color: #4e4d4b; font-size: clamp(18px, 2vw, 24px); line-height: 1.42; }

.services { background: var(--ink); color: var(--white); }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 48px; margin-bottom: clamp(48px, 7vw, 88px); }
.section-head > div { max-width: 780px; }
.section-head > p { max-width: 350px; margin-bottom: 8px; color: var(--muted); font-size: 15px; line-height: 1.55; }
.section-head--light > p { color: rgba(255, 255, 255, .68); }
.section-head--light h2 em { color: var(--lime); }
.service-list { border-top: 1px solid var(--line-light); }
.service-row { display: grid; grid-template-columns: 90px minmax(220px, .8fr) 1.2fr 40px; align-items: center; gap: 25px; min-height: 137px; border-bottom: 1px solid var(--line-light); transition: padding .2s ease, color .2s ease, background .2s ease; }
.service-row > span { color: var(--lime); font-size: 12px; font-weight: 800; }
.service-row h3 { margin: 0; font-size: clamp(26px, 3vw, 42px); letter-spacing: -.06em; }
.service-row p { max-width: 370px; margin: 0; color: rgba(255, 255, 255, .64); font-size: 14px; }
.service-row i { justify-self: end; color: var(--lime); font-size: 24px; font-style: normal; transition: transform .2s ease; }
.service-row:hover { padding-inline: 18px; color: var(--lime); background: rgba(255, 255, 255, .05); }
.service-row:hover i { transform: translate(4px, -4px); }

.portfolio-preview { background: var(--paper); }
.project-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(17px, 2.5vw, 34px); }
.project-card { grid-column: span 4; }
.project-card--1 { grid-column: span 7; }
.project-card--2 { grid-column: span 5; padding-top: 13%; }
.project-card--3 { grid-column: span 6; }
.project-card__link { display: block; }
.project-card__visual { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: #d7d4cd; }
.project-card--1 .project-card__visual { aspect-ratio: 1.42 / 1; }
.project-card__visual img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s cubic-bezier(.2,.7,.2,1), filter .4s ease; }
.project-card__arrow { position: absolute; top: 16px; right: 16px; display: grid; width: 45px; height: 45px; place-items: center; background: var(--lime); color: var(--ink); font-size: 23px; opacity: 0; transform: translate(-8px, 8px); transition: opacity .2s ease, transform .2s ease; }
.project-card__link:hover .project-card__visual img { transform: scale(1.045); filter: saturate(1.1); }
.project-card__link:hover .project-card__arrow { opacity: 1; transform: none; }
.project-card__meta { display: flex; justify-content: space-between; gap: 15px; margin-top: 15px; color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.project-card h3 { margin: 8px 0 2px; font-size: clamp(23px, 2.5vw, 36px); letter-spacing: -.065em; line-height: 1; }
.project-card p { margin-bottom: 0; color: var(--muted); font-size: 13px; }

.live-callout { overflow: hidden; background: var(--orange); color: var(--ink); }
.live-callout__grid { display: grid; grid-template-columns: .95fr 1.05fr; align-items: stretch; min-height: 650px; }
.live-callout__visual { position: relative; min-height: 460px; overflow: hidden; background: var(--ink); color: var(--white); }
.live-callout__visual::before { position: absolute; inset: 0; background: repeating-linear-gradient(0deg, transparent 0, transparent 4px, rgba(255,255,255,.08) 4px, rgba(255,255,255,.08) 5px); content: ""; }
.live-callout__visual > p { position: absolute; z-index: 2; top: 50%; left: 50%; margin: 0; color: var(--white); font-family: var(--serif); font-size: clamp(54px, 8vw, 116px); letter-spacing: -.08em; transform: translate(-50%, -50%); }
.live-callout__signal { position: absolute; z-index: 2; top: 21px; left: 21px; display: flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 900; letter-spacing: .1em; }
.live-callout__signal span { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 5px rgba(255,98,74,.17); }
.live-callout__frame { position: absolute; z-index: 1; border: 1px solid rgba(255,255,255,.42); }
.frame--one { top: 16%; left: 12%; width: 60%; height: 48%; }
.frame--two { right: -8%; bottom: 10%; width: 57%; height: 43%; border-color: var(--lime); }
.live-callout__copy { padding: clamp(55px, 8vw, 115px) clamp(34px, 7vw, 100px); }
.live-callout__copy .eyebrow { color: var(--ink); }
.live-callout h2 { margin-bottom: 28px; font-size: clamp(41px, 5vw, 72px); }
.live-callout h2 em { color: var(--white); }
.live-callout__copy > p { max-width: 490px; font-size: 17px; line-height: 1.58; }
.feature-points { display: grid; gap: 9px; margin: 32px 0; padding: 0; list-style: none; font-size: 13px; font-weight: 750; }
.feature-points li { display: flex; align-items: center; gap: 10px; }
.feature-points li::before { width: 7px; height: 7px; background: var(--white); content: ""; }

.team { border-top: 1px solid var(--line); }
.team-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(17px, 2.5vw, 34px); }
.team-card { grid-column: span 4; }
.team-card img { width: 100%; aspect-ratio: .82; object-fit: cover; filter: grayscale(1) contrast(1.05); transition: filter .35s ease; }
.team-card:hover img { filter: none; }
.team-card > div { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; padding-top: 14px; }
.team-card h3 { margin: 0; font-size: 26px; letter-spacing: -.055em; }
.team-card p { margin: 0; color: var(--muted); font-size: 12px; }
.team-note { display: flex; grid-column: span 4; flex-direction: column; justify-content: end; min-height: 100%; padding: 32px; background: var(--lime); }
.team-note p { max-width: 300px; margin-bottom: 30px; font-family: var(--serif); font-size: clamp(25px, 2.5vw, 35px); letter-spacing: -.055em; line-height: 1.02; }

.contact-cta { padding-block: 0; background: var(--paper); }
.contact-cta__inner { display: grid; grid-template-columns: .7fr 1.1fr .85fr; gap: 36px; padding: clamp(56px, 8vw, 105px) 0; background: var(--ink); color: var(--white); }
.contact-cta__inner > :first-child { padding-left: clamp(28px, 5vw, 75px); }
.contact-cta h2 { margin: 0; font-size: clamp(40px, 4.5vw, 68px); }
.contact-cta h2 em { color: var(--lime); }
.contact-cta__inner > div { display: flex; flex-direction: column; align-items: start; justify-content: end; padding-right: clamp(28px, 5vw, 75px); }
.contact-cta__inner > div p { max-width: 330px; color: rgba(255,255,255,.7); font-size: 15px; }
.contact-cta__inner .button { margin-top: 22px; }
.contact-cta--compact .contact-cta__inner { padding-block: clamp(55px, 7vw, 90px); }

/* Portfolio and project pages */
.page-hero { padding: 164px 0 clamp(65px, 9vw, 120px); background: var(--ink); color: var(--white); }
.page-hero--portfolio { background: linear-gradient(135deg, #202020 0%, #111 58%, #383838 100%); }
.page-hero--services { background: var(--orange); color: var(--ink); }
.page-hero--about { background: #202020; }
.page-hero .shell > p:last-child { max-width: 520px; margin: 30px 0 0; color: rgba(255,255,255,.72); font-size: clamp(16px, 2vw, 20px); }
.page-hero--services .shell > p:last-child { color: rgba(17,17,17,.72); }
.page-hero h1 { max-width: 1050px; margin: 0; font-size: clamp(50px, 7vw, 102px); letter-spacing: -.08em; line-height: .86; }
.page-hero h1 em { color: var(--lime); }
.page-hero--services h1 em { color: var(--white); }
.portfolio-archive { min-height: 500px; }
.portfolio-filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 48px; }
.portfolio-filters a { padding: 9px 13px; border: 1px solid var(--line); font-size: 11px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; transition: background .2s ease, border .2s ease; }
.portfolio-filters a:hover, .portfolio-filters a.is-active { border-color: var(--ink); background: var(--ink); color: var(--white); }
.project-grid--archive .project-card { grid-column: span 4; padding-top: 0; }
.project-grid--archive .project-card:nth-child(5n + 1) { grid-column: span 8; }
.project-grid--archive .project-card:nth-child(5n + 1) .project-card__visual { aspect-ratio: 1.55 / 1; }
.navigation.pagination { margin-top: 60px; }
.nav-links { display: flex; gap: 8px; }
.nav-links a, .nav-links span { display: grid; width: 40px; height: 40px; place-items: center; border: 1px solid var(--line); font-size: 12px; font-weight: 800; }
.nav-links .current { background: var(--ink); color: var(--white); }

.project-hero { padding-top: 82px; background: var(--paper); }
.project-hero__inner { display: flex; align-items: end; justify-content: space-between; gap: 50px; padding-block: clamp(70px, 10vw, 135px) clamp(50px, 7vw, 88px); }
.project-hero h1 { max-width: 760px; margin: 0; font-size: clamp(48px, 7vw, 100px); letter-spacing: -.08em; line-height: .87; }
.project-hero__details { display: grid; width: min(100%, 290px); gap: 16px; }
.project-hero__details p { display: grid; gap: 3px; margin: 0; padding-bottom: 13px; border-bottom: 1px solid var(--line); font-size: 14px; }
.project-hero__details span { color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.project-hero__image { width: var(--shell); margin: auto; }
.project-hero__image img { width: 100%; max-height: 78vh; object-fit: cover; }
.project-body { display: grid; grid-template-columns: .62fr 1.38fr; gap: 50px; }
.project-body__lead { max-width: 340px; font-family: var(--serif); font-size: clamp(26px, 3vw, 39px); letter-spacing: -.06em; line-height: 1.03; }
.project-body__content { max-width: 700px; }
.project-video-link { margin-top: 30px; }
.project-next { background: var(--ink); color: var(--white); }
.project-next a { display: flex; align-items: end; justify-content: space-between; min-height: 220px; }
.project-next span { color: rgba(255,255,255,.64); font-size: 12px; font-weight: 700; }
.project-next strong { color: var(--lime); font-size: clamp(40px, 6vw, 85px); letter-spacing: -.07em; line-height: .9; }
.project-next i { font-style: normal; }

/* Services */
.service-detail { border-bottom: 1px solid var(--line); }
.service-detail__grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; }
.service-detail__number { margin-bottom: 20px; color: var(--orange); font-size: 12px; font-weight: 800; }
.service-detail h2 { margin: 0; font-size: clamp(46px, 6vw, 88px); letter-spacing: -.08em; line-height: .84; }
.service-detail h2 em { color: var(--orange); }
.service-detail__lead { max-width: 650px; margin-bottom: 33px; font-family: var(--serif); font-size: clamp(28px, 3.4vw, 44px); letter-spacing: -.06em; line-height: 1.02; }
.service-detail ul { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px 32px; margin: 0 0 30px; padding: 0; list-style: none; font-size: 14px; font-weight: 720; }
.service-detail li { display: flex; gap: 10px; align-items: baseline; }
.service-detail li::before { color: var(--orange); content: "✦"; }
.service-detail__grid > div:last-child > p:last-child { max-width: 640px; margin-bottom: 0; color: var(--muted); font-size: 16px; }
.service-detail--dark { border-color: transparent; background: var(--ink); color: var(--white); }
.service-detail--dark .service-detail__number, .service-detail--dark h2 em { color: var(--lime); }
.service-detail--dark li::before { color: var(--lime); }
.service-detail--dark .service-detail__grid > div:last-child > p:last-child { color: rgba(255,255,255,.64); }
.service-detail--accent { border-color: transparent; background: var(--lime); }
.service-detail--accent h2 em, .service-detail--accent .service-detail__number { color: var(--orange); }
.process { background: #dfdcd4; }
.process__list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin: 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.process__list li { min-height: 240px; padding: 23px 25px 20px 0; border-right: 1px solid var(--line); }
.process__list li:not(:first-child) { padding-left: 25px; }
.process__list li:last-child { border-right: 0; }
.process__list span { color: var(--orange); font-size: 11px; font-weight: 800; }
.process__list h3 { margin: 54px 0 8px; font-size: 26px; letter-spacing: -.055em; }
.process__list p { max-width: 220px; margin: 0; color: var(--muted); font-size: 13px; }

/* About */
.about-intro__grid, .about-extras__grid { display: grid; grid-template-columns: .64fr 1.36fr; gap: 45px; }
.about-intro h2 { max-width: 750px; }
.about-intro__grid > div > p { max-width: 670px; color: #4e4d4b; font-size: 18px; line-height: 1.6; }
.team--about { border-top: 0; padding-top: 0; }
.team-grid--about { grid-template-columns: repeat(2, 1fr); }
.team-grid--about .team-card { display: grid; grid-column: auto; grid-template-columns: 1fr 1fr; gap: 22px; }
.team-grid--about .team-card > div { display: block; padding: 0; }
.team-grid--about .team-card .eyebrow { margin-bottom: 17px; }
.team-grid--about .team-card h2 { margin-bottom: 14px; font-size: clamp(27px, 3vw, 42px); letter-spacing: -.065em; line-height: .96; }
.values { background: var(--ink); color: var(--white); }
.values__grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line-light); }
.values__grid article { min-height: 280px; padding: 26px 28px 24px 0; border-right: 1px solid var(--line-light); }
.values__grid article:not(:first-child) { padding-left: 28px; }
.values__grid article:last-child { border-right: 0; }
.values__grid span { color: var(--lime); font-size: 11px; font-weight: 800; }
.values__grid h3 { margin: 55px 0 10px; font-size: 30px; letter-spacing: -.06em; }
.values__grid p { max-width: 310px; margin: 0; color: rgba(255,255,255,.65); font-size: 14px; }
.about-extras { background: #dfdcd4; }
.about-extras h2 { max-width: 500px; margin: 0; font-size: clamp(39px, 5vw, 67px); }
.about-extras__list { border-top: 1px solid var(--line); }
.about-extras__list p { display: flex; align-items: center; justify-content: space-between; margin: 0; padding-block: 14px; border-bottom: 1px solid var(--line); font-size: clamp(20px, 2.3vw, 30px); font-weight: 700; letter-spacing: -.045em; }
.about-extras__list p::after { color: var(--orange); content: "✦"; font-size: 16px; }

/* Contact */
.contact-page { padding-top: clamp(130px, 17vw, 205px); }
.contact-page__grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(45px, 10vw, 150px); }
.contact-page h1 { margin-bottom: 28px; font-size: clamp(54px, 7vw, 100px); letter-spacing: -.085em; line-height: .84; }
.contact-page h1 em { color: var(--orange); }
.contact-page__intro > p:not(.eyebrow) { max-width: 430px; color: #4e4d4b; font-size: 18px; line-height: 1.55; }
.contact-page__direct { display: grid; gap: 14px; margin-top: 46px; }
.contact-page__direct p { display: grid; gap: 3px; margin: 0; font-size: 15px; }
.contact-page__direct span { color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.contact-page__direct a { text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.contact-page__form { padding: clamp(27px, 4.5vw, 54px); background: #dfdcd4; }
.contact-page__form-title { margin-bottom: 28px; font-family: var(--serif); font-size: clamp(31px, 3vw, 42px); letter-spacing: -.06em; line-height: 1; }
.contact-form { display: grid; gap: 18px; }
.contact-form p { margin: 0; }
.contact-form label { display: block; margin-bottom: 7px; font-size: 11px; font-weight: 800; letter-spacing: .075em; text-transform: uppercase; }
.contact-form label > span { color: var(--orange); }
.contact-form input:not([type="checkbox"]), .contact-form textarea, .contact-form select { width: 100%; padding: 12px 0; border: 0; border-bottom: 1px solid rgba(17,17,17,.42); border-radius: 0; outline: 0; background: transparent; color: var(--ink); font-size: 15px; }
.contact-form select { appearance: none; background: transparent url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%23111' stroke-width='1.4' d='m1 1 5 5 5-5'/%3E%3C/svg%3E") right center / 12px 8px no-repeat; }
.contact-form textarea { resize: vertical; }
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { border-color: var(--ink); box-shadow: 0 2px 0 var(--ink); }
.contact-form__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px 25px; }
.contact-form__consent { display: flex; margin-top: 5px !important; }
.contact-form__consent label { display: flex; align-items: start; gap: 10px; margin: 0; color: #4b4b48; font-size: 10px; font-weight: 600; letter-spacing: normal; line-height: 1.45; text-transform: none; }
.contact-form__consent input { flex: 0 0 auto; width: 15px; height: 15px; margin: 0; accent-color: var(--ink); }
.contact-form__consent a { text-decoration: underline; }
.contact-form__trap { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-notice { margin: 0 0 18px; padding: 12px 14px; font-size: 13px; line-height: 1.45; }
.form-notice--success { border-left: 4px solid #4c8a36; background: #e4f3dc; }
.form-notice--error { border-left: 4px solid var(--orange); background: #fff0ec; }
.contact-reassurance { padding-block: 28px; background: var(--ink); color: var(--white); }
.contact-reassurance .shell { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.contact-reassurance p { display: flex; align-items: center; gap: 12px; margin: 0; font-size: 13px; font-weight: 700; }
.contact-reassurance span { color: var(--lime); }

/* Footer, basic prose and WordPress blocks */
.site-footer { padding-top: clamp(65px, 9vw, 110px); background: #080808; color: var(--white); }
.footer__top { display: flex; justify-content: space-between; gap: 50px; padding-bottom: clamp(57px, 8vw, 100px); }
.footer__top h2 { max-width: 650px; margin: 0 0 28px; font-size: clamp(43px, 5.2vw, 76px); letter-spacing: -.075em; line-height: .9; }
.footer__contact { display: grid; align-content: end; justify-items: start; gap: 5px; min-width: 270px; }
.footer__contact p { margin: 0 0 13px; color: rgba(255,255,255,.58); font-size: 13px; }
.footer__contact a { font-size: 14px; font-weight: 700; text-decoration: underline; text-decoration-color: rgba(255,255,255,.33); text-underline-offset: 4px; }
.footer__bottom { display: flex; justify-content: space-between; gap: 25px; padding-block: 20px; border-top: 1px solid var(--line-light); color: rgba(255,255,255,.55); font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.footer__bottom nav { display: flex; gap: 20px; }
.footer__bottom a:hover { color: var(--lime); }

.content-page { padding-top: 152px; min-height: 70vh; }
.entry__header { max-width: 910px; margin-bottom: 55px; }
.entry__header h1, .not-found h1 { margin: 0; font-size: clamp(52px, 7vw, 100px); letter-spacing: -.085em; line-height: .86; }
.prose { max-width: 750px; font-size: 18px; line-height: 1.65; }
.prose > * + * { margin-top: 1.35em; }
.prose h2, .prose h3 { margin-top: 1.65em; letter-spacing: -.055em; line-height: 1; }
.prose h2 { font-size: clamp(30px, 4vw, 48px); }
.prose h3 { font-size: 26px; }
.prose a { text-decoration: underline; text-decoration-color: var(--orange); text-decoration-thickness: 2px; text-underline-offset: 3px; }
.prose img { height: auto; }
.prose .wp-block-image, .prose .wp-block-gallery { margin-block: 2em; }
.prose .wp-block-gallery { gap: 12px; }
.prose .wp-block-gallery img { cursor: zoom-in; }
.prose blockquote { margin-inline: 0; padding-left: 25px; border-left: 3px solid var(--orange); font-family: var(--serif); font-size: 28px; line-height: 1.2; }
.not-found { max-width: 700px; }
.not-found .eyebrow { color: var(--orange); }
.not-found p:not(.eyebrow) { max-width: 420px; margin: 28px 0; color: var(--muted); }

.image-lightbox { width: min(1100px, 94vw); max-width: none; max-height: 92vh; padding: 0; border: 0; background: transparent; }
.image-lightbox::backdrop { background: rgba(0,0,0,.91); }
.image-lightbox img { max-width: 100%; max-height: 88vh; margin: auto; }
.image-lightbox__close { position: fixed; top: 20px; right: 20px; display: grid; width: 42px; height: 42px; place-items: center; border: 0; background: var(--white); color: var(--ink); font-size: 27px; line-height: 1; }

/* Responsive */
@media (max-width: 900px) {
	:root { --shell: min(100% - 40px, 1200px); }
	.primary-nav, .header__cta { display: none; }
	.menu-toggle { display: flex; }
	.header__inner { min-height: 72px; }
	.hero { min-height: min(760px, 100svh); }
	.hero__content { padding-top: 142px; }
	.hero__scroll { display: none; }
	.intro__grid, .about-intro__grid, .about-extras__grid { grid-template-columns: 1fr; gap: 24px; }
	.section-head { align-items: start; flex-direction: column; gap: 15px; }
	.section-head > p { margin-bottom: 0; }
	.service-row { grid-template-columns: 55px 1fr 30px; min-height: 120px; gap: 15px; }
	.service-row p { display: none; }
	.project-card--1 { grid-column: span 7; }
	.project-card--2 { grid-column: span 5; }
	.live-callout__grid { grid-template-columns: 1fr; }
	.live-callout__visual { min-height: 390px; }
	.live-callout__copy { padding: 65px 42px 75px; }
	.team-card { grid-column: span 6; }
	.team-note { grid-column: span 12; min-height: 240px; }
	.contact-cta__inner { grid-template-columns: 1fr; gap: 20px; padding: 58px 35px; }
	.contact-cta__inner > :first-child, .contact-cta__inner > div { padding: 0; }
	.contact-cta__inner > div { align-items: start; }
	.project-grid--archive .project-card, .project-grid--archive .project-card:nth-child(5n + 1) { grid-column: span 6; }
	.project-grid--archive .project-card:nth-child(5n + 1) .project-card__visual { aspect-ratio: 4 / 3; }
	.project-hero__inner { align-items: start; flex-direction: column; gap: 35px; }
	.project-body { grid-template-columns: 1fr; gap: 15px; }
	.service-detail__grid { grid-template-columns: 1fr; gap: 35px; }
	.service-detail ul { grid-template-columns: 1fr; }
	.process__list { grid-template-columns: repeat(2, 1fr); }
	.process__list li:nth-child(2) { border-right: 0; }
	.process__list li:nth-child(n+3) { border-top: 1px solid var(--line); }
	.team-grid--about { gap: 24px; }
	.team-grid--about .team-card { grid-template-columns: 1fr; }
	.contact-page__grid { grid-template-columns: 1fr; gap: 56px; }
}

@media (max-width: 560px) {
	:root { --shell: calc(100% - 32px); }
	.section-space { padding-block: 72px; }
	.brand img, .brand .custom-logo { width: 80px; height: 43px; }
	.hero { min-height: 700px; }
	.hero__shade { background: linear-gradient(90deg, rgba(0,0,0,.66), rgba(0,0,0,.28)), linear-gradient(0deg, rgba(0,0,0,.76), transparent 52%); }
	.hero h1 { margin-bottom: 32px; font-size: clamp(46px, 13vw, 68px); }
	.hero__bottom { align-items: start; flex-direction: column; gap: 24px; }
	.hero__bottom p { font-size: 15px; }
	.ticker { padding-block: 13px; }
	.ticker span { margin-right: 25px; font-size: 11px; }
	.ticker b { margin-left: 25px; }
	.intro h2, .section-head h2, .live-callout h2, .contact-cta h2, .about-intro h2, .about-extras h2 { font-size: 42px; }
	.intro__copy { font-size: 18px; }
	.service-row { grid-template-columns: 35px 1fr 25px; min-height: 105px; gap: 12px; }
	.service-row h3 { font-size: 28px; }
	.project-grid { grid-template-columns: 1fr; gap: 38px; }
	.project-card, .project-card--1, .project-card--2, .project-card--3 { grid-column: auto; padding-top: 0; }
	.project-card--1 .project-card__visual { aspect-ratio: 4 / 3; }
	.project-card__arrow { display: grid; opacity: 1; transform: none; }
	.live-callout__visual { min-height: 300px; }
	.live-callout__copy { padding: 55px 25px 60px; }
	.live-callout__copy > p { font-size: 15px; }
	.team-grid { grid-template-columns: 1fr; }
	.team-card, .team-note { grid-column: auto; }
	.team-card img { aspect-ratio: 1.1; }
	.team-card > div { display: block; }
	.team-card p { margin-top: 4px; }
	.team-note { min-height: 210px; padding: 25px; }
	.contact-cta__inner { margin-inline: 0; padding: 55px 24px; }
	.page-hero { padding-top: 135px; }
	.page-hero h1 { font-size: clamp(44px, 12vw, 63px); }
	.portfolio-filters { margin-bottom: 35px; }
	.project-grid--archive .project-card, .project-grid--archive .project-card:nth-child(5n + 1) { grid-column: auto; }
	.project-hero { padding-top: 72px; }
	.project-hero__inner { padding-block: 70px 45px; }
	.project-hero h1 { font-size: clamp(44px, 12vw, 64px); }
	.project-next a { min-height: 160px; align-items: start; flex-direction: column; justify-content: center; gap: 18px; }
	.service-detail__grid { gap: 25px; }
	.service-detail h2 { font-size: 52px; }
	.service-detail__lead { font-size: 29px; }
	.process__list { grid-template-columns: 1fr; }
	.process__list li, .process__list li:not(:first-child) { min-height: 0; padding: 22px 0; border-right: 0; border-bottom: 1px solid var(--line); }
	.process__list li:nth-child(2) { border-top: 0; }
	.process__list h3 { margin-top: 27px; }
	.team-grid--about { grid-template-columns: 1fr; }
	.team-grid--about .team-card { display: block; }
	.team-grid--about .team-card img { margin-bottom: 17px; }
	.values__grid { grid-template-columns: 1fr; }
	.values__grid article, .values__grid article:not(:first-child) { min-height: 0; padding: 25px 0; border-right: 0; border-bottom: 1px solid var(--line-light); }
	.values__grid h3 { margin-top: 30px; }
	.contact-page { padding-top: 125px; }
	.contact-page__form { margin-inline: -16px; padding: 25px 16px; }
	.contact-form__grid { grid-template-columns: 1fr; gap: 18px; }
	.contact-reassurance .shell { grid-template-columns: 1fr; gap: 15px; }
	.footer__top { display: block; }
	.footer__contact { margin-top: 45px; }
	.footer__bottom { align-items: start; flex-direction: column; }
	.content-page { padding-top: 130px; }
	.prose { font-size: 17px; }
}

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