:root {
  /* Graphite + signal red */
  --primary-50: #FFF1F1;
  --primary-100: #FFD6D8;
  --primary-400: #FF3B45;
  --primary-500: #E10600;
  --primary-600: #C10500;
  --primary-700: #8F0400;
  --maroon-500: #9A0A0A;

  --secondary-100: #E8EEF2;
  --secondary-400: #9AA8B4;
  --secondary-500: #D7DEE5;
  --secondary-600: #B7C2CC;
  --secondary-700: #7E8B97;

  --neutral-0: #FFFFFF;
  --neutral-50: #F6F7F8;
  --neutral-100: #EFF1F3;
  --neutral-200: #E2E6E9;
  --neutral-300: #C7CED4;
  --neutral-400: #97A1AA;
  --neutral-500: #6A747E;
  --neutral-600: #4A545E;
  --neutral-700: #2F3740;
  --neutral-800: #1A2128;
  --neutral-900: #11161B;
  --neutral-950: #0A0D10;

  --bg-page: #F6F7F8;
  --bg-surface: #FFFFFF;
  --bg-surface-alt: #EFF1F3;
  --bg-inverse: #11161B;
  --bg-hero: #0A0D10;

  --text-primary: #11161B;
  --text-secondary: #4A545E;
  --text-muted: #6A747E;
  --text-on-primary: #FFFFFF;
  --text-on-secondary: #11161B;
  --text-inverse: #EFF1F3;
  --text-link: #E10600;

  --border-subtle: #E2E6E9;
  --border-default: #C7CED4;
  --border-strong: #97A1AA;
  --border-focus: #E10600;

  --font-display: "Montserrat", "Segoe UI", sans-serif;
  --font-body: "Source Sans 3", "Segoe UI", sans-serif;
  --space: clamp(1.25rem, 3vw, 2.5rem);
  --max: 70rem;
  --radius: 1rem;
  --radius-sm: 0.75rem;
  --shadow: 0 18px 50px rgba(10, 13, 16, 0.08);
  --shadow-soft: 0 10px 30px rgba(10, 13, 16, 0.06);
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }
html.has-smooth-scroll { scroll-behavior: auto; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text-primary);
  background: var(--bg-page);
  min-height: 100vh;
}

body.is-loading .page-shell,
body.is-transitioning .page-shell {
  pointer-events: none;
}

body.is-loading [data-split]:not(.is-inview),
body.is-loading .hero__actions,
body.is-loading .hero__stage {
  visibility: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--text-link); text-underline-offset: 0.18em; }
a:hover { color: var(--primary-600); }

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  background: var(--secondary-500);
  color: var(--text-on-secondary);
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  z-index: 100;
}
.skip-link:focus { top: 1rem; }

/* Page transition curtain */
.page-transition {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  visibility: hidden;
}

.page-transition[data-state="covering"],
.page-transition[data-state="covered"],
body.is-loading .page-transition {
  visibility: visible;
  pointer-events: all;
}

.page-transition__shade {
  position: absolute;
  inset: 0;
  background: rgba(17, 14, 13, 0.18);
  opacity: 0;
}

body.is-loading .page-transition__shade {
  opacity: 1;
}

.page-transition__panels {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.page-transition__panels span {
  display: block;
  height: 100%;
  background: var(--neutral-500);
  transform: translate3d(0, 100.5%, 0);
  will-change: transform;
}

body.is-loading .page-transition__panels span {
  transform: none;
}

.page-transition__panels span:nth-child(2) {
  background: var(--neutral-600);	
}
.page-transition__panels span:nth-child(3) {
  background: var(--neutral-700);
}
.page-transition__panels span:nth-child(4) {
  background: var(--neutral-800);
}

.page-shell {
  min-height: 100vh;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 247, 248, 1);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 200ms ease, background 200ms ease;
}

.site-header.is-solid {
  border-bottom-color: var(--border-subtle);
}

.site-header__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.9rem var(--space);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
}

.site-brand__logo {
  width: clamp(5.25rem, 12vw, 7rem);
  height: auto;
  display: block;
}

.site-nav { position: relative; display: flex; align-items: center; }
.site-nav__panel {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1.35rem;
  flex-wrap: wrap;
}

.menu a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  transition: color 160ms ease;
}

.menu a:hover,
.menu .current-menu-item > a {
  color: var(--primary-500);
}

/* Dash-style character flip nav */
.nav-flip {
  overflow: hidden;
  display: inline-flex;
  vertical-align: bottom;
}

.nav-flip__track {
  display: inline-flex;
  position: relative;
}

.nav-flip__char {
  position: relative;
  display: inline-block;
  transition: transform 0.55s cubic-bezier(0.76, 0, 0.24, 1);
  transition-delay: calc(var(--i) * 0.025s);
}

.nav-flip__char::after {
  content: attr(data-char);
  position: absolute;
  left: 0;
  top: 100%;
}

.nav-flip:hover .nav-flip__char,
.menu .current-menu-item > .nav-flip .nav-flip__char {
  transform: translateY(-100%);
}

.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
}
.lang-switcher__link { color: var(--text-muted); text-decoration: none; }
.lang-switcher__link.is-active,
.lang-switcher__link:hover { color: var(--primary-500); }
.lang-switcher__sep { color: var(--border-default); }

.nav-toggle {
  display: none;
  border: 1px solid var(--border-default);
  background: var(--bg-surface);
  color: var(--text-primary);
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}

/* Hero */
.hero {
  position: relative;
  isolation: isolate;
  min-height: min(auto, 56rem);
  display: grid;
  grid-template-columns: 0.95fr 1.2fr;
  align-items: center;
  gap: 0.5rem;
  overflow: hidden;
  background-color: #07090c;
  background-image:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.05 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"),
    repeating-linear-gradient(
      -32deg,
      transparent 0,
      transparent 3px,
      rgba(255, 255, 255, 0.03) 3px,
      rgba(255, 255, 255, 0.03) 4px
    ),
    linear-gradient(165deg, #141a20 0%, #0c1014 38%, #07090c 100%);
  background-size: 180px 180px, auto, auto;
  color: var(--text-inverse);
  padding: 2vh 0;
}

/* Signal-red glow orb — drifts behind the chassis */
.hero::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 8%;
  right: 4%;
  width: min(62vw, 44rem);
  height: min(52vw, 36rem);
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(
    ellipse at center,
    rgba(225, 6, 0, 0.42) 0%,
    rgba(225, 6, 0, 0.16) 38%,
    transparent 70%
  );
  filter: blur(8px);
  opacity: 0.9;
  will-change: transform;
  animation: hero-orb-red 16s ease-in-out infinite;
}

/* Cool graphite orb + floor bloom — counter-drift */
.hero::after {
  content: "";
  position: absolute;
  z-index: 0;
  left: 38%;
  bottom: -6%;
  width: min(70vw, 48rem);
  height: min(40vw, 28rem);
  border-radius: 50%;
  pointer-events: none;
  background:
    radial-gradient(
      ellipse at 45% 55%,
      rgba(225, 6, 0, 0.2) 0%,
      transparent 58%
    ),
    radial-gradient(
      ellipse at 50% 60%,
      rgba(151, 161, 170, 0.2) 0%,
      transparent 65%
    );
  filter: blur(10px);
  opacity: 0.85;
  will-change: transform;
  animation: hero-orb-cool 22s ease-in-out infinite;
}

@keyframes hero-orb-red {
  0%   { transform: translate3d(0, 0, 0) scale(1); }
  25%  { transform: translate3d(-12%, 10%, 0) scale(1.06); }
  50%  { transform: translate3d(-18%, -6%, 0) scale(0.96); }
  75%  { transform: translate3d(8%, -12%, 0) scale(1.04); }
  100% { transform: translate3d(0, 0, 0) scale(1); }
}

@keyframes hero-orb-cool {
  0%   { transform: translate3d(0, 0, 0) scale(1); }
  25%  { transform: translate3d(14%, -8%, 0) scale(1.05); }
  50%  { transform: translate3d(8%, 10%, 0) scale(0.94); }
  75%  { transform: translate3d(-10%, 6%, 0) scale(1.08); }
  100% { transform: translate3d(0, 0, 0) scale(1); }
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: clamp(4rem, 12vh, 7rem) var(--space) clamp(3rem, 8vh, 5rem);
  max-width: 38rem;
  margin-left: max(0px, calc((100vw - var(--max)) / 2));
}

.hero__title {
  margin: 0 0 1rem;
  max-width: 14ch;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: rgba(239, 241, 243, 0.92);
}

.hero__lead {
  margin: 0 0 1.75rem;
  max-width: 36ch;
  color: rgba(244, 241, 241, 0.72);
  font-size: 1.08rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem;
}

.hero__stage {
  position: relative;
  z-index: 2;
  min-height: 34rem;
  height: 100%;
  width: 100%;
  display: grid;
  place-items: center;
  padding: 1rem 0.5rem 3rem;
  overflow: visible;
}

.hero__canvas {
  width: 100%;
  max-width: 52rem;
  height: min(80vh, 42rem);
  touch-action: none;
  position: relative;
}

.hero__canvas-el {
  display: block;
  width: 100% !important;
  height: 100% !important;
}

.hero__credit {
  position: absolute;
  right: var(--space);
  bottom: 0.85rem;
  margin: 0;
  max-width: 22rem;
  text-align: right;
  font-size: 0.72rem;
  line-height: 1.35;
  color: rgba(239, 241, 243, 0.45);
  z-index: 3;
}

.hero__credit a {
  color: rgba(239, 241, 243, 0.62);
  text-decoration: none;
}

.hero__credit a:hover {
  color: #fff;
}

.hero__fallback {
  width: min(72%, 16rem);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, rgba(215, 222, 229, 0.28), transparent 42%),
    radial-gradient(circle at 70% 70%, rgba(225, 6, 0, 0.42), transparent 48%),
    #151a1f;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: none;
  box-shadow: var(--shadow);
}

.hero.is-static .hero__canvas { display: none; }
.hero.is-static .hero__fallback { display: block; }

.hero:not(.is-static):not(.is-model-ready) .hero__canvas::after {
  content: "";
  position: absolute;
  inset: 28%;
  border-radius: 50%;
  border: 2px solid rgba(239, 241, 243, 0.15);
  border-top-color: rgba(225, 6, 0, 0.75);
  animation: lap-spin 0.9s linear infinite;
}

@keyframes lap-spin {
  to { transform: rotate(360deg); }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.35rem;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-weight: 700;
  letter-spacing: -0.01em;
  cursor: pointer;
  text-decoration: none;
  transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease, color 180ms ease;
  will-change: transform;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary {
  background: var(--primary-500);
  color: var(--text-on-primary);
  box-shadow: 0 10px 28px rgba(225, 6, 0, 0.28);
}
.btn--primary:hover {
  background: var(--primary-400);
  color: var(--text-on-primary);
}
.btn--ghost {
  background: transparent;
  color: rgba(239, 241, 243, 0.9);
  padding-left: 0.35rem;
  padding-right: 0.35rem;
  box-shadow: none;
}
.btn--ghost:hover { color: #fff; }
.btn--solid {
  background: var(--neutral-900);
  color: var(--text-inverse);
}
.btn--solid:hover {
  background: var(--neutral-800);
  color: var(--text-inverse);
}
.btn--light {
  background: var(--bg-surface);
  color: var(--text-primary);
  border: 1px solid var(--border-subtle);
}

/* Sections */
.section {
  padding: clamp(3.5rem, 8vw, 6rem) var(--space);
}

.section__inner,
.page-block {
  max-width: var(--max);
  margin: 0 auto;
}

.section__header {
  max-width: 36rem;
  margin-bottom: 2rem;
}

.eyebrow {
  margin: 0 0 0.55rem;
  color: var(--primary-500);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section h2,
.page-block h1 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin: 0 0 0.85rem;
  color: var(--text-primary);
}

.section h2 { font-size: clamp(2rem, 4vw, 3rem); }
.page-block h1 { font-size: clamp(2.2rem, 4.5vw, 3.4rem); }

/* Split text */
.split-word,
.split-line {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  padding-bottom: 0.08em;
  margin-bottom: -0.08em;
}

.split-word__inner,
.split-line__inner,
.split-char {
  display: inline-block;
  will-change: transform;
}

.split-char {
  white-space: pre;
}

.section p,
.page-block .entry-content,
.lead {
  color: var(--text-secondary);
  max-width: 58ch;
}

.section--dark {
  background: var(--bg-inverse);
  color: var(--text-inverse);
}

.section--dark h2 { color: #fff; }
.section--dark p,
.section--dark .trust-item { color: rgba(244, 241, 241, 0.72); }
.section--dark .eyebrow { color: var(--secondary-400); }

/* Category cards — soft “notification” stacks */
.category-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.category-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  min-height: 12.5rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow-soft);
  transition: box-shadow 220ms ease, border-color 220ms ease;
  will-change: transform;
}

.category-card:hover {
  border-color: rgba(225, 6, 0, 0.22);
  box-shadow: var(--shadow);
}

.category-card__media {
  min-height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 420ms ease;
}

.category-card:hover .category-card__media {
  transform: scale(1.05);
}

.category-card__body {
  padding: 1.35rem 1.4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.4rem;
}

.category-card__body h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text-primary);
}

.category-card__body p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.98rem;
}

.trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}

.trust-item {
  padding-top: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-weight: 600;
  letter-spacing: -0.01em;
}

.cta-band {
  background:
    linear-gradient(120deg, #151a1f 0%, #11161B 55%, #0A0D10 100%);
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.cta-band__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cta-band h2 {
  color: #fff;
  margin-bottom: 0.45rem;
}

.cta-band p {
  color: rgba(239, 241, 243, 0.78);
  margin: 0;
}

/* Inner pages */
.page-hero {
  position: relative;
  min-height: 17rem;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--bg-hero);
  color: #fff;
}

.page-hero__media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.42) saturate(0.95);
}

.page-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 14, 13, 0.15), rgba(17, 14, 13, 0.78));
}

.page-hero__content {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  padding: 3.5rem var(--space) 2.2rem;
}

.page-hero__content .eyebrow { color: var(--secondary-400); }
.page-hero__content h1 { color: #fff; }

.page-block { padding: clamp(2.5rem, 6vw, 4rem) var(--space); }

.page-block__grid {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: 1.5rem;
  align-items: start;
}

.panel {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 1.4rem;
  box-shadow: var(--shadow-soft);
}

.panel h2 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: -0.03em;
  margin: 0 0 0.75rem;
}

.panel ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--text-secondary);
}

.product-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.product-chip {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1rem;
  font-weight: 650;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.25rem;
  margin-top: 1.4rem;
}

.contact-form {
  display: grid;
  gap: 0.9rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 1.4rem;
  box-shadow: var(--shadow-soft);
}

.contact-form label {
  display: grid;
  gap: 0.35rem;
  font-weight: 650;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--border-default);
  border-radius: var(--radius-sm);
  background: var(--bg-page);
  color: var(--text-primary);
  padding: 0.8rem 0.9rem;
  font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(225, 6, 0, 0.35);
  outline-offset: 1px;
  border-color: var(--border-focus);
}

.form-notice { margin: 0; padding: 0.75rem 0.9rem; border-radius: var(--radius-sm); }
.form-notice--ok { background: #E4F4EA; color: #1F6B3A; }
.form-notice--error { background: var(--primary-100); color: var(--primary-700); }

/* Footer */
.site-footer {
  background: var(--bg-inverse);
  color: var(--text-inverse);
}

.site-footer a { color: var(--secondary-400); }
.site-footer__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2.4rem var(--space);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 1.5rem;
}

.site-footer__brand p,
.site-footer__meta { color: rgba(244, 241, 241, 0.68); }

.site-footer__logo {
  width: clamp(5rem, 12vw, 6.5rem);
  height: auto;
  margin-bottom: 0.9rem;
  display: block;
}

.site-footer__bar {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  max-width: var(--max);
  margin: 0 auto;
  padding: 1rem var(--space) 1.5rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  color: rgba(244, 241, 241, 0.55);
  font-size: 0.92rem;
}

.site-footer .lang-switcher {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
}
.site-footer .lang-switcher__link { color: rgba(244, 241, 241, 0.55); }
.site-footer .lang-switcher__link.is-active,
.site-footer .lang-switcher__link:hover { color: var(--secondary-400); }

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.15rem;
  margin: 0.35rem 0;
}

.social-links a {
  font-weight: 600;
  text-decoration: none;
}

.social-links a:hover {
  color: var(--primary-500);
}

.social-links--footer a {
  color: var(--secondary-400);
}

.social-links--footer a:hover {
  color: #fff;
}

/* Floating WhatsApp */
.whatsapp-float {
  position: fixed;
  right: 1.15rem;
  bottom: 1.15rem;
  z-index: 80;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.72rem 1rem 0.72rem 0.78rem;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: -0.01em;
  box-shadow: 0 12px 32px rgba(10, 13, 16, 0.28);
  transition: background-color 180ms ease, box-shadow 180ms ease;
}

.whatsapp-float:hover {
  background: #1ebe57;
  color: #fff;
  box-shadow: 0 14px 36px rgba(10, 13, 16, 0.34);
}

.whatsapp-float__icon {
  width: 1.55rem;
  height: 1.55rem;
  flex-shrink: 0;
}

.whatsapp-float__label {
  font-size: 0.95rem;
}

@media (max-width: 720px) {
  .whatsapp-float__label { display: none; }
  .whatsapp-float {
    padding: 0.85rem;
    border-radius: 50%;
  }
}

@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero__content {
    margin-left: 0;
    padding-bottom: 1rem;
  }
  .hero__stage {
    min-height: 24rem;
    padding-top: 0;
    padding-bottom: 3.5rem;
  }

  .hero__canvas {
    height: min(62vh, 28rem);
  }
  .category-grid { grid-template-columns: 1fr; }
  .category-card { grid-template-columns: 0.85fr 1.15fr; }
  .trust-strip__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .page-block__grid,
  .contact-layout,
  .site-footer__inner { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .nav-toggle { display: inline-flex; }
  .site-nav__panel {
    display: none;
    position: absolute;
    right: 0;
    top: calc(100% + 0.5rem);
    flex-direction: column;
    align-items: flex-start;
    gap: 0.9rem;
    padding: 1rem;
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius);
    min-width: 14rem;
    box-shadow: var(--shadow);
  }
  .site-nav.is-open .site-nav__panel { display: flex; }
  .menu { flex-direction: column; gap: 0.55rem; }
  .category-card { grid-template-columns: 1fr; }
  .category-card__media { min-height: 10rem; }
  .product-list,
  .trust-strip__grid { grid-template-columns: 1fr; }
  .site-footer__bar { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  .page-transition { display: none !important; }
  body.is-loading [data-split]:not(.is-inview),
  body.is-loading .hero__actions,
  body.is-loading .hero__stage {
    visibility: visible;
  }
  .nav-flip:hover .nav-flip__char,
  .menu .current-menu-item > .nav-flip .nav-flip__char {
    transform: none;
  }
}
