/* ============================================================
   Damenkränzchen – 7 Minuten Mut
   Farbwelt: Espresso, Creme, Koralle, Gold, Rosewood
   Schriften: Fraunces (Headlines), DM Sans (Fließtext)
   ============================================================ */

:root {
  --espresso: #21130f;
  --cream: #fff6e7;
  --coral: #ff5d45;
  --gold: #e9ad45;
  --rosewood: #3b241e;
  --soft: #f4ddc7;

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "DM Sans", system-ui, -apple-system, sans-serif;

  --container: 1200px;
  --radius: 18px;
  --radius-lg: 28px;
  --shadow: 0 24px 60px rgba(33, 19, 15, 0.22);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--espresso);
  background-color: var(--cream);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  line-height: 1.05;
  font-weight: 800;
}

section {
  scroll-margin-top: 84px;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

.container--narrow {
  max-width: 820px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--coral);
  color: var(--espresso);
  font-weight: 700;
  padding: 12px 18px;
  border-radius: 0 0 12px 0;
}

.skip-link:focus {
  left: 0;
}

:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 3px;
}

/* ---------- Photo surfaces ---------- */
.photo {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--rosewood);
}

.photo--leopard {
  background-color: var(--rosewood);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 16px 28px;
  border: 2px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease,
    color 0.2s ease, border-color 0.2s ease;
}

.btn:active {
  transform: translateY(1px);
}

.btn--coral {
  background-color: var(--coral);
  color: var(--espresso);
}

.btn--coral:hover {
  background-color: var(--cream);
  transform: translateY(-2px);
}

.btn--espresso {
  background-color: var(--espresso);
  color: var(--cream);
}

.btn--espresso:hover {
  background-color: var(--coral);
  color: var(--espresso);
  transform: translateY(-2px);
}

.btn--ghost {
  border-color: var(--cream);
  color: var(--cream);
  background: transparent;
}

.btn--ghost:hover {
  background-color: var(--cream);
  color: var(--espresso);
}

.btn--sm {
  padding: 10px 20px;
  font-size: 13px;
}

/* ---------- Eyebrow & titles ---------- */
.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow--cream {
  color: var(--cream);
}

.eyebrow--coral {
  color: var(--coral);
}

.eyebrow--gold {
  color: var(--gold);
}

.section__title {
  font-size: clamp(1.9rem, 4vw, 3rem);
  max-width: 20ch;
  margin-top: 16px;
}

.section__title--light {
  color: var(--cream);
}

.section__lede {
  font-size: 1.15rem;
  max-width: 48ch;
  color: inherit;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--espresso);
  color: var(--cream);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: 14px;
}

.brand {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: 0.01em;
}

.brand__tag {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

.nav {
  display: none;
  align-items: center;
  gap: 32px;
}

.nav__link {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.nav__link:hover {
  color: var(--coral);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header__actions .btn {
  display: none;
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.menu-toggle__bar {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--cream);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__bar:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 8px 24px 24px;
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-menu__link {
  padding: 12px 0;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 14px;
  transition: color 0.2s ease;
}

.mobile-menu__link:hover {
  color: var(--coral);
}

.mobile-menu .btn {
  margin-top: 12px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 92vh;
  color: var(--cream);
  overflow: hidden;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(33, 19, 15, 0.72) 0%,
    rgba(33, 19, 15, 0.55) 45%,
    rgba(33, 19, 15, 0.78) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-block: 100px 120px;
}

.hero__title {
  font-size: clamp(3.4rem, 12vw, 8.5rem);
  font-weight: 900;
  letter-spacing: -0.01em;
  margin-top: 18px;
}

.hero__title-accent {
  color: var(--coral);
}

.hero__lede {
  font-size: clamp(1.1rem, 2.4vw, 1.4rem);
  max-width: 34ch;
  margin-top: 22px;
  opacity: 0.95;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.tag {
  display: inline-block;
  font-weight: 700;
  font-size: 15px;
  padding: 12px 18px;
  border-radius: 999px;
}

.tag--solid {
  background: var(--espresso);
  color: var(--cream);
}

.tag--outline {
  border: 2px solid var(--cream);
  color: var(--cream);
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

/* ---------- Statement band ---------- */
.statement {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  margin-top: calc(var(--radius-lg) * -1);
  z-index: 3;
}

.statement__overlay {
  position: absolute;
  inset: 0;
  background: rgba(33, 19, 15, 0.34);
}

.marquee {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-block: 26px;
  color: var(--cream);
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: clamp(1.4rem, 3.5vw, 2.2rem);
  white-space: nowrap;
}

.marquee__track {
  display: inline-flex;
  width: max-content;
  animation: marquee 22s linear infinite;
}

.marquee__group {
  display: inline-flex;
  align-items: center;
  padding-right: 8px;
}

.marquee__star {
  font-style: normal;
  color: var(--coral);
  margin: 0 1.2rem;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ---------- Sections ---------- */
.section {
  padding-block: clamp(4rem, 9vw, 7rem);
}

.section--espresso {
  background: var(--espresso);
  color: var(--cream);
}

.section--cream {
  background: var(--cream);
  color: var(--espresso);
}

.section--soft {
  background: var(--soft);
  color: var(--espresso);
}

.section--rosewood {
  background: var(--rosewood);
  color: var(--cream);
}

.section--coral {
  background: var(--coral);
  color: var(--espresso);
}

.section__intro,
.section__head {
  display: grid;
  gap: 20px;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.section__head--center {
  justify-items: center;
  text-align: center;
}

.section__head--center .section__title,
.section__head--center .section__lede {
  max-width: 30ch;
}

.section--espresso .section__lede,
.section--rosewood .section__lede {
  color: var(--soft);
}

/* ---------- Info cards ---------- */
.info-grid {
  display: grid;
  gap: 20px;
}

.info-card {
  background: var(--rosewood);
  padding: 34px 30px;
  border-radius: var(--radius);
  border-top: 4px solid var(--coral);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.info-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.info-card__num {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 0.08em;
}

.info-card__title {
  font-size: 1.5rem;
  margin-top: 16px;
}

.info-card__text {
  color: var(--soft);
  margin-top: 10px;
}

/* ---------- Speakers ---------- */
.speaker-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.speaker-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid var(--espresso);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.speaker-card:hover {
  transform: translateY(-8px) rotate(-1deg);
  box-shadow: 9px 11px 0 var(--espresso);
}

.speaker-card--espresso {
  background: var(--espresso);
  color: var(--cream);
}

.speaker-card--coral {
  background: var(--coral);
  color: var(--espresso);
}

.speaker-card--gold {
  background: var(--gold);
  color: var(--espresso);
}

.speaker-card--cream {
  background: var(--cream);
  color: var(--espresso);
}

.speaker-card__media {
  aspect-ratio: 4 / 5;
}

.speaker-card__body {
  padding: 20px 22px 24px;
}

.speaker-card__role {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.speaker-card--coral .speaker-card__role,
.speaker-card--gold .speaker-card__role,
.speaker-card--cream .speaker-card__role {
  color: var(--espresso);
}

.speaker-card__role--coral {
  color: var(--coral) !important;
}

.speaker-card__name {
  font-size: 1.35rem;
  margin-top: 8px;
}

.speaker-card__topic {
  font-size: 15px;
  margin-top: 12px;
  opacity: 0.9;
}

.speaker-card--espresso .speaker-card__topic {
  color: var(--soft);
}

/* ---------- Testimonials ---------- */
.testimonial-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.testimonial {
  border-radius: var(--radius);
  border: 2px solid var(--espresso);
  padding: 30px 28px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.testimonial:hover {
  transform: translateY(-6px);
  box-shadow: 8px 10px 0 var(--espresso);
}

.testimonial--cream {
  background: var(--cream);
}

.testimonial--coral {
  background: var(--coral);
}

.testimonial--gold {
  background: var(--gold);
}

.testimonial__quote {
  font-size: 1.15rem;
  line-height: 1.5;
}

.testimonial__name {
  margin-top: 20px;
  font-weight: 700;
  font-size: 15px;
}

/* ---------- Hostess ---------- */
.hostess {
  display: grid;
  gap: 40px;
  align-items: center;
}

.hostess__media {
  aspect-ratio: 4 / 5;
  max-width: 440px;
  width: 100%;
  border-radius: var(--radius-lg);
  border: 4px solid var(--espresso);
  transform: rotate(-2deg);
}

.hostess__text {
  margin-top: 20px;
  font-size: 1.15rem;
  max-width: 54ch;
}

.hostess__signature {
  margin-top: 24px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--coral);
}

/* ---------- Location ---------- */
.location {
  display: grid;
  gap: 40px;
  align-items: center;
}

.location__text {
  margin-top: 20px;
  font-size: 1.15rem;
  max-width: 48ch;
  color: var(--soft);
}

.location__address {
  display: inline-block;
  margin-top: 24px;
  border: 2px solid var(--coral);
  color: var(--cream);
  padding: 14px 20px;
  font-weight: 700;
  border-radius: 999px;
}

.location__media {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  border: 4px solid var(--cream);
  transform: rotate(2deg);
}

/* ---------- Countdown ---------- */
.countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 32px;
}

.countdown__unit {
  background: var(--espresso);
  color: var(--cream);
  border-radius: var(--radius);
  padding: 22px 8px;
  text-align: center;
}

.countdown__value {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 7vw, 3.5rem);
  line-height: 1;
}

.countdown__label {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
}

/* ---------- Newsletter ---------- */
.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 520px;
  margin: 32px auto 0;
}

.newsletter-form input {
  flex: 1;
  min-width: 0;
  border: 2px solid var(--espresso);
  background: #fff;
  color: var(--espresso);
  padding: 16px 20px;
  border-radius: 999px;
  font-size: 16px;
  font-family: var(--font-body);
}

.newsletter-form input:focus {
  outline: 3px solid var(--coral);
  outline-offset: 2px;
}

.form-status {
  min-height: 24px;
  margin-top: 16px;
  text-align: center;
  font-weight: 700;
  font-size: 15px;
}

.form-status.is-error {
  color: #b81104;
}

.form-status.is-success {
  color: #1f7a3d;
}

/* ---------- Ticket CTA ---------- */
.tickets {
  position: relative;
  padding-block: clamp(4rem, 9vw, 7rem);
  border-radius: var(--radius-lg) 0 0 0;
  overflow: hidden;
}

.tickets__overlay {
  position: absolute;
  inset: 0;
  background: rgba(33, 19, 15, 0.55);
}

.tickets__card {
  position: relative;
  z-index: 1;
  background: var(--espresso);
  color: var(--cream);
  text-align: center;
  padding: clamp(2.5rem, 6vw, 4rem);
  border-radius: var(--radius-lg);
  border: 4px solid var(--cream);
}

.tickets__title {
  font-size: clamp(2rem, 5vw, 3.4rem);
  margin-top: 18px;
}

.tickets__text {
  color: var(--soft);
  max-width: 40ch;
  margin: 20px auto 30px;
  font-size: 1.15rem;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--espresso);
  color: var(--cream);
}

.site-footer__inner {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-block: 40px;
}

.site-footer__brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
}

.site-footer__tag {
  color: var(--soft);
  font-size: 14px;
  letter-spacing: 0.02em;
}

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (min-width: 768px) {
  .header__actions .btn {
    display: inline-flex;
  }

  .section__intro,
  .section__head {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: end;
    justify-content: space-between;
  }

  .section__head--center {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .info-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .hostess {
    grid-template-columns: 0.8fr 1.2fr;
  }

  .location {
    grid-template-columns: 1.2fr 0.8fr;
  }

  .newsletter-form {
    flex-direction: row;
  }

  .site-footer__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

@media (min-width: 1024px) {
  .nav {
    display: flex;
  }

  .menu-toggle,
  .mobile-menu {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .marquee__track {
    animation: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  * {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
