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

:root {
  --cream: #faf6f1;
  --warm-white: #fffcf8;
  --sand: #e8ddd3;
  --clay: #c4a882;
  --terracotta: #c17f59;
  --sage: #8a9a7b;
  --sage-light: #e8ede5;
  --charcoal: #2c2c2c;
  --soft-brown: #6b5b4e;
  --blush: #e8c4b8;
  --radius: 20px;
  --radius-sm: 12px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background-color: var(--cream);
  color: var(--charcoal);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 1.5rem;
  background: linear-gradient(170deg, var(--cream) 0%, var(--sage-light) 40%, var(--sand) 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -60px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--blush) 0%, transparent 70%);
  opacity: .5;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--sage-light) 0%, transparent 70%);
  opacity: .6;
}

.hero-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: clamp(2.4rem, 8vw, 4rem);
  line-height: 1.15;
  color: var(--charcoal);
  margin-bottom: .75rem;
  letter-spacing: -0.02em;
}

.hero h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--terracotta);
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--soft-brown);
  max-width: 400px;
  margin: 0 auto 2rem;
}

.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .3rem;
  color: var(--clay);
  font-size: .75rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  animation: pulse-down 2s ease-in-out infinite;
}

.scroll-hint span {
  font-size: 1.2rem;
}

@keyframes pulse-down {
  0%, 100% { opacity: .5; transform: translateX(-50%) translateY(0); }
  50% { opacity: 1; transform: translateX(-50%) translateY(6px); }
}

/* ── Main Content ── */
.content {
  max-width: 520px;
  margin: 0 auto;
  padding: 2rem 1.25rem 4rem;
}

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

.section-intro h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: .5rem;
}

.section-intro p {
  font-size: .95rem;
  color: var(--soft-brown);
  max-width: 380px;
  margin: 0 auto;
}

/* ── Cards ── */
.card {
  background: var(--warm-white);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  margin-bottom: 1.25rem;
  box-shadow:
    0 1px 3px rgba(0,0,0,.04),
    0 8px 24px rgba(0,0,0,.04);
  border: 1px solid rgba(0,0,0,.04);
  transition: transform .3s ease, box-shadow .3s ease;
  position: relative;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow:
    0 2px 6px rgba(0,0,0,.06),
    0 12px 32px rgba(0,0,0,.07);
}

.card-badge {
  display: inline-block;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .3rem .75rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.card--orchestra .card-badge {
  background: var(--blush);
  color: var(--terracotta);
}

.card--minipousse .card-badge {
  background: var(--sage-light);
  color: var(--sage);
}

.card-icon {
  font-size: 2rem;
  margin-bottom: .75rem;
}

.card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: .5rem;
}

.card p {
  font-size: .9rem;
  color: var(--soft-brown);
  margin-bottom: 1.25rem;
  line-height: 1.65;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-weight: 600;
  font-size: .9rem;
  text-decoration: none;
  padding: .7rem 1.4rem;
  border-radius: 50px;
  transition: all .25s ease;
}

.card--orchestra .card-link {
  background: var(--terracotta);
  color: #fff;
}

.card--orchestra .card-link:hover {
  background: #a96a48;
}

.card--minipousse .card-link {
  background: var(--sage);
  color: #fff;
}

.card--minipousse .card-link:hover {
  background: #728a63;
}

.card-link svg {
  width: 16px;
  height: 16px;
  transition: transform .25s ease;
}

.card-link:hover svg {
  transform: translateX(3px);
}

/* ── Accent stripe on cards ── */
.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
}

.card--orchestra::before {
  background: linear-gradient(180deg, var(--terracotta), var(--blush));
}

.card--minipousse::before {
  background: linear-gradient(180deg, var(--sage), var(--sage-light));
}

/* ── Merci Section ── */
.merci {
  text-align: center;
  margin-top: 2.5rem;
  padding: 2.5rem 1.5rem;
  background: linear-gradient(135deg, var(--sage-light) 0%, var(--sand) 100%);
  border-radius: var(--radius);
  position: relative;
}

.merci-icon {
  font-size: 2.2rem;
  margin-bottom: .75rem;
}

.merci h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  font-weight: 600;
  margin-bottom: .6rem;
}

.merci p {
  font-size: .9rem;
  color: var(--soft-brown);
  max-width: 360px;
  margin: 0 auto;
  line-height: 1.7;
}

.merci p + p {
  margin-top: .75rem;
}

/* ── Small Details Card ── */
.note-card {
  background: var(--warm-white);
  border: 1px dashed var(--sand);
  border-radius: var(--radius-sm);
  padding: 1.25rem 1.25rem;
  margin-top: 1.5rem;
  text-align: center;
}

.note-card p {
  font-size: .82rem;
  color: var(--soft-brown);
  line-height: 1.6;
}

.note-card strong {
  color: var(--charcoal);
}

/* ── Footer ── */
.footer {
  text-align: center;
  padding: 2rem 1rem;
  font-size: .75rem;
  color: var(--clay);
  letter-spacing: .03em;
}

/* ── Animations on Scroll ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}

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

/* ── Desktop tweaks ── */
@media (min-width: 768px) {
  .content {
    max-width: 640px;
    padding: 3rem 2rem 5rem;
  }

  .cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }

  .cards-grid .card {
    margin-bottom: 0;
  }

  .hero {
    min-height: 70vh;
  }
}
