:root {
  --black: #050505;
  --coal: #0b0b0b;
  --paper: #f4f1ea;
  --paper-white: #fbfaf7;
  --paper-2: #e7e3da;
  --ink: #161616;
  --muted: #757575;
  --line-light: rgba(255,255,255,.24);
  --line-dark: rgba(0,0,0,.12);
  --warm: #c7bda8;
  --font-sans: Inter, "Helvetica Neue", Arial, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --type-hero: 5rem;
  --type-display: 4rem;
  --type-h1: 3.5rem;
  --type-h2: 2.75rem;
  --type-h3: 1.625rem;
  --type-h4: 1.25rem;
  --type-body-lg: 1.125rem;
  --type-body: 1rem;
  --type-body-sm: .9375rem;
  --type-label: .75rem;
  --type-cta: .8125rem;
  --leading-hero: 1.05;
  --leading-heading: 1.12;
  --leading-title: 1.2;
  --leading-body: 1.7;
  --leading-relaxed: 1.8;
  --leading-label: 1.2;
  --tracking-normal: 0;
  --tracking-label: .12em;
  --tracking-cta: .14em;
  --tracking-nav-label: .08em;
  --container-wide: 1520px;
  --container: 1320px;
  --container-narrow: 1040px;
  --container-text: 720px;
  --container-pad: 5rem;
  --section-xl: 10rem;
  --section-lg: 8.75rem;
  --section-md: 6.25rem;
  --section-sm: 5rem;
  --gap-xs: .75rem;
  --gap-sm: 1rem;
  --gap-md: 1.5rem;
  --gap-lg: 2.5rem;
  --gap-xl: 5rem;
  --motion-ease: cubic-bezier(.25,.1,.25,1);
  --motion-soft: cubic-bezier(.22,.61,.36,1);
  --motion-section-ease: cubic-bezier(.19,1,.22,1);
  --motion-reveal-duration: 1120ms;
  --motion-reveal-distance: 42px;
  --motion-section-scale: .985;
  --motion-fast: 280ms;
  --max: var(--container);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html.doc-page-home {
  scroll-snap-type: y mandatory;
  scroll-padding-top: 0;
}
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--type-body);
  font-weight: 300;
  line-height: var(--leading-body);
  color: var(--ink);
  background: #fff;
  letter-spacing: var(--tracking-normal);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.page-home { background: #fff; color: var(--ink); }
main { background: #fff; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; object-fit: cover; }

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  height: 74px;
  color: #fff;
  background: transparent;
  transition: background .25s ease, color .25s ease, border-color .25s ease, backdrop-filter .25s ease;
}
.site-header.scrolled {
  color: #111;
  background: rgba(242,240,234,.9);
  border-bottom: 1px solid var(--line-dark);
  backdrop-filter: blur(16px);
}
.header-inner {
  height: 100%;
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr) 240px;
  align-items: center;
  padding: 0 42px;
}
.brand { font-size: 22px; font-weight: 700; text-transform: uppercase; letter-spacing: .02em; white-space: nowrap; }
.brand img { max-height: 40px; max-width: 220px; object-fit: contain; }
.main-nav {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: var(--tracking-nav-label);
  text-transform: uppercase;
}
.nav-item { height: 100%; display: flex; align-items: center; }
.nav-item > a { height: 100%; display: flex; align-items: center; white-space: nowrap; transition: opacity .2s ease; }
.nav-item > a:hover { opacity: .62; }
.header-actions { display: flex; justify-content: flex-end; align-items: center; gap: 10px; }
.header-icon-action {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.42);
  border-radius: 50%;
  background: rgba(255,255,255,.03);
  color: currentColor;
  cursor: pointer;
  transition: border-color var(--motion-fast) ease, background var(--motion-fast) ease, transform var(--motion-fast) var(--motion-ease);
}
.site-header.scrolled .header-icon-action,
body.nav-open .header-icon-action {
  border-color: rgba(0,0,0,.22);
  background: rgba(255,255,255,.24);
}
.header-icon-action:hover { transform: translateY(-1px); border-color: currentColor; }
.header-icon-action svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.nav-toggle { display: none; width: 42px; height: 42px; border: 0; background: transparent; color: currentColor; }
.nav-toggle span { display: block; height: 1px; background: currentColor; margin: 8px; }

body.search-open { overflow: hidden; }
.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 180;
  display: grid;
  place-items: start center;
  padding: 92px var(--container-pad) 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--motion-medium) ease;
}
.search-overlay[aria-hidden="false"] { opacity: 1; pointer-events: auto; }
.search-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(8,8,8,.46);
  cursor: default;
}
.search-panel {
  position: relative;
  width: min(880px, 100%);
  max-height: calc(100vh - 124px);
  overflow: auto;
  padding: 38px;
  background: rgba(251,250,247,.96);
  color: #111;
  border: 1px solid rgba(255,255,255,.72);
  box-shadow: 0 34px 92px rgba(0,0,0,.18);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transform: translateY(16px);
  transition: transform var(--motion-medium) var(--motion-ease);
}
.search-overlay[aria-hidden="false"] .search-panel { transform: translateY(0); }
.search-panel-head { display: flex; justify-content: space-between; gap: 24px; align-items: start; margin-bottom: 28px; }
.search-panel-head p {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: var(--type-label);
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
}
.search-panel-head h2 { margin: 0; max-width: 540px; font-size: var(--type-h2); line-height: var(--leading-heading); font-weight: 300; }
.search-close {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(0,0,0,.18);
  background: transparent;
  color: #111;
  cursor: pointer;
}
.search-close svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.4; stroke-linecap: round; }
.search-field { display: grid; gap: 10px; }
.search-field span {
  color: var(--muted);
  font-size: var(--type-label);
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
}
.search-field input {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(0,0,0,.28);
  padding: 16px 0;
  background: transparent;
  color: #111;
  font: inherit;
  font-size: var(--type-body-lg);
  outline: none;
}
.search-results { display: grid; margin-top: 26px; border-top: 1px solid rgba(0,0,0,.1); }
.search-results a {
  display: grid;
  gap: 7px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(0,0,0,.08);
}
.search-results a:hover strong { opacity: .64; }
.search-results span {
  color: var(--muted);
  font-size: var(--type-label);
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
}
.search-results strong { font-size: var(--type-h4); line-height: var(--leading-title); font-weight: 400; transition: opacity var(--motion-fast) ease; }
.search-results small { max-width: 620px; color: #666; font-size: var(--type-body-sm); line-height: 1.55; }
.search-empty { margin: 24px 0 0; color: #666; }

.mega-menu {
  display: none;
  position: fixed;
  top: 74px;
  left: 0;
  right: 0;
  padding: 18px 42px 0;
  color: #111;
  background: transparent;
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
}
.has-mega:hover > .mega-menu,
.has-mega:focus-within > .mega-menu {
  display: block;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  animation: megaReveal .46s cubic-bezier(.18,.72,.18,1) both;
}
@keyframes megaReveal {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}
.mega-panel {
  max-width: min(1450px, calc(100vw - 84px));
  margin: 0 auto;
  padding: 56px 64px 62px;
  display: grid;
  grid-template-columns: minmax(300px, 360px) minmax(0, 1fr);
  gap: 96px;
  background: rgba(251,250,247,.68);
  border: 1px solid rgba(255,255,255,.62);
  box-shadow: 0 32px 92px rgba(0,0,0,.105), 0 1px 0 rgba(255,255,255,.5) inset;
  backdrop-filter: blur(24px) saturate(1.04);
  -webkit-backdrop-filter: blur(24px) saturate(1.04);
}
.mega-feature { display: grid; gap: 18px; align-content: start; }
.mega-feature img { width: 100%; aspect-ratio: 32/21; background: #ddd; filter: saturate(.88) contrast(.96); transition: transform .9s cubic-bezier(.18,.72,.18,1), filter .9s ease; }
.mega-feature:hover img { transform: scale(1.018); filter: saturate(1) contrast(1); }
.mega-feature p,
.section-copy p,
.page-intro p,
.product-hero-copy p,
.project-card p,
.about-card p,
.product-spec-panel p,
.product-story-panel p {
  margin: 0 0 12px;
  font-size: var(--type-label);
  line-height: var(--leading-label);
  letter-spacing: var(--tracking-label);
  font-weight: 400;
  text-transform: uppercase;
  color: var(--muted);
}
.mega-feature p { font-size: 10px; letter-spacing: .12em; color: rgba(25,25,25,.5); }
.mega-feature h3 { margin: 0; max-width: 12ch; font-size: 34px; line-height: 1; font-weight: 300; }
.mega-feature span { width: fit-content; border-bottom: 1px solid rgba(0,0,0,.72); padding-bottom: 8px; font-size: 10px; text-transform: uppercase; letter-spacing: .1em; }
.mega-columns { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); column-gap: 44px; row-gap: 52px; align-items: start; }
.mega-card {
  min-width: 0;
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: stretch;
  line-height: 1.35;
}
.mega-card img { width: 100%; aspect-ratio: 1.34; background: #ddd; filter: saturate(.86) contrast(.98); transition: transform .85s cubic-bezier(.18,.72,.18,1), filter .85s ease; }
.mega-card:hover img { transform: translateY(-5px) scale(1.01); filter: saturate(1) contrast(1); }
.mega-card-copy { display: flex; flex-direction: column; gap: 16px; min-width: 0; }
.mega-card strong { display: block; font-size: 18px; font-weight: 300; line-height: 1.12; }
.mega-card small {
  display: -webkit-box;
  max-width: 26ch;
  color: rgba(25,25,25,.42);
  font-size: 12.5px;
  font-weight: 300;
  line-height: 2;
  letter-spacing: .01em;
  text-transform: none;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.mega-link-grid { grid-template-columns: repeat(2, minmax(260px, 1fr)); column-gap: 86px; row-gap: 10px; align-content: start; }
.mega-link-grid .text-card {
  min-height: 0;
  padding: 34px 0 36px;
  border-top: 1px solid rgba(0,0,0,.095);
  background: transparent;
  justify-content: flex-start;
  transition: border-color .38s ease, transform .46s cubic-bezier(.18,.72,.18,1), color .38s ease;
}
.mega-link-grid .text-card:hover { border-color: rgba(0,0,0,.34); color: #000; transform: translateX(10px); }

.nav-index-panel {
  background: rgba(251,250,247,.94);
  border-color: rgba(255,255,255,.72);
  box-shadow: 0 28px 82px rgba(0,0,0,.13), 0 1px 0 rgba(255,255,255,.62) inset;
  backdrop-filter: blur(16px) saturate(1.02);
  -webkit-backdrop-filter: blur(16px) saturate(1.02);
}
.nav-index-panel,
.product-menu-panel {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
  gap: 92px;
  align-items: start;
}
.nav-index-panel.no-promo {
  max-width: min(760px, calc(100vw - 84px));
  grid-template-columns: minmax(0, 1fr);
}
.nav-index-columns,
.product-menu-columns {
  display: grid;
  grid-template-columns: repeat(5, minmax(120px, 1fr));
  column-gap: 46px;
  row-gap: 42px;
  align-items: start;
  padding-top: 6px;
}
.nav-index-panel.no-promo .nav-index-columns {
  grid-template-columns: repeat(2, minmax(120px, 1fr));
}
.nav-index-group,
.product-menu-group {
  min-width: 0;
  display: grid;
  gap: 28px;
  align-content: start;
}
.nav-index-heading,
.product-menu-heading {
  display: inline-flex;
  max-width: 13ch;
  color: #151515;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: .01em;
  transition: opacity .28s ease;
}
.nav-index-heading:hover,
.product-menu-heading:hover { opacity: .58; }
.nav-index-links,
.product-menu-links {
  display: grid;
  gap: 15px;
}
.nav-index-links a,
.product-menu-links a {
  color: rgba(20,20,20,.54);
  font-size: 12.5px;
  line-height: 1.45;
  font-weight: 300;
  transition: color .28s ease, transform .28s cubic-bezier(.18,.72,.18,1);
}
.nav-index-links a:hover,
.product-menu-links a:hover {
  color: #111;
  transform: translateX(4px);
}
.nav-menu-promo,
.product-menu-promo {
  justify-self: end;
  width: min(360px, 100%);
}
.nav-menu-promo h3,
.product-menu-promo h3 {
  max-width: 12ch;
}

.home-sections { background: #fff; }
.mobile-home-image { display: none; }
.snap-section {
  min-height: 100svh;
  position: relative;
  display: grid;
  align-items: center;
  padding: var(--section-md) var(--container-pad) var(--section-sm);
  overflow: hidden;
}
html.doc-page-home .snap-section,
html.doc-page-home .site-footer { scroll-snap-align: start; scroll-snap-stop: always; }
.hero-section {
  min-height: clamp(720px, 100svh, 960px);
  padding: 0;
  background: #060606;
}
.hero-slides,
.hero-slide { position: absolute; inset: 0; }
.hero-slide {
  visibility: hidden;
  opacity: 0;
  display: grid;
  align-items: center;
  background-size: cover;
  background-position: center;
  transform: scale(1.025);
  transition: opacity 1.25s var(--motion-soft), transform 7.2s cubic-bezier(.18,.72,.18,1);
}
.hero-slide.active { visibility: visible; opacity: 1; transform: scale(1); }
.hero-slide::after,
.visual-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.44), rgba(0,0,0,.14) 42%, rgba(0,0,0,.04) 72%, rgba(0,0,0,.1)),
    linear-gradient(to top, rgba(0,0,0,.16), transparent 44%);
  pointer-events: none;
}
.hero-copy {
  position: relative;
  z-index: 2;
  margin-left: var(--container-pad);
  max-width: 680px;
  color: #fff;
  text-shadow: 0 2px 24px rgba(0,0,0,.34);
}
.hero-slide .hero-copy > * {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity .9s var(--motion-soft),
    transform .9s var(--motion-soft);
}
.hero-slide.active .hero-copy > * {
  opacity: 1;
  transform: translateY(0);
}
.hero-slide.active .hero-copy p { transition-delay: .12s; }
.hero-slide.active .hero-copy h1 { transition-delay: .22s; }
.hero-slide.active .hero-copy span { transition-delay: .34s; }
.hero-slide.active .hero-copy a { transition-delay: .46s; }
.hero-copy p {
  margin: 0 0 18px;
  font-size: var(--type-label);
  line-height: var(--leading-label);
  letter-spacing: var(--tracking-label);
  font-weight: 400;
  text-transform: uppercase;
}
.hero-copy h1,
.section-copy h2,
.founder-copy h2 {
  margin: 0 0 1.75rem;
  font-size: var(--type-display);
  line-height: var(--leading-hero);
  font-weight: 300;
  letter-spacing: 0;
}
.hero-copy h1 {
  font-size: var(--type-hero);
  max-width: 11ch;
}
.hero-copy span,
.section-copy span,
.founder-copy span {
  display: block;
  max-width: 540px;
  margin-bottom: 2.25rem;
  color: rgba(255,255,255,.78);
  font-size: var(--type-body-lg);
  line-height: var(--leading-body);
  font-weight: 300;
}
.hero-copy a,
.section-copy a,
.founder-copy a,
.outline-link,
.footer-cta,
.resource-card a,
.contact-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: .875rem 2rem;
  border: 1px solid currentColor;
  background: transparent;
  text-transform: uppercase;
  font-size: var(--type-cta);
  line-height: 1.2;
  letter-spacing: var(--tracking-cta);
  font-weight: 400;
  transition: background var(--motion-fast) ease, color var(--motion-fast) ease, transform var(--motion-fast) var(--motion-ease);
}
.hero-copy a:hover,
.section-copy a:hover,
.founder-copy a:hover,
.outline-link:hover,
.footer-cta:hover,
.resource-card a:hover,
.contact-form button:hover {
  transform: translateY(-2px);
}
.hero-dots { position: absolute; z-index: 4; left: var(--container-pad); bottom: 48px; display: flex; gap: 10px; }
.hero-dots button { width: 34px; height: 3px; border: 0; background: rgba(255,255,255,.35); cursor: pointer; }
.hero-dots button.active { background: #fff; }
.slide-count { position: absolute; z-index: 4; right: var(--container-pad); bottom: 52px; color: #fff; font-size: 13px; }

.home-product-section {
  grid-template-columns: minmax(300px, .58fr) minmax(0, 1.42fr);
  gap: clamp(56px, 6vw, 112px);
  align-items: center;
  color: #111;
  background: #fff;
}
.section-copy { max-width: var(--container-text); }
.section-copy p { color: var(--muted); }
.home-product-section .section-copy {
  align-self: center;
  max-width: 520px;
}
.home-product-section .section-copy h2 {
  max-width: 10.5ch;
  margin-bottom: 2.5rem;
}
.home-product-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.08fr) repeat(2, minmax(190px, .78fr));
  grid-auto-rows: minmax(260px, auto);
  gap: clamp(18px, 1.7vw, 28px);
  align-items: stretch;
}
.home-product-card {
  position: relative;
  overflow: hidden;
  min-height: 330px;
  padding: clamp(1.25rem, 2.1vw, 2rem);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
  background: #d8d5ce;
}
.home-product-card:first-child {
  grid-row: span 2;
  min-height: 690px;
}
.home-product-card:nth-child(2),
.home-product-card:nth-child(3) {
  min-height: 390px;
}
.home-product-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(0,0,0,.62), rgba(0,0,0,.18) 54%, rgba(0,0,0,.04)),
    linear-gradient(115deg, rgba(0,0,0,.26), transparent 58%);
  transition: opacity 700ms ease;
}
.home-product-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: .96;
  filter: saturate(.98) contrast(.98);
  transition:
    transform 1100ms var(--motion-section-ease),
    filter 900ms ease,
    opacity 900ms ease;
}
.home-product-card:hover::after { opacity: .82; }
.home-product-card:hover img {
  transform: scale(1.035);
  opacity: 1;
  filter: saturate(1.04) contrast(1.03);
}
.home-product-card-copy {
  position: relative;
  z-index: 2;
  display: grid;
  gap: .8rem;
  max-width: 27ch;
}
.home-product-card small {
  display: block;
  color: rgba(255,255,255,.66);
  font-size: var(--type-label);
  line-height: var(--leading-label);
  letter-spacing: var(--tracking-label);
  font-weight: 400;
  text-transform: uppercase;
}
.home-product-card strong {
  font-size: clamp(1.35rem, 1.85vw, 2.05rem);
  font-weight: 300;
  line-height: var(--leading-title);
  letter-spacing: 0;
}
.home-product-card:first-child strong { font-size: clamp(2rem, 3vw, 3.15rem); }
.home-product-card span {
  color: rgba(255,255,255,.78);
  font-size: var(--type-body-sm);
  line-height: 1.65;
}

.visual-section {
  background-size: 106%;
  background-repeat: no-repeat;
  background-position: center;
  color: #fff;
  transition: background-size 1800ms var(--motion-section-ease);
}
.visual-section.is-visible { background-size: 100%; }
.visual-section > .section-copy { position: relative; z-index: 2; }
.visual-section .section-copy p { color: rgba(255,255,255,.68); }
.visual-section .section-copy h2 { color: #fff; }
.about-visual-section::after,
.showroom-visual-section::after {
  background:
    linear-gradient(90deg, rgba(0,0,0,.58), rgba(0,0,0,.08) 58%, rgba(0,0,0,.28)),
    linear-gradient(to top, rgba(0,0,0,.18), transparent 48%);
}
.projects-teaser { grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr); gap: var(--gap-xl); color: #111; background: #fff; }
.project-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap-md); }
.project-strip article { background: transparent; padding: 0; border: 0; }
.project-strip picture { display: block; }
.project-strip img { width: 100%; aspect-ratio: 4/5; background: #d8d5ce; }
.project-strip h3 { max-width: 22ch; margin: 1rem 0 0; font-size: var(--type-h4); font-weight: 400; line-height: var(--leading-title); }
.founder-section {
  grid-template-columns: minmax(360px, .86fr) minmax(0, 1fr);
  gap: clamp(64px, 7vw, 124px);
  color: #111;
  background: #fff;
  align-items: center;
}
.founder-portrait {
  justify-self: start;
  width: min(620px, 100%);
  aspect-ratio: 4 / 5;
  background: #e6e1d7;
  overflow: hidden;
}
.founder-portrait picture { display: block; width: 100%; height: 100%; }
.founder-portrait img {
  width: 100%;
  height: 100%;
  min-height: 0;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
  filter: saturate(.92) contrast(.98);
  transition: transform .9s var(--motion-ease), filter .9s ease;
}
.founder-section:hover .founder-portrait img { transform: scale(1.025); filter: saturate(1) contrast(1); }
.founder-copy {
  position: relative;
  max-width: 690px;
  padding-top: clamp(28px, 3vw, 44px);
  border-top: 1px solid rgba(0,0,0,.22);
}
.founder-copy p { color: var(--muted); letter-spacing: .08em; }
.founder-copy h2 {
  max-width: 13ch;
  margin-bottom: 2rem;
  font-size: var(--type-display);
  line-height: var(--leading-hero);
}
.founder-copy > span {
  max-width: 620px;
  color: #4c4c4c;
  line-height: var(--leading-relaxed);
}
.founder-positioning {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 0 0 2rem;
  padding: 24px 0;
  border-top: 1px solid rgba(0,0,0,.1);
  border-bottom: 1px solid rgba(0,0,0,.1);
}
.founder-positioning span {
  margin: 0;
  color: #222;
  font-size: var(--type-label);
  line-height: 1.55;
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
}

.page-intro {
  position: relative;
  min-height: 72vh;
  display: grid;
  align-items: end;
  padding: 150px 42px 72px;
  color: #fff;
  overflow: hidden;
}
.intro-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.intro-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.74), rgba(0,0,0,.16) 62%, rgba(0,0,0,.52)); }
.intro-content { position: relative; z-index: 2; max-width: var(--max); width: 100%; margin: 0 auto; }
.page-intro h1 { margin: 0; font-size: var(--type-h1); line-height: var(--leading-hero); font-weight: 300; max-width: 980px; letter-spacing: 0; }
.page-intro span { display: block; margin-top: 24px; max-width: 660px; color: rgba(255,255,255,.78); font-size: var(--type-body-lg); line-height: var(--leading-body); }
.kano-page,
.product-detail-body,
.product-hero-detail { max-width: var(--max); margin: 0 auto; padding: 80px 42px; }

.text-link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: .5rem;
  border-bottom: 1px solid currentColor;
  padding-bottom: .45rem;
  color: inherit;
  font-size: var(--type-cta);
  line-height: 1.2;
  letter-spacing: var(--tracking-cta);
  font-weight: 400;
  text-transform: uppercase;
  transition: opacity var(--motion-fast) ease, transform var(--motion-fast) var(--motion-ease);
}
.text-link:hover { opacity: .68; transform: translateX(4px); }

.product-catalog-hero {
  position: relative;
  min-height: 76vh;
  display: grid;
  align-items: end;
  padding: 150px var(--container-pad) 86px;
  color: #fff;
  overflow: hidden;
  background: #111;
}
.product-catalog-bg { position: absolute; inset: 0; background-size: cover; background-position: center; filter: saturate(.9) contrast(.98); }
.product-catalog-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.78), rgba(0,0,0,.28) 52%, rgba(0,0,0,.58)); }
.product-catalog-hero-inner { position: relative; z-index: 2; width: 100%; max-width: var(--max); margin: 0 auto; }
.product-breadcrumb { display: flex; flex-wrap: wrap; gap: .65rem; align-items: center; margin-bottom: 1.15rem; color: rgba(255,255,255,.68); font-size: var(--type-label); letter-spacing: var(--tracking-label); text-transform: uppercase; }
.product-breadcrumb a { transition: color var(--motion-fast) ease; }
.product-breadcrumb a:hover { color: #fff; }
.product-catalog-hero p,
.product-section-heading p,
.product-result-header p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: var(--type-label);
  line-height: var(--leading-label);
  letter-spacing: var(--tracking-label);
  font-weight: 400;
  text-transform: uppercase;
}
.product-catalog-hero p { color: rgba(255,255,255,.7); }
.product-catalog-hero h1 { margin: 0; max-width: 980px; font-size: var(--type-h1); line-height: var(--leading-hero); font-weight: 300; letter-spacing: 0; }
.product-catalog-hero-inner > span { display: block; max-width: 680px; margin-top: 24px; color: rgba(255,255,255,.78); font-size: var(--type-body-lg); line-height: var(--leading-body); }
.product-catalog-hero .outline-link { margin-top: 34px; }
.product-category-strip { padding-top: var(--section-md); padding-bottom: 0; }
.product-section-heading { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 24px; align-items: end; margin-bottom: 34px; }
.product-section-heading h2 { margin: 0; max-width: 760px; font-size: var(--type-h2); line-height: var(--leading-heading); font-weight: 300; }
.category-tile-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: var(--gap-md); }
.category-tile {
  display: grid;
  grid-template-rows: auto auto auto 1fr auto;
  min-height: 100%;
  border-top: 1px solid rgba(0,0,0,.14);
  padding-top: 18px;
  color: #151515;
  transition: border-color var(--motion-medium) ease, transform var(--motion-medium) var(--motion-ease);
}
.category-tile:hover,
.category-tile.active { border-color: rgba(0,0,0,.5); transform: translateY(-4px); }
.category-tile img { width: 100%; aspect-ratio: 4 / 3; margin-bottom: 18px; background: var(--paper-2); filter: saturate(.88) contrast(.96); transition: transform .75s var(--motion-ease), filter .75s ease; }
.category-tile:hover img { transform: scale(1.018); filter: saturate(1) contrast(1); }
.category-tile span,
.category-tile small { color: var(--muted); font-size: var(--type-label); letter-spacing: var(--tracking-label); text-transform: uppercase; }
.category-tile h3 { margin: 10px 0 8px; font-size: var(--type-h4); line-height: var(--leading-title); font-weight: 400; }
.category-tile p { margin: 0 0 18px; color: #5f5f5f; font-size: var(--type-body-sm); line-height: 1.65; }

.product-layout { display: grid; grid-template-columns: 270px minmax(0, 1fr); gap: clamp(48px, 5vw, 72px); align-items: start; }
.product-listing-section { padding-top: var(--section-md); padding-bottom: var(--section-lg); }
.category-sidebar { position: sticky; top: 104px; display: grid; gap: 0; border-top: 1px solid rgba(0,0,0,.16); background: transparent; }
.category-sidebar p { margin: 0; padding: 0 0 18px; color: var(--muted); font-size: var(--type-label); letter-spacing: var(--tracking-label); text-transform: uppercase; }
.category-sidebar a { display: flex; justify-content: space-between; gap: 18px; padding: 17px 0; border-bottom: 1px solid rgba(0,0,0,.1); color: #555; font-size: var(--type-body-sm); line-height: 1.35; transition: color var(--motion-fast) ease, transform var(--motion-fast) var(--motion-ease); }
.category-sidebar a span { color: #9a9a9a; font-size: var(--type-label); }
.category-sidebar a.active,
.category-sidebar a:hover { color: #000; transform: translateX(6px); }
.product-listing-main { min-width: 0; }
.product-result-header { display: flex; justify-content: space-between; gap: 28px; align-items: end; margin-bottom: 30px; padding-bottom: 22px; border-bottom: 1px solid rgba(0,0,0,.1); }
.product-result-header h2 { margin: 0; font-size: var(--type-h3); line-height: var(--leading-title); font-weight: 300; }
.product-result-header > span { color: var(--muted); font-size: var(--type-body-sm); }
.product-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 32px 24px; }
.product-card { min-width: 0; background: transparent; border: 0; overflow: visible; }
.product-card-media { display: block; overflow: hidden; background: var(--paper-2); }
.product-card img { width: 100%; aspect-ratio: 4 / 3; background: var(--paper-2); transition: transform .72s var(--motion-ease), filter .72s ease; }
.product-card:hover img { transform: scale(1.026); filter: saturate(1.02) contrast(1.01); }
.product-card-copy { padding-top: 18px; }
.product-card span { display: block; padding: 0; color: var(--muted); font-size: var(--type-label); line-height: var(--leading-label); letter-spacing: var(--tracking-label); font-weight: 400; text-transform: uppercase; }
.product-card h2 { margin: 9px 0 0; font-size: var(--type-h4); line-height: var(--leading-title); font-weight: 400; }
.product-card h2 a { transition: color var(--motion-fast) ease; }
.product-card:hover h2 a { color: #000; }
.product-card-copy p { margin: 12px 0 0; max-width: 38ch; color: #666; font-size: var(--type-body-sm); line-height: 1.65; }
.product-card-link { display: inline-flex; margin-top: 16px; border-bottom: 1px solid rgba(0,0,0,.62); padding-bottom: 6px; font-size: var(--type-label); letter-spacing: var(--tracking-cta); text-transform: uppercase; transition: opacity var(--motion-fast) ease, transform var(--motion-fast) var(--motion-ease); }
.product-card:hover .product-card-link { transform: translateX(4px); opacity: .72; }
.product-card.compact .product-card-copy p { display: none; }
.product-empty-state { display: grid; gap: 22px; justify-items: start; padding: 64px; border: 1px solid rgba(0,0,0,.1); background: rgba(255,255,255,.42); }
.product-empty-state p { margin: 0; color: #555; font-size: var(--type-body-lg); }

.product-hero-detail { max-width: none; min-height: auto; padding: 128px var(--container-pad) var(--section-md); background: #fff; color: var(--ink); }
.product-detail-shell { max-width: var(--container-wide); margin: 0 auto; display: grid; grid-template-columns: minmax(0, 1.18fr) minmax(360px, .82fr); gap: clamp(56px, 6vw, 96px); align-items: start; }
.product-detail-breadcrumb { grid-column: 1 / -1; margin: 0 0 -22px; color: rgba(0,0,0,.46); }
.product-detail-breadcrumb a:hover { color: #000; }
.product-gallery { min-width: 0; display: grid; gap: 18px; }
.product-hero-media { min-height: 0; overflow: hidden; background: var(--paper-2); }
.product-hero-media img { width: 100%; height: auto; min-height: 0; aspect-ratio: 4 / 3; object-fit: cover; transition: opacity var(--motion-fast) ease; }
.product-thumbs { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 12px; }
.product-thumbs button { border: 1px solid rgba(0,0,0,.12); background: transparent; padding: 0; cursor: pointer; opacity: .62; transition: opacity var(--motion-fast) ease, border-color var(--motion-fast) ease; }
.product-thumbs button.active,
.product-thumbs button:hover { opacity: 1; border-color: rgba(0,0,0,.58); }
.product-thumbs img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; background: var(--paper-2); }
.product-hero-copy { display: grid; align-content: start; padding: 18px 0 0; }
.product-hero-copy h1 { margin: 0 0 24px; font-size: var(--type-h1); line-height: 1.08; font-weight: 300; letter-spacing: 0; }
.product-hero-copy span { display: block; max-width: 560px; color: #555; font-size: var(--type-body-lg); line-height: var(--leading-body); margin-bottom: 32px; }
.product-model-panel { display: grid; gap: 18px; margin: 0 0 28px; padding: 20px 0; border-top: 1px solid rgba(0,0,0,.12); border-bottom: 1px solid rgba(0,0,0,.12); }
.product-model-panel label { display: grid; gap: 8px; color: var(--muted); font-size: var(--type-label); letter-spacing: var(--tracking-label); text-transform: uppercase; }
.product-model-panel select { width: 100%; border: 1px solid rgba(0,0,0,.18); background: transparent; padding: 14px 16px; color: #111; font: inherit; text-transform: none; letter-spacing: 0; }
.single-model-label { margin: 0; color: var(--muted); font-size: var(--type-label); letter-spacing: var(--tracking-label); text-transform: uppercase; }
.product-model-meta { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px 24px; margin: 0; }
.product-model-meta div { display: grid; gap: 5px; }
.product-model-meta dt,
.product-model-meta dd { margin: 0; }
.product-model-meta dt { color: var(--muted); font-size: var(--type-label); letter-spacing: var(--tracking-label); text-transform: uppercase; }
.product-model-meta dd { color: #222; font-size: var(--type-body-sm); line-height: 1.45; }
.product-summary-specs { display: grid; margin: 0 0 34px; border-top: 1px solid rgba(0,0,0,.12); }
.product-summary-specs div { display: grid; grid-template-columns: minmax(100px, .42fr) 1fr; gap: 24px; padding: 16px 0; border-bottom: 1px solid rgba(0,0,0,.1); }
.product-summary-specs dt,
.product-summary-specs dd { margin: 0; }
.product-summary-specs dt { color: var(--muted); font-size: var(--type-label); letter-spacing: var(--tracking-label); text-transform: uppercase; }
.product-summary-specs dd { color: #222; font-size: var(--type-body-sm); line-height: 1.55; }
.product-actions { display: flex; flex-wrap: wrap; gap: 16px 24px; align-items: center; }
.product-detail-body { display: grid; grid-template-columns: minmax(0, .95fr) minmax(360px, 1.05fr); gap: clamp(48px, 6vw, 86px); align-items: start; padding-top: 0; padding-bottom: var(--section-lg); }
.product-spec-panel,
.product-story-panel,
.resource-card,
.contact-form,
.contact-info,
.subpage-panel {
  background: #fff;
  border: 1px solid var(--line-dark);
  padding: 30px;
}
.product-spec-panel,
.product-story-panel { background: transparent; border: 0; padding: 0; }
.product-spec-panel dl { display: grid; grid-template-columns: minmax(150px, .38fr) 1fr; margin: 0; border-top: 1px solid var(--line-dark); }
.product-spec-panel dt,
.product-spec-panel dd { margin: 0; padding: 20px 0; border-bottom: 1px solid var(--line-dark); }
.product-spec-panel dt { color: var(--muted); font-size: var(--type-label); letter-spacing: var(--tracking-label); text-transform: uppercase; }
.product-spec-panel dd { color: #333; line-height: 1.65; }
.product-spec-empty { color: #555; line-height: var(--leading-body); }
.product-spec-empty.hidden { display: none; }
.product-story-panel h2 { max-width: 680px; font-weight: 300; font-size: var(--type-h2); line-height: var(--leading-heading); margin: 0 0 22px; }
.product-story-panel div { max-width: 720px; color: #444; font-size: var(--type-body-lg); line-height: 1.8; white-space: pre-line; }
.product-details-panel { max-width: 780px; }
.product-details-panel > p,
.product-spec-panel > p {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: var(--type-label);
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
}
.product-details-content {
  max-width: 760px;
  color: #333;
  font-size: var(--type-body-lg);
  line-height: 1.85;
  white-space: pre-line;
}
.related-products { padding-top: var(--section-md); padding-bottom: var(--section-lg); border-top: 1px solid rgba(0,0,0,.08); }
.related-product-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.project-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.project-card { background: #fff; border: 1px solid var(--line-dark); overflow: hidden; }
.project-card img { width: 100%; aspect-ratio: 16/10; transition: transform .45s ease; }
.project-card:hover img { transform: scale(1.04); }
.project-card div { padding: 24px; }
.project-card h2,
.resource-card h2,
.about-card h2,
.subpage-panel h2 { font-weight: 400; font-size: 30px; margin: 0 0 12px; }
.project-card span,
.resource-card p,
.about-card div div,
.subpage-panel p,
.contact-info p { color: #555; line-height: 1.75; }
.resource-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.resource-card { min-height: 280px; display: flex; flex-direction: column; }
.resource-card span { color: var(--muted); text-transform: uppercase; font-size: 12px; }
.resource-card p { flex: 1; }
.about-sections { display: grid; gap: 30px; }
.about-card { display: grid; grid-template-columns: 1fr 1fr; gap: 42px; align-items: center; background: #fff; border: 1px solid var(--line-dark); padding: 30px; }
.about-card img { width: 100%; aspect-ratio: 16/10; }
.about-integrated { display: grid; gap: 34px; padding-top: var(--section-md); padding-bottom: var(--section-lg); }
.about-integrated-head { max-width: 760px; }
.about-integrated-head p,
.about-module p,
.about-showroom-preview p,
.about-contact-cta p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: var(--type-label);
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
}
.about-integrated-head h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 64px);
  font-weight: 300;
  line-height: 1.06;
}
.about-module-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--line-dark); border-left: 1px solid var(--line-dark); }
.about-module { min-height: 280px; padding: 28px; border-right: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); background: #fff; }
.about-module h3,
.about-showroom-preview h3,
.about-contact-cta h3 {
  margin: 0 0 14px;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.16;
}
.about-module span,
.about-showroom-preview span {
  display: block;
  color: #555;
  line-height: 1.75;
}
.about-showroom-preview { display: grid; grid-template-columns: 1.12fr .88fr; gap: 40px; align-items: center; padding-top: 18px; }
.about-showroom-preview img { width: 100%; aspect-ratio: 16/10; }
.about-showroom-preview .outline-link { margin-top: 24px; }
.about-contact-cta { display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: end; padding: 30px 0 0; border-top: 1px solid var(--line-dark); }
.about-contact-cta p { grid-column: 1 / -1; margin-bottom: -8px; }
.about-contact-cta h3 { max-width: 760px; margin-bottom: 0; }
.showroom-grid { display: grid; grid-template-columns: 1.12fr .88fr; gap: 40px; align-items: center; }
.showroom-grid > img { width: 100%; aspect-ratio: 16/10; }
.contact-layout { display: grid; grid-template-columns: 1fr .9fr; gap: 38px; }
.contact-info img { width: 100%; aspect-ratio: 16/9; margin-bottom: 22px; }
label { display: grid; gap: 8px; color: #555; font-size: 13px; margin-bottom: 16px; }
input,
textarea { width: 100%; border: 1px solid var(--line-dark); background: #f8f8f6; padding: 14px; font: inherit; color: #111; }
.contact-form button { width: 100%; background: #111; color: #fff; cursor: pointer; }
.notice { padding: 14px; border: 1px solid #9acbb5; background: #eef8f2; color: #12623f; }
.site-footer { background: #080808; color: #fff; padding: 62px 42px 30px; }
.footer-stage { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: .78fr 1.22fr; gap: 48px; }
.footer-kicker { margin: 0 0 12px; color: rgba(255,255,255,.5); font-size: var(--type-label); letter-spacing: var(--tracking-label); text-transform: uppercase; }
.footer-brand h2 { font-size: 42px; font-weight: 400; margin: 0 0 16px; }
.footer-brand p { color: rgba(255,255,255,.68); line-height: 1.7; margin-bottom: 28px; }
.footer-links { display: grid; grid-template-columns: repeat(6, 1fr); gap: 24px; }
.footer-links div { display: grid; gap: 10px; align-content: start; }
.footer-links strong { margin-bottom: 8px; }
.footer-links a,
.footer-links span { color: rgba(255,255,255,.62); }
.footer-social { display: flex; justify-content: flex-start; gap: 9px; }
.footer-social a {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: rgba(255,255,255,.72);
  transition: transform .2s ease, opacity .2s ease;
}
.footer-social a:hover { transform: translateY(-2px); opacity: .72; }
.footer-social svg { width: 15px; height: 15px; fill: currentColor; }
.footer-bottom { max-width: var(--max); margin: 42px auto 0; display: flex; justify-content: space-between; gap: 24px; color: rgba(255,255,255,.5); font-size: 12px; }
.footer-bottom a { color: inherit; }
.copyright { margin: 0; }

.home-footer-section {
  min-height: 100svh;
  display: grid;
  align-content: space-between;
  padding: clamp(92px, 10vh, 132px) var(--container-pad) 34px;
  background: var(--paper-white);
  color: #080808;
  border-top: 1px solid rgba(0,0,0,.08);
}
.home-footer-section .footer-stage {
  width: 100%;
  max-width: var(--container-wide);
  grid-template-columns: minmax(0, .82fr) minmax(0, 1fr);
  gap: clamp(64px, 6.5vw, 118px);
  align-items: start;
}
.home-footer-section .footer-brand,
.home-footer-section .footer-links { min-width: 0; }
.home-footer-section .footer-kicker { color: var(--muted); }
.home-footer-section .footer-brand h2 {
  max-width: 100%;
  font-size: clamp(4.25rem, 5.4vw, 6.5rem);
  line-height: .95;
  font-weight: 300;
  letter-spacing: 0;
  overflow-wrap: normal;
}
.home-footer-section .footer-brand p {
  max-width: 460px;
  color: #444;
  font-size: var(--type-body-lg);
  line-height: var(--leading-relaxed);
}
.home-footer-section .footer-links {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 42px clamp(32px, 4vw, 64px);
  padding-top: 10px;
}
.home-footer-section .footer-links div {
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid rgba(0,0,0,.12);
}
.home-footer-section .footer-links strong {
  margin-bottom: 8px;
  color: #111;
  font-size: var(--type-label);
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  font-weight: 400;
}
.home-footer-section .footer-links a,
.home-footer-section .footer-links span {
  color: #555;
  line-height: 1.55;
}
.home-footer-section .footer-social a {
  color: #111;
  border-color: rgba(0,0,0,.32);
}
.home-footer-section .footer-bottom {
  width: 100%;
  max-width: var(--container-wide);
  color: #666;
  border-top: 1px solid rgba(0,0,0,.1);
  padding-top: 24px;
}

.page-home.reveal-ready .snap-section:not(.hero-section) :is(.section-copy, .home-product-card, .project-strip article, .founder-portrait, .founder-copy) {
  opacity: 0;
  transform: translate3d(0, var(--motion-reveal-distance), 0) scale(var(--motion-section-scale));
  transition:
    opacity var(--motion-reveal-duration) var(--motion-section-ease),
    transform var(--motion-reveal-duration) var(--motion-section-ease);
  will-change: opacity, transform;
}
.page-home.reveal-ready .snap-section.is-visible :is(.section-copy, .home-product-card, .project-strip article, .founder-portrait, .founder-copy) {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}
.page-home.reveal-ready .home-product-card-copy > * {
  opacity: 0;
  transform: translate3d(0, 22px, 0);
  transition:
    opacity 760ms var(--motion-section-ease),
    transform 760ms var(--motion-section-ease);
}
.page-home.reveal-ready .snap-section.is-visible .home-product-card-copy > * {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.page-home.reveal-ready .home-footer-section :is(.footer-brand, .footer-links, .footer-bottom) {
  opacity: 0;
  transform: translate3d(0, var(--motion-reveal-distance), 0) scale(var(--motion-section-scale));
  transition:
    opacity var(--motion-reveal-duration) var(--motion-section-ease),
    transform var(--motion-reveal-duration) var(--motion-section-ease);
  will-change: opacity, transform;
}
.page-home.reveal-ready .home-footer-section.is-visible :is(.footer-brand, .footer-links, .footer-bottom) {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}
.page-home.reveal-ready .home-footer-section .footer-brand { transition-delay: 60ms; }
.page-home.reveal-ready .home-footer-section .footer-links { transition-delay: 180ms; }
.page-home.reveal-ready .home-footer-section .footer-bottom { transition-delay: 300ms; }
.page-home.reveal-ready .snap-section:not(.hero-section) .section-copy { transition-delay: 40ms; }
.page-home.reveal-ready .snap-section:not(.hero-section) .home-product-card:nth-child(1),
.page-home.reveal-ready .snap-section:not(.hero-section) .project-strip article:nth-child(1),
.page-home.reveal-ready .snap-section:not(.hero-section) .founder-portrait { transition-delay: 120ms; }
.page-home.reveal-ready .snap-section:not(.hero-section) .home-product-card:nth-child(2),
.page-home.reveal-ready .snap-section:not(.hero-section) .project-strip article:nth-child(2),
.page-home.reveal-ready .snap-section:not(.hero-section) .founder-copy { transition-delay: 220ms; }
.page-home.reveal-ready .snap-section:not(.hero-section) .home-product-card:nth-child(3),
.page-home.reveal-ready .snap-section:not(.hero-section) .project-strip article:nth-child(3) { transition-delay: 320ms; }
.page-home.reveal-ready .snap-section:not(.hero-section) .home-product-card:nth-child(n+4) { transition-delay: 400ms; }
.page-home.reveal-ready .snap-section:not(.hero-section) .home-product-card-copy small { transition-delay: 160ms; }
.page-home.reveal-ready .snap-section:not(.hero-section) .home-product-card-copy strong { transition-delay: 230ms; }
.page-home.reveal-ready .snap-section:not(.hero-section) .home-product-card-copy span { transition-delay: 310ms; }
.page-home.reveal-ready .snap-section:not(.hero-section) .home-product-card img,
.page-home.reveal-ready .snap-section:not(.hero-section) .project-strip img,
.page-home.reveal-ready .snap-section:not(.hero-section) .founder-portrait img {
  transform: scale(1.035);
  transition:
    transform 1600ms var(--motion-section-ease),
    filter 900ms ease,
    opacity 900ms ease;
}
.page-home.reveal-ready .snap-section.is-visible .home-product-card img,
.page-home.reveal-ready .snap-section.is-visible .project-strip img,
.page-home.reveal-ready .snap-section.is-visible .founder-portrait img {
  transform: scale(1);
}
.page-home.reveal-ready .snap-section.is-visible .home-product-card:hover img,
.page-home.reveal-ready .snap-section.is-visible .project-strip article:hover img,
.page-home.reveal-ready .snap-section.is-visible .founder-section:hover .founder-portrait img {
  transform: scale(1.035);
}

@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;
  }
}

@media (max-width: 1024px) {
  :root {
    --type-hero: 4rem;
    --type-display: 3.25rem;
    --type-h1: 3rem;
    --type-h2: 2.25rem;
    --type-h3: 1.5rem;
    --type-body-lg: 1.0625rem;
    --container-pad: 3rem;
    --section-xl: 8rem;
    --section-lg: 7rem;
    --section-md: 5.5rem;
    --section-sm: 4.5rem;
    --gap-xl: 4rem;
  }
}

@media (max-width: 768px) {
  .site-header { height: 68px; }
  body.nav-open .site-header { color: #111; background: rgba(242,240,234,.96); border-bottom: 1px solid var(--line-dark); }
  .header-inner { display: flex; justify-content: space-between; padding: 0 20px; }
  .header-actions { margin-left: auto; gap: 8px; }
  .header-icon-action { width: 38px; height: 38px; }
  .nav-toggle { display: block; }
  .main-nav {
    position: fixed;
    inset: 68px 0 auto 0;
    display: none;
    height: auto;
    max-height: calc(100vh - 68px);
    overflow: auto;
    padding: 18px 22px 28px;
    background: rgba(242,240,234,.98);
    color: #111;
    border-bottom: 1px solid var(--line-dark);
  }
  body.nav-open .main-nav { display: block; }
  .nav-item { display: block; height: auto; padding: 10px 0; }
  .nav-item > a { height: auto; display: block; padding: 8px 0; }
  .mega-menu { position: static; display: none; width: auto; box-shadow: none; border: 0; background: transparent; padding: 8px 0 0 14px; }
  .nav-item.open > .mega-menu { display: block; opacity: 1; transform: none; pointer-events: auto; }
  .mega-panel,
  .mega-columns,
  .mega-link-grid { display: grid; grid-template-columns: 1fr; padding: 0; gap: 14px; }
  .mega-panel { max-width: none; background: transparent; border: 0; box-shadow: none; backdrop-filter: none; -webkit-backdrop-filter: none; }
  .nav-index-panel,
  .product-menu-panel { grid-template-columns: 1fr; gap: 24px; }
  .nav-index-columns,
  .product-menu-columns { grid-template-columns: 1fr; gap: 24px; padding-top: 0; }
  .nav-index-group,
  .product-menu-group { gap: 14px; }
  .nav-index-heading,
  .product-menu-heading { max-width: none; font-size: 15px; }
  .nav-index-links,
  .product-menu-links { gap: 10px; padding-left: 12px; }
  .nav-menu-promo,
  .product-menu-promo { justify-self: stretch; width: 100%; }
  .mega-feature h3 { max-width: none; font-size: 26px; }
  .mega-feature img { aspect-ratio: 16/9; }
  .mega-card { min-height: 0; }
  .mega-link-grid .text-card { min-height: 0; padding: 18px 0; }
  html.doc-page-home { scroll-snap-type: none; }
  .page-home .snap-section { min-height: auto; padding: var(--section-sm) var(--container-pad); }
  .page-home .hero-section {
    min-height: clamp(560px, 82svh, 760px);
    padding: 0;
  }
  .page-home .visual-section {
    min-height: clamp(540px, 72svh, 680px);
  }
  .page-home .hero-slide { align-items: end; background-position: center; }
  .page-home .hero-copy {
    margin-left: var(--container-pad);
    margin-right: var(--container-pad);
    padding: 112px 0 96px;
  }
  .page-home .hero-dots { left: var(--container-pad); }
  .page-home .slide-count { right: var(--container-pad); }
  .page-home .founder-section { gap: 42px; }
  .page-home .founder-copy { order: 2; padding-top: 24px; }
  .page-home .founder-portrait {
    order: 1;
    justify-self: stretch;
    width: min(520px, 100%);
    aspect-ratio: 4 / 5;
  }
  .page-home .founder-portrait img {
    height: 100%;
    aspect-ratio: 4 / 5;
  }
  .home-footer-section { min-height: auto; padding: 78px 24px 32px; }
  .home-footer-section .footer-stage { grid-template-columns: 1fr; gap: 54px; }
  .home-footer-section .footer-social {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    gap: 12px;
  }
}

@media (max-width: 1100px) {
  .mega-panel {
    max-width: calc(100vw - 64px);
    grid-template-columns: minmax(260px, 320px) minmax(0, 1fr);
    gap: 46px;
  }
  .nav-index-panel,
  .product-menu-panel {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
    gap: 48px;
  }
  .nav-index-columns,
  .product-menu-columns {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 34px;
  }
  .mega-columns,
  .mega-link-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-links { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .site-header { height: 68px; }
  body.nav-open .site-header { color: #111; background: rgba(242,240,234,.96); border-bottom: 1px solid var(--line-dark); }
  .header-inner { display: flex; justify-content: space-between; padding: 0 20px; }
  .header-actions { margin-left: auto; gap: 8px; }
  .header-icon-action { width: 38px; height: 38px; }
  .nav-toggle { display: block; }
  .main-nav {
    position: fixed;
    inset: 68px 0 auto 0;
    display: none;
    height: auto;
    max-height: calc(100vh - 68px);
    overflow: auto;
    padding: 18px 22px 28px;
    background: rgba(242,240,234,.98);
    color: #111;
    border-bottom: 1px solid var(--line-dark);
  }
  body.nav-open .main-nav { display: block; }
  .nav-item { display: block; height: auto; padding: 10px 0; }
  .nav-item > a { height: auto; display: block; padding: 8px 0; }
  .mega-menu { position: static; display: none; width: auto; box-shadow: none; border: 0; background: transparent; padding: 8px 0 0 14px; }
  .nav-item.open > .mega-menu { display: block; opacity: 1; transform: none; pointer-events: auto; }
  .mega-panel,
  .mega-columns,
  .mega-link-grid { display: grid; grid-template-columns: 1fr; padding: 0; gap: 14px; }
  .mega-panel { max-width: none; background: transparent; border: 0; box-shadow: none; backdrop-filter: none; -webkit-backdrop-filter: none; }
  .nav-index-panel,
  .product-menu-panel { grid-template-columns: 1fr; gap: 24px; }
  .nav-index-columns,
  .product-menu-columns { grid-template-columns: 1fr; gap: 24px; padding-top: 0; }
  .nav-index-group,
  .product-menu-group { gap: 14px; }
  .nav-index-heading,
  .product-menu-heading { max-width: none; font-size: 15px; }
  .nav-index-links,
  .product-menu-links { gap: 10px; padding-left: 12px; }
  .nav-menu-promo,
  .product-menu-promo { justify-self: stretch; width: 100%; }
  .mega-feature h3 { max-width: none; font-size: 26px; }
  .mega-feature img { aspect-ratio: 16/9; }
  .mega-card { min-height: 0; }
  .mega-link-grid .text-card { min-height: 0; padding: 18px 0; }
  html.doc-page-home { scroll-snap-type: none; }
  .snap-section { min-height: auto; padding: var(--section-sm) var(--container-pad); }
  .page-home .hero-section {
    min-height: clamp(560px, 82svh, 720px);
    padding: 0;
  }
  .page-home .visual-section {
    min-height: clamp(540px, 72svh, 680px);
  }
  .page-home .hero-slide { align-items: end; background-position: center; }
  .hero-copy { margin-left: var(--container-pad); margin-right: var(--container-pad); }
  .page-home .hero-copy { padding: 112px 0 96px; }
  .hero-dots { left: var(--container-pad); }
  .slide-count { right: var(--container-pad); }
  .product-catalog-hero { min-height: 62vh; padding: 126px var(--container-pad) 64px; }
  .category-tile-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product-section-heading { grid-template-columns: 1fr; align-items: start; }
  .home-product-section,
  .projects-teaser,
  .founder-section,
  .product-layout,
  .product-detail-shell,
  .product-detail-body,
  .project-grid,
  .resource-list,
  .about-card,
  .showroom-grid,
  .contact-layout,
  .footer-stage,
  .footer-links { grid-template-columns: 1fr; }
  .home-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-product-card:first-child {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 480px;
  }
  .product-grid,
  .related-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-product-card { min-height: 360px; }
  .founder-section { gap: 42px; }
  .founder-copy { order: 2; }
  .founder-portrait {
    order: 1;
    justify-self: stretch;
    width: min(520px, 100%);
    aspect-ratio: 4 / 5;
  }
  .founder-portrait img {
    height: 100%;
    aspect-ratio: 4 / 5;
  }
  .founder-copy { padding-top: 24px; }
  .founder-copy h2 { max-width: 11ch; }
  .page-intro { min-height: 64vh; padding: 120px 24px 56px; }
  .kano-page,
  .product-detail-body { padding: 56px 24px; }
  .product-hero-detail { padding: 112px 24px 64px; }
  .product-detail-breadcrumb { margin-bottom: 0; }
  .product-hero-copy { padding: 0; }
  .category-sidebar { position: static; }
  .site-footer { padding-left: 24px; padding-right: 24px; }
  .home-footer-section { min-height: auto; padding: 78px 24px 32px; }
  .home-footer-section .footer-stage { grid-template-columns: 1fr; gap: 54px; }
  .home-footer-section .footer-brand h2 { max-width: 100%; font-size: clamp(3.75rem, 9vw, 5.5rem); }
  .home-footer-section .footer-social {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    gap: 12px;
  }
  .search-overlay { padding: 84px 20px 24px; }
  .search-panel { padding: 28px; max-height: calc(100vh - 108px); }
}

@media (max-width: 768px) {
  :root {
    --type-hero: 2.75rem;
    --type-display: 2.25rem;
    --type-h1: 2.375rem;
    --type-h2: 2rem;
    --type-h3: 1.375rem;
    --type-h4: 1.125rem;
    --type-body-lg: 1rem;
    --type-body: .9375rem;
    --type-label: .6875rem;
    --type-cta: .75rem;
    --container-pad: 1.5rem;
    --section-md: 4.5rem;
    --section-sm: 4rem;
    --gap-md: 1rem;
    --gap-lg: 2rem;
    --gap-xl: 2.5rem;
  }
  .site-header { height: 64px; }
  .header-inner { min-width: 0; padding: 0 16px; gap: 10px; }
  .brand { min-width: 0; flex: 1 1 auto; }
  .brand img {
    max-width: min(190px, 48vw);
    max-height: 34px;
  }
  .header-actions { flex: 0 0 auto; gap: 6px; }
  .header-icon-action,
  .nav-toggle {
    width: 40px;
    height: 40px;
  }
  .main-nav {
    inset: 64px 0 auto 0;
    max-height: calc(100vh - 64px);
    padding: 16px 20px 26px;
  }
  .page-home .hero-section {
    min-height: 100vh;
    min-height: 100svh;
  }
  .page-home .hero-slide::after {
    background:
      linear-gradient(to top, rgba(0,0,0,.46), rgba(0,0,0,.18) 50%, rgba(0,0,0,.05)),
      linear-gradient(90deg, rgba(0,0,0,.24), rgba(0,0,0,.06) 68%);
  }
  .page-home .hero-copy {
    margin-left: var(--container-pad);
    margin-right: var(--container-pad);
    padding: 132px 0 96px;
    max-width: calc(100vw - (var(--container-pad) * 2));
  }
  .hero-copy h1 {
    max-width: 9.5ch;
    font-size: 2.65rem;
    line-height: 1.04;
  }
  .hero-copy span,
  .section-copy span,
  .founder-copy span { max-width: 100%; }
  .hero-copy a,
  .section-copy a,
  .founder-copy a,
  .outline-link,
  .footer-cta,
  .resource-card a,
  .contact-form button { padding: .8125rem 1.375rem; }
  .home-product-grid,
  .project-strip,
  .product-grid,
  .related-product-grid,
  .category-tile-grid { grid-template-columns: 1fr; }
  .page-home .snap-section {
    padding: 64px var(--container-pad);
  }
  .page-home .hero-section { padding: 0; }
  .page-home .section-copy h2,
  .page-home .founder-copy h2 {
    max-width: 12ch;
    font-size: 2.2rem;
    line-height: 1.08;
  }
  .page-home .section-copy p,
  .page-home .founder-copy p {
    margin-bottom: 16px;
  }
  .page-home .section-copy span,
  .page-home .founder-copy span {
    margin-bottom: 1.75rem;
    line-height: 1.65;
  }
  .founder-positioning {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 1.75rem;
    padding: 18px 0;
  }
  .founder-positioning span {
    font-size: .6875rem;
  }
  .product-catalog-hero { min-height: 58vh; padding: 112px 24px 56px; }
  .product-catalog-hero h1,
  .product-hero-copy h1 { max-width: 100%; }
  .product-result-header { display: grid; align-items: start; }
  .product-card img { aspect-ratio: 4 / 3; }
  .product-thumbs { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .product-model-meta { grid-template-columns: 1fr; }
  .product-summary-specs div,
  .product-spec-panel dl { grid-template-columns: 1fr; gap: 4px; }
  .product-spec-panel dt { padding-bottom: 0; border-bottom: 0; }
  .product-spec-panel dd { padding-top: 6px; }
  .home-product-card {
    min-height: 280px;
    aspect-ratio: 4 / 3;
    padding: 1.25rem;
  }
  .home-product-card:first-child,
  .home-product-card:nth-child(2),
  .home-product-card:nth-child(3) {
    min-height: 320px;
    aspect-ratio: 4 / 3;
  }
  .home-product-card:first-child strong {
    font-size: 1.65rem;
  }
  .home-product-card img {
    object-position: center;
  }
  .project-strip img { aspect-ratio: 16/11; }
  .visual-section {
    min-height: 520px;
    background-size: cover;
    background-position: center;
  }
  html.doc-page-home { scroll-snap-type: none; }
  .snap-section { min-height: auto; }
  .slide-count { display: none; }
  .hero-dots { bottom: 30px; gap: 8px; }
  .hero-dots button { width: 28px; min-height: 24px; background-clip: content-box; padding: 10px 0; }
  .search-panel-head { display: grid; }
  .search-panel-head h2 { font-size: var(--type-h3); }
  .home-footer-section { min-height: auto; padding: 64px 24px 28px; }
  .home-footer-section .footer-stage { gap: 40px; }
  .home-footer-section .footer-brand h2 { font-size: 3rem; max-width: 100%; line-height: 1; }
  .home-footer-section .footer-brand p { margin-bottom: 22px; }
  .home-footer-section .footer-links { grid-template-columns: 1fr; gap: 20px; }
  .home-footer-section .footer-links div { gap: 9px; padding-top: 16px; }
  .home-footer-section .footer-social {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    gap: 12px;
  }
  .home-footer-section .footer-social a {
    width: 42px;
    height: 42px;
  }
  .home-footer-section .footer-bottom {
    margin-top: 34px;
    gap: 12px;
    padding-top: 20px;
  }
  .footer-bottom { display: grid; }
  .page-home.reveal-ready .snap-section:not(.hero-section) :is(.section-copy, .home-product-card, .project-strip article, .founder-portrait, .founder-copy),
  .page-home.reveal-ready .snap-section:not(.hero-section) :is(.home-product-card img, .project-strip img, .founder-portrait img),
  .page-home.reveal-ready .home-footer-section :is(.footer-brand, .footer-links, .footer-bottom) {
    opacity: 1;
    transform: none;
    transition: none;
    will-change: auto;
  }
}

/* Mobile system pass: scoped to phone widths so desktop Home snap and sticky rhythm stay intact. */
.mobile-nav-cta {
  display: none;
}

@media (max-width: 768px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  body.nav-open {
    overflow: hidden;
  }

  .main-nav {
    display: block;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition:
      opacity var(--motion-fast) ease,
      transform var(--motion-fast) var(--motion-ease);
  }

  body.nav-open .main-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-toggle span {
    transition:
      transform var(--motion-fast) var(--motion-ease),
      opacity var(--motion-fast) ease;
  }

  body.nav-open .nav-toggle span:first-child {
    transform: translateY(4.5px) rotate(45deg);
  }

  body.nav-open .nav-toggle span:last-child {
    transform: translateY(-4.5px) rotate(-45deg);
  }

  .mobile-nav-cta {
    display: flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    margin-top: 18px;
    border: 1px solid rgba(0,0,0,.72);
    color: #111;
    font-size: var(--type-cta);
    letter-spacing: var(--tracking-cta);
    text-transform: uppercase;
  }

  .nav-index-links {
    display: none;
  }

  .nav-index-group.open .nav-index-links {
    display: grid;
  }

  .nav-index-heading {
    min-height: 44px;
    align-items: center;
    justify-content: space-between;
  }

  .nav-index-group.has-children .nav-index-heading::after {
    content: "+";
    margin-left: 16px;
    color: rgba(0,0,0,.5);
    font-size: 18px;
    line-height: 1;
  }

  .nav-index-group.has-children.open .nav-index-heading::after {
    content: "-";
  }

  .nav-menu-promo,
  .product-menu-promo {
    display: none;
  }

  .category-sidebar {
    max-width: 100%;
    display: flex;
    gap: 10px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x proximity;
    border-top: 0;
    padding: 0 0 8px;
    scrollbar-width: thin;
  }

  .category-sidebar p {
    flex: 0 0 auto;
    padding: 14px 0;
    align-self: center;
  }

  .category-sidebar a {
    flex: 0 0 auto;
    min-height: 44px;
    align-items: center;
    gap: 10px;
    scroll-snap-align: start;
    border: 1px solid rgba(0,0,0,.12);
    padding: 10px 14px;
    background: #fff;
    white-space: nowrap;
  }

  .category-sidebar a.active,
  .category-sidebar a:hover {
    transform: none;
    border-color: rgba(0,0,0,.42);
  }

  .product-detail-shell {
    display: flex;
    flex-direction: column;
  }

  .product-detail-breadcrumb {
    order: 1;
  }

  .product-gallery {
    order: 2;
  }

  .product-hero-copy {
    order: 3;
    display: flex;
    flex-direction: column;
  }

  .product-hero-copy > p { order: 1; }
  .product-hero-copy > h1 { order: 2; }
  .product-model-panel { order: 3; }
  .product-summary-specs { order: 4; }
  .product-actions { order: 5; }
  .product-hero-copy > span[data-variant-description] { order: 6; }

  .product-details-panel { order: 1; }
  .product-spec-panel { order: 2; }
}

@media (min-width: 769px) {
  html.doc-page-home {
    scroll-snap-type: y mandatory;
    scroll-padding-top: 0;
  }

  html.doc-page-home .snap-section,
  html.doc-page-home .site-footer {
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .page-home .snap-section {
    min-height: 100svh;
  }

  .page-home .hero-section {
    min-height: clamp(720px, 100svh, 960px);
    padding: 0;
  }
}

@media (max-width: 768px) {
  body {
    font-size: var(--type-body);
  }

  .main-nav {
    max-height: calc(100svh - 64px);
    padding: 14px 18px 24px;
  }

  .nav-item {
    padding: 4px 0;
    border-bottom: 1px solid rgba(0,0,0,.08);
  }

  .nav-item > a {
    min-height: 48px;
    display: flex;
    align-items: center;
    font-size: .8125rem;
  }

  .mega-menu {
    padding: 0 0 14px 8px;
  }

  .nav-index-panel,
  .product-menu-panel {
    gap: 10px;
  }

  .nav-index-columns,
  .product-menu-columns {
    gap: 10px;
  }

  .nav-index-panel.no-promo .nav-index-columns {
    grid-template-columns: 1fr;
  }

  .nav-index-group,
  .product-menu-group {
    gap: 6px;
    border-top: 1px solid rgba(0,0,0,.08);
    padding-top: 4px;
  }

  .nav-index-links a,
  .product-menu-links a {
    min-height: 38px;
    display: flex;
    align-items: center;
    font-size: .875rem;
    line-height: 1.35;
  }

  .page-home .hero-section {
    min-height: 0;
    height: clamp(560px, 134vw, 720px);
  }

  .page-home .hero-slide {
    align-items: end;
    background-position: center top;
  }

  .page-home .hero-copy {
    padding: 104px 0 86px;
  }

  .hero-copy h1 {
    max-width: 10.5ch;
    font-size: 2.42rem;
    line-height: 1.07;
  }

  .hero-copy span {
    margin-bottom: 1.5rem;
    font-size: .9375rem;
    line-height: 1.62;
  }

  .hero-copy a,
  .section-copy a,
  .founder-copy a,
  .outline-link,
  .footer-cta,
  .resource-card a,
  .contact-form button {
    width: 100%;
    min-height: 48px;
    padding: .875rem 1rem;
  }

  .page-home .snap-section {
    padding: 72px var(--container-pad);
    gap: 32px;
  }

  .home-product-section {
    align-items: start;
  }

  .home-product-section .section-copy h2,
  .founder-copy h2 {
    max-width: 13ch;
  }

  .home-product-card,
  .home-product-card:first-child,
  .home-product-card:nth-child(2),
  .home-product-card:nth-child(3) {
    min-height: 0;
    aspect-ratio: 4 / 5;
    padding: 1.2rem;
  }

  .home-product-card strong,
  .home-product-card:first-child strong {
    font-size: 1.55rem;
    line-height: 1.12;
  }

  .home-product-card span {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
  }

  .project-strip {
    gap: 28px;
  }

  .project-strip img,
  .about-card img,
  .showroom-grid > img,
  .contact-info img {
    aspect-ratio: 4 / 5;
  }

  .founder-section {
    align-items: start;
  }

  .founder-portrait {
    width: 100%;
    max-width: none;
  }

  .visual-section {
    min-height: 500px;
    align-items: end;
  }

  .visual-section .section-copy {
    align-self: end;
  }

  .page-intro,
  .product-catalog-hero {
    min-height: 0;
    padding: 108px 24px 54px;
  }

  .page-intro {
    height: clamp(430px, 112vw, 560px);
  }

  .product-catalog-hero {
    height: clamp(460px, 118vw, 600px);
  }

  .page-intro h1,
  .product-catalog-hero h1,
  .product-hero-copy h1 {
    font-size: 2.2rem;
    line-height: 1.08;
  }

  .page-intro span,
  .product-catalog-hero-inner > span {
    margin-top: 18px;
    font-size: .9375rem;
    line-height: 1.62;
  }

  .product-layout,
  .product-listing-section {
    gap: 26px;
    padding-top: 52px;
    padding-bottom: 72px;
  }

  .category-sidebar {
    margin: 0 -24px;
    padding: 0 24px 10px;
  }

  .product-result-header {
    gap: 8px;
    margin-bottom: 24px;
  }

  .product-grid,
  .related-product-grid {
    gap: 34px;
  }

  .product-card-media {
    border-radius: 0;
  }

  .product-card img {
    aspect-ratio: 4 / 3;
  }

  .product-card-copy {
    padding-top: 16px;
  }

  .product-card-copy p {
    max-width: none;
    margin-top: 10px;
  }

  .product-card-link {
    min-height: 42px;
    align-items: center;
  }

  .product-hero-detail {
    padding: 92px 24px 56px;
  }

  .product-detail-breadcrumb {
    margin-bottom: 4px;
    font-size: .625rem;
    line-height: 1.5;
  }

  .product-gallery {
    gap: 12px;
  }

  .product-hero-media img {
    aspect-ratio: 4 / 3;
  }

  .product-thumbs {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .product-thumbs button {
    flex: 0 0 72px;
    min-height: 72px;
  }

  .product-hero-copy > p {
    margin-top: 6px;
  }

  .product-hero-copy h1 {
    margin-bottom: 20px;
  }

  .product-model-panel {
    gap: 16px;
    margin-bottom: 22px;
    padding: 18px 0;
  }

  .product-model-panel select,
  input,
  textarea {
    min-height: 48px;
    font-size: 16px;
  }

  .product-summary-specs {
    margin-bottom: 24px;
  }

  .product-summary-specs div {
    padding: 14px 0;
  }

  .product-actions {
    display: grid;
    gap: 12px;
  }

  .product-actions .text-link {
    justify-self: center;
    min-height: 42px;
    align-items: center;
  }

  .product-hero-copy > span[data-variant-description] {
    display: none;
  }

  .product-detail-body {
    display: grid;
    grid-template-columns: 1fr;
    gap: 54px;
    padding: 12px 24px 72px;
  }

  .product-details-content,
  .product-spec-panel dd {
    font-size: .9375rem;
    line-height: 1.78;
  }

  .related-products {
    padding-top: 62px;
    padding-bottom: 76px;
  }

  .about-sections {
    gap: 58px;
  }

  .about-integrated {
    gap: 30px;
    padding-top: 28px;
    padding-bottom: 76px;
  }

  .about-integrated-head h2 {
    font-size: 2rem;
    line-height: 1.1;
  }

  .about-module-grid {
    display: grid;
    grid-template-columns: 1fr;
    border-left: 0;
  }

  .about-module {
    min-height: 0;
    padding: 24px 0;
    border-right: 0;
    background: transparent;
  }

  .about-showroom-preview,
  .about-contact-cta {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .about-showroom-preview {
    padding-top: 4px;
  }

  .about-showroom-preview img {
    aspect-ratio: 4 / 5;
  }

  .about-contact-cta {
    padding-top: 26px;
    align-items: start;
  }

  .about-contact-cta p {
    margin-bottom: 0;
  }

  .about-card,
  .contact-form,
  .contact-info,
  .subpage-panel {
    border: 0;
    padding: 0;
    background: transparent;
  }

  .about-card {
    gap: 24px;
  }

  .about-card > div {
    order: 2;
  }

  .about-card img {
    order: 1;
  }

  .project-card h2,
  .resource-card h2,
  .about-card h2,
  .about-module h3,
  .about-showroom-preview h3,
  .about-contact-cta h3,
  .subpage-panel h2,
  .contact-info h2 {
    font-size: 1.55rem;
    line-height: 1.18;
  }

  .contact-layout {
    gap: 44px;
  }

  label {
    margin-bottom: 18px;
    font-size: .8125rem;
  }

  .contact-info p,
  .footer-links a,
  .footer-links span,
  .footer-bottom {
    overflow-wrap: anywhere;
  }

  .site-footer {
    padding-top: 54px;
    padding-bottom: 28px;
  }
}

/* 2026-05-30 live mobile foundation pass: keep desktop nav untouched. */
@media (max-width: 768px) {
  .site-header {
    overflow: visible;
  }

  .header-inner {
    width: 100%;
    max-width: 100vw;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    padding: 0 14px;
  }

  .brand {
    min-width: 0;
    max-width: calc(100vw - 158px);
    flex: 0 1 auto;
    margin-right: auto;
  }

  .brand img {
    max-width: min(168px, 42vw);
  }

  .header-actions {
    position: fixed;
    z-index: 102;
    top: 12px;
    right: max(62px, calc(100vw - 328px));
    flex: 0 0 auto;
    order: 2;
    margin-left: 0;
    margin-right: 0;
  }

  .header-actions a.header-icon-action {
    display: none;
  }

  .nav-toggle {
    position: fixed;
    z-index: 103;
    top: 12px;
    right: max(14px, calc(100vw - 376px));
    order: 3;
    flex: 0 0 40px;
    display: grid !important;
    place-items: center;
    padding: 0;
    border: 1px solid rgba(255,255,255,.48);
    border-radius: 50%;
    background: rgba(255,255,255,.04);
  }

  .site-header.scrolled .nav-toggle,
  body.nav-open .nav-toggle {
    border-color: rgba(0,0,0,.24);
    background: rgba(255,255,255,.28);
  }

  .nav-toggle span {
    position: absolute;
    left: 11px;
    right: 11px;
    width: auto;
    margin: 0;
  }

  .nav-toggle span:first-child {
    top: 15px;
  }

  .nav-toggle span:last-child {
    top: 23px;
  }

  body.nav-open .nav-toggle span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  body.nav-open .nav-toggle span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .main-nav {
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100vw;
    height: calc(100svh - 64px);
    max-height: calc(100svh - 64px);
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .nav-item.has-mega > a::after {
    content: "+";
    margin-left: auto;
    color: rgba(0,0,0,.48);
    font-size: 18px;
    line-height: 1;
  }

  .nav-item.has-mega.open > a::after {
    content: "-";
  }

  .nav-item > a,
  .nav-index-heading,
  .nav-index-links a {
    width: 100%;
  }

  .nav-index-heading {
    cursor: pointer;
  }

  .hero-section,
  .hero-slides,
  .hero-slide,
  .page-intro,
  .product-catalog-hero {
    max-width: 100vw;
    overflow: hidden;
  }

  .page-home .hero-slide {
    width: 100%;
    transform: none;
  }

  .page-home .hero-slide.active {
    transform: none;
  }

  .intro-content,
  .product-catalog-hero-inner,
  .hero-copy {
    min-width: 0;
    max-width: 100%;
  }

  .page-intro h1,
  .page-intro span,
  .product-catalog-hero h1,
  .product-catalog-hero-inner > span,
  .hero-copy h1,
  .hero-copy span {
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .page-intro,
  .product-catalog-hero {
    padding-left: 24px;
    padding-right: 24px;
  }

  .product-catalog-hero .outline-link {
    width: 100%;
  }
}

/* 2026-06-02 mobile Home independent layout: image-complete first, desktop snap untouched. */
@media (max-width: 768px) {
  .page-home .site-header {
    height: 68px;
    color: #111;
    background: rgba(250,249,246,.96);
    border-bottom: 1px solid var(--line-dark);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }

  .page-home .site-header.scrolled {
    color: #111;
    background: rgba(250,249,246,.96);
    border-bottom: 1px solid var(--line-dark);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }

  .page-home .site-header:not(.scrolled) .header-icon-action,
  .page-home .site-header:not(.scrolled) .nav-toggle {
    border-color: rgba(0,0,0,.22);
    background: rgba(255,255,255,.56);
  }

  html.doc-page-home {
    scroll-snap-type: none;
  }

  .page-home .home-sections {
    max-width: 100vw;
    overflow-x: hidden;
    background: #fff;
  }

  .page-home .snap-section {
    min-height: 0;
    width: 100%;
    max-width: 100vw;
    display: grid;
    grid-template-columns: 1fr;
    align-items: start;
    gap: 22px;
    padding: 64px 24px;
    overflow: hidden;
  }

  .page-home .mobile-home-image {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
    background: #f5f2ec;
  }

  .page-home .hero-section {
    display: block;
    height: auto;
    min-height: 0;
    max-height: none;
    margin-top: 68px;
    padding: 0 0 28px;
    background: #fff;
  }

  .page-home .hero-slides {
    position: relative;
    inset: auto;
    width: 100%;
  }

  .page-home .hero-slide {
    position: relative;
    inset: auto;
    display: none;
    align-content: start;
    gap: 0;
    padding: 0;
    background-image: none !important;
    background: #fff;
    color: #111;
    opacity: 0;
    transform: none;
    transition: none;
  }

  .page-home .hero-slide.active {
    display: grid;
    visibility: visible;
    opacity: 1;
    transform: none;
  }

  .page-home .hero-slide::after {
    display: none;
  }

  .page-home .mobile-hero-image {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    object-position: center;
    padding: 0;
    background: #f5f2ec;
  }

  .page-home .hero-copy {
    align-self: start;
    margin: 0;
    padding: 20px 24px 0;
    max-width: 100%;
    color: #111;
    text-shadow: none;
  }

  .page-home .hero-copy p {
    margin-bottom: 8px;
    font-size: .64rem;
  }

  .page-home .hero-copy h1 {
    max-width: 13ch;
    margin-bottom: 10px;
    font-size: clamp(1.52rem, 6.2vw, 1.95rem);
    line-height: 1.06;
  }

  .page-home .hero-copy span {
    max-width: 34ch;
    margin-bottom: 14px;
    color: #555;
    font-size: .82rem;
    line-height: 1.45;
  }

  .page-home .hero-copy a {
    width: auto;
    min-height: 40px;
    padding: .68rem 1.1rem;
    color: #111;
  }

  .page-home .hero-dots {
    position: static;
    margin: 18px 24px 0;
    display: flex;
    gap: 10px;
  }

  .page-home .hero-dots button {
    width: 24px;
    height: 22px;
    padding: 10px 0;
    background-color: rgba(0,0,0,.24);
    background-clip: content-box;
  }

  .page-home .hero-dots button.active {
    background-color: #111;
  }

  .page-home .slide-count {
    display: none;
  }

  .page-home .section-copy,
  .page-home .founder-copy {
    max-width: 100%;
  }

  .page-home .section-copy p,
  .page-home .founder-copy p {
    margin-bottom: 10px;
    font-size: .68rem;
  }

  .page-home .section-copy h2,
  .page-home .founder-copy h2 {
    max-width: 13ch;
    margin-bottom: 16px;
    font-size: clamp(1.85rem, 7vw, 2.28rem);
    line-height: 1.08;
  }

  .page-home .section-copy span,
  .page-home .founder-copy > span {
    max-width: 34ch;
    margin-bottom: 20px;
    color: #555;
    font-size: .94rem;
    line-height: 1.65;
  }

  .page-home .section-copy a,
  .page-home .founder-copy a {
    width: 100%;
    min-height: 48px;
  }

  .page-home .home-product-section {
    gap: 24px;
    padding-top: 72px;
  }

  .page-home .mobile-products-visual {
    aspect-ratio: 16 / 10;
    height: auto;
    max-height: 360px;
    object-fit: cover;
  }

  .page-home .home-product-grid {
    display: flex;
    gap: 14px;
    width: calc(100vw - 48px);
    max-width: 100%;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x proximity;
    padding-bottom: 8px;
  }

  .page-home .home-product-grid::-webkit-scrollbar,
  .page-home .project-strip::-webkit-scrollbar {
    height: 3px;
  }

  .page-home .home-product-grid::-webkit-scrollbar-thumb,
  .page-home .project-strip::-webkit-scrollbar-thumb {
    background: rgba(0,0,0,.22);
  }

  .page-home .home-product-card,
  .page-home .home-product-card:first-child,
  .page-home .home-product-card:nth-child(2),
  .page-home .home-product-card:nth-child(3) {
    flex: 0 0 min(76vw, 290px);
    min-height: 0;
    aspect-ratio: auto;
    display: block;
    scroll-snap-align: start;
    padding: 0;
    color: #111;
    background: transparent;
  }

  .page-home .home-product-card::after {
    display: none;
  }

  .page-home .home-product-card img {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    object-position: center;
    padding: 0;
    background: #f5f2ec;
    filter: none;
  }

  .page-home .home-product-card-copy {
    position: static;
    display: grid;
    gap: 14px;
    max-width: 100%;
    padding-top: 12px;
  }

  .page-home .home-product-card small {
    color: var(--muted);
    font-size: .68rem;
  }

  .page-home .home-product-card strong,
  .page-home .home-product-card:first-child strong {
    color: #111;
    font-size: 1rem;
    line-height: 1.18;
    font-weight: 400;
  }

  .page-home .home-product-card span {
    display: none;
  }

  .page-home .home-product-card:hover img {
    transform: none;
  }

  .page-home .visual-section {
    min-height: 0;
    background-image: none !important;
    background: #fff;
    color: #111;
  }

  .page-home .visual-section::after {
    display: none;
  }

  .page-home .mobile-section-image {
    aspect-ratio: 16 / 9;
    height: auto;
    max-height: 390px;
    object-fit: cover;
  }

  .page-home .visual-section .section-copy p {
    color: var(--muted);
  }

  .page-home .visual-section .section-copy h2 {
    color: #111;
  }

  .page-home .visual-section .section-copy span {
    color: #555;
  }

  .page-home .projects-teaser {
    gap: 24px;
    background: #fff;
  }

  .page-home .project-strip {
    display: flex;
    gap: 14px;
    width: calc(100vw - 48px);
    max-width: 100%;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x proximity;
    padding-bottom: 8px;
  }

  .page-home .project-strip article {
    flex: 0 0 min(76vw, 290px);
    scroll-snap-align: start;
  }

  .page-home .project-strip img {
    aspect-ratio: 16 / 10;
    object-fit: cover;
    object-position: center;
    background: #f5f2ec;
  }

  .page-home .project-strip h3 {
    margin-top: 12px;
    font-size: 1rem;
  }

  .page-home .founder-section {
    gap: 24px;
  }

  .page-home .founder-portrait {
    width: 100%;
    aspect-ratio: 4 / 5;
    background: #f5f2ec;
  }

  .page-home .founder-portrait img {
    object-fit: cover;
    object-position: center;
    padding: 0;
    background: #f5f2ec;
    filter: none;
  }

  .page-home .founder-copy {
    padding-top: 22px;
  }

  .page-home .founder-positioning {
    gap: 8px;
    margin-bottom: 20px;
  }

  .page-home .founder-positioning span {
    padding: 9px 0;
    font-size: .78rem;
    line-height: 1.35;
  }
}
