@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,600&family=Montserrat:wght@300;400;500;600&display=swap');

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

:root {
  --primary: #c8602a;
  --primary-hover: #b0501f;
  --accent: #e8b86d;
  --secondary: #c8415a;
  --bg: #fdf8f3;
  --card: #fff9f4;
  --foreground: #2c1a0e;
  --muted: #8a6a52;
  --border: #e8d5c0;
  --green: #25D366;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--bg);
  color: var(--foreground);
  overflow-x: hidden;
}

/* ── HERO ─────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 1.5rem;
}
.hero-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--bg) 0%, rgba(0,0,0,0.35) 50%, rgba(0,0,0,0.2) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}
.hero-label {
  color: var(--accent);
  letter-spacing: 0.3em;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 9vw, 7rem);
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero h1 em { color: var(--accent); font-style: italic; }
.hero p {
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  color: rgba(255,255,255,0.9);
  font-weight: 300;
  max-width: 640px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}
.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  border-radius: 9999px;
  background: var(--primary);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  border: none;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 0 40px rgba(200,96,42,0.4);
  transition: background 0.25s, box-shadow 0.25s, transform 0.15s;
}
.btn:hover {
  background: var(--primary-hover);
  box-shadow: 0 0 60px rgba(200,96,42,0.55);
  transform: translateY(-1px);
}

/* ── SECTIONS ─────────────────────────────────────── */
section { padding: 5rem 1.5rem; }
.container { max-width: 1160px; margin: 0 auto; }
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.2;
  margin-bottom: 1.2rem;
}
.section-title em { font-style: italic; }
.section-title .accent { color: var(--primary); }
.section-title .rose   { color: var(--secondary); }
.lead {
  font-size: 1.1rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.8;
}

/* ── INTRO ────────────────────────────────────────── */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 768px) { .intro-grid { grid-template-columns: 1fr; gap: 2.5rem; } }
.intro-img-wrap {
  position: relative;
}
.intro-img-wrap img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 2rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  display: block;
}
.intro-text p { margin-bottom: 1.2rem; }
.intro-text strong { color: var(--foreground); font-weight: 600; }
.intro-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  color: var(--primary);
  font-style: italic;
  margin-top: 1.5rem;
}

/* ── WHY JOIN ─────────────────────────────────────── */
.why-section { background: #f7ede0; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.why-card {
  background: #fff;
  border-radius: 1.2rem;
  padding: 2rem 1.5rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  border: 1px solid var(--border);
  transition: box-shadow 0.25s;
}
.why-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.1); }
.why-icon {
  width: 48px; height: 48px;
  background: rgba(200,96,42,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem;
  font-size: 1.4rem;
}
.why-card p { font-weight: 500; font-size: 0.95rem; line-height: 1.5; }

/* ── JUNE ─────────────────────────────────────────── */
.june-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 768px) { .june-grid { grid-template-columns: 1fr; gap: 2.5rem; } }
.june-img-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.june-img-wrap img {
  width: 80%;
  max-width: 380px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  border: 8px solid var(--bg);
  box-shadow: 0 10px 40px rgba(0,0,0,0.12);
  display: block;
}

/* ── PROGRAM ──────────────────────────────────────── */
.program-section {
  background: var(--primary);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.program-section .section-title { color: #fff; }
.program-section .lead { color: rgba(255,255,255,0.8); }
.program-timeline {
  position: relative;
  margin-top: 3rem;
}
.program-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 2px;
  background: rgba(255,255,255,0.2);
  transform: translateX(-50%);
}
@media (max-width: 768px) {
  .program-timeline::before { left: 1.5rem; }
}
.program-item {
  display: flex;
  justify-content: flex-end;
  padding-right: calc(50% + 2rem);
  margin-bottom: 3rem;
  position: relative;
}
.program-item:nth-child(even) {
  justify-content: flex-start;
  padding-right: 0;
  padding-left: calc(50% + 2rem);
}
@media (max-width: 768px) {
  .program-item,
  .program-item:nth-child(even) {
    padding-left: 4rem;
    padding-right: 0;
    justify-content: flex-start;
  }
}
.program-dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 1rem;
  width: 2.5rem; height: 2.5rem;
  background: #fff;
  border-radius: 50%;
  border: 4px solid var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  color: var(--primary);
  font-size: 0.9rem;
  z-index: 2;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .program-dot {
    left: 1.5rem;
    transform: translateX(-50%);
  }
}
.program-card {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 1.2rem;
  padding: 1.5rem 1.8rem;
  max-width: 440px;
  backdrop-filter: blur(4px);
  transition: background 0.25s;
}
.program-card:hover { background: rgba(255,255,255,0.2); }
.program-day {
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}
.program-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  margin-bottom: 0.7rem;
}
.program-card p { font-weight: 300; font-size: 0.92rem; line-height: 1.7; opacity: 0.9; }
.program-note {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 1.2rem;
  padding: 2rem;
  text-align: center;
  margin-top: 2rem;
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.7;
}
.program-note em {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-style: italic;
  display: block;
  margin-bottom: 0.7rem;
}

/* ── PRICING ──────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 960px) { .pricing-grid { grid-template-columns: 1fr; } }
.pricing-list { list-style: none; }
.pricing-list li {
  display: flex;
  gap: 1rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--border);
  font-weight: 300;
  font-size: 0.97rem;
  color: var(--muted);
  line-height: 1.6;
}
.pricing-list li::before {
  content: '›';
  color: var(--accent);
  font-size: 1.2rem;
  flex-shrink: 0;
  line-height: 1.4;
}
.extras-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  margin: 2rem 0 1rem;
}
.extras-list { list-style: none; }
.extras-list li {
  display: flex;
  gap: 1rem;
  padding: 0.5rem 0;
  font-weight: 300;
  font-size: 0.97rem;
  color: var(--muted);
  line-height: 1.6;
}
.extras-list li::before {
  content: '•';
  color: var(--secondary);
  flex-shrink: 0;
}
.notes-box {
  background: #f7ede0;
  border-radius: 1rem;
  padding: 1.2rem 1.5rem;
  margin-top: 1.5rem;
  font-size: 0.92rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.7;
}
.notes-box strong { color: var(--foreground); }

/* Price card */
.price-card {
  position: sticky;
  top: 2rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  overflow: hidden;
}
.price-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
}
.price-amount {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}
.price-currency {
  font-size: 1.2rem;
  color: var(--muted);
  font-weight: 300;
  margin-left: 0.3rem;
}
.price-note {
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 300;
  margin: 1rem 0 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.btn-full {
  width: 100%;
  border-radius: 0.9rem;
  padding: 0.9rem 1rem;
  font-size: 1rem;
}
.btn-small-note {
  font-size: 0.72rem;
  color: var(--muted);
  text-align: center;
  margin-top: 0.8rem;
  font-weight: 300;
  line-height: 1.5;
}
.contact-links {
  margin-top: 1.2rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.contact-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1rem;
  border-radius: 0.8rem;
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.15s;
  font-family: 'Montserrat', sans-serif;
}
.contact-link:hover { opacity: 0.88; transform: translateY(-1px); }
.contact-link-wa {
  background: rgba(37,211,102,0.12);
  color: #1a9e4d;
  border: 1px solid rgba(37,211,102,0.35);
}
.contact-link-ig {
  background: #fdf0f5;
  color: #c13584;
  border: 1px solid #f5c8da;
}

/* ── GALLERY ──────────────────────────────────────── */
.gallery { padding: 3rem 1.5rem 5rem; }
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 1rem;
  max-width: 1160px;
  margin: 0 auto;
}
@media (max-width: 640px) { .gallery-grid { grid-template-columns: 1fr 1fr; } }
.gallery-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 1.2rem;
  display: block;
  transition: transform 0.6s;
  overflow: hidden;
}
.gallery-grid img:hover { transform: scale(1.04); }

/* ── FOOTER ───────────────────────────────────────── */
footer {
  background: var(--foreground);
  color: #fff;
  text-align: center;
  padding: 4rem 1.5rem;
}
footer h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  margin-bottom: 1rem;
}
footer p { color: rgba(255,255,255,0.55); font-weight: 300; font-size: 0.9rem; margin-bottom: 1.5rem; }
.footer-contacts {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.footer-contacts a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s;
}
.footer-contacts a:hover { color: #fff; }
footer small { color: rgba(255,255,255,0.3); font-size: 0.75rem; }

/* ── MODAL ────────────────────────────────────────── */
.modal-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.modal-backdrop.open { display: flex; }
.modal {
  background: var(--card);
  border-radius: 1.5rem;
  width: 100%;
  max-width: 460px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  animation: modal-in 0.25s ease;
}
@keyframes modal-in {
  from { opacity: 0; transform: translateY(20px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0)   scale(1); }
}
.modal-header {
  background: var(--primary);
  color: #fff;
  padding: 2rem 2rem 1.5rem;
}
.modal-header h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  margin-bottom: 0.3rem;
}
.modal-header p { color: rgba(255,255,255,0.75); font-weight: 300; font-size: 0.88rem; }
.modal-body { padding: 1.8rem 2rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label {
  display: block;
  font-weight: 500;
  font-size: 0.9rem;
  margin-bottom: 0.45rem;
  color: var(--foreground);
}
.form-group input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  background: #fff;
  color: var(--foreground);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(200,96,42,0.15);
}
.form-note { font-size: 0.72rem; color: var(--muted); text-align: center; margin-top: 0.8rem; font-weight: 300; }

/* Success state */
.modal-success { padding: 2.5rem 2rem; text-align: center; display: none; }
.modal-success.active { display: block; }
.success-icon {
  width: 64px; height: 64px;
  background: #dcfce7;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.2rem;
  font-size: 2rem;
}
.modal-success h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  margin-bottom: 0.6rem;
}
.modal-success p { color: var(--muted); font-weight: 300; font-size: 0.9rem; line-height: 1.7; margin-bottom: 1.5rem; }
.success-links { display: flex; flex-direction: column; gap: 0.7rem; }
.btn-wa {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  background: #25D366; color: #fff;
  border-radius: 0.8rem; padding: 0.8rem 1rem;
  font-family: 'Montserrat', sans-serif; font-size: 0.92rem; font-weight: 500;
  text-decoration: none; border: none; cursor: pointer;
  transition: background 0.2s;
}
.btn-wa:hover { background: #1da855; }
.btn-ig {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  background: linear-gradient(to right, #833ab4, #fd1d1d, #fcb045);
  color: #fff;
  border-radius: 0.8rem; padding: 0.8rem 1rem;
  font-family: 'Montserrat', sans-serif; font-size: 0.92rem; font-weight: 500;
  text-decoration: none; border: none; cursor: pointer;
  transition: opacity 0.2s;
}
.btn-ig:hover { opacity: 0.88; }
.btn-close-link {
  display: block; margin-top: 1rem;
  font-size: 0.82rem; color: var(--muted);
  background: none; border: none; cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  transition: color 0.2s;
}
.btn-close-link:hover { color: var(--foreground); }
