*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  :root {
    --forest: #1a3d2b; --forest-mid: #2a5c3f; --forest-light: #3d7a56;
    --cream: #f5f0e8; --warm-white: #faf8f3;
    --gold: #b8973a; --gold-light: #d4af57;
    --text-dark: #1a1a18; --text-mid: #4a4a40; --text-light: #7a7a6a;
    --whatsapp: #25D366;
  }
  html { scroll-behavior: smooth; }
  body { font-family: 'Jost', sans-serif; background: var(--warm-white); color: var(--text-dark); overflow-x: hidden; font-weight: 300; }

  /* NAV */
  nav { position: fixed; top: 0; left: 0; right: 0; z-index: 99; padding: 1.5rem 3rem; display: flex; justify-content: space-between; align-items: center; transition: background 0.4s, padding 0.4s; }
  nav.scrolled { background: rgba(26,61,43,0.97); padding: 1rem 3rem; backdrop-filter: blur(8px); }
  .nav-brand { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.1rem; color: var(--cream); text-decoration: none; }
  .nav-links { display: flex; gap: 2rem; list-style: none; }
  .nav-links a { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(245,240,232,0.65); text-decoration: none; transition: color 0.3s; }
  .nav-links a:hover { color: var(--gold-light); }
  .nav-cta { background: transparent !important; border: 1px solid var(--gold); color: var(--gold) !important; padding: 0.45rem 1.1rem; }
  .nav-cta:hover { background: var(--gold) !important; color: var(--forest) !important; }

  /* HERO */
  .hero { min-height: 100vh; position: relative; display: flex; flex-direction: column; justify-content: center; align-items: center; overflow: hidden; background: var(--forest); }
  .hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center 30%; opacity: 0.22; }
  .hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(26,61,43,0.82) 0%, rgba(26,61,43,0.7) 60%, rgba(26,61,43,0.92) 100%); }
  .hero-leaves { position: absolute; top: 0; right: 0; width: 38%; opacity: 0.15; pointer-events: none; }
  .hero-leaves-left { position: absolute; bottom: 0; left: 0; width: 25%; opacity: 0.10; pointer-events: none; transform: rotate(180deg) scaleX(-1); }
  .hero-content { position: relative; z-index: 2; text-align: center; padding: 2rem; max-width: 800px; animation: fadeUp 1.2s ease both; }
  @keyframes fadeUp { from { opacity: 0; transform: translateY(32px); } to { opacity: 1; transform: translateY(0); } }
  .hero-eyebrow { font-family: 'Jost', sans-serif; font-weight: 400; letter-spacing: 0.22em; font-size: 0.72rem; color: var(--gold-light); text-transform: uppercase; margin-bottom: 1.4rem; }
  .hero h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(3.6rem, 8vw, 7rem); font-weight: 300; color: var(--cream); line-height: 1.06; margin-bottom: 1rem; }
  .hero h1 em { font-style: italic; color: var(--gold-light); }
  .divider-gold { width: 48px; height: 1px; background: var(--gold); margin: 1.6rem auto; position: relative; }
  .divider-gold::before { content: '◆'; position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); font-size: 0.5rem; color: var(--gold); background: var(--forest); padding: 0 6px; }
  .hero-subtitle { font-weight: 300; font-size: clamp(0.9rem, 2vw, 1.1rem); letter-spacing: 0.14em; text-transform: uppercase; color: rgba(245,240,232,0.65); margin-bottom: 0.6rem; }
  .hero-name { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: clamp(1.1rem, 2.5vw, 1.5rem); font-weight: 300; color: var(--gold-light); margin-bottom: 2.8rem; }
  .hero-cta { display: inline-flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }
  .scroll-hint { position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%); z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 0.5rem; opacity: 0.5; }
  .scroll-hint span { font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--cream); }
  .scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, var(--gold), transparent); animation: scrollPulse 2s infinite; }
  @keyframes scrollPulse { 0%,100% { opacity: 0.4; } 50% { opacity: 1; } }

  /* BUTTONS */
  .btn-primary { background: var(--gold); color: var(--forest); font-family: 'Jost', sans-serif; font-weight: 500; font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; padding: 1rem 2.2rem; border: none; cursor: pointer; text-decoration: none; display: inline-block; transition: background 0.3s, transform 0.2s; }
  .btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
  .btn-ghost { border: 1px solid rgba(245,240,232,0.35); color: var(--cream); font-family: 'Jost', sans-serif; font-weight: 400; font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; padding: 1rem 2.2rem; text-decoration: none; display: inline-block; transition: border-color 0.3s, background 0.3s; }
  .btn-ghost:hover { border-color: var(--gold); background: rgba(184,151,58,0.08); }
  .btn-whatsapp { background: var(--whatsapp); color: #fff !important; font-family: 'Jost', sans-serif; font-weight: 500; font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; padding: 1rem 2.2rem; border: none; cursor: pointer; text-decoration: none; display: inline-flex; align-items: center; gap: 0.6rem; transition: background 0.3s, transform 0.2s; }
  .btn-whatsapp:hover { background: #1ebe5d; transform: translateY(-2px); }
  .btn-whatsapp svg { width: 18px; height: 18px; fill: #fff; flex-shrink: 0; }

  /* INTRO */
  .intro-strip { background: var(--cream); padding: 5rem 2rem; }
  .intro-inner { max-width: 900px; margin: 0 auto; display: grid; grid-template-columns: 1fr 2fr; gap: 4rem; align-items: center; }
  .intro-label { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 300; line-height: 1.2; color: var(--forest); font-style: italic; }
  .intro-text { font-size: 1rem; line-height: 1.9; color: var(--text-mid); }

  /* SECTION */
  section { padding: 6rem 2rem; }
  .section-tag { font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.8rem; }
  h2 { font-family: 'Cormorant Garamond', serif; font-weight: 300; font-size: clamp(2rem, 4.5vw, 3.4rem); line-height: 1.15; }



  /* SERVICES */
  .services { background: var(--warm-white); }
  .services-inner { max-width: 1100px; margin: 0 auto; }
  .services-header { text-align: center; margin-bottom: 3.5rem; }
  .services-lead { max-width: 680px; margin: 1rem auto 0; color: var(--text-mid); line-height: 1.8; font-size: 0.95rem; }
  .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
  .service-card { background: var(--cream); padding: 3rem 2.5rem; border-top: 3px solid var(--gold); min-height: 260px; }
  .service-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.55rem; font-weight: 500; color: var(--forest); margin-bottom: 0.9rem; }
  .service-card p { font-size: 0.92rem; line-height: 1.85; color: var(--text-mid); }
  .service-card .service-note { margin-top: 1.2rem; font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); font-weight: 400; }

  /* HOW */
  .how { background: var(--warm-white); }
  .how-inner { max-width: 1100px; margin: 0 auto; }
  .how-header { text-align: center; margin-bottom: 4rem; }
  .how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
  .how-card { background: var(--cream); padding: 3rem 2.5rem; position: relative; overflow: hidden; transition: transform 0.3s; }
  .how-card:hover { transform: translateY(-4px); }
  .how-card::after { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 3px; background: linear-gradient(90deg, var(--forest), var(--gold)); transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease; }
  .how-card:hover::after { transform: scaleX(1); }
  .how-num { font-family: 'Cormorant Garamond', serif; font-size: 4rem; font-weight: 300; color: rgba(26,61,43,0.08); line-height: 1; margin-bottom: 1rem; }
  .how-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 500; color: var(--forest); margin-bottom: 0.8rem; }
  .how-card p { font-size: 0.9rem; line-height: 1.8; color: var(--text-mid); }

  /* CONDITIONS */
  .conditions { background: var(--forest); position: relative; overflow: hidden; }
  .conditions::before { content: ''; position: absolute; top: -20%; right: -10%; width: 50%; height: 140%; background: radial-gradient(ellipse, rgba(74,124,89,0.25) 0%, transparent 65%); pointer-events: none; }
  .conditions-inner { max-width: 1100px; margin: 0 auto; position: relative; z-index: 1; }
  .conditions h2 { color: var(--cream); margin-bottom: 0.5rem; }
  .conditions .section-tag { color: var(--gold-light); }
  .conditions-lead { color: rgba(245,240,232,0.65); font-size: 1rem; margin-bottom: 3rem; max-width: 500px; }
  .conditions-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1px; }
  .cond-item { background: rgba(255,255,255,0.04); padding: 1.6rem 1.8rem; border-left: 2px solid transparent; transition: border-color 0.3s, background 0.3s; }
  .cond-item:hover { border-left-color: var(--gold); background: rgba(255,255,255,0.08); }
  .cond-item span { font-size: 0.88rem; color: rgba(245,240,232,0.8); letter-spacing: 0.04em; display: flex; align-items: center; gap: 0.7rem; }
  .cond-item span::before { content: '◆'; color: var(--gold); font-size: 0.4rem; flex-shrink: 0; }

  /* BABIES */
  .babies { background: var(--cream); }
  .babies-inner { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
  .babies-visual { aspect-ratio: 4/3; overflow: hidden; }
  .babies-visual img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .babies h2 { color: var(--forest); margin-bottom: 1.2rem; }
  .babies p { font-size: 0.95rem; line-height: 1.9; color: var(--text-mid); margin-bottom: 1rem; }
  .babies-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.5rem; }
  .tag { background: var(--forest); color: var(--cream); font-size: 0.72rem; letter-spacing: 0.1em; padding: 0.4rem 0.9rem; font-weight: 400; }

  /* ABOUT */
  .about { background: var(--warm-white); }
  .about-inner { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: 320px 1fr; gap: 5rem; align-items: start; }
  .about-photo-wrap { position: relative; }
  .about-photo { width: 100%; aspect-ratio: 3/4; overflow: hidden; }
  .about-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
  .about-frame { position: absolute; top: 16px; left: 16px; right: -16px; bottom: -16px; border: 1px solid var(--gold); opacity: 0.4; pointer-events: none; z-index: -1; }
  .about-text h2 { color: var(--forest); margin-bottom: 1.5rem; }
  .about-text p { font-size: 0.95rem; line-height: 1.9; color: var(--text-mid); margin-bottom: 1rem; }
  .credentials { margin-top: 2rem; display: flex; flex-direction: column; gap: 0.6rem; }
  .credential { display: flex; align-items: center; gap: 0.8rem; font-size: 0.85rem; color: var(--text-mid); }
  .credential::before { content: ''; display: inline-block; width: 20px; height: 1px; background: var(--gold); flex-shrink: 0; }

  /* PRICING */
  .pricing { background: var(--forest); text-align: center; position: relative; overflow: hidden; padding: 6rem 2rem; }
  .pricing-inner { max-width: 800px; margin: 0 auto; position: relative; z-index: 1; }
  .pricing h2 { color: var(--cream); margin-bottom: 0.5rem; }
  .pricing .section-tag { color: var(--gold-light); }
  .price-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; margin: 3rem 0; }
  .price-card { background: rgba(255,255,255,0.05); padding: 3rem 2.5rem; text-align: center; transition: background 0.3s; }
  .price-card:hover { background: rgba(255,255,255,0.09); }
  .price-card.featured { background: var(--gold); }
  .price-card.featured:hover { background: var(--gold-light); }
  .price-label { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(245,240,232,0.55); margin-bottom: 1rem; }
  .price-card.featured .price-label { color: rgba(26,61,43,0.7); }
  .price-amount { font-family: 'Cormorant Garamond', serif; font-size: 3.5rem; font-weight: 300; color: var(--cream); line-height: 1; }
  .price-card.featured .price-amount { color: var(--forest); }
  .price-amount sub { font-size: 1.2rem; vertical-align: middle; margin-right: 2px; }
  .price-duration { font-size: 0.82rem; color: rgba(245,240,232,0.5); margin-top: 0.4rem; letter-spacing: 0.08em; }
  .price-card.featured .price-duration { color: rgba(26,61,43,0.6); }
  .price-note { margin-top: 1rem; font-size: 0.8rem; color: rgba(245,240,232,0.4); line-height: 1.5; }
  .price-card.featured .price-note { color: rgba(26,61,43,0.5); }

  /* LOCATIONS */
  .locations { background: var(--cream); text-align: center; }
  .locations-inner { max-width: 700px; margin: 0 auto; }
  .locations-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.8rem; margin: 2.5rem 0; }
  .loc-pill { border: 1px solid var(--forest); color: var(--forest); font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; padding: 0.6rem 1.4rem; transition: background 0.3s, color 0.3s; }
  .loc-pill:hover { background: var(--forest); color: var(--cream); }

  /* BOOKING */
  .booking { background: var(--warm-white); text-align: center; }
  .booking-inner { max-width: 600px; margin: 0 auto; }
  .booking p { color: var(--text-mid); font-size: 0.95rem; line-height: 1.8; margin-bottom: 2.5rem; }
  .phone-large { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 300; color: var(--forest); letter-spacing: 0.04em; display: block; margin-bottom: 2rem; text-decoration: none; transition: color 0.3s; }
  .phone-large:hover { color: var(--gold); }
  .booking-btns { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

  /* FOOTER */
  footer { background: var(--forest); padding: 3rem 2rem; text-align: center; }
  .footer-logo { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.4rem; color: var(--cream); margin-bottom: 1rem; }
  .footer-links { display: flex; justify-content: center; gap: 2rem; margin-bottom: 2rem; flex-wrap: wrap; list-style: none; }
  .footer-links a { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(245,240,232,0.45); text-decoration: none; transition: color 0.3s; }
  .footer-links a:hover { color: var(--gold-light); }
  .footer-copy { font-size: 0.72rem; color: rgba(245,240,232,0.25); }

  /* STICKY BAR */
  .sticky-bar { position: fixed; bottom: 0; left: 0; right: 0; background: var(--gold); padding: 0.8rem 2rem; display: flex; justify-content: center; align-items: center; gap: 1.2rem; z-index: 100; transform: translateY(100%); transition: transform 0.4s ease; flex-wrap: wrap; }
  .sticky-bar.visible { transform: translateY(0); }
  .sticky-bar span { font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--forest); font-weight: 500; }
  .sticky-call { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 500; color: var(--forest); text-decoration: none; }
  .sticky-btn { background: var(--forest); color: var(--cream) !important; font-family: 'Jost', sans-serif; font-weight: 500; font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.5rem 1.1rem; text-decoration: none; display: inline-flex; align-items: center; gap: 0.4rem; transition: background 0.3s; }
  .sticky-btn:hover { background: var(--forest-mid); }
  .sticky-wa { background: var(--whatsapp); color: #fff !important; font-family: 'Jost', sans-serif; font-weight: 500; font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.5rem 1.1rem; text-decoration: none; display: inline-flex; align-items: center; gap: 0.4rem; transition: background 0.3s; }
  .sticky-wa:hover { background: #1ebe5d; }
  .sticky-wa svg, .sticky-btn svg { width: 14px; height: 14px; fill: currentColor; flex-shrink: 0; }

  @media (max-width: 768px) {
    .how-grid, .services-grid, .intro-inner, .babies-inner, .about-inner, .price-cards { grid-template-columns: 1fr; }
    .nav-links { display: none; }
    nav { padding: 1.2rem 1.5rem; }
    section { padding: 4rem 1.5rem; }
    .intro-strip { padding: 3rem 1.5rem; }
  }
