/* ==========================================================================
   Global Printing — style.css
   Tokens
   ========================================================================== */
:root {
  --navy:   #0B2E4F;
  --navy-2: #123D66;
  --blue:   #1B6FE0;
  --blue-d: #1559B8;
  --ink:    #1A1A1A;
  --mute:   #5B6675;
  --paper:  #FFFFFF;
  --stone:  #F3F5F8;
  --line:   #DDE3EA;
  --cyan:   #00AEEF;
  --magenta:#EC008C;
  --yellow: #FFF100;
  --key:    #231F20;
  --radius: 10px;
  --shadow: 0 10px 30px rgba(11,46,79,.12);
  --font-h: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-b: "IBM Plex Sans", system-ui, sans-serif;
  --wrap: 1240px;
}
*,*::before,*::after { box-sizing:border-box; }
html { scroll-behavior:smooth; -webkit-text-size-adjust:100%; }
@media (prefers-reduced-motion:reduce){ html{scroll-behavior:auto} *{transition:none!important;animation:none!important} }
body { margin:0; font-family:var(--font-b); font-size:16px; line-height:1.6; color:var(--ink); background:var(--paper); }
img,svg { max-width:100%; display:block; }
a { color:var(--blue); text-decoration:none; }
a:hover { text-decoration:underline; }
h1,h2,h3,h4 { font-family:var(--font-h); line-height:1.15; margin:0 0 .5em; color:var(--navy); letter-spacing:-.01em; }
h1 { font-size:clamp(2rem,4.2vw,3.25rem); font-weight:800; }
h2 { font-size:clamp(1.6rem,3vw,2.25rem); font-weight:700; }
h3 { font-size:1.2rem; font-weight:700; }
p { margin:0 0 1em; }
ul { margin:0; padding:0; list-style:none; }
.container { width:min(var(--wrap), 100% - 2.5rem); margin-inline:auto; }
.section { padding:clamp(3rem,7vw,5.5rem) 0; }
.section--stone { background:var(--stone); }
.section__head { max-width:680px; margin-bottom:2.5rem; }
.section__head p { color:var(--mute); font-size:1.05rem; }
.skip-link { position:absolute; left:-999px; top:0; background:var(--blue); color:#fff; padding:.5rem 1rem; z-index:999; }
.skip-link:focus { left:1rem; top:1rem; }
:focus-visible { outline:3px solid var(--cyan); outline-offset:2px; }

/* CMYK rule — the one signature device */
.cmyk-rule { display:flex; height:6px; width:100%; }
.cmyk-rule span { flex:1; }
.cmyk-rule span:nth-child(1){background:var(--cyan)} .cmyk-rule span:nth-child(2){background:var(--magenta)}
.cmyk-rule span:nth-child(3){background:var(--yellow)} .cmyk-rule span:nth-child(4){background:var(--key)}

/* Buttons */
.btn { display:inline-flex; align-items:center; justify-content:center; gap:.5rem; font-family:var(--font-h); font-weight:700; font-size:.95rem; padding:.8rem 1.4rem; border-radius:8px; border:2px solid transparent; cursor:pointer; transition:background .15s, border-color .15s, color .15s; white-space:nowrap; }
.btn:hover { text-decoration:none; }
.btn--primary { background:var(--blue); color:#fff; }
.btn--primary:hover { background:var(--blue-d); }
.btn--outline { background:transparent; border-color:var(--blue); color:var(--blue); }
.btn--outline:hover { background:var(--blue); color:#fff; }
.btn--light { background:#fff; color:var(--navy); }
.btn--light:hover { background:var(--stone); }
.btn--ghost-light { background:transparent; border-color:rgba(255,255,255,.5); color:#fff; }
.btn--ghost-light:hover { border-color:#fff; }
.btn--block { width:100%; }
.btn--lg { padding:1rem 1.8rem; font-size:1.05rem; }

/* ==========================================================================
   Top bar + header
   ========================================================================== */
.topbar { background:var(--navy); color:rgba(255,255,255,.85); font-size:.85rem; }
.topbar__inner { display:flex; gap:2rem; justify-content:space-between; padding:.45rem 0; }
.topbar a { color:inherit; }
@media (max-width:820px){ .topbar__hours{display:none} }
@media (max-width:560px){ .topbar{display:none} }

.site-header { position:sticky; top:0; z-index:50; background:#fff; border-bottom:1px solid var(--line); }
.site-header .container, .topbar .container { width:min(1440px, 100% - 2.5rem); }
.site-header__inner { display:flex; align-items:center; gap:1.25rem; min-height:76px; }
.brand { display:flex; align-items:center; gap:.6rem; color:var(--navy); font-family:var(--font-h); font-size:1.35rem; font-weight:500; letter-spacing:-.02em; }
.brand:hover { text-decoration:none; }
.brand__mark { width:34px; height:34px; flex:none; }
.brand__text strong { font-weight:800; }
.brand--light { color:#fff; }

.nav { flex:1; min-width:0; }
.nav__list { display:flex; justify-content:center; gap:0; }
.nav__item { position:relative; }
.nav__item--mobile { display:none; }
.nav__link { display:flex; align-items:center; gap:.3rem; padding:1.55rem .6rem; font-family:var(--font-h); font-weight:600; font-size:.9rem; white-space:nowrap; color:var(--navy); border-bottom:3px solid transparent; }
.nav__link:hover, .nav__link.is-active { text-decoration:none; border-bottom-color:var(--blue); color:var(--blue); }
.nav__caret { width:11px; height:11px; }
.nav__toggle { display:none; }
.menu { position:absolute; top:100%; left:0; min-width:250px; background:#fff; border:1px solid var(--line); border-top:3px solid var(--blue); box-shadow:var(--shadow); padding:.5rem 0; display:none; z-index:60; }
.menu li a { display:block; padding:.5rem 1.1rem; color:var(--ink); font-size:.93rem; }
.menu li a:hover { background:var(--stone); color:var(--blue); text-decoration:none; }
.menu__all { border-top:1px solid var(--line); margin-top:.4rem; padding-top:.4rem; }
.menu__all a { color:var(--blue); font-weight:600; }
.menu--wide { min-width:540px; column-count:2; column-gap:0; }
.menu--wide li { break-inside:avoid; }
.menu--wide .menu__all { column-span:all; }
.nav__item:hover > .menu, .nav__item:focus-within > .menu, .nav__item.is-open > .menu { display:block; }

.site-header__actions { display:flex; align-items:center; gap:1rem; margin-left:auto; flex:none; }
.header-phone { display:flex; align-items:center; gap:.45rem; color:var(--navy); font-family:var(--font-h); font-weight:700; font-size:1rem; }
.header-phone svg { width:20px; height:20px; color:var(--blue); }
.burger { display:none; width:44px; height:44px; border:0; background:none; flex-direction:column; justify-content:center; gap:5px; cursor:pointer; }
.burger span { display:block; height:2px; background:var(--navy); border-radius:2px; transition:transform .2s, opacity .2s; }
.burger[aria-expanded="true"] span:nth-child(1){ transform:translateY(7px) rotate(45deg) }
.burger[aria-expanded="true"] span:nth-child(2){ opacity:0 }
.burger[aria-expanded="true"] span:nth-child(3){ transform:translateY(-7px) rotate(-45deg) }

.header-phone span { white-space:nowrap; }
@media (max-width:1700px){ .header-phone{display:none} }
@media (max-width:1440px){ .nav__link{padding-inline:.45rem;font-size:.84rem} .brand{font-size:1.2rem} .brand__mark{width:30px;height:30px} }
@media (max-width:1300px){
  .burger { display:flex; }
  .site-header__actions .btn { display:none; }
  .nav { position:fixed; inset:76px 0 0 0; background:#fff; overflow:auto; padding:1rem 1.25rem 6rem; transform:translateX(100%); transition:transform .25s; }
  body.nav-open .nav { transform:none; }
  body.nav-open { overflow:hidden; }
  .nav__list { flex-direction:column; gap:0; }
  .nav__item { border-bottom:1px solid var(--line); display:grid; grid-template-columns:1fr 48px; }
  .nav__link { padding:1rem 0; border:0; font-size:1.05rem; }
  .nav__link.is-active { color:var(--blue); }
  .nav__caret { display:none; }
  .nav__toggle { display:block; border:0; background:none; position:relative; cursor:pointer; }
  .nav__toggle::before { content:""; position:absolute; inset:0; margin:auto; width:10px; height:10px; border-right:2px solid var(--navy); border-bottom:2px solid var(--navy); transform:rotate(45deg); transition:transform .2s; }
  .nav__item.is-open .nav__toggle::before { transform:rotate(-135deg); }
  .menu { position:static; grid-column:1 / -1; display:none; box-shadow:none; border:0; border-top:0; padding:0 0 .75rem; min-width:0; }
  .menu--wide { column-count:1; }
  .nav__item.is-open .menu { display:block; }
  .nav__item--mobile { display:grid; }
  .nav__item--mobile a { grid-column:1 / -1; }
  .menu li a { padding:.5rem 0 .5rem 1rem; }
  .nav__item:hover > .menu { display:none; }
  .nav__item.is-open:hover > .menu { display:block; }
}

/* Mobile sticky actions */
.mobile-call, .mobile-quote { display:none; }
@media (max-width:1300px){
  .mobile-call, .mobile-quote { display:flex; align-items:center; justify-content:center; position:fixed; bottom:0; height:56px; z-index:45; font-family:var(--font-h); font-weight:700; font-size:1rem; border:0; cursor:pointer; }
  .mobile-call { left:0; width:38%; background:var(--navy); color:#fff; }
  .mobile-quote { right:0; width:62%; background:var(--blue); color:#fff; }
  .site-footer { padding-bottom:6rem; }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero { background:linear-gradient(180deg,#F7F9FC 0%, #fff 100%); border-bottom:1px solid var(--line); overflow:hidden; }
.hero__inner { display:grid; grid-template-columns:1.15fr .85fr; gap:3rem; align-items:center; padding:clamp(2.5rem,6vw,5rem) 0; }
.hero__kicker { color:var(--blue); font-family:var(--font-h); font-weight:700; margin-bottom:.75rem; }
.hero h1 { margin-bottom:1rem; }
.hero__lead { font-size:1.15rem; color:var(--mute); max-width:560px; }
.hero__points { display:grid; grid-template-columns:repeat(2,1fr); gap:.6rem 1.5rem; margin:1.5rem 0 2rem; max-width:560px; }
.hero__points li { display:flex; gap:.6rem; align-items:flex-start; font-weight:500; }
.hero__points li::before { content:""; flex:none; width:20px; height:20px; border-radius:50%; background:var(--blue) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M5 10.5l3.2 3L15 7' fill='none' stroke='%23fff' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/14px no-repeat; margin-top:2px; }
.hero__actions { display:flex; gap:.75rem; flex-wrap:wrap; }
.hero__store { margin-top:1.75rem; display:flex; align-items:center; gap:.75rem; color:var(--mute); font-size:.92rem; }
.hero__store svg { width:22px; height:22px; color:var(--magenta); flex:none; }
.hero__store a { color:var(--navy); font-weight:600; }

.quote-card { background:#fff; border:1px solid var(--line); border-radius:var(--radius); box-shadow:var(--shadow); overflow:hidden; }
.quote-card__body { padding:1.5rem; }
.quote-card h2 { font-size:1.35rem; margin-bottom:.25rem; }
.quote-card__sub { color:var(--mute); font-size:.92rem; margin-bottom:1.2rem; }
@media (max-width:920px){ .hero__inner{grid-template-columns:1fr} .hero__points{grid-template-columns:1fr} }

/* ==========================================================================
   Forms
   ========================================================================== */
.lead-form__row { display:grid; grid-template-columns:1fr 1fr; gap:.85rem; }
@media (max-width:520px){ .lead-form__row{grid-template-columns:1fr} }
.field { margin-bottom:.85rem; }
.field label { display:block; font-family:var(--font-h); font-weight:600; font-size:.85rem; margin-bottom:.3rem; color:var(--navy); }
.field__opt { font-weight:400; color:var(--mute); }
.field input, .field select, .field textarea { width:100%; font:inherit; font-size:.97rem; padding:.7rem .85rem; border:1.5px solid var(--line); border-radius:7px; background:#fff; color:var(--ink); transition:border-color .15s, box-shadow .15s; }
.field input:focus, .field select:focus, .field textarea:focus { outline:none; border-color:var(--blue); box-shadow:0 0 0 3px rgba(27,111,224,.15); }
.field input.is-invalid, .field select.is-invalid { border-color:var(--magenta); }
.field textarea { resize:vertical; min-height:70px; }
.lead-form__hp { position:absolute; left:-9999px; width:1px; height:1px; overflow:hidden; }
.lead-form__foot { margin-top:.35rem; }
.lead-form__note { font-size:.8rem; color:var(--mute); margin:.6rem 0 0; text-align:center; }
.lead-form__status { font-size:.92rem; margin-top:.75rem; padding:.7rem .9rem; border-radius:7px; display:none; }
.lead-form__status.is-error { display:block; background:#FCE8F1; color:#9C0B57; }
.lead-form__status.is-success { display:block; background:#E8F4EE; color:#1B6B3F; }
.lead-form.is-sending .btn { opacity:.7; pointer-events:none; }

/* ==========================================================================
   Category / product grids
   ========================================================================== */
.cat-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(270px,1fr)); gap:1.25rem; }
.cat-card { display:flex; flex-direction:column; background:#fff; border:1px solid var(--line); border-radius:var(--radius); padding:1.5rem; color:var(--ink); transition:border-color .15s, transform .15s; position:relative; }
.cat-card:hover { text-decoration:none; border-color:var(--blue); transform:translateY(-2px); }
.cat-card__icon { width:48px; height:48px; border-radius:10px; background:var(--stone); display:grid; place-items:center; margin-bottom:1rem; color:var(--navy); }
.cat-card__icon svg { width:26px; height:26px; }
.cat-card h3 { margin-bottom:.3rem; }
.cat-card p { color:var(--mute); font-size:.93rem; flex:1; }
.cat-card__count { font-family:var(--font-h); font-weight:600; font-size:.85rem; color:var(--blue); }

.prod-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(230px,1fr)); gap:1rem; }
.prod-card { display:block; background:#fff; border:1px solid var(--line); border-radius:var(--radius); padding:1.25rem 1.25rem 1.1rem; color:var(--ink); transition:border-color .15s; }
.prod-card:hover { text-decoration:none; border-color:var(--blue); }
.prod-card__cat { font-size:.78rem; color:var(--mute); margin-bottom:.35rem; }
.prod-card h3 { font-size:1.05rem; margin-bottom:.3rem; }
.prod-card p { color:var(--mute); font-size:.9rem; margin:0; }
.prod-card__link { margin-top:.6rem; font-family:var(--font-h); font-weight:600; font-size:.88rem; color:var(--blue); display:block; }

/* Product placeholder art: CMYK sheet */
.prod-art { height:110px; border-radius:8px; margin-bottom:1rem; background:linear-gradient(135deg,#EEF3F9,#F8FAFC); position:relative; overflow:hidden; border:1px solid var(--line); }
.prod-art::before { content:""; position:absolute; left:18%; top:22%; width:64%; height:78%; background:#fff; border-radius:4px 4px 0 0; box-shadow:0 4px 14px rgba(11,46,79,.12); }
.prod-art::after { content:""; position:absolute; left:18%; top:22%; width:64%; height:8px; border-radius:4px 4px 0 0; background:linear-gradient(90deg,var(--cyan) 0 25%,var(--magenta) 25% 50%,var(--yellow) 50% 75%,var(--key) 75%); }

/* ==========================================================================
   Home sections
   ========================================================================== */
.steps { display:grid; grid-template-columns:repeat(4,1fr); gap:1.5rem; counter-reset:step; }
.step { position:relative; padding-top:.5rem; }
.step::before { counter-increment:step; content:counter(step); display:grid; place-items:center; width:40px; height:40px; border-radius:50%; background:var(--navy); color:#fff; font-family:var(--font-h); font-weight:800; margin-bottom:1rem; }
.step h3 { font-size:1.1rem; }
.step p { color:var(--mute); font-size:.95rem; margin:0; }
@media (max-width:820px){ .steps{grid-template-columns:repeat(2,1fr)} }
@media (max-width:480px){ .steps{grid-template-columns:1fr} }

.local { display:grid; grid-template-columns:1fr 1fr; gap:3rem; align-items:center; }
.local__map { border-radius:var(--radius); overflow:hidden; border:1px solid var(--line); min-height:320px; background:var(--stone); }
.local__map iframe { width:100%; height:100%; min-height:320px; border:0; display:block; }
.local ul { display:grid; gap:.8rem; margin:1.25rem 0; }
.local li { display:grid; grid-template-columns:24px 1fr; gap:.75rem; align-items:start; }
.local li svg { width:22px; height:22px; color:var(--blue); margin-top:2px; }
.local li strong { display:block; font-family:var(--font-h); color:var(--navy); }
@media (max-width:820px){ .local{grid-template-columns:1fr} }

.reasons { display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem; }
.reason { padding:1.6rem; border-radius:var(--radius); background:#fff; border:1px solid var(--line); }
.reason svg { width:30px; height:30px; color:var(--blue); margin-bottom:.9rem; }
.reason h3 { font-size:1.1rem; }
.reason p { color:var(--mute); font-size:.95rem; margin:0; }
@media (max-width:820px){ .reasons{grid-template-columns:1fr} }

.faq { max-width:820px; }
.faq details { border-bottom:1px solid var(--line); }
.faq summary { cursor:pointer; list-style:none; padding:1.1rem 2.2rem 1.1rem 0; font-family:var(--font-h); font-weight:700; color:var(--navy); position:relative; }
.faq summary::-webkit-details-marker { display:none; }
.faq summary::after { content:"+"; position:absolute; right:0; top:.95rem; font-size:1.4rem; color:var(--blue); font-weight:400; }
.faq details[open] summary::after { content:"–"; }
.faq details p { color:var(--mute); padding-bottom:1.1rem; margin:0; max-width:70ch; }

/* ==========================================================================
   Page header / breadcrumb
   ========================================================================== */
.page-head { background:var(--stone); border-bottom:1px solid var(--line); padding:2.25rem 0 2.5rem; }
.page-head h1 { margin-bottom:.4rem; }
.page-head p { color:var(--mute); font-size:1.08rem; max-width:720px; margin:0; }
.crumbs { display:flex; flex-wrap:wrap; gap:.4rem; font-size:.85rem; color:var(--mute); margin-bottom:1rem; }
.crumbs a { color:var(--mute); }
.crumbs li + li::before { content:"›"; margin-right:.4rem; }
.crumbs li:last-child { color:var(--navy); font-weight:600; }

/* ==========================================================================
   Service page
   ========================================================================== */
.service { display:grid; grid-template-columns:1fr 400px; gap:3rem; align-items:start; padding:clamp(2.5rem,5vw,4rem) 0; }
.service__main h2 { font-size:1.45rem; margin-top:2.25rem; }
.service__main > h2:first-child { margin-top:0; }
.service__intro { font-size:1.08rem; }
.service__lists { display:grid; grid-template-columns:1fr 1fr; gap:1.5rem; margin:1.75rem 0; }
.service__list { background:var(--stone); border-radius:var(--radius); padding:1.25rem 1.4rem; }
.service__list h3 { font-size:1rem; margin-bottom:.6rem; }
.service__list li { padding:.3rem 0 .3rem 1.4rem; position:relative; font-size:.95rem; }
.service__list li::before { content:""; position:absolute; left:0; top:.75rem; width:8px; height:8px; border-radius:50%; background:var(--blue); }
.service__aside { position:sticky; top:96px; }
.service__aside .quote-card { margin-bottom:1.25rem; }
.service__contact { border:1px solid var(--line); border-radius:var(--radius); padding:1.25rem 1.4rem; font-size:.95rem; }
.service__contact strong { display:block; font-family:var(--font-h); color:var(--navy); margin-bottom:.4rem; }
.service__contact a { display:block; color:var(--navy); }
.related { padding-bottom:clamp(3rem,6vw,5rem); }
.related h2 { font-size:1.4rem; margin-bottom:1.25rem; }
@media (max-width:980px){ .service{grid-template-columns:1fr} .service__aside{position:static} }
@media (max-width:560px){ .service__lists{grid-template-columns:1fr} }

/* Category page */
.cat-page { padding:clamp(2.5rem,5vw,4rem) 0; }
.cat-page__inner { display:grid; grid-template-columns:1fr 340px; gap:3rem; align-items:start; }
.cat-page__aside { position:sticky; top:96px; }
@media (max-width:980px){ .cat-page__inner{grid-template-columns:1fr} .cat-page__aside{position:static} }

/* All services page: grouped */
.group { padding:2.5rem 0; border-bottom:1px solid var(--line); }
.group:last-of-type { border-bottom:0; }
.group__head { display:flex; justify-content:space-between; align-items:baseline; gap:1rem; margin-bottom:1.25rem; }
.group__head h2 { margin:0; }
.group__head a { font-family:var(--font-h); font-weight:600; font-size:.92rem; }
.chip-list { display:flex; flex-wrap:wrap; gap:.5rem; }
.chip { display:inline-block; padding:.5rem .95rem; border:1px solid var(--line); border-radius:999px; color:var(--navy); font-size:.92rem; font-weight:500; background:#fff; }
.chip:hover { border-color:var(--blue); color:var(--blue); text-decoration:none; }

/* Contact page */
.contact { display:grid; grid-template-columns:1fr 1fr; gap:3rem; padding:clamp(2.5rem,5vw,4rem) 0; align-items:start; }
.contact__info ul { display:grid; gap:1rem; margin:1.5rem 0; }
.contact__info li { display:grid; grid-template-columns:26px 1fr; gap:.8rem; }
.contact__info li svg { width:24px; height:24px; color:var(--blue); }
.contact__info strong { display:block; font-family:var(--font-h); color:var(--navy); }
.contact__map { border-radius:var(--radius); overflow:hidden; border:1px solid var(--line); margin-top:1.5rem; }
.contact__map iframe { width:100%; height:300px; border:0; display:block; }
.alert { padding:.9rem 1.1rem; border-radius:8px; margin-bottom:1.25rem; }
.alert--error { background:#FCE8F1; color:#9C0B57; }
@media (max-width:860px){ .contact{grid-template-columns:1fr} }

/* Prose pages (about, privacy, terms, thank you) */
.prose { max-width:760px; padding:clamp(2.5rem,5vw,4rem) 0; }
.prose h2 { font-size:1.4rem; margin-top:2rem; }
.prose ul { list-style:disc; padding-left:1.4rem; margin-bottom:1em; }
.prose li { margin-bottom:.35rem; }
.thanks { text-align:center; padding:clamp(4rem,8vw,7rem) 0; max-width:640px; margin-inline:auto; }
.thanks__check { width:72px; height:72px; border-radius:50%; background:#E8F4EE; display:grid; place-items:center; margin:0 auto 1.5rem; }
.thanks__check svg { width:36px; height:36px; }
.thanks p { color:var(--mute); font-size:1.1rem; }
.thanks .btn { margin-top:1rem; }

/* ==========================================================================
   CTA band + footer
   ========================================================================== */
.cta-band { background:var(--navy); color:#fff; }
.cta-band__inner { display:flex; justify-content:space-between; align-items:center; gap:2rem; padding:3rem 0; flex-wrap:wrap; }
.cta-band h2 { color:#fff; margin-bottom:.3rem; }
.cta-band p { margin:0; color:rgba(255,255,255,.8); }
.cta-band__actions { display:flex; gap:.75rem; flex-wrap:wrap; }

.site-footer { background:#08223B; color:rgba(255,255,255,.78); font-size:.92rem; }
.site-footer__grid { display:grid; grid-template-columns:1.6fr 1fr 1fr 1fr; gap:2.5rem; padding:3.5rem 0 2.5rem; }
.site-footer a { color:rgba(255,255,255,.78); }
.site-footer a:hover { color:#fff; }
.site-footer h3 { color:#fff; font-size:.95rem; margin:1.4rem 0 .6rem; }
.site-footer h3:first-child { margin-top:0; }
.site-footer h3 a { color:#fff; }
.site-footer li { margin-bottom:.35rem; }
.site-footer__about p { max-width:38ch; margin-top:1rem; }
.site-footer address { font-style:normal; line-height:1.7; }
.site-footer__hours { font-size:.85rem; color:rgba(255,255,255,.6); }
.site-footer__bottom { display:flex; justify-content:space-between; gap:1rem; flex-wrap:wrap; padding:1.25rem 0; border-top:1px solid rgba(255,255,255,.12); font-size:.82rem; color:rgba(255,255,255,.55); }
@media (max-width:900px){ .site-footer__grid{grid-template-columns:1fr 1fr} }
@media (max-width:540px){ .site-footer__grid{grid-template-columns:1fr} }

/* ==========================================================================
   Modal
   ========================================================================== */
.modal { position:fixed; inset:0; z-index:100; display:grid; place-items:center; padding:1rem; }
.modal[hidden] { display:none; }
.modal__backdrop { position:absolute; inset:0; background:rgba(8,34,59,.6); }
.modal__panel { position:relative; background:#fff; border-radius:var(--radius); width:min(640px,100%); max-height:92vh; overflow:auto; padding:2rem; box-shadow:var(--shadow); }
.modal__panel h2 { font-size:1.5rem; margin-bottom:.25rem; padding-right:2rem; }
.modal__sub { color:var(--mute); font-size:.95rem; margin-bottom:1.25rem; }
.modal__close { position:absolute; top:.75rem; right:.75rem; width:40px; height:40px; border:0; background:var(--stone); border-radius:50%; font-size:1.5rem; cursor:pointer; color:var(--navy); }
@media (max-width:520px){ .modal__panel{padding:1.5rem 1.15rem} }

/* ==========================================================================
   Product images
   ========================================================================== */
.prod-art--img { background:#fff; display:grid; place-items:center; padding:.5rem; height:170px; }
.prod-art--img::before, .prod-art--img::after { display:none; }
.prod-art--img img { max-height:100%; width:auto; object-fit:contain; }
.prod-grid--compact { grid-template-columns:repeat(auto-fill,minmax(200px,1fr)); }
.cat-card__img { height:150px; border-radius:8px; overflow:hidden; background:var(--stone); margin-bottom:1rem; display:grid; place-items:center; }
.cat-card__img img { width:100%; height:100%; object-fit:cover; }
.cat-card__img + .cat-card__icon { display:none; }
.page-head__row { display:grid; grid-template-columns:1fr auto; gap:2rem; align-items:center; }
.page-head__img { width:260px; height:170px; border-radius:var(--radius); overflow:hidden; background:#fff; border:1px solid var(--line); }
.page-head__img img { width:100%; height:100%; object-fit:cover; }
@media (max-width:760px){ .page-head__row{grid-template-columns:1fr} .page-head__img{width:100%;height:200px} }
.service__hero { margin:0 0 1.75rem; border-radius:var(--radius); overflow:hidden; border:1px solid var(--line); background:#fff; }
.service__hero img { width:100%; max-height:420px; object-fit:cover; display:block; }

/* Process */
.process__steps { list-style:none; margin:0; padding:0; display:grid; grid-template-columns:repeat(5,1fr); gap:1.25rem; counter-reset:proc; position:relative; }
.process__steps::before { content:""; position:absolute; left:8%; right:8%; top:28px; height:2px; background:var(--line); }
.process__step { position:relative; padding:0 .25rem; }
.process__icon { counter-increment:proc; position:relative; width:56px; height:56px; border-radius:50%; background:#fff; border:2px solid var(--blue); color:var(--blue); display:grid; place-items:center; margin-bottom:1.1rem; }
.process__icon svg { width:26px; height:26px; }
.process__icon::after { content:counter(proc); position:absolute; top:-8px; right:-8px; width:22px; height:22px; border-radius:50%; background:var(--navy); color:#fff; font:700 .72rem/22px var(--font-h); text-align:center; }
.process__step h3 { font-size:1.05rem; }
.process__step p { color:var(--mute); font-size:.92rem; margin:0; }
@media (max-width:1000px){ .process__steps{grid-template-columns:repeat(3,1fr)} .process__steps::before{display:none} }
@media (max-width:600px){ .process__steps{grid-template-columns:1fr; gap:1.75rem} }

/* SEO long-form service pages */
.spec-table { width:100%; border-collapse:collapse; margin:0 0 1.5rem; font-size:.95rem; }
.spec-table th, .spec-table td { text-align:left; padding:.65rem .9rem; border-bottom:1px solid var(--line); vertical-align:top; }
.spec-table th { width:32%; font-family:var(--font-h); font-weight:600; color:var(--navy); background:var(--stone); }
.use-grid { display:grid; grid-template-columns:1fr 1fr; gap:1rem; margin:1rem 0 .5rem; }
.use-card { border:1px solid var(--line); border-radius:var(--radius); padding:1.1rem 1.2rem; }
.use-card h3 { font-size:1rem; margin-bottom:.35rem; }
.use-card p { font-size:.93rem; color:var(--mute); margin:0; }
@media (max-width:600px){ .use-grid{grid-template-columns:1fr} .spec-table th{width:40%} }
.tip-list li { position:relative; padding:.35rem 0 .35rem 1.6rem; }
.tip-list li::before { content:""; position:absolute; left:0; top:.8rem; width:9px; height:9px; border-radius:50%; background:var(--blue); }
.service__main .faq { max-width:none; }
.service__main h2 { margin-top:2.25rem; }
