/* ============================================
   VIRF 2.0 — Shared Components
   ============================================ */

/* === BASE === */
body {
  font-family: var(--font-primary);
  font-size: var(--text-base);
  color: var(--color-dark);
  background-color: var(--color-white);
}

/* === CONTAINER === */
.container {
  width: 100%;
  max-width: var(--container-max);
  /* Fallback longhand pentru iOS Safari <14.5 (înainte de margin-inline/padding-inline). */
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--space-8);
  padding-right: var(--space-8);
  margin-inline: auto;
  padding-inline: var(--space-8);
}
.container--wide {
  max-width: var(--container-wide);
}
.container--narrow {
  max-width: var(--container-narrow);
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-nav);
  padding: var(--space-5) 0;
  /* Tranziții smooth pentru morph-ul în floating pill la scroll */
  transition: background var(--transition-base),
              box-shadow var(--transition-base),
              padding var(--transition-base),
              top var(--transition-base),
              left var(--transition-base),
              right var(--transition-base),
              border-radius var(--transition-base);
}
.nav.nav--scrolled,
body.page-no-hero .nav {
  /* Floating pill — bara devine o capsulă semi-transparentă plutind la 12px de margini.
     Padding vertical redus (space-2) + logo mai mic (44px) → înălțime totală -30%.
     Aplicat mereu pe paginile fără hero (despre-noi etc.) pentru că fundalul alb
     ar face textul alb invizibil. */
  top: 12px;
  left: 12px;
  right: 12px;
  border-radius: 999px;
  background: rgba(10, 22, 40, 0.78);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
  padding: var(--space-2) var(--space-6);
}
/* Pe page-no-hero, logo-ul rămâne mereu small (44px) ca să se potrivească cu pill-ul */
body.page-no-hero .nav__logo img {
  height: 44px;
  width: 44px;
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
}
.nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav__logo img {
  height: 62px;
  width: 62px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--color-white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.25);
  /* Tranziție smooth pentru shrink-ul în starea scrolled */
  transition: height var(--transition-base), width var(--transition-base);
}
/* Logo mai mic + pill mai slim când navul e scrolled (înălțime totală -30%) */
.nav.nav--scrolled .nav__logo img {
  height: 44px;
  width: 44px;
}
/* Global highlight class — brand red */
.hl { color: var(--color-red); font-weight: 800; }

.nav__logo-text {
  font-size: var(--text-xl);
  font-weight: var(--weight-bold);
  color: var(--color-white);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.nav__menu {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}
.nav__item {
  position: relative;
}
.nav__link {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  color: rgba(255,255,255,0.85);
  border-radius: var(--radius-sm);
  transition: color var(--transition-fast), background var(--transition-fast);
  white-space: nowrap;
  position: relative;
}
.nav__link:hover {
  color: var(--color-white);
  background: rgba(255,255,255,0.08);
}
.nav__link--active {
  color: var(--color-white);
}
.nav__link .chevron {
  width: 14px;
  height: 14px;
  transition: transform var(--transition-fast);
}
.nav__item:hover .chevron {
  transform: rotate(180deg);
}

/* Mega Dropdown */
.nav__dropdown {
  position: absolute;
  top: calc(100% + var(--space-3));
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  width: 680px;
  background: var(--color-dark);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  padding: var(--space-4);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-base), transform var(--transition-base), visibility var(--transition-base);
  border: 1px solid rgba(255,255,255,0.08);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.nav__item:hover .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav__mega-item {
  display: block;
  padding: var(--space-5) var(--space-5);
  border-top: 1px solid rgba(255,255,255,0.07);
  transition: background var(--transition-fast);
  border-radius: 6px;
}
.nav__mega-item:hover {
  background: rgba(255,255,255,0.05);
}
.nav__mega-title {
  font-size: var(--text-sm);
  font-weight: 800;
  color: var(--color-red);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-2);
}
.nav__mega-desc {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.45);
  line-height: 1.55;
}

/* Nav CTA */
.nav__cta {
  margin-left: var(--space-4);
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

/* Lang toggle */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  color: rgba(255,255,255,0.6);
}
.lang-toggle button {
  padding: var(--space-1) var(--space-2);
  border-radius: var(--radius-sm);
  color: rgba(255,255,255,0.6);
  transition: color var(--transition-fast);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  font-family: var(--font-primary);
}
.lang-toggle button:hover,
.lang-toggle button.active {
  color: var(--color-white);
}
.lang-toggle .sep {
  color: rgba(255,255,255,0.25);
}

/* Mobile toggle */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
  cursor: pointer;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: transform var(--transition-base), opacity var(--transition-base);
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.nav__mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-dark);
  z-index: calc(var(--z-nav) - 1);
  padding: 100px var(--space-8) var(--space-8);
  overflow-y: auto;
}
.nav__mobile.open {
  display: block;
}
.nav__mobile-link {
  display: block;
  padding: var(--space-4) 0;
  font-size: var(--text-2xl);
  font-weight: var(--weight-bold);
  color: var(--color-white);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav__mobile-sublabel {
  display: block;
  padding: var(--space-3) var(--space-4);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  color: var(--color-gray);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: var(--space-2);
}
.nav__mobile-sublink {
  display: block;
  padding: var(--space-3) var(--space-4);
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.75);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}


/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  font-family: var(--font-primary);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  /* Pill shape — capete semicirculare, coerent cu nav-ul pill */
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-base);
  white-space: nowrap;
  letter-spacing: 0.02em;
  text-decoration: none;
}
.btn--primary {
  background: var(--color-red);
  color: var(--color-white);
  border-color: var(--color-red);
}
.btn--primary:hover {
  background: #a50d25;
  border-color: #a50d25;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(200, 16, 46, 0.35);
}
.btn--outline {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255,255,255,0.5);
}
.btn--outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--color-white);
  transform: translateY(-1px);
}
.btn--outline-dark {
  background: transparent;
  color: var(--color-dark);
  border-color: var(--color-dark);
}
.btn--outline-dark:hover {
  background: var(--color-dark);
  color: var(--color-white);
  transform: translateY(-1px);
}
.btn--lg {
  padding: var(--space-4) var(--space-8);
  font-size: var(--text-base);
}
.btn--sm {
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-xs);
}
.btn-whatsapp {
  background: #25D366;
  color: var(--color-white);
  border-color: #25D366;
  gap: var(--space-3);
}
.btn-whatsapp:hover {
  background: #1ebe5b;
  border-color: #1ebe5b;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
}
.btn-whatsapp svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* ============================================
   SECTION LABELS & HEADINGS
   ============================================ */
.section-label {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-red);
  margin-bottom: var(--space-4);
}
.section-label--light {
  color: rgba(255,255,255,0.6);
}

.section-title {
  font-size: clamp(var(--text-3xl), 4vw, var(--text-5xl));
  font-weight: var(--weight-bold);
  line-height: 1.1;
  color: var(--color-dark);
  letter-spacing: -0.02em;
}
.section-title--light {
  color: var(--color-white);
}

.section-sub {
  font-size: var(--text-lg);
  color: var(--color-gray);
  line-height: 1.7;
  max-width: 600px;
}
.section-sub--light {
  color: rgba(255,255,255,0.7);
}

/* ============================================
   PAGE HERO (for inner pages)
   ============================================ */
.page-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: var(--space-16);
  background: var(--color-dark);
  overflow: hidden;
}
.page-hero__bg {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.35;
}
.page-hero__bg-img {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.page-hero__bg-img--contain {
  object-fit: contain;
  object-position: center right;
}
.page-hero__overlay {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  inset: 0;
  background: linear-gradient(to right, rgba(10,22,40,0.9) 40%, rgba(10,22,40,0.3));
}
.page-hero__overlay--light {
  background: rgba(10,22,40,0.35);
}
/* Modifier — page hero plin pe ecran (în loc de default 50vh).
   svh = "small viewport height" exclude URL bar pe iOS — CTA-ul rămâne mereu vizibil. */
.page-hero--full {
  min-height: 100vh;
  min-height: 100svh;
}
/* Modifier — overlay mai opac (gradient strong) pentru text peste poze luminoase */
.page-hero__overlay--strong {
  background: linear-gradient(to right, rgba(10,22,40,0.95) 50%, rgba(10,22,40,0.3));
}
/* Modifier — overlay solid (fără gradient), pentru anumite pagini */
.page-hero__overlay--solid {
  background: rgba(10,22,40,0.50);
}
.page-hero__content--center {
  text-align: center;
  max-width: 100%;
}
.page-hero__sub--center {
  text-align: center;
  max-width: 560px;
  margin: var(--space-4) auto 0;
}
.page-hero__content {
  position: relative;
  z-index: var(--z-above);
}
.page-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.5);
  margin-bottom: var(--space-6);
}
.page-hero__breadcrumb a:hover {
  color: var(--color-white);
}
.page-hero__breadcrumb .sep {
  color: rgba(255,255,255,0.25);
}
.page-hero__title {
  font-size: clamp(var(--text-4xl), 5vw, var(--text-7xl));
  font-weight: var(--weight-bold);
  color: var(--color-white);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-5);
}
.page-hero__sub {
  font-size: var(--text-xl);
  color: rgba(255,255,255,0.7);
  max-width: 560px;
  line-height: 1.6;
}
.resp-btn-group {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.page-hero__tagline {
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  margin-top: var(--space-8);
}

/* ============================================
   CARDS
   ============================================ */

/* Audience card (fullscreen image + text overlay) */
.audience-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
  cursor: pointer;
  background: var(--color-dark-alt);
  border-radius: var(--radius-lg);
}
.audience-card picture {
  display: block;
  width: 100%;
  height: 100%;
}
.audience-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slower);
}
.audience-card:hover .audience-card__img {
  transform: scale(1.06);
}
.audience-card__overlay {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,0.85) 0%, rgba(10,22,40,0.15) 60%, transparent 100%);
}
.audience-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-8);
}
.audience-card__label {
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-red);
  margin-bottom: var(--space-2);
}
.audience-card__subtitle,
.audience-card__sub {
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  color: rgba(255,255,255,0.6);
  margin-bottom: var(--space-3);
}
.audience-card__title {
  font-size: var(--text-2xl);
  font-weight: var(--weight-bold);
  color: var(--color-white);
  margin-bottom: var(--space-2);
  line-height: 1.2;
}
.audience-card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  color: var(--color-white);
  transition: gap var(--transition-fast);
}
.audience-card:hover .audience-card__link {
  gap: var(--space-3);
}
.audience-card__link svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
}

/* Service card */
.service-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--color-dark-alt);
  cursor: pointer;
}
.service-card__img-wrap {
  overflow: hidden;
  aspect-ratio: 16/10;
  position: relative;
}

/* Fallback aspect-ratio pentru iOS Safari < 15.4 — pe care `aspect-ratio` e ignorat.
   Folosim tehnica padding-bottom % care funcționează pe toate browserele. */
@supports not (aspect-ratio: 1/1) {
  .audience-card {
    height: 0;
    padding-bottom: 125%; /* 5/4 = 125% pentru aspect 4:5 */
  }
  .audience-card > .audience-card__img,
  .audience-card > .audience-card__overlay,
  .audience-card > .audience-card__content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .service-card__img-wrap {
    height: 0;
    padding-bottom: 62.5%; /* 10/16 = 62.5% pentru aspect 16:10 */
  }
  .service-card__img-wrap > .service-card__img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}
.service-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slower);
}
.service-card:hover .service-card__img {
  transform: scale(1.05);
}
.service-card__body {
  padding: var(--space-6);
}
.service-card__tag {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-red);
  margin-bottom: var(--space-3);
}
.service-card__title {
  font-size: var(--text-xl);
  font-weight: var(--weight-bold);
  color: var(--color-white);
  margin-bottom: var(--space-2);
  line-height: 1.2;
}
.service-card__desc {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  margin-bottom: var(--space-5);
}
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  color: var(--color-white);
  transition: gap var(--transition-fast);
}
.service-card:hover .service-card__link {
  gap: var(--space-3);
}
.service-card__link svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
}

/* ============================================
   STATISTICS BAR
   ============================================ */
.stats-bar {
  background: var(--color-dark);
  padding: var(--space-16) 0;
}
.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
  text-align: center;
}
.stats-bar__item {
  padding: var(--space-6);
  border-right: 1px solid rgba(255,255,255,0.08);
}
.stats-bar__item:last-child {
  border-right: none;
}
.stats-bar__number {
  font-size: clamp(var(--text-4xl), 5vw, var(--text-6xl));
  font-weight: var(--weight-bold);
  color: var(--color-white);
  line-height: 1;
  margin-bottom: var(--space-3);
  letter-spacing: -0.03em;
}
.stats-bar__number span {
  color: var(--color-red);
}
.stats-bar__label {
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1.4;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--color-dark);
  padding: var(--space-16) 0 var(--space-8);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-12);
  margin-bottom: var(--space-12);
}
.footer__brand-name {
  font-size: var(--text-xl);
  font-weight: var(--weight-bold);
  color: var(--color-white);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: var(--space-4);
}
.footer__tagline {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  margin-bottom: var(--space-6);
  max-width: 280px;
}
.footer__social {
  display: flex;
  gap: var(--space-3);
}
.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.5);
  transition: background var(--transition-fast), color var(--transition-fast);
}
.footer__social-link:hover {
  background: rgba(255,255,255,0.12);
  color: var(--color-white);
}
.footer__social-link svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}
.footer__col-title {
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: var(--space-5);
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.footer__link {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.6);
  transition: color var(--transition-fast);
}
.footer__link:hover {
  color: var(--color-white);
}
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: var(--space-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}
.footer__copy {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.35);
}
.footer__legal {
  display: flex;
  gap: var(--space-6);
}
.footer__legal-link {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.35);
  transition: color var(--transition-fast);
}
.footer__legal-link:hover {
  color: rgba(255,255,255,0.6);
}

/* WhatsApp floating button */
.whatsapp-float {
  position: fixed;
  bottom: var(--space-8);
  right: var(--space-8);
  z-index: var(--z-overlay);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: var(--radius-full);
  background: #25D366;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}
.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.5);
}
.whatsapp-float svg {
  width: 26px;
  height: 26px;
  fill: var(--color-white);
}
@media (min-width: 769px) {
  .whatsapp-float {
    display: none;
  }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center { text-align: center; }
.text-white  { color: var(--color-white); }
.text-red    { color: var(--color-red); }
.text-gray   { color: var(--color-gray); }

.mt-auto { margin-top: auto; }
.flex    { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-4 { gap: var(--space-4); }
.gap-6 { gap: var(--space-6); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
  }
  .stats-bar__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .container {
    padding-inline: var(--space-5);
  }
  .nav__menu,
  .nav__cta {
    display: none;
  }
  .nav__hamburger {
    display: flex;
  }
  .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .stats-bar__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .whatsapp-float {
    bottom: var(--space-5);
    right: var(--space-5);
  }
}

@media (max-width: 480px) {
  .stats-bar__grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ============================================
   BREADCRUMB
   ============================================ */
.breadcrumb {
  padding: var(--space-4) 0;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--space-6);
  padding-right: var(--space-6);
}
.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: var(--color-gray);
}
.breadcrumb li:not(:last-child)::after {
  content: "›";
  margin-left: var(--space-2);
  color: var(--color-gray);
}
.breadcrumb a {
  color: var(--color-gray);
  text-decoration: none;
}
.breadcrumb a:hover {
  color: var(--color-red);
}
.breadcrumb [aria-current="page"] {
  color: var(--color-dark);
  font-weight: var(--weight-semibold);
}


/* ============================================
   FOCUS STATES (accessibility)
   ============================================ */
:focus-visible {
  outline: 2px solid var(--color-red);
  outline-offset: 2px;
}
a:focus:not(:focus-visible),
button:focus:not(:focus-visible) {
  outline: none;
}


/* ============================================
   SKIP LINK
   ============================================ */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-4);
  padding: var(--space-2) var(--space-4);
  background: var(--color-red);
  color: var(--color-white);
  z-index: 999;
  border-radius: var(--radius-sm);
}
.skip-link:focus {
  top: var(--space-4);
}
