/* ============================================================
   MR CABINETS — Brand system, Edition 01 · 2026
   Fraunces / Inter · #000000 / #FFFFFF / #C24C21
   ============================================================ */

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
  src: url("/assets/fonts/inter-latin-r12.woff2") format("woff2");
}

@font-face {
  font-family: "Fraunces";
  font-style: normal;
  font-weight: 300 400;
  font-display: swap;
  src: url("/assets/fonts/fraunces-normal-latin-r12.woff2") format("woff2");
}

@font-face {
  font-family: "Fraunces";
  font-style: italic;
  font-weight: 300 400;
  font-display: swap;
  src: url("/assets/fonts/fraunces-italic-latin-r12.woff2") format("woff2");
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body, h1, h2, h3, h4, h5, p, ul, ol, figure, blockquote { margin: 0; }
ul, ol { padding: 0; }
ul { list-style: none; }
img, picture, video { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
a { color: inherit; text-decoration: none; }

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

/* ---------- Brand tokens ---------- */
:root {
  --black: #000000;
  --rich-black: #231f20;
  --white: #ffffff;
  --orange: #c24c21;
  --text: #000000;
  --muted: rgba(0, 0, 0, .62);
  --line: rgba(0, 0, 0, .16);
  --line-dark: rgba(255, 255, 255, .22);
  --display: "Fraunces", Georgia, "Times New Roman", serif;
  --body: "Inter", Arial, sans-serif;
  --max: 1440px;
  --gutter: clamp(1.25rem, 4.7vw, 5rem);
  --section: clamp(5rem, 9vw, 9rem);
  --header: 92px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- Base ---------- */
body {
  min-width: 320px;
  overflow-x: hidden;
  background: var(--white);
  color: var(--text);
  font-family: var(--body);
  font-size: clamp(.98rem, .94rem + .15vw, 1.08rem);
  font-weight: 300;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.nav-open { overflow: hidden; }

h1, h2, h3, h4, h5,
.display, .display-sm {
  font-family: var(--display);
  font-weight: 300;
  font-optical-sizing: auto;
  letter-spacing: -.045em;
  line-height: .94;
}

h1 { font-size: clamp(3.1rem, 7vw, 7.75rem); }
h2 { font-size: clamp(2.35rem, 4.8vw, 5.2rem); }
h3 { font-size: clamp(1.6rem, 2.5vw, 2.7rem); }
h4 { font-size: clamp(1.2rem, 1.5vw, 1.55rem); line-height: 1.02; }

p + p { margin-top: 1rem; }
strong { font-weight: 500; }
.service-paths { color: var(--muted); }
.service-paths a { color: var(--black); font-weight: 500; text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: .2em; }

::selection { background: var(--orange); color: var(--white); }
:focus-visible { outline: 3px solid var(--orange); outline-offset: 4px; }

/* ---------- Layout ---------- */
.shell {
  width: min(100%, var(--max));
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.shell--wide { --max: 1680px; }
.section { padding-block: var(--section); }
.section--tight { padding-block: clamp(3.5rem, 6vw, 6rem); }
.section--black { background: var(--black); color: var(--white); }
.section--orange { background: var(--orange); color: var(--white); }
.section--line { border-top: 1px solid var(--line); }

.skip-link {
  position: fixed;
  z-index: 999;
  top: .75rem;
  left: .75rem;
  padding: .7rem 1rem;
  background: var(--orange);
  color: var(--white);
  transform: translateY(-160%);
}
.skip-link:focus { transform: none; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  color: var(--orange);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .19em;
  line-height: 1.2;
  text-transform: uppercase;
}
.eyebrow::before { width: 24px; height: 4px; background: currentColor; content: ""; }
.eyebrow--white { color: var(--white); }
.eyebrow--black { color: var(--black); }

.lead {
  max-width: 52ch;
  color: var(--muted);
  font-size: clamp(1.06rem, 1rem + .35vw, 1.35rem);
  line-height: 1.55;
}
.section--black .lead,
.section--orange .lead { color: rgba(255, 255, 255, .8); }

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(18rem, .7fr);
  gap: clamp(2rem, 7vw, 8rem);
  align-items: end;
  margin-bottom: clamp(2.5rem, 5vw, 5rem);
}
.section-head h2 { max-width: 13ch; margin-top: 1.2rem; }
.section-head--single { grid-template-columns: 1fr; }
.section-head--single h2 { max-width: 15ch; }

.rule-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: .85rem;
  border-block: 1px solid currentColor;
  font-size: .69rem;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
}

/* ---------- Buttons / links ---------- */
.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: .9rem;
  padding: .9rem 1.4rem;
  border: 1px solid var(--black);
  background: var(--black);
  color: var(--white);
  font-size: .73rem;
  font-weight: 500;
  letter-spacing: .13em;
  line-height: 1.2;
  text-transform: uppercase;
  transition: background .25s var(--ease), color .25s var(--ease), transform .25s var(--ease);
}
.button:hover { background: var(--orange); border-color: var(--orange); transform: translateY(-2px); }
.button--orange { background: var(--orange); border-color: var(--orange); }
.button--orange:hover { background: var(--black); border-color: var(--black); }
.button--white { background: var(--white); border-color: var(--white); color: var(--black); }
.button--white:hover { background: var(--black); border-color: var(--black); color: var(--white); }
.button--outline { background: transparent; color: var(--black); }
.button--outline:hover { color: var(--white); }
.button--outline-white { border-color: rgba(255,255,255,.65); background: transparent; color: var(--white); }
.button--outline-white:hover { background: var(--white); border-color: var(--white); color: var(--black); }
.button--block { width: 100%; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  padding-bottom: .25rem;
  border-bottom: 1px solid currentColor;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .13em;
  line-height: 1.2;
  text-transform: uppercase;
  transition: color .2s, gap .2s;
}
.text-link:hover { color: var(--orange); }

/* ---------- Header ---------- */
.topbar {
  background: var(--black);
  color: var(--white);
  font-size: .66rem;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.topbar__inner {
  display: flex;
  min-height: 36px;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.topbar__proof { display: flex; gap: 1.5rem; color: rgba(255,255,255,.66); }
.topbar a:hover { color: var(--orange); }

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.96);
  transition: box-shadow .25s var(--ease);
}
.site-header.is-scrolled { box-shadow: 0 10px 30px rgba(0,0,0,.08); }
.header__inner {
  display: flex;
  min-height: var(--header);
  align-items: center;
  justify-content: space-between;
  gap: clamp(1rem, 2vw, 2rem);
}
.brand {
  width: 215px;
  height: 78px;
  flex: 0 0 auto;
  overflow: hidden;
}
.brand img { width: 100%; height: 100%; object-fit: contain; }

.primary-nav { display: flex; align-items: center; gap: clamp(.8rem, 1.45vw, 1.55rem); }
.primary-nav a {
  position: relative;
  padding-block: .55rem;
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .045em;
  white-space: nowrap;
}
.primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--orange);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s var(--ease);
}
.primary-nav a:hover::after,
.primary-nav a[aria-current="page"]::after { transform: scaleX(1); }
.header__actions { display: flex; align-items: center; gap: 1rem; }
.header__phone { font-size: .74rem; font-weight: 500; white-space: nowrap; }
.header__phone:hover { color: var(--orange); }

.menu-toggle {
  display: none;
  width: 52px;
  height: 52px;
  border: 1px solid var(--black);
  background: var(--black);
  color: var(--white);
  font-size: .64rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.mobile-nav {
  position: fixed;
  z-index: 90;
  inset: calc(var(--header) + 36px) 0 0;
  display: grid;
  align-content: space-between;
  padding: clamp(2rem, 7vw, 4rem) var(--gutter);
  background: var(--black);
  color: var(--white);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition: opacity .25s var(--ease), transform .25s var(--ease);
}
body.nav-open .mobile-nav { opacity: 1; pointer-events: auto; transform: none; }
.mobile-nav ul { display: grid; }
.mobile-nav li { border-bottom: 1px solid var(--line-dark); }
.mobile-nav li:first-child { border-top: 1px solid var(--line-dark); }
.mobile-nav a {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-block: .65rem;
  font-family: var(--display);
  font-size: clamp(1.55rem, 7vw, 2.8rem);
  letter-spacing: -.04em;
  line-height: 1;
}
.mobile-nav__foot { display: flex; flex-wrap: wrap; gap: 1rem 2rem; font-size: .8rem; }

/* ---------- Homepage hero ---------- */
.hero {
  display: grid;
  min-height: min(820px, calc(100svh - 36px - var(--header)));
  grid-template-columns: minmax(0, .93fr) minmax(0, 1.07fr);
  background: var(--black);
  color: var(--white);
}
.hero__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 3rem;
  padding: clamp(3rem, 6vw, 6.5rem) var(--gutter) clamp(2.5rem, 5vw, 5rem);
}
.hero__content h1 { max-width: 8.5ch; margin-top: 1.3rem; }
.hero__copy { max-width: 45ch; color: rgba(255,255,255,.75); font-size: clamp(1.05rem, 1rem + .25vw, 1.25rem); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }
.hero__proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line-dark);
}
.hero__proof strong { display: block; font-family: var(--display); font-size: 1.25rem; letter-spacing: -.03em; line-height: 1; }
.hero__proof span { display: block; margin-top: .35rem; color: rgba(255,255,255,.58); font-size: .65rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; }
.hero__media { min-height: 560px; overflow: hidden; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; animation: hero-in 1.2s var(--ease) both; }
@keyframes hero-in { from { opacity: .55; transform: scale(1.04); } }

/* ---------- Interior page hero ---------- */
.page-hero {
  display: grid;
  min-height: 660px;
  grid-template-columns: minmax(0, .87fr) minmax(0, 1.13fr);
  background: var(--black);
  color: var(--white);
}
.page-hero__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 4rem;
  padding: clamp(3rem, 6vw, 6rem) var(--gutter);
}
.page-hero h1 { max-width: 8.4ch; margin-top: 1.4rem; font-size: clamp(3.3rem, 6.4vw, 7rem); }
.page-hero__copy { max-width: 42ch; color: rgba(255,255,255,.75); font-size: clamp(1.05rem, 1rem + .22vw, 1.22rem); }
.page-hero__media { min-height: 520px; overflow: hidden; }
.page-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero--light { background: var(--white); color: var(--black); border-bottom: 1px solid var(--line); }
.page-hero--light .page-hero__copy { color: var(--muted); }

/* ---------- Category navigation ---------- */
.category-nav { border-bottom: 1px solid var(--line); background: var(--white); }
.category-nav__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.category-nav a {
  display: flex;
  min-height: 108px;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem clamp(1rem, 2vw, 2rem);
  border-right: 1px solid var(--line);
  font-family: var(--display);
  font-size: clamp(1rem, 1.35vw, 1.3rem);
  letter-spacing: -.035em;
  line-height: 1;
  transition: background .2s, color .2s;
}
.category-nav a:first-child { border-left: 1px solid var(--line); }
.category-nav a:hover,
.category-nav a[aria-current="page"] { background: var(--orange); color: var(--white); }

/* ---------- Intro / stats ---------- */
.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(18rem, .72fr);
  gap: clamp(3rem, 8vw, 9rem);
  align-items: start;
}
.intro-grid h2 { max-width: 12ch; margin-top: 1.2rem; }
.intro-grid__copy { padding-top: .4rem; }
.intro-grid__copy .text-link { margin-top: 1.5rem; }

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: clamp(4rem, 8vw, 8rem);
  border-block: 1px solid var(--line);
}
.stat { min-height: 180px; padding: 2rem clamp(1rem, 2.5vw, 2.5rem); border-right: 1px solid var(--line); }
.stat:first-child { border-left: 1px solid var(--line); }
.stat__value { color: var(--orange); font-family: var(--display); font-size: clamp(2.8rem, 4vw, 4.6rem); letter-spacing: -.06em; line-height: 1; }
.stat__label { margin-top: .9rem; font-size: .7rem; font-weight: 500; letter-spacing: .12em; line-height: 1.35; text-transform: uppercase; }

/* ---------- Service cards ---------- */
.service-grid { display: grid; grid-template-columns: repeat(12, 1fr); border-top: 1px solid var(--line); }
.service-card {
  position: relative;
  display: grid;
  grid-column: span 6;
  grid-template-columns: minmax(0, 1fr);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.service-card:nth-child(odd) { border-left: 1px solid var(--line); }
.service-card__image { aspect-ratio: 16 / 10; overflow: hidden; background: var(--black); }
.service-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease), opacity .35s; }
.service-card__body { display: grid; grid-template-columns: auto 1fr auto; gap: clamp(1rem, 2vw, 2rem); align-items: start; padding: clamp(1.5rem, 3vw, 2.6rem); }
.service-card__num { color: var(--orange); font-size: .7rem; font-weight: 500; letter-spacing: .12em; }
.service-card h3 { max-width: 10ch; font-size: clamp(1.7rem, 3.1vw, 3rem); }
.service-card__arrow { font-size: 1.5rem; line-height: 1; }
.service-card:hover .service-card__image img { transform: scale(1.035); }
.service-card:hover .service-card__arrow { color: var(--orange); }

/* ---------- Feature splits ---------- */
.split {
  display: grid;
  min-height: 680px;
  grid-template-columns: 1fr 1fr;
}
.split__media { min-height: 520px; overflow: hidden; }
.split__media img { width: 100%; height: 100%; object-fit: cover; }
.split__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(3rem, 7vw, 7.5rem);
}
.split__content h2 { max-width: 10ch; margin: 1.4rem 0 1.6rem; }
.split__content h3 { max-width: 12ch; margin: 1.4rem 0 1.6rem; }
.split__content .text-link,
.split__content .button { margin-top: 2rem; }
.split--reverse .split__media { order: 2; }
.split--black { background: var(--black); color: var(--white); }
.split--black .lead { color: rgba(255,255,255,.72); }
.split--orange { background: var(--orange); color: var(--white); }
.split--orange .lead { color: rgba(255,255,255,.82); }

.feature-list { display: grid; width: 100%; margin-top: 2rem; border-top: 1px solid currentColor; }
.feature-list li {
  display: grid;
  grid-template-columns: 2rem 1fr;
  gap: .75rem;
  padding-block: .9rem;
  border-bottom: 1px solid currentColor;
  font-size: .83rem;
}
.feature-list li::before { color: var(--orange); content: "■"; font-size: .7rem; }
.split--orange .feature-list li::before { color: var(--white); }

/* ---------- Process ---------- */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line-dark); }
.process-step { min-height: 260px; padding: 2rem; border-right: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
.process-step:nth-child(4n+1) { border-left: 1px solid var(--line-dark); }
.process-step__num { color: var(--orange); font-family: var(--display); font-size: 1.4rem; }
.process-step h3 { margin-top: 3rem; font-size: 1.35rem; line-height: 1; }
.process-step p { margin-top: 1rem; color: rgba(255,255,255,.65); font-size: .88rem; }

/* ---------- Project cards ---------- */
.project-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 1px; background: var(--black); border: 1px solid var(--black); }
.project-card { position: relative; grid-column: span 4; min-height: 430px; overflow: hidden; background: var(--black); color: var(--white); }
.project-card--wide { grid-column: span 8; }
.project-card--tall { min-height: 620px; }
.project-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .88; transition: transform .7s var(--ease), opacity .35s; }
.project-card::after { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,.82) 100%); content: ""; }
.project-card__meta { position: absolute; z-index: 1; right: 0; bottom: 0; left: 0; display: flex; align-items: end; justify-content: space-between; gap: 1rem; padding: 1.5rem; }
.project-card__meta h3 { max-width: 15ch; font-size: clamp(1.25rem, 2vw, 2rem); }
.project-card__meta p { max-width: 38ch; margin-top: .65rem; color: rgba(255,255,255,.78); font-size: clamp(.72rem, 1vw, .85rem); line-height: 1.45; }
.project-card__meta span { font-size: .65rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; }
.project-card:hover img { opacity: 1; transform: scale(1.035); }

/* ---------- Editorial content ---------- */
.detail-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.detail-card { min-height: 250px; padding: clamp(1.5rem, 3vw, 3rem); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.detail-card:nth-child(3n+1) { border-left: 1px solid var(--line); }
.detail-card__num { color: var(--orange); font-family: var(--display); font-size: 1.1rem; }
.detail-card h3 { margin-top: 2.8rem; font-size: 1.4rem; line-height: 1; }
.detail-card p { margin-top: 1rem; color: var(--muted); font-size: .9rem; }

.material-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 1px; background: var(--black); border: 1px solid var(--black); }
.material-grid figure { min-height: 520px; background: var(--black); }
.material-grid img { width: 100%; height: 100%; object-fit: cover; }
.material-grid__notes { display: grid; background: var(--white); }
.material-note { padding: clamp(1.5rem, 3vw, 3rem); border-bottom: 1px solid var(--line); }
.material-note:last-child { border-bottom: 0; }
.material-note h3 { font-size: 1.35rem; line-height: 1; }
.material-note p { margin-top: .8rem; color: var(--muted); font-size: .9rem; }

.quote-band { padding-block: clamp(4rem, 7vw, 7rem); background: var(--orange); color: var(--white); }
.quote-band blockquote { max-width: 22ch; font-family: var(--display); font-size: clamp(2rem, 4.1vw, 4.3rem); letter-spacing: -.045em; line-height: .98; }
.quote-band cite { display: block; margin-top: 2rem; font-size: .7rem; font-style: normal; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; }

/* ---------- Story / timeline ---------- */
.timeline { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); }
.timeline__item { display: grid; grid-template-columns: 6rem 1fr; gap: 1.5rem; min-height: 220px; padding: 2.2rem; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.timeline__item:nth-child(odd) { border-left: 1px solid var(--line); }
.timeline__year { color: var(--orange); font-family: var(--display); font-size: 1.2rem; }
.timeline__item h3 { font-size: 1.5rem; line-height: 1; }
.timeline__item p { margin-top: 1rem; color: var(--muted); font-size: .9rem; }

/* ---------- FAQ ---------- */
.faq-grid { display: grid; grid-template-columns: minmax(16rem, .65fr) minmax(0, 1.35fr); gap: clamp(3rem, 9vw, 10rem); }
.faq-grid h2 { max-width: 8ch; margin-top: 1.2rem; }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-question {
  display: grid;
  width: 100%;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border: 0;
  background: transparent;
  color: var(--black);
  font-weight: 500;
  text-align: left;
}
.faq-question::after { color: var(--orange); content: "+"; font-family: var(--display); font-size: 1.4rem; line-height: 1; }
.faq-item.is-open .faq-question::after { content: "−"; }
.faq-answer { height: 0; overflow: hidden; transition: height .3s var(--ease); }
.faq-answer__inner { max-width: 66ch; padding: 0 3rem 1.6rem 0; color: var(--muted); }

/* ---------- Consultation / forms ---------- */
.contact-layout { display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); gap: 1px; background: var(--black); border: 1px solid var(--black); }
.contact-panel { padding: clamp(2rem, 5vw, 5rem); background: var(--black); color: var(--white); }
.contact-panel h2 { max-width: 9ch; margin: 1.3rem 0 1.5rem; }
.contact-points { display: grid; margin-top: 2.5rem; border-top: 1px solid var(--line-dark); }
.contact-points li { display: grid; grid-template-columns: 1.5rem 1fr; gap: .75rem; padding-block: .8rem; border-bottom: 1px solid var(--line-dark); font-size: .86rem; }
.contact-points li::before { color: var(--orange); content: "■"; font-size: .65rem; }

.form-card { padding: clamp(2rem, 5vw, 5rem); background: var(--white); }
.form-card h2 { max-width: 9ch; }
.form-card__intro { max-width: 48ch; margin-top: 1rem; color: var(--muted); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.3rem; margin-top: 2.5rem; }
.field { display: grid; gap: .45rem; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: .66rem; font-weight: 500; letter-spacing: .13em; text-transform: uppercase; }
.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 54px;
  padding: .85rem 1rem;
  border: 1px solid var(--black);
  border-radius: 0;
  background: var(--white);
  color: var(--black);
  font-weight: 300;
}
.field textarea { min-height: 150px; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus { border-color: var(--orange); outline: 2px solid var(--orange); outline-offset: 0; }
.form-card .button { margin-top: .4rem; }
.form-note { margin-top: 1rem; color: var(--muted); font-size: .74rem; }
.form-success { display: none; padding: 2rem; border: 1px solid var(--orange); background: var(--white); }
.form-success h3 { font-size: 1.6rem; }
.form-success p { margin-top: .8rem; color: var(--muted); }
.form-card.sent .form-grid,
.form-card.sent > h2,
.form-card.sent > .form-card__intro { display: none; }
.form-card.sent .form-success { display: block; }

.showroom-grid { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); }
.showroom { min-height: 340px; padding: clamp(2rem, 4vw, 4rem); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.showroom:first-child { border-left: 1px solid var(--line); }
.showroom__tag { color: var(--orange); font-size: .66rem; font-weight: 500; letter-spacing: .13em; text-transform: uppercase; }
.showroom h3 { margin-top: 3.5rem; }
.showroom address { margin-top: 1.2rem; font-style: normal; }
.showroom .text-link { margin-top: 1.5rem; }

/* ---------- Legal / policy copy ---------- */
.legal-copy { max-width: 880px; }
.legal-copy > * + * { margin-top: 1.15rem; }
.legal-copy h2 { margin-top: 3.5rem; font-size: clamp(1.7rem, 3vw, 2.8rem); }
.legal-copy ul { display: grid; gap: .55rem; padding-left: 1.25rem; list-style: disc; }
.legal-copy ol { display: grid; gap: 1.15rem; padding-left: 1.5rem; list-style: decimal; }
.legal-copy ol li { padding-left: .35rem; }
.legal-copy a { border-bottom: 1px solid currentColor; }
.legal-copy address { font-style: normal; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--orange); color: var(--white); }
.cta-band__inner { display: grid; grid-template-columns: 1.3fr auto; gap: 3rem; align-items: center; padding-block: clamp(3.5rem, 6vw, 6.5rem); }
.cta-band h2 { max-width: 12ch; }
.cta-band p { max-width: 48ch; margin-top: 1.2rem; color: rgba(255,255,255,.82); }

/* ---------- Footer ---------- */
.site-footer { padding-top: clamp(4rem, 7vw, 7rem); background: var(--black); color: var(--white); }
.footer__top { display: grid; grid-template-columns: 1.1fr .9fr; gap: 4rem; align-items: start; padding-bottom: 3rem; border-bottom: 1px solid var(--line-dark); }
.footer__brand { display: block; width: 280px; height: 150px; overflow: hidden; }
.footer__brand img { width: 100%; height: 100%; object-fit: contain; }
.footer__statement { max-width: 22ch; font-family: var(--display); font-size: clamp(1.7rem, 2.7vw, 3rem); letter-spacing: -.04em; line-height: .98; }
.footer__grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr 1.15fr; gap: 3rem; padding-block: 3rem; }
.footer__col h3 { color: var(--orange); font-family: var(--body); font-size: .67rem; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; }
.footer__col ul { display: grid; gap: .55rem; margin-top: 1.1rem; }
.footer__col li,
.footer__col p { color: rgba(255,255,255,.65); font-size: .83rem; }
.footer__col a:hover { color: var(--white); }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: 2rem; padding-block: 1.2rem; border-top: 1px solid var(--line-dark); color: rgba(255,255,255,.5); font-size: .67rem; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; }
.footer__bottom nav { display: flex; flex-wrap: wrap; gap: 1.4rem; }
.footer__bottom a:hover { color: var(--white); }

/* ---------- Reveal ---------- */
[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .65s var(--ease), transform .65s var(--ease); }
[data-reveal].is-visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1240px) {
  .header__phone { display: none; }
  .primary-nav { gap: .9rem; }
  .primary-nav a { font-size: .7rem; }
  .brand { width: 205px; }
}

@media (max-width: 1050px) {
  .primary-nav, .header__actions .button, .header__phone { display: none; }
  .menu-toggle { display: block; }
  .hero, .page-hero { grid-template-columns: 1fr; }
  .hero__media, .page-hero__media { min-height: min(72vw, 680px); }
  .page-hero__media { order: 2; }
  .section-head, .intro-grid { grid-template-columns: 1fr; }
  .section-head { align-items: start; }
  .section-head .lead { max-width: 58ch; }
  .split { min-height: 0; grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-step:nth-child(4n+1) { border-left: 0; }
  .process-step:nth-child(2n+1) { border-left: 1px solid var(--line-dark); }
  .project-card { grid-column: span 6; }
  .project-card--wide { grid-column: span 12; }
  .material-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  :root { --header: 80px; --section: 4.75rem; }
  .topbar__proof span:nth-child(n+2) { display: none; }
  .brand { width: 205px; height: 72px; margin-left: -10px; }
  .mobile-nav { inset-block-start: calc(var(--header) + 36px); }
  .hero { min-height: 0; }
  .hero__content, .page-hero__content { padding-block: 3.5rem; }
  .hero__proof { grid-template-columns: repeat(3, 1fr); gap: .5rem; }
  .hero__proof div { display: block; }
  .hero__proof strong { font-size: 1rem; }
  .hero__proof span { margin-top: .35rem; font-size: .54rem; line-height: 1.25; }
  .hero__media, .page-hero__media { min-height: 78vw; }
  .category-nav__inner { grid-template-columns: 1fr 1fr; }
  .category-nav a { min-height: 84px; border-bottom: 1px solid var(--line); }
  .stats { grid-template-columns: 1fr 1fr; }
  .stat { min-height: 150px; }
  .stat:nth-child(odd) { border-left: 1px solid var(--line); }
  .service-card { grid-column: span 12; border-left: 1px solid var(--line); }
  .service-card__body { grid-template-columns: auto 1fr auto; }
  .split__media { min-height: 78vw; }
  .split__content { padding: 3.5rem var(--gutter); }
  .process-grid { grid-template-columns: 1fr; }
  .process-step,
  .process-step:nth-child(n) { min-height: 220px; border-left: 1px solid var(--line-dark); }
  .project-card,
  .project-card--wide { grid-column: span 12; min-height: 115vw; }
  .project-card--tall { min-height: 135vw; }
  .detail-grid { grid-template-columns: 1fr; }
  .detail-card,
  .detail-card:nth-child(n) { min-height: 220px; border-left: 1px solid var(--line); }
  .timeline { grid-template-columns: 1fr; }
  .timeline__item,
  .timeline__item:nth-child(n) { grid-template-columns: 4.5rem 1fr; border-left: 1px solid var(--line); }
  .faq-grid { grid-template-columns: 1fr; gap: 3rem; }
  .form-grid { grid-template-columns: 1fr; }
  .field--full { grid-column: auto; }
  .showroom-grid { grid-template-columns: 1fr; }
  .showroom, .showroom:first-child { border-left: 1px solid var(--line); }
  .cta-band__inner { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; gap: 2rem; }
  .footer__brand { width: 240px; height: 125px; }
  .footer__grid { grid-template-columns: 1fr; gap: 2.25rem; }
  .footer__bottom { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 420px) {
  .brand { width: 190px; }
  .menu-toggle { width: 48px; height: 48px; }
  .category-nav a { padding-inline: .9rem; font-size: .95rem; }
}

/* ============================================================
   EDITION 02 — restrained monochrome refinement
   Keep colour in the photography; let the interface stay quiet.
   ============================================================ */

:root {
  --muted: rgba(0, 0, 0, .58);
  --line: rgba(0, 0, 0, .12);
  --line-dark: rgba(255, 255, 255, .18);
  --section: clamp(5.5rem, 10vw, 10rem);
}

/* A finer, monochrome editorial language. */
.eyebrow {
  gap: .65rem;
  color: var(--black);
  font-size: .66rem;
  letter-spacing: .18em;
}
.eyebrow::before { width: 1.5rem; height: 1px; }
.hero .eyebrow,
.page-hero:not(.page-hero--light) .eyebrow,
.section--black .eyebrow,
.split--black .eyebrow,
.split--orange .eyebrow,
.cta-band .eyebrow,
.contact-panel .eyebrow { color: var(--white); }

.site-header { background: rgba(255, 255, 255, .985); }
.site-header.is-scrolled { box-shadow: none; }
.primary-nav a::after { height: 1px; background: var(--black); }
.primary-nav a:hover,
.primary-nav a[aria-current="page"] { opacity: .62; }
.header__phone:hover,
.topbar a:hover { color: inherit; opacity: .62; }
.mobile-nav a::after { color: currentColor; }

/* Black is the primary action on a light ground; white is the primary action on black. */
.button {
  min-height: 50px;
  padding: .9rem 1.55rem;
  transition: background .22s var(--ease), border-color .22s var(--ease), color .22s var(--ease), opacity .22s var(--ease);
}
.button::after { transition: none; }
.button:hover { background: transparent; border-color: var(--black); color: var(--black); transform: none; }
.button:hover::after { transform: none; }
.button--orange { background: var(--black); border-color: var(--black); color: var(--white); }
.button--orange:hover { background: transparent; border-color: var(--black); color: var(--black); }
.hero .button--orange,
.page-hero:not(.page-hero--light) .button--orange,
.section--black .button--orange,
.split--black .button--orange,
.split--orange .button--orange,
.cta-band .button--orange,
.contact-panel .button--orange {
  background: var(--white);
  border-color: var(--white);
  color: var(--black);
}
.hero .button--orange:hover,
.page-hero:not(.page-hero--light) .button--orange:hover,
.section--black .button--orange:hover,
.split--black .button--orange:hover,
.split--orange .button--orange:hover,
.cta-band .button--orange:hover,
.contact-panel .button--orange:hover {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}
.button--white:hover { background: transparent; border-color: var(--white); color: var(--white); }
.button--outline:hover { background: var(--black); border-color: var(--black); color: var(--white); }
.button--outline-white:hover { background: var(--white); border-color: var(--white); color: var(--black); }
.text-link:hover { color: inherit; gap: .65rem; opacity: .58; }

/* Orange recedes to brand-level interaction states rather than carrying whole sections. */
.section--orange,
.split--orange,
.quote-band,
.cta-band { background: var(--black); color: var(--white); }
.section--orange .lead,
.split--orange .lead,
.cta-band p { color: rgba(255, 255, 255, .72); }
.category-nav a::after,
.feature-list li::before,
.faq-question::after,
.contact-points li::before { color: currentColor; }
.category-nav a:hover,
.category-nav a[aria-current="page"] { background: var(--black); color: var(--white); }

/* Reduce promotional colour in data, labels and graphic details. */
.stat__value,
.service-card__num,
.detail-card__num,
.timeline__year,
.showroom__tag { color: var(--black); }
.process-step__num,
.footer__col h3 { color: var(--white); }
.form-success { border-color: var(--black); }
.field input:focus,
.field select:focus,
.field textarea:focus { border-color: var(--black); outline-color: var(--black); }

/* More breathing room around the editorial moments without changing their layout. */
.hero__content { padding-block: clamp(4rem, 7vw, 7.5rem) clamp(3.5rem, 6vw, 6rem); }
.page-hero__content { padding-block: clamp(4rem, 7vw, 7rem); }
.section-head h2,
.intro-grid h2 { margin-top: 1.45rem; }
.service-card__body { padding: clamp(1.75rem, 3vw, 3rem); }
.project-card__meta { padding: clamp(1.5rem, 2.5vw, 2.35rem); }

@media (max-width: 760px) {
  :root { --section: 5rem; }
  .hero__content,
  .page-hero__content { padding-block: 4rem 3.5rem; }
}

/* ---------- Project case studies ---------- */
.project-page .page-hero h1 { max-width: 10ch; }
.project-detail-hero .page-hero__content { gap: clamp(2.5rem, 5vw, 5rem); }

.project-breadcrumbs { margin-bottom: clamp(2rem, 4vw, 4rem); }
.project-breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem .7rem;
  color: var(--muted);
  font-size: .66rem;
  font-weight: 500;
  letter-spacing: .11em;
  line-height: 1.4;
  text-transform: uppercase;
}
.project-breadcrumbs li { display: inline-flex; align-items: center; gap: .7rem; }
.project-breadcrumbs li:not(:last-child)::after { content: "/"; opacity: .45; }
.project-breadcrumbs a:hover { color: var(--black); }

.project-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(18rem, .75fr);
  gap: clamp(3rem, 8vw, 9rem);
  align-items: start;
}
.project-story-grid h2 { max-width: 10ch; margin-top: 1.45rem; }
.project-story-copy { max-width: 44rem; }

.project-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.project-fact {
  min-height: 190px;
  padding: clamp(1.5rem, 3vw, 3rem);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.project-fact--wide { grid-column: span 2; }
.project-fact__label {
  margin-bottom: 1.4rem;
  color: var(--muted);
  font-size: .66rem;
  font-weight: 500;
  letter-spacing: .14em;
  line-height: 1.35;
  text-transform: uppercase;
}
.project-fact > p:last-child { max-width: 28ch; font-family: var(--display); font-size: clamp(1.35rem, 2vw, 2rem); letter-spacing: -.035em; line-height: 1.08; }
.project-fact ul { display: grid; gap: .7rem; }
.project-fact li { position: relative; padding-left: 1rem; color: var(--muted); }
.project-fact li::before { position: absolute; top: .72em; left: 0; width: 4px; height: 4px; background: var(--black); content: ""; }

.project-credits { display: grid; gap: .85rem; }
.project-credits div { display: grid; grid-template-columns: minmax(8rem, .55fr) minmax(0, 1fr); gap: 1.25rem; padding-bottom: .85rem; border-bottom: 1px solid var(--line); }
.project-credits div:last-child { padding-bottom: 0; border-bottom: 0; }
.project-credits dt { color: var(--muted); font-size: .72rem; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; }
.project-credits dd { margin: 0; }

.project-gallery-section { padding-block: clamp(2rem, 4vw, 4rem); }
.project-gallery { display: grid; gap: 1rem; }
.project-gallery figure { display: grid; gap: 1rem; }
.project-gallery img { width: 100%; height: min(65svh, 720px); object-fit: cover; }
.project-gallery figcaption { max-width: 64ch; color: rgba(255,255,255,.66); font-size: .78rem; }

.project-press { display: grid; grid-template-columns: minmax(0, 1fr) minmax(18rem, .75fr); gap: clamp(3rem, 8vw, 9rem); align-items: start; }
.project-press h2 { max-width: 10ch; margin-top: 1.45rem; }
.project-press ul { display: grid; border-top: 1px solid var(--line); }
.project-press li { padding-block: 1.1rem; border-bottom: 1px solid var(--line); }

.project-related { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.project-related a { display: grid; min-height: 190px; grid-template-columns: 1fr auto; gap: 1rem; align-content: space-between; padding: clamp(1.5rem, 3vw, 3rem); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: background .2s, color .2s; }
.project-related a > span:first-child { grid-column: 1 / -1; color: var(--muted); font-size: .66rem; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; }
.project-related strong { max-width: 18ch; font-family: var(--display); font-size: clamp(1.35rem, 2vw, 2rem); font-weight: 300; letter-spacing: -.035em; line-height: 1.05; }
.project-related a:hover { background: var(--black); color: var(--white); }
.project-related a:hover > span:first-child { color: rgba(255,255,255,.65); }

@media (max-width: 1050px) {
  .project-story-grid,
  .project-press { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .project-page .page-hero h1 { font-size: clamp(3.05rem, 15vw, 5rem); }
  .project-facts,
  .project-related { grid-template-columns: 1fr; }
  .project-fact--wide { grid-column: auto; }
  .project-fact { min-height: 0; }
  .project-credits div { grid-template-columns: 1fr; gap: .25rem; }
  .project-gallery img { height: min(65svh, 560px); }
}
