/* ============================================================
   ANIMA — Stylesheet
   ============================================================ */

/* ── Custom Properties ─────────────────────────────────────── */
:root {
  --color-pink:        #C41E5C;
  --color-pink-light:  rgba(196, 30, 92, 0.10);
  --color-pink-mid:    rgba(196, 30, 92, 0.15);
  --color-bg:          #ffffff;
  --color-text:        #2D2D2D;
  --color-text-muted:  #666666;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Helvetica Neue', 'Helvetica', Arial, sans-serif;
  --font-weight-body: 300;

  --section-pad-y:   100px;
  --stripe-pad-y:    60px;
  --container-max:   1200px;
  --container-narrow: 760px;

  --transition-stripe: background-color 0.8s ease;
  --transition-scroll: opacity 0.7s ease, transform 0.7s ease;
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.7;
  font-size: 16px;
  font-weight: 300;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

/* ── Layout ─────────────────────────────────────────────────── */
.container {
  width: 90%;
  max-width: var(--container-max);
  margin-inline: auto;
}

.container--narrow {
  max-width: var(--container-narrow);
}

/* ── Scroll Animation Base ──────────────────────────────────── */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(32px);
  transition: var(--transition-scroll);
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 14px 36px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease, transform 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  background: var(--color-pink);
  border-color: var(--color-pink);
  color: #fff;
}

.btn--primary:hover {
  background: transparent;
  border-color: #F5A623;
  color: #F5A623;
}

.btn--outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

/* ── Typography Shared ──────────────────────────────────────── */
.heading-uppercase {
  font-family: var(--font-heading);
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-text);
  text-align: center;
}

.heading-uppercase--left {
  text-align: left;
}

/* ── Section Intro ──────────────────────────────────────────── */
.section-intro {
  text-align: center;
  margin-bottom: 60px;
}

.section-intro__rule {
  width: 48px;
  height: 2px;
  background: var(--color-pink);
  margin: 0 auto 28px;
}

.section-intro__sub {
  font-size: 16px;
  color: var(--color-text-muted);
  margin-top: 16px;
  line-height: 1.85;
}

/* ============================================================
   HERO
   ============================================================ */
.section-hero {
  min-height: 100vh;
  padding: 80px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero__title {
  margin: 0 auto;
  display: block;
}

.hero__title img {
  width: clamp(280px, 60vw, 700px);
  margin: 0 auto 8px;
}

.hero__subtitle {
  font-family: var(--font-heading);
  font-size: clamp(18px, 2.2vw, 28px);
  font-weight: 400;
  color: var(--color-text);
  text-align: center;
  margin-top: 36px;
}

.hero__body {
  font-size: 17px;
  text-align: center;
  color: var(--color-text);
  margin-top: 48px;
  line-height: 1.9;
}

.section-hero .btn {
  margin-top: 48px;
}

/* ============================================================
   PINK STRIPES
   ============================================================ */
.stripe {
  background-color: transparent;
  padding: var(--stripe-pad-y) 0;
  text-align: center;
  transition: var(--transition-stripe);
}

.stripe p {
  font-family: var(--font-body);
  font-size: clamp(16px, 2vw, 21px);
  line-height: 2;
  color: transparent;
  transition: color 0.8s ease 0.15s;
}

.stripe--visible {
  background-color: var(--color-pink);
}

.stripe--visible p {
  color: #ffffff;
}

/* ============================================================
   CIRCLES — WENN DIR KLARHEIT FEHLT
   ============================================================ */
.section-circles {
  padding: var(--section-pad-y) 0;
}

.circles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding: 20px 0 60px;
  align-items: center;
  max-width: 860px;
  margin-inline: auto;
}

.circle {
  background: var(--color-pink-light);
  border-radius: 50%;
  aspect-ratio: 1 / 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12%;
  text-align: center;
  animation: circleBreath 3.5s ease-in-out infinite;
}

.circle--center {
  background: var(--color-pink-mid);
  transform: scale(1.08);
  animation: circleBreathCenter 3.5s ease-in-out 0.8s infinite;
}

.circle:nth-child(3) {
  animation-delay: 1.6s;
  animation: circleBreath 3.5s ease-in-out 1.6s infinite;
}

.circle__category {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-pink);
  margin-bottom: 10px;
}

.circle__title {
  font-family: var(--font-heading);
  font-size: clamp(14px, 1.4vw, 19px);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 12px;
  line-height: 1.3;
}

.circle__body {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.65;
}

@keyframes circleBreath {
  0%, 100% {
    transform: scale(1.00);
    box-shadow: 0 0 0 0 rgba(196, 30, 92, 0);
  }
  50% {
    transform: scale(1.03);
    box-shadow: 0 8px 32px rgba(196, 30, 92, 0.12);
  }
}

@keyframes circleBreathCenter {
  0%, 100% {
    transform: scale(1.08);
    box-shadow: 0 0 0 0 rgba(196, 30, 92, 0);
  }
  50% {
    transform: scale(1.11);
    box-shadow: 0 10px 36px rgba(196, 30, 92, 0.14);
  }
}

/* ============================================================
   SERVICE CARDS — WIE MIT ANIMA ORIENTIERUNG ENTSTEHT
   ============================================================ */
.section-services {
  padding: var(--section-pad-y) 0;
}

.service-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  border: 1.5px solid var(--color-pink);
  padding: 44px 48px;
  margin-bottom: 28px;
}

.service-card__icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--color-pink);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--color-pink);
}

.service-card__icon-wrap svg {
  width: 20px;
  height: 20px;
}

.service-card__tag {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-pink);
  margin-bottom: 10px;
}

.service-card__title {
  font-family: var(--font-heading);
  font-size: clamp(18px, 1.8vw, 23px);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 16px;
  line-height: 1.3;
}

.service-card__desc {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.75;
}

.service-card__list-intro {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 12px;
}

.service-card__list {
  list-style: disc;
  padding-left: 18px;
  margin-bottom: 24px;
}

.service-card__list li {
  font-size: 14px;
  color: var(--color-text);
  line-height: 1.8;
  margin-bottom: 4px;
}

.service-card__meta {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.service-card__meta strong {
  color: var(--color-text);
}

.service-card__footer {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text);
  border-top: 1px solid rgba(196, 30, 92, 0.2);
  padding-top: 16px;
  margin-top: 16px;
}

.service-card__footnote {
  font-size: 12px;
  color: var(--color-text-muted);
  margin-top: 14px;
  font-style: italic;
}

/* ============================================================
   VISION
   ============================================================ */
.section-vision {
  padding: var(--section-pad-y) 0 80px;
  position: relative;
  z-index: 1;
}

.vision__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.vision__text h2 {
  margin-bottom: 28px;
  line-height: 1.2;
}

.vision__text p {
  font-size: 16px;
  line-height: 1.85;
  color: var(--color-text-muted);
  margin-bottom: 18px;
}

.vision__image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* ============================================================
   PODCAST
   ============================================================ */
.section-podcast {
  background: var(--color-pink);
  position: relative;
  overflow: visible;
  z-index: 2;
  /* No bottom padding — comics sit flush with the section bottom */
  padding: 70px 0 0;
  /* Large top margin to give room for comics bleeding upward */
  margin-top: 280px;
}

.podcast__inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr 1.05fr;
  column-gap: 24px;
  align-items: flex-end;
  max-width: var(--container-max);
  margin-inline: auto;
  padding: 0;
}

.podcast__comic {
  position: relative;
  z-index: 2;
  overflow: visible;
}

.podcast__comic img {
  display: block;
  width: 100%;
  max-width: 295px;
  height: auto;
  object-fit: contain;
  object-position: bottom;
  /* Pull comics up above the section boundary */
  margin-top: -280px;
}

.podcast__comic--left img {
  margin-left: auto;
  margin-right: 0;
}

.podcast__comic--right img {
  max-width: 350px;
  margin-top: -370px;
  margin-left: 0;
  margin-right: auto;
}

.podcast__content {
  text-align: center;
  color: #fff;
  padding: 0 24px 60px;
  z-index: 1;
  align-self: center;
  min-width: 0;
}

.podcast__label {
  font-family: 'Adobe Caslon Pro', 'Adobe Caslon', Georgia, serif;
  font-size: clamp(48px, 6vw, 84px);
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 0;
  line-height: 1;
  white-space: nowrap;
  display: block;
}

.podcast__title-accent {
  font-family: 'Adobe Caslon Pro', 'Adobe Caslon', Georgia, serif;
  font-size: clamp(48px, 6vw, 84px);
  font-weight: 700;
  color: #F5A623;
  line-height: 1;
  margin-bottom: 14px;
}

.podcast__tagline {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 28px;
  font-style: normal;
}

/* Small link with icon — matches reference exactly */
.podcast__listen {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.25s ease, transform 0.2s ease;
}

.podcast__listen svg rect {
  transition: fill 0.25s ease;
}

.podcast__listen:hover {
  color: #F5A623;
  transform: translateY(-2px);
}

.podcast__listen:hover svg rect {
  fill: #F5A623;
}

/* ============================================================
   CONTACT FORM
   ============================================================ */
.section-contact {
  padding: var(--section-pad-y) 0 120px;
}

.contact-form {
  margin-top: 48px;
}

.contact-form__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  margin-bottom: 36px;
}

.contact-form__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-form__field--full {
  margin-bottom: 36px;
}

.contact-form__field label {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-muted);
  letter-spacing: 0.02em;
}

.contact-form__field input,
.contact-form__field textarea {
  border: none;
  border-bottom: 1.5px solid var(--color-pink);
  outline: none;
  padding: 8px 0;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--color-text);
  background: transparent;
  resize: none;
  width: 100%;
  transition: border-bottom-color 0.2s ease;
}

.contact-form__field input:focus,
.contact-form__field textarea:focus {
  border-bottom-color: var(--color-text);
}

.contact-form__field input.error,
.contact-form__field textarea.error {
  border-bottom-color: #e00;
}

/* Fix Chrome autofill yellow background */
input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px white inset;
  -webkit-text-fill-color: var(--color-text);
}

.contact-form__actions {
  margin-top: 4px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #f8f8f8;
  border-top: 1px solid rgba(196, 30, 92, 0.1);
  padding: 48px 0;
  text-align: center;
}

.footer__logo {
  height: 36px;
  width: auto;
  margin: 0 auto 16px;
}

.footer__copy {
  font-size: 13px;
  color: var(--color-text-muted);
}

/* ============================================================
   RESPONSIVE — Tablet ≤ 1024px
   ============================================================ */
@media (max-width: 1024px) {
  :root {
    --section-pad-y: 80px;
  }

  .circles-grid {
    gap: 16px;
  }

  .service-card {
    padding: 32px;
    gap: 32px;
  }

  .vision__grid {
    gap: 40px;
  }

  .podcast__inner {
    grid-template-columns: 1fr 1.4fr 1fr;
  }

  .podcast__comic img {
    max-width: 240px;
    margin-top: -210px;
  }

  .podcast__comic--right img {
    max-width: 360px;
    margin-top: -320px;
  }

  .section-podcast {
    margin-top: 210px;
  }
}

/* ============================================================
   RESPONSIVE — Mobile ≤ 768px
   ============================================================ */
@media (max-width: 768px) {
  :root {
    --section-pad-y: 60px;
    --stripe-pad-y:  40px;
  }

  .hero__title img {
    width: clamp(200px, 75vw, 400px);
  }

  .hero__body br {
    display: none;
  }

  .circles-grid {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin-inline: auto;
    gap: 24px;
  }

  /* Reset circle scaling on mobile for single-column layout */
  .circle--center {
    transform: none;
  }
  @keyframes circleBreathCenter {
    0%, 100% { transform: scale(1.00); }
    50%       { transform: scale(1.03); }
  }

  .service-card {
    grid-template-columns: 1fr;
    padding: 28px;
    gap: 24px;
  }

  .contact-form__row {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .vision__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .heading-uppercase--left {
    text-align: center;
  }

  /* Podcast: hide comics on small screens, center content */
  .podcast__inner {
    grid-template-columns: 1fr;
    padding: 0 24px;
  }

  .podcast__comic {
    display: none;
  }

  .section-podcast {
    margin-top: 0;
    padding: 60px 0;
  }

  .podcast__content {
    padding: 0;
  }
}
