@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700&family=Syne:wght@700;800&display=swap");

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body { -webkit-font-smoothing: antialiased; }
img, svg { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
a { color: inherit; }

:root {
  color-scheme: dark;
  --bg: #16141c;
  --bg-2: #1e1b25;
  --panel: #26222d;
  --line: #4a4036;
  --ink: #f7f2ea;
  --ink-2: #d4cbb8;
  --ink-3: #9a9084;
  --amber: #e8a54b;
  --amber-2: #ffd08a;
  --ember: #c4452d;
  --laser: #ff3b3b;
  --header-bg: rgba(22, 20, 28, .88);
  --footer-bg: #121018;
  --shade: rgba(14, 12, 18, .78);
  --shade-end: rgba(22, 20, 28, .96);
  --stat-bg: rgba(30, 27, 36, .82);
  --glow-1: rgba(196, 69, 45, .16);
  --glow-2: rgba(232, 165, 75, .10);
  --photo-bg: #0c0a10;
  --font: "Outfit", "Segoe UI", sans-serif;
  --display: "Syne", "Arial Narrow", sans-serif;
  --pad: clamp(1.2rem, 4vw, 2.4rem);
  --max: 1180px;
  --radius: 2px;
}

:root[data-theme="light"] {
  color-scheme: light;
  --bg: #f7f3ec;
  --bg-2: #efe8dc;
  --panel: #fffdf8;
  --line: #ddd0be;
  --ink: #1c1610;
  --ink-2: #4a4338;
  --ink-3: #7a7166;
  --amber: #b57922;
  --amber-2: #8a5a14;
  --ember: #c4452d;
  --header-bg: rgba(247, 243, 236, .94);
  --footer-bg: #efe8dc;
  --shade: rgba(22, 16, 12, .55);
  --shade-end: rgba(22, 16, 12, .88);
  --stat-bg: rgba(28, 22, 16, .58);
  --glow-1: rgba(232, 165, 75, .22);
  --glow-2: rgba(196, 69, 45, .08);
  --photo-bg: #1a1612;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-size: 1.02rem;
  line-height: 1.65;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(900px 500px at 80% -10%, var(--glow-1), transparent 60%),
    radial-gradient(700px 420px at 0% 100%, var(--glow-2), transparent 55%);
}
body > * { position: relative; z-index: 1; }

h1, h2 {
  font-family: var(--display);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -.02em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.4rem, 7vw, 4.6rem); }
h2 { font-size: clamp(1.7rem, 4vw, 2.7rem); }
h3 { font-size: 1.12rem; font-weight: 600; }
.lede { font-size: clamp(1.05rem, 2vw, 1.28rem); color: var(--ink-2); max-width: 40rem; }
.muted { color: var(--ink-3); }
.small { font-size: .88rem; }
.amber { color: var(--amber); }

.wrap { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: var(--pad); }
.section { padding-block: clamp(4rem, 10vw, 7.5rem); }
.pt-0 { padding-top: 0; }
.skip { position: absolute; left: -9999px; }
.skip:focus { left: .5rem; top: .5rem; background: var(--amber); color: #111; padding: .6rem 1rem; z-index: 99; }

.site-header {
  position: sticky; top: 0; z-index: 80;
  background: var(--header-bg);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
}
.site-header.is-stuck { border-bottom-color: var(--line); }
.nav { display: flex; align-items: center; gap: 1.2rem; height: 72px; }
.brand { display: flex; align-items: center; gap: .7rem; text-decoration: none; }
.brand-mark {
  width: 40px; height: 40px; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #ff7a3c, var(--ember) 55%, #5a120c);
  box-shadow: 0 0 18px rgba(196, 69, 45, .45);
  flex-shrink: 0;
}
.brand-mark-img {
  width: 42px; height: 42px; border-radius: 50%;
  object-fit: cover; flex-shrink: 0;
  background: var(--bg);
}
.brand-name {
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: .02em;
  font-size: 1.08rem;
}
.brand-name span { color: var(--amber); font-weight: 700; }
.nav-links { display: none; margin-left: auto; align-items: center; gap: .15rem; }
@media (min-width: 980px) { .nav-links { display: flex; } }
.nav-links a {
  text-decoration: none; font-size: .86rem; color: var(--ink-2);
  padding: .4rem .7rem; border-radius: var(--radius);
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--ink); }
.theme-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; flex-shrink: 0;
  border: 1px solid var(--line); border-radius: var(--radius);
  color: var(--ink-3); margin-left: .35rem;
}
.theme-toggle:hover { color: var(--ink); border-color: var(--amber); }
.theme-toggle .i-sun { display: none; }
.theme-toggle .i-moon { display: block; }
.theme-toggle[aria-pressed="true"] .i-sun { display: block; }
.theme-toggle[aria-pressed="true"] .i-moon { display: none; }
.nav-links .theme-toggle { margin-left: .45rem; }
.nav > .theme-toggle { margin-left: auto; }
@media (min-width: 980px) { .nav > .theme-toggle { display: none; } }
@media (max-width: 979px) { .nav-links .theme-toggle { display: none; } }
.nav-toggle {
  margin-left: .35rem; color: var(--ink);
  width: 42px; height: 42px; position: relative;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  position: absolute; left: 11px; width: 20px; height: 1.5px;
  background: var(--ink); content: "";
}
.nav-toggle span { top: 20px; }
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
@media (min-width: 980px) { .nav-toggle { display: none; } }
.drawer {
  display: none; flex-direction: column; gap: .4rem;
  padding: .6rem var(--pad) 1.2rem; border-top: 1px solid var(--line);
  background: var(--bg-2);
}
.drawer.is-open { display: flex; }
.drawer a { text-decoration: none; padding: .55rem 0; color: var(--ink-2); }

.btn {
  display: inline-flex; align-items: center; gap: .45rem;
  text-decoration: none; font-weight: 600; font-size: .92rem;
  padding: .78rem 1.2rem; border-radius: var(--radius);
  border: 1px solid transparent;
}
.btn-primary {
  background: linear-gradient(180deg, #f0b45a, var(--amber) 40%, #c4842e);
  color: #1a1208;
  box-shadow: 0 8px 28px -10px rgba(232, 165, 75, .7);
}
.btn-primary:hover { filter: brightness(1.06); }
.btn-ghost { border-color: var(--line); color: var(--ink); }
.btn-ghost:hover { border-color: var(--amber); color: var(--amber); }
.btn-sm { padding: .5rem .9rem; font-size: .82rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.6rem; }

.hero {
  position: relative;
  min-height: min(88vh, 820px);
  display: grid; align-items: end;
  overflow: hidden;
}
.hero-wow {
  min-height: 100vh;
  align-items: center;
}
.hero-still {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
  transform: scale(1.05);
  animation: ken 28s ease-in-out infinite alternate;
  filter: saturate(1.05) contrast(1.08);
}
@keyframes ken {
  from { transform: scale(1.05) translate(0, 0); }
  to { transform: scale(1.12) translate(-1.6%, 1%); }
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, var(--shade) 0%, var(--shade-end) 100%),
    url("/assets/img/photo/znse-slabs.png") center/cover no-repeat;
}
.hero-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.hero-shade {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg, rgba(14,12,18,.22) 0%, var(--shade) 48%, var(--shade-end) 100%);
}
.hero-wow .hero-shade {
  background:
    radial-gradient(ellipse at 78% 42%, rgba(255, 90, 40, .22), transparent 42%),
    linear-gradient(180deg, rgba(6,5,8,.55) 0%, rgba(6,5,8,.72) 48%, rgba(6,5,8,.94) 100%);
}
.hero-fx {
  position: absolute; inset: 0; z-index: 2; pointer-events: none; overflow: hidden;
}
.hero-grid {
  position: absolute; inset: -20%;
  background-image:
    linear-gradient(rgba(232, 165, 75, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232, 165, 75, .045) 1px, transparent 1px);
  background-size: 72px 72px;
  animation: gridshift 36s linear infinite;
  mask-image: radial-gradient(ellipse at 78% 38%, #000 12%, transparent 68%);
  opacity: .35;
}
@keyframes gridshift {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-72px, -72px, 0); }
}
.hero-canvas {
  position: absolute; inset: 0; width: 100%; height: 100%;
  mix-blend-mode: screen;
}
.hero-shot {
  position: absolute; left: -5%; top: 44%;
  width: 78%; height: 2px;
  background: linear-gradient(90deg, transparent 0%, #ff3b3b 12%, #ffd08a 55%, #fff 72%, transparent 100%);
  box-shadow: 0 0 18px #ff3b3b, 0 0 50px rgba(255, 90, 40, .7), 0 0 90px rgba(232, 165, 75, .35);
  transform-origin: left center;
  animation: shot 2.6s ease-in-out infinite;
  mix-blend-mode: screen;
}
@keyframes shot {
  0% { opacity: 0; transform: scaleX(.15); }
  18% { opacity: 1; transform: scaleX(1); }
  62% { opacity: .9; }
  100% { opacity: .2; transform: scaleX(1.02); }
}
.hero-lens {
  position: absolute; right: 6%; top: 22%;
  width: min(42vw, 460px); height: min(42vw, 460px);
  border: 1px solid rgba(232, 165, 75, .28);
  border-radius: 50%;
  box-shadow: inset 0 0 80px rgba(255, 90, 40, .12), 0 0 40px rgba(255, 90, 40, .15);
  animation: lenspulse 3.4s ease-in-out infinite;
}
.hero-lens::after {
  content: "";
  position: absolute; inset: 18%;
  border: 1px dashed rgba(232, 165, 75, .22);
  border-radius: 50%;
  animation: lensspin 28s linear infinite;
}
@keyframes lenspulse {
  0%, 100% { opacity: .55; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.03); }
}
@keyframes lensspin { to { transform: rotate(360deg); } }
.hero-cross {
  position: absolute; right: calc(6% + min(21vw, 230px) - 9px); top: calc(22% + min(21vw, 230px) - 9px);
  width: 18px; height: 18px;
}
.hero-cross::before, .hero-cross::after {
  content: ""; position: absolute; background: rgba(255, 248, 230, .75);
  box-shadow: 0 0 8px #ffd08a;
}
.hero-cross::before { left: 8px; top: 0; width: 1px; height: 18px; }
.hero-cross::after { top: 8px; left: 0; height: 1px; width: 18px; }
.hero-hud {
  font-size: .72rem; letter-spacing: .16em; text-transform: none;
  color: rgba(232, 165, 75, .85); margin-bottom: 1.1rem;
}
.hero-wow h1 {
  font-size: clamp(3rem, 10.5vw, 7.4rem);
  line-height: .9;
  letter-spacing: -.045em;
  text-transform: none;
}
.hero-outline {
  color: transparent;
  -webkit-text-stroke: 1.4px rgba(214, 200, 180, .42);
}
.hero-fire {
  background: linear-gradient(92deg, #ffd08a 0%, #ff8a2a 38%, #ff3b2a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
@media (max-width: 720px) {
  .hero-lens, .hero-cross { opacity: .35; }
  .hero-wow h1 { font-size: clamp(2.6rem, 16vw, 4.2rem); }
}

.lambda {
  margin-top: 2.1rem;
  max-width: 36rem;
}
.lambda-head, .lambda-scale {
  display: flex; justify-content: space-between; align-items: baseline; gap: 1rem;
  font-size: .7rem; letter-spacing: .12em;
  color: #c9bfb0;
}
.lambda-head { margin-bottom: .5rem; text-transform: uppercase; letter-spacing: .16em; font-size: .66rem; }
.lambda-head span:first-child { color: #e8a54b; }
.lambda .unit { text-transform: none; letter-spacing: .02em; font-size: .92em; }
.lambda-rail {
  position: relative; height: 14px;
  border: 1px solid rgba(232, 165, 75, .4);
  background: rgba(8, 6, 10, .5);
  overflow: visible;
}
.lambda-fill {
  position: absolute; inset: 0;
  background: linear-gradient(90deg,
    #2a1608 0%,
    #c4842e 10%,
    #ffd08a 32%,
    #f0b45a 50%,
    #ff4a3a 64.9%,
    #ffd08a 66.5%,
    #c4452d 82%,
    #3a100c 100%);
}
.lambda-rail .tick {
  position: absolute; top: 0; bottom: 0; width: 1px;
  background: rgba(255, 248, 230, .35);
}
.lambda-rail .t06 { left: 0; }
.lambda-rail .t5 { left: 28.6%; }
.lambda-rail .t106 { left: 64.9%; background: transparent; }
.lambda-rail .t16 { left: calc(100% - 1px); }
.lambda-line {
  position: absolute; top: -7px; bottom: -7px; left: 64.9%;
  width: 2px; margin-left: -1px;
  background: #fff8ee;
  box-shadow: 0 0 8px #ffd08a, 0 0 20px #ff3b3b;
  animation: co2pulse 2.2s ease-in-out infinite;
}
@keyframes co2pulse {
  0%, 100% { opacity: .7; box-shadow: 0 0 6px #ffd08a; }
  50% { opacity: 1; box-shadow: 0 0 14px #ffd08a, 0 0 28px #ff3b3b; }
}
.lambda-scale { margin-top: .55rem; letter-spacing: .04em; text-transform: none; }
.lambda-scale .co2 { color: #ffd08a; }
.hero-inner { position: relative; z-index: 3; padding-bottom: clamp(3rem, 8vw, 5.5rem); padding-top: 7rem; color: #f7f2ea; }
.hero-wow .hero-inner { padding-top: 6.2rem; padding-bottom: 2.4rem; }
.hero-wow .stats { margin-top: 1.5rem; }
.hero-inner .lede, .page-hero .lede, .cta-bleed .lede { color: #e4d9c8; }
.hero-inner h1, .page-hero h1, .cta-bleed h2, .cta-bleed h1 { color: #f7f2ea; }
.hero-inner .eyebrow, .page-hero .eyebrow, .cta-bleed .eyebrow { color: #e8a54b; }
.hero .stats b { color: #ffd08a; }
.hero .stats span { color: #c9bfb0; }
.page-hero .crumbs, .page-hero .crumbs a { color: #d4cbb8; }
.hero-actions .btn-ghost, .cta-bleed .btn-ghost, .page-hero .btn-ghost {
  color: #f7f2ea; border-color: rgba(247, 242, 234, .4);
}
.hero-actions .btn-ghost:hover, .cta-bleed .btn-ghost:hover {
  border-color: #e8a54b; color: #e8a54b;
}
.eyebrow {
  font-size: .72rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--amber); margin-bottom: 1.1rem; display: inline-flex; align-items: center; gap: .6rem;
}
.eyebrow::before { content: ""; width: 22px; height: 1px; background: var(--ember); }

.stats {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px;
  background: var(--line); margin-top: 2.6rem; border: 1px solid var(--line);
}
@media (min-width: 800px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.hero .stats { background: transparent; border-color: rgba(58,50,40,.55); }
.stats div { background: var(--stat-bg); padding: 1.1rem 1.2rem; backdrop-filter: blur(8px); }
.stats b { display: block; font-family: var(--display); font-size: 1.35rem; color: var(--amber-2); }
.stats span { font-size: .78rem; color: var(--ink-3); letter-spacing: .04em; }

.cols { display: grid; gap: 1.15rem; }
.cols-3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr)); }
.cols-2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); }
.card {
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 1.35rem 1.4rem 1.5rem;
  text-decoration: none;
  transition: border-color .25s, transform .25s;
}
a.card:hover { border-color: var(--amber); transform: translateY(-3px); }
a.catalog-card:hover { transform: none; }
a.catalog-card img { transition: transform .5s ease; }
a.catalog-card:hover img { transform: scale(1.04); }
.btn-lg { padding: 1rem 1.5rem; font-size: 1.02rem; }

.catalog-feat {
  display: grid; gap: 1.15rem;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .catalog-feat { grid-template-columns: 1.35fr 1fr 1fr; grid-template-rows: auto auto; }
  .catalog-feat .featured { grid-row: 1 / span 2; }
  .catalog-feat .featured img { height: calc(100% - 0px); min-height: 380px; }
}
.catalog-feat .featured .pad h3 { font-size: 1.35rem; }

.cta-bleed {
  position: relative; min-height: min(52vh, 440px);
  display: grid; align-items: end; overflow: hidden;
  border-top: 1px solid var(--line);
}
.cta-bleed img, .cta-bleed video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.cta-bleed .shade {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,12,18,.18), var(--shade-end) 72%);
}
.cta-bleed .inner { position: relative; z-index: 2; padding-bottom: 3.2rem; padding-top: 6rem; }

.page-hero {
  position: relative; min-height: min(38vh, 320px);
  display: grid; align-items: end; overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.page-hero img, .page-hero video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.page-hero .shade {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,12,18,.22), var(--shade-end) 82%);
}
.page-hero .inner, .cta-bleed .inner { color: #f7f2ea; }
.page-hero .inner { position: relative; z-index: 2; padding: 5.5rem 0 2rem; }
.card h3 { margin-bottom: .45rem; }
.card p { color: var(--ink-2); font-size: .94rem; }

.split {
  display: grid; gap: 2.2rem; align-items: center;
}
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; } }
.photo { overflow: hidden; border: 1px solid var(--line); background: var(--photo-bg); }
.photo img { width: 100%; height: 100%; object-fit: cover; min-height: 280px; }
.photo-cap { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3); margin-top: .55rem; }

.media { display: grid; gap: 1rem; }
@media (min-width: 800px) { .media { grid-template-columns: 1fr 1fr; } }

.specs { list-style: none; padding: 0; display: grid; gap: .45rem; }
.specs li { display: flex; justify-content: space-between; gap: 1rem; border-bottom: 1px solid var(--line); padding: .4rem 0; font-size: .92rem; }
.specs .k { color: var(--ink-3); }
.specs .v { color: var(--ink); text-align: right; }

.panel { background: var(--panel); border: 1px solid var(--line); padding: 1.4rem; }
.note {
  border-left: 2px solid var(--amber);
  padding: .2rem 0 .2rem 1rem;
  color: var(--ink-2);
  font-size: .95rem;
}
.cta-band { text-align: left; }
.cta-band .lede { margin: 1rem 0 0; }

.form { display: grid; gap: 1rem; }
.form-row { display: grid; gap: 1rem; }
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-row-3 { display: grid; gap: 1rem; }
@media (min-width: 720px) { .form-row-3 { grid-template-columns: 1fr 1fr 1fr; } }
.field label { display: block; font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-3); margin-bottom: .35rem; }
.field input, .field textarea, .field select {
  width: 100%; background: var(--bg); border: 1px solid var(--line);
  padding: .7rem .8rem; border-radius: var(--radius);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: 1px solid var(--amber); border-color: var(--amber);
}
.field textarea { min-height: 8rem; resize: vertical; }
.field textarea.short { min-height: 5.2rem; }
.form-block {
  border: 1px solid var(--line); background: var(--panel);
  padding: 1.2rem 1.25rem 1.35rem; margin-top: 1.1rem;
}
.form-block h3 {
  font-size: .72rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--amber); font-weight: 600; margin-bottom: .35rem;
}
.form-block .hint { color: var(--ink-3); font-size: .84rem; margin-bottom: 1rem; }
.split-rfq { display: grid; gap: 2rem; align-items: start; }
@media (min-width: 1020px) {
  .split-rfq { grid-template-columns: minmax(0, 1.7fr) minmax(280px, .88fr); }
}
.rfq-aside { display: grid; gap: 1rem; }
@media (min-width: 1020px) { .rfq-aside { position: sticky; top: 88px; } }
.file-box {
  border: 1px dashed #6a5840; background: var(--bg);
  padding: 1.35rem 1.1rem; text-align: center; cursor: pointer;
  transition: border-color .2s, background .2s;
}
.file-box:hover, .file-box.is-drag {
  border-color: var(--amber); background: rgba(232, 165, 75, .07);
}
.file-box .file-title { font-weight: 600; color: var(--ink); }
.file-box input[type="file"] {
  display: block; margin: .7rem auto 0; max-width: 100%;
  color: var(--ink-2);
}
.file-box p { color: var(--ink-3); font-size: .84rem; margin-top: .55rem; }
.file-list { list-style: none; padding: 0; margin: .85rem 0 0; text-align: left; }
.file-list li {
  display: flex; justify-content: space-between; gap: 1rem;
  font-size: .86rem; color: var(--ink-2);
  border-bottom: 1px solid var(--line); padding: .4rem 0;
}
.file-list .sz { color: var(--ink-3); white-space: nowrap; }
.form-actions { display: grid; gap: .7rem; margin-top: .4rem; }
@media (min-width: 640px) {
  .form-actions { grid-template-columns: auto 1fr; align-items: center; }
}
.hp { position: absolute; left: -9999px; }

.site-footer {
  border-top: 1px solid var(--line);
  padding: 3rem 0 1.6rem;
  background: var(--footer-bg);
}
.footer-grid { display: grid; gap: 2rem; margin-bottom: 2rem; }
@media (min-width: 800px) { .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; } }
.footer-label { font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-3); margin-bottom: .9rem; }
.site-footer ul { list-style: none; padding: 0; display: grid; gap: .45rem; }
.site-footer a { text-decoration: none; color: var(--ink-2); font-size: .9rem; }
.site-footer a:hover { color: var(--amber); }
.footer-bottom {
  display: flex; flex-wrap: wrap; gap: .8rem; justify-content: space-between;
  padding-top: 1.2rem; border-top: 1px solid var(--line);
  font-size: .8rem; color: var(--ink-3);
}
.footer-disclaimer { font-size: .78rem; color: var(--ink-3); max-width: 70ch; margin-bottom: 1rem; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  .hero-beam { animation: none; }
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

.crumbs { font-size: .82rem; color: var(--ink-3); margin-bottom: 1.2rem; }
.crumbs a { color: var(--ink-2); text-decoration: none; }
.sep { margin: 0 .4rem; opacity: .5; }

.quote-checklist { list-style: none; padding: 0; display: grid; gap: .5rem; }
.quote-checklist li { display: flex; gap: .5rem; color: var(--ink-2); }
.quote-checklist li::before { content: "▸"; color: var(--amber); }

.gallery-grid {
  display: grid; gap: .7rem;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 240px), 1fr));
}
.gallery-grid figure { margin: 0; }
.gallery-grid .photo img { min-height: 180px; aspect-ratio: 4/3; }

.faq { display: grid; gap: .7rem; }
.faq details {
  background: var(--panel); border: 1px solid var(--line); padding: 1rem 1.2rem;
}
.faq summary { cursor: pointer; font-weight: 600; color: var(--ink); }
.faq details p, .faq details ul { margin-top: .7rem; color: var(--ink-2); }
.faq details ul { padding-left: 1.1rem; }

.blog-grid {
  display: grid; gap: 1.15rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .blog-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 980px) { .blog-grid { grid-template-columns: 1fr 1fr 1fr; } }
.blog-card { display: flex; flex-direction: column; padding: 0; overflow: hidden; }
.blog-card img { width: 100%; height: 180px; object-fit: cover; }
.blog-card .pad { padding: 1.15rem 1.2rem 1.35rem; }
.blog-card .meta { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--amber); margin-bottom: .4rem; }
.post-hero { overflow: hidden; border: 1px solid var(--line); margin: 1.4rem 0 2rem; }
.post-hero img { width: 100%; max-height: 420px; object-fit: cover; }
.post-meta { font-size: .82rem; color: var(--ink-3); margin-top: .6rem; }
.prose { max-width: 46rem; }
.prose p { margin: 1rem 0; color: var(--ink-2); }
.prose h2 { font-size: clamp(1.3rem, 3vw, 1.8rem); margin: 2rem 0 .8rem; }
.prose h3 { margin: 1.4rem 0 .5rem; }
.prose ul, .prose ol { margin: .6rem 0 1.1rem 1.2rem; color: var(--ink-2); }
.prose li { margin: .3rem 0; }
.prose strong { color: var(--ink); }
.prose table { width: 100%; border-collapse: collapse; margin: 1.2rem 0; font-size: .92rem; }
.prose th, .prose td { border-bottom: 1px solid var(--line); padding: .5rem .4rem; text-align: left; }
.prose th { color: var(--ink-3); font-weight: 500; font-size: .78rem; letter-spacing: .06em; text-transform: uppercase; }
.more-notes { display: grid; gap: .8rem; margin-top: 2rem; }
@media (min-width: 700px) { .more-notes { grid-template-columns: 1fr 1fr; } }
.product-hero { margin: 1.4rem 0 1.8rem; }
.product-hero img { min-height: 280px; max-height: 420px; object-fit: cover; width: 100%; }
.field input[type="file"] { padding: .45rem; font-size: .88rem; }
.legal-links { display: flex; flex-wrap: wrap; gap: .4rem 1rem; margin-top: 1.4rem; font-size: .88rem; }
.legal-links a { color: var(--amber); }

.catalog-card { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.catalog-card img { width: 100%; height: 170px; object-fit: cover; }
.catalog-card .pad { padding: 1.1rem 1.2rem 1.3rem; }
.catalog-card .kicker { font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--amber); margin-bottom: .35rem; }

.stock-table { width: 100%; border-collapse: collapse; font-size: .9rem; }
.stock-table th, .stock-table td { border-bottom: 1px solid var(--line); padding: .55rem .45rem; text-align: left; vertical-align: top; }
.stock-table th { color: var(--ink-3); font-weight: 500; font-size: .72rem; letter-spacing: .06em; text-transform: uppercase; }
.stock-table .template td { color: var(--ink-3); }

.process {
  display: grid; gap: 1px; background: var(--line);
  grid-template-columns: 1fr;
}
@media (min-width: 800px) { .process { grid-template-columns: repeat(5, 1fr); } }
.process figure { margin: 0; background: var(--bg-2); }
.process img { width: 100%; height: 140px; object-fit: cover; }
.process figcaption { padding: .7rem .8rem 1rem; }
.process .n { font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--amber); }
.process p { font-size: .82rem; color: var(--ink-2); margin-top: .2rem; }

.app-card { padding: 0; overflow: hidden; }
.app-card img { width: 100%; height: 160px; object-fit: cover; }
.app-card .pad { padding: 1.1rem 1.2rem 1.35rem; }

.chart-band { background: var(--panel); border: 1px solid var(--line); padding: 1.2rem 1.3rem 1.4rem; }
.band {
  position: relative; height: 48px; margin: 1.1rem 0 .4rem;
  background: linear-gradient(90deg, #3a2208 0%, var(--amber) 8%, #f0d08a 35%, var(--amber) 70%, #5a120c 100%);
  border: 1px solid var(--line);
}
.band-mark {
  position: absolute; top: -4px; bottom: -4px; width: 2px; background: var(--laser);
  box-shadow: 0 0 10px var(--laser);
}
.band-scale { display: flex; justify-content: space-between; font-size: .72rem; color: var(--ink-3); letter-spacing: .04em; }
#material-film, #plant-films { scroll-margin-top: 88px; }
.film-deck { margin-top: 1.4rem; }
.film-stage {
  position: relative; overflow: hidden;
  border: 1px solid var(--line); background: #05040a;
  aspect-ratio: 16 / 9;
}
.film-stage video {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.film-play {
  position: absolute; left: 50%; top: 50%;
  width: 76px; height: 76px; margin: -38px 0 0 -38px;
  border-radius: 50%;
  border: 1px solid rgba(232, 165, 75, .75);
  background: rgba(8, 6, 10, .42);
  backdrop-filter: blur(8px);
  z-index: 2;
  transition: opacity .25s, transform .25s;
}
.film-play::after {
  content: "";
  display: block; margin: 0 auto;
  width: 0; height: 0;
  border-style: solid;
  border-width: 12px 0 12px 20px;
  border-color: transparent transparent transparent var(--amber);
  margin-left: 6px;
}
.film-stage.is-on .film-play { opacity: 0; transform: scale(.92); }
.film-stage:hover .film-play { opacity: 1; }
.film-chrome {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 2.4rem 1.2rem 1.1rem;
  background: linear-gradient(180deg, transparent, rgba(6,5,8,.88));
  z-index: 2; pointer-events: none;
}
.film-kicker {
  font-size: .68rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--amber); margin-bottom: .25rem;
}
.film-chrome h3 { font-size: 1.05rem; color: #f7f2ea; font-weight: 600; }
.film-thumbs {
  display: grid; gap: .7rem; margin-top: .85rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 800px) { .film-thumbs { grid-template-columns: repeat(4, 1fr); } }
.film-thumbs button {
  position: relative; padding: 0; overflow: hidden;
  border: 1px solid var(--line); background: #000; text-align: left;
}
.film-thumbs img { width: 100%; height: 88px; object-fit: cover; display: block; opacity: .72; transition: opacity .25s, transform .4s; }
.film-thumbs span {
  display: block; padding: .45rem .55rem .55rem;
  font-size: .72rem; letter-spacing: .08em; text-transform: uppercase;
  color: var(--ink-3);
}
.film-thumbs button:hover img, .film-thumbs button.is-on img { opacity: 1; transform: scale(1.04); }
.film-thumbs button.is-on { border-color: var(--amber); }
.film-thumbs button.is-on span { color: var(--amber); }
.film-grid {
  display: grid; gap: 1.1rem;
  grid-template-columns: 1fr;
  margin-top: 1.2rem;
}
@media (min-width: 800px) { .film-grid { grid-template-columns: 1fr 1fr; } }
.film-grid figure { margin: 0; overflow: hidden; border: 1px solid var(--line); background: #000; }
.film-grid video { width: 100%; height: min(38vh, 340px); object-fit: cover; display: block; }
.fullbleed { width: 100%; overflow: hidden; border: 1px solid var(--line); }
.fullbleed img, .fullbleed video { width: 100%; height: min(56vh, 520px); object-fit: cover; display: block; }

@media (prefers-reduced-motion: reduce) {
  .hero-video, .fullbleed video { display: none; }
  .hero-still, .hero-grid, .lambda-line, .hero-shot, .hero-lens, .hero-lens::after {
    animation: none !important;
  }
  .hero-still { transform: none; }
}
