/* =============================================================
   LANP CABLE — Industrial Precision Design System
   Color: LANP Red + Industrial Charcoal + Copper accent
   Type: Display serif + Refined sans-serif
   ============================================================= */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,500;9..144,600;9..144,700;9..144,800&family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  /* Brand */
  --c-red: #c8102e;
  --c-red-deep: #9a0c23;
  --c-red-soft: #fee9ec;

  /* Industrial */
  --c-ink: #14110f;        /* near-black, warm */
  --c-charcoal: #2a2725;
  --c-graphite: #4d4946;
  --c-steel: #7d7873;
  --c-fog: #b9b3ad;
  --c-paper: #f5f1ea;       /* warm off-white background */
  --c-paper-2: #ebe6dd;
  --c-white: #ffffff;

  /* Accent: copper (cable conductor) */
  --c-copper: #c47b3f;
  --c-copper-light: #e8b58a;

  /* Type */
  --f-display: 'Fraunces', 'Times New Roman', Georgia, serif;
  --f-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --f-mono: 'JetBrains Mono', 'SF Mono', Consolas, monospace;

  /* Layout */
  --container: 1280px;
  --gutter: 24px;
  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 14px;

  /* Shadows */
  --sh-sm: 0 1px 2px rgba(20,17,15,0.06), 0 1px 3px rgba(20,17,15,0.04);
  --sh-md: 0 4px 12px rgba(20,17,15,0.08), 0 2px 4px rgba(20,17,15,0.04);
  --sh-lg: 0 12px 32px rgba(20,17,15,0.12), 0 4px 8px rgba(20,17,15,0.06);
  --sh-red: 0 8px 24px rgba(200,16,46,0.18);

  /* Transitions */
  --t-fast: 0.18s ease;
  --t-base: 0.28s cubic-bezier(0.22, 1, 0.36, 1);
  --t-slow: 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ============= RESET ============= */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body {
  margin: 0;
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--c-ink);
  background: var(--c-paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  overflow-x: clip;
  width: 100%;
  max-width: 100vw;
  position: relative;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--t-fast); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select {
  font-family: inherit; font-size: inherit;
}
h1, h2, h3, h4, h5, h6 { font-family: var(--f-display); font-weight: 600; line-height: 1.15; letter-spacing: -0.01em; margin: 0; color: var(--c-ink); }
h1 { font-size: clamp(2.4rem, 5vw, 4.4rem); font-weight: 700; }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.4rem, 2.2vw, 1.7rem); }
p { margin: 0 0 1em 0; }
ul, ol { padding-left: 1.2em; }

/* ============= UTIL ============= */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--f-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-red);
}
.eyebrow::before {
  content: ''; display: block; width: 28px; height: 1px; background: var(--c-red);
}
.eyebrow.center::before { display: none; }
.eyebrow.center { gap: 0; }

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px;
  font-family: var(--f-body); font-weight: 500; font-size: 14px;
  letter-spacing: 0.04em;
  border-radius: 2px;
  transition: all var(--t-base);
  cursor: pointer;
  text-transform: uppercase;
  border: 1.5px solid transparent;
}
.btn-primary {
  background: var(--c-red); color: var(--c-white);
}
.btn-primary:hover {
  background: var(--c-red-deep); transform: translateY(-2px);
  box-shadow: var(--sh-red);
}
.btn-ghost {
  background: transparent; color: var(--c-ink); border-color: var(--c-ink);
}
.btn-ghost:hover {
  background: var(--c-ink); color: var(--c-paper);
}
.btn-light {
  background: var(--c-white); color: var(--c-ink);
}
.btn-light:hover {
  background: var(--c-ink); color: var(--c-white);
}
.btn-arrow::after {
  content: '→'; font-size: 16px;
  transition: transform var(--t-base);
}
.btn-arrow:hover::after { transform: translateX(4px); }

/* ============= TOPBAR ============= */
.topbar {
  background: var(--c-ink);
  color: var(--c-fog);
  font-size: 12.5px;
  padding: 9px 0;
  font-family: var(--f-body);
  letter-spacing: 0.02em;
}
.topbar .container {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.topbar-left { display: flex; gap: 24px; align-items: center; }
.topbar-left span { display: inline-flex; align-items: center; gap: 6px; }
.topbar-left svg { width: 13px; height: 13px; opacity: 0.7; }
.topbar a { color: var(--c-fog); transition: color var(--t-fast); }
.topbar a:hover { color: var(--c-white); }
.topbar-social { display: flex; gap: 14px; align-items: center; }
.topbar-social a { display: inline-flex; align-items: center; justify-content: center; width: 24px; height: 24px; border-radius: 50%; }
.topbar-social svg { width: 14px; height: 14px; }
@media (max-width: 720px) {
  .topbar-left .topbar-addr { display: none; }
}

/* ============= HEADER & MEGA MENU ============= */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--c-paper);
  border-bottom: 1px solid var(--c-paper-2);
  transition: box-shadow var(--t-base), background var(--t-base);
}
.site-header.scrolled {
  background: rgba(245, 241, 234, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--sh-sm);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px;
  padding: 18px 0;
}
.brand { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.brand-logo {
  width: 52px; height: 52px;
  display: block;
  background: transparent;
}
.brand-text { line-height: 1.1; }
.brand-name {
  font-family: var(--f-display);
  font-weight: 700; font-size: 18px;
  letter-spacing: 0.01em; color: var(--c-ink);
}
.brand-sub {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--c-graphite);
  text-transform: uppercase;
  margin-top: 3px;
}
.main-nav {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.nav-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; gap: 4px;
}
.nav-list > li > a, .nav-list > li > button {
  display: flex; align-items: center; gap: 6px;
  padding: 10px 16px;
  font-size: 14px; font-weight: 500;
  color: var(--c-ink);
  letter-spacing: 0.02em;
  position: relative;
  transition: color var(--t-fast);
}
.nav-list > li > a::after, .nav-list > li > button::after {
  content: ''; position: absolute;
  left: 16px; right: 16px; bottom: 4px;
  height: 1.5px; background: var(--c-red);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--t-base);
}
.nav-list > li:hover > a, .nav-list > li:hover > button,
.nav-list > li.active > a, .nav-list > li.active > button {
  color: var(--c-red);
}
.nav-list > li:hover > a::after, .nav-list > li:hover > button::after,
.nav-list > li.active > a::after, .nav-list > li.active > button::after {
  transform: scaleX(1);
}
.nav-list .caret { font-size: 10px; transition: transform var(--t-fast); }
.nav-list li:hover .caret { transform: rotate(180deg); }

/* Mega Menu */
.mega-trigger { position: relative; }
.mega {
  position: fixed;
  left: 0; right: 0; top: auto;
  background: var(--c-white);
  box-shadow: var(--sh-lg);
  border-top: 1px solid var(--c-paper-2);
  border-bottom: 3px solid var(--c-red);
  opacity: 0; visibility: hidden;
  transform: translateY(-8px);
  transition: opacity var(--t-base), transform var(--t-base), visibility 0s linear var(--t-base);
  z-index: 99;
}
.mega-trigger:hover .mega,
.mega:hover {
  opacity: 1; visibility: visible; transform: translateY(0);
  transition: opacity var(--t-base), transform var(--t-base), visibility 0s;
}
.mega-inner {
  max-width: var(--container); margin: 0 auto;
  padding: 36px var(--gutter) 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 1100px) {
  .mega-inner { grid-template-columns: repeat(3, 1fr); }
}
.mega-col-head {
  font-family: var(--f-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--c-ink);
  display: flex; align-items: center; gap: 12px;
  padding-bottom: 12px;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--c-paper-2);
}
.mega-col-head .num {
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 400;
  color: var(--c-red);
  letter-spacing: 0.1em;
}
.mega-card {
  display: flex; flex-direction: column;
  position: relative;
  transition: transform var(--t-base);
}
.mega-card:hover { transform: translateY(-3px); }
.mega-card-main {
  display: flex; flex-direction: column;
  cursor: pointer;
}
.mega-thumb {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--c-paper);
  border: 1px solid var(--c-paper-2);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px;
  overflow: hidden;
  position: relative;
  transition: border-color var(--t-base);
}
.mega-card-main:hover .mega-thumb {
  border-color: var(--c-red);
}
.mega-thumb img {
  width: 100%; height: 100%; object-fit: contain;
  padding: 14px;
  transition: transform var(--t-base);
}
.mega-card-main:hover .mega-thumb img {
  transform: scale(1.06);
}
.mega-cat-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--c-ink);
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
  transition: color var(--t-fast);
}
.mega-card-main:hover .mega-cat-name { color: var(--c-red); }
.mega-cat-count {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--c-steel);
}
.mega-cat-children {
  margin-top: 8px;
  font-size: 12px;
  color: var(--c-graphite);
  line-height: 1.7;
}
.mega-cat-children a {
  color: var(--c-graphite);
  white-space: nowrap;
}
.mega-cat-children a:hover { color: var(--c-red); }
.mega-cat-children .dot { color: var(--c-fog); margin: 0 6px; }

.header-actions {
  display: flex; align-items: center; gap: 12px;
}
.header-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  background: var(--c-red); color: var(--c-white);
  font-size: 13px; font-weight: 500;
  border-radius: 2px;
  transition: all var(--t-base);
  letter-spacing: 0.04em;
}
.header-cta:hover { background: var(--c-red-deep); transform: translateY(-1px); }
.header-cta svg { width: 14px; height: 14px; }

/* Mobile menu */
.menu-toggle {
  display: none;
  width: 40px; height: 40px;
  position: relative;
  z-index: 101;
}
.menu-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--c-ink);
  margin: 5px auto;
  transition: all var(--t-base);
}
.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 980px) {
  .menu-toggle { display: block; }
  .main-nav {
    position: fixed;
    top: 0; right: 0;
    width: 320px; max-width: 90vw;
    height: 100vh;
    background: var(--c-white);
    box-shadow: var(--sh-lg);
    padding: 80px 24px 24px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    overflow-y: auto;
    transition: transform var(--t-base), visibility 0s linear var(--t-base);
    transform: translateX(100%);
    visibility: hidden;
    z-index: 99;
  }
  .main-nav.open {
    transform: translateX(0);
    visibility: visible;
    transition: transform var(--t-base), visibility 0s;
  }
  .nav-list { flex-direction: column; gap: 0; width: 100%; }
  .nav-list > li { border-bottom: 1px solid var(--c-paper-2); }
  .nav-list > li > a, .nav-list > li > button {
    width: 100%; padding: 14px 4px; font-size: 15px;
  }
  .nav-list > li > a::after, .nav-list > li > button::after { display: none; }
  .mega { display: none; }
  .header-actions .header-cta span { display: none; }
}

/* ============= HERO ============= */
.hero {
  position: relative;
  background: var(--c-ink);
  color: var(--c-paper);
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(200,16,46,0.18) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(196,123,63,0.12) 0%, transparent 50%);
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  z-index: 0;
  opacity: 0.7;
  pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 120px;
  min-height: 620px;
}
.hero-content { max-width: 600px; min-width: 0; }
.hero h1 {
  color: var(--c-paper);
  font-family: var(--f-display);
  margin-top: 24px;
  letter-spacing: -0.02em;
  overflow-wrap: break-word;
  word-break: normal;
}
.hero h1 em {
  font-style: italic;
  color: var(--c-red);
  font-weight: 600;
}
.hero-desc {
  font-size: 17px;
  color: var(--c-fog);
  max-width: 540px;
  margin: 28px 0 40px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: 56px;
  margin-top: 80px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.hero-stat-num {
  font-family: var(--f-display);
  font-size: 44px;
  font-weight: 700;
  color: var(--c-paper);
  line-height: 1;
}
.hero-stat-num sup { font-size: 22px; color: var(--c-red); margin-left: 2px; vertical-align: top; }
.hero-stat-label {
  font-family: var(--f-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--c-fog);
  margin-top: 6px;
}
.hero-eyebrow { color: #ff5470; }
.hero-eyebrow::before { background: #ff5470; }

/* Hero visual: layered cable showcase */
.hero-visual {
  position: relative;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}
.hero-card {
  position: absolute;
  top: 50%; left: 50%;
  width: 240px;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-md);
  padding: 20px;
  transition: transform var(--t-slow);
}
.hero-card-img {
  height: 180px;
  background: rgba(245,241,234,0.96);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
  overflow: hidden;
  padding: 14px;
}
.hero-card-img img { width: 100%; height: 100%; object-fit: contain; }
.hero-card-tag {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-red);
  margin-bottom: 6px;
}
.hero-card-title { font-family: var(--f-display); font-size: 17px; font-weight: 600; color: var(--c-paper); }
.hero-card-1 { transform: translate(-115%, -55%) rotate(-5deg); z-index: 1; opacity: 0.5; }
.hero-card-2 { transform: translate(-50%, -50%); z-index: 3; }
.hero-card-3 { transform: translate(15%, -45%) rotate(5deg); z-index: 2; opacity: 0.65; }

.hero-visual:hover .hero-card-1 { transform: translate(-130%, -60%) rotate(-8deg); }
.hero-visual:hover .hero-card-2 { transform: translate(-50%, -54%); }
.hero-visual:hover .hero-card-3 { transform: translate(30%, -40%) rotate(8deg); }

@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 32px; padding-top: 60px; padding-bottom: 80px; }
  .hero-visual { display: none; }
  .hero-stats { gap: 32px; margin-top: 48px; }
  .hero-stat-num { font-size: 32px; }
}

@media (max-width: 540px) {
  :root { --gutter: 18px; }
  .container { padding-left: 18px; padding-right: 18px; }
  h1 { font-size: clamp(2rem, 7vw, 2.6rem); }
  .hero h1 { line-height: 1.2; }
  .topbar-left { gap: 12px; flex-wrap: wrap; }
  .topbar-left span { font-size: 11px; white-space: nowrap; }
  .topbar-left .topbar-addr { display: none; }
  .topbar-social { gap: 10px; }
  .topbar { padding: 8px 0; }
  .topbar .container { gap: 8px; flex-wrap: wrap; }
  .hero-inner { padding-top: 48px; padding-bottom: 64px; min-height: 0; }
  .page-banner { padding: 60px 0 50px; }
  .breadcrumb { padding: 12px 0; font-size: 10.5px; }
  section { padding: 60px 0; }
  .section-head { margin-bottom: 40px; }
  .feat { padding: 56px 0; }
  .footer-grid { padding-bottom: 40px; }
  .site-footer { padding: 60px 0 24px; }
  .hero-actions, .cta-bar-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn, .cta-bar-actions .btn { justify-content: center; }
}

/* ============= SECTION DEFAULTS ============= */
section { padding: 90px 0; }
.section-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 32px; margin-bottom: 56px;
  flex-wrap: wrap;
}
.section-head h2 { max-width: 640px; }
.section-head .head-meta { max-width: 380px; color: var(--c-graphite); }
.section-head.center { text-align: center; flex-direction: column; align-items: center; }
.section-head.center h2, .section-head.center .head-meta { margin-left: auto; margin-right: auto; }

/* ============= CATEGORY GRID (HOMEPAGE) ============= */
.cats {
  background: var(--c-paper);
  position: relative;
}
.cats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.cat-card {
  position: relative;
  background: var(--c-white);
  border: 1px solid var(--c-paper-2);
  overflow: hidden;
  transition: all var(--t-base);
  display: flex; flex-direction: column;
  cursor: pointer;
}
.cat-card:hover {
  border-color: var(--c-ink);
  box-shadow: var(--sh-md);
  transform: translateY(-4px);
}
.cat-card-num {
  position: absolute; top: 18px; left: 18px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--c-steel);
  z-index: 2;
}
.cat-card-img {
  height: 320px;
  display: flex; align-items: center; justify-content: center;
  padding: 50px 40px 40px;
  position: relative;
  background: linear-gradient(180deg, var(--c-white) 0%, var(--c-paper) 100%);
  overflow: hidden;
}
.cat-card-img img {
  max-width: 100%; max-height: 100%; object-fit: contain;
  transition: transform var(--t-slow);
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.08));
}
.cat-card:hover .cat-card-img img { transform: scale(1.08) translateY(-4px); }
.cat-card-info {
  padding: 22px 24px 28px;
  border-top: 1px solid var(--c-paper-2);
  background: var(--c-white);
  display: flex; justify-content: space-between; align-items: flex-start;
}
.cat-card-info h3 { font-size: 19px; transition: color var(--t-fast); }
.cat-card:hover .cat-card-info h3 { color: var(--c-red); }
.cat-card-info p {
  font-size: 12.5px; color: var(--c-graphite);
  margin: 4px 0 0; line-height: 1.5;
}
.cat-card-arrow {
  width: 36px; height: 36px;
  flex-shrink: 0;
  border: 1px solid var(--c-paper-2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  color: var(--c-graphite);
  transition: all var(--t-base);
}
.cat-card:hover .cat-card-arrow {
  background: var(--c-red); border-color: var(--c-red); color: var(--c-white);
  transform: rotate(-45deg);
}

@media (max-width: 880px) {
  .cats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .cats-grid { grid-template-columns: 1fr; }
}

/* ============= FEATURES STRIP ============= */
.feat {
  background: var(--c-ink);
  color: var(--c-paper);
  padding: 70px 0 90px;
  position: relative;
}
.feat::after {
  /* graceful fade-down to next light section */
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(180deg, transparent 0%, var(--c-paper) 100%);
  pointer-events: none;
}
.feat .container { position: relative; z-index: 1; }
.feat-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.feat-item { display: flex; gap: 16px; align-items: flex-start; }
.feat-icon {
  width: 44px; height: 44px;
  background: rgba(200,16,46,0.12);
  border: 1px solid rgba(200,16,46,0.3);
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--r-sm);
  flex-shrink: 0;
}
.feat-icon svg { width: 22px; height: 22px; color: var(--c-red); }
.feat-text h4 { color: var(--c-paper); font-size: 16px; margin-bottom: 6px; font-family: var(--f-display); }
.feat-text p { font-size: 13.5px; color: var(--c-fog); margin: 0; line-height: 1.6; }

@media (max-width: 880px) { .feat-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; } }
@media (max-width: 480px) { .feat-grid { grid-template-columns: 1fr; } }

/* ============= POPULAR PRODUCTS ============= */
.pop {
  background: var(--c-paper);
}
.pop-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.product-card {
  background: var(--c-white);
  border: 1px solid var(--c-paper-2);
  overflow: hidden;
  transition: all var(--t-base);
  display: flex; flex-direction: column;
}
.product-card:hover {
  border-color: var(--c-graphite);
  box-shadow: var(--sh-md);
  transform: translateY(-3px);
}
.product-img {
  aspect-ratio: 1;
  background: var(--c-paper);
  display: flex; align-items: center; justify-content: center;
  padding: 28px;
  position: relative;
  overflow: hidden;
}
.product-img img {
  width: 100%; height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.08));
  transition: transform var(--t-base);
}
.product-card:hover .product-img img { transform: scale(1.06); }
.product-cat-tag {
  position: absolute; top: 12px; left: 12px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-steel);
  background: rgba(255,255,255,0.85);
  padding: 4px 8px;
  backdrop-filter: blur(4px);
}
.product-info {
  padding: 18px 18px 20px;
  border-top: 1px solid var(--c-paper-2);
}
.product-info h4 {
  font-family: var(--f-display);
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 6px;
  color: var(--c-ink);
  transition: color var(--t-fast);
  line-height: 1.3;
}
.product-card:hover .product-info h4 { color: var(--c-red); }
.product-info p {
  font-size: 12px;
  color: var(--c-graphite);
  margin: 0 0 12px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-link {
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--c-ink);
  display: inline-flex; align-items: center; gap: 4px;
  transition: gap var(--t-base);
}
.product-card:hover .product-link { gap: 10px; color: var(--c-red); }

@media (max-width: 980px) { .pop-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px) { .pop-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 380px) { .pop-grid { grid-template-columns: 1fr; } }

/* ============= ABOUT SPLIT ============= */
.about-split {
  background: var(--c-white);
}
.about-split-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-split-img {
  position: relative;
  background: var(--c-paper);
  overflow: hidden;
}
.about-split-img::before {
  content: 'EST. 2003';
  position: absolute;
  top: 24px; left: 24px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--c-paper);
  background: var(--c-red);
  padding: 6px 12px;
  z-index: 2;
}
.about-img-grid {
  position: absolute; inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 4px;
  padding: 0;
}
.about-img-grid > div {
  background: linear-gradient(135deg, var(--c-paper) 0%, var(--c-paper-2) 100%);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.about-img-grid img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 24px;
  filter: drop-shadow(0 6px 16px rgba(0,0,0,0.12));
}
/* Factory photo (homepage about-split) */
.about-factory-main {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  background: var(--c-ink);
}
.about-num-overlay {
  position: absolute;
  bottom: -16px; right: -16px;
  background: var(--c-ink);
  color: var(--c-paper);
  padding: 28px 32px;
  z-index: 3;
}
.about-num-overlay strong {
  font-family: var(--f-display);
  font-size: 56px;
  font-weight: 700;
  display: block; line-height: 1;
}
.about-num-overlay span {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-fog);
  margin-top: 6px; display: block;
}

.about-split-text h2 { margin-bottom: 28px; }
.about-split-text h2 em {
  color: var(--c-red);
  font-style: italic;
  font-weight: 600;
}
.about-split-text p {
  color: var(--c-graphite);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 18px;
}
.about-points {
  list-style: none; padding: 0; margin: 32px 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px 32px;
}
.about-points li {
  display: flex; gap: 12px;
  font-size: 14px; color: var(--c-ink);
  line-height: 1.5;
  align-items: flex-start;
}
.about-points li::before {
  content: '◆';
  color: var(--c-red);
  font-size: 12px;
  margin-top: 4px;
  flex-shrink: 0;
}

@media (max-width: 980px) {
  .about-split-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-num-overlay { padding: 20px 24px; }
  .about-num-overlay strong { font-size: 40px; }
}

/* ============= CTA BAR ============= */
.cta-bar {
  background: var(--c-red);
  color: var(--c-white);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.cta-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 80% 50%, rgba(255,255,255,0.08) 0%, transparent 60%);
}
.cta-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  position: relative;
  flex-wrap: wrap;
}
.cta-bar h2 {
  color: var(--c-white);
  max-width: 640px;
}
.cta-bar h2 em {
  font-style: italic; font-weight: 700;
  text-decoration: underline;
  text-decoration-style: dotted;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 6px;
}
.cta-bar-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.cta-bar .btn-light { color: var(--c-red); }
.cta-bar .btn-light:hover { background: var(--c-ink); color: var(--c-white); }
.cta-bar .btn-ghost {
  border-color: var(--c-white); color: var(--c-white);
}
.cta-bar .btn-ghost:hover {
  background: var(--c-white); color: var(--c-red);
}

/* ============= FOOTER ============= */
.site-footer {
  background: var(--c-ink);
  color: var(--c-fog);
  padding: 80px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand-block { padding-right: 16px; }
.footer-brand-block .brand { margin-bottom: 24px; }
.footer-brand-block .brand-name { color: var(--c-paper); }
.footer-brand-block .brand-sub { color: var(--c-fog); }
.footer-brand-block p {
  font-size: 13.5px; line-height: 1.75; color: var(--c-fog);
}
.footer-col h5 {
  font-family: var(--f-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--c-paper);
  margin: 8px 0 22px;
  letter-spacing: 0.01em;
}
.footer-list { list-style: none; padding: 0; margin: 0; }
.footer-list li { margin-bottom: 10px; font-size: 13.5px; }
.footer-list a { color: var(--c-fog); transition: all var(--t-fast); }
.footer-list a:hover { color: var(--c-red); padding-left: 4px; }
.footer-contact-item {
  display: flex; gap: 12px;
  margin-bottom: 18px;
  font-size: 13px; line-height: 1.6;
  align-items: flex-start;
  color: var(--c-fog);
}
.footer-contact-item svg { width: 16px; height: 16px; color: var(--c-red); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a { color: var(--c-fog); }
.footer-contact-item a:hover { color: var(--c-red); }
.footer-contact-item strong { color: var(--c-paper); display: block; font-size: 13px; margin-bottom: 2px; font-weight: 500; }
.footer-bottom {
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-size: 12px;
  color: var(--c-steel);
  flex-wrap: wrap;
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  border-radius: 2px;
  transition: all var(--t-base);
}
.footer-social a svg { width: 16px; height: 16px; color: var(--c-fog); transition: color var(--t-fast); }
.footer-social a:hover { background: var(--c-red); border-color: var(--c-red); }
.footer-social a:hover svg { color: var(--c-white); }

@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ============= WHATSAPP FLOAT ============= */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 60px; height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 16px rgba(37,211,102,0.4);
  z-index: 90;
  transition: all var(--t-base);
}
.wa-float::before {
  content: '';
  position: absolute; inset: -6px;
  border-radius: 50%; border: 2px solid #25d366;
  animation: pulse 2s infinite;
  opacity: 0.5;
}
.wa-float:hover { transform: scale(1.1); }
.wa-float svg { width: 30px; height: 30px; color: white; }
@keyframes pulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ============= INNER PAGE BANNER ============= */
.page-banner {
  background: var(--c-ink);
  color: var(--c-paper);
  padding: 100px 0 60px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 75% 50%, rgba(200,16,46,0.15) 0%, transparent 50%);
}
.page-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.page-banner-inner { position: relative; z-index: 1; }
.page-banner h1 { color: var(--c-paper); font-family: var(--f-display); margin-top: 18px; max-width: 720px; }
.page-banner h1 em { color: var(--c-red); font-style: italic; font-weight: 700; }
.page-banner p { font-size: 16px; color: var(--c-fog); margin-top: 18px; max-width: 580px; line-height: 1.7; }

/* ============= BREADCRUMB (now part of dark hero) ============= */
.breadcrumb {
  background: var(--c-ink);
  padding: 28px 0 32px;
  font-family: var(--f-mono);
  font-size: 11.5px;
  letter-spacing: 0.08em;
  position: relative;
  z-index: 2;
}
/* When breadcrumb directly follows a page-banner, no top padding (seamless flow) */
.page-banner + .breadcrumb {
  padding-top: 0;
}
.breadcrumb::after {
  /* fade-out gradient at bottom of dark hero into next section */
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: -1px;
  height: 1px;
  background: var(--c-red);
  opacity: 0.35;
}
.breadcrumb ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; gap: 12px; flex-wrap: wrap;
  text-transform: uppercase;
  color: var(--c-fog);
}
.breadcrumb li { display: flex; align-items: center; gap: 12px; }
.breadcrumb li:not(:last-child)::after {
  content: '/';
  color: var(--c-steel);
}
.breadcrumb a { color: var(--c-fog); transition: color var(--t-fast); }
.breadcrumb a:hover { color: var(--c-red); }
.breadcrumb li:last-child { color: var(--c-paper); font-weight: 500; }

/* ============= SECTION TRANSITION HELPERS ============= */
/* Soft fade between dark and light sections */
.section-fade-down {
  position: relative;
}
.section-fade-down::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(180deg, var(--c-ink) 0%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}
.section-fade-up {
  position: relative;
}
.section-fade-up::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(0deg, var(--c-ink) 0%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

/* ============= PRODUCTS LISTING (CATEGORY PAGES) ============= */
.cat-page { background: var(--c-paper); padding: 70px 0 100px; }
.cat-page-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 56px;
}
.cat-sidebar {
  position: sticky; top: 110px;
  align-self: start;
  font-size: 14px;
}
.cat-sidebar h4 {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-graphite);
  margin: 0 0 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--c-paper-2);
}
.cat-sidebar-tree { list-style: none; padding: 0; margin: 0; }
.cat-sidebar-tree > li { margin-bottom: 4px; }
.cat-sidebar-tree a {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 14px;
  font-size: 14px;
  color: var(--c-ink);
  border-left: 2px solid transparent;
  transition: all var(--t-base);
}
.cat-sidebar-tree a:hover { color: var(--c-red); }
.cat-sidebar-tree a.active {
  background: var(--c-white);
  border-left-color: var(--c-red);
  color: var(--c-red); font-weight: 500;
}
.cat-sidebar-tree .count {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--c-steel);
}
.cat-sidebar-tree ul {
  list-style: none; padding: 0;
  margin: 4px 0 8px 14px;
  border-left: 1px dashed var(--c-paper-2);
}
.cat-sidebar-tree ul a {
  font-size: 13px; padding: 7px 14px;
  color: var(--c-graphite);
}
.cat-sidebar-tree ul a.active { background: transparent; color: var(--c-red); }

.cat-content {}
.cat-content-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 32px; padding-bottom: 24px;
  border-bottom: 1px solid var(--c-paper-2);
  flex-wrap: wrap; gap: 16px;
}
.cat-content-head h2 { font-size: clamp(1.6rem, 2.5vw, 2.2rem); }
.cat-result-count {
  font-family: var(--f-mono);
  font-size: 12px; letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-graphite);
}
.cat-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.cat-page-empty {
  text-align: center;
  padding: 80px 20px;
  color: var(--c-graphite);
}
@media (max-width: 980px) {
  .cat-page-layout { grid-template-columns: 1fr; gap: 32px; }
  .cat-sidebar { position: static; }
  .cat-products-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .cat-products-grid { grid-template-columns: 1fr; }
}

/* ============= PRODUCT DETAIL ============= */
.pd { padding: 70px 0 100px; background: var(--c-paper); }
.pd-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
}
.pd-gallery {}
.pd-main-img {
  background: var(--c-white);
  border: 1px solid var(--c-paper-2);
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  padding: 64px;
  margin-bottom: 12px;
}
.pd-main-img img {
  max-width: 90%; max-height: 90%; object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.1));
}
.pd-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.pd-thumb {
  background: var(--c-white);
  border: 1px solid var(--c-paper-2);
  aspect-ratio: 1;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  padding: 12px;
  transition: border-color var(--t-fast);
}
.pd-thumb:hover, .pd-thumb.active { border-color: var(--c-red); }
.pd-thumb img { max-width: 80%; max-height: 80%; object-fit: contain; }

.pd-info {}
.pd-cat {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-red);
  margin-bottom: 14px;
}
.pd-info h1 { font-size: clamp(1.8rem, 3vw, 2.6rem); margin-bottom: 18px; line-height: 1.2; }
.pd-desc {
  font-size: 16px;
  color: var(--c-graphite);
  line-height: 1.75;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--c-paper-2);
}
.pd-specs {
  margin-bottom: 36px;
}
.pd-specs h4 {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-graphite);
  margin: 0 0 16px;
}
.pd-spec-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  padding: 12px 0;
  border-bottom: 1px solid var(--c-paper-2);
  font-size: 14px;
}
.pd-spec-row strong { font-weight: 500; color: var(--c-graphite); }
.pd-spec-row span { color: var(--c-ink); }
.pd-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; }

.pd-related { margin-top: 80px; padding-top: 60px; border-top: 1px solid var(--c-paper-2); }
.pd-related h3 { font-size: 22px; margin-bottom: 28px; }

@media (max-width: 880px) { .pd-grid { grid-template-columns: 1fr; gap: 32px; } }

/* ============= ABOUT / CONTACT / SERVICES PAGES ============= */
.content-page { padding: 80px 0 100px; background: var(--c-white); }
.content-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
}
.content-grid.flip { grid-template-columns: 1.5fr 1fr; }
.content-aside {}
.content-aside h2 em { color: var(--c-red); font-style: italic; font-weight: 700; }
.content-main {}
.content-main p {
  color: var(--c-graphite);
  font-size: 16px; line-height: 1.85;
  margin-bottom: 18px;
}
.content-main h3 {
  font-family: var(--f-display);
  font-size: 22px; margin: 36px 0 16px;
}
.content-main ul, .content-main ol {
  color: var(--c-graphite);
  margin: 16px 0 24px;
}
.content-main li { margin-bottom: 8px; line-height: 1.7; }
.numbered-list { list-style: none; padding: 0; counter-reset: numlist; }
.numbered-list li {
  counter-increment: numlist;
  position: relative;
  padding-left: 56px;
  margin-bottom: 24px;
}
.numbered-list li::before {
  content: counter(numlist, decimal-leading-zero);
  position: absolute; left: 0; top: 0;
  font-family: var(--f-mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--c-red);
  font-weight: 500;
  padding-top: 4px;
}
.numbered-list li strong {
  display: block;
  font-family: var(--f-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--c-ink);
  margin-bottom: 4px;
}

@media (max-width: 880px) {
  .content-grid, .content-grid.flip { grid-template-columns: 1fr; gap: 32px; }
}

/* ============= CONTACT FORM ============= */
.contact-form-wrap {
  background: var(--c-paper);
  padding: 56px 48px;
  border: 1px solid var(--c-paper-2);
}
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-form .full { grid-column: 1 / -1; }
.contact-form label {
  display: block;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-graphite);
  margin-bottom: 6px;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--c-paper-2);
  background: var(--c-white);
  border-radius: var(--r-sm);
  font-size: 14px;
  color: var(--c-ink);
  transition: border-color var(--t-fast);
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--c-red);
}
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form button {
  padding: 14px 32px;
  background: var(--c-red); color: var(--c-white);
  font-size: 13px; letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 2px;
  transition: all var(--t-base);
}
.contact-form button:hover { background: var(--c-red-deep); }

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 24px;
}
.contact-info-card {
  background: var(--c-white);
  border: 1px solid var(--c-paper-2);
  padding: 24px;
}
.contact-info-card svg { width: 20px; height: 20px; color: var(--c-red); margin-bottom: 14px; }
.contact-info-card h5 {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-graphite);
  margin: 0 0 8px;
}
.contact-info-card p { font-size: 14px; color: var(--c-ink); margin: 0; line-height: 1.6; }
.contact-info-card a { color: var(--c-ink); transition: color var(--t-fast); }
.contact-info-card a:hover { color: var(--c-red); }

@media (max-width: 540px) {
  .contact-form { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 32px 24px; }
  .contact-info-grid { grid-template-columns: 1fr; }
}

/* ============= HERO BANNER SLIDER (full-width main hero) ============= */
.hero-banner-slider {
  position: relative;
  background: var(--c-ink);
  overflow: hidden;
  padding: 0;  /* override section default */
  margin: 0;
}
.hero-slider-track {
  position: relative;
  width: 100%;
  aspect-ratio: 1920/750;
  min-height: 360px;
  max-height: calc(100vh - 80px);
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1),
              transform 6s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
  will-change: opacity, transform;
}
.hero-slide.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
  z-index: 1;
}
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
/* Bottom shadow for legibility of dots/arrows */
.hero-banner-slider::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(0deg, rgba(20,17,15,0.4) 0%, transparent 100%);
  pointer-events: none;
  z-index: 2;
}

.hero-slider-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}
.hero-slider-dots .dot {
  width: 40px;
  height: 3px;
  background: rgba(255,255,255,0.35);
  border: 0;
  cursor: pointer;
  transition: all var(--t-base);
  padding: 0;
  border-radius: 0;
}
.hero-slider-dots .dot.active {
  background: var(--c-red);
  width: 56px;
  height: 4px;
}
.hero-slider-dots .dot:hover { background: rgba(255,255,255,0.7); }

.hero-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  background: rgba(20,17,15,0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.18);
  color: white;
  font-size: 30px;
  cursor: pointer;
  transition: all var(--t-base);
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-display);
}
.hero-slider-arrow:hover {
  background: var(--c-red);
  border-color: var(--c-red);
  transform: translateY(-50%) scale(1.05);
}
.hero-slider-arrow.prev { left: 28px; }
.hero-slider-arrow.next { right: 28px; }
@media (max-width: 880px) {
  .hero-slider-track { aspect-ratio: 1920/900; min-height: 360px; max-height: 60vh; }
  .hero-slider-arrow { width: 40px; height: 40px; font-size: 22px; }
  .hero-slider-arrow.prev { left: 10px; }
  .hero-slider-arrow.next { right: 10px; }
  .hero-slider-dots .dot { width: 28px; }
  .hero-slider-dots .dot.active { width: 40px; }
}

/* ============= HERO INTRO BAND (after slider) ============= */
.hero-intro {
  background: var(--c-ink);
  color: var(--c-paper);
  padding: 80px 0 90px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.hero-intro::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 80% 30%, rgba(200,16,46,0.12) 0%, transparent 55%);
  z-index: -1;
}
.hero-intro::after {
  /* subtle grid pattern */
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
  z-index: -1;
}
.hero-intro-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-intro-content .hero-eyebrow {
  color: var(--c-red);
}
.hero-intro h1 {
  font-family: var(--f-display);
  font-size: clamp(36px, 4.6vw, 60px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--c-paper);
  margin: 18px 0 24px;
}
.hero-intro h1 em {
  color: var(--c-red);
  font-style: italic;
  font-weight: 700;
}
.hero-intro p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--c-fog);
  max-width: 580px;
  margin: 0 0 32px;
}
.hero-intro .hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-intro-stats {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-left: 48px;
  border-left: 2px solid rgba(245,241,234,0.12);
}
.hero-intro-stats > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-intro-stats strong {
  font-family: var(--f-display);
  font-size: 56px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--c-paper);
}
.hero-intro-stats sup {
  font-size: 32px;
  color: var(--c-red);
  vertical-align: super;
  margin-left: 2px;
}
.hero-intro-stats span {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-steel);
  margin-top: 8px;
}
@media (max-width: 980px) {
  .hero-intro-grid { grid-template-columns: 1fr; gap: 56px; }
  .hero-intro-stats {
    flex-direction: row;
    padding-left: 0;
    padding-top: 28px;
    border-left: 0;
    border-top: 2px solid rgba(245,241,234,0.12);
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
  }
  .hero-intro-stats strong { font-size: 38px; }
}
@media (max-width: 540px) {
  .hero-intro { padding: 56px 0 64px; }
  .hero-intro-stats { gap: 18px; }
  .hero-intro-stats > div { flex: 1 1 33%; }
}

/* ============= ABOUT STATS BAR ============= */
.about-stats {
  background: var(--c-ink);
  padding: 0 0 72px;
  position: relative;
  overflow: hidden;
}
.about-stats::before {
  /* subtle separator from breadcrumb */
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(245,241,234,0.12) 50%, transparent 100%);
}
.about-stats::after {
  /* graceful fade-down to next light section */
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(180deg, transparent 0%, var(--c-paper) 100%);
  pointer-events: none;
  opacity: 0.6;
}
.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 32px;
}
.about-stats-grid > div {
  text-align: center;
  color: var(--c-paper);
}
.about-stats-grid strong {
  display: block;
  font-family: var(--f-display);
  font-size: 38px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
}
.about-stats-grid sup {
  font-size: 22px;
  color: var(--c-red);
  vertical-align: super;
  margin-left: 2px;
}
.about-stats-grid span {
  display: block;
  margin-top: 10px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-fog);
}
@media (max-width: 880px) {
  .about-stats-grid { grid-template-columns: repeat(3, 1fr); gap: 24px 16px; }
  .about-stats-grid strong { font-size: 28px; }
}
@media (max-width: 540px) {
  .about-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}

/* ============= FACTORY GALLERY ============= */
.factory-gallery {
  padding: 100px 0;
  background: var(--c-paper);
}
.factory-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
  margin-top: 48px;
}
.factory-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--c-ink);
  border-radius: 4px;
  box-shadow: var(--sh-md);
}
.factory-card.large { grid-column: span 4; grid-row: span 2; }
.factory-card:not(.large):not(.small) { grid-column: span 2; grid-row: span 2; }
.factory-card.small { grid-column: span 2; grid-row: span 1; }
.factory-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.factory-card:hover img { transform: scale(1.05); }
.factory-card figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 24px 24px 20px;
  background: linear-gradient(180deg, transparent 0%, rgba(20,17,15,0.92) 50%);
  color: var(--c-paper);
}
.factory-card.small figcaption { padding: 14px 16px; }
.factory-num {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--c-red);
  display: block;
  margin-bottom: 6px;
}
.factory-card.small .factory-num { font-size: 9px; margin-bottom: 2px; }
.factory-card figcaption strong {
  display: block;
  font-family: var(--f-display);
  font-size: 20px;
  font-weight: 600;
}
.factory-card.small figcaption strong { font-size: 14px; }
.factory-card figcaption p {
  font-size: 13px;
  color: var(--c-fog);
  line-height: 1.5;
  margin: 6px 0 0;
}
@media (max-width: 980px) {
  .factory-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }
  .factory-card.large { grid-column: span 2; grid-row: span 2; }
  .factory-card:not(.large):not(.small) { grid-column: span 2; grid-row: span 1; }
  .factory-card.small { grid-column: span 1; grid-row: span 1; }
}

/* ============= CERTIFICATES ============= */
.cert-section {
  padding: 100px 0;
  background: var(--c-ink);
  color: var(--c-paper);
}
.cert-section .eyebrow { color: var(--c-red); }
.cert-section h2 { color: var(--c-paper); font-family: var(--f-display); }
.cert-section h2 em { color: var(--c-red); font-style: italic; font-weight: 700; }
.cert-section .head-meta p { color: var(--c-fog); }
.cert-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.cert-grid.four {
  grid-template-columns: repeat(4, 1fr);
}
.cert-card {
  display: flex;
  flex-direction: column;
  background: var(--c-paper);
  border-radius: 4px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform var(--t-base), box-shadow var(--t-base);
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.cert-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0,0,0,0.4);
}
.cert-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: top;
  display: block;
  background: white;
}
.cert-card-info {
  padding: 18px 20px;
  border-top: 3px solid var(--c-red);
}
.cert-card-info strong {
  display: block;
  font-family: var(--f-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--c-ink);
  margin-bottom: 6px;
}
.cert-card-info span {
  font-size: 12px;
  color: var(--c-graphite);
  line-height: 1.5;
}
@media (max-width: 980px) {
  .cert-grid { grid-template-columns: repeat(3, 1fr); }
  .cert-grid.four { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .cert-grid { grid-template-columns: repeat(2, 1fr); }
  .cert-grid.four { grid-template-columns: 1fr; }
}

/* ============= EXHIBITIONS ============= */
.exhibition-section {
  padding: 100px 0;
  background: var(--c-paper);
}
.exhibition-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.exhibition-grid.two {
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.exhibition-grid.two .exhibition-card img {
  aspect-ratio: 488/260;
}
.exhibition-grid.two + .trade-shows-grid {
  margin-top: 32px;
}
.exhibition-grid.five {
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  grid-auto-flow: dense;
}
.exhibition-grid.five .exhibition-card:nth-child(1) {
  grid-column: span 1;
  grid-row: span 2;
}
.exhibition-grid.five .exhibition-card:nth-child(1) img {
  aspect-ratio: 1 / 1.4;
  height: 100%;
}
.exhibition-grid.five .exhibition-card:nth-child(2),
.exhibition-grid.five .exhibition-card:nth-child(3),
.exhibition-grid.five .exhibition-card:nth-child(4),
.exhibition-grid.five .exhibition-card:nth-child(5) {
  grid-column: span 1;
  grid-row: span 1;
}
.exhibition-grid.five .exhibition-card:nth-child(2) img,
.exhibition-grid.five .exhibition-card:nth-child(3) img,
.exhibition-grid.five .exhibition-card:nth-child(4) img,
.exhibition-grid.five .exhibition-card:nth-child(5) img {
  aspect-ratio: 16/10;
}
.exhibition-card {
  position: relative;
  margin: 0;
  background: var(--c-ink);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--sh-md);
}
.exhibition-card img {
  width: 100%;
  aspect-ratio: 280/370;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.exhibition-card:hover img { transform: scale(1.04); }
.exhibition-card figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 16px 18px 14px;
  background: linear-gradient(180deg, transparent 0%, rgba(20,17,15,0.94) 50%);
  color: var(--c-paper);
  font-size: 13px;
  line-height: 1.4;
}
@media (max-width: 880px) {
  .exhibition-grid { grid-template-columns: repeat(2, 1fr); }
  .exhibition-grid.five {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .exhibition-grid.five .exhibition-card:nth-child(1) {
    grid-column: span 2;
    grid-row: span 1;
  }
  .exhibition-grid.five .exhibition-card:nth-child(1) img {
    aspect-ratio: 16/10;
    height: auto;
  }
}

/* ============= TIMELINE ============= */
.timeline {
  position: relative;
  padding-left: 28px;
  border-left: 2px solid var(--c-paper-2);
}
.timeline-item {
  position: relative;
  padding-bottom: 32px;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -36px;
  top: 4px;
  width: 14px; height: 14px;
  background: var(--c-paper);
  border: 2px solid var(--c-graphite);
  border-radius: 50%;
}
.timeline-item.current::before {
  background: var(--c-red);
  border-color: var(--c-red);
  box-shadow: 0 0 0 4px rgba(200,16,46,0.18);
}
.timeline-year {
  display: inline-block;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.15em;
  color: var(--c-red);
  font-weight: 600;
  margin-bottom: 4px;
}
.timeline-item strong {
  display: block;
  font-family: var(--f-display);
  font-size: 19px;
  font-weight: 600;
  color: var(--c-ink);
  margin-bottom: 6px;
}
.timeline-item p {
  font-size: 14px;
  color: var(--c-graphite);
  line-height: 1.6;
  margin: 0;
}

/* ============= WHY GRID ============= */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 8px;
}
.why-card {
  padding: 22px 24px;
  background: var(--c-paper);
  border-left: 3px solid var(--c-red);
  border-radius: 0 4px 4px 0;
}
.why-card strong {
  display: block;
  font-family: var(--f-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--c-ink);
  margin-bottom: 6px;
}
.why-card p {
  font-size: 14px;
  color: var(--c-graphite);
  line-height: 1.55;
  margin: 0;
}
@media (max-width: 700px) {
  .why-grid { grid-template-columns: 1fr; }
}

/* ============= CONTACT PRIMARY (big WA + Email) ============= */
.contact-primary {
  padding: 80px 0 60px;
  background: var(--c-paper);
}
.contact-primary-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.contact-primary-card {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 36px 36px;
  background: var(--c-white);
  border: 2px solid var(--c-paper-2);
  border-radius: 6px;
  text-decoration: none;
  color: inherit;
  transition: all var(--t-base);
  position: relative;
  overflow: hidden;
}
.contact-primary-card::after {
  content: '';
  position: absolute;
  inset: 0 0 0 auto;
  width: 4px;
  background: var(--c-red);
  opacity: 0;
  transition: opacity var(--t-base);
}
.contact-primary-card:hover {
  border-color: var(--c-red);
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.1);
}
.contact-primary-card:hover::after { opacity: 1; }
.contact-primary-icon {
  flex: 0 0 64px;
  width: 64px; height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-primary-icon svg { width: 32px; height: 32px; }
.contact-primary-card.whatsapp .contact-primary-icon { background: #25d366; color: white; }
.contact-primary-card.email .contact-primary-icon { background: var(--c-red); color: white; }
.contact-primary-text { flex: 1; }
.contact-primary-eyebrow {
  display: inline-block;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-red);
  margin-bottom: 6px;
}
.contact-primary-text h3 {
  font-family: var(--f-display);
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 4px;
}
.contact-primary-text strong {
  display: block;
  font-size: 16px;
  color: var(--c-graphite);
  font-weight: 500;
  margin-bottom: 10px;
}
.contact-primary-cta {
  display: inline-block;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-red);
  font-weight: 600;
}
@media (max-width: 700px) {
  .contact-primary-grid { grid-template-columns: 1fr; }
  .contact-primary-card { padding: 28px 24px; gap: 18px; }
  .contact-primary-icon { flex: 0 0 52px; width: 52px; height: 52px; }
  .contact-primary-icon svg { width: 24px; height: 24px; }
}

/* ============= CONTACT SOCIAL BIG ============= */
.contact-social-section {
  padding: 80px 0;
  background: var(--c-ink);
  color: var(--c-paper);
}
.contact-social-section .eyebrow { color: var(--c-red); }
.contact-social-section h2 { color: var(--c-paper); font-family: var(--f-display); }
.contact-social-section h2 em { color: var(--c-red); font-style: italic; font-weight: 700; }
.contact-social-section .head-meta p { color: var(--c-fog); }

.social-big-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.social-big {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px;
  background: rgba(245,241,234,0.04);
  border: 1px solid rgba(245,241,234,0.1);
  border-radius: 6px;
  text-decoration: none;
  color: var(--c-paper);
  transition: all var(--t-base);
}
.social-big:hover {
  background: rgba(245,241,234,0.08);
  border-color: var(--c-red);
  transform: translateY(-6px);
}
.social-big-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.social-big-icon.facebook { background: #1877f2; }
.social-big-icon.instagram {
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}
.social-big-icon.youtube { background: #ff0000; }
.social-big-icon.linkedin { background: #0a66c2; }
.social-big h4 {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--c-paper);
  margin: 0 0 6px;
}
.social-big p {
  font-size: 13px;
  color: var(--c-fog);
  line-height: 1.55;
  margin: 0 0 18px;
  flex: 1;
}
.social-big-cta {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-red);
  font-weight: 600;
}
@media (max-width: 880px) { .social-big-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .social-big-grid { grid-template-columns: 1fr; } }

/* ============= CONTACT OFFICES ============= */
.contact-offices {
  padding: 80px 0;
  background: var(--c-paper);
}
.offices-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.office-card {
  background: var(--c-white);
  border: 1px solid var(--c-paper-2);
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.office-header {
  padding: 18px 28px;
  background: var(--c-ink);
  color: var(--c-paper);
  display: flex;
  align-items: center;
  gap: 12px;
}
.office-flag { font-size: 22px; }
.office-label {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-fog);
}
.office-card h3 {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 600;
  margin: 24px 28px 12px;
  color: var(--c-ink);
}
.office-card > p {
  margin: 0 28px 18px;
  color: var(--c-graphite);
  font-size: 14px;
  line-height: 1.6;
}
.office-meta {
  margin: 0 28px 24px;
  padding-top: 16px;
  border-top: 1px solid var(--c-paper-2);
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
  color: var(--c-graphite);
}
.office-meta strong { color: var(--c-ink); }
.office-photo {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  margin-top: auto;
}
@media (max-width: 880px) {
  .offices-grid { grid-template-columns: 1fr; }
}

/* ============= CATALOG DOWNLOAD ============= */
.catalog-download {
  padding: 80px 0;
}
.catalog-card {
  background: var(--c-ink);
  color: var(--c-paper);
  border-radius: 6px;
  padding: 48px 56px;
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 48px;
}
.catalog-icon {
  flex: 0 0 100px;
  width: 100px; height: 100px;
  border-radius: 50%;
  background: var(--c-red);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}
.catalog-icon svg { width: 48px; height: 48px; }
.catalog-info { flex: 1; }
.catalog-info .eyebrow { color: var(--c-red); }
.catalog-info h2 { color: var(--c-paper); font-family: var(--f-display); margin: 14px 0 16px; }
.catalog-info p {
  color: var(--c-fog);
  font-size: 16px;
  line-height: 1.7;
  margin: 0 0 24px;
}
.catalog-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.catalog-actions .btn-ghost {
  color: var(--c-paper);
  border-color: rgba(245,241,234,0.3);
}
.catalog-meta {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
}
.catalog-meta strong {
  display: block;
  font-family: var(--f-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--c-ink);
  margin-bottom: 14px;
}
.catalog-meta ul {
  list-style: none;
  padding: 0; margin: 0;
}
.catalog-meta ul li {
  padding: 6px 0 6px 22px;
  position: relative;
  color: var(--c-graphite);
  font-size: 14px;
}
.catalog-meta ul li::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: var(--c-red);
  font-size: 10px;
}
.catalog-meta p {
  color: var(--c-graphite);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 800px) {
  .catalog-card { flex-direction: column; align-items: flex-start; padding: 32px; gap: 24px; }
  .catalog-meta { grid-template-columns: 1fr; gap: 32px; }
}

/* ============= EMAIL TEAM (multiple contacts) ============= */
.email-team {
  margin-top: 24px;
  padding: 24px 28px;
  background: var(--c-white);
  border: 1px solid var(--c-paper-2);
  border-radius: 6px;
}
.email-team-label {
  display: inline-block;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-graphite);
  margin-bottom: 14px;
}
.email-team-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.email-team-list a {
  display: flex;
  flex-direction: column;
  padding: 12px 16px;
  background: var(--c-paper);
  border: 1px solid var(--c-paper-2);
  border-radius: 4px;
  text-decoration: none;
  color: inherit;
  transition: all var(--t-base);
}
.email-team-list a:hover {
  border-color: var(--c-red);
  background: rgba(200,16,46,0.04);
  transform: translateY(-2px);
}
.email-team-name {
  font-family: var(--f-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--c-ink);
  margin-bottom: 2px;
}
.email-team-addr {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--c-graphite);
  word-break: break-all;
}
@media (max-width: 700px) {
  .email-team-list { grid-template-columns: 1fr; }
}

/* ============= TRADE SHOWS (icon-based, replacing photo gallery) ============= */
.trade-shows-section {
  padding: 100px 0;
  background: var(--c-paper);
}
.trade-shows-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 32px;
}
.trade-show-card {
  display: flex;
  flex-direction: column;
  padding: 32px 32px 28px;
  background: var(--c-white);
  border: 1px solid var(--c-paper-2);
  border-radius: 6px;
  transition: all var(--t-base);
  position: relative;
  overflow: hidden;
}
.trade-show-card::before {
  content: '';
  position: absolute;
  inset: 0 0 0 auto;
  width: 3px;
  background: var(--c-red);
  opacity: 0;
  transition: opacity var(--t-base);
}
.trade-show-card:hover {
  border-color: var(--c-red);
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0,0,0,0.06);
}
.trade-show-card:hover::before { opacity: 1; }
.trade-show-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--c-red);
  background: rgba(200,16,46,0.08);
  border-radius: 50%;
}
.trade-show-icon svg { width: 28px; height: 28px; }
.trade-show-card strong {
  font-family: var(--f-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--c-ink);
  margin-bottom: 10px;
  display: block;
}
.trade-show-card p {
  font-size: 14px;
  color: var(--c-graphite);
  line-height: 1.6;
  margin: 0 0 16px;
  flex: 1;
}
.trade-show-meta {
  display: inline-block;
  padding-top: 14px;
  border-top: 1px solid var(--c-paper-2);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--c-graphite);
  text-transform: uppercase;
}
.trade-shows-cta {
  margin-top: 48px;
  padding: 32px;
  background: var(--c-ink);
  color: var(--c-paper);
  border-radius: 6px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.trade-shows-cta p {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 500;
  margin: 0;
  color: var(--c-paper);
}
@media (max-width: 700px) {
  .trade-shows-grid { grid-template-columns: 1fr; }
  .trade-shows-cta { flex-direction: column; align-items: flex-start; padding: 24px; }
  .trade-shows-cta p { font-size: 18px; }
}

/* ============= ANIMATIONS ============= */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up {
  opacity: 0;
  animation: fadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.delay-1 { animation-delay: 0.08s; }
.delay-2 { animation-delay: 0.16s; }
.delay-3 { animation-delay: 0.24s; }
.delay-4 { animation-delay: 0.32s; }
.delay-5 { animation-delay: 0.40s; }
.delay-6 { animation-delay: 0.48s; }

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Reduce motion accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
