* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;

  /* Pilates Princess background */
  background: #f6e9ec; /* soft blush pink */

  color: #3b2f33; /* warm dark rose-brown text */
  display: grid;
  place-items: center;
}

.container {
  max-width: 760px;
  padding: 32px;
  text-align: center;
}

/* Header */
.kicker {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 12px;
  color: #7a5c64;
  margin-bottom: 12px;
}

h1 {
  font-size: clamp(36px, 6vw, 56px);
  margin: 0 0 18px;
  color: #2f2327;
}

/* Carousel */
.carousel {
  margin: 0 auto 26px;
  max-width: 760px;
}

.carousel-viewport {
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.55);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.10);
}

.carousel-track {
  display: flex;
  width: 100%;
  transform: translateX(0%);
  transition: transform 450ms ease;
}

.slide {
  flex: 0 0 100%;
  margin: 0;
  position: relative;
  height: 320px; /* landscape */
  display: grid;
  place-items: center;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Missing image fallback (if file not found) */
.slide-fallback {
  display: none;
  width: 100%;
  height: 100%;
  padding: 18px;
  color: #6a5259;
  font-size: 14px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.7);
}

.slide.is-missing .slide-fallback {
  display: grid;
}

.carousel-controls {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.nav-btn {
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  color: #3b2f33;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}

.nav-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
}

.dots {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: none;
  background: rgba(59, 47, 51, 0.25);
  cursor: pointer;
}

.dot.is-active {
  background: rgba(59, 47, 51, 0.75);
}

/* Text */
.lead {
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 28px;
  color: #4a3a40;
}

/* CTA button */
.button {
  display: inline-block;
  padding: 14px 26px;
  background: #ffffff;
  color: #3b2f33;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

/* Email */
.email {
  margin-top: 18px;
  font-size: 14px;
  color: #6a5259;
}

.email a {
  color: #6a5259;
  text-decoration: underline;
}

/* Footer */
footer {
  margin-top: 48px;
  font-size: 13px;
  color: #8a6f77;
}

/* Mobile */
@media (max-width: 640px) {
  .slide {
    height: 220px;
  }

  .nav-btn {
    width: 38px;
    height: 38px;
  }
}
