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

:root {
  --forest-950: #102a24;
  --forest-900: #173a31;
  --forest-800: #225145;
  --forest-700: #2f6758;
  --leaf-600: #5d8a68;
  --leaf-400: #91ae78;
  --sage-200: #ced9c2;
  --orange-600: #cc6c32;
  --orange-500: #df7b38;
  --orange-200: #f2c29e;
  --walnut-900: #3b241c;
  --walnut-800: #4d3024;
  --walnut-700: #684434;
  --cream-50: #fffdf8;
  --cream-100: #f8f3ea;
  --cream-200: #eee5d7;
  --ink: #19211f;
  --muted: #66706c;
  --line: rgba(26, 55, 47, 0.16);
  --shadow: 0 22px 60px rgba(24, 44, 38, 0.12);
  --radius-sm: 12px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream-50);
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 15.5px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  transform: translateY(-150%);
  padding: 10px 14px;
  border-radius: 8px;
  color: white;
  background: var(--forest-950);
}
.skip-link:focus { transform: translateY(0); }
.visually-hidden { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0, 0, 0, 0) !important; white-space: nowrap !important; border: 0 !important; }

.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.narrow { width: min(calc(100% - 40px), 760px); margin-inline: auto; }
.section { padding: 104px 0; }
.section-sm { padding: 72px 0; }
.section-cream { background: radial-gradient(circle at 12% 12%, rgba(145,174,120,.12), transparent 28%), radial-gradient(circle at 88% 82%, rgba(223,123,56,.08), transparent 25%), var(--cream-100); }
.section-forest { color: white; background: var(--forest-950); }
.section-walnut { color: white; background: var(--walnut-900); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--forest-700);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-transform: uppercase;
}
.eyebrow::before { width: 24px; height: 2px; content: ""; background: var(--orange-500); }
.section-forest .eyebrow, .section-walnut .eyebrow, .hero-dark .eyebrow { color: var(--orange-200); }

h1, h2, h3, .display {
  margin: 0;
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.08;
}
h3 { font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; font-weight: 600; letter-spacing: -.025em; }
h1 { max-width: 880px; font-size: clamp(2.75rem, 6.3vw, 5.9rem); }
h2 { font-size: clamp(2rem, 4.05vw, 3.85rem); }
h3 { font-size: clamp(1.3rem, 1.85vw, 1.82rem); }
p { margin: 0; }
.lead { max-width: 680px; color: var(--muted); font-size: clamp(1.05rem, 1.7vw, 1.28rem); }
.section-forest .lead, .section-walnut .lead, .hero-dark .lead { color: rgba(255,255,255,.72); }
.lede-row { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 54px; }
.lede-row h2 { max-width: 700px; }
.lede-row .lead { max-width: 430px; }

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid transparent;
  background: rgba(255,253,248,.9);
  backdrop-filter: blur(18px);
  transition: border-color .25s ease, box-shadow .25s ease;
}
.site-header.scrolled { border-color: var(--line); box-shadow: 0 10px 30px rgba(20,42,35,.06); }
.nav-wrap { display: flex; min-height: 78px; align-items: center; justify-content: space-between; gap: 32px; }
.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 800; letter-spacing: .01em; }
.brand > span:last-child { font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; font-weight: 700; letter-spacing: -.025em; }
.brand-mark {
  position: relative;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(23,58,49,.15);
  border-radius: 13px;
  background:
    radial-gradient(ellipse at 50% 25%, var(--leaf-600) 0 14%, transparent 15%),
    radial-gradient(ellipse at 27% 47%, var(--orange-500) 0 15%, transparent 16%),
    radial-gradient(ellipse at 73% 47%, var(--leaf-400) 0 15%, transparent 16%),
    radial-gradient(circle at 50% 48%, var(--forest-950) 0 10%, transparent 11%),
    var(--cream-100);
  box-shadow: 0 5px 16px rgba(25,52,44,.1);
}
.brand-mark::before { position: absolute; width: 2px; height: 12px; top: 22px; left: 19px; border-radius: 3px; content: ""; background: var(--forest-800); }
.brand-mark::after { position: absolute; width: 4px; height: 4px; bottom: 4px; left: 17px; border: 1px solid var(--orange-500); border-radius: 50%; content: ""; box-shadow: 5px -5px 0 -1px var(--cream-100), 5px -5px 0 0 var(--leaf-600); }
.brand-mark { background: var(--cream-100) url("logo.svg") center / cover no-repeat; }
.brand-mark::before, .brand-mark::after { display: none; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { color: #35403d; font-size: .88rem; font-weight: 650; letter-spacing: .012em; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--orange-600); }
.nav-cta { padding: 11px 18px; border-radius: 999px; color: white !important; background: var(--forest-900); }
.nav-cta:hover { background: var(--forest-800); }
.menu-toggle { position: relative; display: none; width: 44px; height: 44px; flex: 0 0 auto; border: 1px solid var(--line); border-radius: 50%; background: transparent; cursor: pointer; }
.menu-toggle span, .menu-toggle::before, .menu-toggle::after { display: block; width: 18px; height: 2px; margin: 4px auto; content: ""; background: var(--forest-950); transition: transform .22s ease, opacity .18s ease; }
.menu-toggle:focus-visible { outline: 3px solid rgba(213, 112, 48, .32); outline-offset: 3px; }
.menu-toggle[aria-expanded="true"] span { opacity: 0; }
.menu-toggle[aria-expanded="true"]::before { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"]::after { transform: translateY(-6px) rotate(-45deg); }

.hero { overflow: hidden; padding: 86px 0 70px; }
.hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 52px; }
.hero-copy h1 { max-width: 700px; }
.hero-copy .lead { margin-top: 26px; }
.actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 34px; }
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 11px 20px;
  border: 1px solid var(--forest-900);
  border-radius: 999px;
  font-weight: 750;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: white; background: var(--forest-900); }
.button-primary:hover { background: var(--forest-800); }
.button-secondary { color: var(--forest-900); background: transparent; }
.button-secondary:hover { background: var(--cream-100); }
.button-light { border-color: white; color: var(--forest-950); background: white; }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--forest-700); font-weight: 750; }
.text-link::after { content: "→"; transition: transform .2s ease; }
.text-link:hover::after { transform: translateX(4px); }

.desk-stage {
  position: relative;
  min-height: 0;
  aspect-ratio: 1;
  isolation: isolate;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #d9d0c1;
  box-shadow: var(--shadow);
}
.desk-stage-image { display: block; width: 100%; height: 100%; object-fit: cover; }
.height-badge { position: absolute; z-index: 7; top: 28px; right: 28px; padding: 12px 15px; border: 1px solid rgba(255,255,255,.8); border-radius: 999px; background: rgba(255,253,248,.76); box-shadow: 0 12px 24px rgba(39,49,45,.1); backdrop-filter: blur(10px); font-size: .82rem; font-weight: 750; }

.trust-strip { border-block: 1px solid var(--line); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { padding: 25px 24px; border-left: 1px solid var(--line); }
.trust-item:first-child { border-left: 0; }
.trust-item strong { display: block; color: var(--forest-900); font-family: Georgia, "Times New Roman", serif; font-size: 1.25rem; font-weight: 500; }
.trust-item span { color: var(--muted); font-size: .88rem; }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card { padding: 34px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--cream-50); transition: transform .25s ease, box-shadow .25s ease; }
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.card-number { display: inline-grid; width: 42px; height: 42px; margin-bottom: 42px; place-items: center; border-radius: 50%; color: white; background: var(--orange-600); font-size: .85rem; font-weight: 800; }
.card h3 { margin-bottom: 15px; }
.card p { color: var(--muted); }
.card .text-link { margin-top: 24px; }

.feature-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 80px; }
.feature-copy .lead { margin-top: 24px; }
.feature-list { display: grid; gap: 0; margin-top: 34px; }
.feature-list div { display: grid; grid-template-columns: 30px 1fr; gap: 13px; padding: 18px 0; border-top: 1px solid var(--line); }
.feature-list b { color: var(--orange-600); }
.material-panel { position: relative; min-height: 520px; overflow: hidden; border-radius: var(--radius-lg); background: linear-gradient(135deg, #3e241a, #704633 55%, #42271e); box-shadow: var(--shadow); }
.material-panel::before { position: absolute; inset: 0; content: ""; opacity: .26; background: repeating-radial-gradient(ellipse at 20% 50%, transparent 0 15px, rgba(255,255,255,.18) 16px 17px, transparent 18px 28px); transform: scale(2.2) rotate(-7deg); }
.material-chip { position: absolute; right: 24px; bottom: 24px; left: 24px; padding: 22px; border: 1px solid rgba(255,255,255,.25); border-radius: 16px; color: white; background: rgba(18,27,24,.48); backdrop-filter: blur(15px); }
.material-chip strong { display: block; font-family: Georgia, "Times New Roman", serif; font-size: 1.45rem; font-weight: 500; }
.material-chip span { color: rgba(255,255,255,.7); font-size: .9rem; }

.mechanism-panel,
.electronics-panel {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  border: 1px solid rgba(18,51,43,.16);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(145deg, #173a31, #285a4c 65%, #102a24);
  background-size: 24px 24px, 24px 24px, auto;
  box-shadow: var(--shadow);
}
.mechanism-rail { position: absolute; top: 12%; bottom: 12%; left: 22%; width: 48px; border: 1px solid rgba(255,255,255,.18); border-radius: 9px; background: linear-gradient(90deg,#192622,#52635e,#1a2824); box-shadow: inset 8px 0 12px rgba(0,0,0,.22); }
.mechanism-rail::before { position: absolute; top: 26px; right: 11px; bottom: 26px; width: 7px; border-radius: 6px; content: ""; background: repeating-linear-gradient(to bottom,var(--orange-500) 0 5px,#2e423c 5px 11px); }
.mechanism-motor { position: absolute; top: 28%; left: 37%; width: 39%; height: 28%; border: 1px solid rgba(255,255,255,.18); border-radius: 18px; background: linear-gradient(135deg,#293632,#111a17); box-shadow: 0 24px 40px rgba(0,0,0,.28); }
.mechanism-motor::before { position: absolute; top: 25%; left: 11%; width: 35%; aspect-ratio: 1; border: 8px double var(--leaf-400); border-radius: 50%; content: ""; box-shadow: inset 0 0 0 7px #17231f; }
.mechanism-motor::after { position: absolute; top: 35%; right: 10%; width: 30%; height: 8px; border-radius: 8px; content: ""; background: var(--orange-500); box-shadow: 0 18px 0 rgba(255,255,255,.22), 0 36px 0 rgba(255,255,255,.12); }
.mechanism-cable { position: absolute; top: 53%; left: 69%; width: 22%; height: 22%; border-right: 4px solid var(--orange-500); border-bottom: 4px solid var(--orange-500); border-radius: 0 0 38px; }
.mechanism-panel.mechanism-panel-home { min-height: 0; aspect-ratio: 1; margin: 0; background: var(--forest-950); }
.mechanism-panel-home::after { position: absolute; z-index: 1; right: 0; bottom: 0; left: 0; height: 42%; content: ""; pointer-events: none; background: linear-gradient(to bottom, transparent, rgba(7, 23, 18, .32)); }
.mechanism-panel-image { display: block; width: 100%; height: 100%; object-fit: cover; }
.mechanism-panel-home .detail-label { z-index: 2; }
.mechanism-panel.visual-image-panel,
.electronics-panel.visual-image-panel { min-height: 0; aspect-ratio: 1; background: var(--forest-950); }
.visual-image-panel::after { position: absolute; z-index: 1; right: 0; bottom: 0; left: 0; height: 44%; content: ""; pointer-events: none; background: linear-gradient(to bottom, transparent, rgba(7, 23, 18, .42)); }
.visual-panel-image { display: block; width: 100%; height: 100%; object-fit: cover; }
.visual-image-panel .detail-label { z-index: 2; }
.detail-label { position: absolute; right: 24px; bottom: 24px; left: 24px; padding: 18px 20px; border: 1px solid rgba(255,255,255,.2); border-radius: 14px; color: white; background: rgba(9,25,21,.58); backdrop-filter: blur(13px); }
.detail-label strong { display: block; font-family: "Iowan Old Style", "Palatino Linotype", Palatino, serif; font-size: 1.32rem; font-weight: 500; }
.detail-label span { color: rgba(255,255,255,.66); font-size: .84rem; }

.ecosystem-strip { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.ecosystem-badge { display: inline-flex; align-items: center; gap: 8px; padding: 9px 13px; border: 1px solid var(--line); border-radius: 9px; color: var(--forest-800); background: rgba(255,255,255,.76); font-size: .78rem; font-weight: 800; letter-spacing: .045em; }
.ecosystem-badge::before { width: 7px; height: 7px; border-radius: 50%; content: ""; background: var(--leaf-600); box-shadow: 0 0 0 3px rgba(93,138,104,.15); }

.section-gray { background: #edf0ed; }
.service-row.has-icon { grid-template-columns: 58px .8fr 1.4fr; align-items: start; }
.service-icon { display: grid; width: 48px; height: 48px; place-items: center; border: 1px solid rgba(28,72,59,.16); border-radius: 14px; color: var(--forest-800); background: rgba(255,255,255,.72); box-shadow: 0 8px 20px rgba(25,53,45,.06); }
.service-icon svg { width: 25px; height: 25px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }

.steps { display: grid; grid-template-columns: repeat(4, 1fr); counter-reset: steps; }
.step { position: relative; padding: 0 28px 0 0; counter-increment: steps; }
.step:not(:last-child)::after { position: absolute; top: 20px; right: 16px; left: 50px; height: 1px; content: ""; background: rgba(255,255,255,.22); }
.step::before { position: relative; z-index: 2; display: grid; width: 40px; height: 40px; margin-bottom: 26px; place-items: center; border: 1px solid rgba(255,255,255,.36); border-radius: 50%; content: counter(steps, decimal-leading-zero); color: var(--orange-200); background: var(--forest-950); font-size: .72rem; font-weight: 800; }
.step h3 { margin-bottom: 10px; font-size: 1.45rem; }
.step p { color: rgba(255,255,255,.65); font-size: .94rem; }

.quote { padding: 72px; border-radius: var(--radius-lg); color: white; background: var(--forest-900); }
.quote blockquote { max-width: 920px; margin: 0; font-family: "Iowan Old Style", "Palatino Linotype", Palatino, serif; font-size: clamp(1.8rem, 3.6vw, 3.4rem); letter-spacing: -.03em; line-height: 1.16; }
.quote cite { display: block; margin-top: 26px; color: var(--orange-200); font-style: normal; font-weight: 750; }

.page-hero { padding: 92px 0 78px; }
.page-hero h1 { max-width: 1000px; font-size: clamp(2.9rem, 5.85vw, 5.4rem); }
.page-hero .lead { margin-top: 26px; }
.hero-dark { color: white; background: var(--forest-950); }
.hero-dark .page-hero { position: relative; overflow: hidden; }
.hero-dark .page-hero::after { position: absolute; top: -180px; right: -100px; width: 520px; height: 520px; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; content: ""; box-shadow: 0 0 0 80px rgba(255,255,255,.025), 0 0 0 160px rgba(255,255,255,.018); }

.split-list { display: grid; grid-template-columns: .72fr 1.28fr; gap: 80px; }
.split-list > h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
.service-row { display: grid; grid-template-columns: 1fr 1.4fr; gap: 30px; padding: 30px 0; border-top: 1px solid var(--line); }
.service-row:last-child { border-bottom: 1px solid var(--line); }
.service-row h3 { font-size: 1.55rem; }
.service-row p { color: var(--muted); }

.product-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.product-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-md); background: white; }
.product-art { position: relative; aspect-ratio: 1; overflow: hidden; background: linear-gradient(145deg, #efe8dd, #d8cfc1); }
.product-image { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform .55s cubic-bezier(.2,.7,.2,1); }
.product-card:hover .product-image { transform: scale(1.012); }
.product-info { padding: 28px; }
.product-info p { margin-top: 10px; color: var(--muted); }
.product-meta { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 20px; }
.tag { padding: 6px 10px; border-radius: 999px; color: var(--forest-800); background: var(--cream-100); font-size: .78rem; font-weight: 750; }

.stats { display: grid; grid-template-columns: repeat(3, 1fr); border-block: 1px solid rgba(255,255,255,.18); }
.stat { padding: 38px 24px; border-left: 1px solid rgba(255,255,255,.18); }
.stat:first-child { border-left: 0; }
.stat strong { display: block; color: var(--orange-200); font-family: Georgia, "Times New Roman", serif; font-size: clamp(2.2rem, 4vw, 4rem); font-weight: 500; }
.stat span { color: rgba(255,255,255,.68); }

.faq { display: grid; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-question { display: flex; width: 100%; align-items: center; justify-content: space-between; gap: 20px; padding: 24px 0; border: 0; color: var(--ink); background: transparent; text-align: left; font-family: Georgia, "Times New Roman", serif; font-size: 1.35rem; }
.faq-question::after { content: "+"; color: var(--orange-600); font-family: ui-sans-serif, system-ui; font-size: 1.5rem; }
.faq-question[aria-expanded="true"]::after { content: "−"; }
.faq-answer { display: none; max-width: 760px; padding: 0 0 24px; color: var(--muted); }
.faq-answer.open { display: block; }

.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; }
.contact-card { padding: 28px; border-radius: var(--radius-md); color: white; background: var(--forest-900); }
.contact-card a { color: var(--orange-200); }
.contact-card dl { margin: 30px 0 0; }
.contact-card dt { margin-top: 20px; color: rgba(255,255,255,.55); font-size: .75rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.contact-card dd { margin: 4px 0 0; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: .86rem; font-weight: 750; }
.field input, .field textarea, .field select { width: 100%; border: 1px solid var(--line); border-radius: 11px; outline: none; color: var(--ink); background: white; padding: 14px 15px; }
.field textarea { min-height: 150px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--orange-500); box-shadow: 0 0 0 3px rgba(223,123,56,.14); }
.form-note { margin-top: 14px; color: var(--muted); font-size: .82rem; }

.about-story-grid { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 86px; }
.about-story-copy h2 { max-width: 680px; }
.about-story-copy > p:not(.eyebrow) { max-width: 670px; margin-top: 22px; color: var(--muted); font-size: 1.05rem; }
.about-premise { display: grid; grid-template-columns: 120px 1fr; gap: 22px; margin-top: 34px; padding-top: 26px; border-top: 1px solid var(--line); }
.about-premise strong { color: var(--forest-800); font-size: .73rem; letter-spacing: .1em; text-transform: uppercase; }
.about-premise span { color: #3f4b47; }
.about-principles .card-number { margin-bottom: 28px; }
.about-principles .card { min-height: 330px; }
.about-standard .service-row { grid-template-columns: 54px .78fr 1.42fr; }
.about-standard .service-row > b { display: grid; width: 38px; height: 38px; place-items: center; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; color: var(--orange-200); font-size: .72rem; }
.about-standard .service-row h3 { color: white; }
.about-standard .service-row p { color: rgba(255,255,255,.66); }
.about-standard .service-row { border-color: rgba(255,255,255,.18); }
.about-manifesto { position: relative; overflow: hidden; padding: 70px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: radial-gradient(circle at 88% 20%,rgba(145,174,120,.2),transparent 25%),linear-gradient(135deg,#f8f3ea,#eef2e9); }
.about-manifesto::after { position: absolute; right: -70px; bottom: -120px; width: 300px; height: 300px; border: 1px solid rgba(47,103,88,.16); border-radius: 50%; content: ""; box-shadow: 0 0 0 42px rgba(47,103,88,.04),0 0 0 84px rgba(223,123,56,.025); }
.about-manifesto h2 { position: relative; z-index: 1; max-width: 850px; }
.about-manifesto .lead { position: relative; z-index: 1; margin-top: 24px; }
.about-signals { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(3,1fr); margin-top: 44px; border-top: 1px solid var(--line); }
.about-signal { padding: 22px 24px 0 0; }
.about-signal strong { display: block; color: var(--forest-800); font-size: .83rem; letter-spacing: .06em; text-transform: uppercase; }
.about-signal span { display: block; margin-top: 6px; color: var(--muted); font-size: .88rem; }

.prose h2 { margin: 48px 0 15px; font-size: 2rem; }
.prose h3 { margin: 30px 0 10px; font-size: 1.4rem; }
.prose p, .prose li { color: #4d5854; }
.prose p + p { margin-top: 15px; }

.cta-panel {
  position: relative;
  isolation: isolate;
  display: flex;
  min-height: 250px;
  overflow: hidden;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  padding: 44px 50px;
  border: 1px solid rgba(255,255,255,.38);
  border-radius: 34px;
  color: white;
  background:
    linear-gradient(115deg,rgba(27,69,58,.93),rgba(43,58,52,.82) 46%,rgba(82,51,37,.9)),
    rgba(20,54,45,.88);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.34), inset 0 -1px 0 rgba(255,255,255,.08), 0 28px 70px rgba(20,45,38,.2);
  backdrop-filter: blur(28px) saturate(145%);
}
.cta-panel::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background: linear-gradient(125deg,rgba(255,255,255,.075),transparent 36%,rgba(145,174,120,.06));
}
.cta-panel::after { position: absolute; z-index: -1; right: -8%; bottom: -48%; width: 360px; height: 360px; border: 1px solid rgba(255,255,255,.14); border-radius: 50%; content: ""; box-shadow: 0 0 0 52px rgba(145,174,120,.06), 0 0 0 104px rgba(223,123,56,.035); }
.cta-panel h2 { max-width: 690px; font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; font-size: clamp(1.75rem, 3vw, 2.85rem); font-weight: 600; letter-spacing: -.045em; line-height: 1.08; text-wrap: balance; }
.cta-panel h2::before { display: block; margin-bottom: 16px; content: "●  Project enquiry"; color: rgba(255,255,255,.66); font-size: .7rem; font-weight: 760; letter-spacing: .13em; line-height: 1; text-transform: uppercase; }
.cta-panel .button-light {
  position: relative;
  min-width: 198px;
  flex: 0 0 auto;
  justify-content: space-between;
  padding: 13px 15px 13px 19px;
  border-color: rgba(255,255,255,.52);
  color: white;
  background: linear-gradient(135deg,rgba(255,255,255,.22),rgba(255,255,255,.09));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.42), inset 0 -1px 0 rgba(255,255,255,.1), 0 14px 30px rgba(5,22,17,.22);
  backdrop-filter: blur(18px) saturate(160%);
}
.cta-panel .button-light::after { display: grid; width: 30px; height: 30px; margin-left: 14px; place-items: center; border: 1px solid rgba(255,255,255,.42); border-radius: 50%; content: "↗"; color: var(--forest-950); background: rgba(255,255,255,.9); font-size: .9rem; transition: transform .25s ease, background .25s ease; }
.cta-panel .button-light::before { display: none; }
.cta-panel .button-light:hover { color: white; background: linear-gradient(135deg,rgba(255,255,255,.3),rgba(255,255,255,.13)); box-shadow: inset 0 1px 0 rgba(255,255,255,.52), 0 18px 38px rgba(5,22,17,.28); }
.cta-panel .button-light:hover::after { transform: translate(2px,-2px); background: white; }
.cta-panel .button-light:active { transform: translateY(1px) scale(.985); box-shadow: inset 0 2px 5px rgba(5,22,17,.18), 0 8px 18px rgba(5,22,17,.2); }
.cta-panel .button-light:focus-visible { outline: 3px solid var(--orange-200); outline-offset: 4px; }

.site-footer { padding: 68px 0 30px; color: rgba(255,255,255,.74); background: #0d211c; }
.footer-grid { display: grid; grid-template-columns: 1.5fr .75fr .75fr 1fr; gap: 50px; }
.footer-brand p { max-width: 360px; margin-top: 18px; }
.footer-heading { margin-bottom: 15px; color: white; font-size: .78rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.footer-links { display: grid; gap: 8px; }
.footer-links a:hover { color: var(--orange-200); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 58px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); font-size: .82rem; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 980px) {
  .section { padding: 82px 0; }
  .hero-grid, .feature-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-story-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-copy { max-width: 760px; }
  .desk-stage { width: min(100%, 760px); justify-self: center; }
  .cards { grid-template-columns: 1fr 1fr; }
  .cards .card:last-child { grid-column: 1 / -1; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-item:nth-child(3) { border-left: 0; border-top: 1px solid var(--line); }
  .trust-item:nth-child(4) { border-top: 1px solid var(--line); }
  .steps { grid-template-columns: 1fr 1fr; gap: 44px 20px; }
  .step:nth-child(2)::after { display: none; }
  .split-list { grid-template-columns: 1fr; gap: 36px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .container, .narrow { width: min(calc(100% - 28px), var(--max)); }
  .nav-wrap { min-height: 68px; }
  .menu-toggle { z-index: 2; display: block; background: rgba(255,255,255,.72); }
  .menu-toggle[aria-expanded="true"] { border-color: rgba(23,58,49,.22); background: var(--cream-100); }
  .nav-links {
    position: absolute;
    z-index: 1;
    top: 100%;
    right: 0;
    left: 0;
    display: flex;
    height: calc(100vh - 68px);
    height: calc(100dvh - 68px);
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    overflow-y: auto;
    padding: 18px 22px max(28px, env(safe-area-inset-bottom));
    border-top: 1px solid var(--line);
    background: #fffdf8;
    box-shadow: 0 24px 48px rgba(13,36,30,.18);
    overscroll-behavior: contain;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
    -webkit-overflow-scrolling: touch;
  }
  .nav-links.open { opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0); }
  .nav-links a { display: flex; min-height: 56px; align-items: center; padding: 12px 8px; border-bottom: 1px solid var(--line); font-size: 1rem; }
  .nav-links a[aria-current="page"] { color: var(--orange-600); }
  .nav-cta { min-height: 52px !important; justify-content: center; margin-top: 20px; border-bottom: 0 !important; text-align: center; }
  body.menu-open .site-header { border-color: var(--line); background: #fffdf8; box-shadow: 0 10px 30px rgba(20,42,35,.08); }
  .hero { padding-top: 54px; }
  .hero-grid { gap: 40px; }
  .desk-stage { width: 100%; border-radius: 24px; }
  .cards, .product-grid, .stats { grid-template-columns: 1fr; }
  .cards .card:last-child { grid-column: auto; }
  .lede-row { align-items: start; flex-direction: column; gap: 20px; }
  .material-panel { min-height: 400px; }
  .mechanism-panel, .electronics-panel { min-height: 420px; }
  .steps { grid-template-columns: 1fr; }
  .step:not(:last-child)::after { top: 42px; bottom: -32px; left: 19px; width: 1px; height: auto; }
  .quote { padding: 42px 28px; }
  .service-row { grid-template-columns: 1fr; gap: 10px; }
  .about-standard .service-row { grid-template-columns: 42px 1fr; gap: 10px 14px; }
  .about-standard .service-row p { grid-column: 2; }
  .about-manifesto { padding: 42px 28px; }
  .about-signals { grid-template-columns: 1fr; }
  .about-signal { padding: 18px 0; border-bottom: 1px solid var(--line); }
  .service-row.has-icon { grid-template-columns: 48px 1fr; gap: 12px 16px; }
  .service-row.has-icon p { grid-column: 2; }
  .stat { border-top: 1px solid rgba(255,255,255,.18); border-left: 0; }
  .stat:first-child { border-top: 0; }
  .cta-panel { min-height: 0; align-items: stretch; flex-direction: column; padding: 32px 24px; border-radius: 28px; }
  .cta-panel .button-light { width: 100%; min-width: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-bottom { flex-direction: column; }
  .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
}

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

/* Guides and editorial pages */
.guide-index-hero .lead { max-width: 760px; }

.guide-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 38px;
}

.guide-grid-compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.guide-card {
  position: relative;
  display: flex;
  min-height: 300px;
  flex-direction: column;
  padding: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 253, 248, .88);
  box-shadow: 0 15px 40px rgba(24, 44, 38, .06);
}

.guide-card::after {
  position: absolute;
  right: -36px;
  bottom: -44px;
  width: 130px;
  height: 130px;
  border: 1px solid rgba(93, 138, 104, .2);
  border-radius: 50%;
  content: "";
}

.guide-card h3 {
  position: relative;
  z-index: 1;
  margin: 8px 0 12px;
  font-family: "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  font-size: clamp(1.55rem, 2vw, 2rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -.02em;
}

.guide-card p { position: relative; z-index: 1; margin: 0 0 20px; color: var(--muted); }
.guide-card .text-link { position: relative; z-index: 1; margin-top: auto; align-self: flex-start; }
.guide-kicker { color: var(--forest-700) !important; font-size: .72rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.section-action { display: flex; justify-content: center; margin-top: 34px; }

.guide-card-visual {
  display: block;
  width: calc(100% + 16px);
  height: 132px;
  margin: -8px -8px 24px;
  border-radius: 16px;
  object-fit: cover;
  object-position: center;
  background: linear-gradient(145deg, #efe6d8, #f8f3ea);
}

.guide-method { align-items: start; }
.principle-list { display: grid; gap: 0; border-top: 1px solid var(--line); }
.principle-list > div { padding: 22px 0; border-bottom: 1px solid var(--line); }
.principle-list strong { display: block; margin-bottom: 4px; color: var(--forest-900); }
.principle-list p { margin: 0; color: var(--muted); }

.article-hero {
  padding: 92px 0 78px;
  color: var(--cream-50);
  background:
    radial-gradient(circle at 86% 22%, rgba(223, 123, 56, .2), transparent 25%),
    linear-gradient(135deg, var(--forest-950), var(--forest-800));
}

.article-hero h1 {
  max-width: 960px;
  margin: 18px 0 22px;
  font-family: "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  font-size: clamp(3rem, 6vw, 5.9rem);
  font-weight: 400;
  line-height: .98;
  letter-spacing: -.05em;
}

.article-hero .lead { max-width: 780px; color: rgba(255,255,255,.77); }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 48px; color: rgba(255,255,255,.62); font-size: .78rem; }
.breadcrumbs a:hover { color: white; }
.article-meta { display: flex; flex-wrap: wrap; gap: 12px 28px; margin-top: 34px; color: rgba(255,255,255,.62); font-size: .78rem; }
.article-meta span { position: relative; }
.article-meta span + span::before { position: absolute; left: -16px; content: "•"; color: var(--orange-200); }

.article-shell {
  display: grid;
  grid-template-columns: 224px minmax(0, 820px);
  justify-content: center;
  gap: 76px;
  padding-top: 82px;
  padding-bottom: 100px;
}

.article-toc {
  position: sticky;
  top: 110px;
  align-self: start;
  padding: 4px 0 4px 18px;
  border-left: 2px solid rgba(55, 86, 69, .18);
}
.article-toc p { margin: 0 0 10px; color: var(--forest-900); font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.article-toc a { display: flex; align-items: center; min-height: 38px; color: var(--muted); font-size: .82rem; line-height: 1.35; }
.article-toc a:hover { color: var(--orange-600); transform: translateX(2px); }
.article-toc a:focus-visible { outline: 2px solid var(--forest-700); outline-offset: 4px; }

.article-content > section { padding-bottom: 78px; scroll-margin-top: 110px; }
.article-content > section + section { padding-top: 78px; border-top: 1px solid var(--line); }
.article-content h2 {
  margin: 8px 0 22px;
  color: var(--forest-950);
  font-family: "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.15rem);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -.035em;
}
.article-content h3 { margin: 32px 0 8px; color: var(--forest-900); font-size: 1.05rem; }
.article-content p { margin: 0 0 20px; color: #49524f; font-size: 1rem; line-height: 1.85; }
.article-deck { margin-bottom: 0 !important; color: var(--orange-600) !important; font-size: .72rem !important; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }

.article-note {
  margin: 30px 0 38px;
  padding: 22px 26px 22px 28px;
  border-left: 3px solid var(--orange-500);
  border-radius: 0 14px 14px 0;
  background: rgba(206, 217, 194, .34);
}
.article-note p { margin: 0; color: var(--forest-900); font-size: .9rem; line-height: 1.75; }

.article-sequence {
  margin: 34px 0 44px;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
  counter-reset: article-step;
}
.article-sequence li {
  display: grid;
  grid-template-columns: 50px 180px 1fr;
  gap: 20px;
  align-items: center;
  min-height: 82px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  counter-increment: article-step;
}
.article-sequence li::before {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(55, 86, 69, .18);
  border-radius: 50%;
  background: rgba(206, 217, 194, .25);
  color: var(--orange-500);
  content: "0" counter(article-step);
  font-family: "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  font-size: 1.18rem;
  font-weight: 600;
}
.article-sequence strong { color: var(--forest-900); }
.article-sequence span { color: var(--muted); font-size: .9rem; line-height: 1.65; }

.article-list {
  margin: 30px 0 42px;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}
.article-list li {
  display: grid;
  grid-template-columns: minmax(150px, 210px) 1fr;
  gap: 26px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.article-list strong { color: var(--forest-900); }
.article-list li > span:only-child { grid-column: 1 / -1; }
.article-list span { color: var(--muted); font-size: .92rem; line-height: 1.7; }

.article-table {
  margin: 34px 0 46px;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--cream-50);
  box-shadow: 0 16px 38px rgba(35, 55, 44, .055);
}
.article-table table { width: 100%; min-width: 660px; border-collapse: collapse; }
.article-table th,
.article-table td { padding: 18px 20px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.article-table th {
  color: var(--forest-950);
  background: rgba(206, 217, 194, .58);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.article-table td { color: var(--muted); font-size: .87rem; line-height: 1.6; }
.article-table td:first-child { color: var(--forest-900); font-weight: 650; }
.article-table tr:last-child td { border-bottom: 0; }
.table-number {
  display: block;
  margin-bottom: 7px;
  color: var(--orange-600);
  font-family: "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1;
}

.article-figure {
  margin: 34px 0 48px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--cream-100);
  box-shadow: 0 24px 56px rgba(35, 55, 44, .09);
}
.article-figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}
.article-figure figcaption {
  display: grid;
  grid-template-columns: 128px 1fr;
  gap: 20px;
  margin: 0;
  padding: 18px 22px;
  color: rgba(255, 255, 255, .78);
  background: var(--forest-950);
  font-size: .78rem;
  line-height: 1.55;
}
.article-figure figcaption span {
  color: #cfe0c7;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.article-actions { margin-top: 28px; }
.article-content .button {
  min-height: 48px;
  gap: 12px;
  padding: 11px 18px;
  border-color: var(--forest-950);
  border-radius: 11px;
  color: #d9e8d3;
  background: var(--forest-950);
  box-shadow: 0 12px 26px rgba(30, 50, 39, .16);
  font-size: .84rem;
}
.article-content .button::after { content: "→"; font-size: 1.05em; transition: transform .2s ease; }
.article-content .button:hover {
  border-color: var(--forest-800);
  color: var(--cream-50);
  background: var(--forest-800);
  box-shadow: 0 16px 30px rgba(30, 50, 39, .22);
  transform: translateY(-1px);
}
.article-content .button:hover::after { transform: translateX(3px); }
.article-content .button:active { box-shadow: 0 7px 16px rgba(30, 50, 39, .16); transform: translateY(1px); }
.article-content .button:focus-visible { outline: 3px solid var(--forest-700); outline-offset: 4px; }
.article-next { margin-top: 4px; padding: 42px 0 0; border-top: 1px solid var(--line); }
.article-next h2 { max-width: 640px; }
.article-next .button { margin-top: 8px; }

@media (min-width: 761px) and (max-width: 1100px) {
  .nav-wrap { gap: 18px; }
  .nav-links { gap: 14px; }
  .nav-links a { font-size: .8rem; }
  .nav-cta { padding: 10px 14px; }
}

@media (max-width: 980px) {
  .guide-grid, .guide-grid-compact { grid-template-columns: 1fr; }
  .guide-card { min-height: 0; }
  .guide-grid-featured .guide-card { display: grid; grid-template-columns: 180px 1fr; column-gap: 24px; }
  .guide-grid-featured .guide-card-visual { grid-row: 1 / span 4; width: 100%; height: 100%; min-height: 220px; margin: 0; }
  .article-shell { grid-template-columns: 1fr; gap: 34px; }
  .article-toc { position: static; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 24px; padding: 20px 22px; border: 1px solid var(--line); border-radius: 14px; background: rgba(206, 217, 194, .2); }
  .article-toc p { width: 100%; }
  .article-toc p { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
  .article-hero { padding: 62px 0 54px; }
  .article-hero h1 { font-size: clamp(2.7rem, 13vw, 4.2rem); }
  .breadcrumbs { margin-bottom: 32px; }
  .article-meta { gap: 8px 20px; }
  .article-meta span + span::before { left: -12px; }
  .article-meta span:last-child { flex-basis: 100%; }
  .article-meta span:last-child::before { display: none; }
  .article-shell { padding-top: 54px; padding-bottom: 72px; }
  .guide-grid-featured .guide-card { display: flex; }
  .guide-grid-featured .guide-card-visual { min-height: 132px; }
  .article-toc { grid-template-columns: 1fr; }
  .article-content > section { padding-bottom: 60px; }
  .article-content > section + section { padding-top: 60px; }
  .article-sequence li { grid-template-columns: 46px 1fr; gap: 6px 12px; }
  .article-sequence li::before { grid-row: 1 / span 2; }
  .article-sequence strong, .article-sequence span { grid-column: 2; }
  .article-list li { grid-template-columns: 1fr; gap: 4px; }
  .article-list li > span { grid-column: 1; }
  .article-figure { border-radius: 14px; }
  .article-figure figcaption { grid-template-columns: 1fr; gap: 5px; padding: 15px 17px; }
  .article-table { overflow: visible; border: 0; border-radius: 0; background: transparent; box-shadow: none; }
  .article-table table { min-width: 0; }
  .article-table thead { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; clip-path: inset(50%); }
  .article-table tbody { display: grid; gap: 12px; }
  .article-table tr { display: block; overflow: hidden; border: 1px solid var(--line); border-radius: 13px; background: var(--cream-50); box-shadow: 0 10px 24px rgba(35, 55, 44, .045); }
  .article-table td,
  .article-table tr:last-child td { display: block; padding: 13px 16px; border-bottom: 1px solid var(--line); }
  .article-table td:last-child,
  .article-table tr:last-child td:last-child { border-bottom: 0; }
  .article-table td::before { display: block; margin-bottom: 4px; color: var(--forest-700); content: attr(data-label); font-size: .64rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
  .article-table td:first-child { background: rgba(206, 217, 194, .26); }
  .table-number { display: inline-block; margin: 0 8px 0 0; font-size: 1.08rem; }
}
