/* ============================================================
   GERMET CHINA LIMITED — Global Industrial Supply
   Design system: "Precision Engineering / Blueprint"
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  /* steel / dark zones */
  --ink:        #0b1322;
  --ink-2:      #0e1830;
  --panel:      #14223f;
  --panel-2:    #1b2c4d;
  --line-dark:  rgba(111,177,255,.16);
  --line-dark-2:rgba(111,177,255,.30);

  /* cool light / paper zones */
  --paper:      #e9edf4;
  --paper-2:    #f6f8fc;
  --card:       #ffffff;
  --line-light: rgba(11,19,34,.10);
  --line-light-2:rgba(11,19,34,.18);

  /* accents */
  --accent:     #ff5b23;   /* machine orange */
  --accent-2:   #ff7a45;
  --blueprint:  #6fb1ff;   /* technical blue on dark */
  --blueprint-d:#1d4ed8;   /* technical blue on light */

  /* text */
  --txt-d:      #e7edf7;
  --txt-d-mut:  #93a4c0;
  --txt-l:      #0b1322;
  --txt-l-mut:  #51607a;

  /* type */
  --f-display: "Archivo", "Arial Narrow", system-ui, sans-serif;
  --f-body:    "IBM Plex Sans", system-ui, -apple-system, sans-serif;
  --f-mono:    "IBM Plex Mono", ui-monospace, "SFMono-Regular", monospace;

  /* geometry */
  --maxw: 1280px;
  --gut:  clamp(20px, 5vw, 64px);
  --radius: 4px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset ---------- */
*,*::before,*::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--f-body);
  background: var(--ink);
  color: var(--txt-d);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img,svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; padding: 0; }
::selection { background: var(--accent); color: #fff; }

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gut); }
.section { position: relative; padding-block: clamp(72px, 11vh, 140px); }
.section--dark   { background: var(--ink); color: var(--txt-d); }
.section--ink2   { background: var(--ink-2); color: var(--txt-d); }
.section--light  { background: var(--paper); color: var(--txt-l); }
.section--white  { background: var(--paper-2); color: var(--txt-l); }

/* crop-mark corners (engineering motif) */
.crop { position: relative; }
.crop::before, .crop::after,
.crop > .crop-b::before, .crop > .crop-b::after {
  content: ""; position: absolute; width: 14px; height: 14px;
  border-color: var(--blueprint); pointer-events: none; opacity: .55;
}
.section--light .crop::before, .section--light .crop::after,
.section--light .crop > .crop-b::before, .section--light .crop > .crop-b::after { border-color: var(--blueprint-d); }
.crop::before { top: -1px; left: -1px; border-top: 1.5px solid; border-left: 1.5px solid; }
.crop::after  { top: -1px; right: -1px; border-top: 1.5px solid; border-right: 1.5px solid; }
.crop > .crop-b::before { bottom: -1px; left: -1px; border-bottom: 1.5px solid; border-left: 1.5px solid; }
.crop > .crop-b::after  { bottom: -1px; right: -1px; border-bottom: 1.5px solid; border-right: 1.5px solid; }

/* ---------- Typographic primitives ---------- */
.eyebrow {
  font-family: var(--f-mono);
  font-size: 12px; letter-spacing: .28em; text-transform: uppercase;
  color: var(--accent); display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before { content: "["; color: var(--blueprint); }
.eyebrow::after  { content: "]"; color: var(--blueprint); }
.section--light .eyebrow::before, .section--light .eyebrow::after { color: var(--blueprint-d); }

.display {
  font-family: var(--f-display);
  font-weight: 800;
  line-height: .94;
  letter-spacing: -.02em;
  text-transform: uppercase;
  font-size: clamp(2.4rem, 6.4vw, 5.6rem);
}
.display .em { color: var(--accent); }
.display .thin { font-weight: 500; color: var(--txt-d-mut); }
.section--light .display .thin { color: var(--txt-l-mut); }

.h2 {
  font-family: var(--f-display); font-weight: 800; text-transform: uppercase;
  letter-spacing: -.015em; line-height: 1.02;
  font-size: clamp(1.9rem, 4vw, 3.2rem);
}
.h3 { font-family: var(--f-display); font-weight: 700; text-transform: uppercase; letter-spacing: -.01em; font-size: clamp(1.2rem, 2vw, 1.6rem); }
.lead { font-size: clamp(1.05rem, 1.4vw, 1.25rem); color: var(--txt-d-mut); max-width: 60ch; }
.section--light .lead { color: var(--txt-l-mut); }
.mono { font-family: var(--f-mono); }
.mut { color: var(--txt-d-mut); }
.section--light .mut { color: var(--txt-l-mut); }

/* ---------- Buttons ---------- */
.btn {
  --b: var(--accent);
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--f-mono); font-size: 13px; letter-spacing: .14em; text-transform: uppercase;
  padding: 16px 26px; border-radius: var(--radius);
  background: var(--b); color: #fff; font-weight: 600;
  position: relative; overflow: hidden; transition: transform .25s var(--ease), box-shadow .25s var(--ease);
  box-shadow: 0 10px 30px -12px rgba(255,91,35,.7);
}
.btn::after { content: "→"; transition: transform .25s var(--ease); }
.btn:hover { transform: translateY(-2px); box-shadow: 0 16px 40px -12px rgba(255,91,35,.8); }
.btn:hover::after { transform: translateX(5px); }
.btn--ghost {
  background: transparent; color: var(--txt-d);
  box-shadow: inset 0 0 0 1.5px var(--line-dark-2);
}
.btn--ghost::after { content: "→"; }
.btn--ghost:hover { box-shadow: inset 0 0 0 1.5px var(--accent); color: #fff; }
.section--light .btn--ghost { color: var(--txt-l); box-shadow: inset 0 0 0 1.5px var(--line-light-2); }
.section--light .btn--ghost:hover { box-shadow: inset 0 0 0 1.5px var(--accent); color: var(--txt-l); }

/* ---------- Top bar ---------- */
.topbar {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px var(--gut);
  transition: background .3s var(--ease), backdrop-filter .3s, border-color .3s;
  border-bottom: 1px solid transparent;
}
.topbar.scrolled {
  background: rgba(11,19,34,.82); backdrop-filter: blur(12px);
  border-bottom-color: var(--line-dark);
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand svg { height: 34px; width: auto; }
.brand .brand-txt { display: flex; flex-direction: column; line-height: 1; }
.brand .brand-name { font-family: var(--f-display); font-weight: 800; letter-spacing: .04em; font-size: 17px; text-transform: uppercase; }
.brand .brand-sub { font-family: var(--f-mono); font-size: 9.5px; letter-spacing: .26em; color: var(--txt-d-mut); margin-top: 4px; text-transform: uppercase; }
.nav { display: flex; align-items: center; gap: 30px; }
.nav a { font-family: var(--f-mono); font-size: 12.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--txt-d-mut); position: relative; padding: 6px 0; transition: color .2s; }
.nav a:hover, .nav a.active { color: var(--txt-d); }
.nav a::after { content: ""; position: absolute; left: 0; bottom: 0; height: 1.5px; width: 0; background: var(--accent); transition: width .25s var(--ease); }
.nav a:hover::after, .nav a.active::after { width: 100%; }
.nav .btn { padding: 11px 18px; }
.nav .btn::after { display: none; }
.burger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.burger span { width: 24px; height: 2px; background: var(--txt-d); transition: .3s var(--ease); }

/* ---------- HERO ---------- */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center;
  background: radial-gradient(120% 90% at 80% 0%, #16243f 0%, var(--ink) 55%, #070d18 100%);
  overflow: hidden; padding-top: 90px;
}
#grid-canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; opacity: .9; }
.hero .wrap { position: relative; z-index: 2; width: 100%; }
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 40px; align-items: center; }
.hero-kicker { margin-bottom: 26px; }
.hero h1 { margin-bottom: 28px; }
.hero p.lead { margin-bottom: 38px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 16px; }
.hero-rail {
  position: absolute; right: var(--gut); top: 50%; transform: translateY(-50%) rotate(180deg);
  writing-mode: vertical-rl; font-family: var(--f-mono); font-size: 11px; letter-spacing: .34em;
  color: var(--txt-d-mut); text-transform: uppercase; z-index: 2;
}
.hero-rail b { color: var(--accent); font-weight: 600; }
/* hero blueprint visual */
.hero-visual { position: relative; aspect-ratio: 1/1; }
.hero-visual svg { width: 100%; height: 100%; overflow: visible; }
.draw { stroke-dasharray: 1400; stroke-dashoffset: 1400; animation: draw 2.6s var(--ease) forwards; }
.draw.d2 { animation-delay: .4s; } .draw.d3 { animation-delay: .8s; } .draw.d4 { animation-delay: 1.1s; }
@keyframes draw { to { stroke-dashoffset: 0; } }
.node { fill: var(--accent); transform-box: fill-box; transform-origin: center; animation: pulse 2.4s ease-in-out infinite; }
.node.n2 { animation-delay: .6s; } .node.n3 { animation-delay: 1.2s; } .node.n4 { animation-delay: 1.8s; }
@keyframes pulse { 0%,100% { opacity: .4; r: 3; } 50% { opacity: 1; r: 5; } }
.dim { font-family: var(--f-mono); font-size: 10px; fill: var(--blueprint); letter-spacing: .1em; }
.dimline { stroke: var(--blueprint); stroke-width: 1; stroke-dasharray: 3 3; opacity: .6; }
.float-tag {
  position: absolute; font-family: var(--f-mono); font-size: 10.5px; letter-spacing: .12em;
  color: var(--txt-d); background: rgba(20,34,63,.7); border: 1px solid var(--line-dark-2);
  padding: 6px 10px; border-radius: 3px; backdrop-filter: blur(4px);
  animation: floaty 5s ease-in-out infinite;
}
.float-tag span { color: var(--accent); }
.float-tag.t1 { top: 8%; left: -4%; } .float-tag.t2 { bottom: 14%; right: -6%; animation-delay: 1.5s; }
.float-tag.t3 { top: 46%; right: 2%; animation-delay: .8s; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* hero bottom ticker */
.ticker {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  border-top: 1px solid var(--line-dark); background: rgba(7,13,24,.5); backdrop-filter: blur(6px);
  overflow: hidden;
}
.ticker-track { display: flex; gap: 0; white-space: nowrap; animation: scroll-x 32s linear infinite; }
.ticker-track span {
  font-family: var(--f-mono); font-size: 12px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--txt-d-mut); padding: 14px 28px; display: inline-flex; align-items: center; gap: 28px;
}
.ticker-track span::after { content: "◆"; color: var(--accent); font-size: 8px; }
@keyframes scroll-x { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Stats strip ---------- */
.stats { display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid var(--line-dark); }
.section--light .stats { border-top-color: var(--line-light); }
.stat { padding: 40px 28px; border-right: 1px solid var(--line-dark); }
.section--light .stat { border-right-color: var(--line-light); }
.stat:last-child { border-right: none; }
.stat .num { font-family: var(--f-display); font-weight: 800; font-size: clamp(2.2rem,4vw,3.4rem); line-height: 1; color: var(--accent); }
.stat .num .u { font-size: .5em; color: var(--txt-d-mut); }
.section--light .stat .num .u { color: var(--txt-l-mut); }
.stat .lbl { font-family: var(--f-mono); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; margin-top: 12px; color: var(--txt-d-mut); }
.section--light .stat .lbl { color: var(--txt-l-mut); }

/* ---------- Section head ---------- */
.head { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; margin-bottom: 56px; flex-wrap: wrap; }
.head .h2 { max-width: 16ch; }
.head .lead { margin-top: 16px; }
.head-right { font-family: var(--f-mono); font-size: 12px; color: var(--txt-d-mut); letter-spacing: .1em; }
.section--light .head-right { color: var(--txt-l-mut); }

/* ---------- Product category grid ---------- */
.cat-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 22px; }
.cat {
  position: relative; padding: 38px; border-radius: var(--radius); overflow: hidden;
  background: var(--panel); border: 1px solid var(--line-dark);
  display: grid; grid-template-columns: 96px 1fr; gap: 26px; align-items: start;
  transition: transform .35s var(--ease), border-color .35s, background .35s;
}
.section--light .cat { background: var(--card); border-color: var(--line-light); }
.cat:hover { transform: translateY(-6px); border-color: var(--accent); background: var(--panel-2); }
.section--light .cat:hover { background: #fff; box-shadow: 0 24px 60px -30px rgba(11,19,34,.4); }
.cat .ico { width: 96px; height: 96px; }
.cat .ico svg { width: 100%; height: 100%; }
.cat .ico .ln { stroke: var(--blueprint); fill: none; stroke-width: 1.6; transition: stroke .35s; }
.section--light .cat .ico .ln { stroke: var(--blueprint-d); }
.cat:hover .ico .ln { stroke: var(--accent); }
.cat .idx { font-family: var(--f-mono); font-size: 11px; color: var(--txt-d-mut); letter-spacing: .2em; }
.section--light .cat .idx { color: var(--txt-l-mut); }
.cat h3 { margin: 8px 0 12px; }
.cat p { color: var(--txt-d-mut); font-size: .96rem; margin-bottom: 18px; }
.section--light .cat p { color: var(--txt-l-mut); }
.cat .tags { display: flex; flex-wrap: wrap; gap: 8px; }
.cat .tags span { font-family: var(--f-mono); font-size: 10.5px; letter-spacing: .08em; padding: 4px 9px; border: 1px solid var(--line-dark-2); border-radius: 2px; color: var(--txt-d-mut); }
.section--light .cat .tags span { border-color: var(--line-light-2); color: var(--txt-l-mut); }
.cat .arrow { position: absolute; right: 30px; bottom: 30px; font-family: var(--f-mono); color: var(--accent); opacity: 0; transform: translateX(-8px); transition: .35s var(--ease); }
.cat:hover .arrow { opacity: 1; transform: translateX(0); }

/* ---------- Feature / capability split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px,5vw,80px); align-items: center; }
.feat-list { display: grid; gap: 0; margin-top: 30px; }
.feat { display: grid; grid-template-columns: 56px 1fr; gap: 20px; padding: 22px 0; border-top: 1px solid var(--line-light); }
.feat .n { font-family: var(--f-mono); font-size: 13px; color: var(--accent); }
.feat h4 { font-family: var(--f-display); font-weight: 700; text-transform: uppercase; font-size: 1.05rem; margin-bottom: 6px; }
.feat p { color: var(--txt-l-mut); font-size: .95rem; }
.blueprint-card {
  position: relative; aspect-ratio: 4/3; border-radius: var(--radius);
  background: var(--ink); border: 1px solid var(--line-dark); overflow: hidden;
}
.blueprint-card svg { width: 100%; height: 100%; }

/* ---------- Spec tables ---------- */
.spec-wrap { overflow-x: auto; border: 1px solid var(--line-light); border-radius: var(--radius); }
table.spec { width: 100%; border-collapse: collapse; font-size: 13.5px; min-width: 720px; }
table.spec caption { text-align: left; font-family: var(--f-mono); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--txt-l-mut); padding: 14px 18px; background: var(--paper); border-bottom: 1px solid var(--line-light); }
table.spec th, table.spec td { padding: 11px 16px; text-align: left; border-bottom: 1px solid var(--line-light); border-right: 1px solid var(--line-light); }
table.spec th:last-child, table.spec td:last-child { border-right: none; }
table.spec thead th { font-family: var(--f-mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; background: var(--ink); color: var(--txt-d); position: sticky; top: 0; }
table.spec thead th:first-child { background: var(--ink-2); }
table.spec tbody th { font-family: var(--f-mono); font-weight: 500; color: var(--txt-l-mut); background: var(--paper-2); white-space: nowrap; }
table.spec td { font-variant-numeric: tabular-nums; color: var(--txt-l); }
table.spec td.model { font-family: var(--f-mono); font-weight: 600; color: var(--accent); }
table.spec tbody tr:hover td { background: rgba(29,78,216,.05); }
.spec-note { font-family: var(--f-mono); font-size: 11.5px; color: var(--txt-l-mut); margin-top: 14px; letter-spacing: .04em; }

/* ---------- Industries marquee ---------- */
.ind-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--line-dark); border: 1px solid var(--line-dark); }
.ind { background: var(--ink-2); padding: 30px 24px; transition: background .3s; }
.ind:hover { background: var(--panel); }
.ind .ico2 { width: 38px; height: 38px; margin-bottom: 16px; }
.ind .ico2 svg { width: 100%; height: 100%; }
.ind .ico2 .ln { stroke: var(--blueprint); fill: none; stroke-width: 1.5; }
.ind h4 { font-family: var(--f-display); font-weight: 700; text-transform: uppercase; font-size: .98rem; }
.ind p { font-size: .82rem; color: var(--txt-d-mut); margin-top: 6px; }

/* ---------- World map / reach ---------- */
.reach { position: relative; }
.reach svg .arc { fill: none; stroke: var(--accent); stroke-width: 1.4; stroke-dasharray: 4 4; opacity: .8; animation: dash 1.4s linear infinite; }
@keyframes dash { to { stroke-dashoffset: -16; } }
.reach svg .dot { fill: var(--blueprint); }
.reach svg .hq { fill: var(--accent); }
.reach svg .land { fill: var(--panel); stroke: var(--line-dark-2); stroke-width: .6; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--accent); color: #fff; position: relative; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.08) 1px,transparent 1px), linear-gradient(90deg,rgba(255,255,255,.08) 1px,transparent 1px); background-size: 44px 44px; }
.cta-band .wrap { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.cta-band h2 { font-family: var(--f-display); font-weight: 800; text-transform: uppercase; font-size: clamp(1.8rem,4vw,3rem); line-height: 1; max-width: 18ch; }
.cta-band .btn { background: var(--ink); color: #fff; box-shadow: none; }
.cta-band .btn:hover { background: #fff; color: var(--ink); }
.cta-band .btn--ghost { box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.6); color: #fff; }
.cta-band .btn--ghost:hover { background: #fff; color: var(--ink); box-shadow: none; }

/* ---------- Contact / form ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(30px,5vw,70px); }
.contact-info .row { display: flex; gap: 16px; padding: 20px 0; border-top: 1px solid var(--line-dark); }
.contact-info .row .k { font-family: var(--f-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--txt-d-mut); min-width: 90px; padding-top: 3px; }
.contact-info .row .v { font-size: 1.02rem; }
.contact-info .row .v a:hover { color: var(--accent); }
.wa-btn { display: inline-flex; align-items: center; gap: 10px; margin-top: 8px; font-family: var(--f-mono); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: #25d366; border: 1px solid rgba(37,211,102,.4); padding: 10px 16px; border-radius: var(--radius); }
.wa-btn:hover { background: rgba(37,211,102,.12); }
form.quote { background: var(--panel); border: 1px solid var(--line-dark); border-radius: var(--radius); padding: clamp(24px,3vw,40px); }
.field { margin-bottom: 18px; }
.field label { display: block; font-family: var(--f-mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--txt-d-mut); margin-bottom: 8px; }
.field input, .field select, .field textarea {
  width: 100%; background: var(--ink-2); border: 1px solid var(--line-dark-2); color: var(--txt-d);
  padding: 13px 14px; border-radius: var(--radius); font-family: var(--f-body); font-size: 15px; transition: border-color .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); }
.field textarea { resize: vertical; min-height: 110px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
form.quote .btn { width: 100%; justify-content: center; }

/* ---------- Footer ---------- */
.footer { background: #070d18; color: var(--txt-d-mut); padding-block: 64px 30px; border-top: 1px solid var(--line-dark); }
.foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.footer h5 { font-family: var(--f-mono); font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--txt-d); margin-bottom: 18px; }
.footer ul li { margin-bottom: 10px; }
.footer ul li a { font-size: .92rem; transition: color .2s; }
.footer ul li a:hover { color: var(--accent); }
.footer .brand { margin-bottom: 18px; }
.footer .f-about { font-size: .9rem; max-width: 34ch; }
.foot-bottom { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-top: 50px; padding-top: 24px; border-top: 1px solid var(--line-dark); font-family: var(--f-mono); font-size: 11px; letter-spacing: .08em; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .08s; } .reveal[data-d="2"] { transition-delay: .16s; }
.reveal[data-d="3"] { transition-delay: .24s; } .reveal[data-d="4"] { transition-delay: .32s; }

/* page header (interior pages) */
.pagehead { padding: 150px 0 70px; background: radial-gradient(120% 120% at 80% 0%, #16243f 0%, var(--ink) 60%); position: relative; overflow: hidden; }
.pagehead::after { content:""; position:absolute; inset:0; background-image: linear-gradient(var(--line-dark) 1px,transparent 1px),linear-gradient(90deg,var(--line-dark) 1px,transparent 1px); background-size: 60px 60px; mask-image: radial-gradient(70% 70% at 70% 30%, #000, transparent); opacity:.5; }
.pagehead .wrap { position: relative; z-index: 2; }
.pagehead h1 { margin: 18px 0 16px; }
.crumbs { font-family: var(--f-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--txt-d-mut); }
.crumbs a:hover { color: var(--accent); }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .nav { position: fixed; inset: 0 0 0 auto; width: min(320px,84vw); background: var(--ink-2); flex-direction: column; align-items: flex-start; justify-content: center; padding: 40px; gap: 22px; transform: translateX(100%); transition: transform .35s var(--ease); border-left: 1px solid var(--line-dark); }
  .nav.open { transform: none; }
  .burger { display: flex; z-index: 120; }
  .burger.open span:nth-child(1){ transform: translateY(7px) rotate(45deg);} .burger.open span:nth-child(2){opacity:0;} .burger.open span:nth-child(3){transform: translateY(-7px) rotate(-45deg);}
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 420px; margin-top: 10px; }
  .hero-rail { display: none; }
  .stats { grid-template-columns: repeat(2,1fr); }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(1),.stat:nth-child(2){ border-bottom: 1px solid var(--line-dark);}
  .cat-grid { grid-template-columns: 1fr; }
  .cat { grid-template-columns: 72px 1fr; }
  .cat .ico { width: 72px; height: 72px; }
  .split, .contact-grid { grid-template-columns: 1fr; }
  .ind-grid { grid-template-columns: repeat(2,1fr); }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .stats { grid-template-columns: 1fr; }
  .stat { border-right: none; border-bottom: 1px solid var(--line-dark); }
  .ind-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .head { flex-direction: column; align-items: flex-start; }
}
@media (prefers-reduced-motion: reduce) {
  *,*::before,*::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- extra components ---------- */
.cols2 { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.cols3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.panel { border: 1px solid var(--line-light); border-radius: var(--radius); padding: clamp(22px,3vw,34px); background: var(--card); transition: border-color .3s, transform .3s var(--ease); }
.panel:hover { border-color: var(--accent); transform: translateY(-4px); }
.section--dark .panel, .section--ink2 .panel { border-color: var(--line-dark); background: var(--panel); }
.panel .pico { width: 52px; height: 52px; margin-bottom: 16px; }
.panel .pico svg { width: 100%; height: 100%; }
.panel .pico .ln { stroke: var(--blueprint-d); fill: none; stroke-width: 1.6; }
.section--dark .panel .pico .ln, .section--ink2 .panel .pico .ln { stroke: var(--blueprint); }
.panel h4 { font-family: var(--f-display); font-weight: 700; text-transform: uppercase; font-size: 1.08rem; margin-bottom: 8px; }
.panel .ptag { font-family: var(--f-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); }
.panel p { font-size: .93rem; margin: 10px 0 14px; color: var(--txt-l-mut); }
.section--dark .panel p, .section--ink2 .panel p { color: var(--txt-d-mut); }
.clist li { display: flex; gap: 12px; padding: 9px 0; border-bottom: 1px solid var(--line-light); font-size: .92rem; color: var(--txt-l); }
.section--dark .clist li, .section--ink2 .clist li { border-bottom-color: var(--line-dark); color: var(--txt-d); }
.clist li:last-child { border-bottom: none; }
.clist li::before { content: "＋"; font-family: var(--f-mono); color: var(--accent); line-height: 1.5; }
/* process steps */
.proc { display: grid; grid-template-columns: repeat(4,1fr); }
.step { padding: 30px 24px; border-left: 1px solid var(--line-dark); position: relative; }
.step:first-child { border-left: none; }
.step .n { font-family: var(--f-mono); font-size: 12px; color: var(--accent); letter-spacing: .16em; }
.step h4 { font-family: var(--f-display); font-weight: 700; text-transform: uppercase; font-size: 1rem; margin: 12px 0 8px; }
.step p { font-size: .88rem; color: var(--txt-d-mut); }
.section--light .step, .section--white .step { border-left-color: var(--line-light); }
.section--light .step p, .section--white .step p { color: var(--txt-l-mut); }
/* inline cta card */
.minicta { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; background: var(--ink); border: 1px solid var(--line-dark); border-radius: var(--radius); padding: clamp(26px,3.5vw,46px); position: relative; overflow: hidden; }
.minicta::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(var(--line-dark) 1px,transparent 1px),linear-gradient(90deg,var(--line-dark) 1px,transparent 1px); background-size: 40px 40px; opacity: .5; }
.minicta > * { position: relative; }
.minicta h3 { font-family: var(--f-display); font-weight: 800; text-transform: uppercase; font-size: clamp(1.3rem,2.6vw,2.1rem); line-height: 1.04; max-width: 20ch; }
.minicta .btns { display: flex; gap: 14px; flex-wrap: wrap; }
@media (max-width: 960px) {
  .cols2, .cols3 { grid-template-columns: 1fr; }
  .proc { grid-template-columns: 1fr 1fr; }
  .step { border-left: none; border-top: 1px solid var(--line-dark); }
  .section--light .step, .section--white .step { border-top-color: var(--line-light); }
  .step:nth-child(-n+2) { border-top: none; }
}
@media (max-width: 560px) { .proc { grid-template-columns: 1fr; } .step { border-top: 1px solid var(--line-dark) !important; } .step:first-child { border-top: none !important; } }

/* ---------- photo gallery (representative imagery) ---------- */
.photo-band .photo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.photo-band .photo-grid--solo { grid-template-columns: 1fr; max-width: 760px; }
.photo-card { position: relative; margin: 0; border: 1px solid var(--line-dark-2); border-radius: var(--radius); overflow: hidden; background: var(--panel); transition: transform .35s var(--ease), border-color .35s; }
.photo-card:hover { transform: translateY(-4px); border-color: var(--accent); }
.photo-card img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; display: block; filter: saturate(.92) contrast(1.03); }
.photo-card figcaption { font-family: var(--f-mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--txt-d-mut); padding: 12px 16px; border-top: 1px solid var(--line-dark); }
.photo-credit { font-family: var(--f-mono); font-size: 11px; letter-spacing: .1em; margin-top: 22px; color: var(--txt-d-mut); }
.photo-credit a { color: var(--blueprint); border-bottom: 1px solid var(--line-dark-2); }
.photo-credit a:hover { color: var(--accent); }
@media (max-width: 760px) { .photo-band .photo-grid { grid-template-columns: 1fr; } }
