/* ============================
   StoryFlow – Stylesheet 2026
   Jürgen Fauth · storyflowmentor.de
   ============================ */

/* Fonts lokal gehostet – kein Google CDN (DSGVO-konform) */
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/playfair-display.woff2') format('woff2');
}
@font-face {
  font-family: 'Playfair Display';
  font-style: italic;
  font-weight: 400 600;
  font-display: swap;
  src: url('../fonts/playfair-display-italic.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300 600;
  font-display: swap;
  src: url('../fonts/inter.woff2') format('woff2');
}

/* ============================
   DESIGN TOKENS
   ============================ */
:root {
  /* Mist Blue direction – kühles Schieferblau statt Navy */
  --navy:       #2e4a5c;   /* Mist Blue dunkel – Header, dunkle Sections */
  --navy-mid:   #3a5a70;   /* etwas heller */
  --navy-deep:  #1e3244;   /* für Footer */
  --gold:       #c8961e;
  --gold-light: #e4b94a;
  --teal:       #3d7a8a;   /* blauer Teal passend zur Mist-Palette */
  --teal-light: #4e92a4;
  --cream:      #f7f5f0;   /* warm-neutral */
  --cream-mid:  #edeae2;
  --cream-dark: #ddd8ce;
  --mist:       #e8edf2;   /* helles kühles Blau-Grau für Abschnittswechsel */
  --text:       #263038;   /* dunkles Schieferblau statt reines Schwarz */
  --text-mid:   #4a5c68;
  --text-light: #7a8e9a;
  --white:      #ffffff;

  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --max-width: 1100px;
  --gutter: 2rem;
  --section-v: 5rem;

  --ease: 0.2s ease;
  --shadow: 0 2px 16px rgba(14,22,36,0.08);
  --shadow-lg: 0 8px 40px rgba(14,22,36,0.18);
}

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

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--text);
  background-color: var(--cream);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--teal); text-decoration: none; transition: color var(--ease); }
a:hover { color: var(--gold); }

ul { list-style: none; padding: 0; }

/* ============================
   TYPOGRAPHY
   ============================ */
h1, h2, h3 {
  font-family: var(--font-serif);
  line-height: 1.2;
  color: var(--navy);
  font-weight: 500;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

/* Label / eyebrow */
h4, .eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

p { margin-bottom: 1.2rem; }
p:last-child { margin-bottom: 0; }

.lead { font-size: 1.15rem; line-height: 1.85; color: var(--text-mid); }
.small { font-size: 0.875rem; color: var(--text-light); }

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

.section { padding: var(--section-v) 0; }
.section--dark { background-color: var(--navy); }
.section--dark h1, .section--dark h2, .section--dark h3 { color: var(--cream); }
.section--dark p { color: rgba(247,245,240,0.82); }
.section--dark .lead { color: rgba(247,245,240,0.78); }
.section--cream { background-color: var(--cream); }
.section--cream-mid { background-color: var(--cream-mid); }
.section--mist { background-color: var(--mist); }

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.text-center { text-align: center; }

.divider {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 1.25rem 0 1.75rem;
}
.divider--center { margin: 1.25rem auto 1.75rem; }

.section-header { margin-bottom: 3.5rem; }
.section-header--center { text-align: center; }

/* ============================
   HEADER & NAV
   ============================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--navy);
  border-bottom: 1px solid rgba(200,150,30,0.18);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.9rem var(--gutter);
}

.nav__logo img { height: 42px; width: auto; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav__links a {
  color: rgba(247,244,238,0.75);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color var(--ease);
}

.nav__links a:hover,
.nav__links a.active { color: var(--gold); }

.nav__links .nav__cta {
  background: var(--gold);
  color: var(--navy) !important;
  padding: 0.5rem 1.25rem;
  border-radius: 2px;
  font-weight: 600;
  transition: background var(--ease);
}

.nav__links .nav__cta:hover { background: var(--gold-light); color: var(--navy) !important; }

.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
}

.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--cream);
  margin: 5px 0;
  transition: all var(--ease);
}

/* ============================
   BUTTONS
   ============================ */
.btn {
  display: inline-block;
  padding: 0.8rem 1.9rem;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 2px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  transition: all var(--ease);
  text-decoration: none;
}

.btn--primary  { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.btn--primary:hover { background: var(--gold-light); border-color: var(--gold-light); color: var(--navy); }

.btn--outline  { background: transparent; color: var(--cream); border-color: rgba(247,244,238,0.55); }
.btn--outline:hover { background: var(--cream); color: var(--navy); border-color: var(--cream); }

.btn--outline-dark { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn--outline-dark:hover { background: var(--navy); color: var(--cream); }

/* ============================
   HERO
   ============================ */
.hero {
  background: var(--navy);
  min-height: 88vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  position: relative;
}

/* Text side */
.hero__text {
  display: flex;
  align-items: center;
  padding: 5rem 4rem 5rem var(--gutter);
  max-width: 620px;
  margin-left: auto;
}

.hero__text-inner { width: 100%; }

.hero__label {
  display: inline-block;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  font-style: italic;
  color: rgba(247, 245, 240, 0.88);
  margin-bottom: 1.25rem;
}

.hero__title {
  color: var(--cream) !important;
  font-style: italic;
  font-weight: 400;
  margin-bottom: 1.5rem;
  line-height: 1.18;
}

.hero__subtitle {
  font-size: 1.08rem;
  color: rgba(247,245,240,0.75);
  margin-bottom: 2.75rem;
  line-height: 1.85;
}

.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Portrait side */
.hero__image {
  position: relative;
  overflow: hidden;
}

.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: grayscale(20%) contrast(1.05);
}

/* Subtle gradient overlay at text edge */
.hero__image::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 120px;
  background: linear-gradient(to right, var(--navy), transparent);
  z-index: 1;
  pointer-events: none;
}

/* ============================
   ASPECTS GRID
   ============================ */
.aspects-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--cream-dark);
  border-radius: 4px;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
}

.aspect {
  padding: 2.25rem 1.75rem;
  border-right: 1px solid var(--cream-dark);
  transition: background var(--ease);
}

.aspect:last-child { border-right: none; }
.aspect:hover { background: var(--cream); }

.aspect__glyph {
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 1rem;
  line-height: 1;
}

.aspect__title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 0.65rem;
  font-weight: 500;
}

.aspect__text { font-size: 0.9rem; color: var(--text-mid); line-height: 1.7; margin: 0; }

/* ============================
   PROBLEMS / PAIN POINTS
   ============================ */
.problems-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.problem {
  padding: 1.75rem 2rem;
  background: var(--navy-mid);
  border-radius: 3px;
  border-left: 3px solid var(--gold);
  transition: background var(--ease);
}
.problem:hover { background: var(--navy-deep); }

.problem__quote {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-style: italic;
  color: var(--cream-mid);
  margin-bottom: 0.75rem;
  line-height: 1.65;
}

.problem__answer { font-size: 0.875rem; color: rgba(237,232,220,0.65); margin: 0; line-height: 1.7; }

/* ============================
   ABOUT PREVIEW
   ============================ */
.about-preview { display: grid; grid-template-columns: 340px 1fr; gap: 5rem; align-items: center; }

.portrait-wrap { position: relative; }

.portrait-wrap img,
.portrait-placeholder {
  width: 100%;
  border-radius: 3px;
  display: block;
}

.portrait-placeholder {
  width: 100%;
  padding-top: 120%;
  background: var(--cream-mid);
  border: 2px dashed var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 3px;
}

.portrait-placeholder span {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.5rem;
  color: var(--text-light);
  font-size: 0.85rem;
  text-align: center;
  padding: 1rem;
}

.portrait-wrap::after {
  content: '';
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  right: -1.25rem;
  bottom: -1.25rem;
  border: 2px solid var(--gold);
  border-radius: 3px;
  z-index: -1;
  opacity: 0.5;
}

/* ============================
   TESTIMONIAL CARDS (multi)
   ============================ */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: var(--white);
  border-radius: 4px;
  padding: 2rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.testimonial-card__stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
}

.testimonial-card__text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.75;
  flex-grow: 1;
  margin: 0;
}

.testimonial-card__text::before {
  content: '\201C';
  color: var(--gold);
  font-size: 1.5rem;
  line-height: 0;
  vertical-align: -0.3rem;
  margin-right: 0.15rem;
  font-style: normal;
}

.testimonial-card__author {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
}

.testimonial-card__role {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 0.15rem;
}

.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: 3px;
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
}

.rating-badge__stars { color: var(--gold); }

/* ============================
   TESTIMONIAL SINGLE (hero-style)
   ============================ */
.testimonial { background: var(--navy); padding: 5rem 0; }

.testimonial__inner {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 3rem;
  align-items: center;
}

.testimonial__img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  filter: grayscale(100%);
  border: 2px solid var(--gold);
  opacity: 0.9;
}

.testimonial__body {}

.testimonial__quote {
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  color: var(--cream);
  font-style: italic;
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.testimonial__quote::before {
  content: '\201C';
  font-size: 2.5rem;
  color: var(--gold);
  line-height: 0;
  vertical-align: -0.45rem;
  margin-right: 0.2rem;
  font-style: normal;
}

.testimonial__name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.04em;
}

.testimonial__role {
  font-size: 0.825rem;
  color: rgba(247,244,238,0.5);
  margin-top: 0.2rem;
}

/* ============================
   CTA SECTION
   ============================ */
.cta-section {
  background: var(--navy);
  padding: 5rem 0;
  text-align: center;
}

.cta-section h2 { color: var(--cream); margin-bottom: 1.25rem; }
.cta-section p { color: rgba(247,244,238,0.7); max-width: 520px; margin: 0 auto 2.5rem; font-size: 1.05rem; }

/* ============================
   OFFER INFO BOX
   ============================ */
.offer-box {
  background: var(--navy);
  border-radius: 4px;
  padding: 2.25rem;
  color: var(--cream);
}

.offer-box__label {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 1.75rem;
}

.offer-box__rows { display: flex; flex-direction: column; gap: 1.25rem; }

.offer-box__row-label {
  font-size: 0.75rem;
  color: rgba(247,244,238,0.45);
  margin-bottom: 0.2rem;
}

.offer-box__row-value { color: var(--cream); font-size: 0.95rem; margin: 0; }

.offer-box__price {
  color: var(--gold) !important;
  font-family: var(--font-serif);
  font-size: 1.4rem !important;
}

/* ============================
   PAGE HEADER
   ============================ */
.page-header {
  background: var(--navy);
  padding: 4rem 0 3.5rem;
  border-bottom: 1px solid rgba(200,150,30,0.15);
}

.page-header h4 { margin-bottom: 0.5rem; }
.page-header h1 { color: var(--cream); margin-bottom: 0.75rem; }
.page-header p { color: rgba(247,244,238,0.7); font-size: 1.1rem; max-width: 580px; margin: 0; }

/* ============================
   CHECKLIST
   ============================ */
.checklist { list-style: none; padding: 0; }
.checklist li {
  padding: 0.4rem 0 0.4rem 1.75rem;
  position: relative;
  color: var(--text);
  font-size: 0.95rem;
}
.checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
}

/* ============================
   PUBLICATIONS
   ============================ */
.pub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.pub { text-align: center; }

.pub__cover {
  display: block;
  height: 220px;
  width: auto;
  max-width: 100%;
  margin: 0 auto 1.25rem;
  object-fit: contain;
  box-shadow: 0 6px 24px rgba(0,0,0,0.22);
  border-radius: 2px;
}

.pub__title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 0.3rem;
}

.pub__meta { font-size: 0.85rem; color: var(--text-light); margin: 0 0 0.5rem; }
.pub__desc { font-size: 0.82rem; color: var(--text-light); line-height: 1.5; margin: 0 0 0.75rem; }
.pub__blurb {
  margin: 0.75rem 0 0;
  padding: 0.75rem 1rem;
  border-left: 2px solid var(--gold);
  font-size: 0.82rem;
  font-style: italic;
  color: var(--text-light);
  line-height: 1.55;
}
.pub__blurb cite {
  display: block;
  font-style: normal;
  font-size: 0.78rem;
  color: var(--gold);
  margin-top: 0.4rem;
}

/* ============================
   CV ROWS
   ============================ */
.cv-list { list-style: none; padding: 0; }
.cv-list li {
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--cream-dark);
}
.cv-list li:last-child { border-bottom: none; }
.cv-list strong { color: var(--navy); display: block; margin-bottom: 0.2rem; }
.cv-list .cv-sub { font-size: 0.875rem; color: var(--text-light); margin: 0; }

/* ============================
   CONTACT FORM
   ============================ */
.contact-form { }

.form-group { margin-bottom: 1.5rem; }

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--cream-dark);
  border-radius: 2px;
  background: var(--white);
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--text);
  transition: border-color var(--ease);
  -webkit-appearance: none;
  appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--teal);
}

.form-group textarea { min-height: 140px; resize: vertical; }

/* ============================
   STEPS
   ============================ */
.steps { display: flex; flex-direction: column; gap: 1.5rem; }

.step { display: flex; gap: 1rem; align-items: flex-start; }

.step__num {
  width: 2rem;
  height: 2rem;
  min-width: 2rem;
  background: var(--navy);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  font-size: 0.825rem;
  font-weight: 700;
}

.step__title { font-weight: 600; color: var(--navy); margin-bottom: 0.2rem; display: block; }
.step__text { font-size: 0.9rem; color: var(--text-mid); margin: 0; }

/* ============================
   CONTACT CARD
   ============================ */
.contact-card {
  background: var(--navy);
  padding: 1.75rem 2rem;
  border-radius: 3px;
  margin-top: 2rem;
}

.contact-card p { color: rgba(247,244,238,0.75); font-size: 0.9rem; margin: 0; }
.contact-card a { color: var(--cream-mid); }
.contact-card a:hover { color: var(--gold); }

/* ============================
   FOOTER
   ============================ */
.site-footer {
  background: var(--navy);
  padding: 3.5rem 0 2rem;
  border-top: 1px solid rgba(200,150,30,0.12);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer__logo img { height: 38px; margin-bottom: 1rem; }

.footer__tagline { font-size: 0.875rem; color: rgba(247,244,238,0.45); line-height: 1.7; margin: 0; }

.footer__heading {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.footer__links li { margin-bottom: 0.5rem; }
.footer__links a { font-size: 0.875rem; color: rgba(247,244,238,0.55); }
.footer__links a:hover { color: var(--gold); }

.footer__bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(247,244,238,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer__bottom p { font-size: 0.8rem; color: rgba(247,244,238,0.3); margin: 0; }
.footer__bottom a { color: rgba(247,244,238,0.3); }
.footer__bottom a:hover { color: var(--gold); }

/* ============================
   QUOTE BLOCK
   ============================ */
.quote-block {
  border-left: 3px solid var(--gold);
  padding: 0.5rem 1.25rem;
  font-style: italic;
  color: var(--text-mid);
  font-family: var(--font-serif);
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 1.5rem 0;
}

/* ============================
   OFFER SECTION LAYOUT
   ============================ */
.offer-section {
  padding: var(--section-v) 0;
}

.offer-section + .offer-section {
  border-top: 1px solid var(--cream-dark);
}

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero__image {
    height: 55vw;
    max-height: 420px;
    order: -1;
  }

  .hero__image::before {
    display: none;
  }

  .hero__text {
    padding: 3rem var(--gutter);
    max-width: 100%;
    margin-left: 0;
  }

  .testimonial-grid {
    grid-template-columns: 1fr 1fr;
  }

  .aspects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .aspect { border-right: none; border-bottom: 1px solid var(--cream-dark); }
  .aspect:nth-child(odd) { border-right: 1px solid var(--cream-dark); }
  .aspect:nth-child(3),
  .aspect:nth-child(4) { border-bottom: none; }

  .about-preview { grid-template-columns: 1fr; gap: 2.5rem; }
  .portrait-wrap { max-width: 280px; }

  .pub-grid { grid-template-columns: repeat(2, 1fr); }

  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  :root { --section-v: 3.5rem; --gutter: 1.25rem; }

  .nav__links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy);
    flex-direction: column;
    padding: 1.5rem var(--gutter) 2rem;
    gap: 1.25rem;
    border-bottom: 1px solid rgba(200,150,30,0.18);
  }

  .nav__links.open { display: flex; }
  .nav__toggle { display: block; }
  .site-header { position: relative; }

  .grid-2,
  .problems-grid,
  .pub-grid,
  .aspects-grid,
  .testimonial__inner { grid-template-columns: 1fr; }

  .aspect { border-right: none !important; }
  .aspect:nth-child(3) { border-bottom: 1px solid var(--cream-dark) !important; }

  .hero {
    grid-template-columns: 1fr;
  }

  .hero__image {
    height: 70vw;
    order: -1;
  }

  .hero__text {
    padding: 2.5rem var(--gutter);
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .hero__actions { flex-direction: column; }
  .hero__actions .btn { text-align: center; }

  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; text-align: center; }

  .portrait-wrap::after { display: none; }
}

/* ============================
   COOKIE BANNER
   ============================ */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--navy);
  border-top: 1px solid rgba(200,150,30,0.25);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  flex-wrap: wrap;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.18);
}
#cookie-banner p {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(247,244,238,0.75);
  line-height: 1.5;
  flex: 1;
  min-width: 200px;
}
#cookie-banner a {
  color: var(--gold);
  text-decoration: underline;
}
#cookie-banner a:hover { opacity: 0.8; }
.cookie-banner__actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}
#cookie-accept {
  background: var(--gold);
  color: var(--navy);
  border: none;
  padding: 0.5rem 1.25rem;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-sans);
  white-space: nowrap;
}
#cookie-accept:hover { opacity: 0.9; }
#cookie-banner.hidden { display: none; }
