/* Smart Tech Solutions & Construction. v2: dark industrial. Plain CSS, mobile-first, dark theme locked. */

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("../fonts/manrope-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("../fonts/manrope-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Barlow Condensed";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/barlow-condensed-700-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Barlow Condensed";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/barlow-condensed-700-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  color-scheme: dark;
  --bg: #0E0F11;
  --raised: #16181B;
  --line: #1F2226;
  --line-strong: #3A3F46;
  --text: #F2F2F0;
  --muted: #A6ABB3;          /* 8.1:1 on --bg, 7.6:1 on --raised */
  --red: #D7202F;            /* white on red 5.0:1 */
  --red-hover: #B8172A;
  --timber: #C9A06A;
  --font: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --display: "Barlow Condensed", "Manrope", system-ui, sans-serif;
  --nav-h: 72px;
  --ease: 220ms cubic-bezier(0.16, 1, 0.3, 1);
  --container: 1280px;
  --gutter: 20px;
  --radius: 2px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 12px); -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  overflow-x: clip;
}

img { display: block; max-width: 100%; height: auto; }
.sprite { display: none; }
figure { margin: 0; }
h1, h2, h3, p, ul, ol, dl, dd { margin: 0; }
ul, ol { padding: 0; list-style: none; }
a { color: var(--text); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--timber); }

/* Every grid child may shrink: no fixed widths, no horizontal scroll at 375px */
.hero-grid > *, .about-grid > *, .contact-grid > *, .footer-grid > *, .work-grid > *,
.field-row > *, .service-grid > *, .trust-band > *, .values > *,
.process-track > *, .process-step > *, .marquee-track > *, .about-timeline > * { min-width: 0; }

/* Display type: heavy, condensed, uppercase for section heads */
h1, h2, .trust-band dd, .values .num {
  font-family: var(--display);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
h1 { font-size: clamp(2.75rem, 1.25rem + 4.6vw, 4.5rem); text-wrap: balance; }
h2 { font-size: clamp(2.25rem, 1.5rem + 3vw, 4rem); }
h3 { font-size: 1.125rem; font-weight: 700; line-height: 1.3; letter-spacing: -0.01em; }
.hl { color: var(--timber); }
p { color: var(--muted); }
main p { max-width: 62ch; }

/* Editorial cue: thin 24px timber rule before every section heading */
section h2::before {
  content: ""; display: inline-block; width: 24px; height: 2px;
  background: var(--timber); margin-right: 12px; vertical-align: middle;
}

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.icon { width: 1.25em; height: 1.25em; fill: none; stroke: currentColor; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; flex: none; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

.skip { position: absolute; left: var(--gutter); top: -100px; z-index: 100; padding: 10px 14px; background: var(--red); color: #fff; font-weight: 700; border-radius: var(--radius); }
.skip:focus { top: 8px; }

:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 48px; padding: 0 22px;
  font: inherit; font-weight: 700; font-size: 0.9375rem; letter-spacing: 0.01em; white-space: nowrap;
  border: 1px solid transparent; border-radius: var(--radius); text-decoration: none; cursor: pointer;
  transition: background-color var(--ease), border-color var(--ease), color var(--ease), transform var(--ease);
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--red); color: #fff; border-color: var(--red); }
.btn-primary:hover { background: var(--red-hover); border-color: var(--red-hover); color: #fff; }
.btn-outline { background: rgba(14, 15, 17, 0.35); color: #fff; border-color: rgba(242, 242, 240, 0.7); }
.btn-outline:hover { background: var(--text); color: var(--bg); border-color: var(--text); }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: linear-gradient(rgba(14, 15, 17, 0.72), rgba(14, 15, 17, 0));
  transition: background-color 400ms ease, box-shadow 400ms ease;
}
.site-header.is-scrolled {
  background: rgba(14, 15, 17, 0.82);
  backdrop-filter: blur(14px) saturate(140%); -webkit-backdrop-filter: blur(14px) saturate(140%);
  box-shadow: inset 0 -1px 0 var(--line);
}
.site-header.is-scrolled .brand-text span { opacity: 0; height: 0; }
.brand-text span { transition: opacity 300ms ease; }
.nav-links a { position: relative; }
.nav-links a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 2px; height: 2px; background: var(--red); transition: right 250ms ease; }
.nav-links a:hover::after { right: 0; }
.scroll-progress { position: absolute; left: 0; bottom: 0; height: 2px; width: 100%; background: var(--red); transform-origin: left; transform: scaleX(0); pointer-events: none; }
@supports (animation-timeline: scroll()) {
  .scroll-progress { animation: progress linear both; animation-timeline: scroll(root); }
  @keyframes progress { from { transform: scaleX(0); } to { transform: scaleX(1); } }
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: var(--nav-h); }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--text); min-width: 0; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text strong { font-weight: 800; font-size: 1.0625rem; letter-spacing: -0.01em; }
.brand-text span { font-size: 0.6875rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; }
.nav-toggle { display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px; margin-right: -8px; background: none; border: 0; color: var(--text); cursor: pointer; border-radius: var(--radius); }
.nav-toggle .icon { width: 28px; height: 28px; }
.nav-toggle[aria-expanded="true"] .icon-menu, .nav-toggle:not([aria-expanded="true"]) .icon-close { display: none; }
.nav-menu { display: none; position: absolute; left: 0; right: 0; top: 100%; padding: 12px var(--gutter) 24px; background: var(--bg); border-bottom: 1px solid var(--line); }
.nav-menu.is-open { display: block; }
.nav-links a { display: block; padding: 12px 0; font-weight: 700; font-size: 1.125rem; text-decoration: none; border-bottom: 1px solid var(--line); }
.nav-links a:hover { color: var(--timber); }
.nav-cta { width: 100%; margin-top: 16px; }

/* Hero: full-bleed HQ photo, copy bottom-left */
.hero { position: relative; display: grid; align-items: end; min-height: calc(100dvh - var(--nav-h)); overflow: hidden; isolation: isolate; }
.hero-bg, .hero-bg img { position: absolute; inset: 0; width: 100%; height: 100%; z-index: -2; }
.hero-bg img { object-fit: cover; object-position: 50% 45%; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(to top, rgba(14, 15, 17, 0.97) 0%, rgba(14, 15, 17, 0.78) 35%, rgba(14, 15, 17, 0.25) 70%, rgba(14, 15, 17, 0.35) 100%),
    linear-gradient(to right, rgba(14, 15, 17, 0.85) 0%, rgba(14, 15, 17, 0.45) 50%, rgba(14, 15, 17, 0.1) 100%);
}
.hero-grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); padding-top: 96px; padding-bottom: 56px; }
.hero-copy { grid-column: 1 / -1; }
.hero h1 { color: var(--text); }
/* Split-text hook for the motion worker: neutral by default, no animation here */
.hero h1.split .w { display: inline-block; overflow: hidden; vertical-align: top; padding-bottom: 0.08em; }
.hero h1.split .w > span { display: inline-block; }
.lede { margin-top: 20px; font-size: 1.125rem; line-height: 1.55; max-width: 46ch; color: #D5D8DC; }
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }

/* Entry reveal on hero text only */
.js .hero-copy > * { opacity: 0; transform: translateY(18px); animation: rise 700ms cubic-bezier(0.16, 1, 0.3, 1) forwards; }
.js .hero-copy > :nth-child(2) { animation-delay: 120ms; }
.js .hero-copy > :nth-child(3) { animation-delay: 240ms; }
@keyframes rise { to { opacity: 1; transform: none; } }

/* Sections */
section { padding-block: 72px; }
.section-head { margin-bottom: 32px; }
.section-head p { margin-top: 12px; font-size: 1.0625rem; }

/* Services: steel-panel grid, 1px gaps painted with the border colour */
.services { padding-bottom: 0; }
.services h2 { margin-bottom: 32px; }
.service-grid {
  display: grid; grid-template-columns: minmax(0, 1fr); gap: 1px;
  background: var(--line); border-block: 1px solid var(--line);
}
.service-grid li {
  position: relative; display: flex; flex-direction: column; gap: 14px;
  padding: 32px 28px 28px; background: var(--raised);
  border: 1px solid transparent; transition: border-color var(--ease), transform var(--ease);
}
.service-grid li:hover { border-color: var(--red); transform: translateY(-2px); z-index: 1; }
.service-grid .icon { width: 40px; height: 40px; stroke-width: 1.5; color: var(--text); transition: color var(--ease); }
.service-grid li::after {
  content: ""; position: absolute; top: -1px; left: -1px; right: -1px; height: 2px;
  background: var(--red); transform: scaleX(0); transform-origin: left; transition: transform 300ms ease;
}
.service-grid li:hover::after { transform: scaleX(1); }
.service-grid li:hover .icon { color: var(--red); }
.service-grid p { font-size: 0.9375rem; }

/* Trust band: oversized numerals, timber rules */
.trust { padding-block: 48px; }
.trust-band { display: grid; grid-template-columns: minmax(0, 1fr); gap: 0; }
.trust-band > div { padding: 20px 0; border-top: 1px solid var(--timber); }
.trust-band > div:first-child { border-top: 0; }
.trust-band dd { font-size: clamp(3rem, 6vw, 5.5rem); color: var(--text); }
.trust-band dd a { color: var(--text); text-decoration-color: var(--timber); text-decoration-thickness: 2px; text-transform: none; }
.trust-band .code { font-size: clamp(2.25rem, 1.25rem + 2.4vw, 3.5rem); overflow-wrap: anywhere; }
.trust-band dd a:hover { color: var(--timber); }
.trust-band dt { margin-top: 6px; color: var(--muted); font-size: 0.9375rem; }

/* About: photo bleeds to the edge, values as 2x2 with red numerals */
.about { padding-block: 0; background: var(--raised); border-block: 1px solid var(--line); }
.about-grid { display: grid; grid-template-columns: minmax(0, 1fr); }
.about-side { display: grid; gap: 28px; align-content: start; padding: 56px var(--gutter) 0; }
.about-media { overflow: hidden; }
.about-media img { width: 100%; height: auto; aspect-ratio: 1221 / 640; object-fit: cover; display: block; }
.about-copy { padding: 56px var(--gutter); }
.about-copy p { margin-top: 18px; max-width: 58ch; }
.about-copy h2 + p { font-size: 1.0625rem; color: #D5D8DC; }
.values { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; margin-top: 36px; background: var(--line); border: 1px solid var(--line); }
.values li { display: flex; flex-direction: column; gap: 8px; padding: 20px; background: var(--bg); font-weight: 700; font-size: 1.125rem; letter-spacing: -0.01em; }
.values .num { font-size: 2rem; color: var(--red); line-height: 1; }
.hiring { font-size: 0.9375rem; }
.hiring a { color: var(--timber); }
.hiring a:hover { color: var(--text); }
/* About timeline row below the values grid */
.about-timeline { margin-top: 24px; display: grid; grid-template-columns: minmax(0, 1fr); gap: 16px; }
.about-timeline figure { background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.about-timeline img { width: 100%; aspect-ratio: 2 / 1; object-fit: cover; }
.about-timeline figcaption { padding: 12px 16px; font-size: 0.875rem; color: var(--muted); }

/* Process: pure-CSS sticky stack, panels pin under the header as you scroll.
   NOTE: no ancestor of .process-step may use overflow hidden, or sticky breaks. */
.process { padding-block: 72px; }
.process .section-head { margin-bottom: 32px; }
.process-track { display: grid; grid-template-columns: minmax(0, 1fr); gap: 24px; }
.process-step {
  position: sticky; top: var(--nav-h);
  display: grid; grid-template-columns: minmax(0, 1fr);
  background: var(--raised); border: 1px solid var(--line); border-radius: var(--radius);
}
.process-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; }
.process-copy { padding: 32px 28px; }
.process-copy .step-num {
  display: block; font-family: var(--display); font-weight: 700;
  font-size: clamp(3.5rem, 8vw, 6rem); line-height: 1; color: var(--timber);
}
.process-copy h3 { margin-top: 12px; font-size: 1.5rem; }
.process-copy p { margin-top: 12px; }

/* Marquee: the only marquee on the page */
.marquee { overflow: hidden; border-block: 1px solid var(--line); padding-block: 18px; background: var(--bg); }
.marquee-track { display: flex; align-items: center; width: max-content; animation: marquee 40s linear infinite; }
.marquee-track > span { margin: 0 14px; white-space: nowrap; }
.marquee-track > span:not(.sq) {
  font-family: var(--display); font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.06em; font-size: 1.25rem; color: var(--muted);
}
.marquee-track .sq { width: 8px; height: 8px; padding: 0; background: var(--timber); flex: none; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* Projects: 14-figure asymmetric gallery, dense-packed */
.work-grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: 20px; grid-auto-flow: dense; }
.work-grid figure { display: flex; flex-direction: column; background: var(--raised); border: 1px solid var(--line); }
.work-grid img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; }
.work-item--portrait img { aspect-ratio: 3 / 4; }
.work-item--wide img { aspect-ratio: 16 / 9; }
.work-grid figcaption { padding: 18px 20px; font-size: 0.9375rem; color: var(--muted); border-top: 1px solid var(--line); }
.work-note { margin-top: 24px; font-size: 0.9375rem; }

/* Contact */
.contact { background: var(--raised); border-top: 1px solid var(--line); }
.contact-grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: 48px; }
.contact-form-col > p { margin-top: 12px; max-width: 52ch; }
.quote-form { margin-top: 32px; display: grid; gap: 20px; }
.field { display: grid; gap: 8px; }
.field-row { display: grid; grid-template-columns: minmax(0, 1fr); gap: 20px; }
label { font-weight: 700; font-size: 0.9375rem; }
.req { color: var(--red); }
input, select, textarea {
  width: 100%; min-height: 48px; padding: 12px 14px;
  font: inherit; color: var(--text); background: var(--bg);
  border: 1px solid var(--line-strong); border-radius: var(--radius);
  transition: border-color var(--ease), box-shadow var(--ease);
}
select { appearance: none; -webkit-appearance: none; padding-right: 40px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23A6ABB3' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6l6 -6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; }
textarea { resize: vertical; min-height: 140px; }
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--red); box-shadow: 0 0 0 3px rgba(215, 32, 47, 0.35); }
.error { display: none; font-size: 0.875rem; color: #FF7A85; }
.was-submitted :invalid, :user-invalid { border-color: var(--red); }
.was-submitted :invalid ~ .error, :user-invalid ~ .error { display: block; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-note { font-size: 0.875rem; }
.form-status { min-height: 1.5em; font-size: 0.9375rem; }
.form-status.ok { color: var(--timber); }
.form-status.err { color: #FF7A85; }

.info-list { display: grid; gap: 0; border-top: 1px solid var(--line); }
.info-list li { display: flex; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--line); color: var(--text); }
.info-list .icon { width: 24px; height: 24px; margin-top: 2px; color: var(--timber); }
.info-label { display: block; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); margin-bottom: 4px; }
.info-list a { text-decoration-color: var(--line-strong); }
.info-list a:hover { color: var(--timber); }

/* Footer */
.site-footer { padding: 40px 0 96px; border-top: 1px solid var(--line); font-size: 0.9375rem; overflow: hidden; }
/* Oversized decorative wordmark, allowed to bleed inside the clipped footer */
.footer-mark {
  max-width: 100%; overflow: hidden; white-space: nowrap; user-select: none;
  font-family: var(--display); font-weight: 700;
  font-size: clamp(4rem, 18vw, 16rem); line-height: 0.85; letter-spacing: -0.02em;
  color: #16181B; margin-bottom: 32px; padding-inline: var(--gutter);
}
.footer-mark span { display: inline-block; }
.footer-mark .red { color: var(--red); opacity: 0.8; }
.footer-grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: 28px; }
.footer-brand { display: flex; gap: 14px; align-items: flex-start; }
.footer-brand p { max-width: 42ch; }
.footer-links { display: flex; flex-wrap: wrap; gap: 8px 20px; }
.footer-links a { text-decoration: none; font-weight: 700; }
.footer-links a:hover { color: var(--timber); }
.footer-meta p { color: var(--muted); }
.footer-meta a { color: var(--text); }

.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 40;
  display: inline-flex; align-items: center; justify-content: center; width: 56px; height: 56px;
  background: var(--red); color: #fff; border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5); transition: background-color var(--ease), transform var(--ease);
}
.wa-float:hover { background: var(--red-hover); color: #fff; transform: translateY(-2px); }
.wa-float .icon { width: 28px; height: 28px; }

/* Scroll reveal */
.js .reveal { opacity: 0; transform: translateY(20px); transition: opacity 600ms cubic-bezier(0.16, 1, 0.3, 1), transform 600ms cubic-bezier(0.16, 1, 0.3, 1); }
.js .reveal.is-visible { opacity: 1; transform: none; }

/* Tablet */
@media (max-width: 479px) {
  .work-item figcaption { font-size: 0.875rem; }
  .trust-band dd { font-size: 2.75rem; }
  .process-step figure img { aspect-ratio: 4 / 3; }
  .about-side { padding-top: 40px; }
  .section-head p, .about-copy p { font-size: 1rem; }
}
@media (min-width: 480px) {
  .work-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
}
@media (min-width: 640px) {
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .work-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .trust-band { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .trust-band > div { padding: 12px 24px; border-top: 0; border-left: 1px solid var(--timber); }
  .trust-band > div:nth-child(odd) { border-left: 0; padding-left: 0; }
  .trust-band > div:nth-child(n + 3) { margin-top: 32px; }
  .field-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-meta { grid-column: 1 / -1; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px 20px; }
}

/* Desktop */
@media (min-width: 900px) {
  :root { --gutter: 32px; }
  section { padding-block: 104px; }
  .nav-toggle { display: none; }
  .nav-menu { display: flex; position: static; align-items: center; gap: 28px; padding: 0; background: none; border: 0; }
  .nav-links { display: flex; gap: 28px; }
  .nav-links a { padding: 8px 0; font-size: 0.9375rem; border: 0; }
  .nav-cta { width: auto; margin: 0; min-height: 44px; }

  .hero-grid { padding-top: 96px; padding-bottom: 80px; }
  .hero-copy { grid-column: 1 / span 9; }
  .lede { font-size: 1.25rem; }

  .services h2 { margin-bottom: 48px; }
  .service-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }

  .trust { padding-block: 88px; }
  .trust-band { grid-template-columns: minmax(0, 2fr) minmax(0, 3fr) minmax(0, 4fr) minmax(0, 3fr); align-items: end; }
  .trust-band > div, .trust-band > div:nth-child(odd) { padding: 8px 32px; border-left: 1px solid var(--timber); margin-top: 0; }
  .trust-band > div:first-child { border-left: 0; padding-left: 0; }

  .about-grid { grid-template-columns: minmax(0, 6fr) minmax(0, 6fr); align-items: start; }
  .about-side { padding: 104px 0 104px clamp(32px, 6vw, 96px); position: sticky; top: calc(var(--nav-h) + 24px); }
  .about-copy { padding: 104px clamp(32px, 6vw, 96px); max-width: calc(var(--container) * 7 / 12); }

  .process-step { grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: stretch; min-height: 70vh; }
  .process-step:nth-child(even) .process-media { order: 2; }
  .process-media { min-height: 100%; }
  .process-media img { height: 100%; min-height: 320px; }
  .process-copy { align-self: center; padding: 56px clamp(28px, 4vw, 64px); }

  .work-grid { grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 24px; grid-auto-flow: dense; }
  .work-item--portrait { grid-column: span 4; grid-row: span 2; }
  .work-item--landscape { grid-column: span 4; }
  .work-item--wide { grid-column: span 8; }

  .contact-grid { grid-template-columns: minmax(0, 7fr) minmax(0, 4fr); gap: 80px; }
  .contact-info { padding-top: 12px; }

  .footer-grid { grid-template-columns: minmax(0, 5fr) minmax(0, 4fr) minmax(0, 5fr); align-items: start; }
  .footer-meta { grid-column: auto; display: block; text-align: right; }
  .site-footer { padding-bottom: 48px; }
}

@media (min-width: 1200px) {
  .hero h1 { font-size: 4.25rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .js .hero-copy > *, .js .reveal { opacity: 1; transform: none; }
}
