/* ==========================================================================
   Leben im Überfluss — Unified Professional Theme
   ========================================================================== */

:root {
  --color-bg: #ffffff;
  --color-bg-alt: #f7f5f0;
  --color-bg-dark: #0f1b2d;
  --color-bg-darker: #0a1422;
  --color-text: #2b2f36;
  --color-text-muted: #5c6370;
  --color-text-on-dark: #e8ecf2;
  --color-text-on-dark-muted: #a9b3c1;
  --color-primary: #0f1b2d;
  --color-accent: #c9a227;
  --color-accent-hover: #b08e1f;
  --color-border: #e6e2d8;
  --color-card: #ffffff;

  --font-serif: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  --font-sans: "Inter", "Helvetica Neue", Arial, sans-serif;

  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;

  --shadow-sm: 0 2px 8px rgba(15, 27, 45, 0.06);
  --shadow: 0 8px 24px rgba(15, 27, 45, 0.08);
  --shadow-lg: 0 20px 48px rgba(15, 27, 45, 0.14);

  --container: 1200px;
  --container-narrow: 960px;
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 32px;
  --space-lg: 64px;
  --space-xl: 96px;

  --transition: 220ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

/* Reset & base
--------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-accent); }
ul { margin: 0; padding: 0; list-style: none; }
button { font: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  color: var(--color-primary);
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 0.6em;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2rem, 4.5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.1rem; }
p  { margin: 0 0 1em; color: var(--color-text-muted); }

/* Layout
--------------------------------------------------------------------------- */
.container      { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container-narrow { width: 100%; max-width: var(--container-narrow); margin: 0 auto; padding: 0 24px; }
.section        { padding: var(--space-xl) 0; }
.section--tight { padding: var(--space-lg) 0; }
.section--alt   { background: var(--color-bg-alt); }
.section--dark  { background: var(--color-bg-dark); color: var(--color-text-on-dark); }
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: #fff; }
.section--dark p { color: var(--color-text-on-dark-muted); }

.section-header { text-align: center; max-width: 720px; margin: 0 auto var(--space-md); }
.section-header .eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 14px;
}
.section-header h2 { margin-bottom: 14px; }
.section-header p { font-size: 1.05rem; }

.divider { width: 56px; height: 3px; background: var(--color-accent); margin: 18px auto 0; border: 0; }

/* Buttons
--------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn--primary {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
}
.btn--primary:hover { background: var(--color-accent-hover); border-color: var(--color-accent-hover); color: #fff; transform: translateY(-1px); }
.btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}
.btn--ghost:hover { background: #fff; color: var(--color-primary); }
.btn--outline {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.btn--outline:hover { background: var(--color-primary); color: #fff; }
.btn--youtube {
  background: #ff0000;
  color: #fff;
  border-color: #ff0000;
}
.btn--youtube:hover { background: #cc0000; border-color: #cc0000; color: #fff; }

/* Header / Navigation
--------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: saturate(160%) blur(10px);
  -webkit-backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--color-border);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-primary);
}
.nav__brand img { width: 44px; height: 44px; }
.nav__brand span { line-height: 1.1; }
.nav__menu {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav__menu a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--color-text);
  position: relative;
}
.nav__menu a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 2px;
  background: var(--color-accent);
  transition: width var(--transition);
}
.nav__menu a:hover::after { width: 100%; }
.nav__toggle {
  display: none;
  width: 40px; height: 40px;
  border: 0; background: transparent;
  color: var(--color-primary);
}
@media (max-width: 860px) {
  .nav__menu {
    position: absolute;
    top: 76px; left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid var(--color-border);
    padding: 8px 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition);
  }
  .nav__menu a { display: block; padding: 12px 24px; width: 100%; }
  .nav__menu.is-open { max-height: 500px; }
  .nav__toggle { display: inline-flex; align-items: center; justify-content: center; }
}

/* Hero
--------------------------------------------------------------------------- */
.hero {
  position: relative;
  background: linear-gradient(135deg, #0f1b2d 0%, #1a2a44 50%, #0f1b2d 100%);
  color: var(--color-text-on-dark);
  padding: clamp(120px, 16vw, 200px) 0 clamp(100px, 14vw, 180px);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(ellipse at top, rgba(201,162,39,0.18), transparent 60%),
                    radial-gradient(ellipse at bottom, rgba(201,162,39,0.10), transparent 60%);
  pointer-events: none;
  z-index: 2;
}

/* Video hero variant */
.hero--video { background: #0a1422; }
.hero__video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero__video {
  /* YouTube aspect-ratio trick: scale the iframe so it always fills
     the section while keeping its 16:9 ratio and hiding any letterbox. */
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw;          /* 16:9 */
  min-width: 177.78vh;      /* 16:9 inverted */
  min-height: 100%;
  transform: translate(-50%, -50%) scale(1.25);
  border: 0;
  pointer-events: none;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(10,20,34,0.55) 0%, rgba(10,20,34,0.35) 40%, rgba(10,20,34,0.75) 100%),
    radial-gradient(ellipse at center, transparent 0%, rgba(10,20,34,0.4) 100%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
}
.hero__eyebrow {
  display: inline-block;
  font-size: 0.82rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 22px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}
.hero h1 {
  color: #fff;
  font-size: clamp(2.6rem, 7vw, 5.2rem);
  margin-bottom: 24px;
  text-shadow: 0 4px 30px rgba(0,0,0,0.55), 0 2px 8px rgba(0,0,0,0.4);
  letter-spacing: -0.01em;
}
.hero p {
  color: #e8ecf2;
  font-size: clamp(1rem, 1.3vw, 1.18rem);
  max-width: 680px;
  margin: 0 auto 24px;
  text-shadow: 0 2px 14px rgba(0,0,0,0.6);
}
.hero__verse {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(0.95rem, 1.15vw, 1.08rem) !important;
  color: rgba(255,255,255,0.88) !important;
  max-width: 620px !important;
  margin: 0 auto 36px !important;
  line-height: 1.55;
}
.hero__verse span {
  display: inline-block;
  margin-top: 8px;
  font-style: normal;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}
@media (prefers-reduced-motion: reduce) {
  .hero__video { display: none; }
  .hero--video { background: linear-gradient(135deg, #0f1b2d 0%, #1a2a44 50%, #0f1b2d 100%); }
}

/* Intro / Mission
--------------------------------------------------------------------------- */
.mission {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-md);
}
.mission__item {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.mission__item:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.mission__icon {
  width: 52px; height: 52px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(201,162,39,0.12);
  color: var(--color-accent);
  border-radius: 50%;
  margin-bottom: 18px;
  font-size: 22px;
}
.mission__item h3 { margin-bottom: 10px; }
.mission__item p { margin: 0; font-size: 0.95rem; }

/* Unified Card grid (Books, Videos, Team)
--------------------------------------------------------------------------- */
.grid {
  display: grid;
  gap: 28px;
}
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }

.card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #eee;
}
.card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}
.card:hover .card__media img { transform: scale(1.04); }
.card__body {
  padding: 24px 24px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.card__eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: 10px;
}
.card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.card p {
  font-size: 0.95rem;
  margin-bottom: 18px;
}
.card__footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 10px;
}
.card__link {
  font-weight: 600;
  color: var(--color-primary);
  font-size: 0.92rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.card__link::after {
  content: "→";
  transition: transform var(--transition);
}
.card__link:hover { color: var(--color-accent); }
.card__link:hover::after { transform: translateX(4px); }

/* Book cards (portrait cover) */
.book-card .card__media { aspect-ratio: 3 / 4; background: var(--color-bg-alt); }
.book-card .card__media img { object-fit: contain; padding: 24px; }

/* Video cards with play overlay */
.video-card .card__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.55) 100%);
  pointer-events: none;
}
.video-card .card__play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 68px; height: 68px;
  border-radius: 50%;
  background: rgba(255,0,0,0.92);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  box-shadow: 0 8px 22px rgba(0,0,0,0.35);
  transition: transform var(--transition), background var(--transition);
  z-index: 1;
}
.video-card:hover .card__play { transform: translate(-50%, -50%) scale(1.08); background: #ff0000; }
.video-card .card__play svg { width: 26px; height: 26px; margin-left: 3px; }
.video-card .card__badge {
  position: absolute;
  top: 14px; left: 14px;
  background: rgba(15,27,45,0.82);
  color: #fff;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  z-index: 1;
}

/* Team cards */
.team-card { text-align: center; }
.team-card .card__media { aspect-ratio: 1 / 1; border-radius: 50%; width: 180px; height: 180px; margin: 28px auto 18px; }
.team-card .card__media img { border-radius: 50%; }
.team-card .card__body { padding-top: 0; text-align: center; }
.team-card h3 { font-size: 1.2rem; margin-bottom: 4px; }
.team-card .role {
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: 10px;
}

/* Featured book (horizontal spotlight) */
.spotlight {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) 1.4fr;
  gap: var(--space-md);
  align-items: center;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  box-shadow: var(--shadow);
}
.spotlight__media {
  background: var(--color-bg-alt);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.spotlight__media img { max-height: 440px; object-fit: contain; }
.spotlight__body h3 { font-size: 1.9rem; margin-bottom: 14px; }
.spotlight__body .eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: 14px;
  display: inline-block;
}
.spotlight__body ul {
  list-style: none;
  padding: 0; margin: 0 0 22px;
}
.spotlight__body ul li {
  padding: 8px 0 8px 28px;
  position: relative;
  color: var(--color-text);
}
.spotlight__body ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 14px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: rgba(201,162,39,0.18);
  border: 2px solid var(--color-accent);
}
@media (max-width: 820px) {
  .spotlight { grid-template-columns: 1fr; }
  .spotlight__media img { max-height: 320px; }
}

/* YouTube CTA band */
.cta-band {
  background: linear-gradient(135deg, #0f1b2d 0%, #1a2a44 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(40px, 6vw, 72px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at top right, rgba(201,162,39,0.22), transparent 60%);
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; margin-bottom: 14px; }
.cta-band p { color: var(--color-text-on-dark-muted); max-width: 620px; margin: 0 auto 28px; }

/* Footer
--------------------------------------------------------------------------- */
.site-footer {
  background: var(--color-bg-darker);
  color: var(--color-text-on-dark-muted);
  padding: var(--space-lg) 0 24px;
}
.site-footer h4 { color: #fff; font-family: var(--font-sans); font-size: 0.85rem; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600; margin-bottom: 18px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: var(--space-md);
}
.footer-brand p { font-size: 0.95rem; }
.footer-brand img { width: 54px; height: 54px; margin-bottom: 14px; }
.site-footer ul li { margin-bottom: 10px; }
.site-footer ul li a { color: var(--color-text-on-dark-muted); font-size: 0.92rem; }
.site-footer ul li a:hover { color: #fff; }
.footer-bottom {
  margin-top: var(--space-md);
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
}
@media (max-width: 720px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* Author page hero
--------------------------------------------------------------------------- */
.profile-hero {
  background: linear-gradient(135deg, #0f1b2d 0%, #1a2a44 100%);
  color: #fff;
  padding: clamp(80px, 12vw, 140px) 0 clamp(60px, 10vw, 120px);
}
.profile-hero__inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: var(--space-lg);
  align-items: center;
}
.profile-hero__photo {
  width: 280px; height: 280px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid rgba(201,162,39,0.35);
  box-shadow: var(--shadow-lg);
}
.profile-hero__photo img { width: 100%; height: 100%; object-fit: cover; }
.profile-hero h1 { color: #fff; margin-bottom: 10px; }
.profile-hero .role {
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: 20px;
  display: inline-block;
}
.profile-hero p { color: var(--color-text-on-dark-muted); font-size: 1.05rem; max-width: 620px; }
@media (max-width: 720px) {
  .profile-hero__inner { grid-template-columns: 1fr; text-align: center; }
  .profile-hero__photo { margin: 0 auto; width: 220px; height: 220px; }
  .profile-hero p { margin: 0 auto; }
}

/* Event cards
--------------------------------------------------------------------------- */
.event-card { position: relative; }
.event-card .card__media {
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, #0f1b2d, #1a2a44);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
}
.event-card.event-card--past .card__media {
  background: linear-gradient(135deg, #8b5a2b, #c9a227);
}
.event-card.event-card--upcoming .card__media {
  background: linear-gradient(135deg, #0f1b2d, #4a6b9a);
}
.event-card .event-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 84px;
  height: 84px;
  background: rgba(255,255,255,0.95);
  border-radius: 12px;
  color: var(--color-primary);
  box-shadow: var(--shadow-sm);
}
.event-card .event-date .day {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
}
.event-card .event-date .month {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent);
  font-weight: 600;
  margin-top: 4px;
}
.event-card .card__badge {
  position: absolute;
  top: 14px; left: 14px;
  background: rgba(15,27,45,0.82);
  color: #fff;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  z-index: 2;
}
.event-card.event-card--past .card__badge { background: rgba(139,90,43,0.9); }
.event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 14px;
}
.event-meta span { display: inline-flex; align-items: center; gap: 6px; }
.event-meta svg { width: 14px; height: 14px; }

/* Draft / placeholder note */
.placeholder-note {
  background: rgba(201,162,39,0.08);
  border: 1px dashed var(--color-accent);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin: var(--space-md) 0;
  color: var(--color-text);
  font-size: 0.95rem;
}
.placeholder-note strong { color: var(--color-accent); }

/* Taste and See promo banner
--------------------------------------------------------------------------- */
.tas-promo-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, #fcfaf2 0%, #f4efea 100%);
  border: 1px solid rgba(184, 134, 181, 0.2);
  border-radius: 28px;
  padding: 40px 50px;
  text-decoration: none !important;
  color: #2c3e50;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.tas-promo-banner:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 45px rgba(67, 101, 148, 0.18);
  color: #2c3e50;
}
.tas-promo-img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  background-color: #fff;
  flex-shrink: 0;
  z-index: 2;
}
.tas-promo-content {
  text-align: center;
  flex-grow: 1;
  padding: 0 30px;
  z-index: 2;
  position: relative;
}
.tas-promo-title {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  color: #b886b5;
  margin: 0 0 10px;
  font-weight: 700;
  line-height: 1.2;
}
.tas-promo-subtitle {
  font-size: 1.3rem;
  color: #436594;
  margin: 0 0 25px;
  font-weight: 500;
}
.tas-promo-btn {
  background: linear-gradient(135deg, #436594, #2e4a70);
  color: #fff;
  padding: 14px 35px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.15rem;
  display: inline-block;
  box-shadow: 0 6px 20px rgba(67, 101, 148, 0.35);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.tas-promo-banner:hover .tas-promo-btn {
  background: linear-gradient(135deg, #559b79, #3f7a5d);
  box-shadow: 0 8px 25px rgba(85, 155, 121, 0.45);
}
.tas-promo-bg-shape {
  position: absolute;
  background: rgba(184, 134, 181, 0.05);
  width: 300px;
  height: 300px;
  border-radius: 50%;
  top: -150px;
  left: -80px;
  z-index: 1;
}
.tas-promo-mobile-images { display: none; }
@media (max-width: 820px) {
  .tas-promo-banner {
    flex-direction: column;
    padding: 40px 20px;
    text-align: center;
  }
  .tas-promo-desktop-img { display: none; }
  .tas-promo-mobile-images {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 25px;
    width: 100%;
    z-index: 2;
    position: relative;
  }
  .tas-promo-mobile-images .tas-promo-img { width: 120px; height: 120px; }
  .tas-promo-title { font-size: 2.2rem; }
  .tas-promo-subtitle { font-size: 1.15rem; }
}

/* Utility
--------------------------------------------------------------------------- */
.text-center { text-align: center; }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mb-none { margin-bottom: 0 !important; }

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