/* =========================================================
   Vinay Associates — Dustless Made Simple inspired styling
   White canvas · Safety yellow · Bold black type
   ========================================================= */

:root {
  --black: #111111;
  --ink: #1a1a1a;
  --muted: #5c5c5c;
  --line: #e5e5e5;
  --soft: #f5f5f5;
  --white: #ffffff;
  --yellow: #FFD400;
  --yellow-hover: #f0c400;
  --yellow-soft: #fff6c2;
  --max: 1200px;
  --radius: 10px;
  --radius-pill: 999px;
  --font: "Inter", system-ui, -apple-system, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0; line-height: 1.12; letter-spacing: -0.025em; }
p { margin: 0; }

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--yellow);
  color: var(--black);
  padding: 0.7rem 1rem;
  z-index: 200;
}
.skip-link:focus { left: 1rem; top: 1rem; }

/* ---------- Header (Clayton-style) ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-top { border-bottom: 1px solid var(--line); }
.header-top-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  align-items: center;
  padding: 0.55rem 0;
}
.top-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s;
}
.top-link:hover { color: var(--black); }
.top-link-right { margin-left: auto; }
.header-main {
  border-bottom: 1px solid var(--line);
  position: relative;
}
.header-main-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
  padding: 0.55rem 0;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--black);
  flex-shrink: 0;
}
.logo-img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  display: block;
  background: var(--white);
  border-radius: 8px;
}
.logo-img-light {
  background: transparent;
  width: 48px;
  height: 48px;
}
.logo-text {
  display: none;
  flex-direction: column;
  line-height: 1.1;
  text-align: left;
}
@media (min-width: 520px) {
  .logo-text { display: flex; }
}
.logo-text strong {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  font-style: italic;
}
.logo-text small {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--muted);
  margin-top: 0.15rem;
}
.logo-footer .logo-text { display: flex; }
.logo-footer .logo-text strong { color: var(--white); font-style: italic; }
.logo-footer .logo-text small { color: rgba(255,255,255,0.55); }
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}
.header-cta { display: none; }
.nav-toggle {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  display: grid;
  place-content: center;
  gap: 5px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--black);
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-toggle span { transition: transform 0.2s, opacity 0.2s; }

/* Primary nav — modern mega / dropdown */
.nav-primary {
  display: none;
  align-items: center;
  gap: 0.15rem;
  align-self: stretch;
}
.nav-item {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}
.nav-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.65rem 0.9rem;
  border: 0;
  background: transparent;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.nav-trigger:hover,
.nav-item.is-open > .nav-trigger {
  background: var(--soft);
  color: var(--black);
}
.nav-trigger .chev { transition: transform 0.2s; }
.nav-item.is-open > .nav-trigger .chev { transform: rotate(180deg); }

/* Panels sit flush under the trigger — no dead gap */
.mega-panel,
.dropdown-panel {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 80;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.15s ease, visibility 0.15s;
  /* Invisible hover bridge above the visible card */
  padding-top: 0.5rem;
  background: transparent;
  border: 0;
  box-shadow: none;
}
.mega-panel > .mega-grid,
.dropdown-panel > .dropdown-inner {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 22px 50px rgba(0,0,0,0.12);
}
.dropdown-panel > .dropdown-inner {
  min-width: 280px;
  padding: 0.55rem;
}
.nav-item.is-open > .mega-panel,
.nav-item.is-open > .dropdown-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.has-dropdown .dropdown-panel {
  left: 0;
  right: auto;
}

.dropdown-panel a {
  display: grid;
  gap: 0.15rem;
  padding: 0.75rem 0.85rem;
  border-radius: 10px;
  transition: background 0.15s;
}
.dropdown-panel a:hover { background: var(--soft); }
.dropdown-panel strong {
  font-size: 0.92rem;
  font-weight: 700;
}
.dropdown-panel span {
  font-size: 0.8rem;
  color: var(--muted);
}

/* Mega under Products — relative so hover path stays continuous */
.has-mega { position: relative; }
.mega-panel {
  left: 50%;
  right: auto;
  width: min(960px, 92vw);
  transform: translateX(-50%);
  padding-top: 0.55rem;
}
.nav-item.is-open > .mega-panel {
  /* transform already on base; keep centered while open */
  transform: translateX(-50%);
}
.mega-panel > .mega-grid {
  width: 100%;
  margin: 0;
  padding: 1.25rem;
}
.mega-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 0.95fr;
  gap: 1rem;
}
.mega-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.55rem;
  padding: 0 0.35rem;
}
.mega-col a {
  display: grid;
  gap: 0.12rem;
  padding: 0.65rem 0.7rem;
  border-radius: 10px;
  margin-bottom: 0.2rem;
  transition: background 0.15s;
}
.mega-col a:hover { background: var(--soft); }
.mega-col strong { font-size: 0.92rem; font-weight: 700; }
.mega-col span { font-size: 0.78rem; color: var(--muted); }
.mega-cta {
  margin-top: 0.45rem !important;
  background: var(--yellow-soft);
}
.mega-cta:hover { background: var(--yellow) !important; }
.mega-feature {
  background: var(--soft);
  border-radius: 12px;
  padding: 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.mega-feature img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 10px;
}
.mega-feature p {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
}
.mega-feature a {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--black);
}

/* Mobile accordion menu */
.nav-mobile {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.75rem 1.25rem 1.25rem;
  border-top: 1px solid var(--line);
  background: var(--white);
  max-height: min(78vh, 640px);
  overflow: auto;
}
.nav-mobile[hidden] { display: none !important; }
.nav-mobile .btn { margin-top: 0.75rem; text-align: center; }
.mobile-acc {
  border-bottom: 1px solid var(--soft);
}
.mobile-acc summary {
  list-style: none;
  cursor: pointer;
  font-weight: 700;
  padding: 0.95rem 0.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mobile-acc summary::-webkit-details-marker { display: none; }
.mobile-acc summary::after {
  content: "+";
  font-size: 1.2rem;
  color: var(--muted);
}
.mobile-acc[open] summary::after { content: "–"; }
.mobile-acc-body {
  display: grid;
  gap: 0.15rem;
  padding: 0 0.2rem 0.85rem;
}
.mobile-acc-body a {
  padding: 0.55rem 0.35rem;
  font-weight: 500;
  color: var(--ink);
  border-radius: 8px;
}
.mobile-acc-body a:hover { background: var(--soft); }
.mobile-acc-body .mega-label { margin: 0.55rem 0 0.2rem; }

@media (min-width: 960px) {
  .nav-primary { display: flex; }
  .nav-toggle { display: none; }
  .header-cta { display: inline-flex; }
  .nav-mobile { display: none !important; }
  .header-top-inner { gap: 2rem; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.85rem 1.35rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s var(--ease), border-color 0.2s;
}
.btn:hover { transform: translateY(-1px); }
.btn-sm { padding: 0.5rem 0.9rem; font-size: 0.85rem; }
.btn-yellow {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
}
.btn-yellow:hover { background: var(--yellow-hover); }
.btn-outline {
  background: transparent;
  border-color: var(--line);
  color: var(--black);
}
.btn-outline:hover { border-color: var(--black); }
.btn-dark {
  background: var(--black);
  color: var(--white);
}
.btn-dark:hover { background: #333; }

/* ---------- Hero ---------- */
.hero {
  padding: 3.5rem 0 2.5rem;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 960px) {
  .hero-grid { grid-template-columns: 1.05fr 0.95fr; gap: 2rem; }
}
.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 800;
  margin-bottom: 1.25rem;
  max-width: 14ch;
}
.hero-mark {
  display: inline-block;
  background: var(--yellow);
  padding: 0.12em 0.28em;
  border-radius: 8px;
  margin-top: 0.15em;
}
.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.35rem;
}
.pill {
  padding: 0.4rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--muted);
  background: var(--white);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.pill:hover {
  border-color: var(--black);
  color: var(--black);
  background: var(--soft);
}
.hero-lead {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 42ch;
  margin-bottom: 1.5rem;
}
.hero-lead strong { color: var(--black); font-weight: 700; }

.hero-visual {
  position: relative;
  min-height: 380px;
  border-radius: 18px;
  overflow: hidden;
  background: var(--soft);
}
.hero-visual-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255,212,0,0.35) 0%, transparent 45%),
    url("https://images.unsplash.com/photo-1581094794329-cd11fdb629eb?auto=format&fit=crop&w=1200&q=80") center/cover;
}
.hero-visual-shape {
  position: absolute;
  right: -8%;
  top: 8%;
  width: 58%;
  height: 78%;
  background: var(--yellow);
  border-radius: 28px;
  transform: rotate(8deg);
  z-index: 0;
}
.hero-visual-photo {
  position: absolute;
  inset: 8% 8% 8% 18%;
  border-radius: 16px;
  background: #ddd center/cover no-repeat;
  z-index: 1;
  box-shadow: 0 20px 50px rgba(0,0,0,0.18);
}
.hero-badge {
  position: absolute;
  left: 6%;
  bottom: 10%;
  z-index: 2;
  background: var(--white);
  border: 2px solid var(--black);
  border-radius: 12px;
  padding: 0.75rem 1rem;
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.statement {
  text-align: center;
  padding: 2.5rem 0 1rem;
  font-size: clamp(1.15rem, 2.4vw, 1.55rem);
  font-weight: 700;
  max-width: 820px;
  margin: 0 auto;
  color: var(--ink);
  line-height: 1.35;
}

/* ---------- Sections ---------- */
.section { padding: 4.5rem 0; }
.section-soft { background: var(--soft); }
.section-dark {
  background: var(--black);
  color: var(--white);
}
.section-head {
  max-width: 640px;
  margin-bottom: 2.25rem;
}
.section-head.center {
  margin-inline: auto;
  text-align: center;
}
.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.65rem;
  color: var(--muted);
}
.section-dark .eyebrow { color: var(--yellow); }
.section-head h2 {
  font-size: clamp(1.85rem, 3.4vw, 2.65rem);
  font-weight: 800;
  margin-bottom: 0.7rem;
}
.section-head p { color: var(--muted); font-size: 1.05rem; }
.section-dark .section-head p { color: rgba(255,255,255,0.7); }

/* Trust pillars */
.pillars {
  display: grid;
  gap: 1.15rem;
  grid-template-columns: 1fr;
}
@media (min-width: 800px) {
  .pillars { grid-template-columns: repeat(3, 1fr); }
}
.pillar { scroll-margin-top: 120px; }
.pillar:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}
.pillar-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--yellow);
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  font-weight: 800;
}
.pillar h3 { font-size: 1.15rem; margin-bottom: 0.45rem; }
.pillar p { color: var(--muted); font-size: 0.95rem; }

/* Product cards — Clayton style */
.product-grid {
  display: grid;
  gap: 1.15rem;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .product-grid { grid-template-columns: repeat(4, 1fr); }
  .product-card.span-2 { grid-column: span 2; }
}
.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 280px;
  border-radius: 14px;
  overflow: hidden;
  background: var(--soft);
  border: 1px solid var(--line);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.1);
}
.product-card.span-2 { min-height: 340px; }
.product-card-media {
  flex: 1;
  min-height: 150px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  transition: transform 0.55s var(--ease);
  will-change: transform;
}
.product-card:hover .product-card-media {
  transform: scale(1.07);
}
.product-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(0,0,0,0.55));
  z-index: 1;
  pointer-events: none;
}
.product-card-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.25rem;
  color: var(--white);
  z-index: 1;
}
.product-card-body .brand-tag {
  display: inline-block;
  background: var(--yellow);
  color: var(--black);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.25rem 0.55rem;
  border-radius: 6px;
  margin-bottom: 0.55rem;
}
.product-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.35rem;
}
.product-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 0.75rem;
}
.learn-more {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--yellow);
}
.product-card:hover .learn-more { text-decoration: underline; }

/* Industry / demand cards */
.demand-grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 800px) {
  .demand-grid { grid-template-columns: repeat(3, 1fr); }
}
.demand-card {
  border-radius: 14px;
  overflow: hidden;
  background: #1c1c1c;
  border: 1px solid #2a2a2a;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  position: relative;
  background-size: cover;
  background-position: center;
}
.demand-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.15), rgba(0,0,0,0.82));
}
.demand-card > * { position: relative; z-index: 1; }
.demand-card h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.demand-card p { color: rgba(255,255,255,0.75); font-size: 0.95rem; margin-bottom: 0.85rem; }
.tag-row { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.tag {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.28rem 0.6rem;
  border-radius: var(--radius-pill);
  background: rgba(255,212,0,0.18);
  color: var(--yellow);
}

/* Case study */
.case {
  display: grid;
  gap: 1.5rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}
@media (min-width: 900px) {
  .case { grid-template-columns: 1.2fr 0.9fr; }
}
.case-copy { padding: 2rem; }
.case-copy h3 {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 800;
  margin-bottom: 0.85rem;
}
.case-copy p { color: var(--muted); margin-bottom: 1rem; }
.case-steps { display: grid; gap: 0.85rem; }
.case-steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
}
.case-steps b {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--black);
  display: grid;
  place-items: center;
  font-size: 0.75rem;
}
.case-side {
  background: var(--soft);
  padding: 2rem;
  display: grid;
  gap: 1rem;
  align-content: center;
}
.metric {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1rem 1.15rem;
}
.metric strong {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
}
.metric span { color: var(--muted); font-size: 0.9rem; }

/* Catalog band */
.catalog-grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 800px) {
  .catalog-grid { grid-template-columns: 1fr 1fr; }
}
.catalog-card {
  border-radius: 16px;
  padding: 2rem;
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--soft);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.catalog-card::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -30px;
  top: -40px;
  border-radius: 40px;
  background: var(--yellow);
  opacity: 0.55;
  transform: rotate(18deg);
}
.catalog-card.alt::before { background: #111; opacity: 0.08; }
.catalog-card h3 {
  position: relative;
  font-size: 1.55rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
}
.catalog-card p {
  position: relative;
  color: var(--muted);
  margin-bottom: 1.15rem;
}
.catalog-card .btn { position: relative; align-self: flex-start; }

/* Support tiles */
.support-grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 800px) {
  .support-grid { grid-template-columns: repeat(4, 1fr); }
}
.support-tile {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.15rem;
  background: var(--white);
  font-weight: 700;
  transition: border-color 0.2s, background 0.2s;
}
.support-tile:hover {
  border-color: var(--black);
  background: var(--yellow-soft);
}

/* Page hero (inner) */
.page-hero {
  padding: 3.25rem 0 2.5rem;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, var(--yellow-soft), transparent 55%),
    var(--white);
}
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  max-width: 16ch;
  margin-bottom: 0.75rem;
}
.page-hero p {
  max-width: 54ch;
  color: var(--muted);
  font-size: 1.05rem;
}

/* Product list rows */
.product-list { display: grid; gap: 1.15rem; }
.product-row {
  display: grid;
  gap: 1.25rem;
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  scroll-margin-top: 140px;
}
@media (min-width: 860px) {
  .product-row {
    grid-template-columns: 220px 1fr auto;
    align-items: center;
  }
}
.product-thumb {
  height: 160px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  overflow: hidden;
  cursor: zoom-in;
  padding: 0;
  margin: 0;
  display: block;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  font: inherit;
}
.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.65rem;
  display: block;
  transition: transform 0.45s var(--ease), opacity 0.35s ease;
}
.product-thumb:hover img,
.product-thumb:focus-visible img {
  transform: scale(1.1);
}
.product-row h2 { font-size: 1.35rem; font-weight: 800; margin-bottom: 0.4rem; }
.product-row p { color: var(--muted); }
.product-row ul {
  margin-top: 0.75rem;
  padding-left: 1.1rem;
  list-style: disc;
  color: var(--muted);
}
.product-row li { margin-bottom: 0.25rem; }
.mini-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(88px, 1fr));
  gap: 0.55rem;
  margin-top: 1rem;
}
.mini-gallery .media-frame {
  width: 100%;
  height: 88px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  padding: 0;
  margin: 0;
  cursor: zoom-in;
  overflow: hidden;
  display: block;
  position: relative;
  appearance: none;
  -webkit-appearance: none;
  font: inherit;
  color: inherit;
}
.mini-gallery .media-frame picture,
.mini-gallery .media-frame img {
  width: 100%;
  height: 88px;
  object-fit: contain;
  display: block;
  padding: 4px;
  background: transparent;
  border: 0;
  transition: transform 0.4s var(--ease), opacity 0.35s ease;
}
.mini-gallery .media-frame:hover img,
.mini-gallery .media-frame:focus-visible img {
  transform: scale(1.14);
}

/* Shared media loading + zoom frames */
.media-frame {
  position: relative;
}
.media-frame.is-loading::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
  background: linear-gradient(110deg, #ececec 8%, #f7f7f7 18%, #ececec 33%);
  background-size: 200% 100%;
  animation: media-shimmer 1.15s linear infinite;
  pointer-events: none;
}
.media-frame.is-loading img {
  opacity: 0;
}
.media-frame.is-loaded img {
  opacity: 1;
}
.media-frame.is-loaded::before {
  opacity: 0;
  animation: none;
  transition: opacity 0.25s ease;
}
@keyframes media-shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.brand-card .media-frame,
.brand-zoom {
  display: block;
  width: 100%;
  max-height: 220px;
  overflow: hidden;
  border-radius: 12px;
  background: #f5f5f5;
  margin-bottom: 1rem;
  border: 0;
  padding: 0;
  cursor: zoom-in;
}
.brand-card .media-frame img,
.brand-zoom img {
  width: 100%;
  max-height: 220px;
  object-fit: contain;
  display: block;
  transition: transform 0.45s var(--ease), opacity 0.35s ease;
}
.brand-card .media-frame:hover img,
.brand-zoom:hover img {
  transform: scale(1.08);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background: rgba(0, 0, 0, 0.78);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}
.lightbox-inner {
  position: relative;
  max-width: min(960px, 100%);
  max-height: 90vh;
  transform: scale(0.94);
  transition: transform 0.28s var(--ease);
}
.lightbox.is-open .lightbox-inner {
  transform: scale(1);
}
.lightbox-img-wrap {
  background: #fff;
  border-radius: 14px;
  padding: 1rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}
.lightbox img {
  display: block;
  max-width: 100%;
  max-height: calc(90vh - 5rem);
  margin: 0 auto;
  object-fit: contain;
  transition: transform 0.35s var(--ease);
  cursor: zoom-in;
}
.lightbox.is-zoomed img {
  transform: scale(1.45);
  cursor: zoom-out;
}
.lightbox-caption {
  margin-top: 0.75rem;
  color: #fff;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
}
.lightbox-close {
  position: absolute;
  top: -0.35rem;
  right: -0.35rem;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--black);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  font-weight: 700;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}
.lightbox-close:hover {
  filter: brightness(0.95);
}
@media (prefers-reduced-motion: reduce) {
  .media-frame.is-loading::before { animation: none; }
  .mini-gallery .media-frame img,
  .product-thumb img,
  .brand-card .media-frame img,
  .product-card-media,
  .lightbox-inner,
  .lightbox img {
    transition: none !important;
  }
  .product-card:hover .product-card-media,
  .mini-gallery .media-frame:hover img,
  .product-thumb:hover img {
    transform: none;
    background-size: cover;
  }
}

/* Brands */
.brand-cards {
  display: grid;
  gap: 1.15rem;
}
@media (min-width: 800px) {
  .brand-cards { grid-template-columns: 1fr 1fr; }
}
.brand-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 2rem;
  background: var(--white);
}
.brand-card h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}
.brand-card p { color: var(--muted); margin-bottom: 1.1rem; }

/* Contact */
.contact-layout {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 900px) {
  .contact-layout { grid-template-columns: 0.9fr 1.1fr; }
}
.contact-card {
  background: var(--black);
  color: var(--white);
  border-radius: 16px;
  padding: 1.85rem;
}
.contact-card h2 {
  font-size: 1.7rem;
  font-weight: 800;
  margin-bottom: 0.6rem;
}
.contact-card p { color: rgba(255,255,255,0.7); margin-bottom: 1.35rem; }
.contact-list { display: grid; gap: 1rem; }
.contact-list strong {
  display: block;
  color: var(--yellow);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}
.contact-list a:hover { color: var(--yellow); }

.form-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.75rem;
  background: var(--white);
  box-shadow: 0 16px 40px rgba(0,0,0,0.05);
}
.form-grid { display: grid; gap: 1rem; }
@media (min-width: 640px) {
  .form-grid.two { grid-template-columns: 1fr 1fr; }
}
.field { display: grid; gap: 0.35rem; }
.field label { font-weight: 600; font-size: 0.9rem; }
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.8rem 0.95rem;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--soft);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--black);
  box-shadow: 0 0 0 3px rgba(255,212,0,0.45);
}
.field textarea { min-height: 130px; resize: vertical; }
.alert {
  padding: 0.85rem 1rem;
  border-radius: 10px;
  margin-bottom: 1rem;
  font-weight: 600;
}
.alert-ok { background: #e8f7ef; color: #0f7a5a; }
.alert-err { background: #fdecea; color: #b42318; }
.form-note { font-size: 0.85rem; color: var(--muted); margin-top: 0.75rem; }

/* FAQ */
.faq { display: grid; gap: 0.65rem; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: var(--white);
}
.faq-q {
  width: 100%;
  text-align: left;
  border: 0;
  background: transparent;
  padding: 1rem 1.1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.faq-q::after { content: "+"; color: var(--black); font-size: 1.2rem; }
.faq-item.is-open .faq-q::after { content: "–"; }
.faq-a {
  display: none;
  padding: 0 1.1rem 1.05rem;
  color: var(--muted);
}
.faq-item.is-open .faq-a { display: block; }

/* Prose */
.prose { max-width: 720px; }
.prose h2 { font-size: 1.3rem; font-weight: 800; margin: 1.75rem 0 0.65rem; }
.prose p { color: var(--muted); margin-bottom: 0.9rem; }
.prose ul { list-style: disc; padding-left: 1.2rem; color: var(--muted); margin-bottom: 0.9rem; }

/* Footer */
.site-footer {
  background: var(--black);
  color: var(--white);
  margin-top: 2rem;
  padding-top: 3.25rem;
}
.footer-grid {
  display: grid;
  gap: 2rem;
  padding-bottom: 2.5rem;
}
@media (min-width: 860px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; }
}
.footer-brand p {
  margin-top: 1rem;
  color: rgba(255,255,255,0.65);
  font-size: 0.95rem;
}
.footer-grid h4 {
  color: var(--yellow);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}
.footer-grid ul { display: grid; gap: 0.5rem; }
.footer-grid a {
  color: rgba(255,255,255,0.72);
  transition: color 0.2s;
}
.footer-grid a:hover { color: var(--yellow); }
.footer-contact { color: rgba(255,255,255,0.72); font-size: 0.95rem; }
.footer-bottom {
  border-top: 1px solid #2a2a2a;
}
.footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
}
.back-to-top {
  background: transparent;
  border: 1px solid #3a3a3a;
  color: var(--white);
  border-radius: var(--radius-pill);
  padding: 0.4rem 0.85rem;
  cursor: pointer;
  font-weight: 600;
}
.back-to-top:hover { border-color: var(--yellow); color: var(--yellow); }

/* Motion */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }

.mt-2 { margin-top: 2rem; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}
