:root {
  --paper: #f3f0e9;
  --ink: #131716;
  --dark: #111615;
  --graphite: #202523;
  --orange: #c8541a;
  --green: #173d2d;
  --border: #d8d2c8;
  --muted: #6f716c;
  --shell: min(1320px, calc(100vw - 64px));
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Helvetica Neue", "Arial Nova", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
address { font-style: normal; }
.shell { width: var(--shell); margin-inline: auto; }
.skip-link {
  position: fixed; left: 18px; top: -80px; z-index: 100;
  background: var(--orange); color: #fff; padding: 12px 18px;
  transition: top .2s;
}
.skip-link:focus { top: 18px; }
:focus-visible { outline: 2px solid var(--orange); outline-offset: 4px; }

.site-header {
  position: sticky; top: 0; z-index: 50;
  height: 92px; border-bottom: 1px solid var(--border);
  background: rgba(243, 240, 233, .96);
  backdrop-filter: blur(10px);
  transition: height .35s var(--ease), box-shadow .35s;
}
.site-header.is-compact { height: 72px; box-shadow: 0 10px 30px rgba(19, 23, 22, .06); }
.header-inner {
  width: var(--shell); height: 100%; margin-inline: auto;
  display: grid; grid-template-columns: 240px 1fr auto; align-items: center; gap: 32px;
}
.brand { width: 206px; display: block; }
.brand-logo { width: 100%; height: auto; }
.desktop-nav { justify-self: end; display: flex; gap: clamp(22px, 2.4vw, 42px); }
.desktop-nav a { position: relative; font-size: 14px; letter-spacing: .02em; }
.desktop-nav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -8px;
  height: 1px; background: var(--orange); transition: right .25s;
}
.desktop-nav a:hover::after, .desktop-nav a:focus-visible::after { right: 0; }
.header-cta, .button {
  display: inline-flex; align-items: center; justify-content: center; gap: 18px;
  min-height: 48px; padding: 0 22px; border: 1px solid var(--ink);
  font-size: 13px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
  transition: background .25s, color .25s, transform .25s;
}
.header-cta { margin-left: 2px; }
.header-cta:hover, .button:hover { background: var(--ink); color: var(--paper); }
.header-cta:active, .button:active { transform: translateY(1px); }
.menu-toggle, .mobile-menu { display: none; }

.home-hero, .page-hero {
  position: relative; min-height: calc(100svh - 92px);
  overflow: hidden; border-bottom: 1px solid var(--border);
}
.page-hero { min-height: 670px; }
.hero-grid {
  position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image: linear-gradient(to right, transparent calc(100% - 1px), var(--border) 1px);
  background-size: calc((100vw - 64px) / 12) 100%;
  background-position: 32px 0;
}
.hero-shell {
  min-height: inherit; position: relative; display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(380px, 5fr);
  align-items: center; gap: clamp(50px, 7vw, 120px); padding-block: 90px 110px;
}
.hero-copy { position: relative; z-index: 3; }
.eyebrow {
  margin: 0 0 28px; color: var(--muted); font-size: 11px;
  font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
}
.eyebrow::before {
  content: ""; display: inline-block; width: 22px; height: 1px;
  margin-right: 12px; vertical-align: middle; background: currentColor;
}
.eyebrow-light { color: #aeb3ae; }
h1, h2, h3, p { text-wrap: pretty; }
h1, h2, h3 { margin-top: 0; letter-spacing: -.045em; }
h1 {
  margin-bottom: 32px; max-width: 920px; font-size: clamp(64px, 6vw, 82px);
  line-height: .98; font-weight: 560;
}
.page-hero h1 { font-size: clamp(58px, 5.6vw, 78px); }
h1 em, h2 em, blockquote em { color: var(--orange); font-style: normal; font-weight: inherit; }
.hero-copy > p:not(.eyebrow) {
  max-width: 680px; margin: 0 0 36px; color: #494d49;
  font-size: clamp(17px, 1.45vw, 20px); line-height: 1.55;
}
.hero-visual {
  position: relative; z-index: 2; height: min(65vh, 650px); min-height: 450px;
  clip-path: polygon(13% 0, 100% 0, 100% 82%, 81% 100%, 0 100%, 0 18%);
}
.hero-visual::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(145deg, rgba(17,22,21,.04), rgba(17,22,21,.24));
}
.hero-visual img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.72) contrast(1.03); }
body[data-page="home"] .hero-visual img { object-position: 50% 50%; }
body[data-page="storage"] .hero-visual img { filter: grayscale(1) contrast(1.15) brightness(.65); }
.hero-tag {
  position: absolute; z-index: 2; left: 24px; bottom: 24px; color: #fff;
  font-size: 10px; letter-spacing: .18em; text-transform: uppercase;
}
.hero-orange {
  position: absolute; right: 35%; bottom: 9%; width: 210px; height: 115px;
  background: var(--orange); clip-path: polygon(0 23%, 86% 0, 100% 100%, 12% 100%);
}
.hero-green {
  position: absolute; right: -8vw; top: 8%; width: 23vw; height: 135px;
  background: var(--green); clip-path: polygon(10% 0, 100% 0, 88% 100%, 0 72%);
}
.hero-foot {
  position: absolute; z-index: 4; left: 50%; bottom: 26px; transform: translateX(-50%);
  display: flex; gap: 40px; color: var(--muted); font-size: 10px;
  letter-spacing: .14em; text-transform: uppercase;
}
.hero-foot a { margin-left: auto; color: var(--ink); }

.section { padding-block: clamp(100px, 11vw, 165px); }
.split-heading {
  display: grid; grid-template-columns: minmax(180px, 3fr) minmax(0, 8fr);
  gap: 56px; align-items: start;
}
.split-heading h2, .statement-grid h2 {
  margin-bottom: 34px; font-size: clamp(42px, 5vw, 70px); line-height: 1.04; font-weight: 520;
}
.lead { max-width: 780px; margin: 0; color: var(--muted); font-size: clamp(18px, 1.65vw, 23px); line-height: 1.55; }
.direction-index { margin-top: clamp(75px, 8vw, 120px); border-top: 1px solid var(--ink); }
.direction-row {
  min-height: 138px; display: grid; grid-template-columns: 90px 1fr 80px;
  gap: 24px; align-items: center; border-bottom: 1px solid var(--border);
  transition: color .28s, background .28s, padding .28s;
}
.direction-row:hover { padding-inline: 24px; color: var(--orange); background: rgba(255,255,255,.35); }
.direction-row.is-green:hover { color: var(--green); }
.direction-no { align-self: start; padding-top: 34px; color: var(--muted); font-size: 11px; letter-spacing: .15em; }
.direction-main { display: grid; grid-template-columns: minmax(280px, 1fr) minmax(260px, .8fr); gap: 40px; align-items: center; }
.direction-main strong { font-size: clamp(27px, 3vw, 42px); line-height: 1.05; font-weight: 500; letter-spacing: -.04em; }
.direction-main small { color: var(--muted); font-size: 15px; font-weight: 400; }
.direction-arrow { justify-self: end; font-size: 28px; transition: transform .3s var(--ease); }
.direction-row:hover .direction-arrow { transform: translate(6px, -6px); }

.industrial-panel {
  min-height: 760px; position: relative; display: grid; grid-template-columns: 58% 42%;
  background: var(--dark); color: var(--paper); overflow: hidden;
}
.industrial-photo { min-height: 760px; clip-path: polygon(0 0, 100% 0, 84% 100%, 0 100%); }
.industrial-photo img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.13) brightness(.7); }
.industrial-copy { align-self: center; max-width: 560px; padding: 90px 70px 90px 20px; }
.industrial-copy h2 {
  margin-bottom: 34px; font-size: clamp(43px, 4.4vw, 66px); line-height: 1.02; font-weight: 500;
}
.industrial-copy > p:not(.eyebrow) { color: #afb4af; }
.text-link {
  display: inline-flex; gap: 14px; align-items: center; margin-top: 28px;
  padding-bottom: 7px; border-bottom: 1px solid currentColor;
  font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
}
.text-link-light { color: var(--paper); }
.panel-code {
  position: absolute; right: 28px; bottom: 25px; color: #757b76;
  font-size: 9px; letter-spacing: .19em; writing-mode: vertical-rl;
}
.manifesto-grid {
  display: grid; grid-template-columns: 2fr 7fr 2fr; gap: 48px; align-items: end;
}
.manifesto blockquote {
  margin: 0; font-size: clamp(45px, 6vw, 84px); line-height: .99;
  font-weight: 500; letter-spacing: -.055em;
}
.manifesto-note { border-top: 1px solid var(--ink); padding-top: 20px; }
.manifesto-note p { margin-bottom: 0; color: var(--muted); font-size: 14px; }
.line-dot { display: block; width: 8px; height: 8px; margin-bottom: 24px; background: var(--orange); transform: rotate(45deg); }
.cta-band { position: relative; background: var(--orange); color: #fff; overflow: hidden; }
.cta-band::after {
  content: ""; position: absolute; right: -8vw; top: -120px; width: 38vw; height: 460px;
  border: 1px solid rgba(255,255,255,.35); transform: skewX(-23deg) rotate(8deg);
}
.cta-band-inner {
  min-height: 430px; position: relative; z-index: 2; display: grid;
  grid-template-columns: 2fr 6fr 2fr; gap: 40px; align-items: center;
}
.cta-band h2 { margin: 0; font-size: clamp(44px, 5vw, 72px); line-height: 1.03; font-weight: 520; }
.button-light { border-color: #fff; color: #fff; }
.button-light:hover { background: #fff; color: var(--orange); }

.statement-grid { display: grid; grid-template-columns: 2fr 6fr 3fr; gap: 50px; align-items: start; }
.statement-grid .lead { padding-top: 8px; font-size: 18px; }
.section-lines { padding-top: 0; }
.principles { border-top: 1px solid var(--ink); display: grid; grid-template-columns: repeat(3, 1fr); }
.principle { min-height: 350px; padding: 34px 38px; border-right: 1px solid var(--border); }
.principle:first-child { border-left: 1px solid var(--border); }
.principle span, .tech-item span, .process-list > li > span { color: var(--orange); font-size: 11px; letter-spacing: .16em; }
.principle h3 { margin-top: 120px; margin-bottom: 18px; font-size: 29px; font-weight: 520; }
.principle p { color: var(--muted); font-size: 15px; }
.dark-facts { padding-block: 120px; background: var(--dark); color: var(--paper); }
.dark-facts-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.dark-facts h2 { font-size: clamp(48px, 6vw, 84px); line-height: .9; font-weight: 520; }
.dark-facts h2 small { color: #767d77; font-size: .22em; letter-spacing: .28em; }
.dark-facts dl { margin: 0; border-top: 1px solid #3a403c; }
.dark-facts dl div { display: grid; grid-template-columns: 1fr 1.7fr; gap: 30px; padding: 28px 0; border-bottom: 1px solid #3a403c; }
.dark-facts dt { color: #8f958f; font-size: 12px; }
.dark-facts dd { margin: 0; }

.index-note { max-width: 560px; margin-left: 25%; }
.index-note > p:last-child { color: var(--muted); }
.directions-page .direction-index { margin-top: 70px; }
.image-sequence {
  min-height: 840px; position: relative; display: grid; grid-template-columns: 3fr 2fr;
  grid-template-rows: 1fr 1fr; padding: 100px 5vw; background: var(--graphite); color: var(--paper);
}
.image-sequence figure { position: relative; margin: 0; }
.image-sequence-a { grid-row: 1 / 3; width: 90%; height: 650px; align-self: center; clip-path: polygon(0 0, 100% 9%, 87% 100%, 0 88%); }
.image-sequence-b { width: 72%; height: 300px; justify-self: end; clip-path: polygon(13% 0, 100% 0, 100% 86%, 0 100%); }
.image-sequence img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.65) contrast(1.05); }
.image-sequence figcaption { position: absolute; left: 18px; bottom: 18px; font-size: 10px; letter-spacing: .14em; text-transform: uppercase; }
.image-sequence-copy { max-width: 540px; align-self: end; padding-left: 40px; }
.image-sequence-copy h2 { font-size: clamp(35px, 3.5vw, 52px); line-height: 1.05; font-weight: 500; }
.image-sequence-copy > p:last-child { color: #aeb3ae; }

.tech-list { margin-top: 90px; border-top: 1px solid var(--ink); }
.tech-item { display: grid; grid-template-columns: 100px 1fr 1fr; gap: 40px; padding: 42px 0; border-bottom: 1px solid var(--border); }
.tech-item h3 { margin: 0; font-size: clamp(27px, 3vw, 40px); font-weight: 500; }
.tech-item p { max-width: 590px; margin: 0; color: var(--muted); }
.feature-slab { min-height: 650px; display: grid; grid-template-columns: 2fr 1fr; background: #e6e1d7; }
.feature-slab-photo { min-height: 650px; clip-path: polygon(0 0, 94% 0, 100% 100%, 0 100%); overflow: hidden; }
.feature-slab-photo img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.7) contrast(1.05); }
body[data-page="storage"] .feature-slab-photo img { filter: grayscale(1) contrast(1.15) brightness(.62); }
.feature-slab-note { max-width: 430px; align-self: center; padding: 70px 60px; }
.feature-slab-note p { color: var(--muted); }

.process-list { margin-top: 90px; padding: 0; list-style: none; border-top: 1px solid var(--ink); }
.process-list li { display: grid; grid-template-columns: 120px 1fr; gap: 40px; padding: 52px 0; border-bottom: 1px solid var(--border); }
.process-list h3 { margin-bottom: 8px; font-size: 34px; font-weight: 520; }
.process-list p { max-width: 800px; margin: 0; color: var(--muted); }
.partner-note { position: relative; padding-block: 140px; background: var(--green); color: #fff; overflow: hidden; }
.partner-note::after {
  content: ""; position: absolute; width: 520px; height: 520px; right: -180px; top: -180px;
  border: 1px solid rgba(255,255,255,.28); transform: rotate(35deg);
}
.partner-note .shell { max-width: 980px; position: relative; z-index: 2; }
.partner-note h2 { font-size: clamp(50px, 6vw, 82px); line-height: 1.02; font-weight: 500; }
.partner-note p:last-child { max-width: 720px; color: #c5d1ca; }
.partner-note a { color: #fff; border-bottom: 1px solid currentColor; }

.contact-section { min-height: 620px; }
.contact-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 10vw; }
.contact-primary { display: flex; flex-direction: column; align-items: flex-start; }
.contact-big {
  padding: 18px 0; border-bottom: 1px solid var(--border);
  font-size: clamp(34px, 4vw, 62px); line-height: 1.05; letter-spacing: -.045em;
}
.contact-big:hover { color: var(--orange); }
.contact-mail { font-size: clamp(24px, 3vw, 44px); }
.contact-address { align-self: end; padding-top: 24px; border-top: 1px solid var(--ink); }
.contact-address span { display: block; margin-bottom: 20px; color: var(--muted); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; }
.contact-address strong { display: block; font-size: 20px; font-weight: 500; }
.contact-geometry { min-height: 640px; display: grid; align-items: center; background: var(--dark); color: #fff; clip-path: polygon(0 7%, 100% 0, 100% 100%, 0 100%); }
.contact-geometry-inner { padding-block: 110px 80px; }
.contact-geometry h2 { font-size: clamp(52px, 7vw, 98px); line-height: .94; font-weight: 500; }

.page-hero-plain { min-height: 590px; display: grid; align-items: center; background: #e8e3d9; }
.page-hero-copy { max-width: 1160px; padding-block: 100px; }
.page-hero-copy > p:last-child { max-width: 740px; color: var(--muted); font-size: 20px; }
.legal-grid { display: grid; grid-template-columns: 1fr 3fr; gap: 80px; }
.legal aside { color: var(--muted); }
.legal article { max-width: 860px; }
.legal article h2 { margin: 62px 0 18px; font-size: 32px; font-weight: 520; }
.legal article h2:first-child { margin-top: 0; }
.legal article p { color: #4f534f; }
.legal article a { border-bottom: 1px solid currentColor; }

.not-found { min-height: 780px; display: grid; align-items: center; position: relative; overflow: hidden; }
.not-found::after { content: "404"; position: absolute; right: -2vw; bottom: -15vw; color: #e2ddd4; font-size: 36vw; line-height: 1; font-weight: 700; z-index: -1; }
.not-found h1 { font-size: clamp(60px, 8vw, 116px); }
.not-found p:not(.eyebrow) { max-width: 580px; color: var(--muted); font-size: 20px; }
.not-found .text-link { margin-left: 24px; }

.site-footer { padding: 95px 0 24px; background: var(--dark); color: #dfe2de; }
.footer-top { display: grid; grid-template-columns: 1.3fr .7fr 1fr; gap: 80px; padding-bottom: 80px; }
.footer-brand { display: block; width: 220px; }
.footer-top > div p { color: #7f857f; }
.footer-top nav, .footer-top address { display: flex; flex-direction: column; align-items: flex-start; gap: 13px; }
.footer-top nav a, .footer-top address a { border-bottom: 1px solid transparent; }
.footer-top nav a:hover, .footer-top address a:hover { border-color: currentColor; }
.footer-top address span { max-width: 330px; margin-top: 14px; color: #858b85; font-size: 14px; }
.footer-bottom {
  display: grid; grid-template-columns: 1fr auto auto; gap: 40px; padding-top: 22px;
  border-top: 1px solid #323733; color: #7c827c; font-size: 11px; letter-spacing: .08em; text-transform: uppercase;
}

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1100px) {
  :root { --shell: min(100% - 44px, 1320px); }
  .header-inner { grid-template-columns: 210px 1fr auto; gap: 18px; }
  .desktop-nav { gap: 18px; }
  .desktop-nav a { font-size: 13px; }
  .header-cta { padding-inline: 16px; }
  .hero-shell { grid-template-columns: 1.08fr .92fr; gap: 42px; }
  h1 { font-size: clamp(54px, 6.4vw, 70px); }
  .cta-band-inner { grid-template-columns: 1fr 4fr 1.5fr; }
  .statement-grid { grid-template-columns: 1fr 3fr; }
  .statement-grid .lead { grid-column: 2; }
  .manifesto-grid { grid-template-columns: 1fr 5fr; }
  .manifesto-note { grid-column: 2; max-width: 330px; }
}

@media (max-width: 860px) {
  :root { --shell: calc(100vw - 36px); }
  body { font-size: 16px; }
  .site-header, .site-header.is-compact { height: 76px; }
  .header-inner { grid-template-columns: 1fr auto; }
  .brand { width: 184px; }
  .desktop-nav, .header-cta { display: none; }
  .menu-toggle {
    width: 48px; height: 48px; padding: 0; border: 0; background: transparent;
    display: grid; place-content: center; gap: 7px;
  }
  .menu-toggle span { width: 25px; height: 1px; background: var(--ink); transition: transform .25s; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .mobile-menu {
    position: fixed; inset: 76px 0 auto; padding: 30px 18px 36px;
    background: var(--paper); border-bottom: 1px solid var(--border);
  }
  .mobile-menu.is-open { display: block; }
  .mobile-menu nav { display: flex; flex-direction: column; margin-bottom: 26px; }
  .mobile-menu nav a { padding: 16px 0; border-bottom: 1px solid var(--border); font-size: 24px; }
  .home-hero, .page-hero { min-height: auto; }
  .hero-shell { grid-template-columns: 1fr; padding-block: 76px 100px; }
  .hero-copy { max-width: 760px; }
  .hero-visual { width: 78%; height: 440px; min-height: 0; margin-left: auto; }
  .hero-orange { right: 60%; bottom: 4%; }
  .hero-green { right: -10vw; top: 49%; width: 35vw; }
  .hero-foot { bottom: 18px; }
  .section { padding-block: 100px; }
  .split-heading { grid-template-columns: 1fr; gap: 30px; }
  .direction-main { grid-template-columns: 1fr; gap: 8px; }
  .industrial-panel { grid-template-columns: 1fr; }
  .industrial-photo { min-height: 520px; clip-path: polygon(0 0, 100% 0, 92% 100%, 0 90%); }
  .industrial-copy { padding: 70px var(--shell); padding-inline: 18px; margin-inline: auto; }
  .manifesto-grid { grid-template-columns: 1fr; }
  .manifesto-note { grid-column: auto; }
  .cta-band-inner { grid-template-columns: 1fr; padding-block: 80px; }
  .statement-grid { grid-template-columns: 1fr; }
  .statement-grid .lead { grid-column: auto; }
  .principles { grid-template-columns: 1fr; }
  .principle { min-height: auto; border-left: 1px solid var(--border); border-bottom: 1px solid var(--border); }
  .principle h3 { margin-top: 55px; }
  .dark-facts-grid { grid-template-columns: 1fr; }
  .image-sequence { grid-template-columns: 1fr; grid-template-rows: auto; gap: 40px; }
  .image-sequence-a { grid-row: auto; width: 100%; height: 500px; }
  .image-sequence-b { width: 60%; justify-self: end; }
  .image-sequence-copy { padding-left: 0; }
  .tech-item { grid-template-columns: 70px 1fr; }
  .tech-item p { grid-column: 2; }
  .feature-slab { grid-template-columns: 1fr; }
  .feature-slab-photo { min-height: 500px; clip-path: polygon(0 0, 100% 0, 92% 100%, 0 100%); }
  .feature-slab-note { padding: 70px 18px; }
  .contact-grid { grid-template-columns: 1fr; gap: 90px; }
  .legal-grid { grid-template-columns: 1fr; gap: 50px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-top address { grid-column: 1 / 3; }
}

@media (max-width: 560px) {
  :root { --shell: calc(100vw - 32px); }
  h1, .page-hero h1 { font-size: clamp(39px, 11.5vw, 48px); line-height: 1.02; }
  .hero-copy > p:not(.eyebrow) { font-size: 16px; }
  .hero-shell { gap: 50px; padding-block: 58px 92px; }
  .hero-visual { width: 92%; height: 340px; }
  .hero-orange { width: 130px; height: 74px; right: 54%; }
  .hero-green { width: 48vw; height: 80px; }
  .hero-foot { gap: 16px; }
  .hero-foot span:nth-child(2) { display: none; }
  .section { padding-block: 76px; }
  .split-heading h2, .statement-grid h2 { font-size: 37px; }
  .lead { font-size: 17px; }
  .direction-index { margin-top: 55px; }
  .direction-row { min-height: 118px; grid-template-columns: 46px 1fr 30px; gap: 10px; }
  .direction-row:hover { padding-inline: 6px; }
  .direction-main strong { font-size: 25px; }
  .direction-main small { font-size: 13px; }
  .industrial-photo { min-height: 390px; }
  .industrial-copy { padding: 64px 16px; }
  .manifesto blockquote { font-size: 43px; }
  .cta-band-inner { min-height: 390px; }
  .cta-band h2 { font-size: 39px; }
  .dark-facts dl div { grid-template-columns: 1fr; gap: 8px; }
  .index-note { margin-left: 0; }
  .image-sequence { min-height: auto; padding: 70px 16px; }
  .image-sequence-a { height: 380px; }
  .image-sequence-b { width: 78%; height: 230px; }
  .tech-list { margin-top: 60px; }
  .tech-item { grid-template-columns: 40px 1fr; gap: 18px; padding: 34px 0; }
  .tech-item h3 { font-size: 27px; }
  .feature-slab-photo { min-height: 370px; }
  .process-list li { grid-template-columns: 48px 1fr; gap: 18px; }
  .partner-note { padding-block: 100px; }
  .contact-big { font-size: 31px; }
  .contact-mail { font-size: 22px; overflow-wrap: anywhere; }
  .contact-geometry { min-height: 540px; }
  .page-hero-plain { min-height: 500px; }
  .not-found .text-link { display: block; width: max-content; margin-left: 0; }
  .footer-top { grid-template-columns: 1fr; gap: 50px; }
  .footer-top address { grid-column: auto; }
  .footer-bottom { grid-template-columns: 1fr; gap: 14px; }
}

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

/* Refined homepage — architectural editorial direction */
.home-hero-v2 {
  min-height: 770px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  background: #f5f2eb;
}
.home-hero-v2::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 35%;
  height: 1px;
  background: var(--border);
}
.home-hero-v2-inner {
  min-height: 770px;
  display: grid;
  grid-template-columns: minmax(390px, .78fr) minmax(620px, 1.22fr);
  align-items: stretch;
  gap: 0;
}
.home-hero-v2-copy {
  position: relative;
  z-index: 3;
  align-self: center;
  max-width: 610px;
  padding: 92px 60px 98px 0;
}
.home-hero-v2-copy h1 {
  max-width: 590px;
  margin-bottom: 30px;
  font-size: clamp(58px, 5.2vw, 76px);
  line-height: 1.01;
  font-weight: 610;
  letter-spacing: -.055em;
}
.home-hero-v2-copy h1 br { display: block; }
.home-hero-v2-copy h1 em { color: inherit; }
.home-hero-v2-copy > p {
  max-width: 520px;
  margin: 0;
  color: #4d514e;
  font-size: 17px;
  line-height: 1.58;
}
.home-hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 38px;
}
.button-orange {
  border-color: var(--orange);
  background: var(--orange);
  color: #fff;
}
.button-orange:hover {
  border-color: var(--ink);
  background: var(--ink);
}
.home-hero-link {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--ink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .05em;
}
.home-hero-location {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 52px;
}
.home-hero-location > span {
  width: 1px;
  height: 48px;
  background: var(--ink);
}
.home-hero-location p {
  margin: 0;
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  line-height: 1.45;
}
.home-hero-location small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .08em;
}
.home-hero-v2-visual {
  width: calc(100% + max(32px, (100vw - 1320px) / 2));
  min-height: 770px;
  position: relative;
  overflow: hidden;
  clip-path: polygon(18% 16%, 100% 0, 100% 100%, 0 100%, 9% 45%);
}
.home-hero-v2-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(17, 22, 21, .08);
  pointer-events: none;
}
.home-hero-v2-visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 56% center;
}
.home-hero-accent {
  position: absolute;
  z-index: 2;
  right: -2%;
  bottom: -1px;
  width: 58%;
  height: 25%;
  background: rgba(200, 84, 26, .94);
  clip-path: polygon(36% 0, 100% 58%, 100% 100%, 0 100%);
}
.home-hero-caption {
  position: absolute;
  z-index: 3;
  right: 30px;
  bottom: 28px;
  max-width: 360px;
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.home-sectors {
  padding: clamp(95px, 9vw, 140px) 0;
}
.home-section-head {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 470px);
  gap: 60px;
  align-items: end;
  margin-bottom: 48px;
}
.home-section-head h2 {
  margin: 0;
  font-size: clamp(40px, 4vw, 58px);
  line-height: 1.05;
  font-weight: 610;
}
.home-section-head h2::after {
  content: "";
  display: block;
  width: 42px;
  height: 2px;
  margin-top: 18px;
  background: var(--orange);
}
.home-section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}
.sector-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--border);
}
.sector-card {
  min-height: 320px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.sector-card:nth-child(even) { border-right: 0; }
.sector-card:nth-child(n+3) { border-bottom: 0; }
.sector-card:hover {
  position: relative;
  z-index: 2;
  transform: translateY(-3px);
  box-shadow: 0 20px 45px rgba(17, 22, 21, .12);
}
.sector-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
  padding: 38px 34px 32px;
}
.sector-copy h3 {
  max-width: 100%;
  margin-bottom: 18px;
  font-size: clamp(25px, 2.4vw, 35px);
  line-height: 1.03;
  font-weight: 570;
  overflow-wrap: anywhere;
}
.sector-image { min-width: 0; }
.sector-card:nth-child(2) .sector-copy h3 {
  font-size: clamp(23px, 1.5vw, 28px);
  letter-spacing: -.035em;
}
.sector-copy p {
  margin: 0;
  color: inherit;
  opacity: .68;
  font-size: 14px;
  line-height: 1.48;
}
.sector-copy > span {
  display: inline-flex;
  gap: 14px;
  align-items: center;
  margin-top: auto;
  padding-top: 24px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
}
.sector-copy b { font-size: 18px; font-weight: 400; transition: transform .25s; }
.sector-card:hover .sector-copy b { transform: translate(4px, -4px); }
.sector-image { min-width: 0; overflow: hidden; }
.sector-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.68) contrast(1.04);
  transition: transform .8s var(--ease), filter .4s;
}
.sector-card:hover .sector-image img {
  transform: scale(1.035);
  filter: saturate(.8) contrast(1.03);
}
.sector-dark { background: var(--green); color: #fff; }
.sector-graphite { background: var(--dark); color: #fff; }
.sector-light { background: #ebe7df; color: var(--ink); }
.sector-paper { background: #f7f4ee; color: var(--ink); }
.sector-card:nth-child(2) .sector-image,
.sector-card:nth-child(4) .sector-image { order: 2; }

.home-request {
  min-height: 670px;
  display: grid;
  grid-template-columns: 54% 46%;
  overflow: hidden;
  background: var(--dark);
  color: #fff;
}
.home-request-photo {
  min-height: 670px;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 88% 100%, 0 100%);
}
.home-request-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(.85) contrast(1.12) brightness(.62);
}
.home-request-copy {
  align-self: center;
  max-width: 610px;
  padding: 90px 70px 90px 10px;
}
.section-kicker {
  margin: 0 0 26px;
  color: var(--orange);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.section-kicker::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 1px;
  margin-right: 11px;
  background: currentColor;
  vertical-align: middle;
}
.home-request h2 {
  margin-bottom: 28px;
  font-size: clamp(42px, 4.5vw, 66px);
  line-height: 1.02;
  font-weight: 560;
}
.home-request-copy > p:not(.section-kicker) {
  max-width: 540px;
  margin-bottom: 34px;
  color: #aeb3ae;
}

.home-about {
  padding: clamp(95px, 10vw, 150px) 0;
}
.home-about-grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: clamp(70px, 10vw, 150px);
  align-items: start;
}
.home-about-copy h2 {
  max-width: 770px;
  margin-bottom: 30px;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.02;
  font-weight: 560;
}
.home-about-copy > p:not(.section-kicker) {
  max-width: 700px;
  color: var(--muted);
  font-size: 18px;
}
.home-about-facts {
  border-top: 1px solid var(--ink);
}
.home-about-facts > div {
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.home-about-facts strong {
  display: block;
  margin-bottom: 6px;
  font-size: 20px;
  font-weight: 590;
}
.home-about-facts span {
  display: block;
  color: var(--muted);
  font-size: 14px;
}
.home-contact-band {
  position: relative;
  overflow: hidden;
  background: var(--orange);
  color: #fff;
}
.home-contact-band::after {
  content: "";
  position: absolute;
  right: -4%;
  top: -90%;
  width: 33%;
  height: 250%;
  border-left: 1px solid rgba(255, 255, 255, .28);
  transform: skewX(-24deg);
}
.home-contact-band > .shell {
  min-height: 310px;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}
.section-kicker-light { color: rgba(255,255,255,.72); }
.home-contact-band h2 {
  margin: 0;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.02;
  font-weight: 560;
}
.button-dark {
  min-width: 210px;
  border-color: var(--dark);
  background: var(--dark);
  color: #fff;
}
.button-dark:hover { background: #fff; color: var(--dark); border-color: #fff; }

.direction-row { grid-template-columns: 1fr 80px; }
.direction-main { grid-column: 1; }
.direction-arrow { grid-column: 2; }

@media (max-width: 1100px) {
  .home-hero-v2-inner {
    grid-template-columns: minmax(360px, .85fr) minmax(500px, 1.15fr);
  }
  .home-hero-v2-copy { padding-right: 35px; }
  .sector-card { min-height: 300px; }
  .sector-copy { padding: 30px 26px; }
}

@media (max-width: 860px) {
  .home-hero-v2,
  .home-hero-v2-inner { min-height: auto; }
  .home-hero-v2-inner {
    width: 100%;
    grid-template-columns: 1fr;
  }
  .home-hero-v2-copy {
    width: var(--shell);
    max-width: none;
    margin-inline: auto;
    padding: 74px 0 64px;
  }
  .home-hero-v2-copy h1 { max-width: 700px; }
  .home-hero-v2-visual {
    width: 100%;
    min-height: 520px;
    clip-path: polygon(0 11%, 100% 0, 100% 100%, 0 100%);
  }
  .home-hero-caption { right: 20px; }
  .home-section-head { grid-template-columns: 1fr; gap: 24px; }
  .sector-grid { grid-template-columns: 1fr; }
  .sector-card,
  .sector-card:nth-child(even),
  .sector-card:nth-child(n+3) {
    min-height: 300px;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }
  .sector-card:last-child { border-bottom: 0; }
  .home-request { grid-template-columns: 1fr; }
  .home-request-photo { min-height: 500px; clip-path: polygon(0 0, 100% 0, 100% 89%, 0 100%); }
  .home-request-copy { padding: 70px 18px 90px; margin-inline: auto; }
  .home-about-grid { grid-template-columns: 1fr; gap: 70px; }
}

@media (max-width: 560px) {
  .home-hero-v2-copy { padding-top: 58px; }
  .home-hero-v2-copy h1 { font-size: 43px; }
  .home-hero-v2-copy > p { font-size: 16px; }
  .home-hero-actions { align-items: flex-start; flex-direction: column; gap: 22px; }
  .home-hero-location { margin-top: 38px; }
  .home-hero-v2-visual { min-height: 390px; }
  .home-hero-accent { width: 72%; height: 24%; }
  .home-hero-caption { left: 18px; right: 18px; bottom: 18px; }
  .home-sectors { padding: 76px 0; }
  .sector-card { grid-template-columns: 1fr; }
  .sector-copy { min-height: 245px; }
  .sector-image,
  .sector-card:nth-child(2) .sector-image,
  .sector-card:nth-child(4) .sector-image { min-height: 230px; order: 2; }
  .home-request-photo { min-height: 390px; }
  .home-request h2,
  .home-about-copy h2 { font-size: 39px; }
  .home-contact-band > .shell {
    min-height: 380px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }
}

/* Content-rich direction profiles */
.direction-row { min-height: 210px; }
.direction-main { align-items: start; }
.direction-summary { display: block; }
.direction-summary small { display: block; line-height: 1.55; }
.direction-summary ul,
.sector-copy ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}
.direction-summary li,
.sector-copy li {
  position: relative;
  padding: 5px 0 5px 17px;
  font-size: 12px;
  line-height: 1.35;
}
.direction-summary li::before,
.sector-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 7px;
  height: 1px;
  background: currentColor;
  opacity: .55;
}
.sector-card { min-height: 410px; }
.sector-copy { padding: 34px 30px 28px; }
.sector-copy h3 { margin-bottom: 14px; }
.sector-copy ul { margin-top: 14px; opacity: .82; }
.sector-copy li { font-size: 11px; }
.sector-copy > span { padding-top: 18px; }
.tech-item { grid-template-columns: minmax(260px, .8fr) minmax(0, 1.2fr); gap: 64px; }
.process-list li { grid-template-columns: 1fr; }
.principle h3 { margin-top: 38px; }

@media (max-width: 1100px) {
  .sector-card { min-height: 430px; }
  .sector-copy { padding: 30px 24px 26px; }
  .sector-copy h3 { font-size: 27px; }
  .direction-main { grid-template-columns: minmax(240px, .85fr) minmax(300px, 1.15fr); }
}

@media (max-width: 860px) {
  .sector-card,
  .sector-card:nth-child(even),
  .sector-card:nth-child(n+3) { min-height: 410px; }
  .direction-main { grid-template-columns: minmax(220px, .8fr) minmax(0, 1.2fr); gap: 28px; }
  .tech-item { grid-template-columns: minmax(220px, .75fr) minmax(0, 1.25fr); gap: 36px; }
}

@media (max-width: 560px) {
  .sector-card,
  .sector-card:nth-child(even),
  .sector-card:nth-child(n+3) { min-height: auto; }
  .sector-copy { min-height: 355px; }
  .direction-row { min-height: auto; padding-block: 34px; grid-template-columns: 1fr 30px; }
  .direction-main { grid-template-columns: 1fr; gap: 18px; }
  .direction-summary ul { margin-top: 14px; }
  .tech-item { grid-template-columns: 1fr; gap: 16px; }
  .tech-item p { grid-column: auto; }
}

.detail-gallery-section {
  padding: 0 0 clamp(100px, 11vw, 165px);
}
.detail-gallery-head {
  display: grid;
  grid-template-columns: minmax(180px, 3fr) minmax(0, 8fr);
  gap: 56px;
  align-items: start;
  margin-bottom: 54px;
}
.detail-gallery-head h2 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(38px, 4.4vw, 62px);
  line-height: 1.03;
  font-weight: 540;
}
.detail-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(280px, .82fr);
  grid-template-rows: 310px 310px;
  gap: 2px;
  background: var(--border);
}
.detail-gallery-item {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: var(--graphite);
}
.detail-gallery-item:first-child { grid-row: 1 / span 2; }
.detail-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.72) contrast(1.03);
  transition: transform .8s var(--ease), filter .4s;
}
.detail-gallery-item:hover img {
  transform: scale(1.025);
  filter: saturate(.9) contrast(1.02);
}
.detail-gallery-item::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 44%;
  background: linear-gradient(to top, rgba(17,22,21,.74), transparent);
  pointer-events: none;
}
.detail-gallery-item figcaption {
  position: absolute;
  z-index: 2;
  left: 24px;
  right: 24px;
  bottom: 22px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

@media (max-width: 760px) {
  .detail-gallery-head { grid-template-columns: 1fr; gap: 20px; margin-bottom: 34px; }
  .detail-gallery { grid-template-columns: 1fr; grid-template-rows: none; }
  .detail-gallery-item,
  .detail-gallery-item:first-child { min-height: 310px; grid-row: auto; }
  .detail-gallery-item:first-child { min-height: 440px; }
}
