/* ==========================================================================
   LYCO Printing Solutions — Stylesheet
   Palette derived from the LYCO logo: black wordmark, red accent stroke,
   grey supporting text, white/light neutral background.
   ========================================================================== */

:root {
  /* --- Brand colours (from logo) --- */
  --c-black: #141414;         /* wordmark black */
  --c-ink: #1a1a1a;           /* body copy */
  --c-red: #e31e24;           /* logo accent stroke */
  --c-red-dark: #b81620;      /* hover / pressed */
  --c-gray-700: #58595b;      /* "PRINT SOLUTIONS" label grey */
  --c-gray-500: #86878a;
  --c-gray-300: #d9d9da;
  --c-gray-200: #e9e9ea;
  --c-gray-100: #f5f5f6;      /* section alt background */
  --c-white: #ffffff;
  --c-whatsapp: #25d366;      /* official WhatsApp green */
  --c-whatsapp-dark: #1da851; /* hover / pressed */

  /* --- Semantic tokens --- */
  --bg-body: var(--c-white);
  --bg-alt: var(--c-gray-100);
  --bg-dark: var(--c-black);
  --text-body: var(--c-ink);
  --text-muted: var(--c-gray-700);
  --text-on-dark: var(--c-white);
  --border-soft: var(--c-gray-200);

  /* --- Type --- */
  --font-display: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* --- Layout --- */
  --container: 1200px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;
  --shadow-card: 0 2px 10px rgba(20, 20, 20, 0.06);
  --shadow-card-hover: 0 14px 30px rgba(20, 20, 20, 0.12);
  --transition: 180ms ease;
}

/* --- Reset --- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--bg-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }
input, textarea, select { font-family: inherit; font-size: 1rem; }

:focus-visible {
  outline: 3px solid var(--c-red);
  outline-offset: 2px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--c-black);
  line-height: 1.08;
  margin: 0 0 0.5em;
  letter-spacing: 0.2px;
}
h1 { font-size: clamp(2.4rem, 4.5vw, 3.8rem); text-transform: uppercase; }
h2 { font-size: clamp(1.9rem, 3.2vw, 2.6rem); text-transform: uppercase; }
h3 { font-size: 1.35rem; }
p { margin: 0 0 1em; color: var(--text-muted); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 64px 0; }
.section--alt { background: var(--bg-alt); }
.section--dark { background: var(--bg-dark); color: var(--text-on-dark); }
.section--dark p { color: var(--c-gray-300); }
.section--dark h2, .section--dark h3 { color: var(--c-white); }
.section--tight { padding: 40px 0; }
.section--divider {
  padding: 30px 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}
.section--divider .section-head { margin-bottom: 28px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--c-red);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 3px;
  background: var(--c-red);
  display: inline-block;
}

.section-head {
  max-width: 640px;
  margin: 0 0 32px;
}
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }

/* Signature red underline, echoing the stroke beneath the LYCO wordmark */
.slash-underline {
  position: relative;
  display: inline-block;
}
.slash-underline::after {
  content: "";
  position: absolute;
  left: 2px;
  right: 10%;
  bottom: -10px;
  height: 6px;
  background: var(--c-red);
  transform: skewX(-20deg);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.02rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  transition: transform var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(1px); }

.btn--primary {
  background: var(--c-red);
  color: var(--c-white);
  border-color: var(--c-red);
}
.btn--primary:hover { background: var(--c-red-dark); border-color: var(--c-red-dark); }

.btn--dark {
  background: var(--c-black);
  color: var(--c-white);
  border-color: var(--c-black);
}
.btn--dark:hover { background: #000; }
.btn--view-more {
  gap: 8px;
  background: rgba(227, 30, 36, 0.08);
  color: var(--c-red);
  border-color: var(--c-red);
  box-shadow: 0 4px 0 rgba(227, 30, 36, 0.18);
}
.btn--view-more:hover {
  background: var(--c-red);
  border-color: var(--c-red);
  color: var(--c-white);
  animation: view-button-pulse 1.1s ease-in-out infinite;
}
.btn--view-more .btn__arrow { transition: transform 220ms ease; }
.btn--view-more:hover .btn__arrow { transform: translateX(5px); }

@keyframes view-button-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(227, 30, 36, 0.35); }
  50% { box-shadow: 0 0 0 7px rgba(227, 30, 36, 0); }
}

.btn--outline {
  background: transparent;
  color: var(--c-black);
  border-color: var(--c-black);
}
.btn--outline:hover { background: var(--c-black); color: var(--c-white); }

.btn--outline-light {
  background: transparent;
  color: var(--c-white);
  border-color: rgba(255,255,255,0.5);
}
.btn--outline-light:hover { background: var(--c-white); color: var(--c-black); border-color: var(--c-white); }

.btn--whatsapp {
  background: var(--c-whatsapp);
  color: var(--c-white);
  border-color: var(--c-whatsapp);
}
.btn--whatsapp:hover {
  background: var(--c-whatsapp-dark);
  border-color: var(--c-whatsapp-dark);
  transform: translateY(-2px);
}
.btn--whatsapp svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  flex-shrink: 0;
  display: block;
}



.btn--sm { padding: 10px 18px; font-size: 0.88rem; }
.btn--block { width: 100%; }

/* ==========================================================================
   Navbar
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border-soft);
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: var(--container);
  margin: 0 auto;
}
.navbar__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.navbar__brand img { height: 46px; width: 46px; border-radius: 50%; }
.navbar__brand-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.55rem;
  letter-spacing: 1px;
  color: var(--c-black);
  line-height: 1;
}
.navbar__brand-text span { color: var(--c-red); }
.navbar__tagline {
  display: block;
  font-family: var(--font-body);
  font-size: 0.62rem;
  letter-spacing: 2px;
  color: var(--c-gray-700);
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 2px;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 34px;
}
.navbar__links a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.02rem;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--c-black);
  position: relative;
  padding: 6px 0;
}
.navbar__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  height: 3px;
  width: 0;
  background: var(--c-red);
  transition: width var(--transition);
}
.navbar__links a:hover::after,
.navbar__links a[aria-current="page"]::after { width: 100%; }
.navbar__links a[aria-current="page"] { color: var(--c-red); }

.navbar__actions { display: flex; align-items: center; gap: 14px; }

.navbar__toggle {
  display: none;
  background: none;
  border: none;
  padding: 6px;
}
.navbar__toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--c-black);
  margin: 5px 0;
  transition: var(--transition);
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  padding: 72px 0 82px;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border-soft);
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}
.hero__content { max-width: 580px; }
.hero__kicker {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--c-red);
  font-size: 0.95rem;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero__kicker::before {
  content: "";
  width: 10px; height: 10px;
  background: var(--c-red);
  display: inline-block;
}
.hero h1 { margin-bottom: 22px; }
.hero h1 { letter-spacing: 0; }
.hero h1 em {
  font-style: normal;
  color: var(--c-red);
}
.hero__lead {
  font-size: 1.12rem;
  max-width: 480px;
  margin-bottom: 34px;
}
.hero__ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }
.hero__stats {
  display: flex;
  gap: 34px;
  padding-top: 28px;
  border-top: 1px solid var(--border-soft);
}
.hero__stats div { font-family: var(--font-display); }
.hero__stats strong {
  display: block;
  font-size: 1.7rem;
  color: var(--c-black);
}
.hero__stats span {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.hero__visual { position: relative; }
.hero__visual img { display: block; width: 100%; height: auto; animation: hero-float 5s ease-in-out infinite; }

.hero__photo-frame {
  position: relative;
  width: 115%;
  max-width: 680px;
  margin-left: auto;
  border: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  animation: hero-float 5s ease-in-out infinite;
}
.hero__photo-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.5);
  z-index: 2;
  pointer-events: none;
}
.hero__photo-frame::after {
  content: "";
  position: absolute;
  left: -26px;
  bottom: -26px;
  width: 130px;
  height: 130px;
  background: var(--c-red);
  border-radius: 50%;
  z-index: -1;
  opacity: 0.14;
}
.hero__photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: var(--c-gray-100);
  aspect-ratio: 3 / 4;
  display: block;
  animation: none;
}
.hero__photo-frame--illustration img {
  aspect-ratio: 9 / 7;
  background: transparent;
}
.hero__photo-frame--illustration::before {
  display: none;
}
.hero__photo-frame--illustration {
  box-shadow: none;
}

@keyframes hero-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

/* Hero entrance sequence, triggered by .is-loaded on <body> (see script.js) */
.hero__kicker, .hero h1, .hero__lead, .hero__ctas, .hero__stats, .hero__visual {
  opacity: 0;
  transform: translateY(22px);
}
body.is-loaded .hero__kicker  { animation: hero-in 700ms ease forwards 60ms; }
body.is-loaded .hero h1       { animation: hero-in 700ms ease forwards 160ms; }
body.is-loaded .hero__lead    { animation: hero-in 700ms ease forwards 260ms; }
body.is-loaded .hero__ctas    { animation: hero-in 700ms ease forwards 360ms; }
body.is-loaded .hero__stats   { animation: hero-in 700ms ease forwards 460ms; }
body.is-loaded .hero__visual  { animation: hero-in 800ms ease forwards 260ms; }
@keyframes hero-in {
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .hero__visual img, .hero__photo-frame { animation: none; }
  .hero__kicker, .hero h1, .hero__lead, .hero__ctas, .hero__stats, .hero__visual {
    opacity: 1; transform: none; animation: none;
  }
}

/* ==========================================================================
   Scroll-reveal (elements fade + rise into view; see script.js)
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 650ms ease, transform 650ms ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
/* Staggered children inside a revealed grid */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 550ms ease, transform 550ms ease;
}
.reveal-stagger.is-visible > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 40ms; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 120ms; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 200ms; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 280ms; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 360ms; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 440ms; }
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-stagger > * {
    opacity: 1; transform: none; transition: none;
  }
}

/* ==========================================================================
   Category cards
   ========================================================================== */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}
.cat-card {
  background: var(--c-white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 26px 16px;
  text-align: center;
  transition: box-shadow var(--transition), border-color var(--transition), transform var(--transition);
}
.cat-card:hover {
  box-shadow: var(--shadow-card-hover);
  border-color: var(--c-black);
  transform: translateY(-4px);
}
.cat-card__icon {
  width: 62px; height: 62px;
  margin: 0 auto 14px;
  transition: transform 320ms ease;
}
.cat-card:hover .cat-card__icon { transform: scale(1.12) rotate(-4deg); }
.cat-card h3 {
  font-size: 1rem;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.cat-card span {
  font-size: 0.8rem;
  color: var(--c-gray-500);
}

/* ==========================================================================
   Product cards
   ========================================================================== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.product-card {
  background: var(--c-white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.product-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
  border-color: var(--c-gray-300);
}
.product-card__media {
  background: var(--c-gray-100);
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 190px;
  aspect-ratio: auto;
}
.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 320ms ease;
}
.product-card:hover .product-card__media img { transform: scale(1.06) rotate(-1deg); }

@media (min-width: 721px) {
  .product-card__media {
    height: 190px;
    aspect-ratio: auto;
  }
}

@media (max-width: 1100px) and (min-width: 721px) {
  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.product-card__tag {
  position: absolute;
  left: 14px; bottom: 14px;
  background: var(--c-black);
  color: var(--c-white);
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 3px;
}
.product-card__price,
.product-card__stock-badge {
  position: absolute;
  top: 12px;
  z-index: 2;
  border: 1px solid var(--border-soft);
  background: var(--c-white);
  color: var(--c-black);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1;
  padding: 8px 11px;
  border-radius: 4px;
}
.product-card__price { left: 12px; }
.product-card__stock-badge {
  right: 12px;
  color: #147a3d;
  font-weight: 600;
}
.product-card__stock-badge.is-out-stock {
  color: #9b1c1c;
}
.product-card__body {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-card__cat {
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--c-red);
  margin-bottom: 6px;
}
.product-card h3 { font-size: 1.05rem; margin-bottom: 6px; }
.product-card__stock-line {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: -2px 0 10px;
  color: #147a3d;
  font-size: 0.86rem;
  font-weight: 500;
}
.product-card__stock-line span,
.pd-commerce__stock span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  flex: 0 0 auto;
}
.product-card__stock-line.is-out-stock,
.pd-commerce__stock.is-out-stock {
  color: #9b1c1c;
}
.product-card p { font-size: 0.84rem; margin-bottom: 12px; flex: 1; }
.product-card__actions {
  display: flex;
  gap: 8px;
  margin-top: auto;
  align-items: center;
}
.product-card__actions .btn--outline {
  flex: 1;
  height: 38px;
  padding: 0 10px;
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1.5px solid var(--c-black);
  border-radius: 3px;
  background: transparent;
  color: var(--c-black);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all .25s ease;
}
.product-card__actions .btn--outline:hover {
  background: var(--c-black);
  color: var(--c-white);
}
.product-card__actions .btn--whatsapp {
  flex: 0 0 44px;
  width: 44px;
  min-width: 44px;
  height: 38px;
  padding: 0 !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #1E9E52;
  border: 1.5px solid #1E9E52;
  color: #fff;
  border-radius: 4px;
  transition: all .25s ease;
}
.product-card__actions .btn--whatsapp svg {
  width: 22px;
  height: 22px;
  fill: #fff;
  flex-shrink: 0;
  display: block;
}
.product-card__actions .btn--whatsapp:hover {
  background: #12793D;
  border-color: #12793D;
  transform: scale(1.05);
}

/* ==========================================================================
   Brands strip
   ========================================================================== */
.brand-strip {
  overflow: hidden;
  width: 100%;
}
.brand-divider {
  padding: 28px 0;
  background: var(--c-white);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}
.brand-divider__inner {
  display: flex;
  align-items: center;
  gap: 28px;
}
.brand-divider__label {
  flex: 0 0 auto;
  padding-right: 28px;
  border-right: 2px solid var(--c-black);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--c-black);
}
.brand-divider .brand-strip { flex: 1; }
.brand-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: brand-scroll 24s linear infinite;
}
.brand-strip:hover .brand-track { animation-play-state: paused; }
.brand-track .brand-tile {
  flex: 0 0 190px;
}
.brand-tile {
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.72;
  transition: opacity var(--transition), color var(--transition);
}
.brand-tile img {
  display: block;
  width: 150px;
  height: 42px;
  object-fit: contain;
}
.brand-tile img.brand-logo--wide { width: 190px; }
.brand-tile img.brand-logo--canon { width: 110px; }
.brand-tile img.brand-logo--brand4 { width: 90px; }
.brand-tile:hover { color: var(--c-red); opacity: 1; }

@media (min-width: 721px) {
  .brand-tile img.brand-logo--wide { width: 190px; }
}

@keyframes brand-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 9px)); }
}

@media (prefers-reduced-motion: reduce) {
  .brand-track { animation: none; }
}

/* ==========================================================================
   Why choose / feature grid
   ========================================================================== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.feature {
  padding: 30px 26px;
  background: var(--c-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-soft);
  transition: transform var(--transition), border-color var(--transition);
}
.feature:hover { transform: translateY(-4px); border-color: var(--c-red); }
.feature:hover .feature__icon { transform: scale(1.1) rotate(-6deg); }
.section--dark .feature {
  background: #1e1e1f;
  border-color: #2c2c2e;
}
.feature__icon {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--c-red);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: transform var(--transition);
}
.feature__icon svg { width: 24px; height: 24px; stroke: #fff; }
.feature h3 { font-size: 1.1rem; margin-bottom: 8px; }
.feature p { font-size: 0.92rem; margin-bottom: 0; }

/* ==========================================================================
   About preview / split sections
   ========================================================================== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.split__media {
  background: var(--c-gray-100);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
}
.split__media img { width: 100%; }
.split__media--main { padding: 0; overflow: hidden; }
.split__media--main .hero__photo-frame {
  width: 100%;
  max-width: none;
  border-radius: var(--radius-lg);
  animation: none;
}
.split__media--main .hero__photo-frame img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3 !important;
  object-fit: cover;
  background: transparent;
  animation: none;
}
.split__media::before {
  content: "";
  position: absolute;
  left: -14px; top: -14px;
  width: 70px; height: 70px;
  border-top: 6px solid var(--c-red);
  border-left: 6px solid var(--c-red);
}

/* ==========================================================================
   CTA band
   ========================================================================== */
.cta-band {
  background: var(--c-black);
  color: var(--c-white);
  border-radius: var(--radius-lg);
  padding: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.cta-band::after {
  content: "";
  position: absolute;
  right: -60px; top: -60px;
  width: 220px; height: 220px;
  background: var(--c-red);
  opacity: 0.15;
  border-radius: 50%;
}
.cta-band h2 { color: var(--c-white); margin-bottom: 6px; }
.cta-band p { color: var(--c-gray-300); margin-bottom: 0; font-size: 1.02rem; }
.cta-band__actions { display: flex; gap: 14px; flex-wrap: wrap; z-index: 1; }

/* ==========================================================================
   Page header (inner pages)
   ========================================================================== */
.page-header {
  background: var(--c-black);
  color: var(--c-white);
  padding: 22px 0 20px;
  position: relative;
  overflow: hidden;
}
.page-header .container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 24px;
}
.page-header::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 6px;
  background: var(--c-red);
}
.page-header .breadcrumb {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--c-gray-300);
  margin: 0;
  flex: 0 0 100%;
  line-height: 1.3;
}
.page-header .breadcrumb a:hover { color: var(--c-red); }
.page-header h1 {
  color: var(--c-white);
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
  margin: 0;
  flex: 0 1 auto;
}
.page-header__title--about {
  font-size: clamp(1.5rem, 2.2vw, 2.2rem) !important;
  white-space: nowrap;
}
.page-header p {
  color: var(--c-gray-300);
  max-width: none;
  margin: 0;
  flex: 1 1 320px;
  line-height: 1.4;
}

/* ==========================================================================
   About page sections
   ========================================================================== */
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.pillar {
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 32px;
  background: var(--c-white);
}
.pillar .eyebrow { margin-bottom: 10px; }
.pillar h3 { margin-bottom: 10px; }
.pillar p { margin-bottom: 0; }

/* ---- Store / equipment photo gallery ---- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.gallery-item {
  margin: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: box-shadow var(--transition), transform var(--transition);
  aspect-ratio: 4 / 3;
}
.gallery-item:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}
.gallery-item:hover img { transform: scale(1.06); }
@media (max-width: 720px) {
  .gallery-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Products page — search / filter / grid
   ========================================================================== */
.catalogue-toolbar {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
  padding: 12px 16px;
  background: var(--c-white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
}
.search-box {
  flex: 1;
  min-width: 220px;
  position: relative;
}
.search-box input {
  width: 100%;
  padding: 9px 14px 9px 38px;
  border: 1px solid var(--c-gray-300);
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  color: var(--text-body);
  background: var(--c-gray-100);
}
.search-box input:focus { outline: none; border-color: var(--c-black); background: var(--c-white); }
.search-box svg {
  position: absolute;
  left: 12px; top: 50%;
  transform: translateY(-50%);
  width: 16px; height: 16px;
  stroke: var(--c-gray-500);
}

.filter-selects {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.filter-select {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--text-muted);
}
.filter-select.is-hidden {
  display: none;
}
.filter-select select {
  min-width: 135px;
  padding: 8px 24px 8px 10px;
  border: 1px solid var(--c-gray-300);
  border-radius: var(--radius-sm);
  background: var(--c-white);
  color: var(--c-black);
  font-family: var(--font-body);
  font-size: 0.75rem;
  line-height: 1.2;
  cursor: pointer;
}
.filter-select select:focus { outline: none; border-color: var(--c-black); }

.filter-chips { display: flex; gap: 10px; flex-wrap: wrap; }
.filter-chip {
  padding: 10px 18px;
  border: 1px solid var(--c-gray-300);
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.86rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  background: var(--c-white);
  color: var(--text-muted);
  transition: var(--transition);
}
.filter-chip:hover { border-color: var(--c-black); color: var(--c-black); }
.filter-chip.is-active { background: var(--c-black); border-color: var(--c-black); color: var(--c-white); }

.catalogue-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.catalogue-meta strong { color: var(--c-black); }

.no-results {
  display: none;
  text-align: center;
  padding: 70px 20px;
  border: 1px dashed var(--c-gray-300);
  border-radius: var(--radius-md);
}
.no-results.is-visible { display: block; }
.no-results h3 { margin-bottom: 8px; }

/* ==========================================================================
   Product details page
   ========================================================================== */
.product-details {
  display: grid;
  grid-template-columns: minmax(280px, 420px) 1fr;
  gap: 3rem;
  align-items: start;
}
.pd-gallery__main {
  width: 100%;
  max-height: 380px;
  aspect-ratio: 1 / 1;
  background: #fff;
  border-radius: 6px;
  border: 1px solid var(--border-soft);
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 12px;
}
.pd-gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 4px;
}
.pd-gallery__thumbs {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
}
.pd-gallery__thumbs button {
  border: 1.5px solid var(--border-soft);
  background: #fff;
  border-radius: 4px;
  padding: 4px;
  width: 62px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color .2s, transform .2s;
}
.pd-gallery__thumbs button.is-active {
  border-color: var(--c-red);
  box-shadow: 0 0 0 1px var(--c-red);
}
.pd-gallery__thumbs img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.pd-info__cat {
  color: var(--c-red);
  font-family: var(--font-display);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.pd-info h1 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.3vw, 2.1rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 6px;
}
.pd-commerce {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin: 6px 0 12px;
}
.pd-commerce__price {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--c-black);
}
.pd-commerce__stock {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #147a3d;
  font-size: 0.88rem;
  font-weight: 600;
}
.pd-info__brand {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 12px;
}
.pd-info__brand strong { color: var(--c-black); }
.pd-info__desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-body);
  margin-bottom: 18px;
}

.pd-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
  margin-bottom: 20px;
}
.pd-features li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: 0.88rem;
  color: var(--text-body);
}
.pd-features svg {
  flex-shrink: 0;
  margin-top: 3px;
  stroke: var(--c-red);
  width: 15px;
  height: 15px;
}

.pd-actions {
  display: flex;
  gap: 12px;
  margin-bottom: 10px;
  flex-wrap: wrap;
  align-items: center;
}
.pd-actions .btn {
  min-height: 42px;
  padding: 10px 22px;
  font-size: 0.82rem;
  font-weight: 700;
}
.pd-note {
  font-size: 0.82rem;
  color: var(--c-gray-500);
  line-height: 1.45;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 16px;
}
.specs-table tr { border-bottom: 1px solid var(--border-soft); }
.specs-table tr:last-child { border-bottom: none; }
.specs-table th, .specs-table td {
  text-align: left;
  padding: 14px 16px;
  font-size: 0.94rem;
}
.specs-table th {
  width: 38%;
  font-family: var(--font-display);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 0.82rem;
  color: var(--text-muted);
  background: var(--c-gray-100);
}
.specs-wrap {
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.related-heading { margin-top: 90px; }

/* ==========================================================================
   Contact page
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 50px;
}
.contact-cards { display: flex; flex-direction: column; gap: 16px; }
.contact-card {
  display: flex;
  gap: 16px;
  padding: 22px;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  background: var(--c-white);
}
.contact-card__icon {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--c-gray-100);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-card__icon svg { width: 22px; height: 22px; stroke: var(--c-red); }
.contact-card h3 { font-size: 1rem; margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.5px; }
.contact-card p { font-size: 0.94rem; margin-bottom: 0; color: var(--text-muted); }

.map-embed {
  margin-top: 8px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-soft);
  aspect-ratio: 16/10;
  background: var(--c-gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  color: var(--c-gray-500);
  text-align: center;
  padding: 20px;
}
.map-embed iframe { width: 100%; height: 100%; border: 0; display: block; }
.map-embed svg { width: 34px; height: 34px; stroke: var(--c-gray-500); }
.map-embed small { font-size: 0.78rem; }

.contact-form {
  background: var(--c-white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.82rem;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--c-black);
  margin-bottom: 8px;
  font-weight: 600;
}
.field input, .field textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1px solid var(--c-gray-300);
  border-radius: var(--radius-sm);
  background: var(--c-gray-100);
  color: var(--text-body);
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--c-black);
  background: var(--c-white);
}
.field textarea { resize: vertical; min-height: 130px; }

.form-success {
  display: none;
  align-items: center;
  gap: 14px;
  padding: 20px 22px;
  border-radius: var(--radius-md);
  background: #edf9f1;
  border: 1px solid #bfe8cc;
  color: #1c6b34;
  margin-bottom: 22px;
}
.form-success.is-visible { display: flex; }
.form-success svg { flex-shrink: 0; width: 26px; height: 26px; stroke: #1c6b34; }
.form-success strong { display: block; color: #14512a; }

/* ==========================================================================
   Floating WhatsApp button
   ========================================================================== */
.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 200;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--c-whatsapp);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.4);
  transition: transform var(--transition), background var(--transition), box-shadow var(--transition);
  animation: wa-pulse 2.6s ease-in-out infinite;
}
.wa-float:hover {
  transform: translateY(-3px) scale(1.06);
  background: var(--c-whatsapp-dark);
  box-shadow: 0 14px 30px rgba(29, 168, 81, 0.5);
}
.wa-float svg { width: 28px; height: 28px; fill: #fff; }

@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 10px 24px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.45); }
  50% { box-shadow: 0 10px 24px rgba(37, 211, 102, 0.4), 0 0 0 12px rgba(37, 211, 102, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .wa-float { animation: none; }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--c-black);
  color: var(--c-gray-300);
  padding: 68px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid #2a2a2c;
}
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.footer-brand img { height: 44px; width: 44px; border-radius: 50%; }
.footer-brand-text { font-family: var(--font-display); font-weight: 700; font-size: 1.4rem; color: var(--c-white); }
.footer-brand-text span { color: var(--c-red); }
.site-footer p { color: var(--c-gray-500); font-size: 0.92rem; max-width: 320px; }
.footer-col h4 {
  color: var(--c-white);
  font-size: 0.88rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul a { color: var(--c-gray-300); font-size: 0.94rem; transition: var(--transition); }
.footer-col ul a:hover { color: var(--c-red); }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid #3a3a3c;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--c-red); border-color: var(--c-red); }
.footer-social svg { width: 17px; height: 17px; stroke: var(--c-gray-300); }
.footer-social a:hover svg { stroke: #fff; }
.footer-bottom {
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.84rem;
  color: var(--c-gray-500);
}
.footer-bottom a:hover { color: var(--c-red); }

/* ==========================================================================
   Utilities
   ========================================================================== */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
[data-aos] { opacity: 1; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1080px) {
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
  .brand-strip { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__content { order: 1; }
  .hero__visual { order: 2; width: 100%; max-width: 420px; margin: 0 auto; }
  .split { grid-template-columns: 1fr; }
  .split__media { order: -1; }
  .split--about .split__content { order: 1; }
  .split--about .split__media { order: 2; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .product-details { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .pillar-grid { grid-template-columns: 1fr; }
  .page-header .container {
    align-items: flex-start;
    gap: 8px 18px;
  }
  .page-header h1,
  .page-header p { flex-basis: 100%; }
  .page-header__title--about { font-size: 1.55rem !important; }
}

@media (max-width: 720px) {
  .navbar__links, .navbar__actions .btn--outline { display: none; }
  .navbar__toggle { display: block; }
  .site-header.is-open .navbar__links {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    background: var(--c-white);
    padding: 20px 24px 26px;
    gap: 18px;
    border-bottom: 1px solid var(--border-soft);
    box-shadow: 0 12px 20px rgba(0,0,0,0.06);
  }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .brand-strip { grid-template-columns: repeat(2, 1fr); }
  .brand-divider { padding: 30px 0; }
  .brand-divider__inner { gap: 12px; }
  .brand-divider__label { padding-right: 12px; font-size: 0.78rem; }
  .brand-track { gap: 8px; }
  .brand-track .brand-tile { flex-basis: 155px; }
  .brand-tile img.brand-logo--wide { width: 150px; }
  .brand-tile { height: 72px; font-size: 0.9rem; }
  .section--alt .product-grid .product-card:nth-child(n + 3) { display: none; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .product-card__media { padding: 14px; }
  .product-card__tag { left: 8px; bottom: 8px; padding: 4px 6px; font-size: 0.62rem; }
  .product-card__price,
  .product-card__stock-badge {
    top: 8px;
    padding: 6px 8px;
    font-size: 0.66rem;
  }
  .product-card__price { left: 8px; }
  .product-card__stock-badge { right: 8px; }
  .product-card__body { padding: 14px 12px 12px; }
  .product-card__cat { font-size: 0.68rem; letter-spacing: 1px; }
  .product-card h3 { font-size: 1rem; }
  .product-card p { font-size: 0.78rem; margin-bottom: 12px; }
  .product-card__actions { flex-direction: column; gap: 6px; }
  .product-card__actions .btn { width: 100%; padding: 8px 6px; font-size: 0.68rem; }
  .catalogue-actions { flex-direction: row; gap: 6px; }
  .catalogue-actions .btn { width: auto; min-height: 34px; padding: 8px 10px; }
  .catalogue-actions .btn--whatsapp { flex: 0 0 38px; padding: 8px; }
  .feature-grid { grid-template-columns: 1fr; }
  .site-footer { padding-top: 42px; }
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 16px;
    padding-bottom: 28px;
  }
  .footer-grid > .footer-col:first-child,
  .footer-grid > .footer-col:last-child { grid-column: 1 / -1; }
  .footer-grid > .footer-col:first-child { text-align: center; }
  .footer-brand { flex-direction: row; justify-content: center; gap: 8px; margin-bottom: 12px; }
  .footer-brand img { width: 38px; height: 38px; }
  .footer-brand-text { font-size: 1.2rem; }
  .site-footer p { margin: 0 auto; max-width: 280px; font-size: 0.78rem; line-height: 1.45; }
  .footer-social { justify-content: center; margin-top: 12px; }
  .footer-social a { width: 32px; height: 32px; }
  .footer-social svg { width: 14px; height: 14px; }
  .footer-col h4 { margin-bottom: 10px; font-size: 0.72rem; }
  .footer-col ul li { margin-bottom: 7px; line-height: 1.25; }
  .footer-col ul a,
  .footer-col ul span { font-size: 0.78rem; }
  .footer-grid > .footer-col:last-child { text-align: left; }
  .footer-grid > .footer-col:last-child span { display: inline-block; max-width: 100%; }
  .footer-bottom { padding: 16px 0; justify-content: center; text-align: center; font-size: 0.7rem; }
  .cta-band { padding: 40px 26px; flex-direction: column; text-align: center; }
  .cta-band__actions { justify-content: center; }
  .section { padding: 44px 0; }
  .page-header + .section { padding-top: 24px; }
  .hero {
    min-height: calc(100svh - 44px);
    padding: 28px 0 42px;
  }
  .hero__grid { gap: 24px; }
  .hero__content { max-width: none; }
  .hero__lead { font-size: 0.98rem; line-height: 1.55; margin-bottom: 24px; }
  .hero__ctas { gap: 10px; margin-bottom: 0; }
  .hero__ctas .btn { min-height: 36px; padding: 9px 16px; font-size: 0.78rem; }
  .hero__photo-frame { width: 100%; max-width: 100%; }
  .hero__photo-frame--illustration img {
    transform: scale(1.55) translateY(10%);
    transform-origin: center center;
  }
  .form-row { grid-template-columns: 1fr; }
  .catalogue-toolbar { flex-direction: column; align-items: stretch; }
  .filter-selects { display: grid; grid-template-columns: 1fr 1fr; }
  .filter-select { display: block; }
  .filter-select span { display: block; margin-bottom: 5px; font-size: 0.68rem; }
  .filter-select select { width: 100%; min-width: 0; padding: 9px 20px 9px 8px; font-size: 0.7rem; }
  .search-box input { padding: 10px 12px 10px 38px; font-size: 0.82rem; }
  .search-box svg { left: 12px; width: 16px; height: 16px; }
  .pd-features { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero__kicker {
    font-size: 0.68rem;
    letter-spacing: 1.4px;
    gap: 6px;
    white-space: nowrap;
  }
  .hero__kicker::before { width: 7px; height: 7px; }
  .hero__stats { gap: 20px; flex-wrap: wrap; }
  .hero__ctas .btn, .cta-band__actions .btn { width: 100%; }
  .hero__ctas, .cta-band__actions { flex-direction: column; }
  .pd-actions .btn { width: 100%; }
  .pd-actions { flex-direction: column; }
}
