:root {
  --rose: #f7d4d8;
  --rose-strong: #f2a9b4;
  --wine: #5f1f41;
  --midnight: #130914;
  --sand: #fff9f5;
  --soft: rgba(255, 255, 255, 0.9);
  --card-shadow: 0 20px 45px rgba(95, 31, 65, 0.15);
}

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

body {
  font-family: "Manrope", sans-serif;
  margin: 0;
  background: linear-gradient(180deg, #fff7fb 0%, #ffeef5 60%, #fff9f5 100%);
  color: var(--midnight);
  min-height: 100vh;
}

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

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

.container {
  width: min(1200px, 90vw);
  margin: 0 auto;
}

header {
  position: sticky;
  top: 0;
  z-index: 99;
  background: rgba(255, 250, 250, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(95, 31, 65, 0.1);
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  color: var(--wine);
  letter-spacing: 0.08em;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  font-weight: 500;
}

.btn {
  background: var(--wine);
  color: #fff;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  box-shadow: var(--card-shadow);
  transition: transform 250ms ease, box-shadow 250ms ease;
}

.btn.secondary {
  background: transparent;
  color: var(--wine);
  border: 1px solid rgba(95, 31, 65, 0.3);
  box-shadow: none;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(95, 31, 65, 0.25);
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
  gap: 3rem;
  padding: 5rem 0;
}

.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.5rem, 4vw, 4.2rem);
  margin-bottom: 1rem;
  color: var(--wine);
}

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

.hero-visual {
  position: relative;
}

.hero-visual img {
  border-radius: 18px;
  box-shadow: var(--card-shadow);
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 24px;
  pointer-events: none;
}

section {
  padding: 4rem 0;
}

h2.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 3vw, 3rem);
  text-align: center;
  color: var(--wine);
  margin-bottom: 2rem;
}

.section-lead {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
  color: rgba(19, 9, 20, 0.8);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.8rem;
}

.card {
  background: var(--soft);
  border-radius: 18px;
  padding: 2rem;
  box-shadow: var(--card-shadow);
  min-height: 220px;
}

.card span.icon {
  font-size: 2rem;
  display: inline-block;
  margin-bottom: 1rem;
}

.highlight {
  background: var(--wine);
  color: #fff;
  border-radius: 24px;
  padding: 3rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2.5rem;
  align-items: center;
}

.highlight h3 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.insta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.insta-grid .instagram-media {
  border-radius: 22px;
  box-shadow: var(--card-shadow);
  background: #fff;
  width: 100% !important;
  margin: 0 auto !important;
  padding: 0;
}

.testimonial-slider {
  position: relative;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 600ms ease;
}

.testimonial {
  min-width: 100%;
  padding: 2rem;
  background: var(--soft);
  border-radius: 20px;
  box-shadow: var(--card-shadow);
  text-align: center;
}

.testimonial p {
  font-style: italic;
}

.testimonial strong {
  display: block;
  margin-top: 1rem;
  color: var(--wine);
}

.pricing-table {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.price-card {
  background: #fff;
  border-radius: 18px;
  padding: 2rem;
  border: 1px solid rgba(95, 31, 65, 0.1);
  box-shadow: 0 10px 25px rgba(19, 9, 20, 0.08);
}

.price-card h3 {
  margin-top: 0;
}

.price {
  font-size: 2rem;
  color: var(--wine);
  margin: 1rem 0;
}


footer {
  text-align: center;
  padding: 2rem 0 3rem;
  color: rgba(19, 9, 20, 0.7);
}

.mobile-toggle {
  display: none;
  border: none;
  background: transparent;
  font-size: 1.8rem;
  color: var(--wine);
}

@media (max-width: 768px) {
  nav {
    flex-wrap: wrap;
  }

  .nav-links {
    width: 100%;
    flex-direction: column;
    margin-top: 1rem;
    display: none;
  }

  .nav-links.open {
    display: flex;
  }

  .mobile-toggle {
    display: block;
  }

  .hero {
    padding-top: 3rem;
  }
}
