/*
 * UNICON Refresh Stylesheet
 * Single-source CSS for the refreshed UNICON website.
 * Replaces Bootstrap 3.3.7, Jasny Bootstrap and the old custom.css.
 */

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  /* Brand colors */
  --indigo: #1a2161;
  --indigo-soft: #2a3580;
  --indigo-deep: #11173f;
  --gold: #c8a96b;

  /* Surfaces */
  --cream: #faf8f3;
  --warm-white: #ffffff;
  --line: #e6e3da;

  /* Text */
  --ink: #1a1a1a;
  --ink-muted: #5b5d68;

  /* Validation */
  --error: #cc0000;

  /* Type scale (clamp for responsive) */
  --fs-hero: clamp(38px, 5vw, 64px);
  --fs-h2: clamp(28px, 3.4vw, 48px);
  --fs-h3: 20px;
  --fs-lead: 17px;
  --fs-body: 15px;
  --fs-eyebrow: 12px;

  /* Spacing */
  --section-py: 120px;
  --section-py-mobile: 80px;
  --container-max: 1240px;
  --nav-height: 70px;

  /* Borders & shadows */
  --radius-button: 6px;
  --radius-card: 8px;
  --shadow-card: 0 12px 28px rgba(26, 33, 97, 0.08);
  --shadow-card-hover: 0 16px 36px rgba(26, 33, 97, 0.16);
}

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

html, body {
  margin: 0; padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  overflow-x: clip;
}

img, video { max-width: 100%; height: auto; }

body {
  font-family: 'Open Sans', system-ui, sans-serif;
  font-weight: 400;
  font-size: var(--fs-body);
  line-height: 1.6;
  color: var(--ink);
  background-color: var(--cream);
}

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

a { color: var(--indigo); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 {
  font-family: 'Merriweather', Georgia, serif;
  font-weight: 400;
  color: var(--indigo);
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
  text-rendering: optimizeLegibility;
}

p { margin: 0 0 1em; }

button { font-family: inherit; }

/* Note: prefers-reduced-motion override is intentionally NOT applied here.
   Animations on this site (subtle marquee, hover lifts, floating book expand)
   are central to the visual identity. If a user requires reduced motion,
   they can disable animations at the browser level. */

/* ============================================================
   LAYOUT PRIMITIVES
   ============================================================ */
.u-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 700px) {
  .u-container { padding: 0 20px; }
}

.u-section {
  padding: var(--section-py) 0;
}
@media (max-width: 700px) {
  .u-section { padding: var(--section-py-mobile) 0; }
}

/* ============================================================
   EYEBROW LABEL
   ============================================================ */
.c-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Open Sans', sans-serif;
  font-size: var(--fs-eyebrow);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--indigo);
}
.c-label::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--gold);
}
.c-label--center { justify-content: center; }

/* ============================================================
   BUTTONS
   ============================================================ */
.c-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border: 0;
  border-radius: var(--radius-button);
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.c-btn:hover { text-decoration: none; transform: translateY(-2px); }

.c-btn--primary { background: var(--indigo); color: #fff; }
.c-btn--primary:hover { background: var(--indigo-soft); box-shadow: 0 12px 28px rgba(26, 33, 97, 0.25); color: #fff; }

.c-btn--ghost { background: transparent; color: var(--indigo); border: 1px solid rgba(26, 33, 97, 0.3); }
.c-btn--ghost:hover { background: rgba(26, 33, 97, 0.05); border-color: var(--indigo); color: var(--indigo); }

.c-btn--white { background: #fff; color: var(--indigo); }
.c-btn--white:hover { box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25); color: var(--indigo); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.c-nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 248, 243, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.c-nav__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 16px 32px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px;
}
.c-nav__brand { display: flex; align-items: center; flex-shrink: 0; }
.c-nav__logo { height: 38px; width: auto; flex-shrink: 0; }
.c-nav__links {
  list-style: none; margin: 0; padding: 0;
  display: flex; gap: 28px;
}
.c-nav__links a {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px; font-weight: 500;
  color: var(--ink);
  transition: color 0.2s;
}
.c-nav__links a:hover { color: var(--indigo); text-decoration: none; }
.c-nav__right { display: flex; align-items: center; gap: 18px; }
.c-nav__cta { padding: 10px 18px; }
.c-nav__service-link {
  font-family: 'Open Sans', sans-serif;
  font-size: 11px; font-weight: 600;
  color: var(--ink-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s;
}
.c-nav__service-link:hover { color: var(--indigo); }

/* Burger (Mobile) */
.c-nav__burger {
  display: none;
  background: transparent; border: 0; padding: 8px;
  cursor: pointer; gap: 4px;
  flex-direction: column;
}
.c-nav__burger span {
  display: block; width: 22px; height: 2px;
  background: var(--ink); border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* Language switcher (flags) — visible on all viewports */
.c-nav__lang-flags {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.c-nav__flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 15px;
  border-radius: 2px;
  overflow: hidden;
  background: var(--line);
  box-shadow: 0 0 0 1px rgba(26, 33, 97, 0.12);
  text-decoration: none;
  opacity: 0.55;
  transition: opacity 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.c-nav__flag:hover,
.c-nav__flag:focus-visible {
  opacity: 1;
  outline: none;
  box-shadow: 0 0 0 2px var(--gold);
}
.c-nav__flag.is-active {
  opacity: 1;
  cursor: default;
}
.c-nav__flag-icon {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

@media (max-width: 1099px) {
  .c-nav__links, .c-nav__cta, .c-nav__service-link { display: none; }
  .c-nav__burger { display: flex; }
}

/* Mobile menu */
.c-mobile-menu {
  position: fixed; inset: 0; z-index: 100;
  background: var(--cream);
  display: flex; flex-direction: column;
  padding: 16px 28px max(28px, env(safe-area-inset-bottom));
  height: 100vh;
  height: 100dvh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  transform: translateY(-100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.c-mobile-menu[hidden] { display: none; }
.c-mobile-menu.is-open { transform: translateY(0); }
.c-mobile-menu__close {
  align-self: flex-end;
  position: sticky; top: 0;
  background: transparent; border: 0;
  font-size: 32px; line-height: 1;
  color: var(--ink); cursor: pointer; padding: 8px 12px;
  z-index: 1;
}
.c-mobile-menu__nav { flex: 1 0 auto; display: flex; flex-direction: column; justify-content: center; padding: 12px 0 20px; }
.c-mobile-menu__nav ul { list-style: none; padding: 0; margin: 0 0 24px; }
.c-mobile-menu__nav li { margin-bottom: 10px; }
.c-mobile-menu__nav a {
  font-family: 'Merriweather', serif;
  font-size: clamp(18px, 5.5vw, 22px);
  color: var(--indigo); font-weight: 400;
  line-height: 1.25;
  display: inline-block;
  padding: 6px 0;
}
.c-mobile-menu__lang {
  border-top: 1px solid var(--line);
  padding-top: 18px; display: flex; gap: 24px;
  font-family: 'Open Sans', sans-serif; font-size: 13px;
}
.c-mobile-menu__lang .is-active { color: var(--indigo); font-weight: 700; }
.c-mobile-menu__lang a { color: var(--ink-muted); }
@media (max-height: 640px) {
  .c-mobile-menu__nav { justify-content: flex-start; padding-top: 4px; }
  .c-mobile-menu__nav a { font-size: 18px; padding: 4px 0; }
  .c-mobile-menu__nav li { margin-bottom: 6px; }
}

/* ============================================================
   HERO
   ============================================================ */
.c-hero {
  position: relative;
  min-height: 88vh;
  background-image: url('../img/startseite_v2.jpg');
  background-size: cover;
  background-position: 18% center;
  background-color: #fff;
  display: flex; flex-direction: column; justify-content: center;
  overflow: hidden;
}
/* Soft fade so the text side stays readable on narrower desktops while
   the woman on the left stays clearly visible. */
.c-hero::after {
  content: "";
  position: absolute; top: 0; bottom: 0; right: 0;
  width: 70%;
  background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(250,248,243,0.92) 55%, var(--cream) 100%);
  pointer-events: none;
  z-index: 1;
}
.c-hero__image-mobile { display: none; }
.c-hero__inner {
  position: relative; z-index: 2;
  max-width: var(--container-max);
  margin: 0 auto; width: 100%;
  padding: 0 48px;
  display: flex; justify-content: flex-end;
}
.c-hero__content { max-width: 520px; }
/* English headline ("Consulting that works.") is wider than the German one,
   so the content column needs a bit more room to keep both lines on one row. */
html[lang="en"] .c-hero__content { max-width: 640px; }
.c-hero__title {
  font-family: 'Merriweather', Georgia, serif;
  font-weight: 400;
  font-size: clamp(28px, 6vw, 60px);
  line-height: 1.08;
  letter-spacing: -0.018em;
  color: var(--indigo);
  margin: 28px 0;
}
.c-hero__title-line {
  display: block;
  white-space: nowrap;
}
.c-hero__title em { font-style: italic; color: var(--gold); font-weight: 400; }
.c-hero__lead {
  font-size: 16px; line-height: 1.65;
  color: var(--ink);
  margin: 0; max-width: 46ch;
}
.c-hero__cta { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }

/* Below desktop: single stacked layout. Image stays compact (capped height)
   so it does not overshadow the headline. */
@media (max-width: 1099px) {
  .c-hero {
    background-image: none;
    min-height: auto;
    padding: 0;
  }
  .c-hero::after { display: none; }
  .c-hero__image-mobile {
    display: block;
    width: 100%;
    height: clamp(240px, 38vw, 380px);
    object-fit: cover;
    object-position: 18% 28%;
  }
  .c-hero__inner {
    justify-content: flex-start;
    padding: clamp(28px, 4vw, 56px) clamp(20px, 4vw, 48px) clamp(40px, 5vw, 64px);
    background: var(--cream);
  }
  .c-hero__content { max-width: 100%; width: 100%; }
}

/* Very small phones: allow the title to wrap so it stays inside the viewport. */
@media (max-width: 380px) {
  .c-hero__title-line { white-space: normal; }
  .c-hero__title { font-size: 26px; }
}

/* ============================================================
   STORY
   ============================================================ */
.c-story { background: var(--cream); }
.c-story__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.c-story__title {
  font-size: var(--fs-h2);
  line-height: 1.15;
  margin: 18px 0 0;
}
.c-story__title em { font-style: italic; color: var(--gold); }
.c-story__stats { margin-top: 48px; display: flex; gap: 32px; flex-wrap: wrap; }
.c-stat { border-left: 2px solid var(--gold); padding-left: 16px; }
.c-stat__num {
  font-family: 'Merriweather', serif;
  font-size: 36px; font-weight: 700;
  color: var(--indigo); line-height: 1;
}
.c-stat__label {
  font-size: 12px; color: var(--ink-muted);
  margin-top: 4px; letter-spacing: 0.06em; text-transform: uppercase;
}
.c-story__text p {
  font-size: 17px; line-height: 1.75;
  color: var(--ink); margin-bottom: 18px; max-width: 56ch;
}
.c-story__text p:first-child::first-letter {
  font-family: 'Merriweather', serif;
  font-size: 64px; float: left;
  line-height: 0.9;
  margin: 8px 12px 0 0;
  color: var(--indigo); font-weight: 700;
}

@media (max-width: 900px) {
  .c-story__inner { grid-template-columns: 1fr; gap: 40px; }
}

/* ============================================================
   TEAM
   ============================================================ */
.c-team { background: var(--warm-white); border-top: 1px solid var(--line); }
.c-team__head { text-align: center; margin-bottom: 64px; }
.c-team__title {
  font-size: var(--fs-h2); line-height: 1.15;
  margin: 18px 0 16px;
}
.c-team__title em { font-style: italic; color: var(--gold); }
.c-team__intro {
  max-width: 56ch; margin: 0 auto;
  color: var(--ink-muted); font-size: 16px;
}
.c-team__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 56px 32px;
  max-width: 1100px; margin: 0 auto;
}
@media (max-width: 900px) { .c-team__grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .c-team__grid { grid-template-columns: repeat(2, 1fr); gap: 40px 20px; } }

.c-member { text-align: center; cursor: pointer; }
.c-member__photo {
  position: relative;
  width: 100%;
  max-width: 168px;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
}
.c-member__img-wrap {
  width: 100%;
  max-width: 168px;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  border-radius: 50%;
  overflow: hidden;
  background: var(--line);
  position: relative;
  box-shadow: 0 6px 20px rgba(26, 33, 97, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.c-member__photo .c-member__img-wrap { max-width: none; }
.c-member:hover .c-member__img-wrap {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(26, 33, 97, 0.16);
}
.c-member__img-wrap::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(26, 33, 97, 0.12);
  pointer-events: none; transition: box-shadow 0.35s ease;
}
.c-member:hover .c-member__img-wrap::after { box-shadow: inset 0 0 0 2px var(--gold); }
.c-member__img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 25%;
  filter: grayscale(0.25) contrast(1.02);
  transition: filter 0.5s, transform 0.6s;
}
.c-member:hover .c-member__img { filter: grayscale(0) contrast(1); transform: scale(1.06); }
.c-member__name {
  font-family: 'Merriweather', serif;
  font-size: 16px; font-weight: 700;
  color: var(--indigo);
  margin: 22px 0 0;
}
.c-member__role {
  font-size: 12px; color: var(--ink-muted);
  margin: 6px 0 0; line-height: 1.55;
}
.c-member__xing {
  position: absolute;
  bottom: 6%;
  right: 6%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--warm-white);
  color: var(--indigo);
  text-decoration: none;
  box-shadow:
    0 4px 10px rgba(26, 33, 97, 0.22),
    0 0 0 1px rgba(26, 33, 97, 0.08);
  transition: color 0.25s ease, background-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.c-member__xing-icon {
  width: 13px;
  height: 13px;
  display: block;
}
.c-member__xing:hover,
.c-member__xing:focus-visible {
  color: var(--gold);
  transform: translateY(-1px) scale(1.06);
  box-shadow:
    0 6px 14px rgba(26, 33, 97, 0.28),
    0 0 0 1px var(--gold);
  outline: none;
}

/* ============================================================
   LEISTUNGEN
   ============================================================ */
.c-services { background: var(--indigo); color: #fff; }
.c-services__head {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  margin-bottom: 64px; align-items: end;
}
.c-services__title {
  color: #fff; font-size: var(--fs-h2);
  line-height: 1.15; margin: 18px 0 0;
}
.c-services__title em { font-style: italic; color: var(--gold); }
.c-services__intro {
  font-size: 17px; opacity: 0.85;
  line-height: 1.7; max-width: 50ch;
}
.c-services__list { border-top: 1px solid rgba(255, 255, 255, 0.15); }
.c-service {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.c-service > summary {
  list-style: none;
  display: grid; grid-template-columns: 80px 1fr auto; gap: 32px;
  padding: 32px 0;
  cursor: pointer; align-items: center;
  transition: padding 0.2s;
}
.c-service > summary::-webkit-details-marker { display: none; }
.c-service > summary:hover { padding-left: 16px; }
.c-service__num {
  font-family: 'Merriweather', serif;
  font-size: 14px; color: var(--gold); letter-spacing: 0.1em;
}
.c-service__name {
  font-family: 'Merriweather', serif;
  font-size: 24px; font-weight: 400;
  letter-spacing: -0.005em;
}
.c-service__arrow {
  font-size: 24px; color: var(--gold);
  transition: transform 0.2s;
}
.c-service > summary:hover .c-service__arrow { transform: translateX(8px); }
.c-service[open] .c-service__arrow { transform: rotate(90deg); }
.c-service__body {
  padding: 8px 0 32px 80px;
  color: rgba(255, 255, 255, 0.85);
  transition: height 0.45s cubic-bezier(0.4, 0, 0.2, 1),
              padding-top 0.45s cubic-bezier(0.4, 0, 0.2, 1),
              padding-bottom 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.c-service__body h4 {
  color: #fff; font-family: 'Merriweather', serif;
  font-size: 18px; margin: 24px 0 8px;
}
.c-service__body p { line-height: 1.7; max-width: 70ch; }
.c-service__bullets {
  list-style: none; padding: 0; margin: 12px 0 20px;
}
.c-service__bullets li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 6px;
  line-height: 1.6;
}
.c-service__bullets li::before {
  content: "—"; color: var(--gold);
  position: absolute; left: 0;
}

@media (max-width: 800px) {
  .c-services__head { grid-template-columns: 1fr; gap: 16px; }
  .c-service > summary { grid-template-columns: 50px 1fr auto; gap: 16px; padding: 24px 0; }
  .c-service__name { font-size: 18px; }
  .c-service__body { padding-left: 50px; }
}

/* ============================================================
   BUCH
   ============================================================ */
.c-book { background: var(--cream); border-top: 1px solid var(--line); }
.c-book__inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 96px;
  align-items: center;
  max-width: 1180px;
}
.c-book__cover-wrap {
  display: flex; justify-content: center; align-items: center;
  padding: 20px;
}
.c-book__cover {
  width: 100%; max-width: 280px;
  border-radius: 3px;
  box-shadow:
    -3px 0 0 rgba(255, 255, 255, 0.6),
    -6px 0 0 rgba(0, 0, 0, 0.04),
    0 12px 32px rgba(26, 33, 97, 0.18),
    0 32px 64px rgba(26, 33, 97, 0.12);
  transform: rotate(-2.5deg);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.c-book__cover:hover { transform: rotate(0deg) scale(1.03); }
.c-book__title {
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.18; margin: 18px 0 12px;
}
.c-book__title em { font-style: italic; color: var(--gold); }
.c-book__subtitle {
  font-family: 'Merriweather', serif; font-style: italic;
  color: var(--ink-muted); font-size: 18px;
  margin: 0 0 28px; line-height: 1.5;
}
.c-book__content p {
  font-size: 16px; line-height: 1.75;
  color: var(--ink); max-width: 56ch;
}
.c-book__meta {
  display: flex; gap: 36px;
  margin: 32px 0; padding-top: 28px;
  border-top: 1px solid rgba(26, 33, 97, 0.12); flex-wrap: wrap;
}
.c-book__meta-item .k {
  font-family: 'Open Sans', sans-serif;
  font-size: 11px; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--ink-muted); font-weight: 600;
}
.c-book__meta-item .v {
  font-family: 'Merriweather', serif; font-size: 16px;
  color: var(--indigo); font-weight: 700; margin-top: 4px;
}

@media (max-width: 900px) {
  .c-book__inner { grid-template-columns: 1fr; gap: 56px; }
}

/* ============================================================
   REFERENZEN (Marquee)
   ============================================================ */
.c-references { background: var(--cream); border-top: 1px solid var(--line); padding: 64px 0 80px; }
.c-references__head { text-align: center; margin-bottom: 28px; }
.c-references__title {
  font-size: var(--fs-h2); line-height: 1.18;
  margin: 18px 0 14px;
}
.c-references__title em { font-style: italic; color: var(--gold); }
.c-references__intro {
  color: var(--ink-muted); max-width: 58ch;
  margin: 0 auto; font-size: 16px; line-height: 1.65;
}

.c-marquee {
  display: flex; flex-direction: column; gap: 16px;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
          mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  padding: 12px 0 24px;
  overflow-x: clip;
  overflow-y: visible;
}
.c-marquee__track {
  display: flex; gap: 16px;
  width: max-content;
  animation: marquee-left 55s linear infinite;
  will-change: transform;
}
.c-marquee__track--reverse { animation: marquee-right 65s linear infinite; }
@media (hover: hover) {
  .c-marquee:hover .c-marquee__track { animation-play-state: paused; }
}
@keyframes marquee-left {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-50% - 8px)); }
}
@keyframes marquee-right {
  from { transform: translateX(calc(-50% - 8px)); }
  to   { transform: translateX(0); }
}
.c-marquee__cell {
  flex-shrink: 0;
  width: 172px; height: 104px;
  display: flex; align-items: center; justify-content: center;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  position: relative;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.c-marquee__cell::after {
  content: ""; position: absolute; bottom: -1px; left: 50%;
  transform: translateX(-50%);
  width: 0; height: 2px; background: var(--gold);
  border-radius: 2px 2px 0 0;
  transition: width 0.35s ease;
}
.c-marquee__cell.is-active {
  transform: translateY(-2px);
  border-color: rgba(26, 33, 97, 0.22);
  box-shadow: 0 4px 12px rgba(26, 33, 97, 0.10);
}
.c-marquee__cell.is-active::after { width: 56%; }
.c-marquee__cell img {
  max-width: 100%; max-height: 60%;
  width: auto; height: auto; object-fit: contain;
  filter: grayscale(1) contrast(0.92) opacity(0.72);
  transition: filter 0.35s ease;
}
.c-marquee__cell.is-active img { filter: grayscale(0) contrast(1) opacity(1); }
@media (hover: hover) {
  .c-marquee__cell:hover {
    transform: translateY(-2px);
    border-color: rgba(26, 33, 97, 0.22);
    box-shadow: 0 4px 12px rgba(26, 33, 97, 0.10);
  }
  .c-marquee__cell:hover::after { width: 56%; }
  .c-marquee__cell:hover img { filter: grayscale(0) contrast(1) opacity(1); }
}

.c-references__stats {
  margin-top: 80px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.c-stat-cell {
  padding: 28px 0 0;
  border-top: 1px solid rgba(26, 33, 97, 0.18);
}
.c-stat-cell__num {
  font-family: 'Merriweather', serif;
  font-size: 38px; color: var(--indigo);
  font-weight: 700; line-height: 1; letter-spacing: -0.012em;
}
.c-stat-cell__desc {
  font-size: 13px; color: var(--ink-muted);
  margin-top: 10px; line-height: 1.5; max-width: 22ch;
}
@media (max-width: 700px) {
  .c-references { padding: 48px 0 64px; }
  .c-references__stats { grid-template-columns: repeat(2, 1fr); }
  .c-marquee__track { gap: 12px; }
  .c-marquee__cell {
    width: 128px; height: 64px;
    padding: 12px;
  }
}

/* ============================================================
   PRESSEBEREICH
   ============================================================ */
.c-press { background: var(--warm-white); border-top: 1px solid var(--line); }
.c-press__head { text-align: center; margin-bottom: 56px; }
.c-press__title {
  font-size: var(--fs-h2); line-height: 1.15;
  margin: 18px 0 0;
}
.c-press__title em { font-style: italic; color: var(--gold); }
.c-press__grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
  max-width: 880px; margin: 0 auto;
}
@media (max-width: 700px) { .c-press__grid { grid-template-columns: 1fr; } }
.c-press__item {
  display: flex; align-items: center; gap: 20px;
  padding: 24px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  text-decoration: none;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.c-press__item:hover {
  border-color: var(--indigo);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
  text-decoration: none;
}
.c-press__logo { flex-shrink: 0; width: 80px; }
.c-press__logo img { max-width: 100%; height: auto; }
.c-press__text h3 {
  font-family: 'Merriweather', serif;
  font-size: 16px; color: var(--indigo);
  margin: 0 0 4px;
}
.c-press__text p {
  font-size: 13px; color: var(--ink-muted);
  margin: 0; line-height: 1.5;
}

/* ============================================================
   KONTAKT
   ============================================================ */
.c-contact { background: var(--cream); border-top: 1px solid var(--line); }
.c-contact__inner {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px;
  align-items: start;
}
.c-contact__title {
  font-size: var(--fs-h2); line-height: 1.15;
  margin: 18px 0 36px;
}
.c-contact__title em { font-style: italic; color: var(--gold); }
.c-contact__list { list-style: none; padding: 0; margin: 0; }
.c-contact__list li {
  display: grid; grid-template-columns: 100px 1fr; gap: 24px;
  padding: 20px 0; border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.c-contact__key {
  font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--ink-muted); font-weight: 700;
}
.c-contact__val {
  font-family: 'Merriweather', serif;
  font-size: 17px; color: var(--indigo);
}
a.c-contact__val { transition: color 0.2s; }
a.c-contact__val:hover { color: var(--indigo-soft); text-decoration: underline; }

.c-contact__form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 32px;
}
.c-contact__form h3 {
  font-family: 'Merriweather', serif;
  font-size: 22px; color: var(--indigo);
  margin: 0 0 20px;
}
.c-field { display: block; margin-bottom: 18px; }
.c-field__label {
  display: block;
  font-size: 12px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--ink-muted);
  font-weight: 600; margin-bottom: 6px;
}
.c-field__input {
  display: block; width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-button);
  background: var(--cream);
  font-family: 'Open Sans', sans-serif;
  font-size: 15px; color: var(--ink);
  transition: border-color 0.2s, background 0.2s;
}
.c-field__input:focus {
  outline: 0;
  border-color: var(--indigo);
  background: #fff;
}
.c-field textarea.c-field__input { resize: vertical; min-height: 100px; }
.c-contact__note {
  margin: 16px 0 0;
  padding: 12px 14px;
  border-radius: var(--radius-button);
  background: rgba(204, 0, 0, 0.06);
  color: var(--error);
  font-size: 14px; line-height: 1.5;
}
.c-contact__note a { color: var(--error); text-decoration: underline; }
.c-contact__success p { color: var(--ink-muted); font-size: 16px; line-height: 1.6; margin: 0; }

@media (max-width: 900px) {
  .c-contact__inner { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 700px) {
  .c-contact__form { padding: 24px 20px; }
  .c-contact__list li { grid-template-columns: 88px 1fr; gap: 12px; }
}

.c-contact__arrival {
  margin-top: 80px;
  padding-top: 56px;
  border-top: 1px solid var(--line);
}
.c-contact__arrival-head { margin-bottom: 36px; }
.c-contact__arrival-title {
  font-family: 'Merriweather', serif;
  font-size: 28px; line-height: 1.2;
  color: var(--indigo);
  margin: 14px 0 0;
}
.c-contact__arrival-grid {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px;
  align-items: stretch;
}
.c-contact__arrival-info {
  display: flex; flex-direction: column; gap: 28px;
}
.c-arrival-key {
  font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--ink-muted); font-weight: 700;
  margin-bottom: 10px;
}
.c-arrival-val {
  font-family: 'Merriweather', serif;
  font-size: 16px; line-height: 1.6; color: var(--indigo);
  margin: 0;
}
.c-contact__map {
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--cream);
  min-height: 340px;
}
.c-contact__map iframe {
  display: block; width: 100%; height: 100%;
  min-height: 340px; border: 0;
}
@media (max-width: 900px) {
  .c-contact__arrival-grid { grid-template-columns: 1fr; gap: 40px; }
  .c-contact__map, .c-contact__map iframe { min-height: 280px; }
}
@media (max-width: 700px) {
  .c-contact__arrival { margin-top: 56px; padding-top: 40px; }
  .c-contact__arrival-title { font-size: 24px; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.c-footer {
  background: var(--indigo-deep);
  color: rgba(255, 255, 255, 0.8);
  padding: 72px 0 0;
}
.c-footer__inner {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 64px;
}
.c-footer__logo {
  height: 32px; filter: brightness(0) invert(1);
  margin-bottom: 16px;
}
.c-footer__about {
  font-size: 13px; line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
}
.c-footer__col h4 {
  color: #fff; font-family: 'Open Sans', sans-serif;
  font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; font-weight: 700;
  margin: 0 0 16px;
}
.c-footer__col ul { list-style: none; padding: 0; margin: 0; }
.c-footer__col li { margin-bottom: 8px; }
.c-footer__col a {
  font-family: 'Merriweather', serif;
  font-size: 15px; color: rgba(255, 255, 255, 0.8);
  transition: color 0.2s;
}
.c-footer__col a:hover { color: var(--gold); text-decoration: none; }
.c-footer__bottom {
  margin-top: 48px;
  padding: 24px 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex; justify-content: space-between;
  font-family: 'Open Sans', sans-serif;
  font-size: 12px; color: rgba(255, 255, 255, 0.5);
  max-width: var(--container-max); margin-left: auto; margin-right: auto;
}
.c-footer__bottom a { color: rgba(255, 255, 255, 0.7); }
.c-footer__bottom a:hover { color: var(--gold); }

@media (max-width: 700px) {
  .c-footer__inner { grid-template-columns: 1fr; gap: 40px; }
  .c-footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
}

/* ============================================================
   FLOATING BOOK
   ============================================================ */
.c-floating-book {
  position: fixed; bottom: 22px; right: 22px;
  z-index: 100;
  width: 84px; height: 116px;
  background: var(--warm-white);
  border-radius: 6px;
  box-shadow:
    0 10px 30px rgba(26, 33, 97, 0.25),
    0 0 0 1px rgba(26, 33, 97, 0.08);
  cursor: pointer;
  overflow: hidden;
  display: flex; flex-direction: column;
  font-family: 'Open Sans', sans-serif;
  text-decoration: none;
  transition:
    width 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    bottom 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    right 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.4s ease;
}
.c-floating-book:hover,
.c-floating-book.is-expanded {
  width: 320px; height: 460px;
  bottom: 32px; right: 32px;
  box-shadow:
    0 32px 70px rgba(26, 33, 97, 0.42),
    0 0 0 1px rgba(26, 33, 97, 0.14);
  text-decoration: none;
}
.c-floating-book__cover-wrap {
  width: 100%; height: 116px;
  overflow: hidden; flex-shrink: 0;
  background: var(--line);
  transition: height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.c-floating-book:hover .c-floating-book__cover-wrap,
.c-floating-book.is-expanded .c-floating-book__cover-wrap { height: 260px; }
.c-floating-book__cover {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
}
.c-floating-book__info {
  padding: 18px 22px 22px;
  opacity: 0; transform: translateY(10px);
  transition: opacity 0.3s 0.2s ease, transform 0.4s 0.2s ease;
  pointer-events: none;
  flex: 1; display: flex; flex-direction: column;
}
.c-floating-book:hover .c-floating-book__info,
.c-floating-book.is-expanded .c-floating-book__info {
  opacity: 1; transform: translateY(0);
  pointer-events: auto;
}
.c-floating-book__label {
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); font-weight: 700; margin-bottom: 8px;
}
.c-floating-book__title {
  font-family: 'Merriweather', serif; font-size: 17px; line-height: 1.3;
  color: var(--indigo); font-weight: 700; margin: 0 0 8px;
  letter-spacing: -0.005em;
}
.c-floating-book__sub {
  font-size: 13px; color: var(--ink-muted); line-height: 1.55;
  margin: 0 0 18px; flex: 1;
}
.c-floating-book__cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 18px;
  background: var(--indigo); color: #fff;
  border-radius: 5px; font-weight: 600; font-size: 13px; align-self: flex-start;
  transition: background 0.2s, transform 0.2s;
}
.c-floating-book:hover .c-floating-book__cta { background: var(--indigo-soft); }

/* ============================================================
   COOKIEBANNER OVERRIDES (ported from css/custom.css)
   ============================================================ */
/***** COOKIE BANNER RESPONSIVE OVERRIDES *****/
.cookiebanner {
  box-sizing: border-box !important;
}
.cookiebanner span {
  display: inline-block;
  max-width: 100%;
  word-wrap: break-word;
}
.cookiebanner a {
  display: inline-block;
  white-space: normal !important;
}
/* Desktop - optimiert */
@media (min-width: 769px) {
  .cookiebanner {
    padding: 12px 20px !important;
    font-size: 14px !important;
    line-height: 1.5 !important;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .cookiebanner span {
    padding-right: 10px;
  }
  .cookiebanner-close {
    padding-left: 15px !important;
  }
}
/* Tablet - kompakter */
@media (max-width: 768px) and (min-width: 481px) {
  .cookiebanner {
    padding: 14px 16px !important;
    font-size: 13px !important;
    line-height: 1.4 !important;
    min-height: auto !important;
    height: auto !important;
  }
  .cookiebanner span {
    display: block;
    padding-bottom: 8px;
  }
  .cookiebanner a {
    margin-top: 4px;
  }
  .cookiebanner-close {
    position: absolute !important;
    top: 10px !important;
    right: 10px !important;
    float: none !important;
    padding: 5px !important;
    font-size: 20px !important;
    line-height: 1 !important;
  }
}
/* Mobile - kompakt und original */
@media (max-width: 480px) {
  .cookiebanner {
    padding: 10px 12px !important;
    font-size: 12px !important;
    line-height: 1.4 !important;
    min-height: auto !important;
    height: auto !important;
    text-align: center !important;
  }
  .cookiebanner span {
    display: inline;
    padding-right: 8px;
  }
  .cookiebanner a {
    display: inline;
    text-decoration: underline !important;
    white-space: nowrap;
  }
  .cookiebanner-close {
    float: right !important;
    padding: 0 0 0 8px !important;
    font-size: 18px !important;
    line-height: 1 !important;
  }
}

@media (max-width: 700px) { .c-floating-book { display: none; } }

/* ============================================================
   MOBILE BOOK BANNER (Top banner under sticky navbar, scrolls with content)
   ============================================================ */
.c-mobile-book { display: none; }
@media (max-width: 700px) {
  .c-mobile-book {
    position: sticky;
    top: var(--nav-height, 70px);
    z-index: 49;
    display: flex;
    align-items: stretch;
    background: linear-gradient(135deg, #f5f5f7 0%, #ffffff 100%);
    border-bottom: 1px solid var(--line);
    font-family: 'Open Sans', sans-serif;
    overflow: hidden;
    max-height: 84px;
    opacity: 1;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.3s ease,
                border-bottom-width 0.3s ease;
  }
  .c-mobile-book.is-dismissed,
  .c-mobile-book.is-hidden {
    max-height: 0;
    opacity: 0;
    border-bottom-width: 0;
    pointer-events: none;
  }

  .c-mobile-book__link {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    text-decoration: none;
    color: var(--indigo);
    min-width: 0;
  }
  .c-mobile-book__cover {
    flex-shrink: 0;
    width: 40px; height: 56px;
    object-fit: cover; object-position: center top;
    border-radius: 3px;
    box-shadow: 0 2px 6px rgba(26, 33, 97, 0.18);
  }
  .c-mobile-book__text {
    flex: 1;
    display: flex; flex-direction: column;
    min-width: 0;
  }
  .c-mobile-book__label {
    font-size: 9px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 700;
    line-height: 1.2;
  }
  .c-mobile-book__title {
    font-family: 'Merriweather', serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--indigo);
    line-height: 1.25;
    margin-top: 2px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .c-mobile-book__cta {
    flex-shrink: 0;
    align-self: center;
    display: inline-flex; align-items: center; gap: 4px;
    padding: 8px 12px;
    background: var(--indigo);
    color: #fff;
    border-radius: 4px;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.01em;
  }
  .c-mobile-book__close {
    flex-shrink: 0;
    width: 40px;
    background: transparent;
    border: none;
    border-left: 1px solid var(--line);
    color: var(--ink-muted);
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    transition: color 0.2s ease, background-color 0.2s ease;
  }
  .c-mobile-book__close:hover,
  .c-mobile-book__close:focus-visible {
    color: var(--indigo);
    background: rgba(26, 33, 97, 0.04);
    outline: none;
  }
}

/* ============================================================
   PAGE LAYOUT (für Inhaltsseiten)
   ============================================================ */
.c-page__inner { max-width: 760px; }
.c-page__inner--wide { max-width: 920px; }
.c-page__title {
  font-family: 'Merriweather', serif;
  font-size: clamp(32px, 4vw, 48px);
  color: var(--indigo); margin: 18px 0 32px;
  line-height: 1.15; letter-spacing: -0.01em;
}
.c-page__subtitle {
  font-family: 'Merriweather', serif;
  font-style: italic;
  color: var(--ink-muted);
  font-size: 18px;
  margin: 0 0 32px;
}
.c-page__subtitle--tight { margin: -16px 0 8px; }
.c-page__lead { color: var(--ink-muted); margin: 0 0 24px; }
.c-page__body { font-size: 16px; line-height: 1.75; }
.c-page__body--spaced { margin-top: 40px; }
.c-page__body h2 { font-size: 22px; margin: 32px 0 12px; }
.c-page__body h3 { font-size: 18px; margin: 24px 0 8px; }
.c-page__body ul, .c-page__body ol { margin: 0 0 18px 20px; padding: 0; }
.c-page__body li { margin-bottom: 6px; }
.c-page__body a { text-decoration: underline; text-underline-offset: 3px; }

/* Modifier on c-stat / c-stat-cell numbers (small italic suffix like "J", "Y") */
.c-stat__num--small { font-size: 0.55em; font-style: italic; }
.c-stat-cell__num--small { font-size: 0.7em; }

/* Gold variant of the eyebrow label */
.c-label--gold { color: var(--gold); }

/* ============================================================
   FORM CARD (Anmeldung, Kontakt-ähnliche Container)
   ============================================================ */
.c-form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 32px;
  margin-top: 24px;
}
.c-form-section { margin-top: 28px; }
.c-form-section h3 {
  font-family: 'Merriweather', serif;
  color: var(--indigo);
  font-size: 18px;
  margin: 0 0 16px;
  letter-spacing: 0.04em;
}
.c-checkbox { display: flex; align-items: center; gap: 10px; padding: 8px 0; cursor: pointer; }
.c-checkbox input { width: 18px; height: 18px; }

.c-form-message { padding: 20px; border-radius: 6px; margin-top: 24px; }
.c-form-message--success { background: #e7f3ec; border: 1px solid #b6d8c2; color: #1d4d2c; }
.c-form-message--error { background: #fdecea; border: 1px solid #f5b7b1; color: #7a1f1a; }

/* ============================================================
   BOOK ORDER PAGE (buchbestellung.html)
   ============================================================ */
.c-buch-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px; align-items: start; margin-top: 24px;
}
.c-buch-grid img,
.c-buch-grid video {
  width: 100%; height: auto;
  border-radius: 4px;
  box-shadow: 0 12px 32px rgba(26, 33, 97, 0.18);
}
.c-buch-info {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px; margin-top: 24px;
}
.c-buch-info h3 {
  font-family: 'Merriweather', serif;
  color: var(--indigo);
  margin: 0 0 12px; font-size: 20px;
}
.c-buch-info p { margin: 4px 0; }

@media (max-width: 768px) {
  .c-buch-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ============================================================
   FILES PAGE (Nachbereitung Download)
   ============================================================ */
.c-file-list { list-style: none; padding: 0; margin: 16px 0 32px; }
.c-file-item { padding: 14px 0; border-bottom: 1px solid var(--line); }
.c-file-item:last-child { border-bottom: none; }
.c-file-item a {
  color: var(--indigo); text-decoration: none;
  font-family: 'Merriweather', serif; font-size: 17px;
}
.c-file-item a:hover { text-decoration: underline; }
.c-event-sub {
  font-family: 'Merriweather', serif;
  font-style: italic; color: var(--ink-muted);
  font-size: 18px; margin: -16px 0 24px;
}

/* ============================================================
   EVENT LIST & MODAL (Nachbereitung)
   ============================================================ */
.c-event-list { list-style: none; padding: 0; margin: 0; }
.c-event-item { padding: 18px 0; border-bottom: 1px solid var(--line); }
.c-event-item:last-child { border-bottom: none; }
.c-event-item h4 {
  margin: 0 0 4px;
  font-family: 'Merriweather', serif; font-size: 18px;
}
.c-event-item h4 a { color: var(--indigo); text-decoration: none; }
.c-event-item h4 a:hover { text-decoration: underline; }
.c-event-item p { margin: 0; color: var(--ink-muted); font-size: 14px; }

.c-error {
  color: #c0392b; background: #fdecea;
  border: 1px solid #f5b7b1;
  padding: 12px 16px; border-radius: 6px;
  margin-bottom: 24px;
}

.c-modal-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 9000;
  align-items: center; justify-content: center;
  padding: 20px;
}
.c-modal-overlay.is-open { display: flex; }

.c-modal {
  background: #fff; border-radius: 8px;
  padding: 32px; width: 100%; max-width: 420px;
  position: relative;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.25);
}
.c-modal__close {
  position: absolute; top: 12px; right: 16px;
  background: none; border: none;
  font-size: 24px; line-height: 1;
  cursor: pointer; color: var(--ink-muted);
}
.c-modal h3 {
  font-family: 'Merriweather', serif;
  color: var(--indigo);
  margin: 0 0 20px; font-size: 22px;
}
.c-modal input[type="text"] {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line); border-radius: 6px;
  font-size: 16px; margin-bottom: 16px;
  -webkit-text-security: disc;
}
.c-modal input[type="submit"] {
  display: inline-block;
  padding: 12px 20px;
  background: var(--indigo); color: #fff;
  border: none; border-radius: 6px;
  font-size: 16px; font-weight: 600;
  cursor: pointer;
}
.c-modal input[type="submit"]:hover { filter: brightness(1.1); }

/* ============================================================
   COOKIE NOTICE (floating card)
   ============================================================ */
.c-cookie {
  position: fixed;
  bottom: 24px; left: 24px;
  z-index: 200;
  width: 380px;
  max-width: calc(100vw - 32px);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.32s ease, transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}
.c-cookie.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.c-cookie__card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px 24px 20px;
  box-shadow: 0 24px 60px rgba(26, 33, 97, 0.18), 0 4px 12px rgba(26, 33, 97, 0.06);
}
.c-cookie__card::before {
  content: "";
  position: absolute;
  top: 0; left: 24px; right: 24px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--indigo));
  border-radius: 14px 14px 0 0;
}
.c-cookie__title {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 17px;
  color: var(--indigo);
  margin: 0 0 8px;
  letter-spacing: -0.005em;
}
.c-cookie__msg {
  font-family: 'Open Sans', sans-serif;
  font-size: 13.5px; line-height: 1.55;
  color: var(--ink-muted);
  margin: 0 0 14px;
}
.c-cookie__current {
  font-family: 'Open Sans', sans-serif;
  font-size: 12.5px; line-height: 1.5;
  color: var(--ink-muted);
  margin: 0 0 16px;
  padding: 10px 12px;
  background: rgba(26, 33, 97, 0.04);
  border-left: 2px solid var(--gold);
  border-radius: 0 6px 6px 0;
}
.c-cookie__current-label { color: var(--ink-muted); }
.c-cookie__current-value { color: var(--indigo); font-weight: 600; }
.c-cookie__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.c-cookie__more {
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  color: var(--ink-muted);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(91, 93, 104, 0.35);
  transition: color 0.2s, text-decoration-color 0.2s;
}
.c-cookie__more:hover {
  color: var(--indigo);
  text-decoration-color: var(--indigo);
}
.c-cookie__buttons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.c-cookie__btn {
  appearance: none;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 10px 18px;
  border-radius: 6px;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.c-cookie__btn--primary {
  background: var(--indigo);
  color: #fff;
}
.c-cookie__btn--primary:hover {
  background: #2b3578;
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(26, 33, 97, 0.18);
}
.c-cookie__btn--secondary {
  background: #fff;
  color: var(--indigo);
  border-color: rgba(26, 33, 97, 0.22);
}
.c-cookie__btn--secondary:hover {
  background: rgba(26, 33, 97, 0.04);
  border-color: var(--indigo);
}
.c-cookie__btn.is-active {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
.c-cookie__btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
@media (max-width: 480px) {
  .c-cookie { left: 12px; right: 12px; bottom: 12px; width: auto; }
  .c-cookie__card { padding: 20px 18px 18px; border-radius: 12px; }
  .c-cookie__actions { flex-direction: column; align-items: stretch; gap: 12px; }
  .c-cookie__more { align-self: flex-start; }
  .c-cookie__buttons { width: 100%; }
  .c-cookie__btn { flex: 1; padding: 11px 14px; }
}
@media (prefers-reduced-motion: reduce) {
  .c-cookie { transition: opacity 0.2s; transform: none; }
}
