/* =============================== FONTS =============================== */
@font-face {
  font-family: "Anton";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/anton-regular.woff2") format("woff2");
}
@font-face {
  font-family: "Archivo";
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url("assets/fonts/archivo-variable.woff2") format("woff2-variations"),
       url("assets/fonts/archivo-variable.woff2") format("woff2");
}
@font-face {
  font-family: "ProHolz";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/proholz.woff2") format("woff2");
}
@font-face {
  font-family: "ProHolz";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/proholz-italic.woff2") format("woff2");
}
@font-face {
  font-family: "ProHolz";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("assets/fonts/proholz-bold.woff2") format("woff2");
}
@font-face {
  font-family: "ProHolz";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("assets/fonts/proholz-black.woff2") format("woff2");
}
@font-face {
  font-family: "ProHolz Kapitaelchen";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/proholz-kapitaelchen.woff2") format("woff2");
}
@font-face {
  font-family: "ProHolz Kapitaelchen";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/proholz-kapitaelchen-italic.woff2") format("woff2");
}
@font-face {
  font-family: "ProHolz Kapitaelchen";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("assets/fonts/proholz-kapitaelchen-bold.woff2") format("woff2");
}
@font-face {
  font-family: "ProHolz Kapitaelchen";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("assets/fonts/proholz-kapitaelchen-black.woff2") format("woff2");
}

:root {
  --font-display: "Anton", "Impact", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Archivo", "Helvetica Neue", Arial, sans-serif;
}

/* ============================== TOKENS ============================== */
:root {
  --black: #000000;
  --gray: #2B2E34;
  --gray-light: #707070;
  --white: #ffffff;
  --orange: #ee5a1c;      /* CTA-Sections */
  --red: #ff0000;         /* X-Marke / Akzent */
  --gray-placeholder: #d9d9d9;
  --gray-lighter: #E3E3DA;
  --beige: #e7e3d8;
  --text: #111111;

  /* Design canvas reference: 1680px wide. 1rem = 10px at full scale.
     -> Use design-px / 10 as the rem value (e.g. 116px → 11.6rem). */
  --container-max: 160rem;   /* 1600px content max within 1680px frame (40px Rand je Seite) */
  --gutter: 3.2rem;          /* 32px */
}

/* Fluid base font-size: 1rem = 10px at 1680px viewport, scales down linearly.
   Above 1680px capped at 10px. Below 900px switches to mobile baseline. */
html {
  font-size: calc(100vw / 168);
}
@media (min-width: 1680px) {
  html { font-size: 10px; }
}
@media (max-width: 950px) {
  html { font-size: 62.5%; }  /* 10px on default 16px root */
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  font-size: 1.6rem;          /* 16px */
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Anton (single weight 400) for all display headings, buttons and labels */
h1, h2, h3, h4,
.hero__title,
.section-title,
.intro__lead,
.cta-orange__title,
.stammwaehler__title,
.stammwaehler__col h3,
.hero__nina-card h3,
.features__gernot-card h3,
.contact__title,
.chip,
.chip-arrow,
.btn,
.link-arrow,
.socials a,
.funding__caption {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.01em;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4, p { margin: 0; }
ul { list-style: none; padding: 0; margin: 0; }

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* =============================== HERO =============================== */
/* All sizes use rem so the entire hero scales with the 1680px design canvas. */
.hero {
  position: relative;
  background: var(--white) url("assets/images/background-pattern.webp") center top / cover no-repeat;
  overflow: hidden;
  padding-bottom: 6rem;       /* 60px */
  min-height: 180rem;         /* 1800px — sodass Nina (1160px hoch ab top:55rem) reinpasst */
}

.hero__band {
  position: absolute;
  left: 0;
  right: 0;
  top: 90rem;                  /* 900px – startet unterhalb des Titels */
  bottom: 0;
  background: var(--beige);
  z-index: 0;
}

.hero__inner {
  position: relative;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 10rem var(--gutter) 0;   /* 40px top */
  z-index: 1;
}

.hero__logo {
  display: inline-block;
  margin-bottom: 10rem;             /* 40px */
}
.hero__logo img {
  width: 710px;
  height: auto;                    /* per max-width:100% auf kleineren Screens skaliert */
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  column-gap: 5rem;                /* 50px */
  align-items: start;
}

.hero__left { position: relative; }

/* Headline — Anton: tall, condensed (narrow) sans-serif matching the SOLL */
.hero__title {
  font-family: "Anton", "Impact", var(--font-display);
  font-weight: 400;
  font-size: 16rem;                  /* 160px @ 1680 */
  line-height: 14.4rem;              /* 174px design-spec line-height */
  letter-spacing: 0;
  color: var(--gray);
  border: var(--gray-light);
  text-transform: uppercase;
  margin: 0;
  display: flex;
  flex-direction: column;
}
.hero__title .word { display: block; }

/* O-letter with red brush-stroke X overlay (hand-drawn PNG) */
.o-strike {
  position: relative;
  display: inline-block;
}
.o-strike .o-x {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 180%;             /* slightly larger than the O, like in the design */
  height: auto;
  transform: translate(-50%, -50%);
  pointer-events: none;
  max-width: none;          /* override the global img { max-width: 100% } */
}

/* Nina photo — 1136×1160px (Design 1:1). Kopf auf Höhe von WAHL, Körper überlappt das 2. Video. */
.hero__nina-photo {
    position: absolute;
    right: 65rem;
    top: 77rem;
    width: 101.6rem;
    max-width: none;
    height: auto;
    z-index: 2;
    pointer-events: none;
}

.hero__right {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;                    /* 24px */
  padding-top: 0rem;              /* 70px aligns 1st video top with H of HOLZ */
}

.video-placeholder {
  background: var(--gray-placeholder);
  color: #5a5a5a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;              /* 14px */
  font-family: var(--font-display);
  width: 100%;
}
.video-placeholder iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.video-placeholder--hero       { aspect-ratio: 16 / 9; }
.video-placeholder--hero-large { aspect-ratio: 16 / 10; }

/* Mobile-Kopie des zweiten Hero-Videos: auf Desktop ausgeblendet */
.video-placeholder--features-mobile { display: none; }

/* Nina-Card: Anton-Text in Schwarz, kein Background, Button weiß/schwarz */
.hero__nina-card {
  align-self: flex-start;
  background: transparent;
  color: var(--black);
  padding-top: 8rem;
  max-width: 50rem;                /* 500px */
  margin-left: 18rem;              /* 220px Einrückung */
}
.hero__nina-card h3 {
  font-family: "Anton", var(--font-display);
  font-weight: 400;
  font-size: 3rem;                 /* 30px */
  line-height: 4rem;               /* 40px */
  margin-bottom: 1.2rem;
  letter-spacing: 0;
  color: var(--black);
}
/* "Mehr sehen" Button: schwarzer Text auf weißem Hintergrund */
.hero__nina-card .link-arrow {
  background: var(--white);
  color: var(--black);
  font-size: 1.6rem;
  padding: 1rem;
  margin-top: 5px;
}
.hero__nina-card .link-arrow span{
  font-weight: 400;
  line-height: 1rem;
    font-size: 2rem;
    font-family: "Anton", var(--font-display);
  border-bottom: solid 1px var(--black);
}

/* ============================== INTRO ============================== */
.intro {
  background: var(--white);
  padding: 80px 0 100px;
}
.section-title {
   font-family: "Anton", var(--font-display);
  font-weight: 400;
  font-size: clamp(34px, 4vw, 70px);
  line-height: 1.05;
  color: var(--black);
  margin-bottom: 50px;
}

.intro__grid {
  display: grid;
  grid-template-columns: 2.4fr 1fr;
  gap: 60px;
  align-items: start;
}

.video-placeholder--intro {
  aspect-ratio: 16 / 10;
}

.intro__text { padding-top: 8px; }
.intro__lead {
   font-family: "Anton", var(--font-display);
  font-weight: 400;
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 24px;
  color: var(--black);
}
.intro__text p {
 font-size: 2rem;
  line-height: 1.55;
  margin-bottom: 28px;
  color: #1a1a1a;
}

/* Link arrow */
.link-arrow {
  font-family: "Anton", var(--font-display);
  display: inline-block;
  color: var(--black);
  background: var(--gray-lighter);
  padding: 1.5rem;
}

.link-arrow span{
  letter-spacing: 0;
  font-weight: 400;

  border-bottom: solid 1px var(--black);

    line-height: 1rem;
    font-size: 2rem;
}


/* ============================ CTA ORANGE =========================== */
.cta-orange {
  background: var(--gray-lighter);
  color: var(--black);
  text-align: center;
  padding: 80px 0 90px;
}
.cta-orange__title {
    font-family: "Anton", var(--font-display);
  font-weight: 400;
  font-size: clamp(34px, 4.4vw, 100px);
  line-height: 1.06;
  margin-bottom: 40px;
}
.btn {
  display: inline-block;
  font-weight: 700;
  font-size: 18px;
  padding: 10px 32px;
  background: var(--white);
  color: var(--black);
  border: 0;
  cursor: pointer;
}
.btn--white { background: var(--white); color: var(--black); }
.btn--white span{
      font-family: "Anton", var(--font-display);
  font-weight: 400;
    font-size: 3rem;
  border-bottom: solid 1px black;
}

/* =========================== STAMMWÄHLER =========================== */
.stammwaehler {
  background: var(--red);
  color: var(--white);
  padding: 80px 0 80px;

}
.stammwaehler__title {
        font-family: "Anton", var(--font-display);
  font-weight: 400;
  font-size: clamp(30px, 3.6vw, 70px);
  line-height: 1.05;
  margin-bottom: 8rem;
}
.stammwaehler__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.stammwaehler__col h3 {
  font-family: "Anton", var(--font-display);
  font-weight: 400;
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 14px;
}
.stammwaehler__col p {
  font-size: 1.6rem;
  line-height: 1.55;
}
.stammwaehler__cta {
  margin-top: 44px;
  text-align: center;
}

/* ============================ FEATURES ============================ */
.features {
  background: var(--white) url("assets/images/background-pattern.webp") center / cover no-repeat;
  padding: 8rem 0 0 0 ;            /* 80px top/bottom – kompakter */
  position: relative;
  overflow: hidden;

}
.features .section-title {
  font-family: "Anton", var(--font-display);
  font-weight: 400;
  font-size: 7rem;                 /* 70px */
  line-height: 1.05;
  color: var(--black);
  margin-bottom: 10rem;           /* 55px */
  letter-spacing: 0;
}
.features__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;                       /* 40px */
  align-items: start;
}
.features__rows {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;                     /* 35px – kompakter zwischen Rows */
  margin-bottom: 8rem;
}
.features__row {
  display: grid;
  grid-template-columns: 14rem 1fr;   /* 140px label + Rest – schmaler */
  gap: 7rem;                          /* 40px – mehr Luft zur Paragraph */
  align-items: start;
}
.features__label {
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
}
/* Chip ohne Box — fetter Anton-Text */
.chip {
  background: transparent;
  color: var(--black);
  font-family: "Anton", var(--font-display);
  font-weight: 400;
  font-size: 3rem;                 /* 30px */
  line-height: 1;
  padding: 0;
  letter-spacing: 0;
}
.chip-arrow {
  font-family: "Anton", var(--font-display);
  font-weight: 400;
  font-size: 3rem;                 /* 30px – gleich wie chip */
  color: var(--black);
  line-height: 1;
}
.features__row p {
  font-family: var(--font-body);
  font-size: 2rem;                 /* 20px */
  line-height: 1.55;
  color: var(--black);
}

/* Gernot rechte Spalte — Bild groß, sitzt sauber in der Sektion */
.features__gernot {
  position: relative;
  margin-top: 0rem;               /* Bild ragt oben in den Title-Bereich */
  margin-bottom: 0rem;            /* und unten in nächste Section */
  align-self: stretch;
}
.features__gernot img {
  width: 115%;                     /* 15% breiter als rechte Spalte */
  max-width: none;
  height: auto;
  display: block;
  margin-left: 0;               /* leicht nach links versetzt */
  position: absolute;
  bottom: 0;
}
/* Schwarzer Anton-Text links neben Gernots Gesicht */
.features__gernot-card {
    position: absolute;
    top: 40%;
    background: transparent;
    color: var(--black);
    padding: 0;
    max-width: 25rem;
    z-index: 2;
    right: 55%;
    text-align: right;
}
.features__gernot-card h3 {
  font-family: "Anton", var(--font-display);
  font-weight: 400;
  font-size: 3rem;                /* 18px */
  line-height: 1.2;
  letter-spacing: 0;
  color: var(--black);
}

/* =========================== KONTAKT FOOTER ========================== */
.contact {
  background: var(--red);
  color: var(--white);
  padding: 6rem 0 7rem;             /* 60/70px */
}
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;                        /* 60px */
}
.contact__title {
  font-family: "Anton", var(--font-display);
  font-weight: 400;
  font-size: 4rem;                  /* 40px */
  line-height: 1.1;
  margin-bottom: 3rem;
  letter-spacing: 0;
}
.contact__address {
  font-family: var(--font-body);
  font-size: 2rem;                  /* 20px */
 /* line-height: 1.55;*/
   
  line-height: 1.2;

  color: var(--white);
}
.contact__address strong { font-weight: 700; }
.contact__address-detail {
  display: inline-block;
  line-height: 1.2;
}

.socials {
  display: flex;
  gap: 4rem;                        /* 40px */
  margin-top: 1rem;
}
.socials a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  font-family: "Anton", var(--font-display);
  font-weight: 400;
  font-size: 3rem;                  /* 40px */
  line-height: 1;
  letter-spacing: 0;
  color: var(--white);
}
.socials__icon {
  width: 6rem;                      /* 60px */
  height: 6rem;
  display: block;
  object-fit: contain;
}
.socials__icon--tiktok { padding: 5px; }

/* ============================ FÖRDERLEISTE ========================== */
.funding {
  background: var(--white);
  padding: 36px 0 44px;
  text-align: center;
}
.funding__caption {
  font-weight: 900;
  font-size: 14px;
  margin-bottom: 18px;
  color: #111;
}
.funding__bar {
  margin: 0 auto;
  max-width: 1260px;
  width: 100%;
  height: auto;
}

/* ============================= MOBILE ≤ 950px ============================= */
@media (max-width: 950px) {
  :root {
    --gutter: 2rem;             /* 20px */
    --container-max: 100%;
  }

  /* ---------- HERO ---------- */
  .hero {
    min-height: auto;
    padding-bottom: 4rem;
    background-size: cover;
  }

  .video-placeholder.video-placeholder--hero-large{
    display:none;
  }

  /* Mobile-Kopie: zweites Hero-Video über dem Features-Titel anzeigen */
  .video-placeholder.video-placeholder--features-mobile{
    display: flex;
    aspect-ratio: 4 / 5;
    margin-bottom: 4rem;
  }


  /* Auf Mobile: hero__band weiß (das Nina-Box bringt das beige selbst mit) */
  .hero__band {
    top: auto;
    bottom: 0;
    height: 0;                    /* Band verstecken */
    background: var(--white);
  }

  /* Grid mit named areas. Card ist eine Zeile (full width), Nina-Photo absolute */
  .hero__inner {
    position: relative;            /* damit absolute Nina darin verankert ist */
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas:
      "logo"
      "title"
      "video1"
      "card"
      "video2";
    row-gap: 0;
    padding: 2.5rem var(--gutter) 0;
  }
  .hero__grid,
  .hero__left,
  .hero__right {
    display: contents;            /* Kinder partizipieren am hero__inner Grid */
  }

  /* Grid-Area Zuweisungen */
  .hero__logo                    { grid-area: logo; margin-bottom: 4rem; }
  .hero__title                   { grid-area: title; }
  .video-placeholder--hero       { grid-area: video1; }
  .hero__nina-card               { grid-area: card; }
  .video-placeholder--hero-large { grid-area: video2; }

  /* Nina-Photo: absolut innerhalb der Card grid-area, rechts ausgerichtet.
     Sitzt OBEN AUF der beigen Card (z-index 3) aber nur in der rechten Hälfte
     wo der Text durch max-width: 50% nicht ist – kein Overlap. */
  .hero__nina-photo {
    grid-area: card;
    position: absolute;
    right: 0;
    top: 4rem;                    /* matched margin-top der card */
    bottom: 4rem;                 /* matched margin-bottom der card */
    width: 45%;
    height: calc(100% - 8rem);
    max-width: none;
    z-index: 3;                   /* über der beigen Card-Fläche */
    object-fit: contain;
    object-position: right bottom;
  }

  .hero__title {
    font-size: 10rem;             /* 100px – viel größer wie im SOLL */
    line-height: 10rem;
    margin-bottom: 4rem;
  }

  /* 1. Video: tall (portrait) aspect-ratio wie im SOLL */
  .video-placeholder--hero {
    aspect-ratio: 3 / 4;
    margin-bottom: 2rem;
  }
  .video-placeholder--hero-large {
    aspect-ratio: 4 / 5;
  }

  /* Video-Label kleiner */
  .video-placeholder span {
    font-size: 2rem;
    color: var(--black);
    font-family: "Anton", var(--font-display);
  }

  /* Nina-Photo: static im Grid (grid-area: photo), füllt die rechte Hälfte */
  .hero__nina-photo {
    position: absolute;
    right: 0;
    top: 4rem;
    bottom: 0;
    width: 100%;
    max-width: 100%;
    margin: 0;
    justify-self: end;
  }

  /* Nina-Card im Mobile: EIGENE beige Box (extends to viewport edge mit negativen Margins),
     schwarzer Text + weißer Button links, Nina-Photo überlappt NICHT den Text. */
  .hero__nina-card {
    grid-area: card;
    align-self: stretch;
    justify-self: stretch;
    background: var(--beige);
    color: var(--black);
    margin: 4rem calc(-1 * var(--gutter)) 4rem;   /* full-bleed über gutter hinaus */
    padding: 3rem var(--gutter) 3rem var(--gutter);
    max-width: none;
    min-height: 32rem;
    z-index: 2;
    position: relative;
    /* Text-Bereich rechts begrenzen via max-width des Heading-Bereichs */
    box-sizing: border-box;

  }
  .hero__nina-card h3 {
    color: var(--black);
    font-size: 2rem;
    line-height: 1.25;
    margin-bottom: 1.6rem;
    max-width: 50%;                /* Text bleibt links, Nina rechts ohne Overlap */
  }
  .hero__nina-card .link-arrow {
    display: inline-block;
  }
  .hero__nina-card .link-arrow {
    background: var(--white);
    color: var(--black);
    padding: 0.8rem 1.4rem;
  }
  .hero__nina-card .link-arrow span {
    color: var(--black);
    border-bottom-color: var(--black);
    font-size: 1.6rem;
  }

  .hero__right {
    padding-top: 2rem;
    gap: 2rem;
  }

  /* ---------- INTRO ---------- */
  .intro {
    padding: 0 0 5rem;
  }
  .section-title {
    font-size: 4rem;
    margin-bottom: 2.5rem;
  }
  .intro__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .intro__lead {
    font-size: 2.4rem;
    margin-bottom: 2rem;
  }
  .intro__text p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }

  /* ---------- CTA Orange ---------- */
  .cta-orange {
    padding: 5rem 0;
  }
  .cta-orange__title {
    font-size: 3.6rem;
    margin-bottom: 3rem;
  }
  .btn {
    font-size: 1.6rem;
    padding: 1rem 2rem;
  }
  .btn--white span {
    font-size: 2rem;
  }

  /* ---------- Stammwähler ---------- */
  .stammwaehler {
    padding: 5rem 0;
  }
  .stammwaehler__title {
    font-size: 3.6rem;
    margin-bottom: 3rem;
  }
  .stammwaehler__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .stammwaehler__col h3 {
    font-size: 2rem;
  }
  .stammwaehler__col p {
    font-size: 1.5rem;
  }

  /* ---------- Features ---------- */
  .features {
    padding: 5rem 0;
  }
  .features .section-title {
    font-size: 4rem;
    margin-bottom: 3rem;
  }
  .features__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  /* Mobile: Label (Regional >>) als Spalte über dem Paragraph */
  .features__row {
    grid-template-columns: 1fr;       /* Single column */
    gap: 0.2rem;                       /* Engerer Abstand zwischen Label und Text */
  }
  .features__label {
    margin-bottom: 0.4rem;
  }
  .chip,
  .chip-arrow {
    font-size: 2.4rem;
  }
  .features__row p {
    font-size: 1.5rem;
  }
  /* Gernot wird auf Mobile komplett ausgeblendet */
  .features__gernot {
    display: none;
  }

  /* ---------- Contact ---------- */
  .contact {
    padding: 4rem 0 4rem;
  }
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .contact__title {
    font-size: 2.8rem;
    margin-bottom: 1.6rem;
  }
  .contact__address {
    font-size: 1.5rem;
  }
  .socials {
    gap: 2rem;
    flex-wrap: wrap;
  }
  .socials a {
    font-size: 1.8rem;
    gap: 0.6rem;
  }
  .socials__icon {
    width: 4rem;
    height: 4rem;
  }

  /* ---------- Funding ---------- */
  .funding {
    padding: 3rem 0;
  }
  .funding__bar {
    max-width: 100%;
  }
}
