:root {
  --primary: #b23a48;
  --primary-dark: #8f2d39;
  --secondary: #f4b942;
  --secondary-soft: #ffe29a;
  --accent: #43aa8b;
  --accent-soft: #dff7ef;
  --pink-soft: #fff1f4;
  --orange-soft: #fff4df;
  --sky-soft: #edf8ff;
  --light: #fffaf4;
  --dark: #1f2933;
  --text: #3b3b3b;
  --muted: #666;
  --white: #ffffff;
  --max-width: 1120px;
  --shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 14px 34px rgba(0, 0, 0, 0.12);
  --radius: 20px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.7;
  color: var(--text);
  background:
    radial-gradient(circle at top left, #fff5d8 0%, transparent 22%),
    radial-gradient(circle at top right, #ffe3ea 0%, transparent 18%),
    linear-gradient(180deg, #fffdf9 0%, #fff7ef 100%);
}

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

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

.container {
  width: 92%;
  max-width: var(--max-width);
  margin: 0 auto;
}

.hero {
  position: relative;
  background:
    linear-gradient(rgba(178, 58, 72, 0.58), rgba(67, 170, 139, 0.35)),
    url("../images/lauriane-hero.jpg") center 25% / cover no-repeat;
  color: var(--white);
  min-height: 78vh;
  display: flex;
  align-items: center;
  text-align: center;
  padding: 70px 20px;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  z-index: 0;
}

.hero::before {
  width: 260px;
  height: 260px;
  top: -60px;
  left: -70px;
}

.hero::after {
  width: 180px;
  height: 180px;
  bottom: -40px;
  right: 8%;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.35);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: bold;
  margin-bottom: 22px;
  backdrop-filter: blur(3px);
}

.hero h1 {
  font-size: 3rem;
  margin: 0 0 20px;
  line-height: 1.15;
  text-shadow: 0 2px 10px rgba(0,0,0,0.18);
}

.hero p {
  font-size: 1.18rem;
  margin: 0 0 28px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: bold;
  transition: all 0.28s ease;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--secondary), #ffd86e);
  color: var(--dark);
}

.btn-primary:hover {
  box-shadow: 0 12px 24px rgba(244, 185, 66, 0.3);
}

.btn-outline {
  border: 2px solid rgba(255,255,255,0.95);
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.18);
}

.btn-outline-dark {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(255,255,255,0.7);
}

.btn-outline-dark:hover {
  background: #fff;
}

section {
  padding: 78px 0;
}

.section-light {
  background: linear-gradient(180deg, var(--light) 0%, #fff4e6 100%);
}

.section-white {
  background: rgba(255,255,255,0.86);
  backdrop-filter: blur(2px);
}

.section-tint-pink {
  background: linear-gradient(180deg, var(--pink-soft) 0%, #fffaf8 100%);
}

.section-tint-blue {
  background: linear-gradient(180deg, var(--sky-soft) 0%, #ffffff 100%);
}

.section-title {
  text-align: center;
  margin: 0 0 18px;
  color: var(--primary);
  font-size: 2.1rem;
  line-height: 1.2;
}

.section-subtitle {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 45px;
  color: var(--muted);
  font-size: 1.03rem;
}

.intro-box,
.message-box,
.thanks-box,
.cta-box,
.timeline-item,
.media-card,
.video-wrapper,
.quote-box {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.intro-box,
.message-box,
.thanks-box,
.cta-box {
  padding: 32px;
}

.intro-box {
  border-top: 6px solid var(--secondary);
  background: linear-gradient(180deg, #ffffff 0%, #fffdf7 100%);
}

.message-box {
  border-top: 6px solid var(--accent);
  background: linear-gradient(180deg, #ffffff 0%, #f7fffb 100%);
}

.thanks-box {
  border-top: 6px solid var(--primary);
  background: linear-gradient(180deg, #ffffff 0%, #fff7f9 100%);
}

.cta-box {
  border: 2px dashed rgba(178, 58, 72, 0.18);
  background: linear-gradient(135deg, #fffdf8 0%, #fff1df 100%);
  text-align: center;
  max-width: 850px;
  margin: 0 auto;
}

.intro-box p,
.message-box p,
.thanks-box p,
.cta-box p {
  margin: 0 0 16px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 38px;
}

.stat {
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.stat:hover,
.media-card:hover,
.timeline-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.stat:nth-child(1) {
  background: linear-gradient(180deg, #fff7db 0%, #fffdf5 100%);
}

.stat:nth-child(2) {
  background: linear-gradient(180deg, #eafaf4 0%, #fbfffd 100%);
}

.stat:nth-child(3) {
  background: linear-gradient(180deg, #fff0f4 0%, #fffdfd 100%);
}

.stat h3 {
  color: var(--primary);
  font-size: 2.2rem;
  margin: 0 0 8px;
}

.stat p {
  color: #5c5c5c;
  font-weight: 600;
  margin: 0;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.timeline-item {
  padding: 28px;
  border-left: 8px solid var(--secondary);
  background: linear-gradient(180deg, #ffffff 0%, #fffaf3 100%);
}

.timeline-item:nth-child(2n) {
  border-left-color: var(--accent);
  background: linear-gradient(180deg, #ffffff 0%, #f3fff9 100%);
}

.timeline-item h3 {
  color: var(--primary);
  margin: 0 0 10px;
  font-size: 1.22rem;
}

.timeline-item p {
  margin: 0 0 10px;
}

.quote-box {
  max-width: 860px;
  margin: 0 auto;
  padding: 30px;
  background: linear-gradient(135deg, #fff7d6 0%, #fff2f5 50%, #eefbf6 100%);
  text-align: center;
}

.quote {
  font-size: 1.25rem;
  font-style: italic;
  color: var(--primary);
  line-height: 1.8;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.media-card {
  overflow: hidden;
  background: #fff;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.media-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  background: #f0f0f0;
}

.media-caption {
  padding: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #fffaf2 100%);
}

.media-caption h4 {
  color: var(--primary);
  margin: 0 0 8px;
  font-size: 1.08rem;
}

.media-caption p {
  margin: 0;
}

.video-wrapper {
  max-width: 920px;
  margin: 0 auto;
  padding: 20px;
  background: linear-gradient(180deg, #ffffff 0%, #fffdf7 100%);
}

.video-wrapper video,
.video-wrapper iframe {
  width: 100%;
  border-radius: 14px;
  min-height: 500px;
  background: #000;
}

.list {
  margin-top: 15px;
  padding-left: 20px;
}

.list li {
  margin-bottom: 10px;
}

.list li::marker {
  color: var(--accent);
}

.cta-box .hero-buttons {
  margin-top: 20px;
}

@media (max-width: 900px) {
  .stats,
  .timeline,
  .media-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    background:
      linear-gradient(rgba(178, 58, 72, 0.58), rgba(67, 170, 139, 0.35)),
      url("../images/lauriane-hero.jpg") center 15% / cover no-repeat;
    min-height: 70vh;
  }

  .hero h1 {
    font-size: 2.15rem;
  }

  .hero p {
    font-size: 1.05rem;
  }

  .video-wrapper video,
  .video-wrapper iframe {
    min-height: 280px;
  }

  section {
    padding: 62px 0;
  }
}