:root {
  --ink: #1e293b;
  --ink-2: #334155;
  --muted: #64748b;
  --text: #334155;
  --text-soft: #475569;
  --paper: #eef1f6;
  --paper-warm: #f3f0ea;
  --surface: #f8fafc;
  --surface-elevated: #ffffff;
  --line: #dde3ec;
  --line-soft: rgba(30, 41, 59, .07);
  --accent: #b8860b;
  --accent-2: #d4a017;
  --accent-soft: rgba(184, 134, 11, .14);
  --dark: #141c2e;
  --dark-2: #1a2438;
  --ok: #15803d;
  --danger: #b91c1c;
  --tone-sky: #3b82f6;
  --tone-mint: #10b981;
  --tone-violet: #8b5cf6;
  --tone-teal: #14b8a6;
  --tone-rose: #f43f5e;
  --tone-amber: #f59e0b;
  --tone-sand: #d97706;
  --shadow-sm: 0 1px 3px rgba(30, 41, 59, .06);
  --shadow: 0 16px 40px rgba(30, 41, 59, .08);
  --shadow-lg: 0 28px 56px rgba(30, 41, 59, .11);
  --radius: 16px;
  --radius-sm: 12px;
  --max: 1200px;
  --nav-h: 64px;
  --font: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  --leading: 1.7;
  --leading-tight: 1.28;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font);
  color: var(--text);
  background:
    radial-gradient(ellipse 120% 80% at 10% -20%, rgba(59, 130, 246, .08), transparent 50%),
    radial-gradient(ellipse 90% 60% at 90% 0%, rgba(184, 134, 11, .07), transparent 45%),
    linear-gradient(180deg, #eef1f6 0%, #eceff4 50%, #f2efe8 100%);
  background-attachment: fixed;
  line-height: var(--leading);
  font-size: 16px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: "cv02", "cv03", "cv04", "cv11";
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
h1, h2, h3, h4 {
  font-family: var(--font);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: var(--leading-tight);
  margin: 0;
  color: var(--ink);
}
p { margin: 0 0 1rem; }

.wrap { width: min(var(--max), calc(100% - 32px)); margin-inline: auto; }
.skip { position: absolute; left: -999px; }
.skip:focus { left: 16px; top: 16px; background: #fff; padding: 8px 12px; z-index: 99; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.muted { color: var(--muted); }

/* —— Header —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(248, 250, 252, .88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line-soft);
  overflow: visible;
}
.header-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  min-height: var(--nav-h);
  overflow: visible;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  min-width: 0;
}
.logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(145deg, var(--dark), #1e293b);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .02em;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  gap: 1px;
  min-width: 0;
}
.logo-text strong {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -.01em;
  white-space: nowrap;
}
.logo-text small {
  font-size: 10px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.logo--footer .logo-text strong, .logo--footer .logo-text small { color: inherit; }

.nav {
  justify-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  min-width: 0;
  max-width: 100%;
  padding: 0;
  overflow: visible;
}
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 36px;
  padding: 0 9px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  color: var(--text-soft);
  white-space: nowrap;
  transition: color .2s ease, background .2s ease;
}
.nav-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.nav-icon svg {
  display: block;
  width: 17px;
  height: 17px;
  flex-shrink: 0;
}
.nav-label {
  display: block;
  line-height: 1;
  padding-top: 1px;
}
.nav-link:hover {
  color: var(--ink);
  background: rgba(15, 23, 42, .04);
}
.nav-link.is-active {
  color: var(--ink);
  background: rgba(184, 134, 11, .12);
  font-weight: 600;
}
.nav-link.is-active .nav-icon svg { color: var(--accent); }
.header-cta {
  min-height: 36px;
  padding: 0 12px;
  font-size: 12px;
  font-weight: 600;
  gap: 6px;
  line-height: 1;
  white-space: nowrap;
}
.header-cta svg {
  display: block;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  justify-self: end;
}
.header-mobile-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-self: end;
  flex-shrink: 0;
}
.lang-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 36px;
  padding: 0 10px 0 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.lang-dropdown-toggle:hover,
.lang-dropdown.is-open .lang-dropdown-toggle {
  border-color: rgba(184, 134, 11, .35);
  box-shadow: 0 0 0 1px rgba(184, 134, 11, .08);
}
.lang-dropdown {
  position: relative;
}
.lang-flag {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  font-size: 14px;
  line-height: 1;
  background: #f8fafc;
  flex-shrink: 0;
}
.lang-current {
  letter-spacing: .03em;
}
.lang-chevron {
  width: 14px;
  height: 14px;
  color: var(--muted);
  transition: transform .2s ease;
}
.lang-dropdown.is-open .lang-chevron {
  transform: rotate(180deg);
}
.lang-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 1200;
  min-width: 190px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow-lg);
}
.lang-dropdown-menu[hidden] {
  display: none;
}
.lang-dropdown-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 9px 10px;
  border-radius: 10px;
  color: var(--ink);
  transition: background .2s ease;
}
.lang-dropdown-item:hover {
  background: #f8fafc;
}
.lang-dropdown-item.is-active {
  background: rgba(184, 134, 11, .08);
}
.lang-item-copy {
  display: grid;
  gap: 1px;
  min-width: 0;
}
.lang-item-copy strong {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
}
.lang-item-copy em {
  font-style: normal;
  font-size: 11px;
  color: var(--muted);
}
.lang-check {
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  color: var(--accent);
  opacity: 0;
}
.lang-check svg { width: 13px; height: 13px; }
.lang-dropdown-item.is-active .lang-check,
.mobile-lang-item.is-active .lang-check {
  opacity: 1;
}

.menu-btn {
  display: none;
  flex-shrink: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  background: #fff;
  border: 1px solid #dbe3ee;
  border-radius: 12px;
  width: 44px;
  height: 44px;
  padding: 0;
  cursor: pointer;
  box-shadow: 0 1px 3px rgba(15, 23, 42, .06);
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.menu-btn:hover,
.menu-btn:focus-visible {
  border-color: rgba(184, 134, 11, .45);
  box-shadow: 0 0 0 3px rgba(184, 134, 11, .1);
}
.menu-btn-line {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--dark);
  border-radius: 999px;
  transition: transform .22s ease, opacity .18s ease;
}
body.mobile-nav-open .menu-btn-line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
body.mobile-nav-open .menu-btn-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
body.mobile-nav-open .menu-btn-line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1300;
  background:
    radial-gradient(circle at 100% 0%, rgba(184, 134, 11, .12), transparent 34%),
    linear-gradient(180deg, #0f172a 0%, #111827 100%);
  color: #fff;
  padding: max(14px, env(safe-area-inset-top)) 18px max(24px, env(safe-area-inset-bottom));
  overflow-y: auto;
}
.mobile-nav.is-open { display: flex; flex-direction: column; gap: 4px; }
body.mobile-nav-open { overflow: hidden; }
.mobile-nav-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.mobile-nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: #fff;
}
.mobile-nav-brand-copy {
  display: grid;
  gap: 1px;
  min-width: 0;
}
.mobile-nav-brand-copy strong {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.15;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mobile-nav-brand-copy small {
  font-size: 10px;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
  font-weight: 600;
}
.mobile-close {
  position: relative;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 12px;
  background: rgba(255, 255, 255, .04);
  color: #fff;
  cursor: pointer;
  flex-shrink: 0;
}
.mobile-close span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 16px;
  height: 2px;
  margin: -1px 0 0 -8px;
  border-radius: 999px;
  background: currentColor;
}
.mobile-close span:first-child { transform: rotate(45deg); }
.mobile-close span:last-child { transform: rotate(-45deg); }
.mobile-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 12px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, .92);
  border: 1px solid transparent;
  transition: background .18s ease, border-color .18s ease;
}
.mobile-link:hover {
  background: rgba(255, 255, 255, .06);
  border-color: rgba(255, 255, 255, .06);
}
.mobile-link .nav-icon svg { width: 22px; height: 22px; }
.mobile-lang {
  display: grid;
  gap: 6px;
  margin: 8px 0 12px;
}
.mobile-lang-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 11px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .88);
  transition: background .2s ease, border-color .2s ease;
}
.mobile-lang-item:hover {
  background: rgba(255, 255, 255, .1);
}
.mobile-lang-item.is-active {
  background: rgba(255, 255, 255, .14);
  border-color: rgba(212, 160, 23, .45);
}
.mobile-lang-copy {
  display: grid;
  gap: 2px;
}
.mobile-lang-copy strong {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
}
.mobile-lang-copy em {
  font-style: normal;
  font-size: 11px;
  color: rgba(255, 255, 255, .58);
}
.mobile-lang-item .lang-flag {
  background: rgba(255, 255, 255, .12);
}
.mobile-lang-item .lang-check {
  color: #fde68a;
}
.mobile-nav .btn-full { margin-top: auto; }

/* —— Buttons —— */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 46px; padding: 0 20px; border: 1px solid transparent;
  border-radius: 999px; cursor: pointer; font-size: 15px; font-weight: 600;
  letter-spacing: 0;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn svg { width: 18px; height: 18px; }
.btn:hover { transform: translateY(-1px); }
.btn-sm { min-height: 42px; padding: 0 16px; font-size: 13px; }
.btn-full { width: 100%; }
.btn-dark { background: var(--ink); color: #fff; box-shadow: 0 8px 24px rgba(15, 23, 42, .18); }
.btn-dark:hover { background: #020617; }
.btn-gold { background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #fff; box-shadow: 0 8px 24px rgba(184, 134, 11, .28); }
.btn-gold:hover { filter: brightness(1.05); }
.btn-line { background: transparent; border-color: var(--line); color: var(--ink); }
.btn-line:hover { background: var(--surface); }
.btn-ghost {
  background: rgba(255,255,255,.12); color: #fff;
  border: 1px solid rgba(255,255,255,.22); backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255,255,255,.18); }
.btn-ghost--light { color: #fff; border-color: rgba(255,255,255,.25); }

.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 15px; font-weight: 600; color: var(--accent);
}
.link-arrow svg { width: 18px; height: 18px; transition: transform .2s ease; }
.link-arrow:hover svg { transform: translateX(4px); }

.pill {
  display: inline-flex; align-items: center; min-height: 32px; padding: 0 14px;
  border-radius: 999px; font-size: 13px; font-weight: 500; letter-spacing: 0;
}
.pill--light {
  background: rgba(255,255,255,.14); color: rgba(255,255,255,.92);
  border: 1px solid rgba(255,255,255,.18);
}

.eyebrow {
  display: inline-block; margin-bottom: 10px;
  font-size: 13px; font-weight: 600; letter-spacing: 0;
  color: var(--accent);
}
.eyebrow--light { color: rgba(255,255,255,.72); }

/* —— Home hero (split layout) —— */
@keyframes techFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}
@keyframes heroEnter {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: none; }
}
@keyframes heroVisualEnter {
  from { opacity: 0; transform: translateX(36px) scale(.94); }
  to { opacity: 1; transform: none; }
}
@keyframes heroBadgePop {
  from { opacity: 0; transform: translateY(10px) scale(.88); }
  to { opacity: 1; transform: none; }
}
@keyframes heroKenBurns {
  from { transform: scale(1); }
  to { transform: scale(1.05); }
}
@keyframes heroShineSweep {
  0% { transform: translateX(-120%) skewX(-18deg); opacity: 0; }
  12% { opacity: .55; }
  100% { transform: translateX(220%) skewX(-18deg); opacity: 0; }
}
@keyframes heroOrbDrift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(12px, -14px) scale(1.06); }
}
@keyframes heroStatPop {
  from { opacity: 0; transform: translateY(16px) scale(.92); }
  to { opacity: 1; transform: none; }
}

.home-hero {
  position: relative;
  overflow: hidden;
  padding: 18px 0 22px;
  background:
    radial-gradient(circle at 85% 20%, rgba(184, 134, 11, .1), transparent 42%),
    radial-gradient(circle at 8% 80%, rgba(59, 130, 246, .08), transparent 40%),
    linear-gradient(180deg, rgba(255,255,255,.55) 0%, rgba(238,241,246,.4) 100%);
  border-bottom: 1px solid var(--line-soft);
}
.home-hero-ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.home-hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(56px);
  opacity: .55;
  animation: heroOrbDrift 9s ease-in-out infinite;
}
.home-hero-orb--gold {
  width: 220px;
  height: 220px;
  top: -40px;
  right: 12%;
  background: rgba(184, 134, 11, .22);
  animation-delay: 0s;
}
.home-hero-orb--sky {
  width: 180px;
  height: 180px;
  bottom: -30px;
  left: 4%;
  background: rgba(59, 130, 246, .16);
  animation-delay: -3s;
}
.home-hero-orb--mint {
  width: 140px;
  height: 140px;
  top: 38%;
  left: 42%;
  background: rgba(16, 185, 129, .12);
  animation-delay: -5s;
}
.home-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.02fr;
  gap: 28px;
  align-items: center;
}
[data-hero] .hero-seq {
  opacity: 0;
  transform: translateY(28px);
}
[data-hero].is-ready .hero-seq--1 { animation: heroEnter .22s ease-out .01s forwards; }
[data-hero].is-ready .home-hero-copy h1 { animation: heroEnter .24s ease-out .03s forwards, heroTitleShimmer 4s ease-in-out 1.2s infinite; }
[data-hero].is-ready .hero-seq--3 { animation: heroEnter .22s ease-out .04s forwards; }
[data-hero].is-ready .hero-seq--4 { animation: heroEnter .22s ease-out .05s forwards; }
[data-hero].is-ready .hero-seq--5 { animation: heroEnter .18s ease-out .06s forwards; }
[data-hero].is-ready .hero-seq--6 { animation: heroVisualEnter .26s ease-out .04s forwards; }
[data-hero].is-ready .home-stat-cards .stat-card-light:nth-child(1) { animation: heroStatPop .2s ease-out .08s forwards; }
[data-hero].is-ready .home-stat-cards .stat-card-light:nth-child(2) { animation: heroStatPop .2s ease-out .1s forwards; }
[data-hero].is-ready .home-stat-cards .stat-card-light:nth-child(3) { animation: heroStatPop .2s ease-out .12s forwards; }
[data-hero].is-ready .home-stat-cards .stat-card-light:nth-child(4) { animation: heroStatPop .2s ease-out .14s forwards; }
[data-hero].is-ready .home-stat-cards .stat-card-light {
  opacity: 0;
  transform: translateY(16px) scale(.92);
}
[data-hero].is-ready .hero-image-badge {
  animation: heroBadgePop .22s ease-out .12s forwards;
}
[data-hero].is-ready .hero-image-shine {
  animation: heroShineSweep .8s ease .16s forwards;
}
.home-hero .eyebrow {
  margin-bottom: 6px;
  font-size: 12px;
}
.home-hero-copy h1 {
  font-size: clamp(26px, 3.2vw, 36px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.18;
  margin: 4px 0 8px;
  max-width: 17ch;
  color: var(--ink);
  background: linear-gradient(120deg, var(--ink) 0%, #1e3a5f 55%, var(--ink) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
@keyframes heroTitleShimmer {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}
.home-hero-copy p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-soft);
  max-width: 42ch;
  margin: 0;
}
.home-hero .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}
.home-hero .btn {
  min-height: 40px;
  padding: 0 16px;
  font-size: 14px;
}
.home-hero .btn svg { width: 16px; height: 16px; }

.home-stat-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-top: 16px;
}
.stat-card-light {
  background: var(--surface-elevated);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 8px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}
.stat-card-light:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.stat-card-light:nth-child(1) { border-color: rgba(59, 130, 246, .22); background: linear-gradient(145deg, #fff, #f0f7ff); }
.stat-card-light:nth-child(2) { border-color: rgba(184, 134, 11, .22); background: linear-gradient(145deg, #fff, #fffbeb); }
.stat-card-light:nth-child(3) { border-color: rgba(16, 185, 129, .22); background: linear-gradient(145deg, #fff, #ecfdf5); }
.stat-card-light:nth-child(4) { border-color: rgba(139, 92, 246, .22); background: linear-gradient(145deg, #fff, #f5f3ff); }
.stat-card-light strong {
  display: block;
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1;
}
.stat-card-light span {
  display: block;
  margin-top: 3px;
  font-size: 10px;
  color: var(--muted);
  line-height: 1.25;
}

.home-hero-visual { position: relative; }
.hero-image-card {
  position: relative;
  border-radius: calc(var(--radius) + 2px);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: #e2e8f0;
  aspect-ratio: 16 / 9;
  max-height: 240px;
}
[data-hero].is-ready .hero-image-card {
  animation: techFloat 7s ease-in-out 1.2s infinite;
}
.hero-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  display: block;
  transform: scale(1);
}
[data-hero].is-ready .hero-image-card img {
  animation: heroKenBurns 14s ease-in-out 1s infinite alternate;
}
.hero-image-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 35%, rgba(255,255,255,.42) 50%, transparent 65%);
  pointer-events: none;
  opacity: 0;
  z-index: 1;
}
.hero-image-badge {
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-sm);
  font-size: 11px;
  font-weight: 600;
  color: var(--ink);
  opacity: 0;
  transform: translateY(10px) scale(.88);
}
.hero-image-badge svg { width: 14px; height: 14px; color: var(--accent); }

.home-categories {
  padding: 14px 0 12px;
  background: var(--paper);
  border-top: 1px solid var(--line);
}
.home-categories .section-head--tight {
  margin-bottom: 12px;
}
.home-categories .eyebrow {
  margin-bottom: 4px;
  font-size: 12px;
}
.home-categories .section-head--compact h2 {
  margin-top: 0;
  font-size: clamp(20px, 2.6vw, 26px);
  line-height: 1.15;
}
.home-categories .cat-pills {
  grid-template-columns: repeat(auto-fill, minmax(118px, 1fr));
  gap: 10px 16px;
  margin-bottom: 0;
}
.home-categories .cat-pill {
  gap: 6px;
}
.home-categories .cat-pill-label {
  font-size: 12px;
  line-height: 1.2;
}
.section-head--tight { margin-bottom: 20px; }
.section-head--tight h2 { font-size: clamp(22px, 3vw, 28px); max-width: none; }
.home-categories .cat-rail-wrap { margin-bottom: 0; }

/* keep old stat-card for other pages */
.stat-card {
  padding: 18px 18px 16px; border-radius: var(--radius);
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(12px);
}
.stat-icon {
  display: inline-grid; place-items: center;
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(255,255,255,.1); color: #fff; margin-bottom: 12px;
}
.stat-icon svg { width: 18px; height: 18px; }
.stat-card strong {
  display: block; font-size: 28px; font-weight: 800; letter-spacing: -.03em; line-height: 1;
}
.stat-card span {
  display: block; margin-top: 6px; font-size: 12px; color: rgba(255,255,255,.65);
}

/* —— Sections —— */
.section { padding: 72px 0; }
.section--soft { background: rgba(255, 255, 255, .35); }
.section--warm { background: rgba(243, 240, 234, .55); }
.home-section { padding: 72px 0; }
.section-head {
  display: flex; justify-content: space-between; align-items: end;
  gap: 24px; margin-bottom: 32px; flex-wrap: wrap;
}
.section-head h2 { font-size: clamp(26px, 3.5vw, 34px); max-width: 20ch; font-weight: 600; line-height: 1.25; }
.lead { font-size: 17px; color: var(--text-soft); margin: 14px 0 20px; line-height: 1.65; }

.grid-2 { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }

/* Brand grid — home partners */
.home-brands {
  padding: 36px 0 40px;
  background: var(--paper);
  border-top: 1px solid var(--line);
}
.section-head--compact {
  align-items: center;
  margin-bottom: 22px;
  gap: 16px;
}
.section-head--compact h2 {
  font-size: clamp(22px, 2.8vw, 28px);
  max-width: none;
  margin-top: 4px;
}
.link-arrow--sm { font-size: 13px; }
.brand-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.brand-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 132px;
  padding: 18px 14px 16px;
  text-align: center;
  text-decoration: none;
  color: inherit;
  background: var(--surface-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.brand-slide:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: rgba(184, 134, 11, .28);
}
.brand-slide-icon {
  width: 100%;
  height: 76px;
  margin: 0 0 10px;
  border-radius: 0;
  background: transparent;
  border: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.brand-slide-icon img {
  display: block;
  max-width: 92%;
  max-height: 52px;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center;
}
.brand-slide-icon span {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-soft);
  letter-spacing: .04em;
}
.brand-slide-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-2);
  line-height: 1.35;
  white-space: normal;
  text-align: center;
}

@media (min-width: 900px) {
  .brand-strip { grid-template-columns: repeat(5, minmax(0, 1fr)); }
}
@media (min-width: 1180px) {
  .brand-strip {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
  }
  .brand-slide { min-height: 148px; padding: 20px 16px 18px; }
  .brand-slide-icon { height: 84px; margin-bottom: 12px; }
  .brand-slide-icon img { max-height: 58px; }
  .brand-slide-label { font-size: 13px; }
}
.tone-sky, .cat-card-icon--sky, .cat-chip-icon--sky, .cat-popup-icon--sky, .brand-slide-icon--sky { --tone-bg: #dbeafe; --tone-fg: #0369a1; }
.tone-mint, .cat-card-icon--mint, .cat-chip-icon--mint, .cat-popup-icon--mint, .brand-slide-icon--mint { --tone-bg: #dcfce7; --tone-fg: #15803d; }
.tone-amber, .cat-card-icon--amber, .cat-chip-icon--amber, .cat-popup-icon--amber, .brand-slide-icon--amber { --tone-bg: #fef3c7; --tone-fg: #b45309; }
.tone-rose, .cat-card-icon--rose, .cat-chip-icon--rose, .cat-popup-icon--rose, .brand-slide-icon--rose { --tone-bg: #ffe4e6; --tone-fg: #be123c; }
.tone-violet, .cat-card-icon--violet, .cat-chip-icon--violet, .cat-popup-icon--violet, .brand-slide-icon--violet { --tone-bg: #ede9fe; --tone-fg: #6d28d9; }
.tone-teal, .cat-card-icon--teal, .cat-chip-icon--teal, .cat-popup-icon--teal, .brand-slide-icon--teal { --tone-bg: #ccfbf1; --tone-fg: #0f766e; }
.tone-orange, .cat-card-icon--orange, .cat-chip-icon--orange, .cat-popup-icon--orange, .brand-slide-icon--orange { --tone-bg: #ffedd5; --tone-fg: #c2410c; }
.tone-lime, .cat-card-icon--lime, .cat-chip-icon--lime, .cat-popup-icon--lime, .brand-slide-icon--lime { --tone-bg: #ecfccb; --tone-fg: #4d7c0f; }
.tone-sand, .cat-card-icon--sand, .cat-chip-icon--sand, .cat-popup-icon--sand, .brand-slide-icon--sand { --tone-bg: #fef9c3; --tone-fg: #a16207; }

.brand-slide-icon--sky, .brand-slide-icon--mint, .brand-slide-icon--amber,
.brand-slide-icon--rose, .brand-slide-icon--violet, .brand-slide-icon--teal,
.brand-slide-icon--orange, .brand-slide-icon--lime, .brand-slide-icon--sand {
  background: var(--tone-bg);
  border-color: transparent;
}

/* Category rail */
.cat-rail-wrap {
  position: relative;
  margin-bottom: 28px;
}
.cat-rail {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 6px 44px 10px 4px;
  scrollbar-width: none;
}
.cat-rail::-webkit-scrollbar { display: none; }

.cat-card {
  flex: 0 0 108px;
  scroll-snap-align: start;
  text-align: center;
  text-decoration: none;
  color: inherit;
  transition: transform .2s ease;
}
.cat-card:hover { transform: translateY(-3px); }
.cat-card-icon {
  width: 84px; height: 84px; margin: 0 auto 8px;
  border-radius: 20px; background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  display: grid; place-items: center;
  transition: transform .25s ease;
}
.cat-card:hover .cat-card-icon { transform: translateY(-4px); animation: techFloat 2.8s ease-in-out infinite; }
.cat-card-icon svg { width: 28px; height: 28px; color: var(--tone-fg, var(--accent)); }
.cat-card-icon--sky, .cat-card-icon--mint, .cat-card-icon--amber, .cat-card-icon--rose,
.cat-card-icon--violet, .cat-card-icon--teal, .cat-card-icon--orange, .cat-card-icon--lime,
.cat-card-icon--sand { background: var(--tone-bg); border-color: transparent; }
.cat-card-label {
  display: block; font-size: 13px; font-weight: 500; color: var(--text-soft); line-height: 1.35;
}
.cat-card em {
  display: block; margin-top: 2px; font-style: normal; font-size: 12px; color: var(--muted); font-weight: 400;
}
.cat-card.is-active .cat-card-label { color: var(--accent); }
.cat-card.is-active .cat-card-icon {
  box-shadow: 0 0 0 2px var(--accent), var(--shadow);
}
.cat-rail-btn {
  position: absolute; top: 28px; z-index: 2;
  width: 34px; height: 34px; border-radius: 999px;
  border: 1px solid var(--line); background: var(--surface);
  color: var(--ink); font-size: 20px; cursor: pointer; box-shadow: var(--shadow-sm);
}
.cat-rail-btn--prev { right: 38px; }
.cat-rail-btn--next { right: 0; }

/* Home category picker + popup */
.cat-picker-strip {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 2px 2px 6px;
  scrollbar-width: none;
}
.cat-picker-strip::-webkit-scrollbar { display: none; }
.cat-chip {
  flex: 0 0 auto;
  display: grid;
  grid-template-columns: 40px 1fr auto;
  align-items: center;
  gap: 10px;
  min-width: 148px;
  max-width: 210px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  color: inherit;
  text-align: left;
  cursor: pointer;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.cat-chip:hover {
  border-color: #cbd5e1;
  box-shadow: var(--shadow-sm);
}
.cat-chip-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: grid; place-items: center;
  background: var(--tone-bg, #f8fafc);
}
.cat-chip-icon svg { width: 18px; height: 18px; color: var(--tone-fg, var(--accent)); }
.cat-chip-icon--sky, .cat-chip-icon--mint, .cat-chip-icon--amber, .cat-chip-icon--rose,
.cat-chip-icon--violet, .cat-chip-icon--teal, .cat-chip-icon--orange, .cat-chip-icon--lime,
.cat-chip-icon--sand { background: var(--tone-bg); }
.cat-chip-text {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cat-chip-count {
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  padding: 2px 7px;
  border-radius: 999px;
  background: #f1f5f9;
}

.cat-popup {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .22s ease, visibility .22s ease;
}
.cat-popup.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
body.cat-popup-open { overflow: hidden; }
.cat-popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, .42);
  backdrop-filter: blur(4px);
}
.cat-popup-panel {
  position: relative;
  width: min(920px, 100%);
  max-height: min(86vh, 640px);
  overflow-y: auto;
  padding: 22px 22px 18px;
  border-radius: calc(var(--radius) + 4px);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  transform: translateY(8px) scale(.985);
  transition: transform .22s ease;
}
.cat-popup.is-open .cat-popup-panel {
  transform: translateY(0) scale(1);
}
.cat-popup-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}
.cat-popup-head h3 {
  margin: 4px 0 0;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.25;
}
.cat-popup-close {
  width: 32px; height: 32px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--muted);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: .2s ease;
}
.cat-popup-close:hover { border-color: var(--accent); color: var(--accent); }
.cat-popup-row {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(92px, 1fr));
  gap: 10px 12px;
  padding: 2px;
}
.cat-popup-item {
  text-align: center;
  text-decoration: none;
  color: inherit;
  padding: 10px 6px;
  border-radius: 14px;
  border: 1px solid transparent;
  transition: border-color .2s ease, background .2s ease;
}
.cat-popup-item:hover {
  background: #f8fafc;
  border-color: var(--line);
}
.cat-popup-item.is-focus {
  border-color: var(--accent);
  background: #fffbeb;
}
.cat-popup-icon {
  width: 52px; height: 52px;
  margin: 0 auto 8px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--surface);
  display: grid; place-items: center;
}
.cat-popup-icon svg { width: 22px; height: 22px; color: var(--tone-fg, var(--accent)); }
.cat-popup-icon--sky, .cat-popup-icon--mint, .cat-popup-icon--amber, .cat-popup-icon--rose,
.cat-popup-icon--violet, .cat-popup-icon--teal, .cat-popup-icon--orange, .cat-popup-icon--lime,
.cat-popup-icon--sand { background: var(--tone-bg); border-color: transparent; }
.cat-popup-label {
  display: block;
  min-height: 2.5em;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.25;
  color: var(--ink);
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.cat-popup-meta {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
}

@media (max-width: 640px) {
  .cat-chip { min-width: 132px; padding: 7px 10px; }
  .cat-popup { padding: 12px; align-items: end; }
  .cat-popup-panel {
    width: 100%;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    padding: 18px 16px 14px;
  }
}

/* About block */
.home-about { background: var(--surface); border-block: 1px solid var(--line-soft); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 56px); align-items: center; }
.about-media-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.about-media-collage {
  position: relative;
  min-height: 420px;
  isolation: isolate;
}
.about-collage-ring {
  position: absolute;
  inset: 8% 6% 14% 10%;
  border: 1px solid rgba(184, 134, 11, .28);
  border-radius: calc(var(--radius) + 8px);
  transform: rotate(-3deg);
  pointer-events: none;
  z-index: 0;
}
.about-collage-blob {
  position: absolute;
  top: -6%;
  right: -4%;
  width: 42%;
  height: 38%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(59,130,246,.14), transparent 70%);
  filter: blur(2px);
  animation: aboutBlobDrift 9s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}
@keyframes aboutBlobDrift {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-8px, 10px); }
}
.about-photo {
  position: relative;
  margin: 0;
  border-radius: calc(var(--radius) + 2px);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s cubic-bezier(.22, 1, .36, 1);
}
.about-photo:hover img { transform: scale(1.04); }
.about-photo--main {
  position: absolute;
  top: 0;
  left: 0;
  width: 58%;
  aspect-ratio: 4 / 5;
  z-index: 1;
  transform: rotate(-2deg);
  transition: transform .35s ease, box-shadow .35s ease;
}
.about-photo--main:hover { transform: rotate(-1deg) translateY(-4px); box-shadow: var(--shadow-lg); }
.about-photo--main img { min-height: 280px; object-position: center 25%; }
.about-photo--accent {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 62%;
  aspect-ratio: 5 / 4;
  z-index: 2;
  transform: rotate(2.5deg);
  transition: transform .35s ease, box-shadow .35s ease;
}
.about-photo--accent:hover { transform: rotate(1.5deg) translateY(-4px); box-shadow: var(--shadow-lg); }
.about-photo--accent img { min-height: 240px; }
.about-photo-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(15, 23, 42, .72);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .02em;
}
.about-collage-chip {
  position: absolute;
  top: 18%;
  right: 4%;
  z-index: 3;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  background: var(--surface-elevated);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  text-align: center;
  animation: aboutChipFloat 5s ease-in-out infinite;
}
.about-collage-chip strong {
  display: block;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  color: var(--accent);
}
.about-collage-chip span {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .04em;
}
@keyframes aboutChipFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.about-photo--primary,
.about-photo--secondary { min-height: 220px; }
.about-photo--primary img,
.about-photo--secondary img { min-height: 220px; }
.about-photo--secondary img { object-position: center 20%; }
.about-badge {
  position: absolute; left: 16px; bottom: 16px;
  display: flex; align-items: center; gap: 10px;
  padding: 12px 14px; border-radius: var(--radius-sm);
  background: rgba(255,255,255,.92); backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
}
.about-badge-icon {
  width: 42px; height: 42px; border-radius: 12px;
  display: grid; place-items: center; background: var(--accent-soft); color: var(--accent);
}
.about-badge-icon svg { width: 20px; height: 20px; }
.about-badge strong { display: block; font-size: 14px; }
.about-badge span { display: block; font-size: 12px; color: var(--muted); margin-top: 2px; }
.check-list { list-style: none; margin: 0 0 24px; padding: 0; display: grid; gap: 12px; }
.check-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 15px; color: var(--ink-2);
}
.check-icon {
  width: 22px; height: 22px; border-radius: 999px;
  display: grid; place-items: center; flex-shrink: 0;
  background: rgba(21, 128, 61, .12); color: var(--ok);
}
.check-icon svg { width: 14px; height: 14px; }

/* About page */
.about-hero {
  padding: 40px 0 36px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.about-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 40px;
  align-items: center;
}
.about-hero-copy h1 {
  font-size: clamp(30px, 4vw, 44px);
  max-width: 18ch;
  margin-top: 8px;
}
.about-hero-lead {
  margin: 16px 0 0;
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-soft);
  max-width: 52ch;
}
.about-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.about-hero-media {
  position: relative;
  border-radius: calc(var(--radius) + 6px);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
}
.about-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.about-stats-band {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}
.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}
.about-stat-card {
  padding: 22px 20px;
  background: var(--surface-elevated);
  text-align: center;
}
.about-stats-grid .about-stat-card:nth-child(1) { background: linear-gradient(180deg, #fff, #eff6ff); }
.about-stats-grid .about-stat-card:nth-child(2) { background: linear-gradient(180deg, #fff, #fffbeb); }
.about-stats-grid .about-stat-card:nth-child(3) { background: linear-gradient(180deg, #fff, #ecfdf5); }
.about-stats-grid .about-stat-card:nth-child(4) { background: linear-gradient(180deg, #fff, #f5f3ff); }
.about-stat-card strong {
  display: block;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--ink);
}
.about-stat-card span {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
}

.about-section { padding: 56px 0; }
.about-section--muted { background: #f1f5f9; }
.about-section--surface { background: var(--surface); border-block: 1px solid var(--line); }
.about-section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.about-section-head--center {
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.about-section-head h2 {
  font-size: clamp(24px, 3.2vw, 32px);
  margin-top: 6px;
}
.about-section-lead {
  margin: 0;
  max-width: 52ch;
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.65;
}
.about-section-head--center .about-section-lead { margin-top: 10px; }

.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.about-split--reverse .about-panel--image { order: -1; }
.about-panel--copy h2 {
  font-size: clamp(24px, 3vw, 30px);
  margin-top: 6px;
  max-width: 22ch;
}
.about-text {
  margin: 14px 0 0;
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.7;
}
.about-panel--copy .check-list { margin-top: 20px; }
.about-panel--image {
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.about-panel--image img {
  width: 100%;
  min-height: 360px;
  object-fit: cover;
  display: block;
}

.about-why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.about-why-card {
  padding: 22px 20px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.about-why-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--accent-soft);
  color: var(--accent);
  margin-bottom: 14px;
}
.about-why-icon svg { width: 20px; height: 20px; }
.about-why-card h3 {
  font-size: 17px;
  margin-bottom: 8px;
}
.about-why-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-soft);
}

.about-brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 12px;
}
.about-brand-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 16px 12px;
  border-radius: var(--radius-sm);
  background: var(--surface);
  border: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.about-brand-chip:hover {
  border-color: #cbd5e1;
  box-shadow: var(--shadow-sm);
}
.about-brand-chip__logo {
  width: 100%;
  height: 56px;
  display: grid;
  place-items: center;
}
.about-brand-chip__logo img {
  max-width: 100%;
  max-height: 44px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.about-brand-chip__logo em {
  font-style: normal;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--muted);
}
.about-brand-chip__name {
  font-size: 11px;
  font-weight: 600;
  text-align: center;
  color: var(--text-soft);
  line-height: 1.25;
}

.about-services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.about-service-card {
  padding: 22px 20px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
}
.about-service-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: #f8fafc;
  border: 1px solid var(--line);
  color: var(--accent);
  margin-bottom: 14px;
}
.about-service-icon svg { width: 20px; height: 20px; }
.about-service-card h3 { font-size: 17px; margin-bottom: 8px; }
.about-service-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-soft);
}

.about-timeline {
  display: grid;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
}
.about-timeline-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
  padding: 22px 24px;
  border-bottom: 1px solid var(--line);
}
.about-timeline-item:last-child { border-bottom: 0; }
.about-timeline-year {
  font-size: 22px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -.02em;
}
.about-timeline-item h3 {
  font-size: 17px;
  margin-bottom: 6px;
}
.about-timeline-item p {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-soft);
}

/* About hub — subnav, dropdown, sub-pages */
.about-subnav {
  padding: 10px 0;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.about-subnav-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}
.about-subnav-card {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 8px 10px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fff;
  text-decoration: none;
  color: inherit;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.about-subnav-card:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}
.about-subnav-card.is-active {
  border-color: rgba(184, 134, 11, .35);
  box-shadow: 0 0 0 1px rgba(184, 134, 11, .12);
}
.about-subnav-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: #f8fafc;
  color: var(--accent);
}
.about-subnav-icon svg { width: 16px; height: 16px; }
.about-subnav-copy {
  display: grid;
  gap: 1px;
  min-width: 0;
}
.about-subnav-copy strong {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--ink);
}
.about-subnav-copy em {
  font-style: normal;
  font-size: 10px;
  color: var(--muted);
  line-height: 1.2;
}
.about-subnav-card--sky { background: linear-gradient(135deg, #fff 0%, #eff6ff 100%); }
.about-subnav-card--sky .about-subnav-icon { background: rgba(59,130,246,.12); color: var(--tone-sky); }
.about-subnav-card--violet { background: linear-gradient(135deg, #fff 0%, #f5f3ff 100%); }
.about-subnav-card--violet .about-subnav-icon { background: rgba(139,92,246,.12); color: var(--tone-violet); }
.about-subnav-card--mint { background: linear-gradient(135deg, #fff 0%, #ecfdf5 100%); }
.about-subnav-card--mint .about-subnav-icon { background: rgba(16,185,129,.12); color: var(--tone-mint); }
.about-subnav-card--gold { background: linear-gradient(135deg, #fff 0%, #fffbeb 100%); }
.about-subnav-card--gold .about-subnav-icon { background: rgba(184,134,11,.12); color: var(--tone-amber); }
.about-subnav-card--rose { background: linear-gradient(135deg, #fff 0%, #fff1f2 100%); }
.about-subnav-card--rose .about-subnav-icon { background: rgba(244,63,94,.12); color: var(--tone-rose); }

.nav-dropdown {
  position: relative;
  flex-shrink: 0;
}
.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: none;
  background: none;
  font: inherit;
  cursor: pointer;
  padding: 0 9px;
  min-height: 36px;
  border-radius: 10px;
  color: var(--text-soft);
  white-space: nowrap;
  transition: color .2s ease, background .2s ease;
}
.nav-dropdown-toggle:hover {
  color: var(--ink);
  background: rgba(15, 23, 42, .04);
}
.nav-dropdown-toggle.is-active {
  color: var(--ink);
  background: rgba(184, 134, 11, .12);
  font-weight: 600;
}
.nav-dropdown.is-open { z-index: 1301; }
.nav-dropdown.is-open .nav-dropdown-toggle {
  color: var(--ink);
  background: rgba(184, 134, 11, .12);
}
.nav-dropdown-chevron {
  width: 11px;
  height: 11px;
  color: var(--muted);
  transition: transform .2s ease;
  flex-shrink: 0;
  margin-left: -2px;
}
.nav-dropdown.is-open .nav-dropdown-chevron { transform: rotate(180deg); }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 1200;
  min-width: 280px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow-lg);
}
.nav-dropdown-menu[hidden] { display: none; }
.nav-dropdown-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 10px;
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: background .2s ease;
}
.nav-dropdown-card:hover { background: #f8fafc; }
.nav-dropdown-card.is-active { background: rgba(184, 134, 11, .08); }
.nav-dropdown-card-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.nav-dropdown-card-icon svg { width: 16px; height: 16px; }
.nav-dropdown-card-copy { display: grid; gap: 1px; min-width: 0; }
.nav-dropdown-card-copy strong { font-size: 13px; font-weight: 600; line-height: 1.2; }
.nav-dropdown-card-copy em { font-style: normal; font-size: 11px; color: var(--muted); }
.nav-dropdown-card-check {
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  color: var(--accent);
  opacity: 0;
}
.nav-dropdown-card-check svg { width: 13px; height: 13px; }
.nav-dropdown-card.is-active .nav-dropdown-card-check { opacity: 1; }
.nav-dropdown-card--sky .nav-dropdown-card-icon { background: rgba(59,130,246,.12); color: var(--tone-sky); }
.nav-dropdown-card--violet .nav-dropdown-card-icon { background: rgba(139,92,246,.12); color: var(--tone-violet); }
.nav-dropdown-card--mint .nav-dropdown-card-icon { background: rgba(16,185,129,.12); color: var(--tone-mint); }
.nav-dropdown-card--gold .nav-dropdown-card-icon { background: rgba(184,134,11,.12); color: var(--tone-amber); }
.nav-dropdown-card--rose .nav-dropdown-card-icon { background: rgba(244,63,94,.12); color: var(--tone-rose); }

.mobile-about { margin: 4px 0; }
.mobile-about-toggle {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 14px 12px;
  border: none;
  border-radius: var(--radius-sm);
  background: transparent;
  color: rgba(255,255,255,.9);
  font: inherit;
  font-size: 17px;
  font-weight: 500;
  cursor: pointer;
  text-align: left;
}
.mobile-about-toggle.is-active,
.mobile-about-toggle.is-open { background: rgba(255,255,255,.06); }
.mobile-about-chevron {
  width: 16px;
  height: 16px;
  margin-left: auto;
  transition: transform .2s ease;
}
.mobile-about-toggle.is-open .mobile-about-chevron { transform: rotate(180deg); }
.mobile-about-menu {
  display: grid;
  gap: 6px;
  padding: 0 0 8px 8px;
}
.mobile-about-menu[hidden] { display: none; }
.mobile-about-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.88);
  text-decoration: none;
}
.mobile-about-item.is-active {
  border-color: rgba(212,160,23,.45);
  background: rgba(255,255,255,.12);
}
.mobile-about-item-icon {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: grid;
  place-items: center;
}
.mobile-about-item-icon svg { width: 15px; height: 15px; }
.mobile-about-copy { display: grid; gap: 2px; }
.mobile-about-copy strong { font-size: 13px; font-weight: 600; }
.mobile-about-copy em { font-style: normal; font-size: 11px; color: rgba(255,255,255,.58); }
.mobile-about-item--sky .mobile-about-item-icon { background: rgba(59,130,246,.2); color: #bfdbfe; }
.mobile-about-item--violet .mobile-about-item-icon { background: rgba(139,92,246,.2); color: #ddd6fe; }
.mobile-about-item--mint .mobile-about-item-icon { background: rgba(16,185,129,.2); color: #a7f3d0; }
.mobile-about-item--gold .mobile-about-item-icon { background: rgba(184,134,11,.2); color: #fde68a; }
.mobile-about-item--rose .mobile-about-item-icon { background: rgba(244,63,94,.2); color: #fecdd3; }

.about-page-hero {
  padding: 28px 0 24px;
  border-bottom: 1px solid var(--line);
}
.about-page-hero-inner {
  max-width: 640px;
}
.about-page-hero-inner h1 {
  margin-top: 6px;
  font-size: clamp(26px, 3.5vw, 36px);
  line-height: 1.15;
}
.about-page-hero-inner p {
  margin: 10px 0 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-soft);
}
.about-page-hero--sky { background: linear-gradient(180deg, #fff, #eff6ff); }
.about-page-hero--violet { background: linear-gradient(180deg, #fff, #f5f3ff); }
.about-page-hero--mint { background: linear-gradient(180deg, #fff, #ecfdf5); }
.about-page-hero--gold { background: linear-gradient(180deg, #fff, #fffbeb); }
.about-page-hero--rose { background: linear-gradient(180deg, #fff, #fff1f2); }
.about-page-section { padding: 32px 0; }
.about-page-section--soft { background: #f8fafc; }

.about-tone-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.about-tone-grid--trio { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.about-tone-card {
  padding: 18px 16px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.about-tone-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
}
.about-tone-card-icon svg { width: 18px; height: 18px; }
.about-tone-card h3 {
  font-size: 16px;
  margin-bottom: 6px;
  line-height: 1.25;
}
.about-tone-card p {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-soft);
}
.about-tone-card--compact { text-align: center; padding: 20px 14px; }
.about-tone-card--compact h3 { font-size: 24px; margin-bottom: 4px; }
.about-tone-card--compact p { font-size: 12px; }
.about-tone-card--sky { background: linear-gradient(180deg, #fff, #eff6ff); }
.about-tone-card--sky .about-tone-card-icon { background: rgba(59,130,246,.12); color: var(--tone-sky); }
.about-tone-card--mint { background: linear-gradient(180deg, #fff, #ecfdf5); }
.about-tone-card--mint .about-tone-card-icon { background: rgba(16,185,129,.12); color: var(--tone-mint); }
.about-tone-card--amber { background: linear-gradient(180deg, #fff, #fffbeb); }
.about-tone-card--amber .about-tone-card-icon { background: rgba(217,119,6,.12); color: var(--tone-sand); }
.about-tone-card--violet { background: linear-gradient(180deg, #fff, #f5f3ff); }
.about-tone-card--violet .about-tone-card-icon { background: rgba(139,92,246,.12); color: var(--tone-violet); }
.about-tone-card--teal { background: linear-gradient(180deg, #fff, #f0fdfa); }
.about-tone-card--teal .about-tone-card-icon { background: rgba(20,184,166,.12); color: var(--tone-teal); }
.about-tone-card--rose { background: linear-gradient(180deg, #fff, #fff1f2); }
.about-tone-card--rose .about-tone-card-icon { background: rgba(244,63,94,.12); color: var(--tone-rose); }
.about-tone-card--gold { background: linear-gradient(180deg, #fff, #fffbeb); }
.about-tone-card--gold .about-tone-card-icon { background: rgba(184,134,11,.12); color: var(--tone-amber); }
.about-tone-card--orange { background: linear-gradient(180deg, #fff, #ffedd5); }
.about-tone-card--orange .about-tone-card-icon { background: rgba(234,88,12,.12); color: var(--tone-orange); }

.about-mini-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
.about-mini-stat {
  padding: 16px 12px;
  border-radius: 14px;
  border: 1px solid var(--line);
  text-align: center;
  background: #fff;
}
.about-mini-stat strong {
  display: block;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.1;
}
.about-mini-stat span {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  color: var(--muted);
  font-weight: 600;
}
.about-mini-stat--sky { background: linear-gradient(180deg, #fff, #eff6ff); }
.about-mini-stat--amber { background: linear-gradient(180deg, #fff, #fffbeb); }
.about-mini-stat--mint { background: linear-gradient(180deg, #fff, #ecfdf5); }
.about-mini-stat--violet { background: linear-gradient(180deg, #fff, #f5f3ff); }

.about-faq-list { display: grid; gap: 8px; }
.about-faq-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
}
.about-faq-trigger {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
  width: 100%;
  padding: 12px 14px;
  border: none;
  background: transparent;
  font: inherit;
  text-align: left;
  cursor: pointer;
  color: var(--ink);
}
.about-faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.about-faq-icon svg { width: 15px; height: 15px; }
.about-faq-question {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
}
.about-faq-chevron {
  width: 16px;
  height: 16px;
  color: var(--muted);
  transition: transform .2s ease;
}
.about-faq-item.is-open .about-faq-chevron { transform: rotate(180deg); }
.about-faq-panel {
  padding: 0 14px 14px 56px;
}
.about-faq-panel[hidden] { display: none; }
.about-faq-panel p {
  margin: 0;
  font-size: 13px;
  line-height: 1.65;
  color: var(--text-soft);
}
.about-faq-item--sky .about-faq-icon { background: rgba(59,130,246,.12); color: var(--tone-sky); }
.about-faq-item--mint .about-faq-icon { background: rgba(16,185,129,.12); color: var(--tone-mint); }
.about-faq-item--amber .about-faq-icon { background: rgba(217,119,6,.12); color: var(--tone-sand); }
.about-faq-item--violet .about-faq-icon { background: rgba(139,92,246,.12); color: var(--tone-violet); }
.about-faq-item--teal .about-faq-icon { background: rgba(20,184,166,.12); color: var(--tone-teal); }
.about-faq-item--rose .about-faq-icon { background: rgba(244,63,94,.12); color: var(--tone-rose); }
.about-faq-item--gold .about-faq-icon { background: rgba(184,134,11,.12); color: var(--tone-amber); }
.about-faq-item--orange .about-faq-icon { background: rgba(234,88,12,.12); color: var(--tone-orange); }

.about-rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.85);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.about-rating-stars { color: #f59e0b; letter-spacing: .06em; font-size: 13px; }
.about-rating-badge strong { font-size: 15px; }
.about-rating-badge span:last-child { font-size: 12px; color: var(--muted); font-weight: 600; }

.about-review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.about-review-card {
  padding: 16px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.about-review-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.about-review-stars { color: #f59e0b; font-size: 12px; letter-spacing: .04em; }
.about-review-quote {
  font-size: 28px;
  line-height: 1;
  color: rgba(184,134,11,.35);
  font-family: Georgia, serif;
}
.about-review-card p {
  margin: 0 0 12px;
  font-size: 13px;
  line-height: 1.65;
  color: var(--text-soft);
}
.about-review-author strong {
  display: block;
  font-size: 13px;
  margin-bottom: 2px;
}
.about-review-author span {
  font-size: 11px;
  color: var(--muted);
}
.about-review-card--sky { background: linear-gradient(180deg, #fff, #eff6ff); }
.about-review-card--mint { background: linear-gradient(180deg, #fff, #ecfdf5); }
.about-review-card--amber { background: linear-gradient(180deg, #fff, #fffbeb); }
.about-review-card--violet { background: linear-gradient(180deg, #fff, #f5f3ff); }
.about-review-card--teal { background: linear-gradient(180deg, #fff, #f0fdfa); }
.about-review-card--rose { background: linear-gradient(180deg, #fff, #fff1f2); }
.about-review-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 20px;
}

/* Services */
.home-services { background: linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%); }
.svc-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.svc-card {
  padding: 24px; border-radius: var(--radius);
  background: var(--surface); border: 1px solid var(--line);
  box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease;
}
.svc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.svc-icon {
  width: 48px; height: 48px; border-radius: 14px;
  display: grid; place-items: center; margin-bottom: 16px;
  background: linear-gradient(135deg, var(--accent-soft), rgba(255,255,255,0));
  color: var(--accent);
}
.svc-icon svg { width: 22px; height: 22px; }
.svc-no {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--muted);
}
.svc-excerpt {
  margin: 0 0 10px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.55;
  color: var(--text-soft);
}
.svc-body {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
}
.svc-card h3 { font-size: 17px; margin-bottom: 8px; font-weight: 600; }

/* Product cards */
.pcard-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.pcard-grid--home { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.pcard-grid--catalog {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}
.pcard-grid--catalog .pcard {
  content-visibility: auto;
  contain-intrinsic-size: 280px 320px;
  border-radius: calc(var(--radius) + 1px);
}
.pcard-grid--catalog .pcard:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(15, 23, 42, .07);
}
.pcard-grid--catalog .pcard-media {
  aspect-ratio: 4 / 3;
}
.pcard-grid--catalog .pcard-share {
  top: 7px;
  right: 7px;
  width: 28px;
  height: 28px;
}
.pcard-grid--catalog .pcard-share svg { width: 13px; height: 13px; }
.pcard-grid--catalog .pcard-views {
  left: 7px;
  bottom: 7px;
  padding: 3px 7px;
  font-size: 10px;
  gap: 4px;
}
.pcard-grid--catalog .pcard-views svg { width: 11px; height: 11px; }
.pcard-grid--catalog .pcard-body {
  padding: 10px 11px 12px;
  gap: 4px;
}
.pcard-grid--catalog .pcard-meta {
  gap: 4px;
  min-height: 14px;
}
.pcard-grid--catalog .pcard-brand {
  font-size: 9px;
  letter-spacing: .05em;
}
.pcard-grid--catalog .pcard-year {
  min-height: 18px;
  padding: 0 6px;
  font-size: 9px;
}
.pcard-grid--catalog .pcard-segment {
  font-size: 10px;
}
.pcard-grid--catalog .pcard-segment::before {
  margin-right: 4px;
}
.pcard-grid--catalog .pcard-title {
  font-size: 13px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.pcard-grid--catalog .pcard-sub {
  font-size: 11px;
  line-height: 1.4;
  -webkit-line-clamp: 1;
}
.pcard-grid--catalog .pcard-link {
  font-size: 11px;
  gap: 4px;
  padding-top: 2px;
}
.pcard-grid--catalog .pcard-link svg { width: 12px; height: 12px; }

@media (max-width: 1280px) {
  .pcard-grid--catalog { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
@media (max-width: 1024px) {
  .pcard-grid--catalog { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.pcard {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 2px);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.pcard-hit {
  display: flex;
  flex-direction: column;
  flex: 1;
  color: inherit;
  text-decoration: none;
}
.pcard-share {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 3;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 16px rgba(15, 23, 42, .12);
  color: var(--ink);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
}
.pcard-share svg { width: 16px; height: 16px; }
.pcard-share:hover {
  transform: scale(1.06);
  background: #fff;
  color: var(--accent);
  box-shadow: 0 8px 22px rgba(15, 23, 42, .16);
}
.pcard:hover {
  transform: translateY(-3px);
  border-color: #cbd5e1;
  box-shadow: 0 16px 40px rgba(15, 23, 42, .08);
}
.pcard-media {
  position: relative;
  aspect-ratio: 16 / 10;
  background: linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
  overflow: hidden;
}
.pcard-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}
.pcard:hover .pcard-media img { transform: scale(1.04); }
.pcard-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: .08em;
  color: rgba(15, 23, 42, .18);
}
.pcard-views {
  position: absolute;
  left: 10px;
  bottom: 10px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(15, 23, 42, .62);
  backdrop-filter: blur(4px);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
  z-index: 1;
}
.pcard-views svg {
  width: 13px;
  height: 13px;
  opacity: .92;
}
.pcard-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px 18px 20px;
  flex: 1;
}
.pcard-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  min-height: 18px;
}
.pcard-brand {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--accent);
}
.pcard-year {
  display: inline-flex;
  align-items: center;
  min-height: 20px;
  padding: 0 8px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--ink);
  background: #eef2f7;
  border: 1px solid rgba(15, 23, 42, .08);
}
.pcard-segment {
  font-size: 11px;
  font-weight: 500;
  color: var(--muted);
}
.pcard-segment::before {
  content: "·";
  margin-right: 8px;
  color: #cbd5e1;
}
.pcard-title {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -.02em;
  line-height: 1.25;
  color: var(--ink);
}
.pcard-sub {
  margin: 0;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.pcard-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  padding-top: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  transition: color .2s ease, gap .2s ease;
}
.pcard-link svg {
  width: 14px;
  height: 14px;
  color: var(--accent);
  transition: transform .2s ease;
}
.pcard:hover .pcard-link { color: var(--accent); }
.pcard:hover .pcard-link svg { transform: translateX(3px); }

/* Share modal */
.share-modal {
  position: fixed;
  inset: 0;
  z-index: 1400;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .22s ease, visibility .22s ease;
}
.share-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
body.share-modal-open { overflow: hidden; }
.share-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, .52);
  backdrop-filter: blur(6px);
}
.share-modal-panel {
  position: relative;
  width: min(480px, 100%);
  max-height: min(90vh, 720px);
  overflow-y: auto;
  padding: 22px;
  border-radius: calc(var(--radius) + 8px);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 28px 80px rgba(15, 23, 42, .22);
  transform: translateY(12px) scale(.98);
  transition: transform .24s ease;
}
.share-modal.is-open .share-modal-panel {
  transform: translateY(0) scale(1);
}
.share-modal-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}
.share-modal-head h2 {
  margin: 4px 0 0;
  font-size: 22px;
  font-weight: 700;
}
.share-modal-close {
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--muted);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}
.share-modal-close:hover { border-color: var(--accent); color: var(--accent); }
.share-preview {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 14px;
  padding: 12px;
  margin-bottom: 18px;
  border-radius: 16px;
  background: linear-gradient(135deg, #f8fafc, #fff7ed);
  border: 1px solid var(--line);
}
.share-preview-media {
  width: 88px;
  height: 66px;
  border-radius: 12px;
  overflow: hidden;
  background: #e2e8f0;
}
.share-preview-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.share-preview-copy strong {
  display: block;
  font-size: 15px;
  line-height: 1.3;
  margin-bottom: 4px;
}
.share-preview-copy p {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.share-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 16px;
}
.share-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 12px 6px;
  border: 1px solid transparent;
  border-radius: 16px;
  background: transparent;
  color: inherit;
  font: inherit;
  font-size: 11px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background .18s ease, border-color .18s ease, transform .18s ease;
}
.share-option:hover {
  background: #f8fafc;
  border-color: var(--line);
  transform: translateY(-2px);
}
.share-option-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: 0 6px 18px rgba(15, 23, 42, .12);
}
.share-option-icon svg { width: 22px; height: 22px; }
.share-option-label {
  text-align: center;
  line-height: 1.2;
  color: var(--ink);
}
.share-copy-row {
  display: flex;
  gap: 8px;
  padding: 6px;
  border-radius: 14px;
  background: #f8fafc;
  border: 1px solid var(--line);
}
.share-copy-input {
  flex: 1;
  min-width: 0;
  border: none;
  background: transparent;
  padding: 10px 12px;
  font: inherit;
  font-size: 13px;
  color: var(--muted);
}
.share-copy-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  border: none;
  border-radius: 10px;
  background: var(--ink);
  color: #fff;
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background .2s ease;
}
.share-copy-btn svg { width: 15px; height: 15px; }
.share-copy-btn:hover { background: #000; }
.share-copy-btn.is-copied { background: #15803d; }
.share-toast {
  margin: 12px 0 0;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: #15803d;
}

@media (max-width: 480px) {
  .share-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .share-copy-row { flex-direction: column; }
  .share-copy-btn { justify-content: center; }
}

/* Review modal */
.review-modal {
  position: fixed;
  inset: 0;
  z-index: 1400;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .22s ease, visibility .22s ease;
}
.review-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
body.review-modal-open { overflow: hidden; }
.review-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, .52);
  backdrop-filter: blur(6px);
}
.review-modal-panel {
  position: relative;
  width: min(520px, 100%);
  max-height: min(92vh, 760px);
  overflow-y: auto;
  padding: 22px;
  border-radius: calc(var(--radius) + 8px);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 28px 80px rgba(15, 23, 42, .22);
  transform: translateY(12px) scale(.98);
  transition: transform .24s ease;
}
.review-modal.is-open .review-modal-panel {
  transform: translateY(0) scale(1);
}
.review-modal-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}
.review-modal-head h2 {
  margin: 4px 0 6px;
  font-size: 22px;
  font-weight: 700;
}
.review-modal-head p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}
.review-modal-close {
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--muted);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  flex-shrink: 0;
}
.review-modal-close:hover { border-color: var(--accent); color: var(--accent); }
.review-rating {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 14px;
  padding: 14px 16px;
  margin-bottom: 16px;
  border-radius: 14px;
  background: linear-gradient(135deg, #fffbeb, #fff);
  border: 1px solid rgba(184, 134, 11, .18);
}
.review-rating-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}
.review-stars {
  display: inline-flex;
  gap: 4px;
}
.review-star {
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 10px;
  background: rgba(15, 23, 42, .04);
  color: rgba(184, 134, 11, .35);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, transform .15s ease;
}
.review-star:hover,
.review-star.is-active {
  background: rgba(184, 134, 11, .14);
  color: var(--accent);
}
.review-star:hover { transform: translateY(-1px); }
.review-rating-value {
  margin-left: auto;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
}
.review-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}
.review-form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 16px;
}
.review-form-actions .btn svg { width: 14px; height: 14px; }
.review-form-note {
  margin: 12px 0 0;
  font-size: 11px;
  color: var(--muted);
  text-align: center;
}
.review-form-error {
  margin: 12px 0 0;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(185, 28, 28, .08);
  color: var(--danger);
  font-size: 13px;
  text-align: center;
}
.review-form-error[hidden] { display: none; }
.review-success {
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: 28px 12px 8px;
  text-align: center;
}
.review-success[hidden] { display: none; }
.review-success-icon {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(16, 185, 129, .12);
  color: var(--ok);
}
.review-success-icon svg { width: 26px; height: 26px; }
.review-success h3 {
  margin: 0;
  font-size: 20px;
}
.review-success p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
  max-width: 34ch;
}
@media (max-width: 640px) {
  .review-form-grid { grid-template-columns: 1fr; }
  .review-rating-value { margin-left: 0; width: 100%; }
}

/* CTA / Promo banner */
.promo-banner {
  padding: 28px 0 36px;
}
.promo-banner-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px 28px;
  align-items: center;
  padding: 22px 24px;
  border-radius: 18px;
  background: linear-gradient(128deg, #0c1424 0%, #152238 48%, #111827 100%);
  border: 1px solid rgba(255, 255, 255, .09);
  box-shadow:
    0 20px 44px rgba(15, 23, 42, .18),
    inset 0 1px 0 rgba(255, 255, 255, .06);
  overflow: hidden;
}
.promo-banner-glow {
  position: absolute;
  inset: -30% auto auto 55%;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(212, 160, 23, .16) 0%, transparent 68%);
  pointer-events: none;
}
.promo-banner-copy {
  position: relative;
  z-index: 1;
}
.promo-banner-badge {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #f0c14a;
  background: rgba(212, 160, 23, .1);
  border: 1px solid rgba(212, 160, 23, .24);
}
.promo-banner-copy h2 {
  color: #fff;
  font-size: clamp(20px, 2.6vw, 26px);
  font-weight: 600;
  line-height: 1.22;
  margin: 8px 0 6px;
  max-width: 24ch;
}
.promo-banner-copy p {
  margin: 0 0 14px;
  max-width: 46ch;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, .72);
}
.promo-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.promo-banner-stats {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(100px, 118px));
  gap: 8px;
}
.promo-stat {
  padding: 11px 10px;
  border-radius: 12px;
  text-align: center;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  backdrop-filter: blur(6px);
  transition: border-color .2s ease, background .2s ease;
}
.promo-stat:hover {
  background: rgba(255, 255, 255, .06);
  border-color: rgba(255, 255, 255, .14);
}
.promo-stat strong {
  display: block;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
  letter-spacing: -.01em;
}
.promo-stat span {
  display: block;
  margin-top: 3px;
  font-size: 10px;
  font-weight: 500;
  line-height: 1.3;
  color: rgba(255, 255, 255, .52);
}
.promo-stat:nth-child(1) { border-color: rgba(147, 197, 253, .18); }
.promo-stat:nth-child(1) strong { color: #bfdbfe; }
.promo-stat:nth-child(2) { border-color: rgba(252, 211, 77, .2); }
.promo-stat:nth-child(2) strong { color: #fde68a; }
.promo-stat:nth-child(3) { border-color: rgba(110, 231, 183, .18); }
.promo-stat:nth-child(3) strong { color: #a7f3d0; }
.promo-stat:nth-child(4) { border-color: rgba(196, 181, 253, .18); }
.promo-stat:nth-child(4) strong { color: #ddd6fe; }

/* Legacy hero (brand pages) */
.hero {
  position: relative; min-height: 62vh; color: #fff; overflow: hidden; background: var(--dark);
}
.hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .58; }
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(115deg, rgba(7,12,24,.9), rgba(7,12,24,.35));
}
.hero .wrap { position: relative; z-index: 2; }
.hero-copy { position: relative; z-index: 2; padding: 72px 0 40px; max-width: 760px; }
.hero h1 { font-size: clamp(32px, 5vw, 52px); margin-bottom: 16px; color: #fff; font-weight: 600; line-height: 1.15; }
.hero p { font-size: 16px; max-width: 48ch; color: rgba(255,255,255,.82); line-height: 1.65; }
.hero-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255,255,255,.12);
}
.hero-stats div { padding: 18px 0; border-right: 1px solid rgba(255,255,255,.12); }
.hero-stats div:last-child { border-right: 0; }
.hero-stats b { display: block; font-size: 26px; font-weight: 600; }
.hero-stats span { color: rgba(255,255,255,.65); font-size: 12px; font-weight: 500; }
.kicker { font-size: 13px; font-weight: 600; letter-spacing: 0; color: var(--accent-2); margin-bottom: 12px; }

/* Generic cards */
.brand-card, .product-card, .service-card, .info-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; transition: .25s ease; box-shadow: var(--shadow-sm);
}
.brand-card:hover, .product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

/* Brand listing cards */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.brand-card--page {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
}
.brand-card--page:hover { transform: none; box-shadow: var(--shadow-sm); }
.brand-card__main {
  display: flex;
  flex-direction: column;
  flex: 1;
  color: inherit;
  text-decoration: none;
  transition: background .2s ease;
}
.brand-card__main:hover { background: rgba(248, 250, 252, .65); }
.brand-card__logo {
  height: 136px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 28px;
  background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
  border-bottom: 1px solid var(--line);
}
.brand-card__logo img {
  display: block;
  max-width: min(100%, 180px);
  max-height: 72px;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center;
}
.brand-card__wordmark {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink);
  text-align: center;
  line-height: 1.25;
}
.brand-card__body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px 20px 16px;
  flex: 1;
}
.brand-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.brand-card__meta {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--muted);
}
.brand-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(184, 134, 11, .12);
  color: var(--accent);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
}
.brand-card__badge svg { width: 12px; height: 12px; }
.brand-card__title {
  font-size: 19px;
  font-weight: 600;
  line-height: 1.25;
  margin: 0;
}
.brand-card__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-soft);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.brand-card__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: auto;
  padding-top: 4px;
}
.brand-card__stat {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  background: var(--paper);
  border: 1px solid var(--line);
}
.brand-card__stat-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: rgba(59, 130, 246, .1);
  color: var(--tone-sky);
}
.brand-card__stat:nth-child(2) .brand-card__stat-icon {
  background: rgba(184, 134, 11, .12);
  color: var(--accent);
}
.brand-card__stat-icon svg { width: 16px; height: 16px; }
.brand-card__stat-copy {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}
.brand-card__stat-copy strong {
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  color: var(--ink);
}
.brand-card__stat-copy em {
  font-style: normal;
  font-size: 11px;
  font-weight: 500;
  color: var(--muted);
  line-height: 1.2;
}
.brand-card__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
  background: #fafbfc;
}
.brand-card__action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 48px;
  padding: 0 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-soft);
  text-decoration: none;
  transition: background .2s ease, color .2s ease;
}
.brand-card__action + .brand-card__action { border-left: 1px solid var(--line); }
.brand-card__action svg { width: 15px; height: 15px; flex-shrink: 0; }
.brand-card__action svg:last-child {
  width: 14px;
  height: 14px;
  margin-left: -2px;
  opacity: .55;
  transition: transform .2s ease, opacity .2s ease;
}
.brand-card__action:hover {
  background: var(--surface);
  color: var(--ink);
}
.brand-card__action:hover svg:last-child {
  opacity: 1;
  transform: translateX(2px);
}
.brand-card__action--primary {
  color: var(--ink);
}
.brand-card__action--primary:hover {
  background: rgba(184, 134, 11, .08);
  color: var(--accent);
}
.brand-card__actions:has(.brand-card__action:only-child) {
  grid-template-columns: 1fr;
}

.product-card .visual { height: 210px; background: #e2e8f0; overflow: hidden; }
.product-card img { width: 100%; height: 100%; object-fit: cover; }
.product-card .body, .service-card { padding: 20px; }
.card-title { font-size: 19px; margin-bottom: 8px; font-weight: 600; line-height: 1.3; }
.service-no { font-size: 22px; font-weight: 600; color: var(--accent); margin-bottom: 8px; }
.service-card { min-height: 200px; display: flex; flex-direction: column; border-radius: var(--radius); }

.page-hero { padding: 56px 0 24px; border-bottom: 1px solid var(--line-soft); }
.page-hero--compact { padding: 40px 0 20px; }
.page-hero-lead { max-width: 60ch; margin-top: 14px; font-size: 16px; line-height: 1.65; }
.section--tight { padding-top: 32px; padding-bottom: 56px; }
.page-hero h1 { font-size: clamp(30px, 4.5vw, 44px); font-weight: 600; line-height: 1.2; }
.split-media { min-height: 420px; border-radius: var(--radius); overflow: hidden; }
.split-media img { width: 100%; height: 100%; object-fit: cover; min-height: 420px; }

.logo-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 12px; }
.logo-item {
  height: 88px; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-sm); display: grid; place-items: center; padding: 12px;
}
.logo-item img { max-height: 38px; width: auto; object-fit: contain; }

/* Forms & contact */
.form {
  display: grid; gap: 12px;
  background: var(--surface-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.contact-page.section { padding-top: 28px; padding-bottom: 40px; }
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
  gap: 20px;
  align-items: start;
}
.contact-aside {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--surface-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow-sm);
}
.contact-aside-head h2 {
  font-size: clamp(20px, 2.2vw, 24px);
  margin: 4px 0 0;
  line-height: 1.2;
}
.contact-info-list {
  display: grid;
  gap: 8px;
}
.contact-info-item {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding: 10px 11px;
  border-radius: 12px;
  background: var(--paper);
  border: 1px solid var(--line);
  color: inherit;
  text-decoration: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.contact-info-item--link:hover {
  border-color: rgba(184, 134, 11, .28);
  box-shadow: var(--shadow-sm);
}
.contact-info-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.contact-info-icon svg {
  display: block;
  width: 17px;
  height: 17px;
}
.contact-info-icon--gold { background: rgba(184, 134, 11, .12); color: var(--accent); }
.contact-info-icon--rose { background: rgba(244, 63, 94, .12); color: var(--tone-rose); }
.contact-info-icon--sky { background: rgba(59, 130, 246, .12); color: var(--tone-sky); }
.contact-info-icon--mint { background: rgba(16, 185, 129, .12); color: var(--tone-mint); }
.contact-info-copy { min-width: 0; }
.contact-info-copy b {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2px;
}
.contact-info-copy span {
  display: block;
  font-size: 13px;
  line-height: 1.4;
  color: var(--ink-2);
}
.contact-map {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #e2e8f0;
  min-height: 150px;
}
.contact-map iframe {
  display: block;
  width: 100%;
  height: 150px;
  border: 0;
}
.contact-map-open {
  position: absolute;
  right: 8px;
  bottom: 8px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.94);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  font-size: 11px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
}
.contact-map-open svg { width: 13px; height: 13px; color: var(--accent); }
.contact-quick-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}
.contact-quick-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 40px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
}
.contact-quick-btn svg { display: block; width: 16px; height: 16px; flex-shrink: 0; }
.contact-quick-btn--dark { background: var(--ink); color: #fff; }
.contact-quick-btn--whatsapp { background: #25D366; color: #fff; }
.contact-quick-btn--waze { background: #33ccff; color: #fff; }
.contact-quick-btn--waze svg { fill: currentColor; }
.contact-quick-btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-sm); }

.contact-icon-input {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.contact-icon-input:focus-within {
  border-color: rgba(184, 134, 11, .4);
  box-shadow: 0 0 0 3px rgba(184, 134, 11, .08);
}
.contact-icon-input-icon {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--accent);
}
.contact-icon-input-icon svg { display: block; width: 15px; height: 15px; }
.contact-icon-input input,
.contact-icon-input select,
.contact-icon-input textarea {
  width: 100%;
  min-width: 0;
  border: none;
  background: transparent;
  font: inherit;
  font-size: 14px;
  color: var(--ink);
  padding: 8px 0;
  outline: none;
}
.contact-icon-input select { cursor: pointer; }
.contact-icon-input--area {
  align-items: flex-start;
  min-height: 0;
  padding-top: 8px;
  padding-bottom: 8px;
}
.contact-icon-input--area .contact-icon-input-icon { margin-top: 2px; }
.contact-icon-input--area textarea {
  min-height: 120px;
  resize: vertical;
  line-height: 1.5;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--surface-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow-sm);
}
.contact-form-head {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.contact-form-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: rgba(244, 63, 94, .12);
  color: var(--tone-rose);
}
.contact-form-icon svg { width: 20px; height: 20px; }
.contact-form-head h2 {
  font-size: 22px;
  margin: 0 0 4px;
  line-height: 1.2;
}
.contact-form-head p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-soft);
}
.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.contact-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.contact-field--full { grid-column: 1 / -1; }
.contact-field-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: var(--muted);
}
.contact-field-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.contact-field-wrap--textarea { align-items: flex-start; }
.contact-field-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: var(--muted);
  pointer-events: none;
  z-index: 1;
}
.contact-field-wrap--textarea .contact-field-icon {
  top: 16px;
  transform: none;
}
.contact-field-wrap--select::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--muted);
  border-bottom: 2px solid var(--muted);
  transform: translateY(-65%) rotate(45deg);
  pointer-events: none;
}
.contact-field-wrap input,
.contact-field-wrap select,
.contact-field-wrap textarea,
.form input, .form select, .form textarea {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.contact-field-wrap input,
.contact-field-wrap select {
  min-height: 48px;
  padding: 0 16px 0 44px;
  font-size: 15px;
}
.contact-field-wrap select {
  appearance: none;
  cursor: pointer;
  padding-right: 40px;
}
.contact-field-wrap textarea {
  min-height: 148px;
  padding: 14px 16px 14px 44px;
  resize: vertical;
  font-size: 15px;
  line-height: 1.55;
}
.contact-field-wrap input:focus,
.contact-field-wrap select:focus,
.contact-field-wrap textarea:focus,
.form input:focus, .form select:focus, .form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.contact-form-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 4px;
}
.contact-form-note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 0;
  max-width: 34ch;
  font-size: 12px;
  line-height: 1.5;
  color: var(--muted);
}
.contact-form-note svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--tone-mint);
}
.contact-form-submit {
  min-height: 48px;
  padding: 0 22px;
  gap: 8px;
}
.contact-form-submit svg { width: 16px; height: 16px; }
.contact-form-error {
  margin: -6px 0 0;
  font-size: 13px;
  color: #be123c;
}
.alert {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
}
.alert svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px; }
.alert--success {
  background: #ecfdf5;
  color: var(--ok);
  border: 1px solid #bbf7d0;
}
.alert--error {
  background: #fef2f2;
  color: #b91c1c;
  border: 1px solid #fecaca;
}

.contact-list {
  display: grid; gap: 16px;
  background: var(--surface-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.form input, .form select, .form textarea {
  width: 100%; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 14px 16px; outline: none;
}
.form textarea { min-height: 140px; resize: vertical; }
.contact-list b { display: block; font-size: 18px; font-weight: 700; margin-bottom: 4px; }

.specs { width: 100%; border-collapse: collapse; }
.specs th, .specs td { text-align: left; padding: 14px 0; border-bottom: 1px solid var(--line); }
.specs th { color: var(--muted); font-weight: 600; width: 42%; }

.filter-bar { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 20px; }
.filter-bar input, .filter-bar select {
  height: 46px; border: 1px solid var(--line); background: var(--surface);
  border-radius: var(--radius-sm); padding: 0 12px; min-width: 180px;
}

.empty { padding: 60px 20px; text-align: center; color: var(--muted); }

/* Footer */
.site-footer {
  position: relative;
  background: linear-gradient(180deg, #0f172a 0%, #111827 100%);
  color: rgba(255, 255, 255, .72);
  padding: 48px 0 22px;
  border-top: 1px solid rgba(255, 255, 255, .06);
}
.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 160, 23, .45), transparent);
}
.footer-shell { display: grid; gap: 28px; }
.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 32px 40px;
  align-items: start;
}
.footer-brand { max-width: 42ch; }
.footer-brand .logo { margin-bottom: 14px; }
.footer-brand .logo-text strong { color: #fff; font-size: 15px; }
.footer-brand .logo-text small { color: rgba(255, 255, 255, .48); }
.footer-lead {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, .62);
}
.footer-cta { box-shadow: none; }
.footer-newsletter {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .08);
}
.footer-newsletter h3 {
  margin: 0 0 6px;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.footer-newsletter-lead {
  margin: 0 0 12px;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255, 255, 255, .58);
}
.footer-newsletter-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
}
.footer-newsletter-form input {
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(15, 23, 42, .55);
  color: #fff;
  font-size: 13px;
}
.footer-newsletter-form input::placeholder { color: rgba(255, 255, 255, .42); }
.footer-newsletter-form input:focus {
  outline: none;
  border-color: rgba(212, 160, 23, .55);
  box-shadow: 0 0 0 3px rgba(212, 160, 23, .12);
}
.footer-newsletter-form .btn { white-space: nowrap; }
.footer-newsletter-msg {
  margin: 10px 0 0;
  font-size: 12px;
  line-height: 1.45;
}
.footer-newsletter-msg.is-success { color: #86efac; }
.footer-newsletter-msg.is-error { color: #fca5a5; }
.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 28px;
}
.footer-nav--compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px 24px;
}
.footer-col h3,
.footer-brands-head h3 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.footer-list,
.footer-contact {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 6px;
}
.footer-list a,
.footer-brands-all {
  color: rgba(255, 255, 255, .68);
  font-size: 13px;
  transition: color .2s ease;
}
.footer-list a:hover,
.footer-brands-all:hover,
.footer-contact a:hover { color: #fff; }
.footer-contact li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  font-size: 12px;
  line-height: 1.45;
  color: rgba(255, 255, 255, .68);
}
.footer-contact-icon {
  width: 18px;
  height: 18px;
  color: var(--accent-2);
  margin-top: 2px;
}
.footer-contact-icon svg { width: 16px; height: 16px; }
.footer-brands {
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .08);
}
.footer-brands-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}
.footer-brands-all {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-2);
}
.footer-brand-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-brand-tag {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .78);
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .1);
  transition: border-color .2s ease, background .2s ease, color .2s ease;
}
.footer-brand-tag:hover {
  color: #fff;
  background: rgba(255, 255, 255, .08);
  border-color: rgba(212, 160, 23, .35);
}
.footer-bottom {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 12px 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  font-size: 12px;
  color: rgba(255, 255, 255, .45);
}
.footer-copy { min-width: 0; }
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px 10px;
  text-align: center;
}
.footer-legal a {
  color: rgba(255, 255, 255, .58);
  transition: color .18s ease;
}
.footer-legal a:hover { color: rgba(212, 160, 23, .95); }
.footer-legal-sep {
  color: rgba(255, 255, 255, .22);
  user-select: none;
}
.footer-locations {
  justify-self: end;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 600;
  text-align: right;
}

.legal-page-hero {
  padding: 36px 0 28px;
  border-bottom: 1px solid var(--line-soft);
}
.legal-page-hero-inner {
  max-width: 760px;
}
.legal-page-hero-inner h1 {
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 8px;
}
.legal-page-hero-inner p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
  max-width: 58ch;
}
.legal-page-updated {
  margin-top: 10px !important;
  font-size: 13px !important;
  color: var(--text-soft) !important;
}
.legal-page-hero--sky { background: linear-gradient(180deg, #fff, #eff6ff); }
.legal-page-hero--violet { background: linear-gradient(180deg, #fff, #f5f3ff); }
.legal-page-section { padding: 32px 0 48px; }
.legal-page-body {
  display: grid;
  gap: 28px;
  max-width: 760px;
}
.legal-page-block h2 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--ink);
}
.legal-page-block p,
.legal-page-block li {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}
.legal-page-block p + p { margin-top: 10px; }
.legal-page-block ul {
  margin: 10px 0 0;
  padding-left: 1.2em;
  display: grid;
  gap: 8px;
}
.legal-page-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 24px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line-soft);
}

/* —— Catalog —— */
.catalog-hero {
  position: relative; padding: 64px 0 40px; overflow: hidden;
  border-bottom: 1px solid var(--line-soft);
  background: linear-gradient(180deg, #fff 0%, var(--paper) 100%);
}
.catalog-hero-bg { display: none; }
.catalog-hero-inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: 32px; align-items: end; }
.catalog-hero h1 { font-size: clamp(30px, 4.5vw, 42px); font-weight: 600; line-height: 1.2; }
.catalog-lead { max-width: 46ch; margin-top: 12px; color: var(--muted); font-size: 16px; line-height: 1.65; }
.catalog-search {
  display: grid; grid-template-columns: 1fr auto; gap: 10px;
  padding: 8px; background: var(--surface-elevated); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow-sm);
}
.catalog-search input { border: 0; background: transparent; height: 46px; padding: 0 12px; outline: none; }
.catalog-section {
  position: relative;
  z-index: 1;
  padding-top: 36px;
}
.catalog-main { min-width: 0; }
.catalog-filterbar {
  background: var(--surface-elevated);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 2px);
  padding: 12px 14px;
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
}
.catalog-filterbar-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line-soft);
}
.catalog-filterbar-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.catalog-filterbar-form {
  margin: 0;
  padding: 0;
  border: 0;
}
.catalog-filterbar-brands {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 10px;
  min-width: 0;
}
.catalog-filterbar-label {
  flex: 0 0 auto;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
}
.catalog-filterbar-chips {
  display: flex;
  flex-wrap: nowrap;
  gap: 6px;
  overflow-x: auto;
  min-width: 0;
  flex: 1;
  padding: 2px 2px 4px;
  scroll-padding-inline: 4px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.catalog-filterbar-chips::-webkit-scrollbar { display: none; }
.catalog-filterbar-chips .chip {
  flex: 0 0 auto;
  text-decoration: none;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 1px 0 rgba(255,255,255,.8);
  transition: background .15s ease, border-color .15s ease, color .15s ease, transform .15s ease, box-shadow .15s ease;
}
.catalog-filterbar-chips .chip span,
.catalog-filterbar-chips .chip em {
  color: inherit;
}
.catalog-filterbar-chips .chip em {
  font-style: normal;
  font-size: 10px;
  font-weight: 600;
  color: var(--muted);
}
.catalog-filterbar-chips .chip:hover {
  border-color: #cbd5e1;
  transform: translateY(-1px);
}
.catalog-filterbar-chips .chip.is-active {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border-color: var(--accent);
  color: #fff;
  box-shadow: 0 4px 14px rgba(184, 134, 11, .24);
}
.catalog-filterbar-chips .chip.is-active em {
  color: rgba(255,255,255,.88);
}
.catalog-brand-reset {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  white-space: nowrap;
}
.catalog-brand-reset:hover { text-decoration: underline; }
.chip--sm {
  flex: 0 0 auto;
  min-height: 30px;
  padding: 0 10px;
  font-size: 12px;
  gap: 6px;
}
.chip--sm em { font-size: 10px; }
.catalog-layout { display: grid; grid-template-columns: 280px minmax(0, 1fr); gap: 32px; align-items: start; }
.catalog-aside {
  position: sticky; top: calc(var(--nav-h) + 16px);
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 20px;
}
.filter-block + .filter-block { margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--line); }
.filter-head { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; margin-bottom: 12px; }
.filter-head h2 { font-size: 14px; font-weight: 600; letter-spacing: 0; }
.filter-head a { font-size: 13px; font-weight: 600; color: var(--accent); }
.filter-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  min-height: 34px; padding: 0 12px; border: 1px solid var(--line);
  border-radius: 999px; background: var(--paper); cursor: pointer;
  font-size: 13px; font-weight: 500; transition: .2s ease;
}
.chip input { position: absolute; opacity: 0; pointer-events: none; }
.chip em { font-style: normal; font-size: 11px; color: var(--muted); }
.chip.is-active { background: var(--ink); color: #fff; border-color: var(--ink); }
.chip.is-active em { color: rgba(255,255,255,.65); }
.filter-cats { list-style: none; margin: 0; padding: 0; display: grid; gap: 4px; }
.filter-cats label {
  display: grid; grid-template-columns: 1fr auto; gap: 10px; align-items: center;
  padding: 10px 12px; border-radius: var(--radius-sm); cursor: pointer; transition: .2s ease;
}
.filter-cats label input { position: absolute; opacity: 0; pointer-events: none; }
.filter-cats label em { font-style: normal; font-size: 12px; color: var(--muted); }
.filter-cats label:hover { background: var(--paper); }
.filter-cats label.is-active { background: var(--ink); color: #fff; }
.filter-cats label.is-active em { color: rgba(255,255,255,.65); }
.catalog-toolbar { display: flex; justify-content: space-between; align-items: center; gap: 16px; margin-bottom: 16px; flex-wrap: wrap; }
.catalog-result { display: flex; align-items: baseline; gap: 6px; flex-wrap: wrap; }
.catalog-result strong { font-size: 18px; font-weight: 700; line-height: 1; color: var(--ink); }
.catalog-result span { color: var(--muted); font-size: 13px; }
.catalog-clear { margin-left: 4px; font-size: 12px; font-weight: 600; color: var(--accent); }
.catalog-sort { display: flex; align-items: center; gap: 8px; }
.catalog-sort label { font-size: 12px; font-weight: 500; color: var(--muted); letter-spacing: 0; white-space: nowrap; }
.catalog-sort select {
  height: 34px; border: 1px solid var(--line); background: var(--surface);
  border-radius: 999px; padding: 0 28px 0 12px; min-width: 130px;
  font-size: 12px; font-weight: 500; cursor: pointer;
}
.active-filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.filter-tag {
  display: inline-flex; align-items: center; min-height: 30px; padding: 0 12px;
  border: 1px solid var(--line); border-radius: 999px; background: var(--surface);
  font-size: 12px; font-weight: 600;
}
.catalog-empty {
  padding: 64px 24px; text-align: center;
  border: 1px dashed var(--line); border-radius: var(--radius); background: var(--surface);
}
.catalog-empty h3 { font-size: 28px; margin-bottom: 8px; }
.catalog-empty p { color: var(--muted); margin-bottom: 20px; }

.catalog-crumb {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  font-size: 13px;
  color: var(--muted);
}
.catalog-crumb a {
  color: var(--text-soft);
  transition: color .15s ease;
}
.catalog-crumb a:hover { color: var(--ink); }
.catalog-crumb-current {
  color: var(--ink);
  font-weight: 500;
}
.catalog-landing-note {
  margin-top: 8px;
  padding: 20px 24px;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  text-align: center;
  color: var(--muted);
  font-size: 15px;
}
.catalog-subsections {
  display: grid;
  gap: 32px;
}
.catalog-subsection-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  background: var(--surface-elevated);
  box-shadow: var(--shadow-sm);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.catalog-subsection-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: #cbd5e1;
}
.catalog-subsection-card-glow {
  position: absolute;
  inset: 0;
  opacity: .55;
  pointer-events: none;
}
.catalog-subsection-card-main {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  flex: 1;
}
.catalog-subsection-card-photo {
  flex: 0 0 auto;
  width: 64px;
  height: 64px;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,.88);
  background: #fff;
  box-shadow: 0 8px 20px rgba(15, 23, 42, .1);
}
.catalog-subsection-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.catalog-subsection-card-photo--empty {
  display: grid;
  place-items: center;
  color: var(--accent);
  background: linear-gradient(145deg, #fff, #f8fafc);
}
.catalog-subsection-card-photo--empty svg { width: 24px; height: 24px; }
.catalog-subsection-card-copy {
  display: grid;
  gap: 3px;
  min-width: 0;
}
.catalog-subsection-card-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
}
.catalog-subsection-card-copy h2 {
  margin: 0;
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.2;
  color: var(--ink);
}
.catalog-subsection-card-badge {
  flex: 0 0 auto;
  display: grid;
  gap: 1px;
  justify-items: center;
  min-width: 68px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(255,255,255,.65);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.65);
  text-align: center;
}
.catalog-subsection-card-badge strong {
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  color: var(--ink);
}
.catalog-subsection-card-badge span {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--muted);
}
.catalog-subsection-card-link {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(255,255,255,.7);
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.catalog-subsection-card-link svg {
  width: 14px;
  height: 14px;
  color: var(--accent);
  transition: transform .2s ease;
}
.catalog-subsection-card-link:hover {
  background: #fff;
  color: var(--accent);
}
.catalog-subsection-card-link:hover svg { transform: translateX(3px); }

.catalog-subsection-card--sky {
  background: linear-gradient(135deg, #fff 0%, #eff6ff 52%, #dbeafe 100%);
  border-color: rgba(59, 130, 246, .18);
}
.catalog-subsection-card--sky .catalog-subsection-card-glow {
  background: radial-gradient(circle at 88% 18%, rgba(59,130,246,.18), transparent 42%);
}
.catalog-subsection-card--sky .catalog-subsection-card-badge strong { color: #1d4ed8; }

.catalog-subsection-card--mint {
  background: linear-gradient(135deg, #fff 0%, #ecfdf5 52%, #d1fae5 100%);
  border-color: rgba(16, 185, 129, .18);
}
.catalog-subsection-card--mint .catalog-subsection-card-glow {
  background: radial-gradient(circle at 88% 18%, rgba(16,185,129,.16), transparent 42%);
}
.catalog-subsection-card--mint .catalog-subsection-card-badge strong { color: #047857; }

.catalog-subsection-card--amber {
  background: linear-gradient(135deg, #fff 0%, #fffbeb 52%, #fef3c7 100%);
  border-color: rgba(217, 119, 6, .18);
}
.catalog-subsection-card--amber .catalog-subsection-card-glow {
  background: radial-gradient(circle at 88% 18%, rgba(217,119,6,.14), transparent 42%);
}
.catalog-subsection-card--amber .catalog-subsection-card-badge strong { color: #b45309; }

.catalog-subsection-card--rose {
  background: linear-gradient(135deg, #fff 0%, #fff1f2 52%, #ffe4e6 100%);
  border-color: rgba(244, 63, 94, .16);
}
.catalog-subsection-card--rose .catalog-subsection-card-glow {
  background: radial-gradient(circle at 88% 18%, rgba(244,63,94,.14), transparent 42%);
}
.catalog-subsection-card--rose .catalog-subsection-card-badge strong { color: #be123c; }

.catalog-subsection-card--violet {
  background: linear-gradient(135deg, #fff 0%, #f5f3ff 52%, #ede9fe 100%);
  border-color: rgba(139, 92, 246, .16);
}
.catalog-subsection-card--violet .catalog-subsection-card-glow {
  background: radial-gradient(circle at 88% 18%, rgba(139,92,246,.14), transparent 42%);
}
.catalog-subsection-card--violet .catalog-subsection-card-badge strong { color: #6d28d9; }

.catalog-subsection-card--teal {
  background: linear-gradient(135deg, #fff 0%, #f0fdfa 52%, #ccfbf1 100%);
  border-color: rgba(20, 184, 166, .16);
}
.catalog-subsection-card--teal .catalog-subsection-card-glow {
  background: radial-gradient(circle at 88% 18%, rgba(20,184,166,.14), transparent 42%);
}
.catalog-subsection-card--teal .catalog-subsection-card-badge strong { color: #0f766e; }

.catalog-subsection-card--orange {
  background: linear-gradient(135deg, #fff 0%, #ffedd5 52%, #fed7aa 100%);
  border-color: rgba(234, 88, 12, .16);
}
.catalog-subsection-card--orange .catalog-subsection-card-glow {
  background: radial-gradient(circle at 88% 18%, rgba(234,88,12,.14), transparent 42%);
}
.catalog-subsection-card--orange .catalog-subsection-card-badge strong { color: #c2410c; }

.catalog-subsection-card--lime {
  background: linear-gradient(135deg, #fff 0%, #ecfccb 52%, #d9f99d 100%);
  border-color: rgba(132, 204, 22, .16);
}
.catalog-subsection-card--lime .catalog-subsection-card-glow {
  background: radial-gradient(circle at 88% 18%, rgba(132,204,22,.14), transparent 42%);
}
.catalog-subsection-card--lime .catalog-subsection-card-badge strong { color: #4d7c0f; }

@media (max-width: 760px) {
  .catalog-subsection-card {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .catalog-subsection-card-main {
    flex-wrap: wrap;
  }
  .catalog-subsection-card-badge {
    margin-left: auto;
  }
  .catalog-subsection-card-link {
    justify-content: center;
    width: 100%;
  }
}
@media (max-width: 480px) {
  .catalog-subsection-card-photo {
    width: 56px;
    height: 56px;
    border-radius: 14px;
  }
  .catalog-subsection-card-copy h2 { font-size: 17px; }
}

/* Product detail */
.pd-page {
  padding: 20px 0 36px;
  background: var(--surface);
}
.pd-crumb {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 24px;
}
.pd-crumb a {
  color: var(--text-soft);
  transition: color .15s ease;
}
.pd-crumb a:hover { color: var(--ink); }
.pd-crumb-current {
  color: var(--ink);
  font-weight: 500;
}

.pd-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: clamp(28px, 4vw, 52px);
  align-items: start;
}
.pd-gallery { min-width: 0; }
.pd-stage {
  aspect-ratio: 4 / 3;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: grid;
  place-items: center;
}
.pd-stage img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
  display: block;
  transition: opacity .22s ease;
}
.pd-stage img.is-fading { opacity: 0; }
.pd-stage-empty {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(15, 23, 42, .14);
}
.pd-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}
.pd-thumb {
  flex: 0 0 68px;
  width: 68px;
  height: 52px;
  padding: 0;
  border: 1px solid transparent;
  border-radius: 8px;
  background: var(--paper);
  cursor: pointer;
  overflow: hidden;
  opacity: .55;
  transition: opacity .15s ease, border-color .15s ease;
}
.pd-thumb.is-active,
.pd-thumb:hover {
  opacity: 1;
  border-color: var(--line);
}
.pd-thumb.is-active {
  box-shadow: inset 0 0 0 1px var(--accent);
  border-color: rgba(184, 134, 11, .35);
}
.pd-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pd-panel {
  position: sticky;
  top: calc(var(--nav-h) + 20px);
  padding-top: 4px;
}
.pd-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
}
.pd-meta a {
  color: var(--text-soft);
  transition: color .15s ease;
}
.pd-meta a:hover { color: var(--accent); }
.pd-meta-dot { opacity: .45; user-select: none; }
.pd-panel h1 {
  font-size: clamp(24px, 2.8vw, 32px);
  line-height: 1.22;
  letter-spacing: -.025em;
}
.pd-lead {
  margin: 12px 0 0;
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-soft);
  max-width: 42ch;
}
.pd-desc {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 14px;
  line-height: 1.75;
  color: var(--muted);
  max-width: 52ch;
}
.pd-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.btn-share {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-share svg { width: 16px; height: 16px; }

.pd-specs-section {
  padding: 36px 0 44px;
  background: var(--paper);
  border-top: 1px solid var(--line);
}
.pd-block-head { margin-bottom: 16px; }
.pd-block-head h2 {
  margin-top: 4px;
  font-size: clamp(20px, 2.5vw, 26px);
}
.pd-specs {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
}
.pd-spec-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: baseline;
  padding: 13px 16px;
  border-bottom: 1px solid var(--line);
}
.pd-spec-row:last-child { border-bottom: 0; }
.pd-spec-row span {
  font-size: 13px;
  color: var(--muted);
}
.pd-spec-row strong {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  text-align: right;
}

.pager { margin-top: 32px; }
.pagination-nav {
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  padding-top: 8px; border-top: 1px solid var(--line-soft);
}
.pagination-info { margin: 0; font-size: 13px; color: var(--muted); font-weight: 600; }
.pagination-list {
  display: flex; align-items: center; gap: 6px; list-style: none; margin: 0; padding: 0;
}
.pagination-btn {
  min-width: 38px; height: 38px; display: grid; place-items: center;
  border: 1px solid var(--line); border-radius: 10px;
  background: var(--surface); font-size: 14px; font-weight: 600; color: var(--ink);
  transition: .2s ease;
}
a.pagination-btn:hover { border-color: var(--accent); color: var(--accent); }
.pagination-btn.is-active {
  background: var(--ink); color: #fff; border-color: var(--ink);
}
.pagination-btn.is-disabled {
  opacity: .45; cursor: not-allowed;
}
.pagination-gap { padding: 0 4px; color: var(--muted); font-size: 13px; }

/* hide broken tailwind pagination if any */
.pager .hidden, .pager .sm\\:flex, .pager .flex { display: none !important; }

/* Admin */
.admin-body { background: #f1f5f9; }
.admin-shell { display: grid; grid-template-columns: 250px 1fr; min-height: 100vh; }
.admin-side { background: var(--dark); color: #cbd5e1; padding: 24px 18px; }
.admin-side a { display: block; padding: 10px 12px; border-radius: 10px; color: #cbd5e1; }
.admin-side a:hover, .admin-side a.is-active { background: #1e293b; color: #fff; }
.admin-main { padding: 28px; }
.table { width: 100%; border-collapse: collapse; background: var(--surface); border-radius: var(--radius-sm); overflow: hidden; }
.table th, .table td { padding: 12px 14px; border-bottom: 1px solid var(--line); text-align: left; font-size: 14px; }
.login-wrap { min-height: 100vh; display: grid; place-items: center; background: var(--dark); }
.login-card { width: min(420px, calc(100% - 32px)); background: var(--surface); padding: 32px; border-radius: var(--radius); }
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-bottom: 24px; }
.stat { background: var(--surface); padding: 18px; border: 1px solid var(--line); border-radius: var(--radius-sm); }
.stat b { font-size: 30px; font-weight: 800; }
.i18n { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

/* Responsive */
@media (max-width: 1320px) {
  .header-cta-label { display: none; }
  .header-cta {
    width: 36px;
    padding: 0;
    justify-content: center;
  }
  .lang-current,
  .lang-chevron { display: none; }
  .lang-dropdown-toggle {
    padding: 0 8px;
    min-width: 36px;
    justify-content: center;
  }
  .logo-text small { display: none; }
  .nav-link,
  .nav-dropdown-toggle { padding: 0 7px; font-size: 12px; }
  .header-inner { gap: 10px; }
}
@media (max-width: 1180px) {
  .nav-link { padding: 0 8px; }
  .nav-link .nav-label,
  .nav-dropdown .nav-label,
  .nav-dropdown-chevron { display: none; }
  .nav-dropdown-toggle { padding: 0 8px; }
  .nav-link .nav-icon svg { width: 17px; height: 17px; }
}
@media (max-width: 1100px) {
  .pcard-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pcard-grid--catalog { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
  .pcard-grid--home { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .svc-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .brands-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .about-grid, .about-hero-grid, .about-split, .about-why-grid, .about-services-grid {
    grid-template-columns: 1fr;
  }
  .about-media-stack { grid-template-columns: 1fr; }
  .about-media-collage {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    min-height: 0;
    margin-top: 4px;
  }
  .about-collage-ring,
  .about-collage-blob,
  .about-collage-chip { display: none; }
  .about-photo--main,
  .about-photo--accent {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    transform: none;
    aspect-ratio: 4 / 5;
  }
  .about-photo--main:hover,
  .about-photo--accent:hover { transform: none; }
  .about-photo--main img,
  .about-photo--accent img { min-height: 0; height: 100%; }
  .about-split--reverse .about-panel--image { order: -1; }
  .about-stats-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .about-timeline-item { grid-template-columns: 1fr; gap: 8px; }
  .about-subnav-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .about-tone-grid,
  .about-tone-grid--trio,
  .about-review-grid { grid-template-columns: 1fr 1fr; }
  .about-mini-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .logo-text small { display: none; }
}
@media (max-width: 980px) {
  .nav, .header-tools .header-cta { display: none; }
  .header-inner {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 62px;
  }
  .logo { min-width: 0; flex: 1 1 auto; }
  .logo-text strong { font-size: 14px; }
  .header-mobile-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
    flex-shrink: 0;
  }
  .header-tools {
    margin-left: 0;
    margin-right: 0;
    flex-shrink: 0;
  }
  .lang-dropdown-toggle {
    min-height: 38px;
    padding: 0 10px 0 8px;
    font-size: 11px;
  }
  .menu-btn {
    display: inline-flex;
    margin-left: 0;
    flex-shrink: 0;
  }
  .site-header {
    background: rgba(255, 255, 255, .96);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 1px 0 rgba(15, 23, 42, .04);
  }
  .home-hero-grid, .about-grid, .catalog-hero-inner, .catalog-layout, .pd-layout,
  .grid-2, .grid-3, .grid-4, .contact-grid, .footer-main, .hero-stats, .stat-grid, .admin-shell, .i18n {
    grid-template-columns: 1fr;
  }
  .home-hero { padding: 12px 0 18px; }
  .home-hero-visual { order: -1; width: 100%; }
  .hero-image-card {
    max-height: none;
    aspect-ratio: 16 / 10;
    border-radius: 14px;
    background: #dbeafe;
  }
  .hero-image-card img { object-position: center 40%; }
  .hero-image-badge {
    left: 10px;
    bottom: 10px;
    max-width: calc(100% - 20px);
    padding: 6px 10px;
    font-size: 10px;
  }
  .home-stat-cards { grid-template-columns: repeat(2, 1fr); }
  .home-stats { grid-template-columns: repeat(2, 1fr); gap: 8px 0; max-width: 100%; }
  .section, .home-section { padding: 56px 0; }
  .catalog-aside { position: static; }
  .pd-spec-row { grid-template-columns: 1fr; }
  .pd-spec-row strong { text-align: left; }
  .pd-panel { position: static; }
  .pd-lead, .pd-desc { max-width: none; }
  .promo-banner-panel {
    grid-template-columns: 1fr;
    padding: 20px;
  }
  .promo-banner-stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    width: 100%;
  }
  .hero-stats div { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.12); }
}
@media (max-width: 640px) {
  .wrap { width: min(var(--max), calc(100% - 24px)); }
  .logo-text small { display: none; }
  .logo-text strong {
    font-size: 13px;
    max-width: calc(100vw - 118px);
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .header-tools { display: none; }
  .header-mobile-actions { gap: 0; }
  .menu-btn {
    width: 42px;
    height: 42px;
    border-radius: 11px;
  }
  .menu-btn-line { width: 17px; }
  .header-inner { gap: 10px; min-height: 58px; }
  .site-header { position: sticky; top: 0; z-index: 100; }
  .logo-mark { width: 34px; height: 34px; border-radius: 9px; }

  .home-hero { padding: 8px 0 14px; }
  .home-hero-grid { gap: 16px; }
  .home-hero-copy h1 {
    font-size: clamp(24px, 7vw, 30px);
    max-width: none;
    margin-bottom: 6px;
  }
  .home-hero-copy p { font-size: 14px; line-height: 1.5; }
  .home-hero .hero-actions { margin-top: 12px; }
  .home-hero .btn { flex: 1 1 calc(50% - 4px); justify-content: center; min-height: 42px; }
  .hero-image-card {
    aspect-ratio: 16 / 11;
    border: none;
    box-shadow: 0 10px 28px rgba(15, 23, 42, .1);
  }
  .hero-image-badge span { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

  .about-media-collage {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .about-photo--main,
  .about-photo--accent { aspect-ratio: 16 / 10; }
  .about-badge {
    left: 12px;
    bottom: 12px;
    right: 12px;
    padding: 10px 12px;
  }
  .about-photo-tag { top: 10px; left: 10px; font-size: 10px; }
  .home-about .about-copy { order: -1; }
  .home-about .about-grid { gap: 20px; }

  .pcard-grid, .pcard-grid--home, .svc-grid { grid-template-columns: 1fr; }
  .pcard-grid--catalog { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .catalog-filterbar-top { flex-direction: column; align-items: stretch; }
  .catalog-filterbar-actions { justify-content: space-between; }
  .catalog-filterbar-brands { flex-direction: column; align-items: stretch; gap: 6px; }
  .catalog-filterbar-label { display: none; }
  .brands-grid { grid-template-columns: 1fr; }
  .brand-card__actions { grid-template-columns: 1fr; }
  .brand-card__action + .brand-card__action {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .brand-card__stats { grid-template-columns: 1fr 1fr; }
  .contact-form-grid { grid-template-columns: 1fr; }
  .contact-quick-actions { grid-template-columns: 1fr; }
  .contact-form-foot { flex-direction: column; align-items: stretch; }
  .contact-form-submit { width: 100%; justify-content: center; }
  .contact-form-note { max-width: none; }
  .contact-form-submit { width: 100%; justify-content: center; }
  .contact-form-note { max-width: none; }
  .about-stats-grid { grid-template-columns: 1fr; }
  .promo-banner-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .promo-banner-copy h2 { max-width: none; }
  .catalog-search { grid-template-columns: 1fr; }
  .home-stats { grid-template-columns: 1fr; }
  .footer-bottom {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 10px;
  }
  .footer-legal { justify-content: flex-start; text-align: left; }
  .footer-locations { justify-self: start; text-align: left; }
  .footer-nav,
  .footer-nav--compact { grid-template-columns: 1fr 1fr; }
  .footer-nav--compact .footer-col:last-child { grid-column: 1 / -1; }
  .footer-brand { max-width: none; }
  .brand-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .brand-slide {
    min-height: 118px;
    padding: 14px 10px 12px;
  }
  .brand-slide-icon { height: 64px; margin-bottom: 8px; }
  .brand-slide-icon img { max-height: 46px; }
  .brand-slide-label { font-size: 11px; }
  .cat-rail-btn { display: none; }
  .cat-rail { padding-right: 4px; }
  .pagination-nav { justify-content: center; }
}

/* —— Page banner + info cards + reveal —— */
.page-banner {
  position: relative;
  overflow: hidden;
  padding: 48px 0 36px;
  border-bottom: 1px solid var(--line-soft);
}
.page-banner--compact { padding: 36px 0 28px; }
.page-banner--catalog {
  overflow: visible;
  padding: 18px 0 20px;
}
.page-banner-catalog {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 12px;
}
.page-banner-catalog-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 16px 20px;
  align-items: start;
}
.page-banner-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  margin-bottom: 6px;
}
.page-banner--catalog .page-banner-copy h1 {
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.15;
  max-width: none;
}
.page-banner-lead--tight {
  margin-top: 6px;
  font-size: 14px;
  line-height: 1.45;
  max-width: 52ch;
}
.catalog-crumb--inline {
  font-size: 12px;
}
.info-cards--quad {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}
.info-card--sm {
  padding: 10px 11px;
  gap: 9px;
  border-radius: 12px;
}
.info-card--sm .info-card-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
}
.info-card--sm .info-card-icon svg { width: 16px; height: 16px; }
.info-card--sm strong {
  font-size: 18px;
  line-height: 1.1;
}
.info-card--sm p {
  font-size: 11px;
  margin-top: 1px;
}
.catalog-search--tight {
  position: relative;
  z-index: 3;
  padding: 5px 6px 5px 10px;
}
.catalog-search--tight input {
  height: 38px;
  font-size: 14px;
}
.catalog-search--tight .btn-sm {
  min-height: 38px;
  padding: 0 16px;
}
.catalog-search-field {
  position: relative;
  min-width: 0;
}
.catalog-search-field input {
  width: 100%;
  padding-right: 36px;
}
.catalog-search-clear {
  position: absolute;
  top: 50%;
  right: 6px;
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
  border: none;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: var(--muted);
  background: transparent;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
}
.catalog-search-clear:hover { color: var(--ink); background: #f1f5f9; }
.catalog-search-clear[hidden] { display: none !important; }
.catalog-search-suggest {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  z-index: 60;
  padding: 6px;
  border-radius: calc(var(--radius-sm) + 2px);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 18px 40px rgba(15, 23, 42, .12);
  max-height: min(360px, 52vh);
  overflow-y: auto;
}
.catalog-search-suggest-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 9px 10px;
  border: none;
  border-radius: 10px;
  background: transparent;
  text-align: left;
  cursor: pointer;
  color: inherit;
  font: inherit;
}
.catalog-search-suggest-item:hover,
.catalog-search-suggest-item.is-active {
  background: #f8fafc;
}
.catalog-search-suggest-thumb,
.catalog-search-suggest-icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  overflow: hidden;
  background: #eef2f7;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.catalog-search-suggest-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.catalog-search-suggest-icon {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--accent);
}
.catalog-search-suggest-copy {
  min-width: 0;
  display: grid;
  gap: 1px;
}
.catalog-search-suggest-copy strong {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.catalog-search-suggest-copy em {
  font-style: normal;
  font-size: 11px;
  color: var(--muted);
}
.catalog-search-suggest-type {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--text-soft);
}
.page-banner-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.page-banner-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: .55;
  animation: bannerFloat 12s ease-in-out infinite;
}
.page-banner-blob--1 { width: 280px; height: 280px; top: -80px; right: 8%; }
.page-banner-blob--2 { width: 220px; height: 220px; bottom: -60px; left: 5%; animation-delay: -4s; }
.page-banner--brand {
  position: relative;
  overflow: hidden;
  padding: 20px 0 18px;
}
.brand-banner-cover {
  position: absolute;
  inset: 0;
  opacity: .14;
  pointer-events: none;
}
.brand-banner-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.85);
}
.page-banner-brand {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
}
.page-banner-brand-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 16px 20px;
  align-items: start;
}
.brand-banner-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 4px;
}
.brand-banner-logo {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, .08);
  box-shadow: var(--shadow-sm);
  display: grid;
  place-items: center;
  padding: 10px;
}
.brand-banner-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.brand-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}
.brand-banner-cards .info-card {
  animation: brandCardIn .16s ease-out both;
}
.brand-banner-cards .info-card:nth-child(2) { animation-delay: .02s; }
.brand-banner-cards .info-card:nth-child(3) { animation-delay: .04s; }
.brand-banner-cards .info-card:nth-child(4) { animation-delay: .06s; }
@keyframes brandCardIn {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}
.brand-about-strip {
  padding-top: 0;
  padding-bottom: 8px;
}
.brand-about-card {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(240px, .8fr);
  gap: 20px;
  padding: 22px 24px;
  border-radius: calc(var(--radius) + 4px);
  background: linear-gradient(135deg, rgba(255,255,255,.92) 0%, rgba(255,251,235,.72) 100%);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.brand-about-card h2 {
  margin: 6px 0 8px;
  font-size: clamp(20px, 2.4vw, 26px);
  line-height: 1.15;
}
.brand-about-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 14px;
}
.brand-about-stats {
  display: grid;
  gap: 10px;
  align-content: start;
}
.brand-about-stat {
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255,255,255,.78);
  border: 1px solid var(--line-soft);
}
.brand-about-stat strong {
  display: block;
  font-size: 18px;
  line-height: 1.1;
}
.brand-about-stat span {
  font-size: 12px;
  color: var(--muted);
}
.brand-catalog { padding-top: 24px; }
@media (max-width: 900px) {
  .page-banner-brand-top,
  .brand-about-card { grid-template-columns: 1fr; }
  .brand-banner-head { align-items: flex-start; }
}
.page-banner--gold { background: linear-gradient(135deg, rgba(255,251,235,.95) 0%, rgba(238,241,246,.7) 55%, rgba(254,243,199,.35) 100%); }
.page-banner--gold .page-banner-blob--1 { background: rgba(245, 158, 11, .28); }
.page-banner--gold .page-banner-blob--2 { background: rgba(184, 134, 11, .18); }
.page-banner--quote {
  padding: 18px 0 16px;
}
.page-banner--quote .page-banner-lead--tight {
  margin-top: 6px;
  margin-bottom: 0;
}
.page-banner-quote {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
}
.page-banner-quote-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 16px 20px;
  align-items: start;
}
.page-banner--quote .page-banner-copy h1 {
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.15;
  max-width: none;
}
.quote-banner-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}
.quote-banner-step {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(255, 255, 255, .85);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(8px);
  transition: border-color .2s ease, transform .2s ease;
}
.quote-banner-step:hover {
  border-color: rgba(184, 134, 11, .28);
  transform: translateY(-1px);
}
.quote-banner-step-no {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .02em;
  color: #92400e;
  background: rgba(245, 158, 11, .14);
}
.quote-banner-step strong {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.2;
}
.quote-banner-step p {
  margin: 2px 0 0;
  font-size: 11px;
  color: var(--muted);
  line-height: 1.3;
}
.quote-section { padding-top: 20px; }
.page-banner--sky { background: linear-gradient(135deg, rgba(239,246,255,.95) 0%, rgba(238,241,246,.75) 50%, rgba(224,242,254,.4) 100%); }
.page-banner--sky .page-banner-blob--1 { background: rgba(59, 130, 246, .22); }
.page-banner--sky .page-banner-blob--2 { background: rgba(14, 165, 233, .15); }
.page-banner--violet { background: linear-gradient(135deg, rgba(245,243,255,.95) 0%, rgba(238,241,246,.75) 50%, rgba(237,233,254,.45) 100%); }
.page-banner--violet .page-banner-blob--1 { background: rgba(139, 92, 246, .22); }
.page-banner--violet .page-banner-blob--2 { background: rgba(167, 139, 250, .14); }
.page-banner--teal { background: linear-gradient(135deg, rgba(240,253,250,.95) 0%, rgba(238,241,246,.75) 50%, rgba(204,251,241,.4) 100%); }
.page-banner--teal .page-banner-blob--1 { background: rgba(20, 184, 166, .22); }
.page-banner--teal .page-banner-blob--2 { background: rgba(16, 185, 129, .14); }
.page-banner--rose { background: linear-gradient(135deg, rgba(255,241,242,.95) 0%, rgba(238,241,246,.75) 50%, rgba(254,226,226,.4) 100%); }
.page-banner--rose .page-banner-blob--1 { background: rgba(244, 63, 94, .18); }
.page-banner--rose .page-banner-blob--2 { background: rgba(251, 113, 133, .12); }
.page-banner--mint { background: linear-gradient(135deg, rgba(236,253,245,.95) 0%, rgba(238,241,246,.75) 50%, rgba(209,250,229,.4) 100%); }
.page-banner--mint .page-banner-blob--1 { background: rgba(16, 185, 129, .2); }

.page-banner-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 28px;
  align-items: start;
}
.page-banner-copy h1 {
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.15;
  max-width: 16ch;
}
.page-banner-lead {
  max-width: 48ch;
  margin-top: 12px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-soft);
}
.eyebrow--banner {
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.55);
  border: 1px solid var(--line-soft);
}
.page-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.page-banner-below { margin-top: 22px; position: relative; z-index: 1; }
.page-banner-side {
  display: grid;
  gap: 12px;
  align-content: start;
}

.social-links--banner {
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(255, 255, 255, .8);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(8px);
}
.social-links--contact {
  padding: 14px 16px;
  border-radius: calc(var(--radius-sm) + 2px);
  background: rgba(255, 255, 255, .82);
  border: 1px solid rgba(255, 255, 255, .9);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(8px);
}
.social-links--contact .social-links-label {
  text-align: center;
}
.social-links--contact .social-links-row {
  justify-content: center;
  gap: 10px;
}
.social-links--contact .social-link {
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  padding: 0;
  border-radius: 12px;
}
.social-links-label {
  display: block;
  margin-bottom: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
}
.social-links-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 40px;
  min-height: 40px;
  padding: 0 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--social-color, var(--ink));
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.social-link:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
  border-color: color-mix(in srgb, var(--social-color, var(--accent)) 35%, var(--line));
}
.social-link-icon {
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
}
.social-link-icon svg {
  display: block;
  width: 16px;
  height: 16px;
}
.social-link--facebook,
.social-link--linkedin,
.social-link--telegram,
.social-link--youtube { color: #fff; background: var(--social-color); border-color: transparent; }
.social-link--instagram { color: #fff; background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af); border-color: transparent; }
.social-link--whatsapp { color: #fff; background: #25D366; border-color: transparent; }
.social-link--tiktok { color: #fff; background: #010101; border-color: transparent; }
.social-link-label {
  font-size: 12px;
  font-weight: 600;
}

.admin-social-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}
.admin-social-row {
  display: grid;
  gap: 8px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}
.admin-social-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.admin-social-active {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--muted);
}
.admin-newsletter-grid {
  display: grid;
  grid-template-columns: minmax(0, 380px) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}
.admin-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 22px;
}
.admin-newsletter-rules {
  display: grid;
  gap: 16px;
  margin-bottom: 18px;
}
.admin-newsletter-rule {
  display: grid;
  gap: 10px;
  padding: 16px;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: #f8fafc;
}
@media (max-width: 960px) {
  .admin-newsletter-grid { grid-template-columns: 1fr; }
  .footer-newsletter-form { grid-template-columns: 1fr; }
}

.info-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.info-card {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(255, 255, 255, .8);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(8px);
  transition: transform .25s ease, box-shadow .25s ease;
}
.info-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.info-card-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 10px;
}
.info-card-icon svg { width: 18px; height: 18px; }
.info-card strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.2;
}
.info-card p {
  margin: 4px 0 0;
  font-size: 12px;
  line-height: 1.45;
  color: var(--muted);
}
.info-card--sky .info-card-icon { background: rgba(59,130,246,.12); color: var(--tone-sky); }
.info-card--gold .info-card-icon { background: rgba(184,134,11,.14); color: var(--tone-amber); }
.info-card--mint .info-card-icon { background: rgba(16,185,129,.12); color: var(--tone-mint); }
.info-card--violet .info-card-icon { background: rgba(139,92,246,.12); color: var(--tone-violet); }
.info-card--teal .info-card-icon { background: rgba(20,184,166,.12); color: var(--tone-teal); }
.info-card--rose .info-card-icon { background: rgba(244,63,94,.12); color: var(--tone-rose); }
.info-card--sand .info-card-icon { background: rgba(217,119,6,.12); color: var(--tone-sand); }

.reveal {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .12s ease-out, transform .12s ease-out;
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal--delay { transition-delay: .02s; }
.reveal--delay-2 { transition-delay: .04s; }
[data-reveal-stagger] > * {
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .1s ease-out, transform .1s ease-out;
}
[data-reveal-stagger].is-visible > * { opacity: 1; transform: none; transition-delay: 0s; }

@keyframes bannerFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(8px, -10px) scale(1.04); }
}

.home-categories { background: rgba(255,255,255,.28); }
.home-brands { background: rgba(243,240,234,.45); }
.home-about { background: rgba(255,255,255,.32); }
.about-copy h2 {
  position: relative;
  padding-bottom: 4px;
}
.about-copy h2::after {
  content: "";
  display: block;
  width: 72px;
  height: 3px;
  margin-top: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), rgba(59,130,246,.45));
}
.home-services { background: rgba(239,246,255,.35); }

.svc-card {
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.svc-card:hover { transform: translateY(-4px); }
.svc-grid .svc-card:nth-child(1) .svc-icon { background: rgba(59,130,246,.12); color: var(--tone-sky); }
.svc-grid .svc-card:nth-child(2) .svc-icon { background: rgba(184,134,11,.12); color: var(--tone-amber); }
.svc-grid .svc-card:nth-child(3) .svc-icon { background: rgba(16,185,129,.12); color: var(--tone-mint); }
.svc-grid .svc-card:nth-child(4) .svc-icon { background: rgba(139,92,246,.12); color: var(--tone-violet); }
.svc-grid .svc-card:nth-child(5) .svc-icon { background: rgba(20,184,166,.12); color: var(--tone-teal); }
.svc-grid .svc-card:nth-child(6) .svc-icon { background: rgba(244,63,94,.12); color: var(--tone-rose); }

.service-card {
  background: var(--surface-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.service-no {
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: .06em;
  margin-bottom: 10px;
}

.catalog-hero {
  position: relative;
  padding: 0;
  overflow: hidden;
  border-bottom: 0;
  background: transparent;
}
.catalog-section { padding-top: 28px; }
.catalog-aside { background: var(--surface-elevated); }
.pd-page { background: transparent; }
.pd-specs-section { background: rgba(255,255,255,.35); }

.about-hero {
  background:
    radial-gradient(circle at 90% 10%, rgba(184,134,11,.12), transparent 40%),
    radial-gradient(circle at 5% 90%, rgba(59,130,246,.08), transparent 38%),
    linear-gradient(180deg, rgba(255,255,255,.5) 0%, rgba(238,241,246,.35) 100%);
}
.about-stat-card {
  transition: transform .25s ease;
}
.about-stat-card:hover { transform: translateY(-3px); }

.brand-hero-cards {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.brand-hero-card {
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(8px);
}
.brand-hero-card strong { display: block; font-size: 14px; color: #fff; }
.brand-hero-card span { font-size: 12px; color: rgba(255,255,255,.72); }

.pd-trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 24px;
}
.pd-trust-card {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  background: var(--surface-elevated);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  font-size: 13px;
  color: var(--text-soft);
}
.pd-trust-card svg { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; }

@media (max-width: 900px) {
  .page-banner-grid { grid-template-columns: 1fr; }
  .page-banner-catalog-top,
  .page-banner-quote-top { grid-template-columns: 1fr; }
  .quote-banner-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .info-cards { grid-template-columns: 1fr 1fr; }
  .brand-hero-cards, .pd-trust-strip { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .info-cards { grid-template-columns: 1fr; }
  .page-banner { padding: 32px 0 24px; }
  .page-banner--quote { padding: 16px 0 14px; }
  .quote-banner-steps { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  .reveal, [data-reveal-stagger] > *, .page-banner-blob,
  [data-hero] .hero-seq, [data-hero] .stat-card-light,
  [data-hero] .hero-image-badge, [data-hero] .hero-image-card,
  [data-hero] .hero-image-card img, .home-hero-orb, .hero-image-shine {
    animation: none !important; transition: none; opacity: 1; transform: none;
  }
}

/* —— Market category pills (photo circles) —— */
.cat-pills {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(112px, 1fr));
  gap: 20px 14px;
  margin-bottom: 8px;
}
.cat-pills--compact {
  grid-template-columns: repeat(auto-fill, minmax(96px, 1fr));
  gap: 14px 10px;
}
.cat-pills--scroll {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 6px;
  margin-bottom: 20px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.cat-pills--scroll::-webkit-scrollbar { display: none; }
.cat-pills--scroll .cat-pill {
  flex: 0 0 96px;
  scroll-snap-align: start;
}
.cat-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: inherit;
  text-decoration: none;
  border: none;
  background: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  width: 100%;
  position: relative;
  z-index: 1;
  touch-action: manipulation;
}
.cat-pill > * {
  pointer-events: none;
}
.cat-pill-card {
  width: 100%;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  background: #fff;
  border-radius: 22px;
  border: 1px solid rgba(15, 23, 42, .05);
  box-shadow: 0 4px 16px rgba(15, 23, 42, .06);
  transition: transform .22s ease, box-shadow .22s ease;
}
.cat-pill:hover .cat-pill-card {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(15, 23, 42, .1);
}
.cat-pill.is-active .cat-pill-card {
  box-shadow: 0 0 0 2px var(--accent), 0 10px 24px rgba(184, 134, 11, .16);
}
.cat-pill-photo {
  width: 72%;
  aspect-ratio: 1;
  border-radius: 18px;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: #e2e8f0;
}
.cat-pill-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  padding: 8px;
  box-sizing: border-box;
}
.cat-pill-photo--catalog {
  position: relative;
  padding: 0;
  background: linear-gradient(145deg, #fffbeb, #fef3c7);
}
.cat-pill--catalog .cat-pill-card {
  border: 1.5px solid rgba(184, 134, 11, .38);
  background: linear-gradient(180deg, #fff 0%, #fffdf8 100%);
}
.cat-pill--catalog .cat-pill-label {
  color: var(--accent);
  font-weight: 600;
}
.cat-pill--catalog:hover .cat-pill-card,
.cat-pill--catalog.is-active .cat-pill-card {
  border-color: rgba(184, 134, 11, .72);
  box-shadow: 0 0 0 2px rgba(184, 134, 11, .12), 0 10px 22px rgba(184, 134, 11, .14);
}
.cat-pill--catalog .cat-pill-catalog-icon {
  width: 34px;
  height: 34px;
  background: #fff;
  border: 1px solid rgba(184, 134, 11, .28);
  box-shadow: 0 4px 14px rgba(15, 23, 42, .1);
}
.cat-pill-mosaic {
  position: absolute;
  inset: 5px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 2px;
}
.cat-pill-mosaic-cell {
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 5px;
  background: rgba(255, 255, 255, .92);
}
.cat-pill-mosaic-cell img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 2px;
}
.cat-pill-mosaic-cell--sky { background: #eff6ff; }
.cat-pill-mosaic-cell--mint { background: #ecfdf5; }
.cat-pill-mosaic-cell--amber { background: #fffbeb; }
.cat-pill-mosaic-cell--rose { background: #fff1f2; }
.cat-pill-mosaic-cell--violet { background: #f5f3ff; }
.cat-pill-mosaic-cell--teal { background: #f0fdfa; }
.cat-pill-catalog-icon {
  position: relative;
  z-index: 2;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: var(--accent);
  background: rgba(255, 255, 255, .94);
  border: 1px solid rgba(184, 134, 11, .22);
  box-shadow: 0 4px 12px rgba(15, 23, 42, .12);
}
.cat-pill-catalog-icon svg {
  width: 15px;
  height: 15px;
}
.cat-pill-photo--sky { background: #dbeafe; }
.cat-pill-photo--mint { background: #dcfce7; }
.cat-pill-photo--amber { background: #fef3c7; }
.cat-pill-photo--rose { background: #ffe4e6; }
.cat-pill-photo--violet { background: #ede9fe; }
.cat-pill-photo--teal { background: #ccfbf1; }
.cat-pill-photo--orange { background: #ffedd5; }
.cat-pill-photo--lime { background: #ecfccb; }
.cat-pill-photo--sand { background: #fef9c3; }
.cat-pill-label {
  display: block;
  width: 100%;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  color: var(--ink);
  transition: color .2s ease;
}
.cat-pill.is-active .cat-pill-label { color: var(--accent); }
.catalog-categories-head {
  margin-bottom: 12px;
}
.catalog-categories-head h2 {
  font-size: clamp(20px, 2.6vw, 26px);
  margin-top: 0;
  line-height: 1.15;
}
.catalog-categories {
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line-soft);
}
.catalog-categories .cat-pills {
  grid-template-columns: repeat(auto-fill, minmax(118px, 1fr));
  gap: 10px 16px;
  margin-bottom: 0;
}
.catalog-categories .cat-pills--scroll {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 6px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.catalog-categories .cat-pills--scroll::-webkit-scrollbar { display: none; }
.catalog-categories .cat-pills--scroll .cat-pill {
  flex: 0 0 108px;
  scroll-snap-align: start;
}
.catalog-categories .cat-pill {
  gap: 6px;
}
.catalog-categories .cat-pill-label {
  font-size: 12px;
  line-height: 1.2;
}
.cat-pills--linked .cat-pill {
  color: inherit;
  text-decoration: none;
}
.catalog-section { padding-top: 24px; }

@media (max-width: 900px) {
  .cat-pills { grid-template-columns: repeat(auto-fill, minmax(100px, 1fr)); }
}
@media (max-width: 640px) {
  .home-categories .cat-pills,
  .cat-pills { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px 10px; }
  .home-categories { padding: 12px 0 10px; }
  .home-categories .section-head--tight { margin-bottom: 10px; }
  .about-subnav-grid { grid-template-columns: 1fr 1fr; gap: 6px; }
  .about-subnav-card { min-height: 48px; padding: 7px 8px; }
  .about-subnav-copy strong { font-size: 11px; }
  .about-subnav-copy em { display: none; }
  .about-tone-grid,
  .about-tone-grid--trio,
  .about-review-grid,
  .about-mini-stats { grid-template-columns: 1fr; }
  .about-faq-panel { padding-left: 14px; }
  .catalog-categories .cat-pills { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px 10px; }
  .cat-pill-label { font-size: 11px; }
  .cat-pill-card { border-radius: 18px; }
}

/* —— Catalog mega menu (3-column) —— */
.catalog-mega {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .22s ease, visibility .22s ease;
}
.catalog-mega.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
body.catalog-mega-open { overflow: hidden; }
.catalog-mega-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, .48);
  backdrop-filter: blur(5px);
}
.catalog-mega-panel {
  position: relative;
  width: min(980px, 100%);
  max-height: min(88vh, 680px);
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: calc(var(--radius) + 6px);
  border: 1px solid var(--line);
  box-shadow: 0 24px 64px rgba(15, 23, 42, .18);
  overflow: hidden;
  transform: translateY(10px) scale(.985);
  transition: transform .22s ease;
}
.catalog-mega.is-open .catalog-mega-panel {
  transform: translateY(0) scale(1);
}
.catalog-mega-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.catalog-mega-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.catalog-mega-brand-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #fff7ed;
  color: var(--accent);
  display: grid;
  place-items: center;
}
.catalog-mega-brand-icon svg { width: 18px; height: 18px; }
.catalog-mega-brand h2 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
}
.catalog-mega-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.catalog-mega-all {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
}
.catalog-mega-all:hover { text-decoration: underline; }
.catalog-mega-close {
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--muted);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: .2s ease;
}
.catalog-mega-close:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.catalog-mega-body {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  min-height: 0;
  flex: 1;
  overflow: hidden;
}
.catalog-mega-col {
  display: flex;
  flex-direction: column;
  min-height: 0;
  border-right: 1px solid var(--line);
  background: #fff;
}
.catalog-mega-col:last-child { border-right: none; }
.catalog-mega-col-label,
.catalog-mega-col-title {
  margin: 0;
  padding: 14px 18px 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
}
.catalog-mega-col-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding-right: 12px;
  border-bottom: 1px solid var(--line);
}
.catalog-mega-col-head--brands {
  align-items: flex-start;
  padding-bottom: 8px;
}
.catalog-mega-col-head-copy {
  min-width: 0;
  padding: 12px 0 0 16px;
}
.catalog-mega-col-hint {
  margin: 2px 0 0;
  font-size: 11px;
  line-height: 1.35;
  color: var(--muted);
  font-weight: 500;
}
.catalog-mega-col-head .catalog-mega-col-title {
  padding: 12px 0 0 16px;
}
.catalog-mega-col-head--brands .catalog-mega-col-title {
  padding: 0;
}
.catalog-mega-col-link {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: var(--muted);
  text-decoration: none;
  flex-shrink: 0;
}
.catalog-mega-col-link svg { width: 14px; height: 14px; }
.catalog-mega-col-link:hover {
  background: #f8fafc;
  color: var(--accent);
}
.catalog-mega-list {
  list-style: none;
  margin: 0;
  padding: 6px 0 12px;
  overflow-y: auto;
  flex: 1;
}
.catalog-mega-item {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 11px 16px;
  border: none;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
  transition: background .15s ease, color .15s ease;
}
.catalog-mega-item:hover {
  background: #f8fafc;
}
.catalog-mega-item.is-active {
  background: #fff7ed;
  color: var(--accent);
}
.catalog-mega-item.is-all {
  color: var(--accent);
  font-weight: 600;
}
.catalog-mega-item.is-all.is-active {
  background: #fff1f2;
}
.catalog-mega-thumb {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: #f1f5f9;
}
.catalog-mega-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.catalog-mega-item-label {
  flex: 1;
  min-width: 0;
  line-height: 1.3;
}
.catalog-mega-item-meta {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  flex-shrink: 0;
}
.catalog-mega-item.is-active .catalog-mega-item-meta {
  color: var(--accent);
}
.catalog-mega-chevron {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: #cbd5e1;
}
.catalog-mega-item.is-active .catalog-mega-chevron {
  color: var(--accent);
}
.catalog-mega-empty {
  padding: 24px 18px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}
.filter-block--browse { margin-top: 4px; }
.catalog-browse-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px 14px;
  border: 1px dashed var(--line);
  border-radius: 14px;
  background: #f8fafc;
  color: var(--ink);
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease, color .2s ease;
}
.catalog-browse-btn--inline {
  width: auto;
  padding: 0 12px;
  min-height: 34px;
  border-style: solid;
  border-radius: 999px;
  background: var(--surface);
  font-size: 12px;
  gap: 6px;
  white-space: nowrap;
}
.catalog-browse-btn svg { width: 16px; height: 16px; color: var(--accent); }
.catalog-browse-btn--inline svg { width: 14px; height: 14px; }
.catalog-browse-btn:hover {
  border-color: var(--accent);
  background: #fff7ed;
  color: var(--accent);
}

@media (max-width: 860px) {
  .catalog-mega { padding: 0; align-items: end; }
  .catalog-mega-panel {
    width: 100%;
    max-height: 92vh;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
  .catalog-mega-body {
    grid-template-columns: 1fr;
    overflow-y: auto;
  }
  .catalog-mega-col {
    border-right: none;
    border-bottom: 1px solid var(--line);
    max-height: none;
  }
  .catalog-mega-col:last-child { border-bottom: none; }
  .catalog-mega-list { max-height: 220px; }
}

/* —— Quote request page —— */
.quote-section { padding-top: 0; }
.quote-alert { margin-bottom: 20px; }
.quote-layout {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 24px;
  align-items: start;
}
.quote-products-panel,
.quote-details-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  padding: 22px;
  box-shadow: 0 8px 30px rgba(15, 23, 42, .04);
}
.quote-panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}
.quote-panel-head h2 {
  margin: 4px 0 0;
  font-size: clamp(20px, 2.4vw, 24px);
}
.quote-selected {
  display: grid;
  gap: 10px;
  margin-bottom: 0;
}
.quote-icon-input {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.quote-icon-input:focus-within {
  border-color: rgba(184, 134, 11, .4);
  box-shadow: 0 0 0 3px rgba(184, 134, 11, .08);
}
.quote-icon-input-icon {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--accent);
}
.quote-icon-input-icon svg { width: 14px; height: 14px; }
.quote-icon-input input,
.quote-icon-input select,
.quote-icon-input textarea {
  width: 100%;
  min-width: 0;
  border: none;
  background: transparent;
  font: inherit;
  font-size: 13px;
  color: var(--ink);
  padding: 7px 0;
  outline: none;
}
.quote-icon-input select { cursor: pointer; }
.quote-icon-input--grow { flex: 1; min-width: 0; }
.quote-icon-input--area {
  align-items: flex-start;
  min-height: 0;
  padding-top: 8px;
  padding-bottom: 8px;
}
.quote-icon-input--area .quote-icon-input-icon { margin-top: 2px; }
.quote-icon-input--area textarea {
  min-height: 72px;
  resize: vertical;
  line-height: 1.45;
}
.quote-quick-search {
  margin: 10px 0;
  padding: 10px;
  border-radius: 12px;
  background: #f8fafc;
  border: 1px solid var(--line-soft);
}
.quote-quick-search-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.quote-quick-results {
  display: grid;
  gap: 8px;
  margin-top: 10px;
}
.quote-quick-item {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  text-align: left;
  cursor: pointer;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.quote-quick-item:hover {
  border-color: rgba(184, 134, 11, .35);
  box-shadow: var(--shadow-sm);
}
.quote-quick-item.is-added {
  border-color: rgba(16, 185, 129, .35);
  background: #f0fdf4;
}
.quote-quick-thumb,
.quote-quick-thumb img,
.quote-quick-thumb span {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  object-fit: contain;
  background: #f8fafc;
  display: grid;
  place-items: center;
}
.quote-quick-copy {
  display: grid;
  gap: 2px;
  min-width: 0;
}
.quote-quick-copy em {
  font-style: normal;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--accent);
}
.quote-quick-copy strong {
  font-size: 13px;
  color: var(--ink);
  line-height: 1.25;
}
.quote-quick-copy span {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.35;
}
.quote-quick-action {
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  white-space: nowrap;
}
.quote-quick-empty,
.quote-picker-empty {
  margin: 0;
  padding: 18px 12px;
  text-align: center;
  font-size: 13px;
  color: var(--muted);
}
.quote-empty {
  margin: 0;
  padding: 14px;
  border: 1px dashed var(--line);
  border-radius: 12px;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
  background: #f8fafc;
}
.quote-selected-item {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 10px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fafafa;
  position: relative;
}
.quote-selected-media {
  width: 72px;
  height: 54px;
  border-radius: 12px;
  overflow: hidden;
  background: #e2e8f0;
}
.quote-selected-media img,
.quote-selected-media span {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: grid;
  place-items: center;
  font-weight: 700;
  color: #94a3b8;
}
.quote-selected-body strong {
  display: block;
  font-size: 14px;
  margin-bottom: 2px;
}
.quote-selected-body p {
  margin: 0 0 6px;
  font-size: 12px;
  color: var(--muted);
}
.quote-selected-meta span {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--accent);
}
.quote-selected-fields {
  display: grid;
  grid-template-columns: 90px 130px 1fr;
  gap: 6px;
}
.quote-selected-fields label {
  display: block;
  min-width: 0;
}
.quote-selected-fields .quote-icon-input {
  min-height: 34px;
  padding: 0 8px;
  border-radius: 9px;
}
.quote-selected-fields .quote-icon-input input,
.quote-selected-fields .quote-icon-input select {
  font-size: 12px;
  padding: 6px 0;
}
.quote-selected-fields label.quote-selected-wide {
  grid-column: 1 / -1;
}
.quote-selected-fields label.quote-year-exact,
.quote-selected-fields label.quote-year-from,
.quote-selected-fields label.quote-year-to {
  display: none;
}
.quote-selected-fields label.is-visible {
  display: block;
}
.quote-selected-fields input,
.quote-selected-fields select {
  width: 100%;
}
.quote-selected-remove,
.quote-custom-remove {
  width: 28px;
  height: 28px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--muted);
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  align-self: start;
}
.quote-custom {
  margin-bottom: 4px;
  padding: 10px 12px;
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}
.quote-custom--compact .quote-custom-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.quote-custom-head-icon {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: rgba(184, 134, 11, .1);
  color: var(--accent);
  flex-shrink: 0;
}
.quote-custom-head-icon svg { width: 16px; height: 16px; }
.quote-custom-head-copy {
  display: grid;
  gap: 1px;
  min-width: 0;
}
.quote-custom-head-copy strong {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
}
.quote-custom-head-copy span {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.3;
}
.quote-custom-list { display: grid; gap: 8px; }
.quote-custom-row {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.2fr) 72px minmax(0, 1fr) auto;
  gap: 6px;
  align-items: center;
  padding: 8px;
  border: 1px dashed #cbd5e1;
  border-radius: 10px;
  background: #fff;
  position: relative;
}
.quote-custom-field {
  display: block;
  min-width: 0;
}
.quote-custom-field .quote-icon-input {
  min-height: 34px;
  padding: 0 8px;
}
.quote-custom-field .quote-icon-input input {
  font-size: 12px;
  padding: 6px 0;
}
.quote-custom-row .quote-custom-remove {
  position: static;
  align-self: center;
  justify-self: end;
}
.quote-custom-add {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  border: none;
  background: none;
  color: var(--accent);
  font: inherit;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
}
.quote-custom-add svg { width: 14px; height: 14px; }
.quote-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.quote-field {
  display: grid;
  gap: 4px;
}
.quote-field--full { grid-column: 1 / -1; }
.quote-field-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: .02em;
}
.quote-field > span.quote-icon-input { display: flex; }
.quote-field input,
.quote-field select,
.quote-field textarea {
  width: 100%;
}
.quote-selected-model-year {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 0 8px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  color: var(--ink);
  background: #eef2f7;
}
.quote-actions { margin-top: 20px; }
.quote-interests {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line-soft);
}
.quote-interests-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px 16px;
  margin-bottom: 12px;
}
.quote-interests-head h3 {
  margin: 4px 0 4px;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
}
.quote-interests-head p {
  margin: 0;
  font-size: 12px;
  line-height: 1.45;
  color: var(--muted);
  max-width: 42ch;
}
.quote-interests-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  flex-shrink: 0;
}
.quote-interests-tool {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text-soft);
  border-radius: 999px;
  padding: 5px 11px;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  transition: border-color .2s ease, color .2s ease, background .2s ease;
}
.quote-interests-tool:hover {
  border-color: rgba(184, 134, 11, .35);
  color: var(--accent);
  background: rgba(184, 134, 11, .05);
}
.quote-interest-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}
.quote-interest-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 10px 11px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.quote-interest-card:hover {
  border-color: rgba(184, 134, 11, .28);
  box-shadow: var(--shadow-sm);
}
.quote-interest-card.is-selected {
  border-color: rgba(184, 134, 11, .45);
  background: linear-gradient(145deg, #fff, #fffbeb);
  box-shadow: 0 0 0 1px rgba(184, 134, 11, .12);
}
.quote-interest-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.quote-interest-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.quote-interest-icon svg { width: 16px; height: 16px; }
.quote-interest-copy {
  display: grid;
  gap: 2px;
  min-width: 0;
}
.quote-interest-copy strong {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.25;
}
.quote-interest-copy em {
  font-style: normal;
  font-size: 10px;
  line-height: 1.3;
  color: var(--muted);
}
.quote-interest-check {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: transparent;
  background: #fff;
  transition: border-color .2s ease, background .2s ease, color .2s ease;
}
.quote-interest-check svg { width: 11px; height: 11px; }
.quote-interest-card.is-selected .quote-interest-check {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}
.quote-interest-card--sky .quote-interest-icon { background: rgba(59,130,246,.12); color: var(--tone-sky); }
.quote-interest-card--gold .quote-interest-icon { background: rgba(184,134,11,.14); color: var(--tone-amber); }
.quote-interest-card--mint .quote-interest-icon { background: rgba(16,185,129,.12); color: var(--tone-mint); }
.quote-interest-card--violet .quote-interest-icon { background: rgba(139,92,246,.12); color: var(--tone-violet); }
.quote-interest-card--teal .quote-interest-icon { background: rgba(20,184,166,.12); color: var(--tone-teal); }
.quote-interest-card--sand .quote-interest-icon { background: rgba(217,119,6,.12); color: var(--tone-sand); }
.quote-interest-card--rose .quote-interest-icon { background: rgba(244,63,94,.12); color: var(--tone-rose); }
.quote-actions .btn-lg {
  width: 100%;
  justify-content: center;
  padding: 14px 18px;
}
.quote-hint {
  margin: 10px 0 0;
  font-size: 12px;
  color: var(--muted);
  text-align: center;
}

.quote-picker {
  position: fixed;
  inset: 0;
  z-index: 1450;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .22s ease, visibility .22s ease;
}
.quote-picker.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
body.quote-picker-open { overflow: hidden; }
.quote-picker-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, .5);
  backdrop-filter: blur(5px);
}
.quote-picker-panel {
  position: relative;
  width: min(920px, 100%);
  max-height: min(88vh, 760px);
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: calc(var(--radius) + 6px);
  border: 1px solid var(--line);
  box-shadow: 0 28px 80px rgba(15, 23, 42, .2);
  overflow: hidden;
}
.quote-picker-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
}
.quote-picker-head h2 { margin: 4px 0 0; font-size: 20px; }
.quote-picker-close {
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  font-size: 22px;
  cursor: pointer;
}
.quote-picker-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 160px auto;
  gap: 10px;
  align-items: center;
  padding: 14px 20px;
  border-bottom: 1px solid var(--line);
}
.quote-picker-brand {
  min-height: 42px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 12px;
  font: inherit;
  font-size: 13px;
  background: #fff;
}
.quote-picker-category {
  display: block;
  margin-top: 2px;
  font-size: 10px;
  color: var(--muted);
}
.quote-picker-year,
.quote-quick-year {
  display: inline-flex;
  align-items: center;
  min-height: 18px;
  padding: 0 6px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  color: var(--ink);
  background: #eef2f7;
}
.quote-quick-year {
  width: fit-content;
}
.quote-picker-foot-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.quote-picker-clear {
  border: none;
  background: none;
  padding: 0;
  font: inherit;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  cursor: pointer;
}
.quote-picker-search {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  font: inherit;
}
.quote-picker-count {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  white-space: nowrap;
}
.quote-picker-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 10px;
  padding: 16px 20px;
  overflow-y: auto;
  flex: 1;
}
.quote-picker-item {
  display: grid;
  gap: 6px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  text-align: left;
  cursor: pointer;
  position: relative;
  transition: border-color .18s ease, background .18s ease;
}
.quote-picker-item.is-selected {
  border-color: var(--accent);
  background: #fff7ed;
}
.quote-picker-check {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  display: grid;
  place-items: center;
}
.quote-picker-item:not(.is-selected) .quote-picker-check {
  background: #e2e8f0;
  color: transparent;
}
.quote-picker-thumb {
  aspect-ratio: 4/3;
  border-radius: 10px;
  overflow: hidden;
  background: #f1f5f9;
}
.quote-picker-thumb img,
.quote-picker-thumb span {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 700;
  color: #94a3b8;
}
.quote-picker-name {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.25;
}
.quote-picker-brand-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent);
}
.quote-picker-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 20px;
  border-top: 1px solid var(--line);
  background: #fafafa;
}

@media (max-width: 960px) {
  .quote-layout { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .quote-fields,
  .quote-selected-fields,
  .quote-custom-row { grid-template-columns: 1fr; }
  .quote-selected-fields { grid-template-columns: 1fr 1fr; }
  .quote-selected-item { grid-template-columns: 72px 1fr; }
  .quote-selected-remove { position: absolute; top: 8px; right: 8px; }
  .quote-picker-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .quote-interests-head { flex-direction: column; }
  .quote-interest-grid { grid-template-columns: 1fr; }
  .quote-picker-toolbar { grid-template-columns: 1fr; }
  .quote-quick-search-row { flex-direction: column; align-items: stretch; }
  .quote-picker-foot { flex-direction: column; align-items: stretch; }
  .blog-grid,
  .blog-related-list { grid-template-columns: 1fr; }
  .blog-article-layout { grid-template-columns: 1fr; }
  .page-banner-blog-top { grid-template-columns: 1fr; }
  .blog-filters { overflow-x: auto; flex-wrap: nowrap; padding-bottom: 4px; }
}

/* —— Blog —— */
.page-banner--blog { padding-bottom: 20px; }
.page-banner-blog-top {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 20px;
  align-items: end;
}
.blog-section { padding: 24px 0 40px; }
.blog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}
.blog-filter {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-soft);
  text-decoration: none;
  transition: border-color .2s ease, background .2s ease, color .2s ease;
}
.blog-filter:hover { border-color: #cbd5e1; color: var(--ink); }
.blog-filter.is-active {
  border-color: rgba(184, 134, 11, .35);
  background: rgba(184, 134, 11, .08);
  color: var(--ink);
}
.blog-filter--sky.is-active { background: rgba(59,130,246,.1); border-color: rgba(59,130,246,.25); color: var(--tone-sky); }
.blog-filter--amber.is-active { background: rgba(217,119,6,.1); border-color: rgba(217,119,6,.25); color: var(--tone-sand); }
.blog-filter--violet.is-active { background: rgba(139,92,246,.1); border-color: rgba(139,92,246,.25); color: var(--tone-violet); }
.blog-filter--mint.is-active { background: rgba(16,185,129,.1); border-color: rgba(16,185,129,.25); color: var(--tone-mint); }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.blog-card {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform .22s ease, box-shadow .22s ease;
}
.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.blog-card-hit {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
}
.blog-card-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #e2e8f0;
}
.blog-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.blog-card-placeholder {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  font-weight: 700;
  color: #94a3b8;
}
.blog-card-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 4px 9px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(255,255,255,.8);
  color: var(--ink);
}
.blog-card-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 14px 14px 16px;
  flex: 1;
}
.blog-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
}
.blog-card-body h3 {
  font-size: 16px;
  line-height: 1.35;
  margin: 0;
}
.blog-card-body p {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-soft);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
}
.blog-card-link svg { width: 14px; height: 14px; }
.blog-card--sky { background: linear-gradient(180deg, #fff, #eff6ff); }
.blog-card--amber { background: linear-gradient(180deg, #fff, #fffbeb); }
.blog-card--violet { background: linear-gradient(180deg, #fff, #f5f3ff); }
.blog-card--mint { background: linear-gradient(180deg, #fff, #ecfdf5); }
.blog-empty {
  margin: 0;
  padding: 28px;
  text-align: center;
  color: var(--muted);
  border: 1px dashed var(--line);
  border-radius: 14px;
  background: #f8fafc;
}
.blog-pagination { margin-top: 22px; }

.blog-article-hero {
  padding: 24px 0 20px;
  border-bottom: 1px solid var(--line);
}
.blog-article-hero--sky { background: linear-gradient(180deg, #fff, #eff6ff); }
.blog-article-hero--amber { background: linear-gradient(180deg, #fff, #fffbeb); }
.blog-article-hero--violet { background: linear-gradient(180deg, #fff, #f5f3ff); }
.blog-article-hero--mint { background: linear-gradient(180deg, #fff, #ecfdf5); }
.blog-article-crumb { margin-bottom: 10px; }
.blog-article-tag {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 8px;
}
.blog-article-tag--sky { background: rgba(59,130,246,.12); color: var(--tone-sky); }
.blog-article-tag--amber { background: rgba(217,119,6,.12); color: var(--tone-sand); }
.blog-article-tag--violet { background: rgba(139,92,246,.12); color: var(--tone-violet); }
.blog-article-tag--mint { background: rgba(16,185,129,.12); color: var(--tone-mint); }
.blog-article-hero h1 {
  font-size: clamp(26px, 3.8vw, 40px);
  line-height: 1.15;
  max-width: 22ch;
}
.blog-article-lead {
  margin: 10px 0 0;
  max-width: 62ch;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-soft);
}
.blog-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
}
.blog-article-meta svg { width: 13px; height: 13px; vertical-align: -2px; }
.blog-article-section { padding: 28px 0 40px; }
.blog-article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 24px;
  align-items: start;
}
.blog-article {
  padding: 0;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.blog-article-cover img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  display: block;
}
.blog-article-content {
  padding: 22px 24px;
}
.blog-article-content p {
  margin: 0 0 14px;
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-soft);
}
.blog-article-content p:last-child { margin-bottom: 0; }
.blog-article-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0 24px 22px;
}
.blog-related h2 {
  font-size: 18px;
  margin-bottom: 12px;
}
.blog-related-list {
  display: grid;
  gap: 12px;
}
.blog-related .blog-card-body h3 { font-size: 14px; }
.blog-related .blog-card-body p { -webkit-line-clamp: 2; }

@media (max-width: 1100px) {
  .blog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .blog-article-layout { grid-template-columns: 1fr; }
  .page-banner-blog-top { grid-template-columns: 1fr; }
}

/* —— Product gallery (about) —— */
.gallery-page-head {
  padding: 10px 0 12px;
  border-bottom: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, .45);
}
.gallery-page-head-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px 24px;
  flex-wrap: wrap;
}
.gallery-page-copy h1 {
  margin: 4px 0 0;
  font-size: clamp(22px, 2.8vw, 30px);
  line-height: 1.12;
}
.gallery-page-copy p {
  margin: 4px 0 0;
  font-size: 13px;
  line-height: 1.45;
  color: var(--muted);
  max-width: 42ch;
}
.gallery-page-copy .eyebrow {
  font-size: 11px;
  margin-bottom: 0;
}
.gallery-page-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.gallery-page-stat {
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
  padding: 6px 11px;
  border-radius: 999px;
  font-size: 12px;
  color: var(--muted);
  background: #fff;
  border: 1px solid var(--line);
}
.gallery-page-stat strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}
.gallery-section { padding: 16px 0 28px; }
.gallery-filterbar {
  margin-bottom: 14px;
  padding: 10px 12px;
}
.gallery-filterbar .catalog-filterbar-brands {
  margin: 0;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}
.gallery-album {
  display: grid;
  gap: 10px;
  padding: 0;
  border: none;
  background: transparent;
  text-align: left;
  cursor: pointer;
  color: inherit;
  font: inherit;
  touch-action: manipulation;
}
.gallery-album-media {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  border-radius: calc(var(--radius) + 2px);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #eef2f7;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.gallery-album-media img,
.gallery-album-overlay,
.gallery-album-zoom,
.gallery-album-play,
.gallery-album-count {
  pointer-events: none;
}
.gallery-album-zoom {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 2;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(15, 23, 42, .55);
  opacity: 0;
  transform: scale(.92);
  transition: opacity .2s ease, transform .2s ease;
}
.gallery-album-zoom svg { width: 15px; height: 15px; }
.gallery-album:hover .gallery-album-zoom,
.gallery-album:focus-visible .gallery-album-zoom {
  opacity: 1;
  transform: scale(1);
}
.gallery-album-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}
.gallery-album-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(15,23,42,.72) 100%);
  opacity: .82;
  transition: opacity .25s ease;
}
.gallery-album-play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
  pointer-events: none;
}
.gallery-album-play svg {
  width: 42px;
  height: 42px;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,.28));
}
.gallery-album-count {
  position: absolute;
  left: 10px;
  bottom: 10px;
  z-index: 1;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 6px;
}
.gallery-album-count span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 8px;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(6px);
  font-size: 10px;
  font-weight: 700;
  color: var(--ink);
}
.gallery-album-copy {
  display: grid;
  gap: 2px;
  padding: 0 2px;
}
.gallery-album-copy em {
  font-style: normal;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--accent);
}
.gallery-album-copy strong {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--ink);
}
.gallery-album:hover .gallery-album-media {
  transform: translateY(-3px);
  border-color: #cbd5e1;
  box-shadow: 0 16px 36px rgba(15,23,42,.1);
}
.gallery-album:hover .gallery-album-media img { transform: scale(1.05); }
.gallery-album:hover .gallery-album-overlay { opacity: .95; }

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2100;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .22s ease, visibility .22s ease;
}
.gallery-lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
body.gallery-lightbox-open { overflow: hidden; }
.gallery-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, .72);
  backdrop-filter: blur(6px);
}
.gallery-lightbox-panel {
  position: relative;
  width: min(1080px, 100%);
  max-height: min(92vh, 900px);
  display: grid;
  grid-template-rows: auto 1fr auto;
  background: #fff;
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(15, 23, 42, .24);
}
.gallery-lightbox-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
}
.gallery-lightbox-meta { min-width: 0; }
.gallery-lightbox-brand {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--accent);
}
.gallery-lightbox-meta h2 {
  margin: 2px 0 0;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.25;
}
.gallery-lightbox-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.gallery-lightbox-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
}
.gallery-lightbox-link svg { width: 14px; height: 14px; color: var(--accent); }
.gallery-lightbox-close {
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 999px;
  background: #f8fafc;
  color: var(--ink);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}
.gallery-lightbox-stage-wrap {
  position: relative;
  min-height: 0;
  background: #0f172a;
}
.gallery-lightbox-stage {
  display: grid;
  place-items: center;
  min-height: min(58vh, 520px);
  max-height: min(58vh, 520px);
  padding: 12px;
  cursor: pointer;
}
.gallery-lightbox-stage img,
.gallery-lightbox-stage video {
  max-width: 100%;
  max-height: min(58vh, 520px);
  object-fit: contain;
  animation: gallery-lightbox-fade .22s ease;
}
@keyframes gallery-lightbox-fade {
  from { opacity: 0; transform: scale(.985); }
  to { opacity: 1; transform: scale(1); }
}
.gallery-lightbox-stage iframe {
  width: min(960px, 100%);
  height: min(58vh, 520px);
  border: 0;
}
.gallery-lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  color: var(--ink);
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}
.gallery-lightbox-nav:disabled {
  opacity: .35;
  cursor: not-allowed;
}
.gallery-lightbox-nav svg { width: 16px; height: 16px; }
.gallery-lightbox-nav--prev { left: 12px; }
.gallery-lightbox-nav--prev svg { transform: rotate(180deg); }
.gallery-lightbox-nav--next { right: 12px; }
.gallery-lightbox-foot {
  display: grid;
  gap: 8px;
  padding: 12px 16px 14px;
  border-top: 1px solid var(--line);
}
.gallery-lightbox-foot-top {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px 16px;
}
.gallery-lightbox-caption {
  margin: 0;
  flex: 1 1 220px;
  font-size: 13px;
  line-height: 1.45;
  color: var(--muted);
}
.gallery-lightbox-counter {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
}
.gallery-lightbox-thumbs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 2px;
  scrollbar-width: none;
}
.gallery-lightbox-thumbs::-webkit-scrollbar { display: none; }
.gallery-lightbox-thumb {
  flex: 0 0 auto;
  width: 64px;
  height: 48px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 10px;
  overflow: hidden;
  background: #eef2f7;
  cursor: pointer;
}
.gallery-lightbox-thumb.is-active { border-color: var(--accent); }
.gallery-lightbox-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-lightbox-thumb-video {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  font-size: 16px;
  color: var(--accent);
  background: #fff7ed;
}

@media (max-width: 1100px) {
  .gallery-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .gallery-page-head-inner { align-items: flex-start; }
}
@media (max-width: 760px) {
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .gallery-lightbox { padding: 0; align-items: end; }
  .gallery-lightbox-panel {
    width: 100%;
    max-height: 94vh;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
  .gallery-lightbox-head { flex-direction: column; align-items: stretch; }
  .gallery-lightbox-actions { justify-content: space-between; }
  .gallery-lightbox-stage,
  .gallery-lightbox-stage iframe {
    min-height: 42vh;
    max-height: 42vh;
  }
  .gallery-lightbox-stage img,
  .gallery-lightbox-stage video { max-height: 42vh; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .gallery-album-copy strong { font-size: 13px; }
}
@media (prefers-reduced-motion: reduce) {
  .gallery-album-media,
  .gallery-album-media img,
  .gallery-album-overlay { transition: none; }
}
