/* HSH Seniorenhilfe — Site styles
   Quellen: design-system/colors_and_type.css + design-system/ui_kits/website/styles.css
   1:1 nach Designvorlage, mit erweiterter Mobile-Optimierung.
*/

/* ══════════════════════════════════════════════════════════════════════
   Tokens
   ══════════════════════════════════════════════════════════════════════ */
:root {
  /* Wine — primary brand burgundy */
  --wine-950:#2C0B17; --wine-900:#4A1428; --wine-800:#5C1A2E;
  --wine-700:#6E2038; --wine-600:#802040; --wine-500:#9A2D4F;
  --wine-400:#B85973; --wine-300:#D08B9F; --wine-200:#E5BAC4;
  --wine-100:#F2DDE2; --wine-50:#F9EEF1;

  /* Sun — orange-gold accent */
  --sun-900:#5C3700; --sun-800:#7A4A00; --sun-700:#B86D00;
  --sun-600:#D88500; --sun-500:#F8A000; --sun-400:#FFB838;
  --sun-300:#FFCB66; --sun-200:#FFDB94; --sun-100:#FFE9BF;
  --sun-50:#FFF4DE;

  /* Linen — warm paper neutrals */
  --linen-950:#1F1A17; --linen-900:#2C2723; --linen-800:#3F3933;
  --linen-700:#5A534B; --linen-600:#797165; --linen-500:#968D7F;
  --linen-400:#B5AC9D; --linen-300:#D3CBBA; --linen-200:#E6DECC;
  --linen-100:#F1EBD9; --linen-50:#F8F3E6; --linen-0:#FDFAF1;

  /* Forest — supporting green */
  --forest-700:#2E4A36; --forest-500:#4A6E51; --forest-200:#C0D2BB;

  /* Status */
  --success-500:#4A6E51; --warning-500:#D88500; --danger-500:#B5453A;

  /* Semantic */
  --bg-page:var(--linen-50);
  --bg-paper:var(--linen-0);
  --bg-raised:#FFFFFF;
  --bg-sunken:var(--linen-100);
  --bg-inverse:var(--wine-700);
  --bg-inverse-deep:var(--wine-900);

  --fg-1:var(--linen-950);
  --fg-2:var(--linen-800);
  --fg-3:var(--linen-600);
  --fg-muted:var(--linen-500);
  --fg-inverse:var(--linen-0);
  --fg-brand:var(--wine-600);
  --fg-accent:var(--sun-700);
  --fg-link:var(--wine-600);

  --border-1:rgba(31,26,23,0.10);
  --border-2:rgba(31,26,23,0.18);
  --border-3:rgba(31,26,23,0.32);

  /* Typography */
  --font-display:'Newsreader','Source Serif 4',Georgia,serif;
  --font-body:'Manrope','Helvetica Neue',system-ui,sans-serif;

  --fs-display-xl:clamp(3.5rem,6vw + 1rem,6.5rem);
  --fs-display-lg:clamp(2.75rem,4vw + 1rem,4.5rem);
  --fs-display-md:clamp(2.25rem,2.5vw + 1rem,3.25rem);
  --fs-h1:clamp(2rem,2vw + 1rem,2.75rem);
  --fs-h2:clamp(1.625rem,1vw + 1rem,2.125rem);
  --fs-h3:1.375rem;
  --fs-h4:1.125rem;
  --fs-lead:1.375rem;
  --fs-body:1.125rem;  /* 18px senior-friendly minimum */
  --fs-small:1rem;
  --fs-tiny:0.875rem;

  --lh-tight:1.05; --lh-snug:1.2; --lh-base:1.55; --lh-relaxed:1.7;
  --tracking-tight:-0.02em; --tracking-normal:0; --tracking-eyebrow:0.14em;

  /* Spacing */
  --s-0:0; --s-1:0.25rem; --s-2:0.5rem; --s-3:0.75rem; --s-4:1rem; --s-5:1.5rem;
  --s-6:2rem; --s-7:2.5rem; --s-8:3rem; --s-9:4rem; --s-10:5rem; --s-11:6rem; --s-12:8rem;

  /* Radii */
  --r-xs:4px; --r-sm:8px; --r-md:12px; --r-lg:20px; --r-xl:28px; --r-2xl:40px; --r-pill:999px;

  /* Shadows */
  --shadow-1:0 1px 2px rgba(44,11,23,0.06),0 1px 1px rgba(31,26,23,0.04);
  --shadow-2:0 2px 4px rgba(44,11,23,0.06),0 4px 12px rgba(31,26,23,0.06);
  --shadow-3:0 6px 18px rgba(44,11,23,0.10),0 1px 2px rgba(31,26,23,0.05);
  --shadow-4:0 18px 40px -12px rgba(74,20,40,0.22),0 4px 12px rgba(31,26,23,0.06);

  --focus-ring:0 0 0 3px var(--bg-paper),0 0 0 6px var(--sun-500);

  /* Motion */
  --ease-out:cubic-bezier(0.22,1,0.36,1);
  --ease-in-out:cubic-bezier(0.65,0,0.35,1);
  --dur-fast:140ms; --dur-base:220ms; --dur-slow:420ms;

  --container-narrow:720px;
  --container-text:900px;
  --container-wide:1200px;
  --container-full:1440px;
}

/* ══════════════════════════════════════════════════════════════════════
   Base
   ══════════════════════════════════════════════════════════════════════ */
*,*::before,*::after{box-sizing:border-box}
html{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;scroll-behavior:smooth}
body{
  margin:0;
  background:var(--bg-page);
  color:var(--fg-1);
  font-family:var(--font-body);
  font-size:var(--fs-body);
  line-height:var(--lh-base);
  font-weight:400;
  text-rendering:optimizeLegibility;
}

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

.eyebrow,h1,h2,h3,h4,h5,h6{margin:0}

.eyebrow{
  font-family:var(--font-body);
  font-weight:600;
  font-size:0.8125rem;
  letter-spacing:var(--tracking-eyebrow);
  text-transform:uppercase;
  color:#9A5B00; /* satteres Brand-Gold: 4,9:1 Kontrast auf Leinen (WCAG AA) */
}

.display-xl,.display-lg,.display-md,h1,h2,h3{
  font-family:var(--font-display);
  font-weight:500;
  font-variation-settings:"opsz" 36;
  letter-spacing:var(--tracking-tight);
  line-height:var(--lh-tight);
  color:var(--fg-1);
}

.display-xl{font-size:var(--fs-display-xl);font-variation-settings:"opsz" 72}
.display-lg{font-size:var(--fs-display-lg);font-variation-settings:"opsz" 60}
.display-md{font-size:var(--fs-display-md);font-variation-settings:"opsz" 48}
h1{font-size:var(--fs-h1);line-height:var(--lh-snug)}
h2{font-size:var(--fs-h2);line-height:var(--lh-snug)}
h3{font-size:var(--fs-h3);line-height:var(--lh-snug);font-weight:600;font-variation-settings:"opsz" 24}
h4{font-size:var(--fs-h4);font-family:var(--font-body);font-weight:600;letter-spacing:0;line-height:var(--lh-snug);color:var(--fg-1)}

p{margin:0 0 1em;max-width:65ch;text-wrap:pretty}
.lead{font-family:var(--font-display);font-weight:400;font-size:var(--fs-lead);line-height:var(--lh-relaxed);color:var(--fg-2);font-variation-settings:"opsz" 24}

a{color:var(--fg-link);text-decoration-thickness:1px;text-underline-offset:0.18em;transition:color var(--dur-fast) var(--ease-out)}
a:hover{color:var(--sun-700)}
a:focus-visible{outline:none;box-shadow:var(--focus-ring);border-radius:2px}

/* ══════════════════════════════════════════════════════════════════════
   Layout helpers
   ══════════════════════════════════════════════════════════════════════ */
.container{max-width:1200px;margin:0 auto;padding:0 32px}
.container-narrow{max-width:720px;margin-inline:auto;padding:0 32px}
.container-text{max-width:900px;margin-inline:auto;padding:0 32px}

.btn{
  display:inline-flex;align-items:center;gap:8px;
  font-family:var(--font-body);font-weight:600;font-size:16px;
  padding:12px 22px;border-radius:8px;cursor:pointer;border:none;line-height:1.2;
  transition:all var(--dur-fast) var(--ease-out);text-decoration:none;
}
.btn-primary{background:var(--wine-600);color:var(--linen-0)}
.btn-primary:hover{background:var(--wine-700);color:var(--linen-0)}
.btn-secondary{background:transparent;color:var(--wine-600);box-shadow:inset 0 0 0 1.5px var(--wine-600)}
.btn-secondary:hover{background:var(--wine-50)}
.btn-ghost{background:transparent;color:var(--fg-1)}
.btn-ghost:hover{color:var(--wine-600)}
.btn-accent{background:var(--sun-500);color:var(--linen-950)}
.btn-accent:hover{background:var(--sun-600);color:var(--linen-950)}
.btn:focus-visible{outline:none;box-shadow:var(--focus-ring)}

.arrow{transition:transform var(--dur-base) ease;display:inline-block}
a:hover .arrow,.btn:hover .arrow{transform:translateX(4px)}

.hsh-section{padding:96px 0}
.hsh-section-head{margin-bottom:48px;max-width:760px}
.hsh-section-head .eyebrow{margin-bottom:12px;display:inline-block}

/* ══════════════════════════════════════════════════════════════════════
   Header
   ══════════════════════════════════════════════════════════════════════ */
.hsh-header-wrap{position:sticky;top:0;z-index:50}

.hsh-topstrip{
  background:var(--wine-800);color:var(--wine-100);
  font-family:var(--font-body);font-size:13px;
  padding:9px 32px;display:flex;gap:16px;align-items:center;
  white-space:nowrap;overflow:hidden;
}
.hsh-topstrip a{color:var(--wine-100);text-decoration:none;display:inline-flex;align-items:center;gap:6px}
.hsh-topstrip a:hover{color:var(--sun-300)}
.hsh-topstrip .sep{color:var(--wine-500)}
.hsh-topstrip .spacer{flex:1}
.hsh-topstrip .topstrip-karriere{
  background:var(--sun-500);color:var(--wine-900,#3d0f1f);
  padding:7px 18px;border-radius:999px;font-weight:700;font-size:15px;
  box-shadow:0 2px 8px rgba(0,0,0,0.18);
  transition:background 140ms,transform 140ms;
}
.hsh-topstrip .topstrip-karriere:hover{background:var(--sun-300);color:var(--wine-900,#3d0f1f);transform:translateY(-1px)}
.hsh-topstrip > span{display:inline-flex;align-items:center;gap:6px}
.hsh-topstrip .icon{width:14px;height:14px;flex-shrink:0;opacity:.85}
@media (max-width:860px){.hsh-topstrip .topstrip-mail{display:none}}

.hsh-header{
  background:rgba(253,250,241,0.85);
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
  border-bottom:1px solid transparent;
  padding:16px 32px;display:flex;align-items:center;gap:32px;
  transition:all var(--dur-base) ease;
}
.hsh-header.is-scrolled{background:rgba(253,250,241,0.95);border-bottom-color:var(--border-1);box-shadow:var(--shadow-1)}

.hsh-logo{display:flex;align-items:center;gap:14px;text-decoration:none;flex-shrink:0;color:var(--fg-1)}
.hsh-logo-marks{display:flex;gap:6px;align-items:center}
.hsh-logo-marks img{height:64px;width:auto;display:block}

.hsh-nav{display:flex;gap:2px;flex:1;margin-left:8px;align-items:center}
/* Desktop: Logo + Navigation + Telefon-Button als Gruppe zentriert;
   der Button steht direkt hinter dem letzten Menuepunkt. */
@media (min-width:1141px){
  .hsh-header{justify-content:center}
  .hsh-nav{flex:0 0 auto}
}
.hsh-nav-item{position:relative;padding:0 10px;white-space:nowrap}
.hsh-nav-item > a{
  font-family:var(--font-body);font-size:15px;font-weight:500;
  color:var(--fg-1);text-decoration:none;padding:8px 2px;display:inline-flex;
  align-items:center;gap:4px;white-space:nowrap;position:relative;
}
.hsh-nav-item > a:hover{color:var(--wine-600)}
.hsh-nav-item > a.active{color:var(--wine-600);font-weight:600}
.hsh-nav-item > a.active::after{
  content:"";position:absolute;left:0;right:14px;bottom:-2px;
  height:3px;background:var(--sun-500);border-radius:2px;
}
.hsh-nav-item .caret{font-size:10px;opacity:.6;transition:transform var(--dur-fast)}
.hsh-nav-item:hover .caret{transform:rotate(180deg)}

.hsh-nav-sub{
  position:absolute;top:100%;left:8px;
  background:var(--bg-paper);border:1px solid var(--border-1);border-radius:12px;
  box-shadow:var(--shadow-3);padding:8px;min-width:240px;
  display:none;flex-direction:column;gap:2px;
  margin-top:14px;
}
.hsh-nav-item:hover .hsh-nav-sub,
.hsh-nav-item:focus-within .hsh-nav-sub{display:flex}
.hsh-nav-sub::before{
  content:"";position:absolute;top:-14px;left:0;right:0;height:14px;
}
.hsh-nav-sub a{
  font-family:var(--font-body);font-size:14px;color:var(--fg-2);font-weight:500;
  text-decoration:none;padding:9px 12px;border-radius:8px;
  display:flex;align-items:center;gap:8px;position:relative;
}
.hsh-nav-sub a:hover{background:var(--wine-50);color:var(--wine-700)}

/* "— Übersicht"-Link: nur dezente Trennlinie unten, sonst wie alle anderen Items.
   KEIN bold/Dot/Farbe im Default-Zustand. Wird nur per .active hervorgehoben. */
.hsh-nav-sub a.overview{
  border-bottom:1px solid var(--border-1);
  margin-bottom:4px;
  padding-bottom:11px;
  border-radius:8px 8px 0 0;
}

/* Active-State: gilt EXAKT für die Seite, auf der man gerade ist. */
.hsh-nav-sub a.active{
  background:var(--wine-50);color:var(--wine-700);font-weight:700;
  box-shadow:inset 3px 0 0 var(--sun-500);
}
.hsh-nav-sub a.active::after{
  content:"●";margin-left:auto;color:var(--sun-500);font-size:10px;line-height:1;
}

.hsh-cta-phone{
  display:inline-flex;gap:8px;align-items:center;
  background:var(--sun-500);color:var(--linen-950);
  padding:11px 18px;border-radius:8px;
  font-family:var(--font-body);font-weight:600;font-size:14px;
  text-decoration:none;transition:background var(--dur-fast) ease;
  white-space:nowrap;flex-shrink:0;
}
.hsh-cta-phone:hover{background:var(--sun-600);color:var(--linen-950)}
.hsh-cta-phone svg{width:16px;height:16px;flex-shrink:0}

.hsh-burger{
  display:none;background:none;border:0;cursor:pointer;
  width:44px;height:44px;align-items:center;justify-content:center;color:var(--fg-1);
  border-radius:8px;
}
.hsh-burger:hover{background:var(--linen-100)}
.hsh-burger svg{width:24px;height:24px}

/* ══════════════════════════════════════════════════════════════════════
   Hero
   ══════════════════════════════════════════════════════════════════════ */
.hsh-hero{
  padding:80px 32px 96px;background:var(--bg-page);
  position:relative;overflow:hidden;
}
.hsh-hero::before{
  content:"";position:absolute;top:-120px;right:-80px;width:420px;height:420px;
  background:radial-gradient(circle,var(--sun-100),transparent 70%);
  opacity:0.6;pointer-events:none;
}
.hsh-hero-grid{
  max-width:1280px;margin:0 auto;
  display:grid;grid-template-columns:1fr 1.05fr;gap:64px;align-items:center;
  position:relative;
}
.hsh-hero-copy .eyebrow{margin-bottom:16px;display:inline-block}
.hsh-hero-headline{
  font-family:var(--font-display);
  font-size:clamp(40px,5vw,80px);
  font-weight:500;font-variation-settings:'opsz' 72;
  line-height:1.02;letter-spacing:-0.025em;color:var(--fg-1);
  margin:0 0 24px;
}
.hsh-hero-headline em{font-style:italic;color:var(--sun-600);font-weight:400}
.hsh-hero-copy .lead{
  font-family:var(--font-display);font-size:22px;line-height:1.5;color:var(--fg-2);
  margin:0 0 32px;max-width:50ch;font-weight:400;font-variation-settings:'opsz' 24;
}
.hsh-hero-ctas{display:flex;gap:12px;flex-wrap:wrap;margin-bottom:28px}
.hsh-hero-meta{
  display:flex;gap:10px;align-items:center;
  font-size:15px;color:var(--fg-3);
  padding-top:24px;border-top:1px solid var(--border-1);
}
.hsh-hero-meta strong{color:var(--fg-1);font-weight:600}
.hsh-hero-meta svg{width:18px;height:18px;color:var(--sun-600);flex-shrink:0}

.hsh-hero-img{position:relative}
.hsh-hero-photo{
  aspect-ratio:4 / 5;border-radius:20px;
  background:
    linear-gradient(180deg,transparent 50%,rgba(31,26,23,0.34)),
    linear-gradient(135deg,#B85973 0%,#D08B9F 25%,#FFCB66 65%,#F8A000 100%);
  box-shadow:var(--shadow-4);position:relative;overflow:hidden;
}
.hsh-hero-photo img{width:100%;height:100%;object-fit:cover;display:block}
.hsh-hero-photo::after{
  content:"";position:absolute;inset:0;pointer-events:none;
  background:
    radial-gradient(at 30% 25%,rgba(255,240,200,0.4),transparent 40%),
    radial-gradient(at 75% 80%,rgba(44,84,64,0.5),transparent 50%);
}
.hsh-hero-photo img + .ph-overlay{display:none}
.ph-tag{
  position:absolute;bottom:20px;left:20px;color:rgba(255,250,240,0.85);
  font-family:var(--font-body);font-size:13px;font-weight:500;
  z-index:1;letter-spacing:0.04em;
}
.hsh-hero-floater{
  position:absolute;bottom:32px;left:-40px;
  background:var(--bg-paper);border-radius:16px;padding:16px 20px;
  box-shadow:var(--shadow-4);display:flex;gap:14px;align-items:center;max-width:320px;
}
.hsh-hero-floater img{width:56px;height:auto;flex-shrink:0}
.floater-eyebrow{
  font-family:var(--font-body);font-weight:600;font-size:11px;
  letter-spacing:0.12em;text-transform:uppercase;color:var(--sun-600);margin-bottom:2px;
}
.floater-body{font-size:14px;color:var(--fg-1);line-height:1.4;font-weight:500}

/* ══════════════════════════════════════════════════════════════════════
   Sub-brand tiles
   ══════════════════════════════════════════════════════════════════════ */
.hsh-section-tiles{background:var(--bg-paper)}
.hsh-tile-grid{display:grid;grid-template-columns:1fr 1fr 1fr;gap:20px}
.hsh-tile{
  display:flex;flex-direction:column;background:var(--bg-page);border-radius:16px;
  padding:28px 28px 32px;border:1px solid var(--border-1);
  text-decoration:none;color:var(--fg-1);
  transition:all var(--dur-base) var(--ease-out);cursor:pointer;
}
.hsh-tile:hover{
  background:var(--linen-0);box-shadow:var(--shadow-3);
  transform:translateY(-4px);border-color:var(--sun-200);color:var(--fg-1);
}
.hsh-tile-logo{height:92px;width:auto;display:block;margin-bottom:8px;align-self:flex-start}
.hsh-tile .eyebrow{font-size:11px;margin-bottom:4px;display:inline-block}
.hsh-tile-title{
  font-family:var(--font-display);font-size:24px;font-weight:600;
  color:var(--fg-1);letter-spacing:-0.015em;margin-bottom:10px;line-height:1.2;
}
.hsh-tile-body{font-size:15px;line-height:1.55;color:var(--fg-2);margin-bottom:14px}
.hsh-tile-bullets{
  list-style:none;padding:0;margin:0 0 20px;
  display:grid;grid-template-columns:1fr 1fr;gap:6px 12px;
}
.hsh-tile-bullets li{
  padding:3px 0 3px 18px;position:relative;
  font-size:14px;color:var(--fg-2);
}
.hsh-tile-bullets li::before{
  content:"";position:absolute;left:0;top:11px;
  width:8px;height:2px;background:var(--sun-500);
}
.hsh-tile-cta{font-family:var(--font-body);font-size:14px;font-weight:600;color:var(--wine-600);margin-top:auto}
.hsh-news-grid.cols-2{grid-template-columns:1fr 1fr}
@media (max-width:680px){.hsh-news-grid.cols-2{grid-template-columns:1fr}}
/* News-Karte mit A4-Titelseiten-Vorschau (Heimatblaettle/Kalender) */
.hsh-news-card.has-cover{display:flex;gap:20px;align-items:flex-start}
.hsh-news-cover{
  flex-shrink:0;width:112px;aspect-ratio:210/297;
  border-radius:8px;overflow:hidden;
  border:1px solid var(--border-1);box-shadow:var(--shadow-2);
  background:var(--linen-0);
}
.hsh-news-cover img{width:100%;height:100%;object-fit:cover;display:block}
.hsh-news-card.has-cover .hsh-news-inner{flex:1;min-width:0}
@media (max-width:400px){
  .hsh-news-card.has-cover{flex-direction:column}
  .hsh-news-cover{width:140px}
}
.hsh-relatives-grid.cols-3{grid-template-columns:repeat(3,1fr)}
@media (max-width:1140px){.hsh-relatives-grid.cols-3{grid-template-columns:repeat(2,1fr)}}
@media (max-width:680px){.hsh-relatives-grid.cols-3{grid-template-columns:1fr}}
.hsh-relatives-grid.cols-2{grid-template-columns:1fr 1fr}
@media (max-width:680px){.hsh-relatives-grid.cols-2{grid-template-columns:1fr}}
/* Kacheln innerhalb von article-body (content_html): Artikel-Typo/Link-Styles neutralisieren */
.article-body a.hsh-relatives-tile{text-decoration:none;color:var(--fg-1)}
.article-body .hsh-relatives-tile h3{font-family:var(--font-body);font-weight:600;font-size:18px;margin:0 0 8px}
.article-body .hsh-relatives-tile p{color:var(--fg-3);font-size:14px;margin:0 0 12px;line-height:1.5}

/* ══════════════════════════════════════════════════════════════════════
   Für Angehörige — Relatives tiles (Bonus zur UI-Kit-Vorlage)
   ══════════════════════════════════════════════════════════════════════ */
.hsh-section-relatives{background:var(--bg-page)}
.hsh-relatives-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:20px}
.hsh-relatives-tile{
  background:var(--bg-paper);padding:24px;border-radius:14px;
  border:1px solid var(--border-1);text-decoration:none;color:var(--fg-1);
  transition:all var(--dur-base) var(--ease-out);
  display:flex;flex-direction:column;align-items:flex-start;
}
.hsh-relatives-tile .more{margin-top:auto;padding-top:4px}
.hsh-relatives-tile:hover{
  background:var(--wine-50);border-color:var(--wine-200);
  transform:translateY(-2px);box-shadow:var(--shadow-2);color:var(--fg-1);
}
.hsh-relatives-tile .icon{
  width:48px;height:48px;border-radius:12px;
  background:var(--sun-100);color:var(--sun-700);
  display:flex;align-items:center;justify-content:center;
  font-family:var(--font-display);font-weight:600;font-size:24px;
  margin-bottom:16px;
}
.hsh-relatives-tile h3{
  font-size:18px;margin-bottom:8px;
  font-family:var(--font-body);font-weight:600;color:var(--fg-1);
}
.hsh-relatives-tile p{color:var(--fg-3);font-size:14px;margin:0 0 12px;line-height:1.5}
.hsh-relatives-tile .more{
  font-family:var(--font-body);font-size:13px;font-weight:600;color:var(--wine-600);
}

/* ══════════════════════════════════════════════════════════════════════
   Stats band
   ══════════════════════════════════════════════════════════════════════ */
.hsh-section-stats{
  position:relative;overflow:hidden;
  background:
    radial-gradient(at 80% 0%,rgba(248,160,0,0.10),transparent 50%),
    var(--wine-800);
  color:var(--linen-0);
  border-top:1px solid var(--wine-700);border-bottom:1px solid var(--wine-700);
}
.hsh-stats-head{margin-bottom:48px;max-width:760px;position:relative;z-index:1}
.hsh-stats-head h2,.hsh-stats-head .display-md{color:var(--linen-0)}
.hsh-stats-head .eyebrow{color:var(--sun-400)}
.hsh-stats-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:32px;position:relative;z-index:1}
.hsh-stat{padding-left:20px;border-left:2px solid var(--sun-500)}
.hsh-stat-num{
  font-family:var(--font-display);font-size:80px;font-weight:500;
  line-height:1;letter-spacing:-0.03em;color:var(--linen-0);
  font-variation-settings:'opsz' 72;
}
.hsh-stat-num .pre{color:var(--sun-400);font-size:44px;margin-right:4px;vertical-align:12px}
.hsh-stat-num .unit{font-size:40px;color:var(--sun-400);vertical-align:24px}
.hsh-stat-label{
  font-family:var(--font-body);font-size:14px;font-weight:600;
  text-transform:uppercase;letter-spacing:0.1em;color:var(--wine-200);
  margin-top:12px;max-width:22ch;
}

/* ══════════════════════════════════════════════════════════════════════
   Leadership quote — Single + Double-GF Layout
   ══════════════════════════════════════════════════════════════════════ */
.hsh-section-quote{background:var(--bg-page)}

/* Double-GF layout: zwei Karten nebeneinander */
.hsh-leadership-grid{
  display:grid;grid-template-columns:1fr 1fr;gap:48px;align-items:start;
}
.hsh-leadership-card{
  display:grid;grid-template-columns:200px 1fr;gap:28px;align-items:start;
}
.hsh-leadership-portrait{
  aspect-ratio:3/4;border-radius:16px;overflow:hidden;
  box-shadow:var(--shadow-3);
  background:linear-gradient(160deg,#8B5C4B 0%,#A87760 40%,#6E3B2A 100%);
  position:relative;
}
.hsh-leadership-portrait img{width:100%;height:100%;object-fit:cover;display:block}
.hsh-leadership-portrait-fallback{
  width:100%;height:100%;display:flex;align-items:center;justify-content:center;
  font-family:var(--font-display);font-size:64px;font-weight:500;color:var(--linen-0);
}
.hsh-leadership-body{display:flex;flex-direction:column;gap:14px}
.hsh-leadership-body .hsh-quote-glyph{
  font-family:var(--font-display);color:var(--sun-400);
  font-size:80px;line-height:0.6;font-weight:500;display:block;margin-bottom:-4px;
}
.hsh-leadership-quote{
  font-family:var(--font-display);font-size:19px;line-height:1.55;color:var(--fg-1);
  font-weight:400;margin:0;font-style:italic;
}
.hsh-leadership-attrib{padding-top:8px;border-top:1px solid var(--border-1)}
.hsh-leadership-attrib .hsh-portrait-name{font-family:var(--font-display);font-size:18px;font-weight:600;color:var(--fg-1)}
.hsh-leadership-attrib .hsh-portrait-role{font-family:var(--font-body);font-size:13px;color:var(--fg-2);font-weight:500;margin-top:2px}

@media (max-width:1080px){
  .hsh-leadership-card{grid-template-columns:160px 1fr;gap:20px}
  .hsh-leadership-grid{gap:36px}
}
@media (max-width:880px){
  .hsh-leadership-grid{grid-template-columns:1fr;gap:32px}
}
@media (max-width:560px){
  .hsh-leadership-card{grid-template-columns:1fr;gap:18px}
  .hsh-leadership-portrait{max-width:240px;margin:0 auto}
}

/* Single-GF layout (Backward-Compat falls noch irgendwo genutzt) */
.hsh-quote-grid{display:grid;grid-template-columns:360px 1fr;gap:64px;align-items:start}
.hsh-quote-portrait{}
.hsh-portrait{
  aspect-ratio:3 / 4;border-radius:16px;
  background:
    linear-gradient(180deg,transparent 60%,rgba(31,26,23,0.30)),
    linear-gradient(160deg,#8B5C4B 0%,#A87760 40%,#6E3B2A 100%);
  box-shadow:var(--shadow-3);position:relative;overflow:hidden;
}
.hsh-portrait img{width:100%;height:100%;object-fit:cover;display:block}
.hsh-portrait::after{
  content:"";position:absolute;inset:0;pointer-events:none;
  background:radial-gradient(at 35% 30%,rgba(255,235,200,0.35),transparent 50%);
}
.hsh-portrait-meta{padding-top:16px}
.hsh-portrait-name{font-family:var(--font-display);font-size:22px;font-weight:600;color:var(--fg-1)}
.hsh-portrait-role{font-family:var(--font-body);font-size:14px;color:var(--fg-2);font-weight:500}

.hsh-quote-body{padding-top:12px}
.hsh-quote-body .eyebrow{margin-bottom:16px;display:inline-block}
.hsh-quote-glyph{
  font-family:var(--font-display);color:var(--sun-400);
  font-size:110px;line-height:0.7;font-weight:500;display:block;margin-bottom:4px;
}
.hsh-quote-text{
  font-family:var(--font-display);font-size:28px;line-height:1.45;color:var(--fg-1);
  font-weight:400;margin:0 0 24px;max-width:56ch;
}
.hsh-quote-text em{font-style:italic;color:var(--wine-600)}
.hsh-quote-after{font-size:17px;color:var(--fg-2);line-height:1.6;max-width:56ch;margin-bottom:20px}
.hsh-quote-link{font-family:var(--font-body);font-weight:600;font-size:15px;color:var(--wine-600);text-decoration:none}

/* ══════════════════════════════════════════════════════════════════════
   News strip
   ══════════════════════════════════════════════════════════════════════ */
.hsh-section-news{background:var(--bg-paper)}
.hsh-news-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
.hsh-news-card{
  background:var(--bg-page);border-radius:14px;padding:24px;
  border:1px solid var(--border-1);text-decoration:none;color:var(--fg-1);
  transition:all var(--dur-base) ease;display:block;
}
.hsh-news-card:hover{box-shadow:var(--shadow-2);transform:translateY(-2px);color:var(--fg-1)}
.hsh-news-icon{
  width:56px;height:56px;border-radius:14px;
  display:flex;align-items:center;justify-content:center;margin-bottom:20px;
}
.hsh-news-icon svg{width:28px;height:28px}
.hsh-news-card.accent-butter .hsh-news-icon{background:var(--sun-100);color:var(--sun-700)}
.hsh-news-card.accent-spruce .hsh-news-icon{background:var(--wine-100);color:var(--wine-700)}
.hsh-news-card.accent-clay   .hsh-news-icon{background:var(--sun-100);color:var(--sun-700)}
.hsh-news-meta{
  display:flex;gap:8px 12px;margin-bottom:10px;
  font-family:var(--font-body);font-size:12px;font-weight:600;
  letter-spacing:0.08em;text-transform:uppercase;flex-wrap:wrap;
}
.hsh-news-meta > span{white-space:nowrap}
.hsh-news-kind{color:#9A5B00}
.hsh-news-tag{color:var(--fg-2)}
.hsh-news-title{
  font-family:var(--font-display);font-size:22px;font-weight:600;
  color:var(--fg-1);margin-bottom:8px;line-height:1.25;letter-spacing:-0.01em;
}
.hsh-news-body{font-size:15px;line-height:1.55;color:var(--fg-2);margin-bottom:16px}
.hsh-news-link{font-family:var(--font-body);font-size:14px;font-weight:600;color:var(--wine-600)}

/* ══════════════════════════════════════════════════════════════════════
   Contact CTA
   ══════════════════════════════════════════════════════════════════════ */
.hsh-section-contact{
  background:
    radial-gradient(at 80% 100%,rgba(199,117,86,0.18),transparent 50%),
    var(--wine-800);
}
.hsh-contact-grid{display:grid;grid-template-columns:1fr 480px;gap:80px;align-items:start}
.hsh-contact-copy .eyebrow{margin-bottom:16px;display:inline-block;color:var(--sun-400)}
.hsh-contact-copy h2,.hsh-contact-copy .display-md{color:var(--linen-0)}
.hsh-contact-copy h2 em{font-style:italic;color:var(--sun-300)}
.hsh-contact-copy p{color:var(--wine-100);font-size:18px;line-height:1.6;max-width:52ch}
.hsh-contact-ways{display:flex;flex-direction:column;gap:14px;margin-top:36px}
.hsh-contact-way{
  display:flex;gap:16px;align-items:center;color:var(--linen-0);text-decoration:none;
  padding:14px 16px;background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.08);border-radius:12px;
  transition:background var(--dur-fast) ease;
}
.hsh-contact-way:hover{background:rgba(255,255,255,0.09);color:var(--linen-0)}
.hsh-contact-way svg{color:var(--sun-400);width:24px;height:24px;flex-shrink:0}
.hsh-way-label{
  font-family:var(--font-body);font-size:12px;font-weight:600;
  text-transform:uppercase;letter-spacing:0.12em;color:var(--wine-200);margin-bottom:2px;
}
.hsh-way-value{
  font-family:var(--font-display);font-size:17px;font-weight:500;
  color:var(--linen-0);word-break:break-word;
}

.hsh-contact-form{
  background:var(--bg-paper);border-radius:20px;padding:32px;
  box-shadow:var(--shadow-4);display:flex;flex-direction:column;gap:16px;
}
.hsh-form-head h3{
  font-family:var(--font-display);font-size:24px;font-weight:600;color:var(--fg-1);
  margin:0 0 6px;
}
.hsh-form-head p{font-size:14px;color:var(--fg-3);margin:0}
.hsh-form-row{display:flex;flex-direction:column}
.hsh-form-row label{
  display:flex;flex-direction:column;gap:6px;
  font-family:var(--font-body);font-weight:600;font-size:14px;color:var(--fg-1);
}
.hsh-form-row input[type="text"],
.hsh-form-row input[type="tel"],
.hsh-form-row input[type="email"],
.hsh-form-row textarea,
.hsh-form-row select{
  font-family:var(--font-body);font-size:16px;
  padding:12px 14px;border-radius:8px;border:1.5px solid var(--border-2);
  background:var(--bg-paper);color:var(--fg-1);
  transition:border-color var(--dur-fast);outline:none;font-weight:400;
  width:100%;max-width:100%;
}
.hsh-form-row textarea{min-height:120px;resize:vertical;line-height:1.55;font-family:inherit}
.hsh-form-row input:focus,
.hsh-form-row textarea:focus,
.hsh-form-row select:focus{border-color:var(--wine-600);box-shadow:0 0 0 4px var(--wine-50)}
.hsh-form-row input.field-bad,
.hsh-form-row textarea.field-bad{border-color:#C0392B;box-shadow:0 0 0 3px rgba(192,57,43,0.12)}
.hsh-checkbox.checkbox-bad span{color:#7A1F2B;font-weight:600 !important}
.hsh-checkbox{
  flex-direction:row !important;align-items:flex-start;gap:10px !important;
  font-weight:400 !important;font-size:13px !important;color:var(--fg-2) !important;
}
.hsh-checkbox input{width:18px;height:18px;margin-top:2px;flex-shrink:0}
.hsh-form-row.row-2{display:grid;grid-template-columns:1fr 1fr;gap:12px}
.hsh-form-sent{
  background:#E8F0E8;color:#2E4A36;padding:36px 28px;margin:8px 0 12px;
  border-radius:14px;border:1px solid #C0D2BB;font-size:16px;
  text-align:center;line-height:1.6;
}
.hsh-form-sent strong{display:block;font-family:var(--font-display);font-size:21px;font-weight:600;margin-bottom:10px}
.hsh-form-sent p{margin:0 0 14px;color:#3D5A45}
.hsh-form-sent p:last-child{margin-bottom:0}
.hsh-sent-icon{
  display:inline-flex;align-items:center;justify-content:center;
  width:52px;height:52px;border-radius:50%;background:#2E4A36;color:#E8F0E8;
  margin-bottom:16px;
}
.hsh-sent-phone{border-top:1px solid #C0D2BB;padding-top:14px;font-size:15px}
.hsh-sent-phone a{
  font-family:var(--font-display);font-size:19px;font-weight:600;
  color:#2E4A36;text-decoration:none;
}
.hsh-sent-phone a:hover{text-decoration:underline}
.hsh-form-err{
  background:#FBE9EB;color:#6B1820;padding:14px 18px;
  border-radius:10px;border:1px solid #F2C4C8;font-size:14px;
}

/* ══════════════════════════════════════════════════════════════════════
   FAQ
   ══════════════════════════════════════════════════════════════════════ */
.faq-list{max-width:800px;margin-inline:auto}
.faq-item{border-bottom:1px solid var(--border-1);padding-block:var(--s-4)}
.faq-item summary{
  cursor:pointer;font-weight:600;font-size:1.1rem;color:var(--fg-1);
  padding-right:2rem;position:relative;list-style:none;
}
.faq-item summary::-webkit-details-marker{display:none}
.faq-item summary::after{
  content:'+';position:absolute;right:0;top:0;
  font-size:1.5rem;color:var(--wine-600);font-weight:400;
  transition:transform var(--dur-fast) var(--ease-out);
}
.faq-item[open] summary::after{content:'−'}
.faq-item p{color:var(--fg-2);margin-top:var(--s-3);margin-bottom:0;max-width:65ch}

/* ══════════════════════════════════════════════════════════════════════
   Steps / Process
   ══════════════════════════════════════════════════════════════════════ */
.steps{
  display:grid;gap:var(--s-5);
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  counter-reset:step;
}
.step{
  background:var(--bg-paper);border-radius:var(--r-md);padding:var(--s-6) var(--s-5);
  border:1px solid var(--border-1);position:relative;counter-increment:step;
}
.step::before{
  content:counter(step,decimal-leading-zero);
  font-family:var(--font-display);color:var(--sun-500);
  font-size:2.5rem;line-height:1;display:block;margin-bottom:var(--s-3);font-weight:600;
}

/* ══════════════════════════════════════════════════════════════════════
   Team grid
   ══════════════════════════════════════════════════════════════════════ */
/* auto-fill (nicht auto-fit) sorgt dafür, dass Karten gleich groß bleiben,
   auch wenn nur 1 Mitarbeiter pro Abteilung sichtbar ist.
   Feste 5-Spalten-Layout-Strategie mit Fallback-Stacking */
.team-grid{
  display:grid;gap:24px;
  grid-template-columns:repeat(5,minmax(0,1fr));
}
@media (max-width:1100px){.team-grid{grid-template-columns:repeat(4,minmax(0,1fr))}}
@media (max-width:880px){.team-grid{grid-template-columns:repeat(3,minmax(0,1fr))}}
@media (max-width:640px){.team-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media (max-width:380px){.team-grid{grid-template-columns:1fr 1fr;gap:16px}}

.team-card{
  text-align:center;min-width:0;
  background:transparent;border:0;padding:0;font:inherit;color:inherit;
  display:block;width:100%;
}
.team-card.has-bio{cursor:pointer;transition:transform 240ms cubic-bezier(.22,1,.36,1)}
.team-card.has-bio:hover{transform:translateY(-3px)}
.team-card.has-bio:focus-visible{outline:2px solid var(--sun-500);outline-offset:6px;border-radius:14px}
.team-photo{
  position:relative;
  width:100%;aspect-ratio:1;border-radius:14px;
  background:var(--linen-200);overflow:hidden;margin-bottom:12px;
  box-shadow:var(--shadow-1);
  transition:box-shadow 240ms cubic-bezier(.22,1,.36,1);
}
.team-card.has-bio:hover .team-photo{box-shadow:var(--shadow-3)}
.team-photo img{width:100%;height:100%;object-fit:cover;display:block;transition:transform 480ms cubic-bezier(.22,1,.36,1)}
.team-card.has-bio:hover .team-photo img{transform:scale(1.04)}
.team-photo-fallback{
  display:flex;align-items:center;justify-content:center;height:100%;
  background:linear-gradient(135deg,var(--wine-200),var(--sun-200));
  font-family:var(--font-display);font-size:36px;color:var(--wine-700);
}
.team-bio-badge{
  position:absolute;top:10px;right:10px;
  display:flex;align-items:center;justify-content:center;
  width:28px;height:28px;border-radius:50%;
  background:rgba(255,255,255,.94);color:var(--wine-600);
  box-shadow:0 2px 8px rgba(31,26,23,.18);
  backdrop-filter:saturate(140%) blur(4px);
  -webkit-backdrop-filter:saturate(140%) blur(4px);
  opacity:0;transform:translateY(-4px);
  transition:opacity 220ms,transform 220ms;
}
.team-card.has-bio:hover .team-bio-badge,
.team-card.has-bio:focus-visible .team-bio-badge{opacity:1;transform:translateY(0)}
.team-name{font-weight:600;font-size:16px;color:var(--fg-1);line-height:1.3;word-wrap:break-word}
.team-role{font-size:14px;color:var(--fg-3);margin-top:2px;line-height:1.4}
.team-bio-hint{
  display:inline-flex;align-items:center;gap:5px;
  margin-top:8px;font-size:13px;font-weight:600;
  color:var(--sun-600,#C58000);letter-spacing:0.01em;
  opacity:0;transform:translateY(-2px);
  transition:opacity 220ms,transform 220ms,color 160ms;
}
.team-card.has-bio:hover .team-bio-hint,
.team-card.has-bio:focus-visible .team-bio-hint{opacity:1;transform:translateY(0)}
@media (hover:none){
  .team-bio-hint{opacity:1;transform:none;color:var(--wine-600)}
  .team-bio-badge{opacity:1;transform:none}
}

/* ── Team Bio Modal ───────────────────────────────────────────────────── */
.team-bio-modal{
  position:fixed;inset:0;z-index:1000;
  display:flex;align-items:center;justify-content:center;padding:24px;
}
.team-bio-modal[hidden]{display:none}
.team-bio-backdrop{
  position:absolute;inset:0;background:rgba(31,26,23,.55);
  backdrop-filter:blur(6px);-webkit-backdrop-filter:blur(6px);
  opacity:0;transition:opacity 260ms cubic-bezier(.22,1,.36,1);
}
.team-bio-modal.is-open .team-bio-backdrop{opacity:1}
.team-bio-dialog{
  position:relative;background:var(--linen-0,#FDFAF1);
  border-radius:20px;max-width:520px;width:100%;
  box-shadow:0 30px 80px rgba(31,26,23,.35);
  overflow:hidden;
  transform:translateY(16px) scale(.98);opacity:0;
  transition:transform 320ms cubic-bezier(.22,1,.36,1),opacity 220ms;
  max-height:calc(100vh - 48px);overflow-y:auto;
}
.team-bio-modal.is-open .team-bio-dialog{transform:translateY(0) scale(1);opacity:1}
.team-bio-close{
  position:absolute;top:14px;right:14px;z-index:2;
  width:36px;height:36px;border-radius:50%;border:0;
  background:rgba(255,255,255,.92);color:var(--fg-1);
  display:flex;align-items:center;justify-content:center;
  cursor:pointer;box-shadow:0 2px 10px rgba(0,0,0,.12);
  transition:background 160ms,transform 160ms;
}
.team-bio-close:hover{background:white;transform:rotate(90deg)}
.team-bio-portrait{
  width:100%;aspect-ratio:16/10;
  background:linear-gradient(135deg,var(--linen-200),var(--linen-100));
  position:relative;overflow:hidden;
}
.team-bio-portrait img{width:100%;height:100%;object-fit:cover;object-position:center 30%;display:block}
.team-bio-portrait::after{
  content:"";position:absolute;inset:auto 0 0 0;height:40%;
  background:linear-gradient(to top,rgba(31,26,23,.18),transparent);
  pointer-events:none;
}
.team-bio-portrait-fallback{
  display:flex;align-items:center;justify-content:center;height:100%;
  background:linear-gradient(135deg,var(--wine-300),var(--sun-300));
  font-family:var(--font-display);font-size:72px;color:white;
}
.team-bio-body{padding:28px 32px 32px}
.team-bio-eyebrow{
  font-family:var(--font-body);font-weight:600;
  font-size:12px;letter-spacing:.14em;text-transform:uppercase;
  color:var(--sun-600,#C58000);margin-bottom:6px;
}
.team-bio-name{
  font-family:var(--font-display);font-weight:500;
  font-size:30px;line-height:1.15;color:var(--fg-1);
  margin:0 0 14px;letter-spacing:-0.01em;
}
.team-bio-text{
  font-size:16px;line-height:1.65;color:var(--fg-2);
  white-space:normal;margin:0;
}
body.no-scroll{overflow:hidden}
@media (max-width:520px){
  .team-bio-modal{padding:0}
  .team-bio-dialog{border-radius:0;max-height:100vh;height:100vh}
  .team-bio-portrait{aspect-ratio:4/3}
}

/* ══════════════════════════════════════════════════════════════════════
   Article (Blog)
   ══════════════════════════════════════════════════════════════════════ */
.article{
  max-width:900px;margin-inline:auto;
  padding-inline:32px;padding-block:80px;
}
.article-header{margin-bottom:48px}
.article-meta{font-size:14px;color:var(--fg-3);margin-bottom:12px}
.article-meta a{color:var(--fg-3)}
.article h1{
  font-family:var(--font-display);font-weight:500;
  font-size:clamp(34px,3vw + 1rem,56px);
  line-height:1.08;letter-spacing:-0.02em;margin-bottom:16px;
  font-variation-settings:'opsz' 60;
}
.article-lead{
  font-family:var(--font-display);font-size:22px;color:var(--fg-2);
  line-height:1.5;max-width:65ch;
}
.article-hero{
  aspect-ratio:16 / 9;border-radius:14px;
  background:linear-gradient(135deg,var(--wine-100),var(--sun-100));
  margin:32px 0 40px;overflow:hidden;
  display:flex;align-items:center;justify-content:center;
  color:var(--wine-700);font-family:var(--font-display);font-style:italic;
}
.article-hero img{width:100%;height:100%;object-fit:cover}
.article-body{font-size:18px;line-height:1.7}
.article-body h2{
  font-family:var(--font-display);font-weight:500;
  font-size:30px;margin-top:48px;margin-bottom:14px;line-height:1.2;
}
.article-body h3{font-size:22px;margin-top:32px;margin-bottom:12px;font-weight:600}
.article-body ul,.article-body ol{padding-left:1.5em;margin-bottom:1.2em}
.article-body li{margin-bottom:0.4em;max-width:65ch}
.article-body blockquote{
  border-left:4px solid var(--sun-500);padding-left:24px;
  font-family:var(--font-display);font-style:italic;font-size:22px;
  color:var(--fg-2);margin:32px 0;
}
.article-img-placeholder{
  aspect-ratio:16/9;border-radius:14px;
  background:var(--linen-100);border:2px dashed var(--linen-300);
  display:flex;align-items:center;justify-content:center;flex-direction:column;
  padding:32px;text-align:center;margin:32px 0;
  color:var(--fg-3);font-size:14px;
}
.article-img-placeholder code{
  background:var(--linen-200);padding:2px 6px;border-radius:4px;
  font-size:13px;display:inline-block;margin-top:8px;color:var(--wine-700);
}
.article-cta{
  background:linear-gradient(135deg,var(--wine-50),var(--sun-50));
  border-radius:14px;padding:32px;margin-top:48px;border:1px solid var(--border-1);
}
.article-cta h3{font-family:var(--font-display);margin-bottom:12px;color:var(--wine-700)}

/* ══════════════════════════════════════════════════════════════════════
   Page hero (sub-pages)
   ══════════════════════════════════════════════════════════════════════ */
.page-hero{padding:80px 32px 60px;background:var(--bg-page);position:relative;overflow:hidden}
.page-hero-inner{max-width:900px;margin:0 auto;position:relative;z-index:1}
.page-hero h1{
  font-family:var(--font-display);font-weight:500;
  font-size:clamp(36px,4vw + 1rem,64px);
  line-height:1.05;letter-spacing:-0.02em;margin:8px 0 20px;
  font-variation-settings:'opsz' 60;
}
.page-hero h1 em{font-style:italic;color:var(--sun-600);font-weight:400}
.page-hero .lead{max-width:60ch;margin:0 0 28px}

/* Page content body */
.page-body{padding:60px 32px 80px;background:var(--bg-page)}
.page-body .container-text > .article-body{max-width:none}

/* ══════════════════════════════════════════════════════════════════════
   Heimatblättle
   ══════════════════════════════════════════════════════════════════════ */
.hb-list{display:grid;gap:20px;grid-template-columns:repeat(auto-fit,minmax(280px,1fr))}
.hb-card{
  background:var(--bg-paper);border-radius:14px;overflow:hidden;
  box-shadow:var(--shadow-1);border:1px solid var(--border-1);
  display:flex;flex-direction:column;transition:all var(--dur-base) ease;
}
.hb-card:hover{box-shadow:var(--shadow-3);transform:translateY(-2px)}
.hb-card .cover{
  aspect-ratio:210/297;
  background:linear-gradient(135deg,var(--wine-100),var(--sun-100));
  display:flex;align-items:center;justify-content:center;
  color:var(--wine-700);font-family:var(--font-display);font-size:22px;font-style:italic;
  position:relative;
}
.hb-card .cover img{width:100%;height:100%;object-fit:contain}
.hb-card .body{padding:22px;flex:1;display:flex;flex-direction:column}
.hb-card h3{font-size:20px;margin-bottom:10px;color:var(--wine-700);font-family:var(--font-display);font-weight:600}
.hb-card .meta{font-size:13px;color:var(--fg-3);margin-bottom:8px;display:flex;gap:12px;align-items:center}
.hb-card .body p{color:var(--fg-2);margin-bottom:16px;flex:1;font-size:15px}
.hb-card .row{display:flex;align-items:center;justify-content:space-between;gap:12px;flex-wrap:wrap}

/* ══════════════════════════════════════════════════════════════════════
   Footer
   ══════════════════════════════════════════════════════════════════════ */
.hsh-footer{background:var(--wine-900);color:var(--wine-100);padding:80px 0 32px;font-family:var(--font-body)}
.hsh-footer-logo-card{
  background:var(--bg-paper);border-radius:14px;padding:18px 22px;
  display:flex;gap:14px;align-items:center;flex-wrap:wrap;
  box-shadow:0 1px 0 rgba(255,255,255,0.04) inset,0 8px 24px rgba(0,0,0,0.18);
  width:fit-content;max-width:100%;
}
.hsh-footer-logo-card img{height:60px;width:auto;display:block}
.hsh-footer-logo-card .hsh-footer-sonne{height:44px}
.hsh-footer-brandline{display:flex;gap:14px;align-items:center}
.hsh-footer-brandline .hsh-footer-sonne{height:44px;width:auto;display:block}
.hsh-footer-brandname{
  font-family:var(--font-display);font-size:21px;font-weight:600;
  color:var(--linen-0);letter-spacing:-0.01em;white-space:nowrap;
}
.hsh-footer-social{display:flex;gap:10px;margin-top:16px}
.hsh-footer-social a{
  display:inline-flex;align-items:center;justify-content:center;
  width:38px;height:38px;border-radius:50%;
  border:1px solid var(--wine-500);color:var(--wine-200);
  transition:color 140ms,border-color 140ms,background 140ms;
}
.hsh-footer-social a:hover{
  color:var(--wine-900);background:var(--sun-400);border-color:var(--sun-400);
}
.hsh-footer-tagline{
  font-family:var(--font-display);font-style:italic;font-size:19px;color:var(--sun-300);
  margin:22px 0 0;line-height:1.4;max-width:none;
}
.hsh-footer-blurb{color:var(--wine-200);font-size:15px;line-height:1.6;max-width:34ch;margin-top:12px}
.hsh-footer-grid{
  display:grid;grid-template-columns:1.4fr 1fr 1fr 1fr;gap:48px;
  padding-bottom:56px;border-bottom:1px solid var(--wine-700);
}
.hsh-footer-head{
  font-family:var(--font-body);font-size:12px;font-weight:700;
  letter-spacing:0.14em;text-transform:uppercase;
  color:var(--sun-400);margin-bottom:18px;
}
.hsh-footer-col{display:flex;flex-direction:column;gap:10px}
.hsh-footer-col a,.hsh-footer-col p{color:var(--wine-100);text-decoration:none;font-size:15px;margin:0}
.hsh-footer-col a:hover{color:var(--linen-0)}
.hsh-footer-base{
  padding-top:24px;display:flex;justify-content:space-between;align-items:center;
  font-size:13px;color:var(--wine-300);flex-wrap:wrap;gap:12px;
}
.hsh-footer-legal{display:flex;gap:24px;flex-wrap:wrap}
.hsh-footer-legal a{color:var(--wine-300);text-decoration:none}
.hsh-footer-legal a:hover{color:var(--linen-0)}
.hsh-footer-credit{color:var(--wine-300);font-size:13px}
.hsh-footer-credit a{color:var(--wine-300);text-decoration:none;font-weight:600}
.hsh-footer-credit a:hover{color:var(--sun-400)}

/* ═══ Consent-Frame: Click-to-Activate für eingebettete externe Inhalte ═══ */
.consent-frame{
  position:relative;border-radius:14px;overflow:hidden;
  background:var(--bg-paper);border:1px solid var(--border-1);
  min-height:360px;display:flex;align-items:center;justify-content:center;
  margin:1em 0;
}
.consent-frame-overlay{
  padding:40px 32px;text-align:center;max-width:560px;margin:0 auto;
}
.consent-frame-icon{
  display:inline-flex;width:56px;height:56px;border-radius:50%;
  background:var(--sun-100,#FFE6B8);color:var(--wine-600,#802040);
  align-items:center;justify-content:center;margin-bottom:16px;
}
.consent-frame-title{
  font-family:var(--font-display,Newsreader),serif;
  font-size:22px;font-weight:500;color:var(--fg-1);margin:0 0 12px;
  letter-spacing:-0.01em;
}
.consent-frame-text{
  color:var(--fg-2);font-size:15px;line-height:1.55;margin:0 0 20px;
}
.consent-frame-text a{color:var(--wine-600);text-decoration:underline}
.consent-frame-btn{
  display:inline-block;background:var(--wine-600);color:white;
  padding:12px 22px;border:0;border-radius:8px;
  font-weight:600;cursor:pointer;
  font-family:var(--font-body,Manrope),sans-serif;font-size:14px;
  transition:background 140ms;
}
.consent-frame-btn:hover{background:var(--wine-700,#5C1A2E)}
.consent-frame-remember{
  display:block;margin-top:14px;font-size:13px;color:var(--fg-3);cursor:pointer;
}
.consent-frame-remember input{margin-right:6px;vertical-align:middle}
.consent-frame iframe{width:100%;height:450px;border:0;display:block}
.consent-frame.is-active{display:block;min-height:0}
.consent-frame.is-active .consent-frame-overlay{display:none}

/* ══════════════════════════════════════════════════════════════════════
   Skip link (a11y)
   ══════════════════════════════════════════════════════════════════════ */
.skip-link{
  position:absolute;left:-9999px;top:0;
  background:var(--wine-600);color:var(--linen-0);
  padding:12px 16px;z-index:1000;
}
.skip-link:focus{left:12px;top:12px;border-radius:8px}

/* ══════════════════════════════════════════════════════════════════════
   Responsive — Designvorlage-Breakpoints + Mobile-Optimierung
   ══════════════════════════════════════════════════════════════════════ */
@media (max-width:1140px){
  .hsh-nav{display:none}
  .hsh-header{gap:16px}
  .hsh-logo-marks img{height:58px}
  .hsh-burger{display:flex}
  .hsh-relatives-grid{grid-template-columns:repeat(2,1fr)}
}

@media (max-width:960px){
  .hsh-section{padding:72px 0}
  .hsh-hero{padding:60px 24px 72px}
  .container,.hsh-topstrip,.hsh-header{padding-left:24px;padding-right:24px}
  .hsh-hero-grid,.hsh-quote-grid,.hsh-contact-grid{grid-template-columns:1fr;gap:40px}
  .hsh-tile-grid,.hsh-news-grid,.hsh-footer-grid{grid-template-columns:1fr 1fr}
  .hsh-stats-grid{grid-template-columns:1fr 1fr;gap:32px 24px}
  .hsh-quote-grid{grid-template-columns:1fr}
  .hsh-quote-portrait{max-width:280px}
  .hsh-hero-img{max-width:480px;margin-left:auto;margin-right:auto;width:100%}
  .hsh-hero-floater{left:0}
  .page-hero{padding:60px 24px 48px}
  .article{padding:60px 24px}
}

@media (max-width:680px){
  .hsh-topstrip{font-size:12px;gap:10px;padding:8px 20px}
  .hsh-topstrip > span:first-child{display:none}
  .hsh-topstrip .spacer{display:none}
  .hsh-header{padding:12px 20px;gap:12px}
  .container,.hsh-hero,.hsh-section{padding-left:20px;padding-right:20px}
  .hsh-hero{padding-top:40px;padding-bottom:60px}
  .hsh-section{padding-top:60px;padding-bottom:60px}

  .hsh-logo-marks img{height:50px}
  .hsh-cta-phone{padding:9px 12px;font-size:13px}
  .hsh-cta-phone span:not(.cta-num){display:none}

  .hsh-hero-headline{font-size:38px;line-height:1.05}
  .hsh-hero-copy .lead{font-size:18px;margin-bottom:24px}

  .hsh-tile-grid,.hsh-news-grid,.hsh-stats-grid,.hsh-footer-grid,.hsh-relatives-grid{grid-template-columns:1fr;gap:16px}
  .hsh-tile-bullets{grid-template-columns:1fr 1fr}
  .hsh-stat-num{font-size:60px}
  .hsh-stat-num .pre{font-size:32px}
  .hsh-stat-num .unit{font-size:30px}
  .hsh-quote-text{font-size:22px}
  .hsh-quote-glyph{font-size:80px}

  .hsh-contact-form{padding:24px;border-radius:14px}
  .hsh-form-row.row-2{grid-template-columns:1fr;gap:0}
  .hsh-contact-way{padding:12px 14px;gap:12px}
  .hsh-way-value{font-size:15px}

  .hsh-footer{padding:60px 0 24px}
  .hsh-footer-grid{gap:36px}

  .page-hero h1{font-size:32px}
  .article h1{font-size:30px}
  .article-body{font-size:17px}
  .article-body h2{font-size:24px}
}

@media (max-width:420px){
  .hsh-tile-bullets{grid-template-columns:1fr}
  .hsh-hero-ctas .btn{width:100%;justify-content:center}
}

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

/* Utility */
.text-center{text-align:center}
.hidden{display:none}
