:root {
  --bg: #fcf8f1;
  --surface: #ffffff;
  --surface-soft: #fdf6ec;
  --text: #27324d;
  --muted: #49566f;
  --line: rgba(39, 50, 77, 0.08);
  --green: #6ea67f;
  --pink: #f45f87;
  --pink-soft: #ffe8ef;
  --orange-soft: #fff0df;
  --blue-soft: #ecefff;
  --shadow: 0 20px 40px rgba(62, 55, 43, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(255, 168, 188, 0.14), transparent 18%),
    linear-gradient(180deg, #fffdf9 0%, #faf5ed 100%);
}

.page {
  width: min(1220px, calc(100% - 28px));
  margin: 0 auto;
  padding: 14px 0 40px;
}

.preview-banner {
  position: sticky;
  top: 14px;
  z-index: 10;
  width: fit-content;
  margin: 0 auto 14px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(39, 50, 77, 0.1);
  background: rgba(255, 255, 255, 0.84);
  color: var(--text);
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 26px rgba(39, 50, 77, 0.08);
  font-size: 0.9rem;
}

.site-header,
.hero,
.features,
.activities-shell {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 26px;
  border-radius: 24px 24px 0 0;
}

.brand,
.nav a,
.header-cta,
.hero-cta,
.section-cta {
  text-decoration: none;
}

.brand {
  color: var(--text);
  font-size: 1.1rem;
  font-weight: 800;
}

.brand span {
  color: var(--pink);
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav a {
  color: var(--text);
  font-weight: 500;
}

.header-cta {
  padding: 14px 22px;
  border-radius: 18px;
  background: var(--green);
  color: #fff;
  font-weight: 700;
}

.hero {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 0;
  overflow: hidden;
}

.hero-copy {
  padding: 62px 58px;
  background: linear-gradient(90deg, #fffaf4 0%, #fff9f1 75%, rgba(255, 249, 241, 0.4) 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-copy h1,
.section-head h2 {
  margin: 0;
  font-size: clamp(2.5rem, 4.6vw, 4.5rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.hero-copy p {
  max-width: 20ch;
  margin: 22px 0 0;
  font-size: 1.15rem;
  line-height: 1.55;
  color: var(--muted);
}

.hero-cta {
  align-self: flex-start;
  margin-top: 28px;
  padding: 16px 26px;
  border-radius: 18px;
  background: var(--pink);
  color: #fff;
  font-weight: 700;
}

.hero-visual {
  min-height: 420px;
  background:
    linear-gradient(90deg, rgba(255, 249, 241, 0.56) 0%, rgba(255, 249, 241, 0.1) 18%, rgba(255, 255, 255, 0) 38%),
    url("https://images.unsplash.com/photo-1503454537195-1dcabb73ffb9?auto=format&fit=crop&w=1400&q=80")
      center center / cover no-repeat;
}

.features {
  margin-top: 18px;
  padding: 18px;
  border-radius: 0 0 24px 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feature-card,
.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 10px 24px rgba(70, 61, 48, 0.05);
}

.icon {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  margin-bottom: 18px;
}

.icon.pink {
  background: var(--pink-soft);
  color: var(--pink);
}

.icon.orange {
  background: var(--orange-soft);
  color: #f0962d;
}

.icon.blue {
  background: var(--blue-soft);
  color: #7686ff;
}

.feature-card h2 {
  margin: 0 0 14px;
  font-size: 1.2rem;
}

.feature-card p,
.testimonial-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  font-size: 1.05rem;
}

.activities-shell {
  margin-top: 22px;
  padding: 42px 18px 18px;
  border-radius: 24px;
  background: linear-gradient(180deg, #fff8ef 0%, #fffdf9 100%);
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 10px 20px;
}

.section-head h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
}

.section-cta {
  padding: 16px 26px;
  border-radius: 18px;
  background: var(--pink);
  color: #fff;
  font-weight: 700;
  white-space: nowrap;
  text-decoration: none;
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 10px 24px rgba(70, 61, 48, 0.05);
}

.testimonial-card.featured {
  border: 2px solid var(--pink);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
}

.testimonial-header strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.badge-new {
  display: inline-block;
  background: var(--pink);
  color: white;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
}

.card-cta {
  display: inline-block;
  margin-top: 16px;
  color: var(--pink);
  font-weight: 700;
  text-decoration: none;
}

@media (max-width: 980px) {
  .testimonials {
    grid-template-columns: 1fr;
  }
  
  .site-header {
    flex-wrap: wrap;
    justify-content: center;
    border-radius: 24px;
  }

  .hero {
    grid-template-columns: 1fr;
    border-radius: 24px;
    margin-top: 14px;
  }

  .hero-copy {
    padding: 38px 24px;
  }

  .hero-copy p {
    max-width: none;
  }

  .hero-visual {
    min-height: 340px;
  }

  .features {
    grid-template-columns: 1fr;
  }

  .features {
    border-radius: 24px;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 720px) {
  .page {
    width: min(100%, calc(100% - 18px));
    padding-top: 10px;
  }

  .site-header {
    padding: 18px;
    gap: 14px;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 16px;
  }

  .hero-copy h1 {
    font-size: 2.9rem;
  }

  .hero-copy p {
    font-size: 1rem;
  }

  .hero-cta,
  .header-cta,
  .section-cta {
    width: 100%;
    text-align: center;
  }

  .feature-card {
    padding: 22px;
  }

  .activities {
    padding: 48px 24px;
  }
}
