/* ============================================================
   OptiFab — preview stylesheet  ·  minimalist / industrial-luxury
   Near-monochrome, hairline rules, generous space, restrained accent.
   ============================================================ */

:root{
  --ink:      #15161b;   /* near-black */
  --ink-soft: #23252c;
  --paper:    #f6f5f2;   /* warm off-white */
  --paper-2:  #efeee9;
  --text:     #1c1d22;
  --muted:    #8b8b83;
  --line:     #e3e1da;   /* hairline */
  --line-dk:  #2c2e35;
  --accent:   #a17c4b;   /* restrained brass — used sparingly */
  --maxw:     1180px;
  --font: "Aptos", "Aptos Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0; font-family:var(--font); color:var(--text); background:var(--paper);
  line-height:1.65; -webkit-font-smoothing:antialiased; font-size:16.5px;
}
.wrap{ max-width:var(--maxw); margin:0 auto; padding:0 28px; }
html, body{ overflow-x:hidden; max-width:100%; }
img, svg, canvas, video{ max-width:100%; }
h1,h2,h3{ margin:0; font-weight:600; letter-spacing:-.02em; line-height:1.12; }
h1{ font-size:clamp(2.5rem, 5.4vw, 4.1rem); font-weight:600; }
h2{ font-size:clamp(1.7rem, 3.2vw, 2.4rem); }
h3{ font-size:1.12rem; }
p{ margin:.6em 0; }
a{ color:inherit; text-decoration:none; }
.muted{ color:var(--muted); }
.small{ font-size:.85rem; }
.center{ text-align:center; }
code{ background:var(--paper-2); padding:.05em .4em; border-radius:4px; font-size:.9em; }

.eyebrow{
  text-transform:uppercase; letter-spacing:.22em; font-size:.7rem; font-weight:600;
  color:var(--accent); margin:0 0 1rem;
}
.eyebrow.light{ color:#c9a877; }

/* ---------- buttons / links ---------- */
.btn{
  display:inline-flex; align-items:center; gap:.5rem; cursor:pointer; font-weight:500;
  font-size:.92rem; border:1px solid transparent; border-radius:2px;
  padding:.85rem 1.6rem; transition:background .2s, color .2s, border-color .2s, transform .15s;
}
.btn-sm{ padding:.55rem 1.1rem; font-size:.82rem; }
.btn-primary{ background:var(--ink); color:#fff; }
.btn-primary:hover{ background:#000; }
.btn-ghost{ background:transparent; border-color:var(--line); color:var(--text); }
.btn-ghost:hover{ border-color:var(--ink); }
.btn-light{ background:#fff; color:var(--ink); }
.btn-light:hover{ background:var(--paper-2); }
.link-arrow{ font-size:.92rem; font-weight:500; border-bottom:1px solid transparent; padding-bottom:2px; }
.link-arrow:hover{ border-color:var(--accent); color:var(--accent); }

/* ---------- header ---------- */
.site-header{
  position:sticky; top:0; z-index:50; background:rgba(246,245,242,.85);
  backdrop-filter:blur(14px); border-bottom:1px solid var(--line);
}
.header-inner{ display:flex; align-items:center; justify-content:space-between; height:72px; gap:20px; }
.brand{ display:flex; align-items:center; gap:.6rem; font-size:1.12rem; letter-spacing:-.01em; }
.brand-name{ font-weight:600; }
.brand-name b{ color:var(--accent); font-weight:700; }
.brand-mark{ display:inline-grid; gap:2.5px; }
.brand-mark span{ display:block; height:3px; width:20px; border-radius:1px; background:var(--text); }
.brand-mark span:nth-child(1){ opacity:.35; }
.brand-mark span:nth-child(2){ opacity:.65; }
.brand-mark span:nth-child(3){ background:var(--accent); }

.nav{ display:flex; gap:30px; font-size:.92rem; }
.nav a{ opacity:.78; }
.nav a:hover, .nav a.is-current{ opacity:1; color:var(--accent); }
.header-actions{ display:flex; align-items:center; gap:16px; }
.lang{ display:flex; border:1px solid var(--line); border-radius:2px; overflow:hidden; }
.lang button{ border:0; background:transparent; padding:.35rem .58rem; font-size:.75rem;
  font-weight:600; cursor:pointer; color:var(--muted); }
.lang button.is-active{ background:var(--ink); color:#fff; }
.nav-toggle{ display:none; width:40px; height:40px; border:1px solid var(--line); border-radius:2px;
  background:transparent; cursor:pointer; align-items:center; justify-content:center; padding:0; }
.nav-toggle span{ position:relative; width:18px; height:1.5px; background:var(--text); transition:.2s; }
.nav-toggle span::before, .nav-toggle span::after{ content:""; position:absolute; left:0; width:18px;
  height:1.5px; background:var(--text); transition:.2s; }
.nav-toggle span::before{ top:-5px; } .nav-toggle span::after{ top:5px; }
body.nav-open .nav-toggle span{ background:transparent; }
body.nav-open .nav-toggle span::before{ transform:translateY(5px) rotate(45deg); }
body.nav-open .nav-toggle span::after{ transform:translateY(-5px) rotate(-45deg); }

/* ---------- hero ---------- */
.hero{ background:var(--ink); color:#fff; padding:clamp(48px,7vw,84px) 0 clamp(52px,7vw,88px); overflow:hidden; }
.hero-grid{ display:grid; grid-template-columns:1.1fr .9fr; gap:48px; align-items:center; }
.hero .eyebrow{ color:#c9a877; }
.hero h1{ font-weight:600; }
.hero .lead{ color:#b9bac1; font-size:1.12rem; max-width:33rem; margin-top:1.3rem; font-weight:300; }
.hero-cta{ display:flex; gap:16px 24px; align-items:center; margin-top:2rem; flex-wrap:wrap; }
.hero-cta > *{ display:inline-flex; align-items:center; }   /* button + links share one vertical centre */
.hero .link-arrow{ color:#e7e2d9; white-space:nowrap; }
.hero-visual{ height:360px; }
.hero-viewer{ width:100%; height:360px; cursor:grab; }
.hero-viewer canvas{ display:block; }

/* ---------- spec strip + sectors (credibility) ---------- */
.specstrip{ border-bottom:1px solid var(--line); background:var(--paper); }
.spec-grid{ display:grid; grid-template-columns:repeat(4,1fr); }
.spec{ display:flex; flex-direction:column; gap:.28rem; padding:26px 22px; border-left:1px solid var(--line); }
.spec:first-child{ border-left:0; padding-left:0; }
.spec-l{ text-transform:uppercase; letter-spacing:.12em; font-size:.66rem; color:var(--muted); }
.spec-v{ font-size:1rem; font-weight:600; letter-spacing:-.01em; }
.spec-s{ font-size:.76rem; color:var(--muted); }
.spec-help{ font-size:.78rem; color:var(--accent); align-self:flex-start; border-bottom:1px solid transparent; }
.spec-help:hover{ border-color:var(--accent); }
.sectors-row{ display:flex; flex-wrap:wrap; align-items:center; justify-content:center; gap:22px; padding:18px 0; border-top:1px solid var(--line); }
.sectors-row span{ color:var(--muted); font-size:.9rem; }
.sectors-row .sectors-l{ text-transform:uppercase; letter-spacing:.14em; font-size:.66rem; color:var(--accent); }
.sectors-row .sectors-l::after{ content:" :"; }

/* ---------- sections ---------- */
.section{ padding:clamp(40px, 6vw, 76px) 0; }
.section-alt{ background:var(--paper-2); }
.section-dark{ background:var(--ink); color:#fff; padding:0; }
.section-head{ max-width:42rem; margin:0 0 clamp(22px, 4vw, 38px); }
.section-sub{ color:var(--muted); font-size:1.05rem; margin-top:.7rem; font-weight:300; }

/* card grids */
.cards-3{ display:grid; grid-template-columns:repeat(3,1fr); gap:0; border-top:1px solid var(--line); }
.card{ padding:40px 34px 40px 0; border-bottom:1px solid var(--line); }
.cards-3 .card{ padding:40px 34px; border-left:1px solid var(--line); border-bottom:0; }
.cards-3 .card:first-child{ border-left:0; padding-left:0; }
.card-ico{ font-size:.8rem; letter-spacing:.1em; color:var(--accent); margin-bottom:1.4rem; font-weight:600; }
.card h3{ margin-bottom:.5rem; }
.card p{ color:var(--muted); margin:0; font-weight:300; }

/* ---------- modelling ---------- */
.modelling-grid{ display:grid; grid-template-columns:1.05fr .95fr; gap:56px; align-items:center; }
.ticks{ list-style:none; padding:0; margin:1.4rem 0 1.8rem; }
.ticks li{ position:relative; padding-left:1.8rem; margin:.6rem 0; font-weight:300; }
.ticks li::before{ content:"—"; position:absolute; left:0; color:var(--accent); }
.modelling-steps{ display:grid; gap:0; border-top:1px solid var(--line); }
.step{ display:flex; align-items:center; gap:22px; padding:22px 4px; border-bottom:1px solid var(--line); }
.step-n{ font-size:.85rem; font-weight:600; color:var(--accent); letter-spacing:.08em; min-width:2rem; }
.step h3{ font-size:1rem; }

/* ---------- work mosaic ---------- */
.mosaic{ display:flex; gap:14px; height:520px; overflow:hidden; padding:8px 28px 0;
  max-width:1320px; margin:0 auto;
  -webkit-mask-image:linear-gradient(180deg,transparent,#000 8%,#000 92%,transparent);
          mask-image:linear-gradient(180deg,transparent,#000 8%,#000 92%,transparent); }
.mcol{ flex:1; overflow:hidden; }
.mtrack{ display:flex; flex-direction:column; gap:14px; will-change:transform; }
.mcol:nth-child(odd)  .mtrack{ animation:mUp   42s linear infinite; }
.mcol:nth-child(even) .mtrack{ animation:mDown 38s linear infinite; }
.mcol:nth-child(3n)   .mtrack{ animation-duration:50s; }
.mcol:nth-child(4n)   .mtrack{ animation-duration:34s; }
.mcol:hover .mtrack{ animation-play-state:paused; }   /* only the hovered column pauses */
@keyframes mUp   { from{ transform:translateY(0); }     to{ transform:translateY(-50%); } }
@keyframes mDown { from{ transform:translateY(-50%); }  to{ transform:translateY(0); } }
.mtile{ position:relative; aspect-ratio:4/5; border-radius:3px; overflow:hidden; background:var(--paper-2); }
.mtile img{ width:100%; height:100%; object-fit:cover; display:block;
  filter:grayscale(1) contrast(.96); transition:filter .5s, transform .5s; }
.mtile:hover img{ filter:grayscale(0); transform:scale(1.04); }
/* graceful placeholder when a photo is missing */
.mtile.ph{ background:
  linear-gradient(135deg, var(--ink-soft), #3a3d47);
  display:grid; place-items:center; }
.mtile.ph::after{ content:attr(data-ph); color:#6b6e79; font-size:.7rem; letter-spacing:.1em;
  text-transform:uppercase; }
.mtile.ph.v2{ background:linear-gradient(135deg,#d9d5cb,#b7b1a3); }
.mtile.ph.v3{ background:linear-gradient(135deg,#c4c9d4,#9aa1b1); }
.mtile.ph.v4{ background:linear-gradient(135deg,#e6ddcf,#cdbfa5); }

/* ---------- easyQuote ---------- */
.eq-grid{ display:grid; grid-template-columns:1fr 1fr; gap:0; border-top:1px solid var(--line); }
.eq-controls{ padding:36px 40px 36px 0; border-right:1px solid var(--line); }
.eq-result{ padding:36px 0 36px 40px; }
.dropzone{ border:2px dashed var(--line); border-radius:3px; padding:14px 18px; text-align:center;
  transition:border-color .2s, background .2s; cursor:pointer; }
.dropzone:hover{ border-color:var(--muted); }
.dropzone.drag{ border-color:var(--accent); background:rgba(161,124,75,.05); }
.dropzone.error{ border-color:#c0392b; background:rgba(192,57,43,.05); }
.dz-ico{ font-size:1.4rem; color:var(--accent); }
.dz-inner p{ margin:.2rem 0; }
.dz-error{ display:none; color:#c0392b; font-size:.85rem; font-weight:600; margin:.5rem 0 0; }
.dz-bang{ display:inline-grid; place-items:center; width:18px; height:18px; border-radius:50%;
  background:#c0392b; color:#fff; font-weight:800; font-size:.78rem; margin-right:5px; }
.measured{ font-size:1.4rem; font-weight:600; letter-spacing:-.02em; color:var(--muted); font-variant-numeric:tabular-nums; }
.measured.has-value{ color:var(--text); }
.help-link{ display:inline-block; margin-top:.6rem; font-size:.8rem; color:var(--accent); border-bottom:1px solid transparent; }
.help-link:hover{ border-color:var(--accent); }
.segmented.tri button, .segmented button{ display:flex; flex-direction:column; align-items:flex-start; gap:2px; text-align:left; }
.segmented button b{ font-weight:600; font-size:.85rem; color:var(--text); }
.segmented button small{ font-size:.68rem; color:var(--muted); font-weight:400; }
.segmented button.is-active b{ color:var(--accent); }

.quote-preview{ position:relative; margin:18px 0 6px; border:1px solid var(--line); border-radius:3px;
  background:var(--ink); height:220px; overflow:hidden; }
.quote-viewer{ width:100%; height:220px; }
.quote-viewer canvas{ display:block; }
.qv-empty{ position:absolute; inset:0; display:grid; place-items:center; color:#7d7f89 !important;
  pointer-events:none; }

.field{ margin:20px 0; }
.field > label{ display:block; font-weight:500; font-size:.82rem; text-transform:uppercase;
  letter-spacing:.08em; color:var(--muted); margin-bottom:.6rem; }
.range-row{ display:flex; align-items:center; gap:14px; }
.range-row output{ font-variant-numeric:tabular-nums; font-weight:600; min-width:80px; text-align:right; }
input[type=range]{ -webkit-appearance:none; width:100%; height:2px; background:var(--line); outline:none; }
input[type=range]::-webkit-slider-thumb{ -webkit-appearance:none; width:16px; height:16px; border-radius:50%;
  background:var(--ink); cursor:pointer; }
select, input[type=number], .contact-form input, .contact-form textarea{
  width:100%; padding:.7rem .9rem; border:1px solid var(--line); border-radius:2px; font:inherit;
  background:#fff; color:var(--text); }
.segmented{ display:flex; gap:8px; flex-wrap:wrap; }
.segmented button{ flex:1; min-width:92px; border:1px solid var(--line); background:transparent;
  border-radius:2px; padding:.6rem .5rem; font:inherit; font-size:.82rem; font-weight:500; cursor:pointer;
  color:var(--muted); transition:.15s; }
.segmented button.is-active{ border-color:var(--ink); color:var(--ink); }

.eq-headline{ border-bottom:1px solid var(--line); padding-bottom:20px; margin-bottom:6px; }
.eq-qty{ display:flex; align-items:center; gap:12px; margin:.4rem 0 1.1rem; }
.eq-qty label{ font-size:.82rem; text-transform:uppercase; letter-spacing:.08em; color:var(--muted); }
.eq-qty input{ width:88px; }
.eq-price{ display:flex; align-items:baseline; gap:.45rem; }
.eq-price-big{ font-size:2.8rem; font-weight:600; letter-spacing:-.03em; }
.eq-price-unit{ color:var(--muted); }
.eq-total{ margin:.5rem 0 0; }
.pill{ display:inline-block; margin-left:.4rem; font-size:.7rem; font-weight:600; letter-spacing:.04em;
  border:1px solid var(--line); padding:.15rem .6rem; border-radius:999px; }
.sheet{ width:100%; border-collapse:collapse; margin:20px 0; font-variant-numeric:tabular-nums; }
.sheet th, .sheet td{ text-align:right; padding:.62rem .3rem; border-bottom:1px solid var(--line); }
.sheet th:first-child, .sheet td:first-child{ text-align:left; }
.sheet th{ font-size:.7rem; text-transform:uppercase; letter-spacing:.1em; color:var(--muted); font-weight:600; }
.sheet tr.hot td{ font-weight:600; color:var(--accent); }
.disclaimer{ font-size:.8rem; color:var(--muted); margin-top:16px; font-weight:300; }

/* ---------- proof / sectors ---------- */
.quotes-3{ display:grid; grid-template-columns:repeat(3,1fr); gap:0; border-top:1px solid var(--line); }
.tquote{ margin:0; padding:38px 34px; border-left:1px solid var(--line); }
.tquote:first-child{ border-left:0; padding-left:0; }
.tquote p{ font-size:1.05rem; font-weight:300; }
.tquote cite{ display:block; margin-top:1rem; font-style:normal; font-size:.8rem; color:var(--muted);
  text-transform:uppercase; letter-spacing:.08em; }
.sectors{ display:flex; flex-wrap:wrap; align-items:center; gap:28px; margin:56px 0 10px;
  padding-top:30px; border-top:1px solid var(--line); }
.sectors span{ color:var(--muted); font-size:.92rem; }
.sectors .sectors-l{ text-transform:uppercase; letter-spacing:.14em; font-size:.68rem; color:var(--accent); }

/* ---------- bands ---------- */
.band{ display:flex; align-items:center; justify-content:space-between; gap:28px; flex-wrap:wrap; }
.section-dark .band{ padding:80px 28px; }
.band-outline{ border:1px solid var(--line); border-radius:3px; padding:44px; }
.band h2{ margin-bottom:.3rem; }
.band p{ max-width:42rem; margin:0; }

/* ---------- contact ---------- */
.contact-grid{ display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:start; }
.contact-list{ list-style:none; padding:0; margin:1.4rem 0 0; color:var(--muted); }
.contact-list li{ margin:.5rem 0; }
.contact-form{ display:grid; gap:12px; }
.contact-form .two{ display:grid; grid-template-columns:1fr 1fr; gap:12px; }
.file-fake{ border:1px dashed var(--line); border-radius:2px; padding:.7rem .9rem; color:var(--muted); }

/* ---------- why 3D printing ---------- */
.why-grid{ display:grid; grid-template-columns:.8fr 1.2fr; gap:56px; align-items:start; }
.why-body p{ font-weight:300; margin:0 0 1rem; max-width:44rem; }
.why-tags{ list-style:none; display:flex; flex-wrap:wrap; gap:10px; padding:0; margin:1.5rem 0 0; }
.why-tags li{ font-size:.8rem; border:1px solid var(--line); border-radius:2px; padding:.42rem .85rem; }

/* ---------- accuracy row (thin strip below capabilities) ---------- */
.section.thin{ padding:clamp(40px,5vw,64px) 0; }
.acc-head{ margin-bottom:18px; }
.acc-caption{ margin:16px auto 0; max-width:44rem; }
.acc-row{ display:flex; flex-wrap:wrap; justify-content:center; gap:12px; }
.acc-tile{ flex:0 0 calc((100% - 48px) / 5); aspect-ratio:1 / 1; position:relative; border-radius:3px; overflow:hidden; border:1px solid var(--line); background:var(--paper-2); }
.acc-tile img{ width:100%; height:100%; object-fit:cover; display:block; transition:transform .4s; }
.acc-tile:hover img{ transform:scale(1.04); }
.acc-tile.ph{ background:linear-gradient(135deg,#e7e2d9,#c9c1b2); }
.acc-tile.ph.v2{ background:linear-gradient(135deg,#d3d7de,#a7adba); }
.acc-tile.ph.v3{ background:linear-gradient(135deg,#e6ddcf,#cbbda3); }
.acc-tile.ph.v4{ background:linear-gradient(135deg,#dcdcd6,#b6b6ad); }

/* ---------- when FDM is right (honesty) ---------- */
.fit-grid{ display:grid; grid-template-columns:1fr 1fr; gap:0; border-top:1px solid var(--line); margin-bottom:28px; }
.fit-col{ padding:36px 34px; border-left:1px solid var(--line); }
.fit-col:first-child{ border-left:0; padding-left:0; }
.fit-col h3{ margin-bottom:1rem; }
.fit-col.bad h3{ color:var(--muted); }
.fit-col ul{ list-style:none; padding:0; margin:0; }
.fit-col li{ position:relative; padding:.55rem 0 .55rem 1.7rem; font-weight:300; border-bottom:1px solid var(--line); }
.fit-col li:last-child{ border-bottom:0; }
.fit-col.good li::before{ content:"✓"; position:absolute; left:0; color:var(--accent); }
.fit-col.bad  li::before{ content:"—"; position:absolute; left:0; color:var(--muted); }

/* ---------- icons ---------- */
.ico{ width:16px; height:16px; stroke:currentColor; fill:none; stroke-width:1.5;
  stroke-linecap:round; stroke-linejoin:round; vertical-align:-3px; margin-right:7px; flex:none; }
.file-fake{ display:flex; align-items:center; }
.file-fake.attached{ border-style:solid; border-color:var(--accent); color:var(--text); }

/* ---------- footer links ---------- */
.footer-links{ display:flex; gap:22px; flex-wrap:wrap; }
.footer-links a{ color:#c7c8d0; font-size:.85rem; }
.footer-links a:hover{ color:#fff; }

/* ---------- shop page ---------- */
.shop-hero{ padding:80px 0 40px; border-bottom:1px solid var(--line); }
.shop-hero .lead{ color:var(--muted); font-size:1.1rem; max-width:36rem; margin-top:1rem; font-weight:300; }
.cards-4{ display:grid; grid-template-columns:repeat(4,1fr); gap:24px; }
.product{ border:1px solid var(--line); border-radius:3px; overflow:hidden; background:#fff;
  transition:border-color .2s; }
.product:hover{ border-color:var(--ink); }
.product-img{ aspect-ratio:4/3; }
.product-body{ padding:18px; }
.product-body h3{ font-size:1rem; }
.product-foot{ display:flex; align-items:center; justify-content:space-between; margin-top:14px; }
.price{ font-weight:600; font-size:1.05rem; }
.tag{ font-size:.72rem; text-transform:uppercase; letter-spacing:.08em; color:var(--accent); }

/* ---------- footer ---------- */
.site-footer{ background:var(--ink); color:#fff; padding:40px 0; }
.footer-inner{ display:flex; align-items:center; justify-content:space-between; gap:16px; flex-wrap:wrap; }
.site-footer .muted{ color:#8d8f98; }
.site-footer .brand-mark span{ background:#fff; }
.site-footer .brand-mark span:nth-child(3){ background:var(--accent); }

/* ---------- flash toast ---------- */
.flash{ position:fixed; bottom:26px; left:50%; transform:translateX(-50%); background:var(--ink);
  color:#fff; padding:.7rem 1.2rem; border-radius:2px; font-size:.85rem; z-index:99; opacity:0;
  transition:opacity .25s; }

/* ============ responsive ============ */

/* ---- ≤1000px: switch to the mobile menu, tighten wide grids ---- */
@media (max-width:1000px){
  .nav-toggle{ display:inline-flex; }
  .header-actions .btn-primary{ display:none; }     /* the quote link lives in the menu */
  .nav{ position:absolute; top:100%; left:0; right:0; flex-direction:column; gap:0; display:none;
        background:rgba(246,245,242,.98); backdrop-filter:blur(14px);
        border-bottom:1px solid var(--line); padding:6px 0; }
  body.nav-open .nav{ display:flex; }
  .nav a{ padding:15px 28px; border-top:1px solid var(--line); opacity:1; }
  .nav a:first-child{ border-top:0; }
  .cards-4{ grid-template-columns:repeat(3,1fr); }
  .spec-grid{ grid-template-columns:repeat(3,1fr); }
  .spec:nth-child(4){ border-left:0; }
}

/* ---- ≤820px: tablet — stack the two-column layouts ---- */
@media (max-width:820px){
  .hero-grid, .eq-grid, .contact-grid, .modelling-grid{ grid-template-columns:1fr; }
  .hero-grid{ gap:32px; }
  .hero-visual, .hero-viewer{ height:300px; }
  .modelling-grid{ gap:32px; }
  .cards-3, .quotes-3{ grid-template-columns:1fr; }
  .cards-3 .card, .tquote{ border-left:0; padding-left:0; padding-right:0; border-bottom:1px solid var(--line); }
  .cards-3 .card:last-child, .quotes-3 .tquote:last-child{ border-bottom:0; }
  .eq-controls{ border-right:0; padding:0 0 30px; }
  .eq-result{ padding:30px 0 0; border-top:1px solid var(--line); }
  .mcol:nth-child(4){ display:none; }               /* 3 mosaic columns */
  .mosaic{ height:440px; }
  .band{ flex-direction:column; align-items:flex-start; }
}

/* ---- ≤560px: phone ---- */
@media (max-width:560px){
  body{ font-size:16px; }
  .wrap{ padding:0 20px; }
  .header-inner{ height:64px; }
  .lang button{ padding:.3rem .5rem; font-size:.72rem; }
  .spec-grid{ grid-template-columns:repeat(2,1fr); }
  .spec{ border-left:0; border-top:1px solid var(--line); padding:20px 16px; }
  .cards-4{ grid-template-columns:1fr; }
  .contact-form .two{ grid-template-columns:1fr; }
  .mcol:nth-child(3){ display:none; }               /* 2 mosaic columns */
  .mosaic{ height:380px; gap:10px; padding-left:20px; padding-right:20px; }
  .eq-price-big{ font-size:2.3rem; }
  .band-outline{ padding:28px; }
}

/* ============ responsive: new sections ============ */
@media (max-width:1000px){
  .why-grid{ grid-template-columns:1fr; gap:28px; }
  .spec-grid{ grid-template-columns:repeat(2,1fr); }
  .spec{ border-left:0; padding-left:0; }
  .spec:nth-child(n+3){ border-top:1px solid var(--line); padding-top:22px; }
  .fit-grid{ grid-template-columns:1fr; }
  .fit-col{ border-left:0; padding-left:0; }
  .fit-col.bad{ border-top:1px solid var(--line); padding-top:30px; }
  .acc-tile{ flex-basis:calc((100% - 24px) / 3); }   /* 3 per row */
}
@media (max-width:560px){
  .acc-tile{ flex-basis:calc((100% - 12px) / 2); }   /* 2 per row, centred */
  .spec{ padding:16px 0; }
  .why-tags li{ font-size:.75rem; }
  .segmented.tri{ flex-direction:column; }
  .segmented.tri button{ width:100%; }
}

/* ---------- legal page ---------- */
.legal{ max-width:44rem; }
.legal h1{ margin-bottom:1rem; }
.legal h2{ margin:2.2rem 0 .4rem; font-size:1.15rem; }
.legal p{ font-weight:300; color:var(--text); }

/* ============ final mobile polish ============ */
@media (max-width:560px){
  .spec-grid{ grid-template-columns:1fr; }
  .spec{ border-left:0; border-top:1px solid var(--line); padding:16px 0; }
  .spec:first-child{ border-top:0; padding-top:0; }
  .spec-v{ font-size:.95rem; }
  .hero-cta{ gap:16px; }
  .section-sub{ font-size:1rem; }
  .contact-list{ margin-top:1rem; }
}

/* hero CTAs on mobile: stack + centre so button and links line up, shop in the middle */
@media (max-width:640px){
  .hero-cta{ flex-direction:column; align-items:center; gap:16px; text-align:center; }
  .hero-cta > *{ justify-content:center; }
  .hero-cta a[href="shop.html"]{ order:2; }
  .hero-cta a[href="#services"]{ order:3; }
}

.eq-ship{ margin:.35rem 0 0; }

.field-label{ font-size:.78rem; font-weight:600; color:var(--muted); margin-bottom:-6px; }

/* ---------- thin shop banner + horizontal carousel ---------- */
.shop-banner{ background:var(--ink); color:#fff; }
.shop-banner-inner{ display:flex; align-items:center; justify-content:space-between; gap:28px; padding:22px 28px; flex-wrap:wrap; }
.shop-banner-text{ flex:1 1 260px; max-width:30rem; }
.shop-banner-text .eyebrow{ margin-bottom:.35rem; }
.shop-banner-text h2{ font-size:1.3rem; }
.shop-banner-text p{ color:#b9bac1; margin:.3rem 0 0; font-size:.9rem; font-weight:300; }
.shop-carousel{ flex:0 0 clamp(190px, 24vw, 290px); overflow:hidden; height:66px;
  -webkit-mask-image:linear-gradient(90deg,transparent,#000 12%,#000 88%,transparent);
          mask-image:linear-gradient(90deg,transparent,#000 12%,#000 88%,transparent); }
.shop-carousel .sc-track{ display:flex; gap:12px; width:max-content; animation:scrollX 30s linear infinite; }
.shop-carousel:hover .sc-track{ animation-play-state:paused; }
@keyframes scrollX{ from{ transform:translateX(0); } to{ transform:translateX(-50%); } }
.sc-tile{ width:92px; height:66px; border-radius:3px; flex:none; background-size:cover; background-position:center; }
.shop-banner .btn-light{ flex:0 0 auto; }
@media (max-width:640px){
  .shop-banner-inner{ flex-direction:column; align-items:flex-start; gap:18px; }
  .shop-carousel{ width:100%; flex-basis:auto; }
}

/* ---------- services CTA (folds in the old B2B band) ---------- */
.services-cta{ display:flex; align-items:center; justify-content:center; gap:14px; flex-wrap:wrap;
  margin-top:clamp(28px,4vw,40px); padding-top:26px; border-top:1px solid var(--line); text-align:center; }
.services-cta span{ font-weight:500; }

/* ---------- accuracy folded into the Why section ---------- */
.acc-wrap{ margin-top:clamp(26px,4vw,44px); }
.acc-head h3{ font-size:1.1rem; }

/* ---------- legal page: full-height layout + clause list ---------- */
.page-legal{ display:flex; flex-direction:column; min-height:100vh; }
.page-legal > .section{ flex:1 0 auto; }
.legal-list{ margin:1.2rem 0 0; padding-left:1.2rem; }
.legal-list li{ margin:0 0 1rem; font-weight:300; line-height:1.6; }
