.page {
  min-height: 100vh;
  overflow-x: clip;
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
  position: relative;
  padding: 168px 0 120px;
  overflow: hidden;
  background:
    radial-gradient(60% 60% at 88% 8%, rgba(249, 231, 238, 0.9) 0%, rgba(249, 231, 238, 0) 60%),
    radial-gradient(55% 55% at 6% 88%, rgba(243, 226, 200, 0.55) 0%, rgba(243, 226, 200, 0) 60%),
    var(--cream);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 60px;
  align-items: center;
}

.hero-copy { max-width: 560px; }

.hero h1 { margin-bottom: 20px; }

.hero .lead { max-width: 500px; }

.hero-actions {
  display: flex;
  gap: 14px;
  margin: 30px 0 26px;
  flex-wrap: wrap;
}

.hero-trust {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 600;
}

.hero-trust li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-trust li::before {
  content: "";
  width: 18px;
  height: 18px;
  flex: none;
  border-radius: 999px;
  background: var(--blush);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='11' viewBox='0 0 24 24' fill='none' stroke='%23a8466b' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* Hero image */
.hero-media {
  position: relative;
  justify-self: center;
  width: 100%;
  max-width: 460px;
}

.hero-figure {
  position: relative;
  z-index: 2;
  aspect-ratio: 4 / 5;
  border-radius: 30px;
  overflow: hidden;
  background: var(--blush);
  border: 8px solid #fff;
  box-shadow: var(--shadow-lg);
}

.hero-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-badge {
  position: absolute;
  z-index: 3;
  left: -18px;
  bottom: 28px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-weight: 700;
  font-size: 14px;
  box-shadow: var(--shadow);
}

.hero-badge::before {
  content: "\2605";
  color: var(--gold);
  font-size: 15px;
}

/* Soft decorative shapes behind the photo */
.hero-media::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: -26px;
  right: -26px;
  width: 160px;
  height: 160px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(195, 154, 85, 0.28), rgba(195, 154, 85, 0));
}

.hero-media::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 24px -30px -30px 24px;
  border-radius: 36px;
  border: 1.5px solid var(--rose-soft);
}

/* ============================================================
   GALLERY / CAROUSEL
   ============================================================ */

.carousel {
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--card);
  padding: 26px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.carousel-viewport {
  overflow: hidden;
  position: relative;
}

.carousel-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
  padding: 6px;
}

.carousel-media {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--blush);
  box-shadow: var(--shadow-sm);
}

.carousel-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-tag {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: var(--gold);
  margin-bottom: 14px;
}

.carousel-body h3 {
  font-size: 28px;
  margin-bottom: 12px;
}

.carousel-body .muted { font-size: 16px; }

.carousel-meta {
  margin-top: 18px;
  color: var(--rose-deep);
  font-weight: 700;
  font-size: 14px;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 8;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--rose-deep);
  border-radius: 999px;
  cursor: pointer;
  font-size: 0;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.carousel-btn::before {
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}

.carousel-btn.prev::before { content: "\2039"; }
.carousel-btn.next::before { content: "\203A"; }

.carousel-btn:hover {
  background: var(--rose);
  color: #fff;
  box-shadow: var(--shadow);
}

.carousel-btn.prev { left: 14px; }
.carousel-btn.next { right: 14px; }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
}

.carousel-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: none;
  background: var(--rose-soft);
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease;
}

.carousel-dot.active {
  width: 26px;
  background: var(--rose);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 960px) {
  .hero {
    padding: 130px 0 80px;
    text-align: center;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .hero-copy { max-width: 600px; margin: 0 auto; }
  .hero .lead { margin-left: auto; margin-right: auto; }
  .hero-actions,
  .hero-trust { justify-content: center; }
  .hero-media { order: -1; max-width: 380px; }

  .carousel-slide { grid-template-columns: 1fr; gap: 24px; }
  .carousel-btn { display: none; }
}

@media (max-width: 640px) {
  .hero-badge { left: 50%; transform: translateX(-50%); bottom: -16px; }
  .hero-media { margin-bottom: 16px; }
  .carousel { padding: 16px; }
  .carousel-body h3 { font-size: 23px; }
}
