@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,500&family=Manrope:wght@300;400;500;600;700&display=swap');

/* ═══════════════════════════════════════════════
   COLOR SCHEMES  — "Spring Garden" is default
   ═══════════════════════════════════════════════ */

/* 1. SPRING GARDEN (default) */
:root {
  --sage: #7A9E7E;
  --sage-light: #A8C5A0;
  --sage-pale: #E8F0E9;
  --sage-dark: #4A6B4E;
  --blush: #E8A5A5;
  --blush-light: #F5D5D5;
  --blush-pale: #FDF0F0;
  --blush-dark: #C47A7A;
  --lavender: #B8A8D4;
  --lavender-light: #D8CCE8;
  --lavender-pale: #F2EEF8;
  --lavender-dark: #8870B8;
  --sky: #A8C8E8;
  --sky-light: #D0E4F4;
  --sky-pale: #EEF6FC;
  --ivory: #FAF6EF;
  --ivory-dark: #F0E8D8;
  --warm-white: #FEFCF8;
  --text-dark: #2C2C2A;
  --text-mid: #5C5A54;
  --text-light: #9A9890;
  /* shared non-color vars */
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Manrope', sans-serif;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-xl: 48px;
  --shadow-soft: 0 4px 32px rgba(122, 158, 126, 0.12);
  --shadow-bloom: 0 8px 48px rgba(184, 168, 212, 0.18);
}

/* 2. GOLDEN DUSK — warm amber, terracotta, muted gold */
[data-theme="golden-dusk"] {
  --sage: #C4956A;
  --sage-light: #D9B491;
  --sage-pale: #F5EBE0;
  --sage-dark: #8C5A2E;
  --blush: #E8C4A0;
  --blush-light: #F2DCC8;
  --blush-pale: #FBF4EE;
  --blush-dark: #B07840;
  --lavender: #C8B89A;
  --lavender-light: #DDD0BC;
  --lavender-pale: #F5F0E8;
  --lavender-dark: #8C7258;
  --sky: #B8C8A8;
  --sky-light: #D4E0C8;
  --sky-pale: #EEF4E8;
  --ivory: #FAF4EC;
  --ivory-dark: #F0E4D4;
  --warm-white: #FEFAF4;
  --text-dark: #2E2418;
  --text-mid: #5C4E3A;
  --text-light: #A09080;
}

/* 3. OCEAN BREATH — deep teal, seafoam, mist */
[data-theme="ocean-breath"] {
  --sage: #5B9EA0;
  --sage-light: #88BFC0;
  --sage-pale: #E0F2F2;
  --sage-dark: #2E7072;
  --blush: #90C8C8;
  --blush-light: #B8DCDC;
  --blush-pale: #E8F6F6;
  --blush-dark: #3A8A8C;
  --lavender: #8AACBC;
  --lavender-light: #B4CCd8;
  --lavender-pale: #E4EFF5;
  --lavender-dark: #4A7A8C;
  --sky: #A8D0D8;
  --sky-light: #C8E4E8;
  --sky-pale: #ECF6F8;
  --ivory: #F4FAF8;
  --ivory-dark: #E4F0EE;
  --warm-white: #F8FDFC;
  --text-dark: #18302E;
  --text-mid: #3A5854;
  --text-light: #7A9E9A;
}

/* 4. LILAC TWILIGHT — soft purple, mauve, moonstone */
[data-theme="lilac-twilight"] {
  --sage: #9B89C4;
  --sage-light: #B8A8D8;
  --sage-pale: #EDE8F8;
  --sage-dark: #6A56A0;
  --blush: #C4A8CC;
  --blush-light: #DCC8E4;
  --blush-pale: #F5EEF8;
  --blush-dark: #8C6898;
  --lavender: #A890C0;
  --lavender-light: #C8B4D8;
  --lavender-pale: #F0E8F4;
  --lavender-dark: #7058A0;
  --sky: #B4A8D4;
  --sky-light: #CEC4E4;
  --sky-pale: #F0EEF8;
  --ivory: #F8F4FC;
  --ivory-dark: #EDE4F4;
  --warm-white: #FDFBFF;
  --text-dark: #241C38;
  --text-mid: #4C4468;
  --text-light: #9088B0;
}

/* ─── SCHEME SWITCHER WIDGET ─── */
.scheme-switcher {
  position: fixed;
  left: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 998;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: white;
  border-radius: 100px;
  padding: 10px 8px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
  border: 1px solid rgba(0,0,0,0.06);
}
.scheme-btn {
  position: relative;
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 2.5px solid transparent;
  cursor: pointer;
  transition: all 0.3s;
  outline: none;
  padding: 0;
}
.scheme-btn:hover { transform: scale(1.18); }
.scheme-btn.active { border-color: var(--text-dark); }
.scheme-btn[data-scheme="spring-garden"] { background: conic-gradient(#7A9E7E 0% 25%, #E8A5A5 25% 50%, #B8A8D4 50% 75%, #FAF6EF 75%); }
.scheme-btn[data-scheme="golden-dusk"]   { background: conic-gradient(#C4956A 0% 25%, #E8C4A0 25% 50%, #C8B89A 50% 75%, #FAF4EC 75%); }
.scheme-btn[data-scheme="ocean-breath"]  { background: conic-gradient(#5B9EA0 0% 25%, #90C8C8 25% 50%, #8AACBC 50% 75%, #F4FAF8 75%); }
.scheme-btn[data-scheme="lilac-twilight"]{ background: conic-gradient(#9B89C4 0% 25%, #C4A8CC 25% 50%, #A890C0 50% 75%, #F8F4FC 75%); }
.scheme-tooltip {
  position: absolute;
  left: calc(100% + 10px);
  top: 50%;
  transform: translateY(-50%);
  background: var(--text-dark);
  color: white;
  font-size: 0.72rem;
  font-weight: 600;
  white-space: nowrap;
  padding: 5px 10px;
  border-radius: 6px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s;
  letter-spacing: 0.03em;
}
.scheme-tooltip::before {
  content: '';
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-right-color: var(--text-dark);
}
.scheme-btn:hover .scheme-tooltip { opacity: 1; }

@media (max-width: 768px) {
  .scheme-switcher {
    left: 50%;
    top: auto;
    bottom: 5.5rem;
    transform: translateX(-50%);
    flex-direction: row;
    border-radius: 100px;
    padding: 8px 10px;
  }
  .scheme-tooltip { display: none; }
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  background: var(--warm-white);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.7;
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--ivory); }
::-webkit-scrollbar-thumb { background: var(--sage-light); border-radius: 3px; }

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.2;
  color: var(--text-dark);
}

h1 { font-size: clamp(2.8rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: 1.3rem; }

p { color: var(--text-mid); font-weight: 300; font-size: 1.05rem; }

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

/* ─── UTILITY ─── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.container-narrow { max-width: 860px; margin: 0 auto; padding: 0 2rem; }
.text-sage { color: var(--sage-dark); }
.text-blush { color: var(--blush-dark); }
.text-lavender { color: var(--lavender-dark); }
.italic { font-style: italic; }
.serif { font-family: var(--font-serif); }

/* ─── SECTION SPACING ─── */
.section { padding: 7rem 0; }
.section-sm { padding: 4rem 0; }

/* ─── SECTION LABEL ─── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin-bottom: 1.2rem;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1.5px;
  background: var(--sage);
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.03em;
  text-decoration: none;
}

.btn-primary {
  background: var(--sage);
  color: white;
  box-shadow: 0 4px 24px rgba(122, 158, 126, 0.35);
}
.btn-primary:hover {
  background: var(--sage-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(122, 158, 126, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--sage-dark);
  border: 1.5px solid var(--sage);
}
.btn-outline:hover {
  background: var(--sage-pale);
  transform: translateY(-2px);
}

.btn-blush {
  background: var(--blush);
  color: var(--text-dark);
  box-shadow: 0 4px 24px rgba(232, 165, 165, 0.35);
}
.btn-blush:hover {
  background: var(--blush-dark);
  color: white;
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25D366;
  color: white;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.3);
}
.btn-whatsapp:hover {
  background: #1eab52;
  transform: translateY(-2px);
}

.btn svg, .btn img { width: 18px; height: 18px; }

/* ─── NAV ─── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.2rem 0;
  transition: all 0.4s ease;
}
.navbar.scrolled {
  background: rgba(254, 252, 248, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 32px rgba(122, 158, 126, 0.1);
  padding: 0.8rem 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-main {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text-dark);
}
.logo-main span { font-style: italic; color: var(--sage-dark); }
.logo-sub {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 2px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-mid);
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1.5px;
  background: var(--sage);
  transition: width 0.3s;
}
.nav-links a:hover { color: var(--sage-dark); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--sage-dark); }
.nav-links a.active::after { width: 100%; }

.nav-cta { margin-left: 1rem; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text-dark);
  transition: var(--transition);
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--ivory) 0%, var(--blush-pale) 35%, var(--lavender-pale) 65%, var(--sage-pale) 100%);
  padding-top: 6rem;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
}
.hero-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--blush-light), transparent);
  top: -15%; right: -10%;
  animation: floatOrb1 12s ease-in-out infinite;
}
.hero-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--sage-pale), transparent);
  bottom: 5%; left: -5%;
  animation: floatOrb2 15s ease-in-out infinite;
}
.hero-orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, var(--lavender-light), transparent);
  top: 30%; left: 25%;
  animation: floatOrb1 18s ease-in-out infinite reverse;
}
@keyframes floatOrb1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-15px, 15px) scale(0.97); }
}
@keyframes floatOrb2 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(20px, -30px); }
}

.hero-leaves {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.leaf {
  position: absolute;
  opacity: 0.15;
  animation: leafFloat linear infinite;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 5rem;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-text { animation: fadeUp 1s ease both; }

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  border: 1px solid var(--sage-light);
  border-radius: 100px;
  padding: 6px 16px 6px 8px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--sage-dark);
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-soft);
}
.hero-pill-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--sage);
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

.hero-headline {
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 1.05;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}
.hero-headline em {
  font-style: italic;
  color: var(--sage-dark);
  position: relative;
}

.hero-tagline {
  font-size: 1.15rem;
  color: var(--text-mid);
  font-weight: 300;
  margin-bottom: 2.5rem;
  max-width: 440px;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(122, 158, 126, 0.2);
}
.hero-stat-num {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--sage-dark);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-light);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 4px;
}

.hero-visual {
  position: relative;
  animation: fadeUp 1s 0.3s ease both;
}
.hero-photo-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.hero-photo {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(145deg, var(--sage-pale) 0%, var(--lavender-pale) 50%, var(--blush-pale) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  border-radius: var(--radius-lg);
  border: 2px solid rgba(255,255,255,0.8);
  box-shadow: var(--shadow-bloom);
}
.photo-placeholder-icon {
  width: 100px; height: 100px;
  border-radius: 50%;
  background: rgba(122, 158, 126, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}
.photo-placeholder-icon svg { width: 48px; height: 48px; color: var(--sage); }
.photo-placeholder-text {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--sage-dark);
  font-style: italic;
}

.hero-badge {
  position: absolute;
  background: white;
  border-radius: var(--radius-md);
  padding: 1rem 1.4rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: float 4s ease-in-out infinite;
}
.hero-badge-1 { bottom: 10%; left: -12%; animation-delay: 0s; }
.hero-badge-2 { top: 12%; right: -10%; animation-delay: 1.5s; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.badge-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.badge-icon-sage { background: var(--sage-pale); }
.badge-icon-blush { background: var(--blush-pale); }
.badge-text { display: flex; flex-direction: column; }
.badge-num { font-family: var(--font-serif); font-size: 1.4rem; color: var(--text-dark); line-height: 1; }
.badge-label { font-size: 0.72rem; font-weight: 500; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 2px; }

/* ─── DECORATIVE ELEMENTS ─── */
.bloom-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 2rem 0;
  color: var(--sage-light);
}
.bloom-divider::before, .bloom-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--sage-pale);
}

/* ─── CARDS ─── */
.card {
  background: white;
  border-radius: var(--radius-md);
  padding: 2.5rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(232, 240, 233, 0.8);
  transition: var(--transition);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-bloom);
}

/* ─── SERVICES ─── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3.5rem;
}
.service-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 2.5rem;
  border: 1px solid var(--sage-pale);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sage), var(--blush));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-bloom);
}
.service-icon {
  width: 60px; height: 60px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  transition: transform 0.3s;
}
.service-card:hover .service-icon { transform: scale(1.1) rotate(5deg); }
.service-icon-sage { background: var(--sage-pale); }
.service-icon-blush { background: var(--blush-pale); }
.service-icon-lavender { background: var(--lavender-pale); }
.service-icon-sky { background: var(--sky-pale); }
.service-card h4 {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  margin-bottom: 0.8rem;
}
.service-card p { font-size: 0.92rem; margin-bottom: 1.5rem; }
.service-badge {
  display: inline-block;
  background: var(--sage-pale);
  color: var(--sage-dark);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 100px;
  letter-spacing: 0.05em;
}
.service-badge-free { background: var(--blush-pale); color: var(--blush-dark); }

/* ─── TESTIMONIALS ─── */
.testimonials-wrap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.testimonial-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 2rem 2rem 2rem 2.5rem;
  border-left: 3px solid var(--sage-light);
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  position: relative;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-bloom); }
.testimonial-card:nth-child(2) { border-color: var(--blush-light); }
.testimonial-card:nth-child(3) { border-color: var(--lavender-light); }
.testimonial-quote {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.testimonial-stars { color: #F5C97A; font-size: 0.9rem; margin-bottom: 0.8rem; letter-spacing: 2px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  flex-shrink: 0;
}
.av-sage { background: var(--sage-pale); color: var(--sage-dark); }
.av-blush { background: var(--blush-pale); color: var(--blush-dark); }
.av-lavender { background: var(--lavender-pale); color: var(--lavender-dark); }
.author-name { font-weight: 600; font-size: 0.9rem; }
.author-location { font-size: 0.78rem; color: var(--text-light); }
.testimonial-petal {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  font-size: 1.4rem;
  opacity: 0.3;
}

/* ─── ABOUT PREVIEW ─── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-photo-wrap {
  position: relative;
}
.about-photo {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--sage-pale) 0%, var(--lavender-pale) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  box-shadow: var(--shadow-bloom);
}
.about-accent-card {
  position: absolute;
  bottom: -2rem; right: -2rem;
  background: white;
  border-radius: var(--radius-md);
  padding: 1.5rem 2rem;
  box-shadow: 0 8px 40px rgba(0,0,0,0.1);
  text-align: center;
}
.about-accent-num { font-family: var(--font-serif); font-size: 2.5rem; color: var(--sage-dark); line-height: 1; }
.about-accent-label { font-size: 0.75rem; font-weight: 600; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 4px; }

/* ─── WAVY SECTION ─── */
.section-wavy {
  position: relative;
  background: linear-gradient(135deg, var(--sage-pale) 0%, var(--lavender-pale) 100%);
  padding: 7rem 0;
  overflow: hidden;
}
.section-wavy::before {
  content: '';
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: 80px;
  background: var(--warm-white);
  clip-path: ellipse(55% 100% at 50% 0%);
}
.section-wavy::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 80px;
  background: var(--warm-white);
  clip-path: ellipse(55% 100% at 50% 100%);
}

/* ─── CTA BANNER ─── */
.cta-banner {
  background: linear-gradient(135deg, var(--sage-dark) 0%, var(--sage) 50%, var(--sage-light) 100%);
  border-radius: var(--radius-xl);
  padding: 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin: 4rem 0;
}
.cta-banner::before {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  top: -150px; right: -100px;
}
.cta-banner::after {
  content: '';
  position: absolute;
  width: 250px; height: 250px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  bottom: -80px; left: -60px;
}
.cta-banner h2 { color: white; margin-bottom: 0.8rem; }
.cta-banner p { color: rgba(255,255,255,0.8); margin-bottom: 2rem; font-size: 1.1rem; }
.cta-banner .btn-blush { background: var(--blush-light); color: var(--text-dark); }
.cta-banner .btn-outline { border-color: rgba(255,255,255,0.5); color: white; }
.cta-banner .btn-outline:hover { background: rgba(255,255,255,0.15); }

/* ─── EVENTS ─── */
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.event-card {
  background: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  border: 1px solid var(--ivory-dark);
}
.event-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-bloom); }
.event-card-header {
  padding: 2rem;
  background: linear-gradient(135deg, var(--sage-pale), var(--lavender-pale));
  position: relative;
}
.event-date-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: white;
  border-radius: var(--radius-sm);
  padding: 0.6rem 1rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  margin-bottom: 1rem;
}
.event-date-day { font-family: var(--font-serif); font-size: 2rem; color: var(--sage-dark); line-height: 1; font-weight: 500; }
.event-date-month { font-size: 0.72rem; font-weight: 700; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.1em; }
.event-card-body { padding: 1.5rem 2rem 2rem; }
.event-card-body h4 { font-family: var(--font-serif); font-size: 1.4rem; margin-bottom: 0.6rem; }
.event-card-body p { font-size: 0.88rem; margin-bottom: 1.2rem; }
.event-meta { display: flex; gap: 1rem; flex-wrap: wrap; }
.event-meta-item { display: flex; align-items: center; gap: 6px; font-size: 0.78rem; color: var(--text-light); font-weight: 500; }

/* ─── FOOTER ─── */
.footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.7);
  padding: 5rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 2rem;
}
.footer-brand .logo-main { color: white; margin-bottom: 1rem; display: block; }
.footer-brand .logo-main span { color: var(--sage-light); }
.footer-brand p { font-size: 0.88rem; line-height: 1.8; max-width: 260px; }
.footer-col h5 {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: white;
  margin-bottom: 1.5rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.8rem; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.3s;
}
.footer-col ul li a:hover { color: var(--sage-light); }
.footer-social { display: flex; gap: 12px; margin-top: 1.5rem; }
.social-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  transition: var(--transition);
  cursor: pointer;
}
.social-btn:hover { background: var(--sage); border-color: var(--sage); color: white; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-size: 0.82rem; }
.footer-bottom a { color: var(--sage-light); }
.footer-newsletter input {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px;
  padding: 10px 16px;
  color: white;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  width: 100%;
  margin-bottom: 0.8rem;
  outline: none;
  transition: border-color 0.3s;
}
.footer-newsletter input::placeholder { color: rgba(255,255,255,0.35); }
.footer-newsletter input:focus { border-color: var(--sage-light); }
.footer-newsletter .btn { width: 100%; justify-content: center; font-size: 0.82rem; padding: 11px 20px; }

/* ─── BOOKING POPUP ─── */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(44, 44, 42, 0.6);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  overflow-y: auto;
}
.popup-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.popup-box {
  background: white;
  border-radius: var(--radius-lg);
  max-width: 500px;
  width: 100%;
  max-height: calc(100vh - 2rem);
  overflow-y: auto;
  overflow-x: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.2);
  transform: translateY(20px) scale(0.97);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  scrollbar-width: thin;
  scrollbar-color: var(--sage-light) transparent;
}
.popup-overlay.active .popup-box {
  transform: translateY(0) scale(1);
}
.popup-header {
  background: linear-gradient(135deg, var(--sage-pale) 0%, var(--blush-pale) 100%);
  padding: 1.5rem 1.5rem 1.2rem;
  text-align: center;
  position: relative;
}
.popup-close {
  position: absolute;
  top: 0.8rem; right: 0.8rem;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  color: var(--text-mid);
  transition: var(--transition);
  z-index: 10;
}
.popup-close:hover { background: white; transform: scale(1.1); }
.popup-icon { font-size: 1.8rem; margin-bottom: 0.4rem; }
.popup-header h3 { font-family: var(--font-serif); font-size: 1.5rem; margin-bottom: 0.3rem; }
.popup-header p { font-size: 0.82rem; color: var(--text-light); }
.popup-free-badge {
  display: inline-block;
  background: var(--sage);
  color: white;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 100px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.popup-body { padding: 1.2rem 1.5rem 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; }
.form-group { margin-bottom: 0.9rem; }
.form-group label { display: block; font-size: 0.72rem; font-weight: 600; color: var(--text-mid); margin-bottom: 4px; letter-spacing: 0.04em; text-transform: uppercase; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 9px 13px;
  border: 1.5px solid var(--ivory-dark);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.88rem;
  color: var(--text-dark);
  background: var(--ivory);
  outline: none;
  transition: border-color 0.3s;
  -webkit-appearance: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--sage);
  background: white;
}
.form-group textarea { resize: vertical; min-height: 60px; }
.popup-submit { width: 100%; justify-content: center; font-size: 0.9rem; padding: 12px 20px; margin-top: 0.3rem; }
.popup-note { text-align: center; font-size: 0.74rem; color: var(--text-light); margin-top: 0.7rem; }

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  padding: 10rem 0 6rem;
  background: linear-gradient(135deg, var(--ivory) 0%, var(--sage-pale) 50%, var(--lavender-pale) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero h1 { margin-bottom: 1rem; }
.page-hero p { font-size: 1.15rem; max-width: 560px; margin: 0 auto 2rem; }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes leafFloat {
  0% { transform: translateY(-10px) rotate(0deg); opacity: 0; }
  10% { opacity: 0.15; }
  90% { opacity: 0.12; }
  100% { transform: translateY(110vh) rotate(720deg); opacity: 0; }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── FLOATING WHATSAPP ─── */
.whatsapp-float {
  position: fixed;
  bottom: 2rem; right: 2rem;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
  z-index: 999;
  cursor: pointer;
  transition: var(--transition);
  font-size: 1.4rem;
  text-decoration: none;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 10px 32px rgba(37, 211, 102, 0.5); }

/* ─── MOBILE MENU ─── */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--warm-white);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu .nav-links {
  flex-direction: column;
  gap: 1.5rem;
  text-align: center;
  list-style: none;
}
.mobile-menu .nav-links a { font-size: 1.5rem; font-family: var(--font-serif); color: var(--text-dark); }
.mobile-menu-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: none; border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-mid);
  padding: 8px;
}

/* ─── CONTACT ─── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}
.contact-info-card {
  background: linear-gradient(135deg, var(--sage-pale) 0%, var(--lavender-pale) 100%);
  border-radius: var(--radius-lg);
  padding: 3rem;
}
.contact-info-card h3 { font-family: var(--font-serif); margin-bottom: 1rem; }
.contact-info-card p { margin-bottom: 2rem; font-size: 0.92rem; }
.contact-detail { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; }
.contact-detail-icon {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.contact-detail-text h5 { font-weight: 600; font-size: 0.9rem; margin-bottom: 2px; }
.contact-detail-text p { font-size: 0.85rem; color: var(--text-light); margin: 0; }

.contact-form-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--ivory-dark);
}

/* ─── BLOG / RESOURCES ─── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.blog-card {
  background: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  border: 1px solid var(--ivory-dark);
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-bloom); }
.blog-card-img {
  height: 180px;
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
}
.blog-card-body { padding: 1.5rem 2rem 2rem; }
.blog-tag {
  display: inline-block;
  background: var(--sage-pale);
  color: var(--sage-dark);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 100px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}
.blog-card-body h4 { font-family: var(--font-serif); font-size: 1.35rem; margin-bottom: 0.6rem; }
.blog-card-body p { font-size: 0.88rem; margin-bottom: 1rem; }
.blog-read-more { font-size: 0.85rem; font-weight: 600; color: var(--sage-dark); display: flex; align-items: center; gap: 6px; transition: gap 0.3s; cursor: pointer; border: none; background: none; font-family: var(--font-sans); }
.blog-card:hover .blog-read-more { gap: 10px; }

/* ─── COUNTDOWN ─── */
.countdown-wrap {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin: 2rem 0;
}
.countdown-unit {
  text-align: center;
  background: white;
  border-radius: var(--radius-sm);
  padding: 1.2rem 1.8rem;
  min-width: 80px;
  box-shadow: var(--shadow-soft);
}
.countdown-num { font-family: var(--font-serif); font-size: 2.8rem; color: var(--sage-dark); line-height: 1; }
.countdown-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-light); margin-top: 4px; }

/* ─── SOUND TOGGLE ─── */
.sound-toggle {
  position: fixed;
  bottom: 6rem; right: 2.2rem;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: white;
  border: 1.5px solid var(--sage-light);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  z-index: 998;
  transition: var(--transition);
  box-shadow: var(--shadow-soft);
  color: var(--sage-dark);
}
.sound-toggle:hover { transform: scale(1.1); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
  .hero-ctas { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { display: none; }
  .hero-badge { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-photo-wrap { max-width: 400px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero-stats { gap: 1.5rem; flex-wrap: wrap; justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .cta-banner { padding: 2.5rem 1.5rem; border-radius: var(--radius-md); }
  .form-row { grid-template-columns: 1fr; }
  .popup-body { padding: 1.5rem; }
  .popup-header { padding: 2rem 1.5rem 1.5rem; }
  .section { padding: 5rem 0; }
  .container { padding: 0 1.2rem; }
  .countdown-wrap { gap: 0.8rem; }
  .countdown-unit { padding: 0.9rem 1rem; min-width: 60px; }
  .countdown-num { font-size: 2rem; }
}
