:root {
  --oak: #b98245;
  --oak-dark: #6f4525;
  --black: #070706;
  --anthracite: #151514;
  --stone: #d8d6cf;
  --off: #f5f1e9;
  --concrete: #aaa79e;
  --moss: #50634a;
  --copper: #c17d48;
  --line: rgba(245, 241, 233, 0.16);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--black);
  color: var(--off);
  font-family: var(--font);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 18% 6%, rgba(193, 125, 72, 0.16), transparent 28rem),
    linear-gradient(180deg, #070706 0%, #171411 34%, #f5f1e9 34.1%, #f5f1e9 70%, #080806 70.1%);
}

body.no-scroll {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

::selection {
  background: var(--copper);
  color: var(--black);
}

.grain {
  position: fixed;
  inset: 0;
  z-index: 50;
  pointer-events: none;
  opacity: 0.16;
  mix-blend-mode: soft-light;
  background-image:
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 3px 3px;
}

.cursor {
  position: fixed;
  z-index: 60;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(245, 241, 233, 0.68);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: width .22s ease, height .22s ease, opacity .2s ease, background .2s ease;
}

.cursor.is-active {
  width: 54px;
  height: 54px;
  background: rgba(185, 130, 69, 0.1);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px clamp(20px, 4vw, 64px);
  color: var(--off);
  transition: background .35s ease, border .35s ease, padding .35s ease;
}

.site-header.is-scrolled {
  padding-block: 14px;
  background: rgba(7, 7, 6, 0.68);
  border-bottom: 1px solid rgba(245, 241, 233, 0.12);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--oak), #e1bc7a);
  color: var(--black);
  font-weight: 950;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1;
}

.brand strong {
  font-size: 13px;
  font-weight: 900;
}

.brand small {
  margin-top: 5px;
  color: rgba(245, 241, 233, 0.68);
  font-size: 10px;
  font-weight: 800;
}

.nav {
  display: flex;
  gap: clamp(16px, 2.8vw, 36px);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.nav a {
  opacity: 0.72;
  transition: opacity .2s ease, color .2s ease;
}

.nav a:hover {
  color: #e5b979;
  opacity: 1;
}

.header-call {
  padding: 13px 18px;
  border: 1px solid rgba(245, 241, 233, 0.22);
  color: var(--off);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: 120vh;
  display: grid;
  align-items: center;
  padding: 120px clamp(22px, 6vw, 86px) 18vh;
  overflow: clip;
  perspective: 1200px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 7, 6, .9), rgba(7, 7, 6, .36) 42%, rgba(7, 7, 6, .2)),
    radial-gradient(circle at 78% 36%, rgba(255, 219, 161, 0.2), transparent 28rem);
  z-index: 1;
}

.hero-stage {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
}

.factory-front {
  position: absolute;
  inset: -4vh -4vw;
  background:
    linear-gradient(180deg, rgba(112, 152, 184, .34), transparent 45%),
    linear-gradient(120deg, #1b1c1a 0 22%, transparent 22.1%),
    #141312;
  overflow: hidden;
}

.factory-front::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 18%;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.42)), #201d19;
}

.facade {
  position: absolute;
  right: clamp(0px, 5vw, 90px);
  bottom: 13vh;
  width: min(70vw, 980px);
  height: min(62vh, 620px);
  transform: rotateY(-8deg) rotateX(1deg);
  transform-origin: center;
  box-shadow: var(--shadow);
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,.08) 0 1px, transparent 1px 22px),
    linear-gradient(100deg, #8b562b, #d49a56 36%, #a86a32 70%, #5f371d);
}

.facade::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.42), transparent 24%, transparent 70%, rgba(0,0,0,.36)),
    repeating-linear-gradient(90deg, rgba(49, 26, 12, 0.22) 0 6px, transparent 6px 19px);
}

.facade-sign {
  position: absolute;
  left: 10%;
  top: 14%;
  z-index: 2;
  color: white;
  font-size: clamp(16px, 2.4vw, 36px);
  font-weight: 950;
  line-height: .9;
  text-shadow: 0 4px 18px rgba(0,0,0,.48);
}

.window {
  position: absolute;
  z-index: 2;
  background:
    linear-gradient(135deg, rgba(193, 221, 232, .7), rgba(7, 16, 19, .86)),
    linear-gradient(90deg, transparent 48%, rgba(255,255,255,.3) 49% 51%, transparent 52%);
  border: 9px solid #171716;
  box-shadow: inset 0 0 30px rgba(255,255,255,.12);
}

.w1 { left: 12%; bottom: 51%; width: 17%; height: 18%; }
.w2 { left: 37%; bottom: 55%; width: 18%; height: 18%; }
.w3 { right: 10%; bottom: 57%; width: 22%; height: 18%; }
.w4 { left: 12%; bottom: 22%; width: 17%; height: 18%; }

.door {
  position: absolute;
  bottom: 0;
  z-index: 4;
  width: 21%;
  height: 46%;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,.08) 0 1px, transparent 1px 16px),
    linear-gradient(100deg, #7b4924, #c1803f 56%, #653519);
  border-top: 10px solid #181716;
  transition: transform .08s linear;
}

.door-left {
  left: 38%;
  transform-origin: left center;
}

.door-right {
  left: 59%;
  transform-origin: right center;
}

.interior-glow {
  position: absolute;
  left: 39%;
  bottom: 0;
  width: 41%;
  height: 46%;
  background:
    linear-gradient(180deg, rgba(246, 205, 135, .92), rgba(68, 49, 27, .72)),
    repeating-linear-gradient(90deg, rgba(0,0,0,.18) 0 2px, transparent 2px 42px);
  opacity: .8;
}

.sunbeam {
  position: absolute;
  right: 8%;
  top: -18%;
  width: 34%;
  height: 88%;
  transform: rotate(18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 225, 175, .16), transparent);
  filter: blur(14px);
  animation: beam 8s ease-in-out infinite alternate;
}

.dust {
  position: absolute;
  z-index: 4;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.34) 0 1px, transparent 1.5px);
  background-size: 120px 120px;
  opacity: .34;
  animation: dust 18s linear infinite;
}

.dust-b {
  background-size: 170px 170px;
  animation-duration: 24s;
  opacity: .2;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 980px;
  transform: translateZ(70px);
}

.eyebrow,
.section-kicker,
.section-heading span,
.factory-intro span,
.tech-copy span,
.forest-panel span,
.certificates span,
.engraved span {
  display: block;
  color: #d9ae70;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 920px;
  margin-bottom: 24px;
  font-size: clamp(58px, 11.4vw, 168px);
  font-weight: 950;
  line-height: .82;
  letter-spacing: 0;
  text-transform: uppercase;
}

.lead {
  max-width: 560px;
  color: rgba(245, 241, 233, 0.82);
  font-size: clamp(20px, 2.4vw, 32px);
  line-height: 1.18;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 24px;
  overflow: hidden;
  border: 1px solid rgba(245, 241, 233, .2);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0;
  transition: transform .3s ease, border .3s ease, background .3s ease;
}

.button::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-105%);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.22), transparent);
  transition: transform .55s ease;
}

.button:hover::after {
  transform: translateX(105%);
}

.primary {
  background: var(--off);
  color: var(--black);
}

.ghost {
  background: rgba(245, 241, 233, 0.06);
  color: var(--off);
  backdrop-filter: blur(18px);
}

.scroll-cue {
  position: absolute;
  z-index: 2;
  left: clamp(22px, 6vw, 86px);
  bottom: 44px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(245, 241, 233, .66);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.scroll-cue span {
  width: 1px;
  height: 54px;
  background: linear-gradient(var(--off), transparent);
  transform-origin: top;
  animation: cue 1.8s ease-in-out infinite;
}

.inside-transition {
  position: relative;
  min-height: 92vh;
  display: grid;
  place-items: center;
  padding: clamp(70px, 10vw, 140px) clamp(22px, 6vw, 86px);
  overflow: hidden;
  background: #0c0c0b;
}

.tunnel {
  position: absolute;
  inset: 0;
  perspective: 700px;
  background:
    linear-gradient(180deg, rgba(7,7,6,.8), rgba(7,7,6,.26)),
    linear-gradient(90deg, #070706, #24211c 48%, #070706);
}

.tunnel::before,
.tunnel::after {
  content: "";
  position: absolute;
  inset: 8% 0 auto;
  height: 84%;
  transform: perspective(600px) rotateX(62deg);
  background:
    repeating-linear-gradient(90deg, rgba(245,241,233,.08) 0 2px, transparent 2px 90px),
    repeating-linear-gradient(0deg, rgba(245,241,233,.06) 0 2px, transparent 2px 86px);
  transform-origin: bottom;
}

.beam {
  position: absolute;
  top: -20%;
  left: 25%;
  width: 42%;
  height: 100%;
  transform: rotate(12deg);
  background: linear-gradient(90deg, transparent, rgba(229,185,121,.14), transparent);
  filter: blur(16px);
}

.rail,
.machine-line {
  position: absolute;
  background: rgba(245,241,233,.18);
  box-shadow: 0 0 28px rgba(229,185,121,.16);
}

.rail-a { left: 18%; bottom: 0; width: 2px; height: 80%; transform: rotate(14deg); }
.rail-b { right: 18%; bottom: 0; width: 2px; height: 80%; transform: rotate(-14deg); }
.line-a { left: 12%; top: 32%; width: 28%; height: 1px; }
.line-b { right: 10%; top: 58%; width: 32%; height: 1px; }

.transition-copy {
  position: relative;
  max-width: 900px;
  text-align: center;
}

.transition-copy span {
  color: #d9ae70;
  font-weight: 950;
  text-transform: uppercase;
}

.transition-copy h2 {
  margin: 14px 0 0;
  font-size: clamp(36px, 6vw, 96px);
  line-height: .92;
  text-transform: uppercase;
}

section {
  position: relative;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(120px, 220px) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 90px);
  padding: clamp(90px, 13vw, 180px) clamp(22px, 6vw, 86px);
}

.intro,
.sustainability,
.why,
.certificates {
  color: var(--black);
  background: var(--off);
}

.large-copy h2,
.section-heading h2,
.tech-copy h2,
.certificates h2,
.engraved h2 {
  margin-bottom: 28px;
  font-size: clamp(38px, 6vw, 96px);
  font-weight: 950;
  line-height: .92;
  letter-spacing: 0;
  text-transform: uppercase;
}

.large-copy p,
.section-heading p,
.tech-copy p,
.certificates p,
.engraved p {
  max-width: 760px;
  color: rgba(7, 7, 6, .68);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.45;
}

.craft-panels {
  grid-column: 2;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 18px;
}

.craft-card {
  min-height: 440px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  color: var(--off);
  box-shadow: 0 26px 60px rgba(77, 53, 31, .14);
}

.wood-card {
  background:
    linear-gradient(180deg, transparent, rgba(0,0,0,.72)),
    repeating-linear-gradient(90deg, rgba(255,255,255,.08) 0 1px, transparent 1px 18px),
    linear-gradient(120deg, #9d632f, #d19a57 48%, #71411f);
}

.image-card,
.product-visual,
.factory-scene,
.review-bg {
  background-position: center;
  background-size: cover;
}

.image-joinery {
  background-image:
    linear-gradient(180deg, transparent, rgba(0,0,0,.76)),
    url("https://images.unsplash.com/photo-1601058268499-e52658b8bb88?auto=format&fit=crop&w=1400&q=85");
}

.craft-card span,
.product-card span,
.factory-scene span,
.timeline span,
.project-card span {
  color: #d9ae70;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.craft-card h3,
.product-card h3,
.factory-scene h3,
.timeline h3 {
  margin: 12px 0;
  font-size: clamp(26px, 3vw, 46px);
  line-height: 1;
  text-transform: uppercase;
}

.craft-card p,
.product-card p,
.factory-scene p,
.timeline p,
.project-card p {
  margin-bottom: 0;
  color: rgba(245, 241, 233, .72);
  font-size: 16px;
  line-height: 1.5;
}

.products,
.projects,
.reviews {
  padding: clamp(90px, 13vw, 180px) clamp(22px, 6vw, 86px);
  background: #0c0b0a;
}

.section-heading {
  max-width: 1080px;
  margin-bottom: 48px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(220px, 1fr));
  gap: 16px;
}

.product-card {
  min-height: 500px;
  display: flex;
  flex-direction: column;
  padding: 14px;
  background: rgba(245, 241, 233, .055);
  border: 1px solid rgba(245, 241, 233, .12);
  overflow: hidden;
  transition: transform .35s ease, border .35s ease, box-shadow .35s ease;
}

.product-card:hover {
  transform: translateY(-9px);
  border-color: rgba(217, 174, 112, .46);
  box-shadow: 0 30px 90px rgba(0,0,0,.42);
}

.product-visual {
  min-height: 245px;
  margin-bottom: auto;
  transition: transform .6s ease, filter .6s ease;
}

.product-card:hover .product-visual {
  transform: scale(1.035);
  filter: saturate(1.12) contrast(1.04);
}

.product-card > span,
.product-card h3,
.product-card p {
  margin-inline: 12px;
}

.product-card > span {
  margin-top: 22px;
}

.visual-frames { background-image: linear-gradient(180deg, transparent, rgba(0,0,0,.44)), url("https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?auto=format&fit=crop&w=900&q=85"); }
.visual-windows { background-image: linear-gradient(180deg, transparent, rgba(0,0,0,.44)), url("https://images.unsplash.com/photo-1511818966892-d7d671e672a2?auto=format&fit=crop&w=900&q=85"); }
.visual-doors { background-image: linear-gradient(180deg, transparent, rgba(0,0,0,.44)), url("https://images.unsplash.com/photo-1600607687920-4e2a09cf159d?auto=format&fit=crop&w=900&q=85"); }
.visual-sliding { background-image: linear-gradient(180deg, transparent, rgba(0,0,0,.44)), url("https://images.unsplash.com/photo-1600566753190-17f0baa2a6c3?auto=format&fit=crop&w=900&q=85"); }
.visual-custom { background-image: linear-gradient(180deg, transparent, rgba(0,0,0,.44)), url("https://images.unsplash.com/photo-1504917595217-d4dc5ebe6122?auto=format&fit=crop&w=900&q=85"); }

.factory {
  height: 430vh;
  background: #080806;
}

.factory-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.factory-sticky::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 65% 18%, rgba(193, 125, 72, .18), transparent 32rem),
    linear-gradient(90deg, #080806, transparent 28%, transparent 72%, #080806);
  z-index: 2;
  pointer-events: none;
}

.factory-intro {
  position: absolute;
  z-index: 3;
  left: clamp(22px, 6vw, 86px);
  top: 13vh;
  max-width: 760px;
}

.factory-intro h2 {
  font-size: clamp(36px, 5.5vw, 86px);
  line-height: .92;
  text-transform: uppercase;
}

.factory-track {
  display: flex;
  gap: 22px;
  padding-left: clamp(22px, 6vw, 86px);
  will-change: transform;
}

.factory-scene {
  flex: 0 0 min(78vw, 1050px);
  height: 68vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(26px, 4vw, 56px);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.scene-machine { background-image: linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.82)), url("https://images.unsplash.com/photo-1565908069184-a67f7a336f2b?auto=format&fit=crop&w=1600&q=85"); }
.scene-timber { background-image: linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.82)), url("https://images.unsplash.com/photo-1616046229478-9901c5536a45?auto=format&fit=crop&w=1600&q=85"); }
.scene-bench { background-image: linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.82)), url("https://images.unsplash.com/photo-1601058268499-e52658b8bb88?auto=format&fit=crop&w=1600&q=85"); }
.scene-finish { background-image: linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.82)), url("https://images.unsplash.com/photo-1581092160607-ee22621dd758?auto=format&fit=crop&w=1600&q=85"); }
.scene-assembly { background-image: linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.82)), url("https://images.unsplash.com/photo-1600607688969-a5bfcd646154?auto=format&fit=crop&w=1600&q=85"); }

.sustainability {
  overflow: hidden;
}

.forest-panel {
  grid-column: 2;
  min-height: 460px;
  display: grid;
  grid-template-columns: .9fr 1fr;
  align-items: end;
  gap: 24px;
  padding: clamp(26px, 4vw, 54px);
  background:
    linear-gradient(135deg, rgba(80,99,74,.92), rgba(12,28,17,.76)),
    url("https://images.unsplash.com/photo-1448375240586-882707db888b?auto=format&fit=crop&w=1400&q=85");
  background-position: center;
  background-size: cover;
  color: var(--off);
  box-shadow: var(--shadow);
}

.forest-panel h3 {
  margin: 12px 0;
  font-size: clamp(34px, 5vw, 76px);
  line-height: .9;
  text-transform: uppercase;
}

.forest-panel p {
  color: rgba(245, 241, 233, .76);
  font-size: 18px;
  line-height: 1.48;
}

.tree-field {
  min-height: 300px;
  background:
    radial-gradient(circle at 50% 100%, rgba(255,255,255,.18), transparent 18rem),
    repeating-linear-gradient(90deg, transparent 0 24px, rgba(245,241,233,.24) 25px 27px, transparent 28px 38px);
  mask-image: linear-gradient(180deg, transparent, #000 16%, #000);
}

.stats {
  grid-column: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.stat {
  padding: 26px;
  border-top: 1px solid rgba(7,7,6,.16);
  background: rgba(255,255,255,.34);
}

.stat strong {
  display: block;
  font-size: clamp(38px, 5vw, 78px);
  line-height: 1;
}

.stat span {
  display: block;
  margin-top: 14px;
  color: rgba(7, 7, 6, .62);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.innovation {
  padding: clamp(90px, 13vw, 180px) clamp(22px, 6vw, 86px);
  background:
    radial-gradient(circle at 76% 44%, rgba(91, 123, 105, .22), transparent 34rem),
    linear-gradient(135deg, #050504, #151514);
}

.innovation-grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: clamp(30px, 6vw, 90px);
  align-items: center;
}

.tech-copy p {
  color: rgba(245, 241, 233, .68);
}

.blueprint {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  border: 1px solid rgba(245,241,233,.13);
  background:
    linear-gradient(90deg, rgba(217,174,112,.08) 1px, transparent 1px),
    linear-gradient(rgba(217,174,112,.08) 1px, transparent 1px),
    radial-gradient(circle at 45% 50%, rgba(217,174,112,.16), transparent 26rem),
    #0a0d0b;
  background-size: 42px 42px, 42px 42px, auto, auto;
}

.blueprint::before {
  content: "";
  position: absolute;
  inset: 16% 12%;
  border: 1px solid rgba(217,174,112,.5);
  transform: skew(-9deg);
  box-shadow: 0 0 40px rgba(217,174,112,.12);
}

.blueprint::after {
  content: "";
  position: absolute;
  left: 18%;
  top: 29%;
  width: 62%;
  height: 26%;
  border: 2px solid rgba(245,241,233,.34);
  transform: rotate(-8deg);
}

.scan {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(217,174,112,.15), transparent);
  height: 28%;
  animation: scan 4.8s ease-in-out infinite;
}

.node {
  position: absolute;
  width: 12px;
  height: 12px;
  background: #d9ae70;
  box-shadow: 0 0 26px #d9ae70;
}

.n1 { left: 24%; top: 24%; }
.n2 { right: 20%; top: 48%; }
.n3 { left: 42%; bottom: 22%; }

.measure {
  position: absolute;
  padding: 10px 12px;
  border: 1px solid rgba(217,174,112,.28);
  background: rgba(0,0,0,.26);
  color: rgba(245,241,233,.72);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.m1 { left: 13%; top: 16%; }
.m2 { right: 13%; top: 35%; }
.m3 { left: 35%; bottom: 15%; }

.why {
  padding: clamp(90px, 13vw, 180px) clamp(22px, 6vw, 86px);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(7, 7, 6, .12);
}

.timeline article {
  min-height: 360px;
  padding: 28px;
  background: var(--off);
}

.timeline p {
  color: rgba(7, 7, 6, .62);
}

.projects {
  min-height: 100vh;
  display: grid;
  place-items: center;
  background:
    linear-gradient(180deg, rgba(0,0,0,.62), rgba(0,0,0,.78)),
    url("https://images.unsplash.com/photo-1600607687644-c7171b42498b?auto=format&fit=crop&w=1800&q=85");
  background-position: center;
  background-size: cover;
}

.project-slider {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  width: 100%;
}

.project-card {
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(26px, 4vw, 54px);
  border: 1px solid rgba(245,241,233,.16);
  background: rgba(7,7,6,.4);
  backdrop-filter: blur(22px);
  transform-style: preserve-3d;
  transition: transform .35s ease, background .35s ease, box-shadow .35s ease;
}

.project-card:hover {
  transform: perspective(900px) rotateX(3deg) rotateY(-3deg) translateY(-10px);
  background: rgba(7,7,6,.58);
  box-shadow: 0 28px 90px rgba(217,174,112,.16);
}

.project-card h2 {
  margin: 16px 0;
  font-size: clamp(34px, 5vw, 76px);
  line-height: .9;
  text-transform: uppercase;
}

.reviews {
  overflow: hidden;
}

.review-bg {
  position: absolute;
  inset: 0;
  opacity: .26;
  background-image: url("https://images.unsplash.com/photo-1600585152220-90363fe7e115?auto=format&fit=crop&w=1800&q=85");
}

.review-cards {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

blockquote {
  min-height: 330px;
  margin: 0;
  padding: 30px;
  border: 1px solid rgba(245,241,233,.18);
  background: rgba(245,241,233,.08);
  backdrop-filter: blur(20px);
  box-shadow: 0 24px 70px rgba(0,0,0,.28);
}

blockquote p {
  color: rgba(245,241,233,.86);
  font-size: clamp(22px, 2.6vw, 34px);
  line-height: 1.16;
}

blockquote cite {
  color: #d9ae70;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}

.certificates {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 6vw, 90px);
  align-items: end;
  padding: clamp(80px, 10vw, 140px) clamp(22px, 6vw, 86px);
}

.badge-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.badge-row span {
  min-height: 100px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(7, 7, 6, .16);
  color: var(--black);
  font-size: 18px;
}

.final-cta {
  min-height: 88vh;
  display: grid;
  place-items: center;
  padding: clamp(90px, 13vw, 180px) clamp(22px, 6vw, 86px);
  background:
    linear-gradient(180deg, rgba(0,0,0,.18), rgba(0,0,0,.58)),
    repeating-linear-gradient(90deg, rgba(255,255,255,.06) 0 1px, transparent 1px 20px),
    linear-gradient(110deg, #70411f, #c88a45 42%, #5e351b);
}

.engraved {
  max-width: 1120px;
  text-align: center;
  color: var(--off);
  text-shadow: 0 2px 16px rgba(0,0,0,.25);
}

.engraved p {
  margin-inline: auto;
  color: rgba(245,241,233,.74);
}

.engraved .hero-actions {
  justify-content: center;
}

.footer {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 30px;
  padding: 70px clamp(22px, 6vw, 86px);
  background:
    linear-gradient(180deg, rgba(0,0,0,.82), rgba(0,0,0,.9)),
    repeating-linear-gradient(90deg, rgba(185,130,69,.14) 0 1px, transparent 1px 18px),
    #070706;
  color: rgba(245,241,233,.74);
}

.footer h3 {
  color: var(--off);
  font-size: 12px;
  text-transform: uppercase;
}

.footer a {
  display: block;
  margin-top: 10px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(38px);
  transition: opacity .9s cubic-bezier(.16, 1, .3, 1), transform .9s cubic-bezier(.16, 1, .3, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes dust {
  to { transform: translate3d(70px, -90px, 0); }
}

@keyframes beam {
  to { transform: rotate(12deg) translateX(40px); opacity: .7; }
}

@keyframes cue {
  50% { transform: scaleY(.42); opacity: .54; }
}

@keyframes scan {
  0%, 100% { transform: translateY(-40%); opacity: .2; }
  50% { transform: translateY(310%); opacity: .8; }
}

@media (max-width: 1180px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-card:last-child {
    grid-column: span 2;
  }

  .timeline,
  .review-cards,
  .project-slider,
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  .cursor {
    display: none;
  }

  .site-header {
    align-items: flex-start;
  }

  .nav {
    display: none;
  }

  .header-call {
    padding: 12px;
  }

  .hero {
    min-height: 112vh;
    padding-top: 110px;
  }

  .facade {
    right: -32vw;
    bottom: 7vh;
    width: 118vw;
    height: 58vh;
  }

  .section-grid,
  .innovation-grid,
  .certificates {
    grid-template-columns: 1fr;
  }

  .craft-panels,
  .forest-panel,
  .stats {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .product-grid,
  .timeline,
  .review-cards,
  .project-slider {
    grid-template-columns: 1fr;
  }

  .product-card:last-child {
    grid-column: auto;
  }

  .factory-scene {
    flex-basis: 86vw;
  }

  .forest-panel {
    min-height: 560px;
  }

  .blueprint {
    min-height: 460px;
  }

  .badge-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer {
    grid-template-columns: 1fr;
  }
}

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

/* Refinement pass: calmer typography and a real video-led factory entrance. */
:root {
  --font: "Aptos", "Inter", "Helvetica Neue", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.brand {
  text-transform: none;
}

.brand-mark,
.brand strong,
.header-call,
.nav,
.button,
.scroll-cue,
.eyebrow,
.section-kicker,
.section-heading span,
.factory-intro span,
.tech-copy span,
.forest-panel span,
.certificates span,
.engraved span {
  font-weight: 680;
}

.brand-mark {
  font-weight: 760;
}

.brand-logo {
  display: block;
  width: clamp(150px, 15vw, 228px);
  height: auto;
  max-height: 48px;
  object-fit: contain;
}

.site-header.is-scrolled .brand-logo {
  max-height: 42px;
}

.footer-logo {
  width: min(240px, 70vw);
  max-height: none;
}

.brand small {
  font-weight: 560;
}

.nav,
.header-call,
.button,
.scroll-cue {
  text-transform: none;
}

.hero-sequence {
  min-height: 560vh;
  display: block;
  padding: 0 clamp(22px, 6vw, 86px);
  background: #070706;
}

.hero-sequence::before {
  background:
    linear-gradient(90deg, rgba(7, 7, 6, .88), rgba(7, 7, 6, .28) 44%, rgba(7, 7, 6, .12)),
    linear-gradient(180deg, rgba(7, 7, 6, .48), rgba(7, 7, 6, .08) 42%, rgba(7, 7, 6, .88)),
    radial-gradient(circle at 76% 34%, rgba(255, 219, 161, 0.12), transparent 28rem);
}

.hero-sequence .hero-stage {
  position: sticky;
  top: 0;
  height: 100vh;
  margin-inline: calc(clamp(22px, 6vw, 86px) * -1);
  overflow: hidden;
  background: #070706;
  transform: none;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.94) contrast(1.08) brightness(.78);
  transform: scale(1.015);
  will-change: transform, filter;
}

.hero-vignette {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7,7,6,.84), rgba(7,7,6,.18) 42%, rgba(7,7,6,.34)),
    linear-gradient(180deg, rgba(7,7,6,.18), transparent 42%, rgba(7,7,6,.88)),
    radial-gradient(circle at 55% 42%, transparent 0 30%, rgba(0,0,0,.5) 82%);
}

.hero-wood-rail {
  position: absolute;
  left: clamp(18px, 4vw, 54px);
  right: clamp(18px, 4vw, 54px);
  height: 10px;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,.08) 0 1px, transparent 1px 18px),
    linear-gradient(90deg, #553017, #ba7d3e 44%, #74401c);
  opacity: .82;
  box-shadow: 0 18px 40px rgba(0,0,0,.24);
}

.rail-top {
  top: 92px;
}

.rail-bottom {
  bottom: 38px;
}

.hero-meta {
  position: absolute;
  right: clamp(22px, 6vw, 86px);
  bottom: 66px;
  display: grid;
  gap: 5px;
  padding: 14px 16px;
  border: 1px solid rgba(245,241,233,.14);
  background: rgba(7,7,6,.34);
  backdrop-filter: blur(18px);
  color: rgba(245,241,233,.7);
}

.hero-meta span,
.hero-meta strong {
  font-size: 11px;
  letter-spacing: 0;
}

.hero-meta strong {
  color: var(--off);
  font-weight: 680;
}

.hero-sequence .hero-copy {
  position: absolute;
  inset: 0 auto 0 clamp(22px, 6vw, 86px);
  width: min(880px, calc(100vw - clamp(22px, 6vw, 86px) * 2));
  min-height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  pointer-events: none;
  transform: none;
}

.hero-sequence .hero-copy a {
  pointer-events: auto;
}

h1 {
  max-width: 880px;
  font-size: clamp(46px, 8.4vw, 126px);
  font-weight: 720;
  line-height: .92;
  text-transform: none;
}

.lead {
  max-width: 610px;
  font-size: clamp(18px, 2vw, 28px);
  line-height: 1.3;
}

.large-copy h2,
.section-heading h2,
.tech-copy h2,
.certificates h2,
.engraved h2,
.transition-copy h2,
.factory-intro h2,
.project-card h2,
.forest-panel h3 {
  font-weight: 720;
  line-height: .98;
  text-transform: none;
}

.craft-card h3,
.product-card h3,
.factory-scene h3,
.timeline h3 {
  font-weight: 720;
  text-transform: none;
}

.real-workshop {
  background:
    linear-gradient(90deg, rgba(7,7,6,.9), rgba(7,7,6,.18) 48%, rgba(7,7,6,.82)),
    linear-gradient(180deg, rgba(7,7,6,.42), rgba(7,7,6,.82)),
    url("https://images.unsplash.com/photo-1601058268499-e52658b8bb88?auto=format&fit=crop&w=1800&q=88");
  background-position: center;
  background-size: cover;
}

.real-workshop::before,
.real-workshop::after {
  opacity: .24;
}

@media (max-width: 820px) {
  .hero-sequence {
    min-height: 460vh;
    padding: 0 clamp(18px, 5vw, 28px);
  }

  .hero-sequence .hero-stage {
    margin-inline: calc(clamp(18px, 5vw, 28px) * -1);
  }

  .hero-meta {
    display: none;
  }

  .brand-logo {
    width: 150px;
    max-height: 38px;
  }

  .hero-sequence .hero-copy {
    left: clamp(18px, 5vw, 28px);
    width: min(92vw, 680px);
  }

  .hero-wood-rail {
    height: 7px;
  }

  h1 {
    font-size: clamp(44px, 13vw, 76px);
  }
}
