/* ==========================================================================
   HANSE TABAK — Stylesheet
   Premium, hanseatisches Designsystem · Navy + Brass + Sand
   Aufbau: Tokens · Base · Utilities · Buttons · Topbar · Nav · Hero ·
   Stats · Sections · Audience · USP · Benefits · Sortiment · Process ·
   Standorte · Testimonials · CTA · News · FAQ · Forms · Contact ·
   Footer · Cookie · Toast · BackToTop · Legal · Reveal · Responsive
   ========================================================================== */

/* ============================ DESIGN TOKENS ============================ */
:root {
  /* Brand */
  --navy:        #0b2a45;   /* primärblau – Headlines, dunkle Flächen */
  --navy-700:    #103a5c;   /* helleres Navy */
  --navy-800:    #0a2540;
  --navy-deep:   #061a2c;   /* tiefstes Navy – Footer, Hero */
  --brass:       #b88a46;   /* Akzent / CTA */
  --brass-dark:  #976f33;
  --brass-light: #d8b878;
  --brass-glow:  rgba(184,138,70,.16);

  /* Neutrals (light theme) */
  --paper:       #ffffff;
  --cream:       #faf7f1;   /* sehr helle Sektionen */
  --sand:        #f4eee3;   /* warme Sektionen */
  --sand-deep:   #eae0cf;
  --ink:         #16242f;   /* Fließtext */
  --ink-soft:    #475866;   /* gedämpfter Text */
  --ink-faint:   #7c8c98;   /* feine Hinweise */
  --line:        rgba(11,42,69,.12);
  --line-soft:   rgba(11,42,69,.07);
  --white:       #ffffff;

  /* On-dark neutrals */
  --d-text:      #cdd9e3;
  --d-muted:     #8aa0b2;
  --d-faint:     #5b7286;
  --d-line:      rgba(255,255,255,.10);

  /* Feedback */
  --ok:          #2f9e6f;
  --err:         #d2543f;

  /* Type */
  --serif: 'Fraunces', 'Playfair Display', Georgia, 'Times New Roman', serif;
  --sans:  'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  /* Radius */
  --r:     8px;
  --r-lg:  16px;
  --r-xl:  26px;
  --r-full: 999px;

  /* Shadow */
  --sh-sm: 0 2px 8px rgba(11,42,69,.06);
  --sh-md: 0 12px 32px rgba(11,42,69,.09);
  --sh-lg: 0 26px 60px rgba(11,42,69,.14);
  --sh-brass: 0 10px 28px rgba(184,138,70,.28);

  /* Motion */
  --ease:     .3s cubic-bezier(.4,0,.2,1);
  --ease-out: .55s cubic-bezier(.16,1,.3,1);

  /* Layout */
  --max:    1240px;
  --max-nar: 920px;
  --nav-h:  74px;
  --bar-h:  38px;
}

/* ============================ BASE / RESET ============================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 16px);
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; color: inherit; }
input, textarea, select { font-family: inherit; }
address { font-style: normal; }
h1, h2, h3, h4 { font-weight: 600; line-height: 1.18; }
strong { font-weight: 600; }
::selection { background: var(--brass); color: #fff; }

:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 3px;
  border-radius: 3px;
}

/* Skip link */
.skip-link {
  position: absolute;
  left: 16px; top: -100px;
  z-index: 2000;
  background: var(--navy);
  color: #fff;
  padding: 12px 20px;
  border-radius: var(--r);
  font-size: 13px;
  font-weight: 600;
  transition: top var(--ease);
}
.skip-link:focus { top: 16px; }

/* ============================ UTILITIES ============================ */
.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 28px; }
.container--narrow { max-width: var(--max-nar); }
.section { padding: 104px 0; position: relative; }
.section--sand { background: var(--sand); }
.section--cream { background: var(--cream); }
.section--navy { background: var(--navy); color: var(--d-text); }
.section--tight { padding: 76px 0; }
.center { text-align: center; }
.mt-0 { margin-top: 0; }
.hidden { display: none !important; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--brass-dark);
}
.eyebrow::before {
  content: '';
  width: 26px; height: 1.5px;
  background: var(--brass);
  display: inline-block;
}
.eyebrow--center { justify-content: center; }
.eyebrow--center::after {
  content: '';
  width: 26px; height: 1.5px;
  background: var(--brass);
  display: inline-block;
}
.section--navy .eyebrow { color: var(--brass-light); }

/* ============================ BUTTONS ============================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  border-radius: var(--r);
  transition: all var(--ease);
  white-space: nowrap;
  border: 1.5px solid transparent;
  line-height: 1;
}
.btn svg { width: 17px; height: 17px; flex-shrink: 0; transition: transform var(--ease); }
.btn-primary {
  background: linear-gradient(135deg, var(--brass-light), var(--brass) 55%, var(--brass-dark));
  color: #1c1505;
  box-shadow: var(--sh-brass);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 36px rgba(184,138,70,.4); }
.btn-primary:hover svg { transform: translateX(3px); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-700); transform: translateY(-2px); box-shadow: var(--sh-md); }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--line); }
.btn-outline:hover { border-color: var(--navy); background: var(--navy); color: #fff; }
.btn-ghost-light { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.22); }
.btn-ghost-light:hover { background: rgba(255,255,255,.16); border-color: rgba(255,255,255,.4); transform: translateY(-2px); }
.btn-lg { padding: 18px 38px; font-size: 13px; }
.btn-sm { padding: 11px 20px; font-size: 12px; }
.btn-full { width: 100%; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .03em;
  color: var(--brass-dark);
  transition: gap var(--ease), color var(--ease);
}
.link-arrow svg { width: 16px; height: 16px; transition: transform var(--ease); }
.link-arrow:hover { gap: 12px; color: var(--brass); }
.section--navy .link-arrow { color: var(--brass-light); }

/* ============================ TOP UTILITY BAR ============================ */
.topbar {
  background: var(--navy-deep);
  color: var(--d-muted);
  font-size: 12.5px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--bar-h);
  gap: 18px;
}
.topbar__left { display: flex; align-items: center; gap: 22px; }
.topbar__item { display: inline-flex; align-items: center; gap: 7px; color: var(--d-muted); transition: color var(--ease); }
.topbar__item svg { width: 14px; height: 14px; color: var(--brass-light); }
.topbar__item:hover { color: #fff; }
.topbar__right { display: flex; align-items: center; gap: 18px; }
.topbar__note { color: var(--d-faint); letter-spacing: .02em; }
.topbar__socials { display: flex; gap: 12px; }
.topbar__socials a { color: var(--d-muted); transition: color var(--ease); }
.topbar__socials a:hover { color: var(--brass-light); }
.topbar__socials svg { width: 15px; height: 15px; }

/* ============================ NAVIGATION ============================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line-soft);
  transition: box-shadow var(--ease), background var(--ease);
}
.nav.scrolled { box-shadow: var(--sh-sm); background: rgba(255,255,255,.95); }
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  gap: 20px;
}

/* Logo */
.logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.logo__mark {
  width: 42px; height: 42px;
  flex-shrink: 0;
  border-radius: 10px;
  background: linear-gradient(150deg, var(--navy-700), var(--navy-deep));
  display: grid;
  place-items: center;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.06), var(--sh-sm);
}
.logo__mark svg { width: 26px; height: 26px; }
.logo__text { display: flex; flex-direction: column; line-height: 1; }
.logo__name {
  font-family: var(--serif);
  font-size: 18px; font-weight: 600;
  letter-spacing: .01em; color: var(--navy);
}
.logo__sub {
  font-size: 9.5px; font-weight: 600; letter-spacing: .26em;
  text-transform: uppercase; color: var(--brass-dark); margin-top: 3px;
}

/* Desktop nav */
.nav__links { display: flex; align-items: center; gap: 4px; }
.nav__link {
  position: relative;
  font-size: 14px; font-weight: 500;
  color: var(--ink-soft);
  padding: 10px 14px;
  border-radius: var(--r);
  transition: color var(--ease), background var(--ease);
}
.nav__link:hover { color: var(--navy); background: var(--line-soft); }
.nav__link.active { color: var(--navy); }
.nav__link.active::after {
  content: '';
  position: absolute;
  left: 14px; right: 14px; bottom: 4px;
  height: 2px; border-radius: 2px;
  background: var(--brass);
}

/* Dropdown */
.nav__item--has-drop { position: relative; }
.nav__drop-toggle {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 500; color: var(--ink-soft);
  padding: 10px 14px; border-radius: var(--r);
  transition: color var(--ease), background var(--ease);
}
.nav__drop-toggle svg { width: 14px; height: 14px; transition: transform var(--ease); }
.nav__drop-toggle:hover { color: var(--navy); background: var(--line-soft); }
.nav__item--has-drop[aria-expanded="true"] .nav__drop-toggle svg { transform: rotate(180deg); }
.nav__drop {
  position: absolute;
  top: calc(100% + 8px); left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 230px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-lg);
  padding: 10px;
  opacity: 0; visibility: hidden;
  transition: opacity var(--ease), transform var(--ease), visibility var(--ease);
}
.nav__item--has-drop[aria-expanded="true"] .nav__drop {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.nav__drop a {
  display: flex; flex-direction: column; gap: 2px;
  padding: 11px 14px; border-radius: var(--r);
  transition: background var(--ease);
}
.nav__drop a:hover { background: var(--sand); }
.nav__drop strong { font-size: 14px; font-weight: 600; color: var(--navy); }
.nav__drop span { font-size: 12px; color: var(--ink-faint); }

.nav__cta { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

/* Burger */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  margin-right: -10px;
}
.nav__burger span {
  display: block; width: 24px; height: 2px;
  background: var(--navy); border-radius: 2px;
  transition: all var(--ease);
}
.nav__burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav__burger.active span:nth-child(2) { opacity: 0; }
.nav__burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile-Menü: standardmäßig verborgen (nur < 900px sichtbar) */
.nav__mobile { display: none; }
.nav__mobile a svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--ink-faint); }

/* ============================ HOME HERO ============================ */
.hero {
  position: relative;
  background: var(--navy-deep);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(ellipse 60% 80% at 80% 10%, rgba(184,138,70,.16) 0%, transparent 60%),
    radial-gradient(ellipse 70% 70% at 10% 100%, rgba(16,58,92,.7) 0%, transparent 60%),
    linear-gradient(155deg, #061a2c 0%, #0b2a45 55%, #081f34 100%);
}
.hero__grid {
  position: absolute; inset: 0; z-index: -1;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 75% 70% at 50% 40%, #000 5%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 75% 70% at 50% 40%, #000 5%, transparent 75%);
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 56px;
  padding: 92px 0 84px;
  min-height: calc(86vh - var(--nav-h));
}
.hero__badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  padding: 8px 16px; border-radius: var(--r-full);
  font-size: 12px; font-weight: 500; letter-spacing: .04em;
  color: var(--d-text); margin-bottom: 28px;
}
.hero__badge b { color: var(--brass-light); font-weight: 700; }
.hero__badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--ok); box-shadow: 0 0 0 4px rgba(47,158,111,.2); }
.hero__title {
  font-family: var(--serif);
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 600; line-height: 1.08;
  letter-spacing: -.01em; margin-bottom: 26px;
}
.hero__title em { font-style: normal; color: var(--brass-light); }
.hero__sub {
  font-size: clamp(16px, 1.6vw, 18px);
  color: var(--d-text); line-height: 1.8;
  max-width: 540px; margin-bottom: 38px;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 13px; margin-bottom: 26px; }
.hero__sub-actions { display: flex; flex-wrap: wrap; gap: 10px 22px; }
.hero__sub-actions a {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13.5px; color: var(--d-muted); transition: color var(--ease);
}
.hero__sub-actions a:hover { color: #fff; }
.hero__sub-actions svg { width: 15px; height: 15px; color: var(--brass-light); }

/* Hero network visual */
.hero__visual { position: relative; aspect-ratio: 1 / 1; }
.hero__network { width: 100%; height: 100%; overflow: visible; }
.hero__network .net-line { stroke: rgba(184,138,70,.32); stroke-width: 1.2; }
.hero__network .net-node { fill: #0b2a45; stroke: rgba(184,138,70,.55); stroke-width: 1.5; }
.hero__network .net-node--hub { fill: url(#hubGrad); stroke: var(--brass-light); stroke-width: 2; }
.hero__network .net-pulse { fill: var(--brass-light); }
.hero__visual-card {
  position: absolute;
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--r-lg);
  padding: 14px 18px;
  box-shadow: var(--sh-lg);
}
.hero__visual-card strong { display: block; font-family: var(--serif); font-size: 22px; color: var(--brass-light); line-height: 1; }
.hero__visual-card span { font-size: 11.5px; color: var(--d-muted); letter-spacing: .04em; }
.hero__visual-card--a { top: 6%; right: 0; }
.hero__visual-card--b { bottom: 8%; left: -4%; }

/* ============================ STATS STRIP ============================ */
.stats {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,.08);
}
.stats__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat {
  text-align: center;
  padding: 40px 24px;
  border-right: 1px solid rgba(255,255,255,.08);
}
.stat:last-child { border-right: none; }
.stat__num {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 600; color: var(--brass-light);
  line-height: 1; margin-bottom: 8px;
}
.stat__num .suffix { color: #fff; }
.stat__lbl {
  font-size: 12.5px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--d-muted);
}

/* ============================ SECTION HEAD ============================ */
.shead { max-width: 720px; margin: 0 0 56px; }
.shead--center { margin-left: auto; margin-right: auto; text-align: center; }
.shead .eyebrow { margin-bottom: 18px; }
.stitle {
  font-family: var(--serif);
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 600; color: var(--navy);
  line-height: 1.15; letter-spacing: -.01em;
}
.section--navy .stitle { color: #fff; }
.sdesc {
  margin-top: 18px;
  font-size: 17px; color: var(--ink-soft); line-height: 1.8;
}
.section--navy .sdesc { color: var(--d-text); }

/* ============================ AUDIENCE CARDS ============================ */
.audience__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.aud-card {
  position: relative;
  display: flex; flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px 26px 28px;
  overflow: hidden;
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}
.aud-card::before {
  content: ''; position: absolute; inset: 0 0 auto 0; height: 3px;
  background: linear-gradient(90deg, var(--brass), var(--brass-light));
  transform: scaleX(0); transform-origin: left; transition: transform var(--ease-out);
}
.aud-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); border-color: transparent; }
.aud-card:hover::before { transform: scaleX(1); }
.aud-card__icon {
  width: 54px; height: 54px; border-radius: 14px;
  display: grid; place-items: center;
  background: var(--sand); color: var(--brass-dark);
  margin-bottom: 22px; transition: background var(--ease), color var(--ease);
}
.aud-card:hover .aud-card__icon { background: var(--navy); color: var(--brass-light); }
.aud-card__icon svg { width: 26px; height: 26px; }
.aud-card h3 { font-family: var(--serif); font-size: 21px; color: var(--navy); margin-bottom: 10px; }
.aud-card p { font-size: 14.5px; color: var(--ink-soft); line-height: 1.7; margin-bottom: 22px; flex-grow: 1; }
.aud-card .link-arrow { margin-top: auto; }

/* ============================ SPLIT (about teaser / generic) ============================ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split--media-right { grid-template-columns: 1.05fr .95fr; }
.split__body p { color: var(--ink-soft); font-size: 16px; line-height: 1.85; margin-top: 18px; }
.split__media {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  min-height: 380px;
  background: linear-gradient(150deg, var(--navy-700), var(--navy-deep));
  box-shadow: var(--sh-lg);
}
.split__list { margin-top: 26px; display: grid; gap: 14px; }
.split__list li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; color: var(--ink); }
.split__list svg { width: 21px; height: 21px; color: var(--brass); flex-shrink: 0; margin-top: 1px; }

/* media collage used on about/leistungen */
.media-figure {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  background: linear-gradient(150deg, var(--navy-700), var(--navy-deep));
  min-height: 420px; box-shadow: var(--sh-lg);
  display: grid; place-items: center;
}
.media-figure__pattern {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: radial-gradient(ellipse at 50% 50%, #000, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 50%, #000, transparent 80%);
}
.media-figure__seal { width: 130px; height: 130px; opacity: .92; position: relative; }
.media-figure__cap {
  position: absolute; left: 22px; bottom: 20px; right: 22px;
  display: flex; align-items: center; gap: 12px;
  color: var(--d-text); font-size: 13px;
}
.media-figure__cap .badge {
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--r-full); padding: 5px 12px; font-size: 11px; letter-spacing: .04em;
}

/* ============================ USP BLOCK ============================ */
.usp { background: var(--navy); color: #fff; position: relative; overflow: hidden; }
.usp::after {
  content: ''; position: absolute; top: -30%; right: -10%;
  width: 540px; height: 540px; border-radius: 50%;
  background: radial-gradient(circle, var(--brass-glow), transparent 65%);
  pointer-events: none;
}
.usp__inner { display: grid; grid-template-columns: .92fr 1.08fr; gap: 60px; align-items: center; position: relative; }
.usp__big {
  font-family: var(--serif);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.12; color: #fff; letter-spacing: -.01em;
}
.usp__big em { font-style: normal; color: var(--brass-light); }
.usp__lead { margin-top: 22px; font-size: 17px; color: var(--d-text); line-height: 1.8; max-width: 520px; }
.usp__points { display: grid; gap: 16px; }
.usp-point {
  display: flex; gap: 16px; align-items: flex-start;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-lg);
  padding: 22px 24px;
  transition: background var(--ease), border-color var(--ease), transform var(--ease);
}
.usp-point:hover { background: rgba(255,255,255,.07); border-color: rgba(184,138,70,.35); transform: translateX(4px); }
.usp-point__ic {
  width: 44px; height: 44px; border-radius: 11px; flex-shrink: 0;
  background: rgba(184,138,70,.16); color: var(--brass-light);
  display: grid; place-items: center;
}
.usp-point__ic svg { width: 22px; height: 22px; }
.usp-point h3 { font-size: 17px; color: #fff; margin-bottom: 5px; }
.usp-point p { font-size: 14px; color: var(--d-muted); line-height: 1.65; }

/* ============================ BENEFITS GRID ============================ */
.benefits__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.benefit {
  background: #fff;
  padding: 34px 28px;
  transition: background var(--ease), transform var(--ease);
}
.benefit:hover { background: var(--cream); }
.benefit__ic {
  width: 46px; height: 46px; border-radius: 12px;
  display: grid; place-items: center;
  background: var(--sand); color: var(--brass-dark);
  margin-bottom: 18px;
}
.benefit__ic svg { width: 24px; height: 24px; }
.benefit h3 { font-size: 17px; color: var(--navy); margin-bottom: 9px; }
.benefit p { font-size: 14px; color: var(--ink-soft); line-height: 1.7; }

/* ============================ SORTIMENT / SERVICES ============================ */
.assort__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
}
.assort {
  display: flex; align-items: center; gap: 14px;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r); padding: 18px 18px;
  transition: border-color var(--ease), box-shadow var(--ease), transform var(--ease);
}
.assort:hover { border-color: transparent; box-shadow: var(--sh-md); transform: translateY(-3px); }
.assort__ic {
  width: 42px; height: 42px; border-radius: 10px; flex-shrink: 0;
  background: var(--sand); color: var(--brass-dark);
  display: grid; place-items: center;
}
.assort__ic svg { width: 22px; height: 22px; }
.assort span { font-size: 14.5px; font-weight: 500; color: var(--navy); }

.note-pill {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--sand); border: 1px solid var(--sand-deep);
  color: var(--ink-soft); font-size: 13.5px;
  padding: 10px 18px; border-radius: var(--r-full); margin-top: 28px;
}
.note-pill svg { width: 16px; height: 16px; color: var(--brass-dark); }

/* Cooperation logos */
.coops { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.coop {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 32px 28px;
  text-align: center; transition: box-shadow var(--ease), transform var(--ease), border-color var(--ease);
}
.coop:hover { box-shadow: var(--sh-md); transform: translateY(-4px); border-color: transparent; }
.coop__logo {
  height: 46px; display: grid; place-items: center;
  font-family: var(--serif); font-weight: 700; font-size: 24px; color: var(--navy);
  margin-bottom: 16px;
}
.coop__logo svg { height: 40px; width: auto; }
.coop h3 { font-size: 17px; color: var(--navy); margin-bottom: 8px; }
.coop p { font-size: 14px; color: var(--ink-soft); line-height: 1.65; }

/* ============================ PROCESS TIMELINE ============================ */
.process { counter-reset: step; }
.process__track {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 14px;
  position: relative;
}
.process__track::before {
  content: ''; position: absolute; left: 6%; right: 6%; top: 27px;
  height: 2px; background: linear-gradient(90deg, var(--brass-light), var(--brass));
  z-index: 0; opacity: .5;
}
.pstep { position: relative; z-index: 1; text-align: center; }
.pstep__num {
  width: 54px; height: 54px; margin: 0 auto 18px;
  border-radius: 50%;
  background: #fff; border: 2px solid var(--brass);
  color: var(--navy); font-family: var(--serif); font-size: 20px; font-weight: 600;
  display: grid; place-items: center;
  box-shadow: 0 0 0 6px var(--paper);
  transition: background var(--ease), color var(--ease), transform var(--ease);
}
.pstep:hover .pstep__num { background: var(--brass); color: #fff; transform: scale(1.06); }
.section--sand .pstep__num { box-shadow: 0 0 0 6px var(--sand); }
.pstep h3 { font-size: 15px; color: var(--navy); margin-bottom: 6px; line-height: 1.3; }
.pstep p { font-size: 13px; color: var(--ink-soft); line-height: 1.55; }

/* vertical variant (on franchise page narrow) */
.process--vertical .process__track { grid-template-columns: 1fr; gap: 0; }
.process--vertical .process__track::before { display: none; }
.process--vertical .pstep {
  display: grid; grid-template-columns: 54px 1fr; gap: 20px; text-align: left;
  padding-bottom: 30px; position: relative;
}
.process--vertical .pstep::after {
  content: ''; position: absolute; left: 26px; top: 54px; bottom: 0; width: 2px;
  background: var(--line);
}
.process--vertical .pstep:last-child { padding-bottom: 0; }
.process--vertical .pstep:last-child::after { display: none; }
.process--vertical .pstep__num { margin: 0; }

/* ============================ STANDORTE / MAP ============================ */
.loc-layout { display: grid; grid-template-columns: 360px 1fr; gap: 26px; align-items: start; }
.loc-filters {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 22px;
  position: sticky; top: calc(var(--nav-h) + 16px);
}
.loc-filters h3 { font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 16px; }
.loc-search {
  width: 100%; padding: 12px 14px 12px 40px; border: 1px solid var(--line); border-radius: var(--r);
  font-size: 14px; color: var(--ink); margin-bottom: 18px; outline: none;
  background: var(--cream) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237c8c98' stroke-width='2' stroke-linecap='round'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cpath d='m21 21-4.3-4.3'/%3E%3C/svg%3E") no-repeat 13px center / 17px;
  transition: border-color var(--ease);
}
.loc-search:focus { border-color: var(--brass); }
.filter-chips { display: flex; flex-wrap: wrap; gap: 9px; }
.chip {
  font-size: 13px; font-weight: 500; color: var(--ink-soft);
  background: var(--cream); border: 1px solid var(--line);
  padding: 8px 14px; border-radius: var(--r-full); transition: all var(--ease);
}
.chip:hover { border-color: var(--brass); color: var(--navy); }
.chip.active { background: var(--navy); color: #fff; border-color: var(--navy); }
.loc-count { margin-top: 18px; font-size: 13px; color: var(--ink-faint); }
.loc-count b { color: var(--navy); }

.loc-main { display: grid; gap: 20px; }
.map-shell {
  position: relative; height: 460px;
  border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--sh-sm);
  background: linear-gradient(150deg, var(--navy-700), var(--navy-deep));
}
#map { width: 100%; height: 100%; }
.map-consent {
  position: absolute; inset: 0; z-index: 5;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; gap: 14px; padding: 30px; color: #fff;
}
.map-consent__pattern { position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 40px 40px; mask-image: radial-gradient(ellipse at 50% 50%, #000, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 50%, #000, transparent 75%); }
.map-consent svg { width: 38px; height: 38px; color: var(--brass-light); position: relative; }
.map-consent h3 { font-family: var(--serif); font-size: 22px; color: #fff; position: relative; }
.map-consent p { font-size: 13.5px; color: var(--d-muted); max-width: 360px; position: relative; }
.map-consent a { color: var(--brass-light); text-decoration: underline; }

.loc-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.loc-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 22px; transition: box-shadow var(--ease), transform var(--ease), border-color var(--ease); cursor: pointer;
}
.loc-card:hover, .loc-card.active { box-shadow: var(--sh-md); transform: translateY(-3px); border-color: var(--brass); }
.loc-card__head { display: flex; justify-content: space-between; gap: 10px; margin-bottom: 6px; }
.loc-card h3 { font-size: 17px; color: var(--navy); }
.loc-card__dist { font-size: 12px; color: var(--ink-faint); white-space: nowrap; }
.loc-card address { font-size: 14px; color: var(--ink-soft); line-height: 1.6; margin-bottom: 12px; }
.loc-card__hours { font-size: 13px; color: var(--ink-soft); display: flex; align-items: center; gap: 7px; margin-bottom: 14px; }
.loc-card__hours svg { width: 15px; height: 15px; color: var(--brass-dark); }
.loc-tags { display: flex; flex-wrap: wrap; gap: 7px; }
.loc-tag {
  font-size: 11.5px; font-weight: 500; color: var(--brass-dark);
  background: var(--sand); border-radius: var(--r-full); padding: 4px 11px;
}

/* ============================ TESTIMONIALS ============================ */
.tst__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.tst {
  display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 30px 28px; transition: box-shadow var(--ease), transform var(--ease);
}
.tst:hover { box-shadow: var(--sh-lg); transform: translateY(-4px); }
.tst__quote-ic { width: 34px; height: 34px; color: var(--brass); opacity: .6; margin-bottom: 14px; }
.tst__quote { font-size: 16px; color: var(--ink); line-height: 1.7; font-style: italic; margin-bottom: 24px; flex-grow: 1; }
.tst__person { display: flex; align-items: center; gap: 13px; border-top: 1px solid var(--line-soft); padding-top: 18px; }
.tst__avatar {
  width: 48px; height: 48px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(140deg, var(--brass-light), var(--brass-dark));
  color: #fff; font-family: var(--serif); font-weight: 600; font-size: 18px;
  display: grid; place-items: center;
}
.tst__name { font-size: 15px; font-weight: 600; color: var(--navy); }
.tst__meta { font-size: 12.5px; color: var(--ink-faint); }

/* ============================ CTA BAND ============================ */
.ctaband { position: relative; overflow: hidden; background: var(--navy-deep); color: #fff; }
.ctaband__bg { position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 50% 80% at 85% 20%, rgba(184,138,70,.18), transparent 60%),
    radial-gradient(ellipse 60% 90% at 10% 90%, rgba(16,58,92,.6), transparent 60%);
}
.ctaband__inner { position: relative; z-index: 1; text-align: center; max-width: 760px; margin: 0 auto; }
.ctaband h2 { font-family: var(--serif); font-size: clamp(28px, 3.8vw, 44px); color: #fff; margin-bottom: 18px; line-height: 1.15; }
.ctaband h2 em { font-style: normal; color: var(--brass-light); }
.ctaband p { font-size: 17px; color: var(--d-text); line-height: 1.8; margin-bottom: 34px; }
.ctaband__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============================ NEWS ============================ */
.news__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.post {
  display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden;
  transition: box-shadow var(--ease), transform var(--ease);
}
.post:hover { box-shadow: var(--sh-lg); transform: translateY(-5px); }
.post__media {
  aspect-ratio: 16 / 10; position: relative;
  background: linear-gradient(145deg, var(--navy-700), var(--navy-deep));
  display: grid; place-items: center; overflow: hidden;
}
.post__media svg.seal { width: 64px; height: 64px; opacity: .5; }
.post__media .post__cat {
  position: absolute; top: 14px; left: 14px;
  background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.2);
  color: #fff; font-size: 11px; font-weight: 600; letter-spacing: .04em;
  padding: 5px 12px; border-radius: var(--r-full);
}
.post__body { padding: 24px; display: flex; flex-direction: column; flex-grow: 1; }
.post__date { font-size: 12.5px; color: var(--ink-faint); margin-bottom: 10px; }
.post__body h3 { font-family: var(--serif); font-size: 20px; color: var(--navy); line-height: 1.3; margin-bottom: 10px; }
.post__body p { font-size: 14.5px; color: var(--ink-soft); line-height: 1.7; margin-bottom: 18px; flex-grow: 1; }
.post .link-arrow { margin-top: auto; }

/* ============================ FAQ ============================ */
.faq { max-width: 860px; margin: 0 auto; }
.faq__cat-title { font-family: var(--serif); font-size: 22px; color: var(--navy); margin: 36px 0 16px; }
.faq__cat-title:first-child { margin-top: 0; }
.faq-item { border: 1px solid var(--line); border-radius: var(--r-lg); margin-bottom: 12px; background: #fff; overflow: hidden; transition: border-color var(--ease), box-shadow var(--ease); }
.faq-item.open { border-color: var(--brass); box-shadow: var(--sh-sm); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 22px 24px; text-align: left; font-size: 16.5px; font-weight: 600; color: var(--navy);
}
.faq-q__ic { width: 26px; height: 26px; flex-shrink: 0; position: relative; transition: transform var(--ease); }
.faq-q__ic::before, .faq-q__ic::after {
  content: ''; position: absolute; top: 50%; left: 50%; background: var(--brass-dark); border-radius: 2px;
  transform: translate(-50%,-50%); transition: opacity var(--ease);
}
.faq-q__ic::before { width: 14px; height: 2px; }
.faq-q__ic::after { width: 2px; height: 14px; }
.faq-item.open .faq-q__ic::after { opacity: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height var(--ease-out); }
.faq-a__inner { padding: 0 24px 24px; font-size: 15px; color: var(--ink-soft); line-height: 1.8; }
.faq-a__inner a { color: var(--brass-dark); text-decoration: underline; }

/* ============================ PAGE HERO (subpages) ============================ */
.phero { position: relative; background: var(--navy-deep); color: #fff; overflow: hidden; }
.phero__bg { position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 50% 90% at 88% 0%, rgba(184,138,70,.15), transparent 55%),
    linear-gradient(160deg, #061a2c, #0b2a45 70%, #081f34);
}
.phero__grid { position: absolute; inset: 0; z-index: 0;
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 56px 56px; mask-image: radial-gradient(ellipse 70% 80% at 60% 30%, #000, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 80% at 60% 30%, #000, transparent 75%); }
.phero__inner { position: relative; z-index: 1; padding: 64px 0 70px; max-width: 760px; }
.breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; font-size: 13px; color: var(--d-muted); margin-bottom: 22px; }
.breadcrumb a { color: var(--d-muted); transition: color var(--ease); }
.breadcrumb a:hover { color: var(--brass-light); }
.breadcrumb span[aria-current] { color: var(--brass-light); }
.breadcrumb .sep { opacity: .5; }
.phero h1 { font-family: var(--serif); font-size: clamp(32px, 4.4vw, 52px); font-weight: 600; line-height: 1.1; letter-spacing: -.01em; margin-bottom: 18px; }
.phero p { font-size: clamp(16px, 1.6vw, 18px); color: var(--d-text); line-height: 1.8; max-width: 600px; }
.phero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }

/* ============================ INFO / VALUE CARDS ============================ */
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.icard { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 32px 28px; transition: box-shadow var(--ease), transform var(--ease); }
.icard:hover { box-shadow: var(--sh-md); transform: translateY(-4px); }
.icard__ic { width: 50px; height: 50px; border-radius: 12px; background: var(--sand); color: var(--brass-dark); display: grid; place-items: center; margin-bottom: 20px; }
.icard__ic svg { width: 25px; height: 25px; }
.icard h3 { font-family: var(--serif); font-size: 20px; color: var(--navy); margin-bottom: 10px; }
.icard p { font-size: 14.5px; color: var(--ink-soft); line-height: 1.7; }

/* requirement / checklist tiles */
.reqs { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.req {
  display: flex; gap: 14px; align-items: flex-start;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 22px 22px;
}
.req__ic { width: 40px; height: 40px; border-radius: 10px; background: var(--sand); color: var(--brass-dark); display: grid; place-items: center; flex-shrink: 0; }
.req__ic svg { width: 21px; height: 21px; }
.req strong { display: block; font-size: 15.5px; color: var(--navy); margin-bottom: 3px; }
.req span { font-size: 13.5px; color: var(--ink-soft); line-height: 1.6; }

/* stat highlight band (light) */
.kpis { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.kpi { text-align: center; padding: 8px; }
.kpi__num { font-family: var(--serif); font-size: clamp(30px,3.6vw,42px); color: var(--brass-dark); line-height: 1; margin-bottom: 8px; }
.kpi__lbl { font-size: 13px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-faint); }

/* ============================ FORMS ============================ */
.form-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 40px; box-shadow: var(--sh-md);
}
.form-card--lg { padding: 44px; }
.form-grid { display: grid; gap: 18px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-row-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-label { font-size: 12.5px; font-weight: 600; letter-spacing: .03em; color: var(--navy); }
.form-label .req-star { color: var(--err); }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 13px 15px;
  background: var(--cream); border: 1px solid var(--line); border-radius: var(--r);
  color: var(--ink); font-size: 14.5px; transition: border-color var(--ease), background var(--ease), box-shadow var(--ease);
  outline: none; appearance: none; -webkit-appearance: none;
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--ink-faint); }
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--brass); background: #fff; box-shadow: 0 0 0 3px var(--brass-glow);
}
.form-input.invalid, .form-select.invalid, .form-textarea.invalid { border-color: var(--err); box-shadow: 0 0 0 3px rgba(210,84,63,.12); }
.form-select {
  cursor: pointer; padding-right: 42px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23475866' stroke-width='2' stroke-linecap='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; background-size: 17px;
}
.form-textarea { resize: vertical; min-height: 130px; line-height: 1.7; }
.form-hint { font-size: 12px; color: var(--ink-faint); }
.form-error { font-size: 12px; color: var(--err); display: none; }
.form-group.has-error .form-error { display: block; }

/* upload */
.upload {
  position: relative; border: 1.5px dashed var(--line); border-radius: var(--r);
  padding: 28px 22px; text-align: center; transition: all var(--ease); background: var(--cream); cursor: pointer;
}
.upload:hover, .upload.dragover { border-color: var(--brass); background: var(--brass-glow); }
.upload input[type=file] { position: absolute; inset: 0; opacity: 0; width: 100%; height: 100%; cursor: pointer; }
.upload__ic { width: 34px; height: 34px; color: var(--brass-dark); margin: 0 auto 10px; }
.upload__ic svg { width: 100%; height: 100%; }
.upload p { font-size: 14px; color: var(--ink-soft); }
.upload p b { color: var(--brass-dark); }
.upload span { font-size: 12px; color: var(--ink-faint); }
.file-list { margin-top: 12px; display: grid; gap: 7px; }
.file-item { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 9px 13px; background: var(--cream); border: 1px solid var(--line); border-radius: var(--r); font-size: 13px; color: var(--ink-soft); }
.file-item button { font-size: 19px; line-height: 1; color: var(--ink-faint); padding: 0 4px; transition: color var(--ease); }
.file-item button:hover { color: var(--err); }

/* checkbox / radio */
.form-check { display: flex; align-items: flex-start; gap: 12px; cursor: pointer; }
.form-check input { position: absolute; opacity: 0; width: 0; height: 0; }
.form-check__box {
  width: 20px; height: 20px; border: 1.5px solid var(--line); border-radius: 5px; flex-shrink: 0; margin-top: 1px;
  display: grid; place-items: center; transition: all var(--ease); background: #fff;
}
.form-check__box svg { width: 13px; height: 13px; color: #fff; opacity: 0; transform: scale(.5); transition: all var(--ease); }
.form-check input:checked ~ .form-check__box { background: var(--brass); border-color: var(--brass); }
.form-check input:checked ~ .form-check__box svg { opacity: 1; transform: scale(1); }
.form-check input:focus-visible ~ .form-check__box { outline: 2px solid var(--brass); outline-offset: 2px; }
.form-check__text { font-size: 13.5px; color: var(--ink-soft); line-height: 1.6; }
.form-check__text a { color: var(--brass-dark); text-decoration: underline; }

.radio-tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.radio-tile { position: relative; }
.radio-tile input { position: absolute; opacity: 0; }
.radio-tile label {
  display: flex; align-items: center; gap: 10px; cursor: pointer;
  border: 1.5px solid var(--line); border-radius: var(--r); padding: 14px 16px;
  font-size: 14.5px; color: var(--ink); transition: all var(--ease); background: var(--cream);
}
.radio-tile input:checked + label { border-color: var(--brass); background: var(--brass-glow); color: var(--navy); font-weight: 500; }
.radio-tile input:focus-visible + label { outline: 2px solid var(--brass); outline-offset: 2px; }

.form-aside {
  background: var(--navy); color: #fff; border-radius: var(--r-lg); padding: 36px 32px;
}
.form-aside h3 { font-family: var(--serif); font-size: 24px; color: #fff; margin-bottom: 14px; }
.form-aside p { color: var(--d-text); font-size: 15px; line-height: 1.75; margin-bottom: 22px; }
.form-aside ul { display: grid; gap: 14px; }
.form-aside li { display: flex; gap: 12px; font-size: 14.5px; color: var(--d-text); align-items: flex-start; }
.form-aside li svg { width: 20px; height: 20px; color: var(--brass-light); flex-shrink: 0; margin-top: 1px; }

.form-layout { display: grid; grid-template-columns: 1fr 1.3fr; gap: 36px; align-items: start; }

/* ============================ CONTACT DETAILS ============================ */
.contact-details { display: grid; gap: 16px; }
.cdetail { display: flex; gap: 15px; align-items: flex-start; }
.cdetail__ic { width: 46px; height: 46px; border-radius: 12px; background: var(--sand); color: var(--brass-dark); display: grid; place-items: center; flex-shrink: 0; }
.cdetail__ic svg { width: 21px; height: 21px; }
.cdetail strong { display: block; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 3px; }
.cdetail a, .cdetail span { font-size: 15.5px; color: var(--ink); }
.cdetail a:hover { color: var(--brass-dark); }

/* ============================ FOOTER ============================ */
.footer { background: var(--navy-deep); color: var(--d-muted); }
.footer__top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 44px; padding: 72px 0 56px; }
.footer__brand .logo__name { color: #fff; }
.footer__brand .logo__sub { color: var(--brass-light); }
.footer__brand p { margin: 20px 0 22px; font-size: 14px; line-height: 1.8; max-width: 320px; color: var(--d-muted); }
.footer__contact { display: grid; gap: 9px; font-size: 14px; }
.footer__contact a, .footer__contact span { color: var(--d-text); display: inline-flex; gap: 9px; align-items: center; }
.footer__contact svg { width: 15px; height: 15px; color: var(--brass-light); flex-shrink: 0; }
.footer__contact a:hover { color: #fff; }
.footer__col h4 { font-size: 11px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--brass-light); margin-bottom: 20px; }
.footer__col ul { display: grid; gap: 12px; }
.footer__col a { font-size: 14px; color: var(--d-muted); transition: color var(--ease); }
.footer__col a:hover { color: #fff; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08); padding: 22px 0;
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.footer__bottom p { font-size: 12.5px; color: var(--d-faint); }
.footer__legal { display: flex; flex-wrap: wrap; gap: 22px; }
.footer__legal a, .footer__legal button { font-size: 12.5px; color: var(--d-faint); transition: color var(--ease); }
.footer__legal a:hover, .footer__legal button:hover { color: var(--brass-light); }
.footer__lang { display: inline-flex; gap: 8px; align-items: center; font-size: 12.5px; color: var(--d-faint); }
.footer__lang b { color: var(--d-text); }

/* ============================ COOKIE BANNER ============================ */
.cookie {
  position: fixed; left: 20px; right: 20px; bottom: 20px; z-index: 1500;
  max-width: 520px; margin: 0 auto;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  box-shadow: var(--sh-lg); padding: 24px 26px;
  transform: translateY(160%); transition: transform var(--ease-out);
}
.cookie.show { transform: translateY(0); }
.cookie h3 { font-size: 16px; color: var(--navy); margin-bottom: 8px; }
.cookie p { font-size: 13.5px; color: var(--ink-soft); line-height: 1.65; margin-bottom: 18px; }
.cookie p a { color: var(--brass-dark); text-decoration: underline; }
.cookie__actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* ============================ TOAST ============================ */
.toast {
  position: fixed; bottom: 28px; left: 50%;
  transform: translateX(-50%) translateY(140px);
  display: flex; align-items: center; gap: 12px;
  padding: 16px 24px; background: var(--navy); color: #fff;
  border-radius: var(--r-lg); box-shadow: var(--sh-lg);
  font-size: 14.5px; z-index: 3000; opacity: 0; max-width: 92vw;
  transition: transform var(--ease-out), opacity var(--ease-out);
}
.toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }
.toast__ic { width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; flex-shrink: 0; background: rgba(47,158,111,.2); }
.toast__ic svg { width: 17px; height: 17px; color: #5fd9a3; }
.toast.toast--err .toast__ic { background: rgba(210,84,63,.2); }
.toast.toast--err .toast__ic svg { color: #f0876f; }

/* ============================ BACK TO TOP ============================ */
.backtop {
  position: fixed; right: 22px; bottom: 22px; z-index: 1400;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--navy); color: #fff; display: grid; place-items: center;
  box-shadow: var(--sh-md); opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: all var(--ease);
}
.backtop.show { opacity: 1; visibility: visible; transform: translateY(0); }
.backtop:hover { background: var(--brass); }
.backtop svg { width: 20px; height: 20px; }

/* ============================ LEGAL ============================ */
.legal { padding: 64px 0 96px; }
.legal__body { max-width: 800px; }
.legal__body h2 { font-family: var(--serif); font-size: 24px; color: var(--navy); margin: 38px 0 12px; }
.legal__body h3 { font-size: 17px; color: var(--navy); margin: 24px 0 8px; }
.legal__body h2:first-child { margin-top: 0; }
.legal__body p, .legal__body li { font-size: 15px; color: var(--ink-soft); line-height: 1.85; margin-bottom: 12px; }
.legal__body ul { margin: 6px 0 16px 22px; }
.legal__body li { list-style: disc; margin-bottom: 6px; }
.legal__body a { color: var(--brass-dark); text-decoration: underline; }
.legal__body strong { color: var(--ink); }

/* ============================ REVEAL ANIMATIONS ============================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s cubic-bezier(.16,1,.3,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-stagger > * { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s cubic-bezier(.16,1,.3,1); }
.reveal-stagger.visible > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(1) { transition-delay: .04s; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: .10s; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: .16s; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: .22s; }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: .28s; }
.reveal-stagger.visible > *:nth-child(6) { transition-delay: .34s; }
.reveal-stagger.visible > *:nth-child(7) { transition-delay: .40s; }
.reveal-stagger.visible > *:nth-child(8) { transition-delay: .46s; }

@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.hero__visual-card { animation: floaty 6s ease-in-out infinite; }
.hero__visual-card--b { animation-delay: 1.4s; }
@keyframes dash { to { stroke-dashoffset: -28; } }
@keyframes pulseNode { 0%,100% { r: 5; opacity: .9; } 50% { r: 7; opacity: 1; } }

/* ============================ RESPONSIVE ============================ */
@media (max-width: 1080px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__visual { max-width: 440px; margin: 0 auto; width: 100%; }
  .audience__grid { grid-template-columns: repeat(2, 1fr); }
  .benefits__grid { grid-template-columns: repeat(2, 1fr); }
  .loc-layout { grid-template-columns: 1fr; }
  .loc-filters { position: static; }
  .usp__inner { grid-template-columns: 1fr; gap: 38px; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .process__track { grid-template-columns: repeat(4, 1fr); row-gap: 34px; }
  .process__track::before { display: none; }
}
@media (max-width: 900px) {
  .topbar__note { display: none; }
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .nav__mobile {
    position: fixed; top: var(--nav-h); left: 0; right: 0; bottom: 0; z-index: 999;
    background: #fff; padding: 24px 28px 40px; overflow-y: auto;
    flex-direction: column; gap: 6px;
    border-top: 1px solid var(--line);
    /* display bleibt 'none' (Basisregel) bis .open – verhindert seitlichen Überlauf */
  }
  .nav__mobile.open { display: flex; animation: navSlideIn .3s ease both; }
  @keyframes navSlideIn { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: none; } }
  .nav__mobile a { font-size: 17px; color: var(--navy); padding: 14px 6px; border-bottom: 1px solid var(--line-soft); display: flex; justify-content: space-between; align-items: center; }
  .nav__mobile a.sub { font-size: 15px; color: var(--ink-soft); padding-left: 18px; }
  .nav__mobile .mob-label { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-faint); margin: 18px 6px 4px; }
  .nav__mobile .btn { margin-top: 22px; }
  .split { grid-template-columns: 1fr; gap: 38px; }
  .split--media-right .split__media { order: -1; }
  .cards-3 { grid-template-columns: 1fr; }
  .coops { grid-template-columns: 1fr; }
  .tst__grid { grid-template-columns: 1fr; }
  .news__grid { grid-template-columns: 1fr; }
  .form-layout { grid-template-columns: 1fr; }
  .loc-list { grid-template-columns: 1fr; }
  .kpis { grid-template-columns: repeat(2, 1fr); row-gap: 30px; }
}
@media (max-width: 680px) {
  .section { padding: 72px 0; }
  .container { padding: 0 20px; }
  .topbar__left { gap: 14px; }
  .topbar__item span.hide-sm { display: none; }
  .stats__inner { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(2) { border-right: none; }
  .stat { padding: 26px 10px; border-bottom: 1px solid rgba(255,255,255,.08); }
  .stat__num { font-size: 30px; }
  .stat__lbl { font-size: 11px; letter-spacing: .06em; overflow-wrap: anywhere; }
  .stats__inner .stat:nth-last-child(-n+2) { border-bottom: none; }
  .audience__grid { grid-template-columns: 1fr; }
  .benefits__grid { grid-template-columns: 1fr; }
  .process__track { grid-template-columns: 1fr 1fr; }
  .assort__grid { grid-template-columns: 1fr 1fr; }
  .hero__actions { width: 100%; }
  .hero__actions .btn { width: 100%; }
  .form-row-2, .form-row-3, .radio-tiles { grid-template-columns: 1fr; }
  .form-card { padding: 28px 22px; }
  .footer__top { grid-template-columns: 1fr; gap: 30px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .cookie { left: 14px; right: 14px; bottom: 14px; padding: 20px; }
}
@media (max-width: 420px) {
  .assort__grid { grid-template-columns: 1fr; }
  .process__track { grid-template-columns: 1fr; }
  .kpis { grid-template-columns: 1fr; }
}

/* ============================ PRINT ============================ */
@media print {
  .topbar, .nav, .footer, .cookie, .backtop, .toast, .hero__actions, .phero__actions { display: none !important; }
  body { color: #000; }
  .section { padding: 24px 0; }
}

/* ============================ REDUCED MOTION ============================ */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal, .reveal-stagger > * { opacity: 1 !important; transform: none !important; }
}
