/**
 * FAEL — Swiss-inspired professional UI
 * Red-dominant accents · grid clarity · restrained typography
 * Logo colours preserved on brand assets only
 */

body.theme-fael {
  --fael-black: #111111;
  --fael-red: #e30613;
  --fael-red-dark: #b8050f;
  --fael-red-soft: rgba(227, 6, 19, 0.08);
  --fael-yellow: #fdda24; /* logo only — avoid in UI */
  --fael-white: #ffffff;

  --fael-radius: 2px;
  --fael-radius-md: 4px;
  --fael-radius-lg: 6px;

  --fael-shadow-sm: 0 1px 2px rgba(17, 17, 17, 0.04);
  --fael-shadow: 0 8px 30px rgba(17, 17, 17, 0.06);

  --color-red: var(--fael-red);
  --color-blue: var(--fael-black);
  --ink: var(--fael-black);
  --muted: #5c5c5c;
  --line: #e8e8e8;
  --bg: var(--fael-white);
  --surface: var(--fael-white);
  --surface-2: #f7f7f7;
  --focus: var(--fael-red);
  --brand-panel: #f7f7f7;
  --hairline: #efefef;

  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-display: "Inter", var(--font-body);
  --radius: var(--fael-radius);
  --radius-lg: var(--fael-radius-md);

  --section-pad: clamp(3rem, 6vw, 5rem);
  --container-max: 72rem;
}

body.theme-fael {
  background: var(--bg);
  color: var(--ink);
  font-feature-settings: "kern" 1, "liga" 1;
  -webkit-font-smoothing: antialiased;
}

/* Top accent — single Swiss red rule */
body.theme-fael::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  z-index: 60;
  background: var(--fael-red);
  pointer-events: none;
}

/* Layout rhythm */
body.theme-fael .container {
  max-width: var(--container-max);
}

body.theme-fael .section {
  padding-block: var(--section-pad);
}

body.theme-fael .section-header__title,
body.theme-fael .reveal-title {
  text-transform: none;
  letter-spacing: -0.025em;
  font-weight: 700;
  line-height: 1.08;
}

/* Header */
body.theme-fael .site-header {
  top: 2px;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
  box-shadow: none;
  /* No backdrop-filter on mobile — it traps position:fixed nav inside the header */
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

@media (min-width: 960px) {
  body.theme-fael .site-header {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }
}

body.theme-fael .brand--fael {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
  min-width: 0;
  text-decoration: none;
}

body.theme-fael .brand-mark {
  display: block;
  width: auto;
  height: 32px;
  flex-shrink: 0;
}

body.theme-fael .brand-word {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fael-black);
  line-height: 1;
}

/* Header — logo left, nav + lang + CTA on one row */
@media (min-width: 960px) {
  body.theme-fael .header-inner {
    display: flex;
    align-items: center;
    gap: 1.25rem;
  }

  body.theme-fael .brand--fael {
    flex-shrink: 0;
  }

  body.theme-fael .site-nav {
    flex: 1 1 auto;
    margin-left: auto;
  }

  body.theme-fael .site-nav__inner {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1.25rem;
    width: 100%;
  }

  body.theme-fael .site-nav__tools {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    flex-shrink: 0;
  }

  body.theme-fael .site-nav__tools .lang-switch {
    margin: 0;
  }

  body.theme-fael .site-nav__tools .nav-cta {
    margin-top: 0;
    white-space: nowrap;
  }
}

@media (max-width: 959px) {
  body.theme-fael .header-inner {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 0.5rem;
  }

  body.theme-fael .brand--fael {
    flex: 1 1 auto;
    min-width: 0;
  }

  /* Full-viewport drawer — not clipped by header stacking / filters */
  body.theme-fael .site-header {
    overflow: visible;
    transform: none;
    filter: none;
    perspective: none;
    contain: none;
  }

  body.theme-fael .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    width: min(100%, 20.5rem);
    height: 100%;
    height: 100dvh;
    max-height: 100dvh;
    z-index: 320;
    background: #ffffff;
    border-left: 1px solid var(--line);
    box-shadow: -12px 0 40px rgba(17, 17, 17, 0.12);
    transform: translate3d(100%, 0, 0);
    visibility: hidden;
    pointer-events: none;
  }

  body.theme-fael .site-nav.is-open {
    transform: translate3d(0, 0, 0);
    visibility: visible;
    pointer-events: auto;
  }

  body.theme-fael .nav-backdrop {
    z-index: 310;
  }

  body.theme-fael .nav-toggle {
    z-index: 330;
    flex-shrink: 0;
    border-color: var(--line);
    border-radius: var(--fael-radius);
    background: #ffffff;
    color: var(--fael-black);
    padding: 0.55rem 0.7rem;
  }

  body.theme-fael .nav-toggle[aria-expanded="true"] {
    z-index: 330;
    border-color: var(--fael-red);
    color: var(--fael-red);
  }

  body.theme-fael .site-nav__inner {
    min-height: 100%;
    min-height: 100dvh;
    padding: calc(var(--header-sticky-h, 56px) + 1rem) 1.35rem max(1.5rem, env(safe-area-inset-bottom, 0px));
    gap: 1.25rem;
  }

  body.theme-fael .site-nav__tools {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--line);
  }

  body.theme-fael .site-nav__tools .lang-switch {
    align-self: flex-start;
    margin: 0;
  }

  body.theme-fael .site-nav__tools .nav-cta {
    width: 100%;
    text-align: center;
  }

  body.theme-fael .nav-list a {
    font-size: 1.05rem;
    padding: 0.95rem 0;
  }
}

body.theme-fael .nav-list a {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  text-transform: none;
  color: var(--fael-black);
  padding-bottom: 0.15rem;
  border-bottom: 2px solid transparent;
}

body.theme-fael .nav-list a:hover {
  color: var(--fael-red);
}

body.theme-fael .nav-list a[aria-current="page"] {
  color: var(--fael-red);
  border-bottom-color: var(--fael-red);
  font-weight: 600;
}

body.theme-fael .nav-cta {
  background: var(--fael-red);
  border: 1px solid var(--fael-red);
  color: #ffffff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  text-transform: none;
  border-radius: var(--fael-radius);
  padding: 0.55rem 1.1rem;
}

body.theme-fael .nav-cta:hover {
  background: var(--fael-red-dark);
  border-color: var(--fael-red-dark);
  color: #ffffff;
}

/* Typography */
body.theme-fael .headline-xl,
body.theme-fael .headline-lg,
body.theme-fael h1,
body.theme-fael h2,
body.theme-fael h3 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.025em;
  text-transform: none;
  line-height: 1.1;
  color: var(--fael-black);
}

body.theme-fael .kicker,
body.theme-fael .section-header__eyebrow {
  font-family: var(--font-display);
  color: var(--fael-red);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

body.theme-fael .lead,
body.theme-fael .section-header__lead,
body.theme-fael .hero-lead {
  color: var(--muted);
  line-height: 1.65;
  font-size: 1.05rem;
}

body.theme-fael .section-header__rule {
  width: 3rem;
  height: 2px;
  border-radius: 0;
  background: var(--fael-red);
}

body.theme-fael .reveal-title::after {
  background: var(--fael-red);
  height: 2px;
  border-radius: 0;
}

/* Buttons — Swiss rectangular */
body.theme-fael .btn,
body.theme-fael a.btn,
body.theme-fael button.btn {
  border: 1px solid var(--fael-red);
  background: var(--fael-red);
  color: #ffffff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.01em;
  text-transform: none;
  border-radius: var(--fael-radius);
  padding: 0.7rem 1.25rem;
  box-shadow: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

body.theme-fael .btn:hover,
body.theme-fael a.btn:hover,
body.theme-fael button.btn:hover {
  background: var(--fael-red-dark);
  border-color: var(--fael-red-dark);
  color: #ffffff;
}

body.theme-fael .btn-outline,
body.theme-fael a.btn-outline,
body.theme-fael button.btn-outline {
  background: #ffffff;
  color: var(--fael-black);
  border: 1px solid var(--line);
  border-radius: var(--fael-radius);
  padding: 0.7rem 1.25rem;
}

body.theme-fael .btn-outline:hover,
body.theme-fael a.btn-outline:hover,
body.theme-fael button.btn-outline:hover {
  background: var(--fael-red-soft);
  border-color: var(--fael-red);
  color: var(--fael-red);
}

body.theme-fael .hero-actions .btn,
body.theme-fael .hero-split .hero-actions .btn,
body.theme-fael .hero-slide .hero-actions .btn,
body.theme-fael .fael-hero__btn--primary {
  background: var(--fael-red);
  border: 1px solid var(--fael-red);
  color: #ffffff;
  border-radius: var(--fael-radius);
  box-shadow: none;
}

body.theme-fael .hero-actions .btn:hover,
body.theme-fael .hero-split .hero-actions .btn:hover,
body.theme-fael .hero-slide .hero-actions .btn:hover,
body.theme-fael .fael-hero__btn--primary:hover {
  background: var(--fael-red-dark);
  border-color: var(--fael-red-dark);
  color: #ffffff;
}

body.theme-fael .hero-actions .btn-outline,
body.theme-fael .hero-split .hero-actions .btn-outline,
body.theme-fael .hero-slide .hero-actions .btn-outline,
body.theme-fael .fael-hero__btn--ghost {
  background: #ffffff;
  color: var(--fael-black);
  border: 1px solid var(--line);
  border-radius: var(--fael-radius);
}

body.theme-fael .hero-actions .btn-outline:hover,
body.theme-fael .hero-split .hero-actions .btn-outline:hover,
body.theme-fael .hero-slide .hero-actions .btn-outline:hover,
body.theme-fael .fael-hero__btn--ghost:hover {
  background: var(--fael-red-soft);
  border-color: var(--fael-red);
  color: var(--fael-red);
}

body.theme-fael a:not(.btn):not(.btn-outline):not(.nav-cta):not(.lang-switch__btn):not(.home-quick-nav__item):not(.fael-shop-card__link) {
  color: var(--fael-black);
}

body.theme-fael a:not(.btn):not(.btn-outline):not(.nav-cta):not(.lang-switch__btn):not(.home-quick-nav__item):not(.fael-shop-card__link):hover {
  color: var(--fael-red);
}

/* Quick nav */
body.theme-fael .home-quick-nav {
  border-top: 1px solid var(--line);
  background: #ffffff;
}

body.theme-fael .home-quick-nav__inner {
  gap: 0.5rem;
  padding: 0.6rem clamp(1rem, 3vw, 1.25rem);
  flex-wrap: wrap;
  align-items: center;
}

body.theme-fael .home-quick-nav__item {
  flex: 0 1 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.5rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: var(--fael-radius);
  background: #ffffff;
  color: var(--fael-black);
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

body.theme-fael .home-quick-nav__item:hover {
  background: var(--fael-red-soft);
  color: var(--fael-red);
  border-color: rgba(227, 6, 19, 0.25);
}

body.theme-fael .home-quick-nav__item--primary {
  background: var(--fael-red);
  color: #ffffff;
  border-color: var(--fael-red);
}

body.theme-fael .home-quick-nav__item--primary:hover {
  background: var(--fael-red-dark);
  color: #ffffff;
  border-color: var(--fael-red-dark);
}

body.theme-fael .fael-hero-viewport .home-quick-nav__item {
  font-size: 0.78rem;
  padding: 0.48rem 0.8rem;
}

body.theme-fael .fael-hero-viewport .home-quick-nav__item--primary {
  box-shadow: none;
}

/* Stats */
body.theme-fael .stats-strip {
  background: var(--fael-black);
  color: #ffffff;
  border-block: none;
  padding-block: clamp(2rem, 4vw, 2.75rem);
}

body.theme-fael .stats-strip__item {
  padding: 0.5rem 0;
  border-left: 2px solid var(--fael-red);
  padding-left: 1rem;
}

body.theme-fael .stats-strip__value {
  color: #ffffff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  letter-spacing: -0.01em;
  text-transform: none;
}

body.theme-fael .stats-strip__label {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Footer — white, structured, professional */
body.theme-fael .site-footer.footer-pro.footer-pro--fael {
  background: var(--fael-white);
  color: var(--muted);
  border-top: 1px solid var(--line);
  padding-bottom: 0;
}

body.theme-fael .footer-pro--fael .footer-pro__accent {
  height: 3px;
  background: var(--fael-red);
}

body.theme-fael .footer-pro--fael .footer-pro__grid {
  padding-block: clamp(3rem, 5vw, 4.25rem);
}

@media (min-width: 768px) {
  body.theme-fael .footer-pro__grid--fael {
    grid-template-columns: minmax(0, 1.35fr) repeat(4, minmax(0, 1fr));
    gap: 2.5rem 2rem;
    align-items: start;
  }
}

body.theme-fael .footer-pro__brand-col {
  max-width: 22rem;
}

body.theme-fael .footer-pro__brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.75rem;
  text-decoration: none;
  color: var(--fael-black);
}

body.theme-fael .footer-pro__brand-lockup:hover {
  color: var(--fael-red);
}

body.theme-fael .footer-pro__mark {
  display: block;
  width: 28px;
  height: auto;
  flex-shrink: 0;
}

body.theme-fael .footer-pro__word {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

body.theme-fael .footer-pro--fael .footer-pro__tagline {
  margin: 0 0 0.65rem;
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.45;
  color: var(--muted);
  max-width: 28ch;
}

body.theme-fael .footer-pro--fael .footer-lead {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--muted);
  max-width: 34ch;
}

body.theme-fael .footer-pro__contact-list {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

body.theme-fael .footer-pro__contact-list li {
  display: grid;
  gap: 0.12rem;
  margin: 0;
}

body.theme-fael .footer-pro__contact-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8a8a8a;
}

body.theme-fael .footer-pro__contact-list a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--fael-black);
  text-decoration: none;
}

body.theme-fael .footer-pro__contact-list a:hover {
  color: var(--fael-red);
}

body.theme-fael .footer-pro__cta {
  margin-top: 1.35rem;
  padding: 0.62rem 1.15rem;
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  background: var(--fael-red);
  border: 1px solid var(--fael-red);
  border-radius: var(--fael-radius);
  color: #ffffff;
}

body.theme-fael .footer-pro__cta:hover {
  background: var(--fael-red-dark);
  border-color: var(--fael-red-dark);
  color: #ffffff;
}

body.theme-fael .footer-pro--fael .footer-pro__social {
  margin-top: 1.35rem;
  gap: 0.5rem;
}

body.theme-fael .footer-pro--fael .footer-pro__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--fael-radius);
  color: var(--fael-black);
  background: var(--fael-white);
  transition: border-color var(--t-fast), color var(--t-fast), background var(--t-fast);
}

body.theme-fael .footer-pro--fael .footer-pro__social a:hover {
  border-color: var(--fael-red);
  color: var(--fael-red);
  background: var(--fael-red-soft);
}

body.theme-fael .footer-pro--fael .footer-pro__heading {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.68rem;
  color: var(--fael-black);
  border-bottom: none;
  padding-bottom: 0;
  margin: 0 0 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

body.theme-fael .footer-pro--fael .footer-pro__heading::before {
  content: "";
  display: block;
  width: 1.25rem;
  height: 2px;
  background: var(--fael-red);
  flex-shrink: 0;
}

body.theme-fael .footer-pro--fael .footer-text {
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.9rem;
  margin: 0;
}

body.theme-fael .footer-pro--fael li {
  margin-bottom: 0.45rem;
}

body.theme-fael .footer-pro--fael li a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--fael-black);
  text-decoration: none;
  border-bottom: none;
  padding-bottom: 0;
}

body.theme-fael .footer-pro--fael li a:hover {
  color: var(--fael-red);
}

body.theme-fael .footer-pro__note {
  margin: 1rem 0 0;
  padding-top: 0.85rem;
  border-top: 1px solid var(--hairline);
  font-size: 0.78rem;
  line-height: 1.5;
  color: #8a8a8a;
}

body.theme-fael .footer-pro__route {
  margin: 0.75rem 0 0;
}

body.theme-fael .footer-pro__route a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--fael-red);
  text-decoration: none;
}

body.theme-fael .footer-pro__route a:hover {
  text-decoration: underline;
}

body.theme-fael .footer-pro__area {
  margin-top: 0.85rem;
  font-size: 0.8rem;
  line-height: 1.5;
  color: #8a8a8a;
}

body.theme-fael .footer-pro--fael .footer-pro__bar {
  border-top: 1px solid var(--line);
  background: #ffffff;
}

body.theme-fael .footer-pro--fael .footer-pro__bottom {
  border-top: 0;
  background: transparent;
  padding: 1rem 0 calc(1.15rem + env(safe-area-inset-bottom, 0px));
  align-items: center;
  gap: 0.75rem 1.75rem;
  color: #6b6b6b;
  font-size: 0.78rem;
  letter-spacing: 0.01em;
}

body.theme-fael .footer-pro__copy {
  margin: 0;
  color: #6b6b6b;
  font-weight: 400;
}

body.theme-fael .footer-pro__copy a {
  color: var(--fael-black);
  font-weight: 600;
  text-decoration: none;
}

body.theme-fael .footer-pro__copy a:hover {
  color: var(--fael-red);
}

body.theme-fael .footer-pro--fael .footer-pro__bottom-note {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  justify-content: flex-end;
  max-width: none;
  text-align: right;
  margin: 0;
}

body.theme-fael .footer-pro--fael .footer-pro__bottom-note a,
body.theme-fael .footer-pro--fael .footer-pro__bottom-note .footer-cookie-reset {
  appearance: none;
  -webkit-appearance: none;
  color: #6b6b6b;
  text-decoration: none !important;
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.01em;
  background: none;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 0.2rem 0;
  margin: 0;
  cursor: pointer;
  opacity: 1;
}

body.theme-fael .footer-pro--fael .footer-pro__bottom-note a + a,
body.theme-fael .footer-pro--fael .footer-pro__bottom-note a + .footer-cookie-reset,
body.theme-fael .footer-pro--fael .footer-pro__bottom-note .footer-cookie-reset + a {
  margin-left: 0.85rem;
  padding-left: 0.85rem;
  border-left: 1px solid var(--line);
}

body.theme-fael .footer-pro--fael .footer-pro__bottom-note a:hover,
body.theme-fael .footer-pro--fael .footer-pro__bottom-note .footer-cookie-reset:hover {
  color: var(--fael-red);
  text-decoration: none !important;
}

@media (max-width: 767px) {
  body.theme-fael .footer-pro__grid--fael {
    gap: 2rem;
  }

  body.theme-fael .footer-pro__brand-col {
    max-width: none;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--hairline);
  }
}

@media (max-width: 640px) {
  body.theme-fael .footer-pro--fael .footer-pro__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    padding-top: 1.05rem;
  }

  body.theme-fael .footer-pro--fael .footer-pro__bottom-note {
    justify-content: flex-start;
    text-align: left;
    row-gap: 0.45rem;
  }

  body.theme-fael .footer-pro--fael .footer-pro__bottom-note a + a,
  body.theme-fael .footer-pro--fael .footer-pro__bottom-note a + .footer-cookie-reset,
  body.theme-fael .footer-pro--fael .footer-pro__bottom-note .footer-cookie-reset + a {
    margin-left: 0.65rem;
    padding-left: 0.65rem;
  }
}

/* Language switcher — segmented control */
.lang-switch {
  display: inline-flex;
  align-items: stretch;
  border: 1px solid var(--line);
  border-radius: var(--fael-radius);
  margin-left: auto;
  margin-right: 0.5rem;
  overflow: hidden;
  background: #ffffff;
}

.lang-switch__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.25rem;
  padding: 0.38rem 0.55rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  color: var(--muted);
  background: transparent;
  border-right: 1px solid var(--line);
}

.lang-switch__btn:last-child {
  border-right: 0;
}

.lang-switch__btn.is-active {
  background: var(--fael-red);
  color: #ffffff;
}

.lang-switch__btn:hover {
  background: var(--fael-red-soft);
  color: var(--fael-red);
}

.lang-switch__btn.is-active:hover {
  background: var(--fael-red-dark);
  color: #ffffff;
}


@media (min-width: 960px) {
  body.theme-fael .lang-switch__btn {
    min-width: 2.1rem;
    padding: 0.42rem 0.5rem;
  }
}

/* Process */
.fael-process-section {
  background: #ffffff;
}

.fael-process {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

@media (min-width: 900px) {
  .fael-process {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
}

.fael-process__step {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: 1.35rem;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--fael-radius-md);
  box-shadow: none;
}

.fael-process__num {
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  background: var(--fael-red-soft);
  border: 1px solid rgba(227, 6, 19, 0.15);
  border-radius: var(--fael-radius);
}

.fael-process__num-value {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--fael-red);
}

.fael-process__title {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--fael-black);
}

.fael-process__desc {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--muted);
}

.fael-process__step--complete {
  border-color: rgba(227, 6, 19, 0.35);
  background: var(--fael-red-soft);
}

.fael-process__step--complete .fael-process__num {
  background: var(--fael-red);
  border-color: var(--fael-red);
}

.fael-process__step--complete .fael-process__num-value {
  color: #ffffff;
}

.fael-process__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0.5rem 0 0;
  padding: 0.3rem 0.65rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: none;
  background: var(--fael-red);
  color: #ffffff;
  border-radius: var(--fael-radius);
}

/* Lead band */
.fael-lead-band {
  padding-block: clamp(2.75rem, 6vw, 4rem);
  background: var(--surface-2);
  color: var(--fael-black);
  border-block: 1px solid var(--line);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.fael-lead-band__inner {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .fael-lead-band__inner {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 2.5rem;
  }
}

.fael-lead-band__eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fael-red);
}

.fael-lead-band__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.65rem, 4vw, 2.35rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  text-transform: none;
  max-width: 20ch;
}

.fael-lead-band__desc {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--muted);
  max-width: 46ch;
}

.fael-lead-band__note {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
}

.fael-lead-band__action--mobile {
  margin-top: 1.25rem;
}

.fael-lead-band__action--desktop {
  display: none;
}

@media (min-width: 900px) {
  .fael-lead-band__action--mobile {
    display: none;
  }

  .fael-lead-band__action--desktop {
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
}

.fael-lead-band__cta {
  white-space: nowrap;
  background: var(--fael-red);
  border-color: var(--fael-red);
  color: #ffffff;
}

.fael-lead-band__cta:hover {
  background: var(--fael-red-dark);
  border-color: var(--fael-red-dark);
  color: #ffffff;
}

/* Homepage bottom CTA (replaces legacy .cta-band on FAEL) */
.fael-cta-band {
  margin-top: 0;
  padding-block: clamp(2.75rem, 6vw, 4rem);
  background: var(--fael-black);
  color: #ffffff;
  position: relative;
  z-index: 2;
  isolation: isolate;
}

.map-section + .fael-cta-band {
  margin-top: 0;
}

.fael-cta-band + .site-footer.footer-pro.footer-pro--fael {
  border-top: 0;
  margin-top: 0;
}

.fael-cta-band__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.15rem;
}

.fael-cta-band__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3.5vw, 2.15rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  max-width: 24ch;
}

body.theme-fael .fael-cta-band__title {
  color: #ffffff;
}

.fael-cta-band__lead {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
  max-width: 46ch;
}

.fael-cta-band__btn {
  margin-top: 0.35rem;
  background: var(--fael-red);
  border-color: var(--fael-red);
  color: #ffffff;
}

.fael-cta-band__btn:hover {
  background: var(--fael-red-dark);
  border-color: var(--fael-red-dark);
  color: #ffffff;
}

/* Dark sections */
body.theme-fael .section.fael-section-dark,
body.theme-fael .fael-section-dark,
body.theme-fael .partners-section.fael-section-dark,
body.theme-fael .quality-trust.fael-section-dark {
  background: var(--fael-black);
  color: #ffffff;
  border-top-color: rgba(255, 255, 255, 0.08);
}

body.theme-fael .fael-section-dark .section-header__eyebrow {
  color: var(--fael-red);
}

body.theme-fael .fael-section-dark .section-header__title,
body.theme-fael .fael-section-dark h2,
body.theme-fael .fael-section-dark h3 {
  color: #ffffff;
}

body.theme-fael .fael-section-dark .section-header__lead,
body.theme-fael .fael-section-dark .partners-section__footnote {
  color: rgba(255, 255, 255, 0.78);
}

body.theme-fael .fael-section-dark .quality-trust__card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--fael-radius-md);
  padding: 1.25rem 1.15rem;
  color: #ffffff;
}

body.theme-fael .fael-section-dark .quality-trust__card h3 {
  color: #ffffff;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0;
  text-transform: none;
}

body.theme-fael .fael-section-dark .quality-trust__card p {
  color: rgba(255, 255, 255, 0.78);
}

body.theme-fael .fael-section-dark .quality-trust__icon {
  color: var(--fael-red);
}

/* Misc */
body.theme-fael .site-nav {
  background: #ffffff;
}

body.theme-fael .nav-backdrop {
  background: rgba(17, 17, 17, 0.35);
}

body.theme-fael .trust-strip {
  background: var(--surface-2);
  border-block: 1px solid var(--line);
}

body.theme-fael .section:not(.fael-section-dark) {
  background: transparent;
}

body.theme-fael .page-hero--cover .container {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--fael-radius-md);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  box-shadow: var(--fael-shadow-sm);
}

body.theme-fael .tag--brand {
  background: var(--fael-red-soft);
  color: var(--fael-red);
  border: 1px solid rgba(227, 6, 19, 0.2);
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.68rem;
  border-radius: var(--fael-radius);
}

body.theme-fael .tag {
  border-radius: var(--fael-radius);
}

body.theme-fael .filter-pill {
  border-radius: var(--fael-radius);
  border: 1px solid var(--line);
  font-weight: 500;
}

body.theme-fael .filter-pill.is-active {
  background: var(--fael-red);
  border-color: var(--fael-red);
  color: #ffffff;
}

body.theme-fael .filter-pill:hover {
  border-color: var(--fael-red);
  color: var(--fael-red);
}

body.theme-fael .page-cta-panel {
  border-top: 1px solid var(--line);
  padding-top: 2rem;
}

body.theme-fael .wizard-step-label.is-current {
  border-bottom-color: var(--fael-red);
  color: var(--fael-red);
}

body.theme-fael .product-row__media img,
body.theme-fael .showcase-slide__media img {
  border: 1px solid var(--line);
  border-radius: var(--fael-radius-md);
  object-fit: cover;
}

body.theme-fael .flat-slider__arrow {
  border-radius: var(--fael-radius);
  border: 1px solid var(--line);
}

body.theme-fael .flat-slider__arrow:hover {
  border-color: var(--fael-red);
  color: var(--fael-red);
}

body.theme-fael .cookie-banner {
  border-top: 2px solid var(--fael-red);
}

body.theme-fael .cookie-banner .btn {
  border-radius: var(--fael-radius);
}

/* Contact wizard */
body.theme-fael .wizard--pro {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

body.theme-fael .wizard-step-label {
  border-radius: var(--fael-radius);
  font-weight: 500;
}

body.theme-fael .wizard-step-label.is-current {
  color: var(--fael-red);
  font-weight: 600;
}

body.theme-fael .form-field input:focus,
body.theme-fael .form-field select:focus,
body.theme-fael .form-field textarea:focus {
  border-color: var(--fael-red);
  box-shadow: 0 0 0 3px var(--fael-red-soft);
}

/* Showcase / sliders */
body.theme-fael .showcase-slide {
  border: 1px solid var(--line);
  border-radius: var(--fael-radius-md);
  overflow: hidden;
  background: #fff;
}

body.theme-fael .showcase-slide__body h3 {
  font-weight: 600;
  text-transform: none;
  letter-spacing: -0.02em;
}

body.theme-fael .showcase-slide__link {
  color: var(--fael-red);
  font-weight: 600;
}

body.theme-fael .partner-tile {
  border-radius: var(--fael-radius-md);
  border: 1px solid var(--line);
}

body.theme-fael .gallery-item {
  border-radius: var(--fael-radius-md);
  overflow: hidden;
}

/* Homepage portfolio teaser (Agotec-inspired) */
body.theme-fael .fael-portfolio-teaser {
  background: var(--surface-2);
  border-block: 1px solid var(--line);
  padding-block: clamp(2.5rem, 5vw, 3.5rem);
}

body.theme-fael .fael-portfolio-teaser__head {
  max-width: 38rem;
  margin-bottom: 1.75rem;
}

body.theme-fael .fael-portfolio-teaser__title {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

body.theme-fael .fael-portfolio-teaser__lead {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

body.theme-fael .fael-portfolio-teaser__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
}

body.theme-fael .fael-portfolio-teaser__stat {
  display: flex;
  align-items: baseline;
  gap: 0.65rem;
  padding-left: 0.85rem;
  border-left: 3px solid var(--fael-red);
}

body.theme-fael .fael-portfolio-teaser__stat-num {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--fael-black);
  line-height: 1;
}

body.theme-fael .fael-portfolio-teaser__stat-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted);
}

/* Homepage product grid */
body.theme-fael .home-products {
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}

body.theme-fael .home-products__header {
  margin-bottom: 1.5rem;
}

body.theme-fael .fael-shop-grid--home {
  grid-template-columns: 1fr;
}

@media (min-width: 720px) {
  body.theme-fael .fael-shop-grid--home {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Tags — override legacy underline pills from brand-ui.css */
body.theme-fael .tag,
body.theme-fael .showcase-slide__body .tag,
body.theme-fael .product-row__body .tag {
  display: inline-block;
  width: auto;
  margin: 0 0.35rem 0.35rem 0;
  padding: 0.22rem 0.5rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-radius: var(--fael-radius);
}

body.theme-fael .tag--brand {
  color: var(--fael-red);
  background: var(--fael-red-soft);
  border-color: rgba(227, 6, 19, 0.2);
}

body.theme-fael .showcase-slide__cat {
  color: var(--fael-red);
  font-weight: 600;
  letter-spacing: 0.1em;
}

body.theme-fael .showcase-slide__body .tag:not(.tag--brand) {
  text-transform: none;
  font-size: 0.78rem;
  letter-spacing: 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-left: 2px solid var(--fael-red);
  border-radius: 0;
  padding: 0 0 0 0.5rem;
  margin: 0 0 0.65rem;
  display: block;
  width: fit-content;
  max-width: 100%;
}

body.theme-fael .showcase-slide__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: auto;
  padding-top: 1rem;
  font-weight: 600;
  color: var(--fael-red);
  border: 0;
  text-decoration: none;
}

body.theme-fael .showcase-slide__link:hover {
  color: var(--fael-red-dark);
}

body.theme-fael .section-header--row .section-header__aside {
  align-self: end;
}

/* Quick nav — full width bar, even spacing */
body.theme-fael .home-quick-nav__inner {
  justify-content: flex-start;
}

@media (min-width: 700px) {
  body.theme-fael .home-quick-nav__inner {
    justify-content: center;
  }
}

body.theme-fael .quality-trust.fael-section-dark {
  margin-top: 0;
  border-top: none;
}

/* Craftsmanship rail — horizontal detail showcase */
body.theme-fael .fael-craft {
  background: #ffffff;
  border-block: 1px solid var(--line);
  padding-block: clamp(2.75rem, 5vw, 4rem);
}

body.theme-fael .fael-craft__rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(14.5rem, 17rem);
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

body.theme-fael .fael-craft__card {
  margin: 0;
  scroll-snap-align: start;
  background: var(--surface-2);
  border: 1px solid var(--line);
}

body.theme-fael .fael-craft__media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #ececec;
}

body.theme-fael .fael-craft__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

body.theme-fael .fael-craft__card:hover .fael-craft__media img {
  transform: scale(1.04);
}

body.theme-fael .fael-craft__cap {
  padding: 0.85rem 0.95rem 1.05rem;
}

body.theme-fael .fael-craft__index {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--fael-red);
  margin-bottom: 0.35rem;
}

body.theme-fael .fael-craft__name {
  margin: 0 0 0.3rem;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--fael-black);
}

body.theme-fael .fael-craft__text {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--muted);
}

/* Atelier / process grid — collage on all breakpoints */
body.theme-fael .fael-atelier {
  background: var(--surface-2);
  padding-block: clamp(2.5rem, 5vw, 4.5rem);
}

body.theme-fael .fael-atelier__grid {
  display: grid;
  gap: 0.45rem;
  grid-template-columns: 1.2fr 1fr 1fr;
  grid-template-rows: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 0.85fr);
  height: min(72vw, 22.5rem);
  max-height: 22.5rem;
}

body.theme-fael .fael-atelier__item--feature {
  grid-column: 1 / span 2;
  grid-row: 1 / span 2;
}

body.theme-fael .fael-atelier__item {
  margin: 0;
  position: relative;
  overflow: hidden;
  background: #111;
  min-height: 0;
  height: 100%;
}

body.theme-fael .fael-atelier__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 0;
  transition: transform 0.5s ease;
}

body.theme-fael .fael-atelier__item--feature img {
  min-height: 0;
}

body.theme-fael .fael-atelier__item:hover img {
  transform: scale(1.03);
}

body.theme-fael .fael-atelier__item figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.7rem 0.75rem 0.65rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.72));
  color: #fff;
}

/* Small tiles: image-only collage on narrow screens */
body.theme-fael .fael-atelier__item:not(.fael-atelier__item--feature) figcaption {
  display: none;
}

body.theme-fael .fael-atelier__item--feature figcaption p {
  display: none;
}

body.theme-fael .fael-atelier__item h3 {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.2;
}

body.theme-fael .fael-atelier__item p {
  margin: 0.2rem 0 0;
  font-size: 0.78rem;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.82);
}

@media (min-width: 700px) {
  body.theme-fael .fael-atelier__grid {
    gap: 0.75rem;
    grid-template-columns: 1.35fr 1fr 1fr;
    grid-template-rows: minmax(11rem, 1fr) minmax(11rem, 1fr);
    height: min(52vw, 32rem);
    max-height: 32rem;
  }

  body.theme-fael .fael-atelier__item--feature {
    grid-column: 1;
    grid-row: 1 / span 2;
  }

  body.theme-fael .fael-atelier__item:nth-child(n + 6) {
    display: none;
  }

  body.theme-fael .fael-atelier__item figcaption {
    display: block;
    padding: 1.25rem 1.15rem 1.1rem;
  }

  body.theme-fael .fael-atelier__item--feature figcaption p {
    display: block;
  }

  body.theme-fael .fael-atelier__item h3 {
    margin: 0 0 0.25rem;
    font-size: 1.05rem;
  }

  body.theme-fael .fael-atelier__item p {
    font-size: 0.85rem;
    line-height: 1.45;
  }
}

@media (min-width: 1100px) {
  body.theme-fael .fael-atelier__grid {
    height: 34rem;
    max-height: 34rem;
  }
}

@media (max-width: 419px) {
  body.theme-fael .fael-atelier__grid {
    gap: 0.35rem;
    height: min(88vw, 20rem);
    max-height: 20rem;
  }

  body.theme-fael .fael-atelier__item--feature figcaption {
    padding: 0.55rem 0.55rem 0.5rem;
  }

  body.theme-fael .fael-atelier__item h3 {
    font-size: 0.78rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.theme-fael .fael-craft__media img,
  body.theme-fael .fael-atelier__item img {
    transition: none;
  }
}

/* ——— Mobile / responsive: sliders, craft rail, nav safety ——— */
@media (max-width: 959px) {
  body.theme-fael .flat-slider__viewport {
    touch-action: pan-y;
    -webkit-user-select: none;
    user-select: none;
  }

  body.theme-fael .flat-slider__track {
    touch-action: pan-y;
  }

  body.theme-fael .flat-slider--peek .flat-slider__slide {
    flex: 0 0 min(86%, 17.5rem);
    margin-right: 0.7rem;
  }

  body.theme-fael .flat-slider__arrow {
    width: 2.5rem;
    height: 2.5rem;
  }

  body.theme-fael .flat-slider__bar {
    gap: 0.85rem;
    padding-top: 0.95rem;
  }

  body.theme-fael .flat-slider--visual .flat-slider__viewport,
  body.theme-fael .flat-slider--projects .flat-slider__viewport {
    border-radius: var(--fael-radius-md);
  }

  body.theme-fael .showcase-slide__media img,
  body.theme-fael .product-row__media img {
    width: 100%;
    height: auto;
    max-height: none;
  }

  body.theme-fael .fael-craft__rail {
    grid-auto-columns: minmax(12.5rem, 78vw);
    gap: 0.75rem;
    padding-inline: 0.1rem;
    scroll-padding-inline: 0.1rem;
  }

  body.theme-fael .section-header h2,
  body.theme-fael .section-header .reveal-title {
    font-size: clamp(1.45rem, 6.5vw, 2rem);
  }

  body.theme-fael .page-hero--cover .container {
    padding: 1.25rem 1.1rem;
  }
}

@media (max-width: 640px) {
  body.theme-fael .flat-slider--peek .flat-slider__slide {
    flex: 0 0 88%;
    margin-right: 0.65rem;
  }

  body.theme-fael .flat-slider__count {
    font-size: 0.72rem;
  }

  body.theme-fael .home-quick-nav__item {
    font-size: 0.75rem;
    padding: 0.7rem 0.55rem;
  }
}

