/* ═══════════════════════════════════════════════════════
   LINK PLUS — PREMIUM v8
   Ground-up redesign. Click Design Studio DNA.
   Cormorant Garamond · Glassmorphism · Mesh gradients
   Mobile-optimized: backdrop-filter/blur/particles scale
   down or disable on small screens (major GPU cost there).
   ═══════════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,600&family=Big+Shoulders+Display:wght@700;800;900&family=IBM+Plex+Sans:wght@400;500;600;700&family=IBM+Plex+Mono:wght@400;500;600&display=swap');

:root {
  --ink:       #0A0C0F;
  --ink-1:     #131720;
  --ink-2:     #1C2130;
  --ink-3:     #252B3A;
  --steel:     #5C6475;
  --steel-lt:  #8E96A4;
  --paper:     #F4F0E8;
  --paper-dim: #EAE5D8;
  --white:     #FFFFFF;
  --line:      rgba(13,15,19,.09);
  --line-dk:   rgba(244,240,232,.08);

  --red:       #C8192C;
  --red-deep:  #8A0F1C;
  --red-hi:    #E0202F;
  --red-glow:  rgba(200,25,44,.09);

  --gold:      #C9A84C;
  --gold-lt:   #E2C47E;
  --gold-dim:  rgba(201,168,76,.10);

  --green:     #25D366;
  --green-glow:rgba(37,168,105,.10);

  --blue:      #1E6FE0;
  --blue-lt:   #5B9BFF;
  --blue-glow: rgba(30,111,224,.10);

  --teal:      #0E8C82;
  --teal-lt:   #3DC4B8;
  --teal-glow: rgba(14,140,130,.10);

  --amber:     #D97F23;
  --amber-lt:  #F2A954;
  --amber-glow:rgba(217,127,35,.10);

  /* Category accent — defaults to red, overridden per category page below.
     Drives product-card top bar, image backdrop tint, index badge,
     specs-button border, and hover glow — a systematic "category color"
     identity, while primary CTAs (red buttons, green WhatsApp) stay fixed
     for brand consistency. */
  --accent:      var(--red);
  --accent-glow: var(--red-glow);

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-d:     'Big Shoulders Display', sans-serif;
  --font-b:     'IBM Plex Sans', sans-serif;
  --font-m:     'IBM Plex Mono', monospace;

  --max: 1240px;
  --r1:2px; --r2:8px; --r3:14px; --r4:22px;
  --sh1: 0 1px 4px rgba(13,15,19,.08), 0 6px 20px -4px rgba(13,15,19,.15);
  --sh2: 0 4px 8px rgba(13,15,19,.06), 0 16px 44px -12px rgba(13,15,19,.26);
  --sh3: 0 8px 16px rgba(13,15,19,.05), 0 32px 72px -16px rgba(13,15,19,.40);
  --sh-red: 0 8px 32px -6px rgba(200,25,44,.48);
  --ease: cubic-bezier(.22,.68,0,1.2);
  --ease-in: cubic-bezier(.4,0,1,1);
  --ease-out: cubic-bezier(0,0,.2,1);
  --glass-bg: rgba(14,17,22,.72);
  --glass-border: rgba(255,255,255,.11);
}

*, *::before, *::after { box-sizing:border-box; }
html { scroll-behavior:smooth; }
body {
  margin:0; font-family:var(--font-b); color:var(--ink); background:var(--paper); font-size:16px; line-height:1.65; -webkit-font-smoothing:antialiased; overflow-x:hidden;
  animation:pageFadeIn .55s ease both;
}
@keyframes pageFadeIn {
  from { opacity:0; transform:translateY(10px); }
  to   { opacity:1; transform:translateY(0); }
}

/* Native smooth cross-page transitions (Chrome/Edge; other browsers
   simply ignore this and navigate normally — no risk, no dependency) */
@view-transition { navigation: auto; }
::view-transition-old(root) { animation: viewFadeOut .28s ease both; }
::view-transition-new(root) { animation: viewFadeIn .32s ease both; }
@keyframes viewFadeOut { to { opacity:0; } }
@keyframes viewFadeIn  { from { opacity:0; } }
img { max-width:100%; display:block; }
a { color:inherit; text-decoration:none; }
ul { margin:0; padding:0; list-style:none; }
button { font-family:inherit; cursor:pointer; border:none; background:none; padding:0; }
h1,h2,h3,h4 { margin:0; }
:focus-visible { outline:2px solid var(--gold); outline-offset:3px; }
@media (prefers-reduced-motion:reduce) { *, *::before, *::after { animation-duration:.001ms !important; transition-duration:.001ms !important; scroll-behavior:auto !important; } }

/* Per-category color identity — matches the homepage category-grid
   hover colors, so the same 4-color system carries through consistently. */
body.cat-hook-latch      { --accent:var(--red);   --accent-glow:var(--red-glow); }
body.cat-roller-latch    { --accent:var(--blue);  --accent-glow:var(--blue-glow); }
body.cat-remote-kit      { --accent:var(--amber); --accent-glow:var(--amber-glow); }
body.cat-wifi-remote-kit { --accent:var(--teal);  --accent-glow:var(--teal-glow); }
body.cat-power-supply    { --accent:var(--blue);  --accent-glow:var(--blue-glow); }
body.cat-accessories     { --accent:var(--amber); --accent-glow:var(--amber-glow); }

.gsap-line, .clip-line { overflow:hidden; display:block; }
.gsap-line > span, .clip-line > span { display:block; will-change:transform; }

.container, .wrap { max-width:var(--max); margin:0 auto; padding:0 36px; }
.section { padding:120px 0; }
.section--dark { background:var(--ink); color:var(--paper); }
.section--mid  { background:var(--ink-1); color:var(--paper); }
.section--alt  {
  background:var(--paper-dim);
  position:relative; overflow:hidden;
}
.section--alt::before {
  content:''; position:absolute; top:-10%; right:-8%; width:480px; height:480px;
  background:radial-gradient(circle, rgba(30,111,224,.07) 0%, transparent 70%);
  pointer-events:none; z-index:0;
}
.section--alt::after {
  content:''; position:absolute; bottom:-15%; left:-10%; width:420px; height:420px;
  background:radial-gradient(circle, rgba(217,127,35,.06) 0%, transparent 70%);
  pointer-events:none; z-index:0;
}
.section--alt > .wrap { position:relative; z-index:1; }
.section-head  { max-width:640px; margin-bottom:64px; }
.section-head h2 { font-family:var(--font-d); font-weight:900; font-size:clamp(30px,4vw,50px); text-transform:uppercase; margin-bottom:16px; line-height:1.0; }
.section-head p  { color:var(--steel); font-size:16.5px; line-height:1.76; }
.section--dark .section-head p { color:var(--steel-lt); }

/* ── Eyebrow ── */
.eyebrow, .label {
  display:inline-flex; align-items:center; gap:8px;
  background:var(--red-glow); border:1px solid rgba(200,25,44,.16);
  color:var(--red); padding:5px 14px 5px 10px; border-radius:100px;
  font-family:var(--font-m); font-size:11px; font-weight:600;
  letter-spacing:.14em; text-transform:uppercase; margin-bottom:20px;
}
.eyebrow::before, .label::before { content:''; width:5px; height:5px; border-radius:50%; background:currentColor; flex:none; }
.section--dark .eyebrow, .section--dark .label { background:var(--gold-dim); border-color:rgba(182,136,64,.22); color:var(--gold-lt); }
.label--light { color:var(--red); background:var(--red-glow); border-color:rgba(200,25,44,.16); }
.label--blue { color:var(--blue-lt); background:var(--blue-glow); border-color:rgba(30,111,224,.2); }

/* ── Buttons ── */
.btn {
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  font-family:var(--font-b); font-weight:600; font-size:13.5px; letter-spacing:.02em;
  padding:13px 26px; border-radius:var(--r1); border:1.5px solid transparent;
  transition:all .24s var(--ease); white-space:nowrap;
}
.btn:active { transform:scale(.98); }
.btn--red, .btn--primary { background:var(--red); color:#fff; border-color:var(--red); position:relative; overflow:hidden; }
.btn--red:hover, .btn--primary:hover { background:var(--red-hi); border-color:var(--red-hi); box-shadow:var(--sh-red); transform:translateY(-2px); }
.btn--primary::before {
  content:''; position:absolute; inset:0; pointer-events:none;
  background:linear-gradient(105deg, transparent 40%, rgba(255,255,255,.22) 50%, transparent 60%);
  transform:translateX(-120%);
}
.btn--primary:hover::before { transform:translateX(120%); transition:transform .55s ease; }
.btn-ripple { position:absolute; border-radius:50%; background:rgba(255,255,255,.22); transform:scale(0); pointer-events:none; animation:ripple .6s ease-out both; }
@keyframes ripple { to { transform:scale(4); opacity:0; } }

.btn--dark, .btn--outline  { border-color:rgba(255,255,255,.22); color:rgba(255,255,255,.88); }
.btn--dark:hover, .btn--outline:hover { border-color:var(--gold-lt); color:var(--gold-lt); }
.btn--light, .btn--outline-dark { border-color:rgba(13,15,19,.18); color:var(--ink); }
.btn--light:hover { border-color:var(--red); color:var(--red); }
.btn--outline-dark:hover { border-color:var(--blue); color:var(--blue); }
.btn--sm  { padding:9px 18px; font-size:12.5px; }
.btn--lg  { padding:16px 36px; font-size:14px; letter-spacing:.06em; }
.btn--block { width:100%; justify-content:center; }
svg.btn-icon { flex:none; transition:transform .22s var(--ease); }
.btn:hover svg.btn-icon { transform:translateX(4px); }

/* ── Topbar ── */
.topbar { background:var(--ink); color:var(--steel-lt); font-family:var(--font-m); font-size:11.5px; border-bottom:1px solid var(--ink-3); }
.topbar .wrap { display:flex; align-items:center; justify-content:space-between; height:36px; }
.topbar__left { display:flex; gap:20px; }
.topbar__left span, .topbar__left a, .topbar .wrap > a { display:flex; align-items:center; gap:5px; color:var(--steel-lt); transition:color .15s; }
.topbar__left a:hover, .topbar .wrap > a:hover { color:var(--gold-lt); }
@media (max-width:768px) { .topbar { display:none; } }

/* ══════════════════════════════════════════════
   NAV — glass on scroll (desktop only — backdrop-filter
   is one of the heaviest GPU costs on mobile, so mobile
   gets a solid near-opaque background instead)
   ══════════════════════════════════════════════ */
.nav {
  position:sticky; top:0; z-index:100;
  background:rgba(255,255,255,.98);
  border-bottom:1px solid var(--line);
  transition:background .3s, box-shadow .3s;
}
.nav.scrolled {
  background:rgba(255,255,255,.94);
  box-shadow:0 4px 32px -8px rgba(10,12,15,.22);
}
@media (min-width:769px) {
  .nav.scrolled { backdrop-filter:blur(28px) saturate(1.4); -webkit-backdrop-filter:blur(28px) saturate(1.4); background:rgba(255,255,255,.85); }
}
.nav .wrap { display:grid; grid-template-columns:1fr auto 1fr; align-items:center; height:72px; gap:16px; }
.nav__left  { display:flex; align-items:center; gap:4px; }
.nav__right { display:flex; align-items:center; gap:10px; justify-content:flex-end; }
.brand { display:flex; align-items:center; justify-content:center; }
.brand img { height:52px; width:auto; }

.navlinks { display:flex; align-items:center; gap:2px; }
.navlinks > li { position:relative; }
.navlinks > li > a {
  display:flex; align-items:center; gap:5px;
  padding:8px 14px; font-weight:600; font-size:13.5px; color:var(--ink);
  border-radius:var(--r1); transition:color .14s, background .14s;
}
.navlinks > li > a:hover, .navlinks > li > a[aria-current="page"] { color:var(--red); }
.navlinks > li > a[aria-current="page"] { background:var(--red-glow); }
.has-drop > a::after { content:''; border:4px solid transparent; border-top-color:currentColor; opacity:.4; margin-top:3px; transition:transform .2s; }
.has-drop.is-open > a::after { transform:rotate(180deg); opacity:.7; }

.dropdown { position:absolute; top:calc(100% + 8px); left:50%; transform:translate(-50%,10px); background:var(--white); border:1px solid var(--line); border-radius:var(--r3); box-shadow:var(--sh3); min-width:290px; padding:8px; opacity:0; visibility:hidden; transition:opacity .18s, transform .18s, visibility .18s; }
.has-drop:hover .dropdown, .has-drop.is-open .dropdown { opacity:1; visibility:visible; transform:translate(-50%,0); }
.dropdown a { display:flex; align-items:center; justify-content:space-between; padding:10px 14px; border-radius:var(--r1); font-size:13.5px; font-weight:500; transition:background .12s, color .12s; }
.dropdown a:hover { background:var(--paper); color:var(--red); }
.dropdown a span { font-family:var(--font-m); font-size:10.5px; color:var(--steel-lt); }

.burger, .nav__burger { display:none; width:40px; height:40px; flex-direction:column; align-items:center; justify-content:center; gap:5.5px; flex:none; }
.burger span, .nav__burger span { display:block; width:18px; height:1.5px; background:var(--ink); transition:all .2s; }
@media (max-width:960px) {
  .navlinks { display:none; }
  .burger, .nav__burger { display:flex; }
  .brand img { height:44px; }
  /* Group hamburger + logo together on the left, CTA pinned right —
     avoids the burger sitting isolated far from the logo with a big gap. */
  .nav .wrap { grid-template-columns:auto auto 1fr; gap:14px; }
  .brand { justify-content:flex-start; }
}

.mobilemenu { position:fixed; top:0; right:0; bottom:0; width:300px; max-width:88vw; background:var(--ink); color:var(--paper); z-index:200; transform:translateX(100%); transition:transform .3s cubic-bezier(.4,0,.2,1); padding:22px; overflow-y:auto; display:flex; flex-direction:column; }
.mobilemenu.open { transform:translateX(0); }
.mobilemenu__close { color:var(--paper); font-size:22px; align-self:flex-end; margin-bottom:16px; }
.mobilemenu a { display:block; padding:13px 0; font-weight:600; font-size:16px; border-bottom:1px solid var(--line-dk); color:var(--paper); }
.mobilemenu a:hover { color:var(--gold-lt); }
.mob-group span { font-family:var(--font-m); font-size:10.5px; letter-spacing:.12em; color:var(--gold-lt); text-transform:uppercase; padding-top:16px; display:block; margin-bottom:4px; }
.mob-group a { padding:9px 0 9px 14px; font-size:14px; font-weight:500; border-bottom:none; color:var(--steel-lt); }
.scrim { position:fixed; inset:0; background:rgba(13,15,19,.58); opacity:0; visibility:hidden; transition:.25s; z-index:190; }
.scrim.open { opacity:1; visibility:visible; }

/* ══════════════════════════════════════════════
   HERO — editorial grid, mesh blobs, particles
   ══════════════════════════════════════════════ */
.hero {
  min-height:100vh; background:var(--ink); position:relative; overflow:hidden;
  display:flex; flex-direction:column;
}
#hero-canvas { position:absolute; inset:0; z-index:0; opacity:.65; pointer-events:none; }
.hero::after {
  content:''; position:absolute; inset:0; z-index:0; pointer-events:none;
  background:
    radial-gradient(ellipse 60% 70% at 85% 30%, rgba(200,25,44,.11) 0%, transparent 60%),
    radial-gradient(ellipse 55% 65% at 75% 75%, rgba(30,111,224,.09) 0%, transparent 60%);
}
.hero::before {
  content:''; position:absolute; inset:0; z-index:1; pointer-events:none;
  opacity:.028; mix-blend-mode:overlay;
  background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size:200px 200px;
}

/* Mesh gradient blobs — blur() is one of the heaviest GPU filters on
   mobile, so radius+size shrink drastically under 768px */
.hero-mesh { position:absolute; inset:0; z-index:0; overflow:hidden; pointer-events:none; }
.hero-mesh__blob { position:absolute; border-radius:50%; will-change:transform; filter:blur(80px); }
.hero-mesh__blob:nth-child(1) { width:600px; height:600px; top:-10%; left:-8%; background:radial-gradient(circle, rgba(200,25,44,.18) 0%, transparent 70%); animation:blobFloat1 14s ease-in-out infinite; }
.hero-mesh__blob:nth-child(2) { width:500px; height:500px; top:20%; right:-5%; background:radial-gradient(circle, rgba(30,111,224,.15) 0%, transparent 70%); animation:blobFloat2 18s ease-in-out infinite; }
.hero-mesh__blob:nth-child(3) { width:400px; height:400px; bottom:-5%; left:35%; background:radial-gradient(circle, rgba(201,168,76,.10) 0%, transparent 70%); animation:blobFloat3 22s ease-in-out infinite; }
@media (max-width:768px) {
  .hero-mesh__blob { filter:blur(36px); }
  .hero-mesh__blob:nth-child(1) { width:340px; height:340px; }
  .hero-mesh__blob:nth-child(2) { width:280px; height:280px; }
  .hero-mesh__blob:nth-child(3) { width:240px; height:240px; }
}
@keyframes blobFloat1 { 0%,100% { transform:translate(0,0) scale(1); } 33% { transform:translate(60px,-40px) scale(1.08); } 66% { transform:translate(-30px,50px) scale(.95); } }
@keyframes blobFloat2 { 0%,100% { transform:translate(0,0) scale(1); } 40% { transform:translate(-50px,30px) scale(1.1); } 70% { transform:translate(40px,-20px) scale(.92); } }
@keyframes blobFloat3 { 0%,100% { transform:translate(0,0) scale(1); } 50% { transform:translate(30px,-60px) scale(1.12); } }

.hero__body { flex:1; display:flex; align-items:center; position:relative; z-index:3; color:var(--paper); padding:clamp(96px,14vh,160px) 0 0; }
.hero__grid { display:grid; grid-template-columns:minmax(0,1.15fr) minmax(0,.85fr); gap:clamp(24px,4vw,64px); align-items:center; width:100%; }
.hero__inner { min-width:0; }

.hero__pill, .hero__badge {
  display:inline-flex; align-items:center; gap:10px;
  background:var(--gold-dim); border:1px solid rgba(201,168,76,.20);
  color:var(--gold-lt); padding:6px 16px; border-radius:100px;
  font-family:var(--font-m); font-size:11px; letter-spacing:.14em; text-transform:uppercase;
  margin-bottom:30px; white-space:nowrap;
}
.hero__pill::before, .hero__badge::before { content:''; width:5px; height:5px; border-radius:50%; background:var(--gold); flex:none; }

.hero h1 { color:var(--paper); margin-bottom:26px; }
.h1-line1 { font-family:var(--font-serif); font-weight:400; font-size:clamp(40px,5.6vw,84px); letter-spacing:-.01em; line-height:.98; display:block; }
.h1-line2 { font-family:var(--font-serif); font-weight:300; font-style:italic; font-size:clamp(40px,5.6vw,84px); letter-spacing:-.01em; line-height:.98; display:block; color:var(--blue-lt); }
.h1-line3 { font-family:var(--font-d); font-weight:900; font-size:clamp(36px,5vw,74px); letter-spacing:.03em; line-height:1.04; display:block; text-transform:uppercase; }

.hero__sub { color:var(--steel-lt); font-size:clamp(15px,1.3vw,17px); max-width:46ch; margin-bottom:38px; line-height:1.76; }
.hero__btns, .hero__cta { display:flex; gap:14px; flex-wrap:wrap; margin-bottom:56px; }

.hero__statsbar { border-top:1px solid var(--line-dk); padding:28px 0; position:relative; z-index:3; background:linear-gradient(to top, rgba(10,12,15,.5), transparent); }
.hero__statsbar .wrap { display:grid; grid-template-columns:repeat(4,1fr); gap:0; }
.hero__stat b { font-family:var(--font-serif); font-weight:500; font-size:clamp(28px,3vw,44px); color:var(--gold-lt); display:block; line-height:1; }
.hero__stat small { font-family:var(--font-m); font-size:10.5px; color:var(--steel-lt); letter-spacing:.04em; display:block; margin-top:5px; }

/* Floating glass cards — desktop only (blur is expensive + mobile hides these anyway) */
.hero__visual, .hero__cards, .hero__right { position:relative; min-width:0; display:flex; flex-direction:column; gap:12px; align-items:flex-end; }
.hcard {
  background:var(--glass-bg);
  border:1px solid rgba(255,255,255,.14);
  border-radius:var(--r3); overflow:hidden; box-shadow:var(--sh3);
  transition:box-shadow .3s ease, border-color .3s ease;
  transform-style:preserve-3d; will-change:transform; width:100%;
}
@media (min-width:769px) {
  .hcard { backdrop-filter:blur(28px) saturate(1.2); -webkit-backdrop-filter:blur(28px) saturate(1.2); }
}
.hcard:hover { border-color:rgba(255,255,255,.22); }
.hcard--feat { max-width:340px; position:relative; overflow:hidden; }
.hcard--feat::after { content:''; position:absolute; inset:0; pointer-events:none; background:linear-gradient(135deg, rgba(255,255,255,.06) 0%, transparent 50%, rgba(255,255,255,.04) 100%); }
.hcard--feat img { width:100%; aspect-ratio:4/3; object-fit:contain; padding:22px; background:rgba(20,24,32,.6); }
.hcard--feat .hcard-body { padding:16px 20px 20px; }
.hcard--feat .hcard-body span { font-family:var(--font-m); font-size:10px; letter-spacing:.12em; text-transform:uppercase; color:var(--gold); display:block; margin-bottom:5px; }
.hcard--feat .hcard-body strong { font-family:var(--font-serif); font-weight:600; font-size:19px; color:var(--paper); }
.hcard--feat .spotlight { position:absolute; width:250px; height:250px; border-radius:50%; background:radial-gradient(circle, rgba(255,255,255,.08) 0%, transparent 70%); pointer-events:none; transform:translate(-50%,-50%); opacity:0; transition:opacity .3s ease; z-index:10; }
.hcard--feat:hover .spotlight { opacity:1; }

.hcard--mini { max-width:300px; padding:15px 20px; display:flex; align-items:center; gap:14px; }
.hcard-icon { width:36px; height:36px; border-radius:var(--r2); background:rgba(200,25,44,.15); display:flex; align-items:center; justify-content:center; font-size:17px; flex:none; }
.hcard--mini:last-child .hcard-icon { background:rgba(30,111,224,.16); }
.hcard-mini-text strong { font-family:var(--font-serif); font-weight:600; font-size:16.5px; color:var(--paper); display:block; }
.hcard-mini-text span { font-family:var(--font-m); font-size:10px; color:var(--steel-lt); letter-spacing:.04em; }

@media (max-width:960px) {
  .hero__grid { grid-template-columns:1fr; }
  .hero__visual, .hero__cards, .hero__right { display:none; }
  .hero__statsbar .wrap { grid-template-columns:1fr 1fr; gap:20px 0; }
  .hero__body { padding:84px 0 0; }
}

/* ── Marquee ── */
.strip { background:var(--blue); overflow:hidden; }
.strip-track, .strip__track { display:flex; gap:56px; white-space:nowrap; padding:12px 0; animation:marquee 28s linear infinite; font-family:var(--font-m); font-size:11px; font-weight:600; letter-spacing:.1em; text-transform:uppercase; color:#fff; }
.strip-item, .strip__item { display:flex; align-items:center; gap:10px; opacity:.9; }
.strip-item::before, .strip__item::before { content:''; width:4px; height:4px; border-radius:50%; background:rgba(255,255,255,.5); }
@keyframes marquee { from { transform:translateX(0); } to { transform:translateX(-50%); } }

/* ── About split ── */
.about-grid, .split { display:grid; grid-template-columns:.9fr 1.1fr; gap:80px; align-items:center; }
.about-media, .split__media { position:relative; }
.about-media-wrap, .split__img-wrap {
  border-radius:var(--r3); overflow:hidden; border:1px solid var(--line);
  transition:box-shadow .4s ease;
}
.about-media-wrap:hover, .split__img-wrap:hover { box-shadow:0 24px 64px -16px rgba(200,25,44,.15); }
.about-media-wrap img, .split__img-wrap img { width:100%; aspect-ratio:1/1; object-fit:contain; padding:30px; background:var(--paper-dim); }
.about-badge, .split__badge { position:absolute; bottom:-20px; left:-20px; background:var(--ink); color:var(--paper); padding:18px 22px; border-radius:var(--r2); box-shadow:var(--sh3); border:1px solid var(--ink-3); }
.about-badge b, .split__badge b { font-family:var(--font-serif); font-weight:600; font-size:46px; color:var(--gold-lt); line-height:1; display:block; }
.about-badge small, .split__badge small { font-family:var(--font-m); font-size:10px; letter-spacing:.08em; text-transform:uppercase; color:var(--steel-lt); }
.about-text p, .split__text p { color:var(--steel); margin-bottom:18px; font-size:15.5px; line-height:1.78; }
.about-text p:last-of-type, .split__text p:last-of-type { margin-bottom:30px; }
@media (max-width:900px) { .about-grid, .split { grid-template-columns:1fr; gap:60px; } .about-badge, .split__badge { left:14px; } }

/* ── Stat band ── */
.statband { display:grid; grid-template-columns:repeat(4,1fr); border:1px solid var(--line); border-radius:var(--r2); overflow:hidden; box-shadow:var(--sh1); }
.stat-item, .statband__item { background:var(--white); padding:32px 24px; border-right:1px solid var(--line); text-align:center; transition:background .2s; }
.stat-item:hover, .statband__item:hover { background:var(--paper); }
.stat-item:last-child, .statband__item:last-child { border-right:none; }
.stat-item b, .statband__item b { font-family:var(--font-serif); font-weight:500; font-size:clamp(36px,4vw,52px); color:var(--red); display:block; line-height:1; }
.stat-item:nth-child(2) b, .statband__item:nth-child(2) b { color:var(--blue); }
.stat-item:nth-child(3) b, .statband__item:nth-child(3) b { color:var(--amber); }
.stat-item:nth-child(4) b, .statband__item:nth-child(4) b { color:var(--teal); }
.stat-item span, .statband__item span { font-family:var(--font-m); font-size:11px; color:var(--steel); text-transform:uppercase; letter-spacing:.05em; display:block; margin-top:8px; }
@media (max-width:780px) { .statband { grid-template-columns:1fr 1fr; } .stat-item:nth-child(2), .statband__item:nth-child(2) { border-right:none; } .stat-item, .statband__item { border-bottom:1px solid var(--line); } .stat-item:nth-child(3), .stat-item:nth-child(4), .statband__item:nth-child(3), .statband__item:nth-child(4) { border-bottom:none; } }

/* ── Category cards ── */
.catgrid { display:grid; grid-template-columns:repeat(3,1fr); gap:3px; background:rgba(255,255,255,.04); border-radius:var(--r3); overflow:hidden; border:1px solid rgba(255,255,255,.06); }
.catcard { position:relative; overflow:hidden; min-height:290px; display:flex; flex-direction:column; border-left:3px solid transparent; transition:border-color .3s; }
.catcard:hover { border-left-color:var(--red); }
.catcard:nth-child(2):hover { border-left-color:var(--blue); }
.catcard:nth-child(3):hover { border-left-color:var(--amber); }
.catcard:nth-child(4):hover { border-left-color:var(--teal); }
.catcard:nth-child(5):hover { border-left-color:var(--blue); }
.catcard:nth-child(6):hover { border-left-color:var(--amber); }
.cat-bg { position:absolute; inset:0; background-size:cover; background-position:center; filter:brightness(.14) saturate(.4); transition:filter .5s, transform .7s; }
.catcard:hover .cat-bg { filter:brightness(.32) saturate(.7); transform:scale(1.1); }
.cat-body { position:relative; z-index:1; padding:30px 28px; display:flex; flex-direction:column; justify-content:space-between; flex:1; min-height:290px; }
.cat-num { font-family:var(--font-m); font-size:11px; color:var(--gold-lt); letter-spacing:.1em; }
.cat-body h3 { font-family:var(--font-d); font-size:24px; text-transform:uppercase; color:var(--paper); margin:12px 0 6px; }
.cat-count { font-family:var(--font-m); font-size:11px; color:var(--steel-lt); }
.cat-link { display:inline-flex; align-items:center; gap:8px; font-family:var(--font-m); font-size:11.5px; font-weight:700; color:var(--gold-lt); margin-top:24px; text-transform:uppercase; letter-spacing:.07em; transition:gap .25s; }
.cat-link svg { width:12px; height:12px; transition:transform .25s; }
.catcard:hover .cat-link { gap:14px; }
.catcard:hover .cat-link svg { transform:translateX(4px); }
@media (max-width:900px) { .catgrid { grid-template-columns:1fr 1fr; } }
@media (max-width:580px) { .catgrid { grid-template-columns:1fr; } }

/* ── Features ── */
.feat-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:2px; background:var(--line); }
.feat-item { background:var(--white); padding:40px 30px; position:relative; overflow:hidden; border-bottom:3px solid transparent; transition:border-color .25s, box-shadow .25s, transform .25s; }
.feat-item:hover { border-bottom-color:var(--red); box-shadow:0 8px 32px -8px rgba(200,25,44,.14); transform:translateY(-3px); }
.feat-decnum { position:absolute; right:-4px; top:-14px; font-family:var(--font-serif); font-weight:600; font-size:120px; line-height:1; color:rgba(200,25,44,.06); pointer-events:none; transition:color .25s; }
.feat-item:hover .feat-decnum { color:rgba(200,25,44,.10); }
.feat-icon { width:46px; height:46px; border-radius:var(--r2); background:var(--red-glow); display:flex; align-items:center; justify-content:center; margin-bottom:22px; position:relative; z-index:1; }
.feat-icon svg { width:21px; height:21px; stroke:var(--red); }
.feat-item:nth-child(2) .feat-icon { background:var(--blue-glow); } .feat-item:nth-child(2) .feat-icon svg { stroke:var(--blue); }
.feat-item:nth-child(3) .feat-icon { background:var(--amber-glow); } .feat-item:nth-child(3) .feat-icon svg { stroke:var(--amber); }
.feat-item:nth-child(4) .feat-icon { background:var(--teal-glow); } .feat-item:nth-child(4) .feat-icon svg { stroke:var(--teal); }
.feat-item:nth-child(2):hover { border-bottom-color:var(--blue); box-shadow:0 8px 32px -8px rgba(30,111,224,.16); }
.feat-item:nth-child(3):hover { border-bottom-color:var(--amber); box-shadow:0 8px 32px -8px rgba(217,127,35,.16); }
.feat-item:nth-child(4):hover { border-bottom-color:var(--teal); box-shadow:0 8px 32px -8px rgba(14,140,130,.16); }
.feat-item:nth-child(2) .feat-decnum { color:rgba(30,111,224,.06); } .feat-item:nth-child(2):hover .feat-decnum { color:rgba(30,111,224,.10); }
.feat-item:nth-child(3) .feat-decnum { color:rgba(217,127,35,.06); } .feat-item:nth-child(3):hover .feat-decnum { color:rgba(217,127,35,.10); }
.feat-item:nth-child(4) .feat-decnum { color:rgba(14,140,130,.06); } .feat-item:nth-child(4):hover .feat-decnum { color:rgba(14,140,130,.10); }
.feat-item h3 { font-family:var(--font-d); font-size:18px; text-transform:uppercase; margin-bottom:12px; position:relative; z-index:1; font-weight:900; }
.feat-item p { color:var(--steel); font-size:14px; line-height:1.74; position:relative; z-index:1; }
@media (max-width:900px) { .feat-grid { grid-template-columns:1fr 1fr; } }
@media (max-width:560px) { .feat-grid { grid-template-columns:1fr; } }

/* ── Trust strip ── */
.trust-strip, .truststrip { background:var(--ink-2); border-top:1px solid rgba(255,255,255,.05); border-bottom:1px solid rgba(255,255,255,.05); }
.trust-strip .wrap, .truststrip .wrap { display:flex; align-items:stretch; }
.trust-item, .truststrip__item { flex:1; padding:22px; display:flex; align-items:center; gap:14px; border-right:1px solid rgba(255,255,255,.06); transition:background .2s; }
.trust-item:hover, .truststrip__item:hover { background:rgba(255,255,255,.03); }
.trust-item:last-child, .truststrip__item:last-child { border-right:none; }
.trust-icon, .truststrip__icon { width:34px; height:34px; border-radius:var(--r1); background:var(--red-glow); display:flex; align-items:center; justify-content:center; flex:none; }
.trust-icon svg, .truststrip__icon svg { width:15px; height:15px; stroke:var(--red); }
.trust-item:nth-child(2) .trust-icon { background:var(--blue-glow); } .trust-item:nth-child(2) .trust-icon svg { stroke:var(--blue); }
.trust-item:nth-child(3) .trust-icon { background:var(--amber-glow); } .trust-item:nth-child(3) .trust-icon svg { stroke:var(--amber); }
.trust-item:nth-child(4) .trust-icon { background:var(--teal-glow); } .trust-item:nth-child(4) .trust-icon svg { stroke:var(--teal); }
.trust-text b, .truststrip__item b { display:block; font-family:var(--font-serif); font-weight:600; font-size:18px; color:var(--paper); line-height:1; }
.trust-text span, .truststrip__item span { font-family:var(--font-m); font-size:10px; color:var(--steel-lt); display:block; margin-top:3px; }
@media (max-width:760px) { .trust-strip .wrap, .truststrip .wrap { flex-wrap:wrap; } .trust-item, .truststrip__item { flex:1 1 50%; border-bottom:1px solid rgba(255,255,255,.06); } }

/* ── Testimonials ── */
.testi-grid, .testigrid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.testi-card, .testicard { background:var(--ink-1); border:1px solid var(--line-dk); border-radius:var(--r3); padding:32px 28px; position:relative; overflow:hidden; transition:border-color .25s, transform .28s var(--ease); }
.testi-card:hover, .testicard:hover { border-color:rgba(201,168,76,.25); transform:translateY(-5px); }
.testi-card::before, .testicard::before { content:'\201C'; position:absolute; right:18px; top:-6px; font-family:var(--font-serif); font-size:110px; line-height:1; color:rgba(200,25,44,.09); pointer-events:none; }
.testi-stars, .testicard__stars { color:var(--gold); font-size:13px; letter-spacing:3px; margin-bottom:16px; }
.testi-card blockquote, .testicard p { color:rgba(244,240,232,.78); font-family:var(--font-serif); font-size:16px; font-weight:400; line-height:1.72; margin-bottom:24px; }
.testi-who, .testicard__who { display:flex; align-items:center; gap:12px; }
.testi-avatar, .testicard__avatar { width:36px; height:36px; border-radius:50%; background:var(--red); color:#fff; display:flex; align-items:center; justify-content:center; font-family:var(--font-d); font-weight:800; font-size:13px; flex:none; }
.testi-who b, .testicard__who b { display:block; font-size:13.5px; font-weight:600; color:var(--paper); }
.testi-who small, .testicard__who small { font-family:var(--font-m); font-size:10.5px; color:var(--steel-lt); }
@media (max-width:900px) { .testi-grid, .testigrid { grid-template-columns:1fr; } }

/* ── CTA strip ── */
.cta-strip, .ctastrip { background:linear-gradient(135deg,var(--red-deep) 0%,var(--red) 55%,var(--red-hi) 100%); color:#fff; padding:100px 0; }
.cta-strip .wrap, .ctastrip .wrap, .ctastrip .container { display:flex; align-items:center; justify-content:space-between; gap:40px; flex-wrap:wrap; }
.cta-strip p, .ctastrip p { font-family:var(--font-m); font-size:11px; letter-spacing:.15em; text-transform:uppercase; opacity:.65; margin-bottom:12px; }
.cta-strip h2, .ctastrip h2 { font-family:var(--font-serif); font-weight:500; font-size:clamp(28px,3.8vw,46px); max-width:560px; line-height:1.0; }

/* ── Footer ── */
.foot { background:var(--ink); color:var(--steel-lt); padding-top:96px; border-top:1px solid var(--ink-3); }
.foot-grid, .foot__grid { display:grid; grid-template-columns:1.4fr 1fr 1fr 1.1fr; gap:52px; padding-bottom:72px; border-bottom:1px solid var(--line-dk); }
.foot-logo img, .foot__logo img { height:44px; width:auto; background:rgba(255,255,255,.92); border-radius:var(--r1); padding:5px 9px; }
.foot-about, .foot__about { font-size:13.5px; margin:18px 0 24px; color:var(--steel-lt); line-height:1.76; max-width:34ch; }
.foot-social, .foot__social { display:flex; gap:10px; }
.foot-social a, .foot__social a { width:36px; height:36px; border-radius:50%; border:1px solid var(--line-dk); display:flex; align-items:center; justify-content:center; transition:.18s; }
.foot-social a:hover, .foot__social a:hover { border-color:var(--gold-lt); color:var(--gold-lt); }
.foot h5 { font-family:var(--font-m); font-size:11px; letter-spacing:.12em; text-transform:uppercase; color:var(--paper); margin-bottom:18px; }
.foot ul li { margin-bottom:10px; font-size:13.5px; }
.foot ul a:hover { color:var(--gold-lt); }
.foot address { font-style:normal; font-size:13.5px; line-height:1.82; }
.foot address a:hover { color:var(--gold-lt); }
.foot-bottom, .foot__bottom { display:flex; justify-content:space-between; align-items:center; padding:22px 0; font-size:12px; font-family:var(--font-m); flex-wrap:wrap; gap:10px; }
.foot-bottom a:hover, .foot__bottom a:hover { color:var(--gold-lt); }
@media (max-width:900px) { .foot-grid, .foot__grid { grid-template-columns:1fr 1fr; row-gap:40px; } }
@media (max-width:560px) { .foot-grid, .foot__grid { grid-template-columns:1fr; } }

.fab-wa { position:fixed; right:20px; bottom:20px; z-index:150; width:54px; height:54px; border-radius:50%; background:var(--green); display:flex; align-items:center; justify-content:center; box-shadow:0 8px 28px -6px rgba(37,211,102,.5); transition:transform .22s var(--ease), box-shadow .22s; }
.fab-wa:hover { transform:scale(1.1); box-shadow:0 14px 40px -8px rgba(37,211,102,.6); }
.fab-wa svg { width:26px; height:26px; fill:#fff; }

/* ── Category banner ── */
.cat-banner, .catbanner {
  background:var(--ink);
  background-image:linear-gradient(rgba(255,255,255,.024) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.024) 1px,transparent 1px);
  background-size:68px 68px; color:var(--paper); padding:72px 0 64px; border-bottom:1px solid var(--ink-3); position:relative; overflow:hidden;
}
.cat-banner::after, .catbanner::after { content:''; position:absolute; inset:0; background:radial-gradient(ellipse 60% 100% at 100% 50%, var(--accent-glow) 0%, transparent 70%); pointer-events:none; }
.crumbs { font-family:var(--font-m); font-size:11.5px; color:var(--steel-lt); margin-bottom:24px; display:flex; gap:8px; align-items:center; }
.crumbs a:hover { color:var(--gold-lt); }
.crumbs .sep { opacity:.35; }
.cat-banner h1, .catbanner h1 { font-family:var(--font-d); font-weight:900; font-size:clamp(36px,5.5vw,68px); text-transform:uppercase; position:relative; z-index:1; line-height:1; }
.cat-banner p, .catbanner p { color:var(--steel-lt); max-width:52ch; margin-top:16px; font-size:15.5px; line-height:1.74; position:relative; z-index:1; }
.cat-banner-count, .catbanner__count { font-family:var(--font-m); font-size:12px; color:var(--gold-lt); letter-spacing:.08em; text-transform:uppercase; margin-top:22px; position:relative; z-index:1; }

/* ── Product cards — premium, per-category color accent ── */
.prod-grid, .prodgrid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; align-items:start; }
@media (max-width:980px) { .prod-grid, .prodgrid { grid-template-columns:1fr 1fr; } }
@media (max-width:620px) { .prod-grid, .prodgrid { grid-template-columns:1fr; } }

.prod-card, .prodcard {
  background:var(--white); border:1px solid var(--line); border-radius:var(--r3); overflow:hidden; box-shadow:var(--sh1);
  display:flex; flex-direction:column; position:relative;
  transition:transform .3s var(--ease), box-shadow .3s ease, border-color .3s ease;
}
/* Always-on gradient top bar in the category's accent color — brightens on hover */
.prod-card::before, .prodcard::before {
  content:''; position:absolute; top:0; left:0; right:0; height:3px; z-index:2;
  background:linear-gradient(90deg, var(--accent) 0%, var(--accent-glow) 100%);
  opacity:.55; transition:opacity .3s ease;
}
.prod-card:hover, .prodcard:hover {
  transform:translateY(-8px);
  box-shadow:0 8px 16px rgba(13,15,19,.05), 0 32px 68px -14px var(--accent-glow), var(--sh2);
  border-color:var(--accent-glow);
}
.prod-card:hover::before, .prodcard:hover::before { opacity:1; }

/* Image area — soft accent-tinted radial backdrop instead of flat paper */
.prod-img, .prodcard__img {
  aspect-ratio:1/1; position:relative; overflow:hidden;
  padding:24px; display:flex; align-items:center; justify-content:center;
  background:radial-gradient(circle at 28% 22%, var(--accent-glow) 0%, var(--paper) 68%);
}
.prod-img img, .prodcard__img img { max-height:100%; object-fit:contain; mix-blend-mode:multiply; transition:transform .35s ease; position:relative; z-index:1; }
.prod-card:hover .prod-img img, .prodcard:hover .prodcard__img img { transform:scale(1.06); }

/* Numbered index badge, floating over the image corner */
.prod-idx {
  position:absolute; top:14px; left:14px; z-index:2;
  font-family:var(--font-m); font-weight:700; font-size:11px; color:var(--accent);
  background:rgba(255,255,255,.88); backdrop-filter:blur(6px); -webkit-backdrop-filter:blur(6px);
  border:1px solid var(--accent-glow); padding:4px 9px; border-radius:100px;
}

.prod-body, .prodcard__body { padding:20px; flex:1; display:flex; flex-direction:column; }
.prod-model, .prodcard__model {
  display:inline-flex; align-self:flex-start; font-family:var(--font-m); font-weight:600; font-size:9.5px;
  letter-spacing:.06em; color:var(--accent); background:var(--accent-glow);
  padding:3.5px 9px; border-radius:3px; margin-bottom:11px;
}
.prod-body h3, .prodcard__body h3 { font-family:var(--font-b); font-weight:700; font-size:16.5px; margin-bottom:12px; color:var(--ink); }
.prod-chips, .prodcard__chips { display:flex; flex-wrap:wrap; gap:6px; margin-bottom:16px; }
.prod-chips span, .prodcard__chips span { font-family:var(--font-m); font-size:10px; background:var(--paper-dim); padding:4px 8px; border-radius:3px; color:var(--steel); border:1px solid transparent; }
.prod-chips span:first-child, .prodcard__chips span:first-child { background:var(--accent-glow); color:var(--accent); font-weight:600; }
.prod-actions, .prodcard__actions { margin-top:auto; display:flex; gap:8px; }

.specs-btn, .specs-toggle {
  border:1.5px solid var(--accent-glow); color:var(--ink); border-radius:var(--r1);
  padding:10px 12px; font-size:12px; font-weight:600; display:flex; align-items:center; gap:6px; flex:1;
  font-family:var(--font-b); transition:border-color .18s, color .18s, background .18s;
}
.specs-btn:hover, .specs-toggle:hover { border-color:var(--accent); color:var(--accent); background:var(--accent-glow); }
.specs-btn svg, .specs-toggle svg { width:11px; height:11px; flex:none; transition:transform .2s; }
.specs-btn[aria-expanded="true"] svg, .specs-toggle[aria-expanded="true"] svg { transform:rotate(180deg); }

.wa-btn { background:var(--green); color:#fff; border-radius:var(--r1); padding:10px 12px; font-size:12px; font-weight:700; font-family:var(--font-b); display:flex; align-items:center; justify-content:center; gap:6px; flex:1; transition:filter .15s, transform .15s; }
.wa-btn:hover { filter:brightness(1.09); transform:scale(1.02); }
.wa-btn svg { width:14px; height:14px; fill:#fff; flex:none; }

.spec-panel, .specpanel { max-height:0; overflow:hidden; transition:max-height .34s ease; }
.spec-panel.open, .specpanel.is-open { max-height:640px; border-top:2px solid var(--accent-glow); }
.spec-panel-inner, .specpanel__inner { padding:16px 20px 22px; }
.spec-table, .spectable { width:100%; border-collapse:collapse; font-size:13px; }
.spec-table tr, .spectable tr { border-bottom:1px solid var(--line); }
.spec-table tr:last-child, .spectable tr:last-child { border-bottom:none; }
.spec-table tr:first-child td:last-child { color:var(--accent); font-weight:700; }
.spec-table td, .spectable td { padding:8.5px 0; vertical-align:top; }
.spec-table td:first-child, .spectable td:first-child { color:var(--steel); width:45%; padding-right:12px; }
.spec-table td:last-child, .spectable td:last-child { font-family:var(--font-m); font-size:12px; font-weight:500; color:var(--ink); }

/* ── Showcase ── */
.showcase { display:grid; grid-template-columns:1fr 1fr; gap:18px; margin-bottom:60px; }
.showcase-item, .showcase__item { background:var(--white); border:1px solid var(--line); border-radius:var(--r2); overflow:hidden; box-shadow:var(--sh1); transition:box-shadow .22s,transform .22s; }
.showcase-item:hover, .showcase__item:hover { box-shadow:var(--sh2); transform:translateY(-3px); }
.showcase-item img, .showcase__item img { width:100%; }
.showcase-item span, .showcase__item span { display:block; padding:12px 16px; font-family:var(--font-m); font-size:10px; color:var(--steel); letter-spacing:.04em; border-top:1px solid var(--line); }
@media (max-width:760px) { .showcase { grid-template-columns:1fr; } }

/* ── Contact ── */
.contact-grid, .contactgrid { display:grid; grid-template-columns:.9fr 1.1fr; gap:52px; }
.contact-card, .contactcard { background:var(--white); border:1px solid var(--line); border-radius:var(--r2); padding:28px; margin-bottom:14px; box-shadow:var(--sh1); transition:box-shadow .22s,transform .22s; }
.contact-card:hover, .contactcard:hover { box-shadow:var(--sh2); transform:translateY(-2px); }
.contact-card-icon, .contactcard__icon { width:40px; height:40px; border-radius:var(--r2); background:var(--red-glow); display:flex; align-items:center; justify-content:center; margin-bottom:14px; }
.contact-card-icon svg, .contactcard__icon svg { width:19px; height:19px; stroke:var(--red); }
.contact-card h4, .contactcard h4 { font-weight:700; font-size:14.5px; margin-bottom:6px; }
.contact-card p, .contact-card a, .contactcard p, .contactcard a { color:var(--steel); font-size:13.5px; }
.contact-card a:hover, .contactcard a:hover { color:var(--red); }
.map-wrap, .mapwrap { border-radius:var(--r2); overflow:hidden; border:1px solid var(--line); aspect-ratio:16/11; }
.map-wrap iframe, .mapwrap iframe { width:100%; height:100%; border:0; }
.form-grid, .formgrid { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.form-grid .full, .formgrid .full { grid-column:1/-1; }
.field label { display:block; font-size:12px; font-weight:700; margin-bottom:7px; letter-spacing:.02em; }
.field input, .field textarea { width:100%; border:1.5px solid var(--line); border-radius:var(--r1); padding:12px 14px; font-family:var(--font-b); font-size:14px; background:var(--paper); transition:border-color .15s; }
.field input:focus, .field textarea:focus { border-color:var(--red); outline:none; background:var(--white); }
@media (max-width:900px) { .contact-grid, .contactgrid { grid-template-columns:1fr; } }
@media (max-width:560px) { .form-grid, .formgrid { grid-template-columns:1fr; } }

/* ── Timeline ── */
.timeline { position:relative; padding-left:38px; }
.timeline::before { content:''; position:absolute; left:7px; top:6px; bottom:6px; width:2px; background:var(--ink-3); }
.tl-item, .timeline__item { position:relative; padding-bottom:42px; }
.tl-item:last-child, .timeline__item:last-child { padding-bottom:0; }
.tl-item::before, .timeline__item::before { content:''; position:absolute; left:-38px; top:4px; width:14px; height:14px; border-radius:50%; background:var(--gold); border:3px solid var(--ink); }
.tl-year, .timeline__year { font-family:var(--font-m); color:var(--gold-lt); font-size:12px; letter-spacing:.08em; }
.tl-item h4, .timeline__item h4 { font-family:var(--font-d); font-weight:900; font-size:20px; text-transform:uppercase; color:var(--paper); margin:6px 0; }
.tl-item p, .timeline__item p { color:var(--steel-lt); font-size:14px; }

/* ── Page intro ── */
.page-intro, .pageintro {
  background:var(--ink);
  background-image:linear-gradient(rgba(255,255,255,.024) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.024) 1px,transparent 1px);
  background-size:68px 68px; color:var(--paper); padding:72px 0 60px; border-bottom:1px solid var(--ink-3);
}
.page-intro h1, .pageintro h1 { font-family:var(--font-d); font-weight:900; font-size:clamp(38px,6vw,64px); text-transform:uppercase; }

/* ── Gallery ── */
.gallery-filters { display:flex; gap:8px; flex-wrap:wrap; margin-bottom:40px; }
.gfilter { font-family:var(--font-m); font-size:11.5px; font-weight:600; letter-spacing:.04em; padding:9px 18px; border-radius:100px; border:1.5px solid var(--line); color:var(--steel); transition:all .2s ease; text-transform:uppercase; }
.gfilter:hover { border-color:var(--red); color:var(--red); }
.gfilter.active { background:var(--ink); border-color:var(--ink); color:var(--paper); }
.gallery-grid { columns:4 260px; column-gap:16px; }
.gitem { break-inside:avoid; margin-bottom:16px; border-radius:var(--r2); overflow:hidden; border:1px solid var(--line); background:var(--white); box-shadow:var(--sh1); cursor:pointer; transition:transform .26s var(--ease), box-shadow .26s ease; position:relative; }
.gitem:hover { transform:translateY(-5px); box-shadow:var(--sh2); }
.gitem img { width:100%; display:block; background:var(--paper); padding:18px; box-sizing:border-box; mix-blend-mode:multiply; }
.gitem__cap { position:absolute; left:0; right:0; bottom:0; padding:12px 14px; background:linear-gradient(to top, rgba(10,12,15,.82) 0%, transparent 100%); opacity:0; transition:opacity .25s ease; display:flex; align-items:flex-end; }
.gitem:hover .gitem__cap { opacity:1; }
.gitem__cap span { font-family:var(--font-m); font-size:10.5px; color:#fff; letter-spacing:.04em; }
@media (max-width:900px) { .gallery-grid { columns:3 200px; } }
@media (max-width:600px) { .gallery-grid { columns:2 160px; } }

.lightbox { position:fixed; inset:0; z-index:500; background:rgba(8,9,12,.94); display:flex; align-items:center; justify-content:center; opacity:0; visibility:hidden; transition:opacity .25s ease, visibility .25s; padding:40px; }
.lightbox.open { opacity:1; visibility:visible; }
.lightbox img { max-width:100%; max-height:84vh; border-radius:var(--r2); box-shadow:var(--sh3); background:#fff; padding:24px; box-sizing:border-box; }
.lightbox__cap { position:absolute; bottom:28px; left:0; right:0; text-align:center; font-family:var(--font-m); font-size:12px; color:var(--steel-lt); letter-spacing:.04em; }
.lightbox__close { position:absolute; top:24px; right:28px; width:44px; height:44px; border-radius:50%; border:1px solid rgba(255,255,255,.2); color:#fff; font-size:22px; display:flex; align-items:center; justify-content:center; transition:.2s; }
.lightbox__close:hover { background:rgba(255,255,255,.1); border-color:var(--gold-lt); }
.lightbox__nav { position:absolute; top:50%; transform:translateY(-50%); width:48px; height:48px; border-radius:50%; border:1px solid rgba(255,255,255,.2); color:#fff; display:flex; align-items:center; justify-content:center; transition:.2s; }
.lightbox__nav:hover { background:rgba(255,255,255,.1); border-color:var(--gold-lt); }
.lightbox__nav--prev { left:24px; }
.lightbox__nav--next { right:24px; }
.lightbox__nav svg { width:20px; height:20px; }
@media (max-width:700px) { .lightbox__nav { width:40px; height:40px; } .lightbox__nav--prev { left:8px; } .lightbox__nav--next { right:8px; } .lightbox { padding:16px; } }

/* ── Misc ── */
.note { font-size:13px; color:var(--steel); background:var(--paper-dim); border-left:3px solid var(--gold); padding:14px 16px; border-radius:0 4px 4px 0; }
#scroll-bar { position:fixed; top:0; left:0; height:2px; z-index:500; background:linear-gradient(90deg, var(--red), var(--blue)); width:0%; transition:width .05s linear; }
