@font-face {
  font-family: "Geist";
  src: url("assets/vendor/geist-latin.woff2") format("woff2");
  font-weight: 100 900;
  font-display: swap;
  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: "Geist";
  src: url("assets/vendor/geist-latin-ext.woff2") format("woff2");
  font-weight: 100 900;
  font-display: swap;
  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;
}

:root {
  --ink: #171916;
  --ink-2: #242620;
  --paper: #f2f0e9;
  --paper-2: #e7e4da;
  --white: #fcfbf7;
  --muted: #5b5e57;
  --line: rgba(23, 25, 22, .17);
  --line-light: rgba(255, 255, 255, .18);
  --accent: #ef5b2a;
  --accent-dark: #c83f14;
  --focus: #ffb398;
  --shell: min(100% - 48px, 1420px);
  --section: clamp(96px, 10vw, 176px);
  --ease: cubic-bezier(.2, .75, .2, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
  background: var(--ink);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Geist", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

body.menu-open { overflow: hidden; }

button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; }
img { display: block; max-width: 100%; }
figure, p, h1, h2, h3, dl, dd { margin: 0; }

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

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  transform: translateY(-150%);
  background: var(--white);
  color: var(--ink);
  padding: 12px 18px;
  text-decoration: none;
  font-weight: 700;
  transition: transform .2s ease;
}

.skip-link:focus { transform: translateY(0); }
.shell { width: var(--shell); margin-inline: auto; }
.section { padding-block: var(--section); }

.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 120;
  height: 3px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left center;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  color: var(--white);
  border-bottom: 1px solid transparent;
  transition: background .35s ease, border-color .35s ease;
}

.site-header.is-scrolled {
  background: rgba(23, 25, 22, .96);
  border-color: var(--line-light);
}

.header-inner {
  min-height: 78px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 40px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-height: 44px;
  width: max-content;
  text-decoration: none;
}

.brand-mark {
  position: relative;
  width: 44px;
  height: 32px;
  display: block;
}

.brand-mark i {
  position: absolute;
  width: 25px;
  height: 4px;
  background: var(--accent);
  transform-origin: left center;
}

.brand-mark i:first-child { left: 2px; top: 21px; transform: rotate(-28deg); }
.brand-mark i:last-child { left: 23px; top: 9px; transform: rotate(28deg); }

.brand-words { display: grid; line-height: .85; letter-spacing: -.04em; }
.brand-words b { font-size: 16px; font-weight: 800; }
.brand-words b:last-child { color: var(--accent); }

.desktop-nav { justify-self: center; display: flex; gap: 34px; }
.desktop-nav a,
.phone-link {
  font-size: 14px;
  font-weight: 570;
  text-decoration: none;
  transition: color .2s ease;
}

.desktop-nav a:hover,
.phone-link:hover { color: var(--accent); }
.header-actions { display: flex; align-items: center; gap: 18px; }

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  border: 1px solid var(--accent);
  border-radius: 2px;
  background: var(--accent);
  color: #171916;
  padding: 13px 18px;
  font-size: 14px;
  font-weight: 760;
  text-decoration: none;
  cursor: pointer;
  transition: background .25s ease, color .25s ease, transform .25s var(--ease), border-color .25s ease;
}

.button:hover { background: var(--white); border-color: var(--white); transform: translateY(-2px); }
.button-small { min-height: 44px; gap: 10px; padding-inline: 15px; }
.button-dark { background: var(--ink); border-color: var(--ink); color: var(--white); }
.button-dark:hover { background: var(--accent); border-color: var(--accent); color: var(--ink); }
.button-light { background: var(--white); border-color: var(--white); color: var(--ink); }
.button-light:hover { background: var(--accent); border-color: var(--accent); }

.text-link {
  min-height: 44px;
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  font-size: 14px;
  font-weight: 680;
  text-underline-offset: 5px;
}

.text-link span { transition: transform .25s var(--ease); }
.text-link:hover span { transform: translate(3px, -3px); }

.menu-button {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 26px;
  height: 2px;
  margin: 6px auto;
  background: currentColor;
  transition: transform .3s var(--ease);
}

.menu-button[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
.menu-button[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  z-index: 90;
  inset: 0;
  display: none;
  flex-direction: column;
  justify-content: center;
  background: var(--ink);
  color: var(--white);
  padding: 96px 24px 42px;
  visibility: hidden;
  opacity: 0;
  transition: opacity .24s ease, visibility .24s ease;
}

.mobile-menu.is-open { visibility: visible; opacity: 1; }

.mobile-menu nav { display: grid; }
.mobile-menu nav a {
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: baseline;
  min-height: 68px;
  border-bottom: 1px solid var(--line-light);
  font-size: clamp(34px, 10vw, 58px);
  font-weight: 690;
  letter-spacing: -.05em;
  text-decoration: none;
  transform: translateY(16px);
  opacity: 0;
  transition: transform .38s var(--ease), opacity .3s ease;
}
.mobile-menu.is-open nav a { transform: translateY(0); opacity: 1; }
.mobile-menu.is-open nav a:nth-child(2) { transition-delay: .035s; }
.mobile-menu.is-open nav a:nth-child(3) { transition-delay: .07s; }
.mobile-menu.is-open nav a:nth-child(4) { transition-delay: .105s; }
.mobile-menu nav span { font-size: 11px; letter-spacing: .08em; color: var(--accent); }
.mobile-menu-contact { display: grid; gap: 7px; margin-top: 40px; }
.mobile-menu-contact a { min-height: 44px; display: flex; align-items: center; text-decoration: none; }

.hero {
  position: relative;
  min-height: 760px;
  padding: 130px 0 70px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 90px 90px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(500px, 1.05fr);
  gap: clamp(36px, 7vw, 112px);
  align-items: center;
}

.eyebrow, .section-label {
  font-size: 11px;
  line-height: 1.2;
  font-weight: 760;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.eyebrow { color: var(--accent); margin-bottom: 28px; overflow: hidden; }
.eyebrow span { display: inline-block; }
.hero h1 {
  max-width: 780px;
  font-size: clamp(72px, 6.7vw, 128px);
  line-height: .84;
  letter-spacing: -.075em;
  font-weight: 680;
}

.hero-line { display: block; overflow: hidden; padding-right: .08em; padding-bottom: .07em; white-space: nowrap; }
.hero-line > span { display: block; animation: hero-line-settle .62s var(--ease) both; }
.hero-line:last-child > span { animation-delay: .07s; }
.hero-line:last-child > span { color: var(--accent); }

.hero-intro {
  max-width: 510px;
  margin-top: 31px;
  font-size: clamp(18px, 1.45vw, 23px);
  line-height: 1.42;
  color: rgba(255,255,255,.72);
}

.hero-actions { display: flex; align-items: center; gap: 26px; margin-top: 38px; }
.hero-facts {
  display: flex;
  gap: 56px;
  margin-top: 54px;
  padding-top: 22px;
  border-top: 1px solid var(--line-light);
}
.hero-facts div { display: grid; gap: 4px; }
.hero-facts dt { color: rgba(255,255,255,.5); font-size: 11px; text-transform: uppercase; letter-spacing: .12em; }
.hero-facts dd { font-size: 14px; font-weight: 650; }

.hero-media { align-self: stretch; display: grid; grid-template-rows: 1fr auto; min-height: 560px; }
.image-wrap { position: relative; overflow: hidden; background: var(--ink-2); }
.image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, transparent 55%, rgba(23,25,22,.42));
  pointer-events: none;
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 54% center; transform: scale(1.02); }
.hero-media figcaption,
.focus-image figcaption {
  padding-top: 12px;
  color: rgba(255,255,255,.48);
  font-size: 11px;
  line-height: 1.45;
}
.media-index { position: absolute; z-index: 1; right: 20px; bottom: 14px; color: var(--white); font-size: 12px; letter-spacing: .12em; }
.hero-rule { position: absolute; z-index: 2; right: 0; bottom: 0; width: 48%; height: 6px; background: rgba(255,255,255,.1); }
.hero-rule span { display: block; width: 36%; height: 100%; background: var(--accent); }

.intro-grid { display: grid; grid-template-columns: minmax(130px, .28fr) 1fr; gap: clamp(40px, 8vw, 130px); }
.section-label { padding-top: 7px; color: var(--muted); }
.section-label::before { content: ""; display: inline-block; width: 24px; height: 2px; margin-right: 10px; vertical-align: middle; background: var(--accent); }
.display-title,
.section-heading h2,
.focus-copy h2,
.projects-heading h2,
.faq h2,
.contact h2 {
  font-size: clamp(48px, 5.9vw, 96px);
  line-height: .98;
  letter-spacing: -.06em;
  font-weight: 620;
}
.display-title { max-width: 1150px; }
.intro-bottom { max-width: 820px; margin: 55px 0 0 auto; display: grid; grid-template-columns: 1fr auto; gap: 60px; align-items: end; }
.intro-bottom p { max-width: 570px; color: var(--muted); font-size: 18px; }

.section-dark { background: var(--ink); color: var(--white); }
.section-heading { display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, .38fr); gap: 64px; align-items: end; margin-bottom: 72px; }
.section-heading h2 { font-size: clamp(54px, 6.2vw, 98px); }
.section-label-light { color: rgba(255,255,255,.5); margin-bottom: 25px; }
.section-label-dark { color: var(--ink); }
.heading-copy { max-width: 410px; padding-bottom: 8px; color: rgba(255,255,255,.58); font-size: 17px; }
.section-heading-light .heading-copy { color: var(--muted); }

.service-list { border-top: 1px solid var(--line-light); }
.service-item {
  position: relative;
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  min-height: 164px;
  border-bottom: 1px solid var(--line-light);
  overflow: hidden;
}
.service-item::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 100%;
  background: var(--accent);
  transform: translateY(101%);
  transition: transform .45s var(--ease);
}
.service-item:hover::before,
.service-item:focus-within::before { transform: translateY(0); }
.service-item > * { position: relative; z-index: 1; }
.service-number { align-self: start; padding-top: 46px; color: var(--accent); font-size: 11px; font-weight: 730; letter-spacing: .1em; transition: color .3s ease; }
.service-item h3 {
  font-size: clamp(30px, 3.4vw, 53px);
  line-height: 1;
  letter-spacing: -.045em;
  font-weight: 580;
  overflow-wrap: anywhere;
  hyphens: auto;
}
.service-item p { max-width: 640px; margin-top: 9px; color: rgba(255,255,255,.55); transition: color .3s ease; }
.service-item a { min-height: 48px; display: flex; align-items: center; gap: 42px; text-decoration: none; font-size: 13px; font-weight: 700; }
.service-item a b { font-size: 25px; font-weight: 400; transition: transform .3s var(--ease); }
.service-item:hover .service-number,
.service-item:focus-within .service-number,
.service-item:hover p,
.service-item:focus-within p { color: var(--ink); }
.service-item:hover a b,
.service-item:focus-within a b { transform: translate(4px, -4px); }

.focus { background: var(--paper-2); }
.focus-grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(400px, .85fr); gap: clamp(50px, 8vw, 130px); align-items: center; }
.focus-image { min-height: 660px; display: grid; grid-template-rows: 1fr auto; }
.focus-image img { width: 100%; height: 100%; min-height: 630px; object-fit: cover; object-position: center; }
.focus-image figcaption { color: var(--muted); }
.focus-copy .section-label { margin-bottom: 34px; }
.focus-copy h2 { font-size: clamp(46px, 5vw, 78px); }
.focus-copy > p:not(.section-label) { max-width: 610px; margin-top: 32px; color: var(--muted); font-size: 18px; }
.check-list { display: grid; gap: 0; margin: 38px 0 42px; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.check-list li { min-height: 54px; display: flex; align-items: center; gap: 14px; border-bottom: 1px solid var(--line); font-size: 14px; font-weight: 610; }
.check-list span { width: 8px; height: 8px; background: var(--accent); }

.process { background: var(--white); }
.process-list { display: grid; grid-template-columns: repeat(4, 1fr); padding: 0; margin: 0; list-style: none; border-top: 1px solid var(--line); }
.process-list li { min-height: 250px; padding: 26px 28px 30px 0; border-right: 1px solid var(--line); }
.process-list li:not(:first-child) { padding-left: 28px; }
.process-list li:last-child { border-right: 0; }
.process-list span { color: var(--accent-dark); font-size: 11px; font-weight: 750; letter-spacing: .1em; }
.process-list h3 { margin-top: 82px; font-size: 25px; letter-spacing: -.03em; }
.process-list p { max-width: 230px; margin-top: 10px; color: var(--muted); font-size: 14px; }

.section-orange { background: var(--accent); color: var(--ink); }
.projects-heading { display: grid; grid-template-columns: .24fr minmax(0, 1fr) .48fr; gap: 44px; align-items: end; margin-bottom: 62px; }
.projects-heading h2 { max-width: 780px; font-size: clamp(52px, 6vw, 92px); }
.projects-heading > p:last-child { max-width: 410px; padding-bottom: 8px; font-size: 16px; }
.project-gallery { display: grid; grid-template-columns: 1.35fr .65fr; gap: 20px; }
.project { min-height: 420px; display: grid; grid-template-rows: 1fr auto; }
.project-wide { grid-row: span 2; min-height: 860px; }
.project img { width: 100%; height: 100%; min-height: 360px; object-fit: cover; filter: saturate(.78) contrast(1.04); transition: filter .45s ease, transform .6s var(--ease); }
.project-wide img { min-height: 800px; }
.project figcaption { display: flex; justify-content: space-between; gap: 20px; padding-top: 13px; }
.project figcaption span { font-size: 14px; font-weight: 760; }
.project figcaption small { font-size: 10px; text-align: right; text-transform: uppercase; letter-spacing: .08em; }
.project:hover img { filter: saturate(1) contrast(1.02); }

.faq { background: var(--paper); }
.faq-grid { display: grid; grid-template-columns: .45fr 1fr; gap: clamp(50px, 9vw, 150px); }
.faq h2 { margin-top: 26px; font-size: clamp(52px, 5.4vw, 84px); }
.faq-list { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  min-height: 94px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  cursor: pointer;
  font-size: clamp(18px, 1.6vw, 24px);
  font-weight: 620;
  letter-spacing: -.02em;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary span { position: relative; flex: 0 0 24px; width: 24px; height: 24px; }
.faq summary span::before,
.faq summary span::after { content: ""; position: absolute; top: 11px; left: 3px; width: 18px; height: 2px; background: var(--ink); transition: transform .25s ease; }
.faq summary span::after { transform: rotate(90deg); }
.faq details[open] summary span::after { transform: rotate(0deg); }
.faq details p { max-width: 700px; padding: 0 48px 30px 0; color: var(--muted); }
.faq details a { text-underline-offset: 3px; }

.contact-grid { display: grid; grid-template-columns: minmax(0, .8fr) minmax(520px, 1.2fr); gap: clamp(60px, 9vw, 150px); }
.contact-copy h2 { margin-top: 25px; font-size: clamp(54px, 5.7vw, 88px); }
.contact-copy > p:not(.section-label) { max-width: 570px; margin-top: 28px; color: rgba(255,255,255,.6); font-size: 18px; }
.direct-contact { display: grid; margin-top: 54px; border-top: 1px solid var(--line-light); }
.direct-contact > div { display: grid; grid-template-columns: 110px 1fr; align-items: center; min-height: 70px; border-bottom: 1px solid var(--line-light); }
.direct-contact a { min-height: 44px; display: flex; align-items: center; text-decoration: none; }
.direct-contact small { color: rgba(255,255,255,.62); font-size: 11px; text-transform: uppercase; letter-spacing: .1em; }
.direct-contact strong { font-size: 14px; overflow-wrap: anywhere; }

.contact-form { align-self: start; padding: clamp(28px, 4vw, 58px); background: var(--paper); color: var(--ink); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: grid; gap: 8px; margin-bottom: 20px; }
.field label { font-size: 12px; font-weight: 700; }
.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 51px;
  border: 0;
  border-bottom: 1px solid rgba(23,25,22,.38);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  padding: 11px 0;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field textarea { min-height: 116px; resize: vertical; }
.field input:focus,
.field textarea:focus,
.field select:focus { border-color: var(--accent-dark); box-shadow: 0 2px 0 var(--accent-dark); }
.field [aria-invalid="true"] { border-color: #a32616; }
.field-error { min-height: 15px; color: #8d2518; font-size: 11px; }
.checkbox { display: grid; grid-template-columns: 24px 1fr; gap: 12px; align-items: center; min-height: 44px; cursor: pointer; font-size: 12px; color: var(--muted); user-select: none; }
.checkbox input { width: 20px; height: 20px; margin: 0; cursor: pointer; accent-color: var(--accent-dark); }
.contact-form .button { width: 100%; margin-top: 22px; }
.form-note { margin-top: 15px; color: var(--muted); font-size: 11px; text-align: center; }
.form-status { min-height: 23px; margin-top: 8px; color: var(--accent-dark); font-size: 12px; font-weight: 650; text-align: center; }

.site-footer { padding: 70px 0 28px; background: #0e0f0d; color: var(--white); }
.footer-grid { display: grid; grid-template-columns: 1fr .55fr .45fr; gap: 50px; }
.brand-footer { margin-bottom: 24px; }
.footer-grid > div:first-child p { color: rgba(255,255,255,.46); }
.footer-grid nav,
.footer-legal { display: grid; align-content: start; gap: 10px; }
.footer-grid nav a,
.footer-legal a { min-height: 44px; width: max-content; display: flex; align-items: center; color: rgba(255,255,255,.66); background: none; border: 0; padding: 0; text-decoration: none; cursor: pointer; }
.footer-grid nav a:hover,
.footer-legal a:hover { color: var(--accent); }
.footer-legal small { margin-top: 18px; color: rgba(255,255,255,.62); }
.concept-note { margin-top: 58px; padding-top: 18px; border-top: 1px solid var(--line-light); color: rgba(255,255,255,.62); font-size: 10px; letter-spacing: .03em; }

.mobile-actions { display: none; }

.legal-dialog {
  width: min(100% - 32px, 700px);
  max-height: min(86vh, 760px);
  border: 0;
  padding: 0;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 30px 90px rgba(0,0,0,.4);
}
.legal-dialog::backdrop { background: rgba(0,0,0,.74); backdrop-filter: blur(5px); }
.dialog-inner { position: relative; padding: clamp(28px, 6vw, 68px); }
.dialog-inner h2 { margin: 22px 0 30px; font-size: clamp(38px, 7vw, 68px); line-height: .96; letter-spacing: -.05em; }
.dialog-inner p { margin-top: 18px; color: var(--muted); }
.dialog-inner a { text-underline-offset: 3px; }
.dialog-close { position: absolute; top: 18px; right: 18px; min-height: 44px; border: 0; background: transparent; cursor: pointer; font-size: 12px; font-weight: 700; }
.dialog-note { padding-top: 18px; border-top: 1px solid var(--line); font-size: 12px; }

.legal-page {
  min-height: 100vh;
  padding: 120px 0;
  background: var(--paper);
}
.legal-page-inner { width: min(100% - 32px, 820px); margin-inline: auto; }
.legal-page .brand { margin-bottom: 72px; color: var(--ink); }
.legal-page h1 { margin: 24px 0 46px; font-size: clamp(48px, 8vw, 88px); line-height: .95; letter-spacing: -.055em; }
.legal-page h2 { margin: 46px 0 12px; font-size: 24px; letter-spacing: -.025em; }
.legal-page p { margin-top: 18px; color: var(--muted); }
.legal-page a { text-underline-offset: 3px; }
.back-link { display: inline-flex; align-items: center; min-height: 44px; margin-top: 54px; font-weight: 700; }

@keyframes hero-line-settle {
  from { transform: translateY(14%); }
  to { transform: translateY(0); }
}

@media (max-width: 1180px) {
  .desktop-nav { gap: 22px; }
  .phone-link { display: none; }
  .hero-grid { grid-template-columns: minmax(0, 1fr) minmax(430px, 1fr); gap: 40px; }
  .hero h1 { font-size: clamp(70px, 7.2vw, 91px); }
  .project-wide { min-height: 760px; }
  .project-wide img { min-height: 700px; }
}

@media (max-width: 960px) {
  :root { --shell: min(100% - 36px, 900px); --section: 104px; }
  .desktop-nav, .header-actions > .button { display: none; }
  .header-inner { grid-template-columns: 1fr auto; }
  .menu-button { display: block; }
  .mobile-menu { display: flex; }
  .hero { min-height: auto; padding: 120px 0 64px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { display: grid; }
  .hero h1 { max-width: 660px; font-size: clamp(78px, 15vw, 126px); }
  .hero-intro { max-width: 600px; }
  .hero-media { min-height: 520px; margin-top: 18px; }
  .hero-facts { margin-top: 40px; }
  .hero-rule { width: 66%; }
  .intro-grid { grid-template-columns: 1fr; gap: 34px; }
  .section-heading { grid-template-columns: 1fr; gap: 30px; }
  .heading-copy { padding: 0; }
  .service-item { grid-template-columns: 48px minmax(0, 1fr) auto; }
  .focus-grid { grid-template-columns: 1fr; }
  .focus-image { min-height: 580px; }
  .focus-image img { min-height: 550px; }
  .focus-copy { max-width: 720px; }
  .process-list { grid-template-columns: 1fr 1fr; }
  .process-list li:nth-child(2) { border-right: 0; }
  .process-list li:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .process-list li:nth-child(3) { padding-left: 0; }
  .projects-heading { grid-template-columns: 1fr; gap: 26px; }
  .projects-heading > p:last-child { padding: 0; }
  .project-gallery { grid-template-columns: 1fr 1fr; }
  .project-wide { grid-column: 1 / -1; grid-row: auto; min-height: 620px; }
  .project-wide img { min-height: 560px; }
  .faq-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-copy { max-width: 760px; }
}

@media (max-width: 660px) {
  :root { --shell: calc(100% - 28px); --section: 82px; }
  html { scroll-padding-top: 76px; }
  body { padding-bottom: calc(66px + env(safe-area-inset-bottom)); }
  .header-inner { min-height: 70px; }
  .brand-mark { width: 32px; height: 28px; }
  .brand-mark i { width: 19px; height: 3px; }
  .brand-mark i:first-child { left: 1px; top: 19px; }
  .brand-mark i:last-child { left: 17px; top: 10px; }
  .brand-words b { font-size: 14px; }
  .hero { padding: 104px 0 44px; }
  .hero::before { background-size: 56px 56px; }
  .hero-grid { gap: 40px; }
  .eyebrow { margin-bottom: 20px; }
  .hero h1 { font-size: clamp(60px, 19vw, 78px); line-height: .87; }
  .hero-intro { margin-top: 23px; font-size: 18px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 10px; margin-top: 28px; }
  .hero-actions .button { width: 100%; }
  .hero-facts { gap: 32px; margin-top: 32px; }
  .hero-media { min-height: 400px; }
  .hero-media .image-wrap { min-height: 370px; }
  .hero-media img { min-height: 370px; transform: none; }
  .hero-rule { width: 82%; }
  .display-title,
  .section-heading h2,
  .focus-copy h2,
  .projects-heading h2,
  .faq h2,
  .contact h2 { font-size: clamp(43px, 13.5vw, 60px); }
  .intro-bottom { grid-template-columns: 1fr; gap: 26px; margin-top: 38px; }
  .intro-bottom p { font-size: 16px; }
  .section-heading { margin-bottom: 44px; }
  .service-item { grid-template-columns: 34px 1fr; gap: 13px; min-height: 150px; padding-block: 25px; }
  .service-number { padding-top: 7px; }
  .service-item h3 { font-size: clamp(23px, 6.8vw, 31px); }
  .service-item p { font-size: 14px; }
  .service-item a { grid-column: 2; justify-content: space-between; min-height: 44px; margin-top: 5px; }
  .focus-image { min-height: 420px; }
  .focus-image img { min-height: 390px; }
  .focus-copy > p:not(.section-label) { font-size: 16px; }
  .process-list { grid-template-columns: 1fr; }
  .process-list li,
  .process-list li:not(:first-child),
  .process-list li:nth-child(3) { min-height: 178px; padding: 24px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .process-list li:last-child { border-bottom: 0; }
  .process-list h3 { margin-top: 38px; }
  .project-gallery { grid-template-columns: 1fr; gap: 34px; }
  .project-wide { grid-column: auto; min-height: 490px; }
  .project-wide img { min-height: 430px; }
  .project { min-height: 390px; }
  .project img { min-height: 330px; }
  .project figcaption { display: grid; }
  .project figcaption small { text-align: left; }
  .faq summary { min-height: 84px; }
  .faq details p { padding-right: 12px; }
  .direct-contact > div { grid-template-columns: 82px 1fr; }
  .contact-form { padding: 28px 18px; margin-inline: -2px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .concept-note { margin-top: 36px; }
  .mobile-actions {
    position: fixed;
    z-index: 80;
    inset: auto 0 0;
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    min-height: calc(66px + env(safe-area-inset-bottom));
    padding-bottom: env(safe-area-inset-bottom);
    background: var(--white);
    border-top: 1px solid rgba(23,25,22,.2);
  }
  .mobile-actions a { display: flex; align-items: center; justify-content: center; min-height: 66px; text-decoration: none; font-size: 13px; font-weight: 760; }
  .mobile-actions a:last-child { background: var(--accent); }
}

@media (max-width: 380px) {
  :root { --shell: calc(100% - 22px); }
  .hero h1 { font-size: 62px; }
  .hero-facts { display: grid; gap: 15px; }
  .hero-media { min-height: 350px; }
  .hero-media .image-wrap,
  .hero-media img { min-height: 320px; }
  .direct-contact > div { grid-template-columns: 1fr; gap: 3px; padding-block: 12px; }
  .direct-contact strong { font-size: 13px; }
}

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

@media (forced-colors: active) {
  .brand-mark i,
  .section-label::before,
  .check-list span,
  .scroll-progress span { background: CanvasText; }
  .button { border: 2px solid ButtonText; }
}
