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

:root {
  --bg: #0f1118;
  --bg-alt: #161822;
  --bg-card: #1c1f2e;
  --text: #e8e4df;
  --text-muted: #9a968f;
  --accent: #b08fd8;
  --accent-soft: #c4a6e2;
  --gold: #d4b896;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', -apple-system, Helvetica Neue, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

/* === Layout === */
.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}

.narrow {
  max-width: 700px;
}

.section {
  padding: 96px 0;
}

/* === Hero === */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
  background:
    radial-gradient(ellipse at 30% 0%, rgba(176, 143, 216, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 100%, rgba(212, 184, 150, 0.06) 0%, transparent 50%),
    var(--bg);
}

.hero-inner {
  max-width: 780px;
}

.hero-kicker {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin-bottom: 24px;
}

.hero h1 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 24px;
}

.hero h1 .accent {
  color: var(--gold);
  font-style: italic;
  font-weight: 600;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.hero-subtitle strong {
  color: var(--text);
  font-weight: 500;
}

.hero-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.hero-logo {
  height: auto;
  filter: brightness(0) invert(0.9);
}

.hero-logo.logo-fon {
  width: 220px;
}

.hero-logo.logo-sawg {
  width: 240px;
}

/* === Button === */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--bg);
  background: var(--accent);
  padding: 16px 40px;
  border-radius: 2px;
  transition: background 0.3s ease, transform 0.2s ease;
}

.btn:hover {
  background: var(--accent-soft);
  transform: translateY(-1px);
}

/* === Section Headings === */
.section h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  margin-bottom: 24px;
  color: var(--text);
}

.section-intro {
  color: var(--text-muted);
  margin-bottom: 48px;
}

/* === About the Series === */
.about {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
}

.about p {
  color: var(--text-muted);
  margin-bottom: 16px;
  text-align: left;
}

.about p:last-child {
  margin-bottom: 0;
}

.about-event-photo {
  width: 100%;
  max-width: 700px;
  height: auto;
  border-radius: 4px;
  margin-top: 32px;
}

/* === About Amanda === */
.amanda {
  background: var(--bg-alt);
}

.amanda-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 48px;
  align-items: start;
}

.portrait-large {
  width: 100%;
  height: auto;
  border-radius: 4px;
  border: 3px solid rgba(176, 143, 216, 0.2);
}

.amanda-text h2 {
  margin-bottom: 20px;
}

.amanda-text p {
  color: var(--text-muted);
  margin-bottom: 16px;
}

.amanda-text p:last-child {
  margin-bottom: 0;
}

.amanda-wines {
  font-size: 0.9rem;
  font-style: italic;
  color: var(--text-muted);
}

/* === Cities / Timeline === */
.cities {
  background: var(--bg-alt);
  text-align: center;
}

.timeline {
  display: grid;
  gap: 1px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  overflow: hidden;
}

.timeline-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 32px;
  background: var(--bg-alt);
  transition: background 0.2s ease;
}

.timeline-item:hover {
  background: var(--bg-card);
}

.timeline-date {
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  flex-shrink: 0;
}

.timeline-city {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--text);
  text-align: right;
}

/* === Testimonials === */
.testimonials {
  text-align: center;
}

.testimonial-grid {
  display: grid;
  gap: 32px;
}

.testimonial {
  border-left: 2px solid var(--accent);
  padding: 24px 28px;
  text-align: left;
  background: var(--bg-alt);
  border-radius: 0 4px 4px 0;
}

.testimonial p {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 12px;
}

.testimonial footer {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

/* === Register === */
.register {
  background: var(--bg-alt);
  text-align: center;
}

.register p {
  color: var(--text-muted);
  margin-bottom: 32px;
}

.register-contact {
  font-size: 0.9rem;
}

.register-contact a {
  color: var(--accent-soft);
  text-decoration: none;
}

.register-contact a:hover {
  text-decoration: underline;
}

.form-wrapper {
  max-width: 520px;
  margin: 0 auto;
  text-align: left;
}

/* === Sponsor === */
.sponsor {
  background: #f5f0eb;
  text-align: center;
  padding: 64px 0;
}

.sponsor-label {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7a756e;
  margin-bottom: 24px;
}

.sponsor-logo {
  max-width: 140px;
  width: 100%;
  height: auto;
  opacity: 0.9;
}

.sponsor-logo:hover {
  opacity: 1;
}

/* === Footer === */
.site-footer {
  text-align: center;
  padding: 48px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.footer-logo {
  height: auto;
  filter: brightness(0) invert(0.9);
}

.logo-fon {
  width: 200px;
}

.logo-sawg {
  width: 220px;
}

.footer-contact {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* === Responsive === */
@media (max-width: 600px) {
  .section {
    padding: 64px 0;
  }

  .hero {
    padding: 60px 20px;
  }

  .timeline-item {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 20px;
    gap: 4px;
  }

  .timeline-city {
    text-align: left;
  }

  .hero-logo.logo-fon {
    width: 170px;
  }

  .hero-logo.logo-sawg {
    width: 190px;
  }

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

  .portrait-large {
    max-width: 260px;
    margin: 0 auto;
  }

  .btn {
    padding: 14px 32px;
  }
}
