/* ETHRA Pharmaceuticals — Logo Brand Palette */
:root {
  --red: #b21f24;
  --red-dark: #7a1218;
  --red-light: #d4282d;
  --orange: #f5a623;
  --orange-dark: #e8940f;
  --orange-light: #ffbe3d;
  --yellow: #ffcb47;
  --black: #0a0a0a;
  --gray: #c0c0c0;
  --gray-light: #f7f5f3;
  --gray-dark: #6b7280;
  --white: #ffffff;
  --bg-cream: #faf4eb;
  --bg-warm: #fff8f0;
  --bg-blush: #fbf1ee;
  --bg-sand: #f3ebe0;
  --bg-linen: #f8f6f1;
  --text: #1a1212;
  --text-muted: #5c4f4f;
  --shadow: 0 4px 24px rgba(178, 31, 36, 0.08);
  --shadow-lg: 0 12px 48px rgba(178, 31, 36, 0.14);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1200px;
  --font: "Inter", system-ui, -apple-system, sans-serif;
  --ethra-nav-height: 76px;
  --ethra-menu-top: var(--ethra-nav-height);

  /* legacy aliases */
  --teal: var(--red);
  --teal-dark: var(--red-dark);
  --teal-light: var(--red-light);
  --green: var(--orange);
  --green-dark: var(--orange-dark);
  --green-light: var(--orange-light);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--red);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 1.0625rem;
  color: var(--text-muted);
}

/* ── Navigation ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1210;
  background: var(--black);
}

body.admin-bar .site-header {
  top: var(--wp-admin--admin-bar--height, 32px);
}

body.admin-bar {
  --ethra-menu-top: calc(var(--wp-admin--admin-bar--height, 32px) + var(--ethra-nav-height));
}

.nav {
  position: relative;
  z-index: 1212;
  background: var(--black);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
  transition: box-shadow 0.4s ease, background 0.4s ease;
}

.nav.scrolled {
  background: rgba(10, 10, 10, 0.98);
  box-shadow: 0 4px 32px rgba(178, 31, 36, 0.25);
}

.nav-inner,
.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  position: relative;
}

.nav::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--red),
    var(--orange),
    var(--yellow),
    var(--orange),
    var(--red)
  );
  background-size: 300% 100%;
  animation: navShimmer 4s linear infinite;
}

@keyframes navShimmer {
  0% { background-position: 0% 50%; }
  100% { background-position: 300% 50%; }
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo img {
  height: 50px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
}

.nav-links .nav-menu,
.nav-links.nav-fallback {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links .nav-menu > li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(245, 166, 35, 0.15);
}

.nav-cta {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark)) !important;
  color: var(--black) !important;
  font-weight: 700 !important;
}

.nav-cta:hover {
  background: linear-gradient(135deg, var(--orange-light), var(--orange)) !important;
  box-shadow: 0 4px 20px rgba(245, 166, 35, 0.45);
}

.nav-toggle {
  display: none;
  position: relative;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(245, 166, 35, 0.45);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
  flex-shrink: 0;
}

.nav-toggle span {
  position: absolute;
  left: 50%;
  width: 22px;
  height: 2px;
  margin-left: -11px;
  background: var(--orange);
  border-radius: 2px;
  transition: transform 0.28s ease, opacity 0.2s ease, top 0.28s ease;
}

.nav-toggle span:nth-child(1) {
  top: 16px;
}

.nav-toggle span:nth-child(2) {
  top: 23px;
}

.nav-toggle span:nth-child(3) {
  top: 30px;
}

.nav-toggle.is-active span:nth-child(1) {
  top: 23px;
  transform: rotate(45deg);
}

.nav-toggle.is-active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-toggle.is-active span:nth-child(3) {
  top: 23px;
  transform: rotate(-45deg);
}

/* ── Hero (animated) ── */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 45%, #9a1a1f 100%);
  color: var(--white);
  padding: 6rem 0 8.5rem;
  overflow: hidden;
  min-height: 88vh;
}

.hero-slider {
  display: block;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(122, 18, 24, 0.88) 0%,
    rgba(178, 31, 36, 0.78) 45%,
    rgba(90, 10, 14, 0.85) 100%
  );
}

.hero-bg .infinity-watermark {
  position: absolute;
  z-index: 1;
}

.hero-slides {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: clamp(480px, 62vh, 620px);
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.hero-slide.is-active {
  position: relative;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.hero-visual--parallax {
  perspective: 900px;
}

.hero-visual--single {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 360px;
}

.hero-product-orbit {
  position: relative;
  width: min(400px, 82vw);
  height: min(400px, 82vw);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-product-orbit-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px dashed rgba(245, 166, 35, 0.35);
  animation: orbitSpin 24s linear infinite;
}

@keyframes orbitSpin {
  to { transform: rotate(360deg); }
}

.hero-product-circle {
  width: 88%;
  height: 88%;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: rgba(255, 255, 255, 0.08);
  border: 3px solid rgba(255, 255, 255, 0.3);
  box-shadow:
    0 0 0 10px rgba(245, 166, 35, 0.12),
    0 24px 64px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(4px);
}

.hero-product-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.25));
}

.hero-orbit-pill {
  position: absolute;
  border-radius: var(--pill-radius);
  background: linear-gradient(90deg, var(--red), var(--orange), var(--yellow));
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

.hero-orbit-pill--1 { width: 56px; height: 22px; top: 8%; right: 12%; transform: rotate(25deg); }
.hero-orbit-pill--2 { width: 42px; height: 17px; bottom: 14%; left: 8%; transform: rotate(-18deg); }
.hero-orbit-pill--3 { width: 36px; height: 14px; top: 42%; left: -2%; transform: rotate(40deg); }

.hero-team-frame {
  width: min(100%, 420px);
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
  border: 3px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.06);
}

.hero-team-frame img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.hero-slider-controls {
  position: absolute;
  bottom: 6.75rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 10;
  padding: 0.45rem 0.85rem;
  border-radius: var(--pill-radius);
  background: rgba(10, 10, 10, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.hero-slider-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
  padding: 0;
}

.hero-slider-btn:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--black);
}

.hero-slider-dots {
  display: flex;
  gap: 0.35rem;
}

.hero-slider-dot {
  border: none;
  cursor: pointer;
  padding: 0.4rem 0.75rem;
  border-radius: var(--pill-radius);
  background: transparent;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: var(--transition);
  font-family: var(--font);
}

.hero-slider-dot span {
  display: block;
}

.hero-slider-dot.is-active {
  background: var(--orange);
  color: var(--black);
}

.hero-slider .scroll-hint {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}

/* GMP certification section */
.gmp-cert-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.gmp-cert-content .section-title,
.gmp-cert-content .section-desc {
  text-align: left;
  margin-left: 0;
}

.gmp-cert-list {
  list-style: none;
  margin-top: 1.5rem;
}

.gmp-cert-list li {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.5rem 0;
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.gmp-cert-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}

.gmp-cert-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.gmp-cert-badge {
  text-align: center;
  padding: 2.5rem 2rem;
  width: min(100%, 320px);
  border: 2px solid var(--gray);
  background: var(--white);
}

.gmp-cert-badge-icon {
  width: 56px;
  height: auto;
  margin: 0 auto 1rem;
  display: block;
}

.gmp-cert-badge h3 {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--red);
  margin-bottom: 0.35rem;
}

.gmp-cert-badge-sub {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.gmp-cert-badge-loc {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.gmp-cert-badge-seal {
  display: inline-block;
  padding: 0.4rem 1.25rem;
  border-radius: var(--pill-radius);
  background: linear-gradient(135deg, var(--red), var(--orange));
  color: var(--white);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.gmp-cert-note {
  font-size: 0.8125rem;
  color: var(--text-muted);
  text-align: center;
  max-width: 280px;
}

@media (max-width: 768px) {
  .gmp-cert-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 5rem 0 4.5rem;
  }

  .hero-slides {
    min-height: 0;
  }

  .hero-slider-controls {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    margin: 1.5rem auto 0;
    width: fit-content;
    max-width: calc(100% - 2rem);
  }

  .hero-slider .scroll-hint {
    display: none;
  }

  .hero-actions {
    margin-bottom: 0.5rem;
  }

  .hero-actions .btn {
    min-height: 48px;
    padding: 0.75rem 1.35rem;
  }

  .hero-slider-dot {
    padding: 0.35rem 0.55rem;
    font-size: 0.6875rem;
  }

  .hero-slider-btn {
    width: 34px;
    height: 34px;
  }

  .hero-product-orbit {
    width: min(300px, 78vw);
    height: min(300px, 78vw);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-video {
    display: none;
  }

  .hero-product-orbit-ring {
    animation: none;
  }
}

.hero-bg .hero-ambient {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
  will-change: transform;
}

.hero-orb--1 {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, var(--orange) 0%, transparent 70%);
  top: -10%;
  right: -5%;
  animation: orbDrift1 14s ease-in-out infinite;
}

.hero-orb--2 {
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, var(--yellow) 0%, transparent 70%);
  bottom: -15%;
  left: -8%;
  animation: orbDrift2 18s ease-in-out infinite;
}

.hero-orb--3 {
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, var(--red-light) 0%, transparent 70%);
  top: 40%;
  left: 35%;
  animation: orbDrift3 12s ease-in-out infinite;
}

@keyframes orbDrift1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-40px, 30px) scale(1.08); }
  66% { transform: translate(20px, -20px) scale(0.95); }
}

@keyframes orbDrift2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(50px, -40px) scale(1.12); }
}

@keyframes orbDrift3 {
  0%, 100% { transform: translate(0, 0); opacity: 0.4; }
  50% { transform: translate(-30px, 25px); opacity: 0.65; }
}

.hero-mesh {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 20%, transparent 75%);
  animation: meshPulse 6s ease-in-out infinite;
}

@keyframes meshPulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 0.85; }
}

.hero-pill {
  position: absolute;
  width: 28px;
  height: 56px;
  border-radius: 100px;
  opacity: 0.15;
  background: linear-gradient(160deg, var(--yellow), var(--red));
  animation: pillFloat 8s ease-in-out infinite;
}

.hero-pill--1 { top: 18%; left: 12%; animation-delay: 0s; transform: rotate(35deg); }
.hero-pill--2 { top: 65%; right: 18%; animation-delay: -2s; width: 20px; height: 40px; transform: rotate(-25deg); }
.hero-pill--3 { bottom: 22%; left: 42%; animation-delay: -4s; width: 16px; height: 32px; transform: rotate(55deg); }
.hero-pill--4 { top: 30%; right: 35%; animation-delay: -1s; width: 22px; height: 44px; transform: rotate(-40deg); }

@keyframes pillFloat {
  0%, 100% { transform: translateY(0) rotate(var(--pill-rot, 35deg)); opacity: 0.12; }
  50% { transform: translateY(-28px) rotate(calc(var(--pill-rot, 35deg) + 15deg)); opacity: 0.22; }
}

.hero-pill--1 { --pill-rot: 35deg; }
.hero-pill--2 { --pill-rot: -25deg; }
.hero-pill--3 { --pill-rot: 55deg; }
.hero-pill--4 { --pill-rot: -40deg; }

.hero-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255, 255, 255, 0.06) 50%,
    transparent 60%
  );
  animation: heroShine 7s ease-in-out infinite;
}

@keyframes heroShine {
  0%, 100% { left: -100%; }
  45%, 55% { left: 120%; }
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content > * {
  visibility: hidden;
}

.hero.no-js .hero-content > * {
  visibility: visible;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(245, 166, 35, 0.2);
  border: 1px solid rgba(245, 166, 35, 0.45);
  color: var(--yellow);
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.375rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
}

.hero-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.hero-title {
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero-line {
  display: block;
  overflow: hidden;
}

.hero-line--accent {
  background: linear-gradient(90deg, var(--yellow), var(--orange), var(--yellow));
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientText 4s linear infinite;
}

@keyframes gradientText {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.hero h1 span.hero-word-accent {
  color: var(--yellow);
}

.hero-desc {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2.5rem;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  visibility: hidden;
}

.hero.no-js .hero-visual {
  visibility: visible;
}

.hero-image-stack {
  position: relative;
  width: 100%;
  max-width: 440px;
  padding-bottom: 3.5rem;
}

.hero-image-main {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.35);
  border: 2px solid rgba(245, 166, 35, 0.3);
}

.hero-image-accent {
  position: absolute;
  top: -12px;
  right: -16px;
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid var(--orange);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
  animation: accentSpin 12s ease-in-out infinite;
}

@keyframes accentSpin {
  0%, 100% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(8deg) scale(1.05); }
}

.hero-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(245, 166, 35, 0.25);
  border-radius: var(--radius-lg);
  padding: 2rem;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.25);
  position: relative;
}

.hero-card--stats {
  position: absolute;
  bottom: -24px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 2rem);
  max-width: 380px;
  padding: 1.25rem 1.5rem;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(245, 166, 35, 0.5), transparent, rgba(178, 31, 36, 0.4));
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
  animation: borderRotate 6s linear infinite;
}

@keyframes borderRotate {
  to { filter: hue-rotate(360deg); }
}

.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.hero-card--stats .hero-stats {
  margin-top: 0;
}

.stat-item {
  text-align: center;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  transition: transform 0.3s ease, background 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.1);
}

.stat-value {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--yellow);
}

.stat-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 0.25rem;
}

.hero-molecule {
  width: 100%;
  opacity: 0.9;
}

.product-card-image {
  height: 180px;
  overflow: hidden;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-card-image img {
  transform: scale(1.06);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.25rem;
}

.gallery-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/10;
  background: var(--red-dark);
}

.gallery-card--wide {
  grid-row: span 2;
  aspect-ratio: auto;
  min-height: 100%;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-card:hover img {
  transform: scale(1.04);
}

.gallery-card-caption {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(122, 18, 24, 0.9) 0%, transparent 55%);
  color: var(--white);
}

.gallery-card-caption h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.gallery-card-caption p {
  font-size: 0.8125rem;
  opacity: 0.85;
}

.about-banner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  margin-top: 3rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray);
  box-shadow: var(--shadow);
}

.about-banner img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.about-banner-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2.5rem;
  background: var(--gray-light);
}

.about-banner-text h3 {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 0.75rem;
}

.about-banner-text p {
  color: var(--text-muted);
  font-size: 0.9375rem;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-scroll-hint span {
  width: 22px;
  height: 36px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  position: relative;
}

.hero-scroll-hint span::after {
  content: "";
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--orange);
  border-radius: 2px;
  animation: scrollDot 2s ease-in-out infinite;
}

@keyframes scrollDot {
  0%, 100% { top: 6px; opacity: 1; }
  50% { top: 18px; opacity: 0.3; }
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 0.875rem 1.75rem;
  border-radius: var(--pill-radius, 9999px);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--black);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--orange-light), var(--orange));
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(245, 166, 35, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
  border-color: var(--orange);
  background: rgba(245, 166, 35, 0.12);
}

.btn-outline-dark {
  background: var(--white);
  color: var(--red);
  border: 2px solid var(--red);
}

.btn-outline-dark:hover {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(178, 31, 36, 0.25);
}

.btn-teal {
  background: var(--red);
  color: var(--white);
}

.btn-teal:hover {
  background: var(--red-dark);
}

/* ── Cards ── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--white);
  border: 1px solid var(--gray);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
}

.card:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.card-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--red), var(--orange));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--white);
}

.card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 0.75rem;
}

.card p {
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.card--image {
  padding: 0;
  overflow: hidden;
}

.card--image img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.card--image .card-body {
  padding: 1.5rem 2rem 2rem;
}

.card--image h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 0.75rem;
}

/* ── Values ── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.value-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 1.5rem;
  background: var(--gray-light);
  border-radius: var(--radius);
  border-left: 4px solid var(--orange);
  font-weight: 600;
  color: var(--red);
  transition: var(--transition);
}

.value-item:hover {
  background: var(--white);
  box-shadow: var(--shadow);
}

.value-check {
  color: var(--orange);
  font-size: 1.25rem;
  flex-shrink: 0;
}

/* ── Lab Cards ── */
.lab-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.lab-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  max-height: 260px;
  background: var(--red-dark);
}

.lab-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.lab-card:hover img {
  transform: scale(1.05);
}

.lab-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(122, 18, 24, 0.92) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  color: var(--white);
}

.lab-card-overlay h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.lab-card-overlay p {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.75);
}

/* ── Products ── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--gray);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.product-card:hover {
  border-color: var(--red);
  box-shadow: var(--shadow-lg);
}

.product-card-header {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-light) 100%);
  padding: 1.75rem;
  color: var(--white);
}

.product-card-header h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.product-card-header h3 a {
  color: inherit;
  text-decoration: none;
}

.product-card-header h3 a:hover {
  color: var(--yellow);
}

.product-card-image {
  display: block;
  text-decoration: none;
}

.product-list a {
  color: inherit;
  text-decoration: none;
}

.product-list a:hover {
  color: var(--orange-dark);
  text-decoration: underline;
}

.product-card-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}

.product-card-header span {
  font-size: 0.8125rem;
  opacity: 0.8;
}

.product-card-body {
  padding: 1.5rem;
}

.product-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0;
  font-size: 0.875rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--gray-light);
}

.product-list li:last-child {
  border-bottom: none;
}

.product-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── Product Catalog ── */
.catalog-section {
  padding-top: 2.5rem;
}

.catalog-intro {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
}

.catalog-nav-link {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--gray);
  background: var(--white);
  color: var(--text);
  font-family: inherit;
  font-size: 0.8125rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
}

.catalog-nav-link:hover,
.catalog-nav-link.is-active,
.product-filter.is-active {
  border-color: var(--orange);
  background: var(--orange);
  color: var(--white);
}

.product-catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.catalog-section--compact {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.catalog-intro--compact {
  margin-bottom: 1.75rem;
}

.catalog-intro--compact .section-desc {
  margin-bottom: 0;
}

.catalog-intro--compact .catalog-nav {
  margin-top: 1.25rem;
}

.product-catalog-list {
  border: 1px solid var(--gray);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  margin-bottom: 1.5rem;
}

.product-catalog-head,
.product-catalog-row {
  display: grid;
  grid-template-columns: minmax(180px, 1.1fr) minmax(0, 2fr) auto;
  gap: 1rem 1.25rem;
  align-items: center;
  padding: 0.75rem 1rem;
}

.product-catalog-head {
  background: var(--gray-light);
  border-bottom: 1px solid var(--gray);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.product-catalog-row + .product-catalog-row {
  border-top: 1px solid var(--gray-light);
}

.product-catalog-row:hover {
  background: rgba(245, 166, 35, 0.04);
}

.product-catalog-row.is-filtered-out {
  display: none !important;
}

.product-catalog-row-main {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.product-catalog-thumb {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--gray);
  background: var(--gray-light);
}

.product-catalog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-catalog-row-info {
  min-width: 0;
}

.product-badge--inline {
  margin-bottom: 0.2rem;
}

.product-catalog-row-details {
  min-width: 0;
}

.product-catalog-facts {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.product-catalog-facts li + li {
  margin-top: 0.15rem;
}

.product-catalog-facts strong {
  color: var(--text);
  font-weight: 600;
}

.product-catalog-row-actions {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
  justify-self: end;
  min-width: 11rem;
}

.btn-sm {
  font-size: 0.8125rem;
  padding: 0.5rem 1rem;
  white-space: nowrap;
}

.catalog-note--compact {
  padding: 1.25rem;
  margin-top: 0.5rem;
}

.catalog-note--compact h3 {
  font-size: 0.9375rem;
  margin-bottom: 0.25rem;
}

.catalog-note--compact p {
  font-size: 0.8125rem;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .product-catalog-head {
    display: none;
  }

  .product-catalog-row {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    padding: 1rem;
  }

  .product-catalog-row-main {
    flex-direction: column;
    align-items: stretch;
    gap: 0.875rem;
  }

  .product-catalog-thumb {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
    border-radius: 10px;
  }

  .product-catalog-row-actions {
    flex-direction: row;
    align-items: center;
    justify-self: stretch;
  }

  .product-catalog-row-actions .btn {
    flex: 1;
    min-height: 44px;
    justify-content: center;
  }
}

.product-catalog-card {
  background: var(--white);
  border: 1px solid var(--gray);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: var(--transition);
}

.product-catalog-card:hover {
  border-color: var(--red);
  box-shadow: var(--shadow-lg);
}

.product-catalog-card.is-filtered-out {
  display: none !important;
}

.product-catalog-media {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--gray-light);
}

.product-catalog-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.product-catalog-card:hover .product-catalog-media img {
  transform: scale(1.03);
}

.product-catalog-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 0.75rem;
}

.product-badge {
  display: inline-block;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  background: rgba(196, 30, 58, 0.08);
  color: var(--red);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
}

.page-hero .product-badge {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
}

.product-catalog-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 1.35;
}

.product-catalog-title a {
  color: var(--red);
  text-decoration: none;
}

.product-catalog-title a:hover {
  color: var(--orange-dark);
}

.product-catalog-meta {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
  line-height: 1.5;
}

.product-catalog-excerpt {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0.75rem 0 1.25rem;
  flex: 1;
}

.product-catalog-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: auto;
}

.product-catalog-actions .btn {
  font-size: 0.8125rem;
  padding: 0.625rem 1.125rem;
}

.product-catalog-empty {
  margin-bottom: 2rem;
}

.product-detail-layout {
  max-width: 1100px;
  margin: 0 auto;
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 2.5rem;
  align-items: start;
}

.product-detail-featured {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray);
  background: var(--gray-light);
}

.product-detail-featured img {
  width: 100%;
  height: auto;
  display: block;
}

.product-detail-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 0.75rem;
  margin-top: 1rem;
}

.product-detail-gallery-item {
  margin: 0;
  border: 1px solid var(--gray);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
}

.product-detail-gallery-item img {
  display: block;
  width: 100%;
  height: auto;
}

.product-detail-meta {
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--gray-light);
  border: 1px solid var(--gray);
  border-radius: var(--radius-lg);
  margin-bottom: 1.5rem;
}

.product-detail-meta-item {
  display: grid;
  gap: 0.25rem;
}

.product-detail-meta-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--orange-dark);
}

.product-detail-meta-value {
  font-size: 0.9375rem;
  color: var(--text);
  line-height: 1.55;
}

.product-detail-description h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 1rem;
}

.product-detail-description p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 1rem;
}

.product-detail-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gray);
}

@media (max-width: 900px) {
  .product-detail {
    grid-template-columns: 1fr;
  }
}

.catalog-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.625rem;
  margin-top: 1.75rem;
}

.catalog-block {
  background: var(--white);
  border: 1px solid var(--gray);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: var(--shadow);
  scroll-margin-top: 100px;
}

.catalog-block-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem 1.75rem;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-light) 100%);
  color: var(--white);
}

.catalog-block-title {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.catalog-code {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  height: 48px;
  border-radius: var(--pill-radius);
  background: rgba(255, 255, 255, 0.15);
  font-size: 0.875rem;
  font-weight: 800;
  flex-shrink: 0;
}

.catalog-block-title h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.catalog-block-title p {
  font-size: 0.875rem;
  opacity: 0.85;
  margin: 0;
}

.catalog-block-image {
  width: 120px;
  height: 72px;
  border-radius: var(--radius);
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid rgba(255, 255, 255, 0.35);
  display: none;
}

.catalog-block-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.catalog-table-wrap {
  overflow-x: auto;
}

.catalog-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
}

.catalog-table th,
.catalog-table td {
  padding: 1rem 1.5rem;
  text-align: left;
  border-bottom: 1px solid var(--gray);
}

.catalog-table th {
  background: var(--gray-light);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.catalog-table tbody tr:last-child td {
  border-bottom: none;
}

.catalog-table tbody tr:hover {
  background: rgba(245, 166, 35, 0.06);
}

.catalog-table td:first-child {
  font-weight: 600;
  color: var(--red);
}

.catalog-note {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.75rem;
  margin-top: 1rem;
}

.catalog-note h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 0.35rem;
}

.catalog-note p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

.catalog-note .card-icon {
  flex-shrink: 0;
  margin: 0;
}

.catalog-product-showcase {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  padding: 1.25rem 1.5rem 1.5rem;
  background: var(--gray-light);
  border-top: 1px solid var(--gray);
}

.catalog-product-figure {
  margin: 0;
  text-align: center;
}

.catalog-product-figure img {
  width: 100%;
  max-height: 200px;
  object-fit: contain;
  border-radius: var(--radius);
  background: var(--white);
  padding: 0.75rem;
  border: 1px solid var(--gray);
}

.catalog-product-figure figcaption {
  margin-top: 0.625rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--red);
}

@media (min-width: 768px) {
  .catalog-block-image {
    display: block;
  }
}

@media (max-width: 768px) {
  .catalog-product-showcase {
    grid-template-columns: 1fr;
  }
}

/* ── Team ── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.team-card {
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  background: var(--gray-light);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray);
  transition: var(--transition);
}

.team-card:hover {
  background: var(--white);
  box-shadow: var(--shadow);
}

.team-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--orange));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
  overflow: hidden;
}

.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.team-info h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 0.25rem;
}

.team-role {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--orange-dark);
  margin-bottom: 0.75rem;
}

.team-info p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── Facilities ── */
.facility-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.facility-item {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--gray);
  border-radius: var(--radius);
}

.facility-icon {
  width: 48px;
  height: 48px;
  background: rgba(245, 166, 35, 0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange-dark);
  flex-shrink: 0;
}

.facility-item h4 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 0.375rem;
}

.facility-item p {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* ── Partners ── */
.partner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.partner-card {
  text-align: center;
  padding: 3rem 2rem;
  background: var(--gray-light);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray);
  transition: var(--transition);
}

.partner-card:hover {
  background: var(--white);
  border-color: var(--orange);
  box-shadow: var(--shadow-lg);
}

.partner-card .card-icon {
  margin: 0 auto 1.5rem;
}

/* ── Contact ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: var(--red);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}

.contact-info-item h4 {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 0.25rem;
}

.contact-info-item p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.contact-address-line {
  display: block;
}

.contact-map {
  margin-bottom: 1.5rem;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--gray);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 280px;
  border: 0;
}

.contact-brand-logo {
  margin-top: 1.25rem;
}

.contact-brand-logo img {
  max-width: 220px;
  width: 100%;
  height: auto;
}

.footer-address .contact-address-line {
  display: block;
  line-height: 1.5;
  margin-bottom: 0.15rem;
}

.contact-form {
  background: var(--gray-light);
  border: 1px solid var(--gray);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

.contact-form .wpcf7 {
  margin: 0;
}

.contact-form .wpcf7-form {
  margin: 0;
}

.contact-form .wpcf7-form .form-group {
  margin-bottom: 1.25rem;
}

.contact-form .wpcf7-form-control-wrap {
  display: block;
  margin-top: 0.5rem;
}

.contact-form .wpcf7-form input[type="text"],
.contact-form .wpcf7-form input[type="email"],
.contact-form .wpcf7-form textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid var(--gray);
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.9375rem;
  background: var(--white);
  transition: var(--transition);
  color: var(--text);
}

.contact-form .wpcf7-form input:focus,
.contact-form .wpcf7-form textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(196, 30, 58, 0.12);
}

.contact-form .wpcf7-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form .wpcf7-submit {
  width: 100%;
  margin-top: 0.25rem;
  cursor: pointer;
  border: none;
}

.contact-form .wpcf7-spinner {
  margin: 0.75rem auto 0;
  display: block;
}

.contact-form .wpcf7-not-valid-tip {
  color: var(--red);
  font-size: 0.8125rem;
  margin-top: 0.35rem;
}

.contact-form .wpcf7-response-output {
  margin: 1rem 0 0;
  padding: 0.875rem 1rem;
  border-radius: 10px;
  font-size: 0.875rem;
  border: 1px solid var(--gray);
}

.contact-form .wpcf7 form.sent .wpcf7-response-output {
  border-color: #46b450;
  background: #ecf7ed;
  color: #1e4620;
}

.contact-form .wpcf7 form.failed .wpcf7-response-output,
.contact-form .wpcf7 form.invalid .wpcf7-response-output {
  border-color: var(--red);
  background: #fdf0f2;
  color: #7a1024;
}

.contact-form-notice {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--red);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid var(--gray);
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.9375rem;
  background: var(--white);
  transition: var(--transition);
  color: var(--text);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.2);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* ── Page Hero ── */
.page-hero {
  background: linear-gradient(135deg, var(--red-dark), var(--red));
  color: var(--white);
  padding: 4rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero--image {
  background:
    linear-gradient(135deg, rgba(122, 18, 24, 0.88), rgba(178, 31, 36, 0.82)),
    var(--page-hero-image) center / cover no-repeat;
  padding: 5.5rem 0;
}

.page-hero--image .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.page-hero p {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin: 0 auto;
}

/* ── CTA ── */
.cta-banner {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  color: var(--black);
  padding: 4rem 0;
  text-align: center;
}

.cta-banner h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-banner p {
  font-size: 1.0625rem;
  opacity: 0.85;
  margin-bottom: 2rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner .btn {
  background: var(--white);
  color: var(--red);
}

.cta-banner .btn:hover {
  background: var(--gray-light);
  transform: translateY(-1px);
}

/* ── Footer ── */
.footer {
  background: var(--black);
  color: rgba(255, 255, 255, 0.75);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand img {
  height: 52px;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer h4 {
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer-links li {
  margin-bottom: 0.625rem;
}

.footer-links a {
  font-size: 0.875rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--orange);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8125rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(245, 166, 35, 0.15);
  padding: 0.375rem 0.875rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--orange);
}

.bg-light {
  background: var(--gray-light);
}

.bg-white {
  background: var(--white);
}

.bg-cream {
  background: var(--bg-cream);
}

.bg-warm {
  background: var(--bg-warm);
}

.bg-blush {
  background: var(--bg-blush);
}

.bg-sand {
  background: var(--bg-sand);
}

.bg-linen {
  background: var(--bg-linen);
}

.careers-content {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.careers-content p {
  font-size: 1.0625rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.careers-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.careers-filter {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--gray);
  background: var(--white);
  color: var(--text);
  font-family: inherit;
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.careers-filter:hover,
.careers-filter.is-active {
  border-color: var(--orange);
  background: var(--orange);
  color: var(--white);
}

.careers-positions-list {
  border: 1px solid var(--gray);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
}

.careers-list-head,
.career-position-row {
  display: grid;
  grid-template-columns: 140px minmax(160px, 1.1fr) minmax(0, 2fr) auto;
  gap: 1rem 1.25rem;
  align-items: center;
  padding: 1rem 1.25rem;
}

.careers-list-head {
  background: var(--gray-light);
  border-bottom: 1px solid var(--gray);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.career-position-row + .career-position-row {
  border-top: 1px solid var(--gray-light);
}

.career-position-row.is-filtered-out {
  display: none !important;
}

.career-position-row:hover {
  background: rgba(242, 127, 58, 0.04);
}

.career-position-row-division {
  min-width: 0;
}

.career-position-division {
  display: inline-block;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  background: rgba(196, 30, 58, 0.08);
  color: var(--red);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.4;
}

.career-position-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--red);
  margin: 0;
  line-height: 1.35;
}

.career-position-row-summary p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.career-position-details {
  margin-top: 0.5rem;
}

.career-position-details summary {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--orange-dark);
  cursor: pointer;
  list-style: none;
}

.career-position-details summary::-webkit-details-marker {
  display: none;
}

.career-position-details[open] summary {
  margin-bottom: 0.5rem;
}

.career-position-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.career-position-desc p {
  margin-bottom: 0.65rem;
}

.career-position-desc p:last-child {
  margin-bottom: 0;
}

.career-position-row-action {
  justify-self: end;
}

.career-position-apply {
  white-space: nowrap;
  font-size: 0.8125rem;
  padding: 0.625rem 1.125rem;
}

.careers-empty--filtered {
  margin-top: 1.5rem;
}

@media (max-width: 900px) {
  .careers-list-head {
    display: none;
  }

  .career-position-row {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    padding: 1.25rem;
  }

  .career-position-row-action {
    justify-self: start;
  }
}

.careers-empty {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  padding: 3rem 2rem;
  background: var(--gray-light);
  border: 1px dashed var(--gray);
  border-radius: var(--radius-lg);
}

.careers-empty p {
  font-size: 1.0625rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.careers-empty .btn {
  margin-top: 0.5rem;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 3rem;
}

.benefit-item {
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--gray);
  border-radius: var(--radius);
  text-align: center;
}

.benefit-item h4 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--red);
  margin-top: 0.75rem;
}

@media (max-width: 1024px) {
  .hero {
    min-height: auto;
    padding: 5rem 0 6rem;
  }

  .hero-scroll-hint {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-visual {
    order: -1;
  }

  .lab-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-card--wide {
    grid-row: span 1;
    aspect-ratio: 16/10;
    min-height: auto;
  }

  .about-banner {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-brand-logo {
    text-align: center;
  }

  .contact-brand-logo img {
    margin-left: auto;
    margin-right: auto;
    display: block;
  }

  .contact-map iframe {
    height: 240px;
  }
}

@media (min-width: 769px) {
  .nav-shell {
    gap: 1rem;
  }

  #primary-navigation {
    position: static;
    transform: none;
    left: auto;
    width: auto;
    height: auto;
    min-height: 0;
    margin-left: auto;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    background: transparent;
    pointer-events: auto;
    overflow: visible;
  }

  .nav-toggle {
    display: none;
  }

  .nav-backdrop {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
  }

  body.admin-bar .site-header {
    top: var(--wp-admin--admin-bar--height, 46px);
  }

  body {
    padding-top: var(--ethra-nav-height);
  }

  body.nav-open {
    position: fixed;
    width: 100%;
    overflow: hidden;
    left: 0;
    right: 0;
  }

  .ethiopia-stripe {
    display: none;
  }

  .nav-shell {
    position: relative;
    z-index: 1213;
    background: var(--black);
  }

  .nav-logo,
  .nav-toggle {
    position: relative;
    z-index: 1214;
  }

  .nav-backdrop {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: var(--ethra-menu-top);
    background: rgba(0, 0, 0, 0.45);
    z-index: 1204;
    border: 0;
    padding: 0;
    margin: 0;
    cursor: pointer;
  }

  .nav-backdrop.is-visible {
    display: block;
  }

  #primary-navigation {
    display: none;
    position: fixed;
    top: var(--ethra-menu-top);
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: auto;
    min-height: calc(100dvh - var(--ethra-menu-top));
    margin: 0;
    background: rgba(10, 10, 10, 0.98);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1rem 2rem;
    gap: 0;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    z-index: 1205;
  }

  #primary-navigation.open {
    display: flex;
    animation: navPanelIn 0.24s ease;
  }

  @keyframes navPanelIn {
    from {
      opacity: 0;
    }

    to {
      opacity: 1;
    }
  }

  #primary-navigation .nav-menu {
    flex-direction: column;
    width: 100%;
    gap: 0.5rem;
  }

  #primary-navigation .nav-menu > li {
    width: 100%;
  }

  #primary-navigation a {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 52px;
    padding: 0.875rem 1.25rem;
    font-size: 1.0625rem;
    font-weight: 600;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
  }

  #primary-navigation a:hover,
  #primary-navigation a.active {
    background: rgba(245, 166, 35, 0.18);
    border-color: rgba(245, 166, 35, 0.35);
  }

  #primary-navigation a.nav-cta {
    margin-top: 0.5rem;
    min-height: 56px;
    justify-content: center;
    font-size: 1.0625rem;
  }

  .nav-toggle {
    display: block;
  }

  .lab-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .team-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .section {
    padding: 3.5rem 0;
  }
}

/* ── News / Articles ── */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.news-card {
  background: var(--white);
  border: 1px solid var(--gray);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.news-card:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.news-card-media {
  display: block;
  text-decoration: none;
  flex-shrink: 0;
}

.news-card-image {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--gray-light);
}

.news-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.news-card:hover .news-card-image img {
  transform: scale(1.03);
}

.news-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.news-card-date,
.news-hero-date {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--orange-dark);
  margin-bottom: 0.5rem;
}

.news-card-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 1.35;
}

.news-card-title a {
  color: var(--red);
  text-decoration: none;
  transition: var(--transition);
}

.news-card-title a:hover {
  color: var(--orange-dark);
}

.news-card-excerpt {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.25rem;
  flex: 1;
}

.news-card-more {
  align-self: flex-start;
  margin-top: auto;
  font-size: 0.8125rem;
  padding: 0.625rem 1.25rem;
  text-decoration: none;
}

.news-pagination {
  margin-top: 2.5rem;
}

.news-pagination .nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.news-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  height: 2.5rem;
  padding: 0 0.75rem;
  border-radius: var(--pill-radius);
  border: 1px solid var(--gray);
  color: var(--red);
  font-weight: 600;
  text-decoration: none;
}

.news-pagination .page-numbers.current,
.news-pagination .page-numbers:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--black);
}

.news-back {
  display: inline-block;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.news-back:hover {
  color: var(--white);
}

.news-article {
  max-width: 760px;
  margin: 0 auto;
}

.news-article-content {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text);
}

.news-article-content p {
  margin-bottom: 1.25rem;
}

.news-article-content h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--red);
  margin: 2rem 0 0.75rem;
}

.news-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 2.5rem;
  align-items: start;
}

.news-layout--single .news-article {
  max-width: none;
  margin: 0;
}

.news-sidebar {
  position: sticky;
  top: 6rem;
}

.news-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.news-filter {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--gray);
  background: var(--white);
  color: var(--text);
  text-decoration: none;
  font-size: 0.8125rem;
  font-weight: 600;
  transition: var(--transition);
}

.news-filter:hover,
.news-filter.is-active {
  border-color: var(--orange);
  background: var(--orange);
  color: var(--white);
}

.news-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 0.75rem;
}

.news-category-badge {
  display: inline-block;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
}

.news-card .news-category-badge {
  background: rgba(196, 30, 58, 0.08);
  color: var(--red);
  pointer-events: none;
}

.news-widget {
  background: var(--white);
  border: 1px solid var(--gray);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.news-widget-title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 1rem;
}

.news-latest-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.news-latest-item + .news-latest-item {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--gray-light);
}

.news-latest-item a {
  display: block;
  text-decoration: none;
  color: inherit;
}

.news-latest-item a:hover .news-latest-title {
  color: var(--orange-dark);
}

.news-latest-title {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 0.25rem;
  transition: var(--transition);
}

.news-latest-date {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.news-latest-all {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--orange-dark);
  text-decoration: none;
}

.news-latest-all:hover {
  color: var(--red);
}

.news-hero-excerpt {
  max-width: 720px;
  margin-top: 0.75rem;
  font-size: 1.0625rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

.news-article-featured {
  margin-bottom: 2rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.news-article-featured img {
  width: 100%;
  height: auto;
  display: block;
}

.news-article-footer {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gray);
}

.news-article-meta {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.news-article-footer .post-navigation {
  display: grid;
  gap: 0.75rem;
}

.news-article-footer .nav-links {
  display: grid;
  gap: 0.75rem;
}

.news-article-footer .nav-previous a,
.news-article-footer .nav-next a {
  display: block;
  padding: 0.875rem 1rem;
  border: 1px solid var(--gray);
  border-radius: 10px;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  transition: var(--transition);
}

.news-article-footer .nav-previous a:hover,
.news-article-footer .nav-next a:hover {
  border-color: var(--orange);
  color: var(--orange-dark);
}

@media (max-width: 960px) {
  .news-layout {
    grid-template-columns: 1fr;
  }

  .news-sidebar {
    position: static;
  }

  .news-pagination {
    margin-top: 1.5rem;
  }

  .news-pagination .page-numbers:not(.prev):not(.next) {
    display: none;
  }

  .news-pagination .nav-links {
    justify-content: center;
    gap: 0.75rem;
  }

  .news-pagination .page-numbers.prev,
  .news-pagination .page-numbers.next {
    min-width: auto;
    flex: 1;
    max-width: 48%;
    min-height: 48px;
  }
}

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

  .nav-toggle span,
  #primary-navigation.open {
    animation: none;
  }
}
