:root {
  --pink: #e91e8c;
  --pink-dark: #c41775;
  --pink-light: #fce4f0;
  --cream: #fdf8f5;
  --charcoal: #2d2d2d;
  --muted: #6b6b6b;
  --white: #ffffff;
  --shadow: 0 4px 24px rgba(45, 45, 45, 0.08);
  --radius: 12px;
  --font-body: 'Montserrat', sans-serif;
  --font-heading: 'Playfair Display', serif;
}

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

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.6;
}

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

a { color: var(--pink); text-decoration: none; }
a:hover { color: var(--pink-dark); }

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

h1, h2, h3 {
  font-family: var(--font-heading);
  line-height: 1.2;
  margin: 0 0 0.75rem;
}

/* Header */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--pink-light);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  gap: 1rem;
}

.logo { height: 72px; width: auto; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav-link {
  color: var(--charcoal);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-link:hover, .nav-link.active { color: var(--pink); }

.nav-cta {
  background: var(--pink);
  color: var(--white) !important;
  padding: 0.5rem 1rem;
  border-radius: 999px;
}

.nav-cta:hover { background: var(--pink-dark); color: var(--white) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
}

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--cream) 0%, var(--pink-light) 100%);
  padding: 4rem 0;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.hero h1 { font-size: clamp(2rem, 4vw, 3rem); }

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.btn {
  display: inline-block;
  padding: 0.85rem 1.75rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.btn-primary {
  background: var(--pink);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--pink-dark);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--pink);
  border: 2px solid var(--pink);
}

.btn-outline:hover { background: var(--pink-light); }

.hero-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.hero-images img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 1;
  object-fit: cover;
}

.hero-images img:first-child { grid-row: span 2; }

/* Sections */
.section { padding: 4rem 0; }
.section-cream { background: var(--cream); }

.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
}

.intro-text {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  color: var(--muted);
  font-size: 1.05rem;
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.step-card {
  background: var(--white);
  padding: 1.75rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--pink);
  color: var(--white);
  border-radius: 50%;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.about-block { margin-bottom: 2rem; }
.about-block p { color: var(--muted); }

.about-image {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.page-header {
  background: var(--cream);
  padding: 3rem 0;
  text-align: center;
}

.page-header p { color: var(--muted); max-width: 560px; margin: 0.5rem auto 0; }

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: transform 0.2s;
  background: var(--white);
}

.gallery-item:hover { transform: translateY(-4px); }

.gallery-item img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.gallery-caption {
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
  color: var(--muted);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox.open { display: flex; }

.lightbox img {
  max-height: 90vh;
  max-width: 90vw;
  border-radius: var(--radius);
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: var(--white);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
}

/* Reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.review-card {
  background: var(--white);
  padding: 1.75rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-top: 3px solid var(--pink);
}

.review-stars { color: var(--pink); font-size: 1.1rem; margin-bottom: 0.5rem; }
.review-text { color: var(--muted); font-style: italic; margin-bottom: 1rem; }
.review-name { font-weight: 600; font-size: 0.9rem; }
.review-date { font-size: 0.8rem; color: var(--muted); }

/* Footer */
.site-footer {
  background: var(--charcoal);
  color: var(--white);
  padding: 2.5rem 0;
  margin-top: auto;
}

.footer-inner { text-align: center; }
.footer-tagline { opacity: 0.85; margin-bottom: 0.5rem; }
.footer-copy { font-size: 0.85rem; opacity: 0.6; margin: 0; }

/* Toast */
.toast {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  background: var(--charcoal);
  color: var(--white);
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  z-index: 2000;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s, transform 0.3s;
  max-width: 360px;
}

.toast.show { opacity: 1; transform: translateY(0); }
.toast.error { background: #c0392b; }
.toast.success { background: #27ae60; }

@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--white);
    padding: 1rem;
    border-bottom: 1px solid var(--pink-light);
    box-shadow: var(--shadow);
  }

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

  .hero-inner, .about-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .logo { height: 56px; }
}
