@import './fonts/fonts.css';

/* =========================================================================
   travel-erlebnisse.de  —  "Expedition Journal"
   Ein warmes Reisemagazin-Editorial.
   Anker: Petrol #0a4760 · Akzent: Orange #ED802C · Sand/Creme-Flächen
   ========================================================================= */

:root {
  /* Farben */
  --teal:        #0a4760;
  --teal-deep:   #07303f;
  --teal-ink:    #0a2733;
  --orange:      #ed802c;
  --orange-deep: #d56a17;
  --orange-soft: #f6a85e;

  --sand:        #faf3e7;   /* Seitenhintergrund */
  --sand-2:      #f3e8d4;   /* alternierende Sektion */
  --sand-3:      #ece0c9;
  --paper:       #fffdf8;   /* Karten */
  --cream-line:  #e7d9bf;

  --ink:         #16323d;   /* Fließtext */
  --muted:       #5c6f76;   /* sekundärer Text */
  --line:        rgba(10,71,96,.14);
  --line-soft:   rgba(10,71,96,.08);

  /* Schrift */
  --font-display: 'Fraunces', 'Fraunces Fallback', Georgia, 'Times New Roman', serif;
  --font-text:    'Hanken Grotesk', 'Hanken Fallback', 'Segoe UI', system-ui, -apple-system, sans-serif;

  /* Maße */
  --container: 1200px;
  --radius:    18px;
  --radius-sm: 12px;
  --shadow:    0 18px 48px -24px rgba(7,48,63,.45);
  --shadow-sm: 0 10px 26px -18px rgba(7,48,63,.5);
  --header-h:  78px;

  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------------------------------------------------------- Reset-Ergänzung */
* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-text);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink);
  background-color: var(--sand);
  background-image:
    radial-gradient(rgba(10,71,96,.05) 1px, transparent 1.6px);
  background-size: 22px 22px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

a { color: var(--teal); text-decoration: none; }
a:hover { color: var(--orange-deep); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  color: var(--teal-ink);
  letter-spacing: -.01em;
  margin: 0 0 .5em;
  font-optical-sizing: auto;
}

p { margin: 0 0 1.1em; }

::selection { background: var(--orange); color: #fff; }

/* Bootstrap-Container entschärfen: volle Breite für Bänder, Inhalt via .container */
.container-fluid { padding-left: 0; padding-right: 0; }
.container { max-width: var(--container); }

main { display: block; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--teal); color: #fff; padding: .7rem 1.1rem; border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; color:#fff; }

/* Sichtbarer Fokus für Tastatur */
a:focus-visible, button:focus-visible, .btn:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ============================================================ Eyebrow/Label */
.eyebrow {
  display: inline-flex; align-items: center; gap: .55em;
  font-family: var(--font-text);
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--orange-deep);
  margin: 0 0 1rem;
}
.eyebrow::before {
  content: ""; width: 26px; height: 2px; background: var(--orange); display: inline-block;
}
.eyebrow--light { color: var(--orange-soft); }
.eyebrow--light::before { background: var(--orange-soft); }

/* ================================================================== Buttons */
.btn {
  --btn-bg: var(--orange);
  --btn-fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  font-family: var(--font-text); font-weight: 600; font-size: .98rem;
  line-height: 1; padding: .95rem 1.7rem; border-radius: 999px;
  background: var(--btn-bg); color: var(--btn-fg);
  border: 1.5px solid transparent; cursor: pointer;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .25s, color .25s;
  box-shadow: 0 12px 26px -14px rgba(237,128,44,.85);
  text-align: center;
}
.btn:hover { color: #fff; transform: translateY(-3px); box-shadow: 0 18px 32px -14px rgba(237,128,44,.95); }
.btn:active { transform: translateY(-1px); }
.btn .arr { transition: transform .35s var(--ease); }
.btn:hover .arr { transform: translateX(4px); }

.btn--ghost {
  --btn-bg: transparent; --btn-fg: var(--teal-ink);
  border-color: var(--line); box-shadow: none;
}
.btn--ghost:hover { color: var(--teal-ink); border-color: var(--teal); background: rgba(10,71,96,.05); box-shadow:none; }

.btn--onteal {
  --btn-bg: rgba(255,255,255,.08); --btn-fg: #f6efe2;
  border-color: rgba(246,239,226,.32); box-shadow: none; backdrop-filter: blur(2px);
}
.btn--onteal:hover { background: #fff; color: var(--teal-deep); border-color:#fff; box-shadow:none; }

/* ============================================================= Site header */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250,243,231,.82);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--line-soft);
  transition: box-shadow .3s, background .3s;
}
body.is-scrolled .site-header { box-shadow: 0 10px 30px -22px rgba(7,48,63,.55); background: rgba(250,243,231,.94); }

.site-header__inner {
  max-width: var(--container); margin: 0 auto;
  min-height: var(--header-h);
  padding: .5rem clamp(1rem, 3vw, 2rem);
  display: flex; align-items: center; justify-content: space-between; gap: 1.4rem;
}

.brand { display: inline-flex; align-items: center; gap: .7rem; flex-shrink: 0; }
.brand__logo { height: 46px; width: auto; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name { font-family: var(--font-display); font-weight: 600; font-size: 1.32rem; color: var(--teal); letter-spacing: -.02em; }
.brand__slogan { font-size: .66rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-top: 3px; }

.nav { display: flex; align-items: center; gap: .2rem; }
.nav__list { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; gap: .15rem; }
.nav__link {
  position: relative; display: inline-block;
  font-weight: 600; font-size: .98rem; color: var(--teal-ink);
  padding: .55rem .95rem; border-radius: 999px;
  transition: color .2s, background .2s;
}
.nav__link::after {
  content: ""; position: absolute; left: 50%; bottom: .34rem; width: 0; height: 2px;
  background: var(--orange); transform: translateX(-50%); transition: width .3s var(--ease);
}
.nav__link:hover { color: var(--teal); }
.nav__link:hover::after,
.nav__link.is-active::after { width: 20px; }
.nav__link.is-active { color: var(--teal); }

.nav__cta { margin-left: .5rem; padding: .7rem 1.3rem; font-size: .9rem; }

/* Mobile-Toggle */
.nav-toggle {
  display: none; width: 46px; height: 46px; border: 1px solid var(--line);
  background: var(--paper); border-radius: 12px; cursor: pointer; padding: 0;
  position: relative;
}
.nav-toggle__bar, .nav-toggle__bar::before, .nav-toggle__bar::after {
  content: ""; position: absolute; left: 50%; width: 20px; height: 2px; background: var(--teal-ink);
  transform: translateX(-50%); transition: transform .3s var(--ease), opacity .2s;
}
.nav-toggle__bar { top: 50%; margin-top: -1px; }
.nav-toggle__bar::before { top: -6px; }
.nav-toggle__bar::after  { top: 6px; }
body.nav-open .nav-toggle__bar { background: transparent; }
body.nav-open .nav-toggle__bar::before { transform: translateX(-50%) rotate(45deg); top: 0; }
body.nav-open .nav-toggle__bar::after  { transform: translateX(-50%) rotate(-45deg); top: 0; }

/* ============================================================ Breadcrumb */
.crumbs { background: transparent; }
.crumbs .container { max-width: var(--container); }
.crumbs .breadcrumb {
  display: flex; flex-wrap: wrap; gap: .15rem; align-items: center;
  list-style: none; margin: 0; padding: 1.1rem clamp(1rem,3vw,2rem) .2rem;
  font-size: .82rem; letter-spacing: .02em;
}
.crumbs .breadcrumb-item { color: var(--muted); }
.crumbs .breadcrumb-item a { color: var(--muted); font-weight: 600; }
.crumbs .breadcrumb-item a:hover { color: var(--orange-deep); }
.crumbs .breadcrumb-item.active { color: var(--teal-ink); font-weight: 600; }
.crumbs .breadcrumb-item + .breadcrumb-item::before { color: var(--cream-line); padding: 0 .5rem; }

/* ================================================================ Layout */
.inner-wrapper { padding: clamp(2.2rem, 5vw, 4rem) 0 1rem; }
.inner-wrapper .container { max-width: var(--container); }

/* Spalten-Lücke etwas großzügiger */
.inner-wrapper .row { --bs-gutter-x: 3rem; }

/* =================================================================== HERO */
.hero {
  position: relative; overflow: hidden;
  background: radial-gradient(120% 140% at 85% -10%, #0d557a 0%, var(--teal) 42%, var(--teal-deep) 100%);
  color: #f6efe2;
  isolation: isolate;
}
.hero::after { /* Korn/Verlauf für Tiefe */
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(60% 80% at 12% 110%, rgba(237,128,44,.28), transparent 60%),
    radial-gradient(40% 60% at 100% 0%, rgba(246,168,94,.18), transparent 60%);
  pointer-events: none;
}
.hero__contour {
  position: absolute; inset: -10% -5% auto -5%; width: 110%; height: auto; z-index: -1;
  color: rgba(246,239,226,.10); pointer-events: none;
}
.hero__inner {
  max-width: var(--container); margin: 0 auto;
  padding: clamp(3.4rem, 8vw, 7rem) clamp(1rem,3vw,2rem) clamp(3rem,7vw,6rem);
  display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(2rem,4vw,4rem); align-items: center;
}
.hero__title {
  color: #fffaf1; font-weight: 600;
  font-size: clamp(2.7rem, 6vw, 5.1rem); line-height: .98; letter-spacing: -.025em;
  margin: 0 0 1.2rem;
}
.hero__title em { font-style: italic; color: var(--orange-soft); font-weight: 400; }
.hero__lead { font-size: clamp(1.05rem, 1.7vw, 1.3rem); color: rgba(246,239,226,.86); max-width: 36ch; margin: 0 0 2rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-bottom: 2.4rem; }
.hero__chips { display: flex; flex-wrap: wrap; gap: .5rem; }
.hero__chip {
  font-size: .85rem; font-weight: 600; color: #f3ead9;
  padding: .5rem 1rem; border: 1px solid rgba(246,239,226,.28); border-radius: 999px;
  transition: background .25s, color .25s, transform .25s var(--ease);
}
.hero__chip:hover { background: #fff; color: var(--teal-deep); transform: translateY(-2px); }

/* Hero-Feature-Karte (neuester Beitrag) */
.hero__feature {
  position: relative; border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 30px 60px -28px rgba(0,0,0,.6);
  aspect-ratio: 4 / 5; background: var(--teal-deep);
  transform: rotate(1.4deg);
  border: 6px solid rgba(255,253,248,.9);
}
.hero__feature img { width: 100%; height: 100%; object-fit: cover; }
.hero__feature-label {
  position: absolute; top: 1rem; left: 1rem; z-index: 2;
  background: var(--orange); color: #fff; font-weight: 700; font-size: .72rem;
  letter-spacing: .14em; text-transform: uppercase; padding: .45rem .85rem; border-radius: 999px;
}
.hero__feature-cap {
  position: absolute; inset: auto 0 0 0; z-index: 2; padding: 2.4rem 1.3rem 1.2rem;
  background: linear-gradient(to top, rgba(7,48,63,.92), transparent);
}
.hero__feature-cap span { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--orange-soft); font-weight: 700; }
.hero__feature-cap h3 { color: #fff; font-size: 1.4rem; margin: .3rem 0 0; }

.hero__stats { display: flex; gap: 2rem; margin-top: 2.6rem; }
.hero__stat strong { display: block; font-family: var(--font-display); font-size: 2rem; color: #fff; line-height: 1; }
.hero__stat span { font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; color: rgba(246,239,226,.7); }

/* ============================================================= Sections */
.section { padding: clamp(3rem, 6vw, 5.5rem) 0; }
.section--alt { background: var(--sand-2); }
.section--ink { background: var(--teal); color: #f6efe2; }
.section .container { max-width: var(--container); padding-left: clamp(1rem,3vw,2rem); padding-right: clamp(1rem,3vw,2rem); }

.section__head {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 1.5rem;
  margin-bottom: 2.4rem; flex-wrap: wrap;
}
.section__head-left { max-width: 60ch; }
.section__num {
  font-family: var(--font-display); font-style: italic; font-size: 1.1rem; color: var(--orange-deep);
  display: block; margin-bottom: .3rem;
}
.section__title { font-size: clamp(1.9rem, 3.4vw, 3rem); margin: 0; }
.section__desc { color: var(--muted); margin: .8rem 0 0; font-size: 1.05rem; }
.section__link {
  flex-shrink: 0; font-weight: 600; color: var(--teal); display: inline-flex; align-items: center; gap: .5em;
  border-bottom: 2px solid transparent; padding-bottom: 2px;
}
.section__link:hover { color: var(--orange-deep); border-color: var(--orange); }
.section__link .arr { transition: transform .3s var(--ease); }
.section__link:hover .arr { transform: translateX(4px); }

/* ========================================================== Article list */
/* gemeinsame Karten-Bausteine */
.alist { width: 100%; }
.alist__intro { margin-bottom: 2rem; }
.alist__intro h2 { font-size: clamp(1.8rem,3vw,2.6rem); }
.alist__intro p { color: var(--muted); max-width: 65ch; }
.alist__empty { color: var(--muted); font-style: italic; }

.acard {
  position: relative; background: var(--paper); border: 1px solid var(--line-soft);
  border-radius: var(--radius); overflow: hidden; height: 100%;
  display: flex; flex-direction: column;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .3s;
}
.acard:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--cream-line); }
.acard__link { display: flex; flex-direction: column; height: 100%; color: inherit; }
.acard__link:hover { color: inherit; }

.acard__media { position: relative; overflow: hidden; aspect-ratio: 3 / 2; background: var(--sand-3); }
.acard__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.acard:hover .acard__media img { transform: scale(1.06); }
.acard__tag {
  position: absolute; left: .8rem; top: .8rem; z-index: 2;
  background: rgba(255,253,248,.92); color: var(--teal-deep);
  font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  padding: .35rem .7rem; border-radius: 999px;
}
.acard__body { padding: 1.3rem 1.4rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
.acard__date { font-size: .78rem; color: var(--muted); letter-spacing: .04em; margin-bottom: .5rem; }
.acard__title { font-size: 1.3rem; margin: 0 0 .55rem; transition: color .2s; }
.acard:hover .acard__title { color: var(--orange-deep); }
.acard__excerpt {
  color: var(--muted); font-size: .96rem; line-height: 1.6; margin: 0;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.acard__more {
  margin-top: auto; padding-top: 1rem; font-weight: 600; font-size: .9rem; color: var(--teal);
  display: inline-flex; align-items: center; gap: .45em;
}
.acard:hover .acard__more { color: var(--orange-deep); }
.acard__more .arr { transition: transform .3s var(--ease); }
.acard:hover .acard__more .arr { transform: translateX(4px); }

/* --- Variante GRID --- */
.alist--grid .alist__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.7rem;
}

/* --- Variante FEATURE (1 groß + Liste) --- */
.alist--feature .alist__feature {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 1.7rem; align-items: stretch;
}
.alist__lead { grid-row: span 1; }
.alist__lead .acard__media { aspect-ratio: 16 / 11; }
.alist__lead .acard__title { font-size: clamp(1.6rem, 2.6vw, 2.3rem); }
.alist__lead .acard__excerpt { -webkit-line-clamp: 4; font-size: 1.02rem; }
.alist__lead .acard__body { padding: 1.7rem 1.8rem 1.9rem; }
.alist__feature-side { display: flex; flex-direction: column; gap: 1.2rem; }

/* --- Variante LIST (Medienzeilen) --- */
.alist--list .alist__rows { display: grid; gap: 1.2rem; }
.arow {
  display: grid; grid-template-columns: 240px 1fr; gap: 1.5rem; align-items: stretch;
  background: var(--paper); border: 1px solid var(--line-soft); border-radius: var(--radius);
  overflow: hidden; transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .3s;
}
.arow:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); border-color: var(--cream-line); }
.arow__link { display: contents; color: inherit; }
.arow__media { position: relative; overflow: hidden; aspect-ratio: 4 / 3; background: var(--sand-3); }
.arow__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.arow:hover .arow__media img { transform: scale(1.06); }
.arow__body { padding: 1.4rem 1.6rem 1.4rem 0; display: flex; flex-direction: column; justify-content: center; }
.arow__num { font-family: var(--font-display); font-style: italic; color: var(--orange-deep); font-size: 1.05rem; margin-bottom: .25rem; }
.arow__title { font-size: 1.45rem; margin: 0 0 .5rem; }
.arow:hover .arow__title { color: var(--orange-deep); }
.arow__excerpt { color: var(--muted); font-size: .96rem; margin: 0; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

/* --- Variante MINIMAL (Index-Liste, kein Bild) --- */
.alist--minimal .aindex { display: grid; grid-template-columns: repeat(2, 1fr); gap: .2rem 2.5rem; }
.aindex__item {
  display: flex; gap: 1rem; align-items: baseline; padding: 1.05rem 0;
  border-bottom: 1px solid var(--line-soft);
}
.aindex__num { font-family: var(--font-display); font-style: italic; color: var(--orange-deep); font-size: 1rem; flex-shrink: 0; width: 2.2rem; }
.aindex__link { color: var(--teal-ink); font-weight: 500; font-size: 1.12rem; font-family: var(--font-display); }
.aindex__link:hover { color: var(--orange-deep); }
.aindex__item .arr { margin-left: auto; color: var(--cream-line); transition: transform .3s var(--ease), color .2s; }
.aindex__item:hover .arr { color: var(--orange); transform: translateX(4px); }

/* =============================================================== Sidebar */
.sidebar { display: flex; flex-direction: column; gap: 1.6rem; position: sticky; top: calc(var(--header-h) + 1.2rem); }

.newsletter {
  position: relative; overflow: hidden;
  background: linear-gradient(150deg, var(--orange) 0%, var(--orange-deep) 100%);
  color: #fff; border-radius: var(--radius); padding: 1.8rem 1.7rem;
  box-shadow: 0 22px 40px -26px rgba(213,106,23,.95);
}
.newsletter::before {
  content: ""; position: absolute; right: -40px; top: -40px; width: 150px; height: 150px;
  border: 18px solid rgba(255,255,255,.16); border-radius: 50%;
}
.newsletter h3 { color: #fff; font-size: 1.5rem; margin: 0 0 .4rem; position: relative; }
.newsletter p { color: rgba(255,255,255,.9); font-size: .95rem; margin: 0 0 1.2rem; position: relative; }
.newsletter .btn { background: #fff; color: var(--orange-deep); box-shadow: none; width: 100%; }
.newsletter .btn:hover { background: var(--teal-deep); color: #fff; }

.side-card {
  background: var(--paper); border: 1px solid var(--line-soft); border-radius: var(--radius);
  padding: 1.6rem 1.5rem;
}
.side-card__title {
  font-size: .76rem; letter-spacing: .2em; text-transform: uppercase; color: var(--orange-deep);
  font-family: var(--font-text); font-weight: 700; margin: 0 0 1.1rem; display: flex; align-items: center; gap: .5em;
}
.side-card__title::before { content:""; width: 22px; height: 2px; background: var(--orange); }

.categories { list-style: none; margin: 0; padding: 0; }
.categories li { border-bottom: 1px solid var(--line-soft); }
.categories li:last-child { border-bottom: 0; }
.categories a {
  display: flex; align-items: center; justify-content: space-between;
  padding: .8rem 0; color: var(--teal-ink); font-weight: 600; font-family: var(--font-display); font-size: 1.18rem;
  transition: color .2s, padding .25s var(--ease);
}
.categories a::after { content: "→"; color: var(--cream-line); transition: transform .3s var(--ease), color .2s; }
.categories a:hover { color: var(--orange-deep); padding-left: .35rem; }
.categories a:hover::after { color: var(--orange); transform: translateX(3px); }

.side-quote {
  background: var(--teal); color: #f0e8da; border-radius: var(--radius); padding: 1.8rem 1.6rem; position: relative; overflow:hidden;
}
.side-quote::before { content: "\201C"; position: absolute; top: -.2em; right: .2em; font-family: var(--font-display); font-size: 8rem; color: rgba(246,239,226,.08); line-height: 1; }
.side-quote p { font-family: var(--font-display); font-style: italic; font-size: 1.15rem; line-height: 1.45; margin: 0; position: relative; }
.side-quote span { display:block; margin-top: 1rem; font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--orange-soft); font-weight:700; font-family: var(--font-text); }

/* ============================================================ Article page */
.article { padding-bottom: 1rem; }
.article__header { margin-bottom: 1.8rem; }
.article__eyebrow { margin-bottom: .9rem; }
.article__eyebrow a { color: var(--orange-deep); font-weight: 700; letter-spacing: .14em; text-transform: uppercase; font-size: .74rem; }
h1.article__title, .article h1 {
  font-size: clamp(2.1rem, 4.4vw, 3.7rem); line-height: 1.04; margin: 0 0 1rem; max-width: 18ch;
}
.article__date, .date.article__date { font-size: .85rem; color: var(--muted); letter-spacing: .03em; }
.article .image, .article__hero {
  border-radius: var(--radius); overflow: hidden; margin: 0 0 2.2rem; background: var(--sand-3);
  aspect-ratio: 97 / 50; box-shadow: var(--shadow-sm);
}
.article .image img, .article__hero img { width: 100%; height: 100%; object-fit: cover; }

.article .content, .article__content { font-size: 1.16rem; line-height: 1.8; color: var(--ink); max-width: 68ch; }
.article .content > p:first-of-type::first-letter,
.article__content > p:first-of-type::first-letter {
  font-family: var(--font-display); font-weight: 600; float: left; font-size: 3.6rem; line-height: .82;
  padding: .35rem .6rem 0 0; color: var(--orange-deep);
}
.article .content p { margin: 0 0 1.35em; }
.article .content h2, .article__content h2 { font-size: 1.9rem; margin: 2em 0 .6em; }
.article .content h3, .article__content h3 { font-size: 1.4rem; margin: 1.6em 0 .5em; }
.article .content a, .article__content a { color: var(--orange-deep); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1.5px; }
.article .content a:hover, .article__content a:hover { color: var(--teal); }
.article .content img { border-radius: var(--radius-sm); margin: 1.6em 0; }
.article .content ul, .article .content ol { margin: 0 0 1.35em; padding-left: 1.3em; }
.article .content li { margin-bottom: .5em; }
.article .content blockquote {
  margin: 1.8em 0; padding: 1.2em 1.5em; border-left: 4px solid var(--orange);
  background: var(--sand-2); border-radius: 0 12px 12px 0; font-family: var(--font-display); font-style: italic; font-size: 1.2rem; color: var(--teal-ink);
}

/* Related */
.related-articles { margin-top: clamp(2.5rem, 5vw, 4rem); padding-top: 2.5rem; border-top: 1px solid var(--line); }
.related-articles .alist__intro { display: none; }
.related-articles::before {
  content: "Das könnte dich auch inspirieren"; display: block;
  font-family: var(--font-display); font-size: clamp(1.5rem,2.6vw,2.1rem); color: var(--teal-ink); margin-bottom: 1.6rem;
}

/* ============================================================= Pagination */
.pagination { display: flex; flex-wrap: wrap; gap: .4rem; justify-content: center; list-style: none; padding: 0; margin: 3rem 0 0; }
.pagination .page-link {
  display: flex; align-items: center; justify-content: center; min-width: 46px; height: 46px; padding: 0 .6rem;
  border-radius: 12px; border: 1px solid var(--line); background: var(--paper); color: var(--teal-ink);
  font-weight: 600; transition: all .25s var(--ease);
}
.pagination .page-link:hover { border-color: var(--teal); color: var(--orange-deep); transform: translateY(-2px); }
.pagination .page-item.active .page-link { background: var(--teal); border-color: var(--teal); color: #fff; }
.pagination .page-item.disabled .page-link { opacity: .4; pointer-events: none; }

/* ============================================== Newsletter-Band (Home/Foot) */
.cta-band {
  position: relative; overflow: hidden; background: var(--teal); color: #f6efe2;
  border-radius: 28px; padding: clamp(2.4rem,5vw,4rem); margin: 0 auto;
  display: grid; grid-template-columns: 1.3fr .7fr; gap: 2rem; align-items: center;
}
.cta-band::before {
  content:""; position:absolute; inset:0;
  background: radial-gradient(60% 120% at 100% 0%, rgba(237,128,44,.35), transparent 55%);
}
.cta-band > * { position: relative; }
.cta-band h2 { color: #fff; font-size: clamp(1.8rem,3.2vw,2.8rem); margin: 0 0 .6rem; }
.cta-band p { color: rgba(246,239,226,.85); margin: 0; max-width: 46ch; }
.cta-band__action { display: flex; justify-content: flex-end; }

/* ================================================================ Footer */
.footer-wrapper { background: var(--teal-deep); color: #cfe0e6; }
.site-footer__top {
  max-width: var(--container); margin: 0 auto; padding: clamp(3rem,5vw,4.5rem) clamp(1rem,3vw,2rem) 2.5rem;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem;
}
.site-footer__brand .brand__name { color: #fff; }
.site-footer__brand p { color: rgba(207,224,230,.7); max-width: 38ch; margin: 1rem 0 0; }
.footer-col h4 { color: #fff; font-size: .8rem; letter-spacing: .18em; text-transform: uppercase; font-family: var(--font-text); margin: 0 0 1.1rem; }
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: .65rem; }
.footer-col a { color: rgba(207,224,230,.82); transition: color .2s, padding .2s; }
.footer-col a:hover { color: var(--orange-soft); padding-left: 3px; }
.site-footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1);
}
.site-footer__bottom .container { max-width: var(--container); }
.footer-wrapper .row { padding: 1.4rem clamp(1rem,3vw,2rem); align-items: center; }
.footer-wrapper p { margin: 0; font-size: .88rem; color: rgba(207,224,230,.65); }
.footer-nav { display: flex; flex-wrap: wrap; gap: 1.4rem; }
.footer-nav a { color: rgba(207,224,230,.8); font-size: .88rem; font-weight: 600; }
.footer-nav a:hover { color: var(--orange-soft); }

/* ========================================================= Confirmation */
.confirmation { min-height: 60vh; display: grid; place-items: center; padding: clamp(3rem,7vw,6rem) 0; }
.confirmation__card {
  max-width: 640px; text-align: center; background: var(--paper); border: 1px solid var(--line-soft);
  border-radius: 26px; padding: clamp(2.4rem,5vw,3.6rem); box-shadow: var(--shadow); position: relative; overflow: hidden;
}
.confirmation__card::before {
  content:""; position:absolute; inset:0 0 auto 0; height: 6px;
  background: linear-gradient(90deg, var(--orange), var(--orange-soft), var(--teal));
}
.confirmation__icon {
  width: 84px; height: 84px; margin: 0 auto 1.6rem; border-radius: 50%;
  background: var(--sand-2); display: grid; place-items: center; color: var(--orange-deep);
}
.confirmation__icon svg { width: 40px; height: 40px; }
.confirmation h1 { font-size: clamp(2rem,4vw,3rem); }
.confirmation p { color: var(--muted); font-size: 1.08rem; }
.confirmation__actions { margin-top: 2rem; display: flex; gap: .8rem; justify-content: center; flex-wrap: wrap; }

/* Generische Seite */
.page-body { max-width: 70ch; }
.page-body h1 { font-size: clamp(2rem,4vw,3rem); margin-bottom: 1rem; }
.page-body iframe { border-radius: var(--radius); border: 1px solid var(--line) !important; background:#fff; }
.page-body a { color: var(--orange-deep); text-decoration: underline; text-underline-offset: 3px; }

/* ========================================================== Animationen */
@keyframes rise { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
.reveal { opacity: 0; animation: rise .8s var(--ease) forwards; }
.reveal[data-d="1"] { animation-delay: .08s; }
.reveal[data-d="2"] { animation-delay: .16s; }
.reveal[data-d="3"] { animation-delay: .24s; }
.reveal[data-d="4"] { animation-delay: .32s; }
.reveal[data-d="5"] { animation-delay: .40s; }

/* Sektionen beim Scrollen einblenden */
.on-scroll { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.on-scroll.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto !important; transition: none !important; }
  .on-scroll, .reveal { opacity: 1 !important; transform: none !important; }
}

/* ============================================================ Responsive */
@media (max-width: 1100px) {
  .alist--grid .alist__grid { grid-template-columns: repeat(2, 1fr); }
  .alist--minimal .aindex { grid-template-columns: 1fr; }
}

@media (max-width: 991.98px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__feature { max-width: 360px; margin: 0 auto; transform: rotate(1.4deg); }
  .alist--feature .alist__feature { grid-template-columns: 1fr; }
  .cta-band { grid-template-columns: 1fr; }
  .cta-band__action { justify-content: flex-start; }
  .site-footer__top { grid-template-columns: 1fr 1fr; }
  .site-footer__brand { grid-column: 1 / -1; }
  .sidebar { position: static; margin-top: 3rem; }

  /* Mobile-Navigation */
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .nav {
    position: fixed; inset: var(--header-h) 0 auto 0; z-index: 90;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--sand); border-bottom: 1px solid var(--line);
    padding: 1rem clamp(1rem,4vw,2rem) 1.6rem;
    box-shadow: var(--shadow);
    transform: translateY(-120%); transition: transform .4s var(--ease); pointer-events: none;
  }
  body.nav-open .nav { transform: translateY(0); pointer-events: auto; }
  .nav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav__link { padding: .9rem .4rem; font-size: 1.15rem; border-bottom: 1px solid var(--line-soft); border-radius: 0; }
  .nav__link::after { display: none; }
  .nav__cta { margin: 1rem 0 0; }
}

@media (max-width: 680px) {
  .alist--grid .alist__grid { grid-template-columns: 1fr; }
  .arow { grid-template-columns: 1fr; }
  .arow__media { aspect-ratio: 16 / 9; }
  .arow__body { padding: 1.2rem 1.4rem 1.4rem; }
  .hero__stats { gap: 1.3rem; }
  .brand__slogan { display: none; }
  .article .content > p:first-of-type::first-letter { font-size: 3rem; }
  .footer-wrapper .row > div { text-align: center; }
  .footer-nav { justify-content: center; }
  .site-footer__top { grid-template-columns: 1fr; }
}
