@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --emerald-deep: #0d3b2e;
  --emerald: #1a5d47;
  --emerald-light: #2d8060;
  --gold: #e1b768;
  --gold-deep: #a8853f;
  --cream: #f6f1e7;
  --cream-soft: #fbf8f1;
  --bg: #ffffff;
  --fg: #1a1a1a;
  --muted: #6b6b6b;
  --border: #e6e1d5;
  --shadow-luxury: 0 30px 60px -20px rgba(13,59,46,.35), 0 10px 25px -10px rgba(168,133,63,.25);
  --shadow-soft: 0 10px 30px -12px rgba(0,0,0,.12);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { overflow-x: hidden; max-width: 100%; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.font-display { font-family: 'Cormorant Garamond', serif; font-weight: 500; letter-spacing: -0.01em; }
.italic { font-style: italic; }
.uppercase { text-transform: uppercase; }
.tracking-wider { letter-spacing: .15em; }
.tracking-widest { letter-spacing: .25em; }
.tracking-huge { letter-spacing: .3em; }

.text-gradient-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.bg-hero {
  background: linear-gradient(135deg, var(--emerald-deep) 0%, var(--emerald) 60%, #082a20 100%);
}
.shadow-luxury { box-shadow: var(--shadow-luxury); }
.shadow-soft { box-shadow: var(--shadow-soft); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.container-narrow { max-width: 720px; margin: 0 auto; padding: 0 1.5rem; }

/* NAV */
.nav {
  position: absolute; top: 0; left: 0; right: 0; z-index: 30;
}
.nav-inner {
  max-width: 1280px; margin: 0 auto; padding: 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
}
.logo { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; letter-spacing: .25em; color: var(--cream); }
.nav-link { color: rgba(246,241,231,.8); font-size: .85rem; letter-spacing: .15em; text-transform: uppercase; }
.nav-link:hover { color: var(--cream); }

/* HERO */
.hero { position: relative; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; opacity: .3; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, var(--emerald-deep), rgba(13,59,46,.7), transparent);
}
.hero-inner {
  position: relative; max-width: 1280px; margin: 0 auto;
  padding: 10rem 20rem 8rem; color: var(--cream);
}
.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .4rem 1rem; border: 1px solid rgba(212,175,106,.4);
  border-radius: 999px; font-size: .7rem; letter-spacing: .25em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 2rem;
}
.eyebrow-light { color: var(--gold-deep); border: none; padding: 0; font-size: 1rem; letter-spacing: .3em; text-transform: uppercase; margin-bottom: 1.5rem; display: block; }
.hero h1 { font-family: 'Cormorant Garamond', serif; font-weight: 500; font-size: clamp(2.5rem, 6vw, 4.5rem); line-height: 1.05; margin-bottom: 2rem; max-width: 720px; color: #ffffff; }
.hero p { font-size: 1.1rem; color: rgba(246,241,231,.8); max-width: 560px; margin-bottom: 2.5rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; }
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 1rem 2rem; font-size: .85rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; border-radius: 2px; transition: all .25s; cursor: pointer; border: none; }
.btn-gold { background: linear-gradient(to right, var(--gold), var(--gold-deep)); color: var(--emerald-deep); box-shadow: var(--shadow-luxury); }
.btn-gold:hover { opacity: .9; }
.btn-outline { border: 1px solid rgba(246,241,231,.3); color: var(--cream); background: transparent; }
.btn-outline:hover { background: rgba(246,241,231,.05); }
.hero-trust { margin-top: 3rem; display: flex; gap: 2rem; color: rgba(246,241,231,.6); font-size: .7rem; letter-spacing: .25em; text-transform: uppercase; flex-wrap: wrap; }
.hero-trust span { display: inline-flex; align-items: center; gap: .5rem; }
.dot-gold { width: 6px; height: 6px; background: var(--gold); border-radius: 999px; }

/* SECTIONS */
section { padding: 7rem 2.5rem; }
.section-head { text-align: center; max-width: 800px; margin: 0 auto 4rem; }
.section-head h2 { font-family: 'Cormorant Garamond', serif; font-weight: 500; font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1.5rem; line-height: 1.15; }
.section-head p { color: var(--muted); font-size: 1.1rem; }

/* WHY */
.why-grid { max-width: 1200px; margin: 5rem auto 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2rem; }
.feature-card { padding: 2rem; background: #fff; border: 1px solid var(--border); border-radius: 2px; transition: box-shadow .25s; }
.feature-card:hover { box-shadow: var(--shadow-soft); }
.feature-card .icon { color: var(--emerald); font-size: 2rem; margin-bottom: 1rem; }
.feature-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; margin-bottom: .5rem; }
.feature-card p { font-size: 1.2rem; color: var(--muted); }

/* HERB */
.herb { background: var(--emerald-deep); color: var(--cream); }
.herb-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.herb-grid img { height: 480px; width: 100%; object-fit: cover; border-radius: 2px; box-shadow: var(--shadow-luxury); }
.herb h2 { font-family: 'Cormorant Garamond', serif; font-weight: 500; font-size: clamp(2rem, 4vw, 3rem); color: var(--cream); margin-bottom: 1.5rem; line-height: 1.15; }
.herb .gold-eyebrow { color: var(--gold); font-size: 1rem; letter-spacing: .3em; text-transform: uppercase; margin-bottom: 1.5rem; display: block; }
.herb p { color: rgba(246,241,231,.75); font-size: 1.3rem; margin-bottom: 1.5rem; }
.herb ul li { display: flex; gap: .75rem; padding: .35rem 0; color: rgba(246,241,231,.85); }
.herb ul li::before { content: "✓"; color: var(--gold); font-weight: 700; }

/* PROFESSOR / TEAM */
.cream-bg { background: var(--cream); }
.team-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; }
.team-card { background: #fff; border: 1px solid var(--border); border-radius: 2px; box-shadow: var(--shadow-soft); overflow: hidden; }
.team-card img { width: 100%; height: 520px; object-fit: scale-down; }
.team-card .body { padding: 2rem; }
.team-card .body h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; margin-bottom: .75rem; }
.team-card .body p { color: var(--muted); }
.team-card .tag { font-size: .7rem; letter-spacing: .25em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: .5rem; }

/* TESTIMONIALS */
.testi-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 2rem; }
.testi { background: #fff; border: 1px solid var(--border); border-radius: 2px; padding: 2rem; box-shadow: var(--shadow-soft); display: flex; flex-direction: column; }
.testi .stars { color: var(--gold); margin-bottom: 1rem; letter-spacing: .15em; }
.testi blockquote { font-style: italic; color: rgba(26,26,26,.85); flex: 1; }
.testi figcaption { margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid var(--border); display: flex; align-items: center; gap: 1rem; }
.testi figcaption img { width: 56px; height: 56px; border-radius: 999px; object-fit: cover; }
.testi figcaption .name { font-weight: 600; }
.testi figcaption .city { font-size: .7rem; letter-spacing: .15em; text-transform: uppercase; color: var(--muted); }

/* PACKAGES */
.pkg-section { background: var(--emerald-deep); color: var(--cream); }
.pkg-section h2 { color: var(--cream); }
.pkg-section .section-head p { color: rgba(246,241,231,.7); }
.pkg-section .gold-eyebrow { color: var(--gold); }
.pkg-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; align-items: stretch; }
.pkg { position: relative; border-radius: 2px; overflow: hidden; background: var(--emerald); border: 1px solid rgba(246,241,231,.15); display: flex; flex-direction: column; }
.pkg.featured { background: var(--cream); color: var(--fg); border: none; outline: 2px solid var(--gold); transform: translateY(-8px); box-shadow: var(--shadow-luxury); }
.pkg img { width: 100%; height: 240px; object-fit: cover; }
.pkg .body { padding: 2rem; flex: 1; display: flex; flex-direction: column; }
.pkg .pkg-tag { font-size: .7rem; letter-spacing: .3em; text-transform: uppercase; color: var(--gold); margin-bottom: .5rem; }
.pkg.featured .pkg-tag { color: var(--gold-deep); }
.pkg h3 { font-family: 'Cormorant Garamond', serif; font-size: 2rem; margin-bottom: .25rem; color:#a9a9a9; }
.pkg .price { font-family: 'Cormorant Garamond', serif; font-size: 3rem; line-height: 1; margin-bottom: 1rem; }
.pkg .desc { color: rgba(246,241,231,.7); margin-bottom: 1.5rem; }
.pkg.featured .desc { color: var(--muted); }
.pkg ul { margin-bottom: 2rem; }
.pkg ul li { display: flex; gap: .5rem; font-size: .9rem; padding: .25rem 0; }
.pkg ul li::before { content: "✓"; color: var(--gold); }
.pkg.featured ul li::before { color: var(--emerald); }
.pkg .badge-best { position: absolute; top: 1rem; right: 1rem; background: var(--gold); color: var(--emerald-deep); padding: .35rem .75rem; font-size: .65rem; letter-spacing: .2em; text-transform: uppercase; font-weight: 700; }
.pkg .pkg-cta { display: block; text-align: center; padding: 1rem; font-size: .75rem; letter-spacing: .25em; text-transform: uppercase; font-weight: 600; transition: opacity .25s; margin-top: auto; }
.pkg .pkg-cta-gold { background: linear-gradient(to right, var(--gold), var(--gold-deep)); color: var(--emerald-deep); }
.pkg .pkg-cta-outline { border: 1px solid rgba(246,241,231,.4); color: var(--cream); }
.pkg .pkg-cta:hover { opacity: .9; }

/* FAQ */
.faq { background: var(--cream); }
.faq-item { background: #fff; border: 1px solid var(--border); border-radius: 2px; margin-bottom: .75rem; padding: 0 1.5rem; }
.faq-item summary { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; padding: 1.25rem 0; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.5rem; color: var(--gold-deep); transition: transform .25s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .answer { color: var(--muted); padding: 0 0 1.25rem; line-height: 1.7; }

/* FINAL CTA */
.final-cta { color: var(--cream); text-align: center; }
.final-cta h2 { color: var(--cream); font-family: 'Cormorant Garamond', serif; font-weight: 500; font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1.5rem; }
.final-cta p { color: rgba(246,241,231,.75); margin-bottom: 2.5rem; font-size: 1.1rem; }

/* FOOTER */
footer { background: var(--emerald-deep); color: rgba(246,241,231,.6); padding: 3rem 1.5rem; font-size: .9rem; }
footer .container { max-width: 1100px; }
footer .logo { margin-bottom: 1rem; }
footer p { max-width: 800px; line-height: 1.7; margin-bottom: 1.5rem; }
footer strong { color: rgba(246,241,231,.85); }
footer .copyright { font-size: .75rem; letter-spacing: .15em; }

/* WHATSAPP FLOAT */
.wa-float { position: fixed; bottom: 1.5rem; right: 1.5rem; background: #25D366; color: #fff; width: 56px; height: 56px; border-radius: 999px; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; box-shadow: 0 8px 24px rgba(0,0,0,.25); z-index: 50; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero-inner { padding: 9rem 1.5rem 6rem; }
  .herb-grid { gap: 2.5rem; }
  .herb-grid img, .team-card img { height: 420px; }
  .pkg img { height: 220px; }
}

@media (max-width: 768px) {
  section { padding: 4rem 1.25rem; }
  .container, .container-narrow { padding: 0 1.25rem; }
  .nav-inner { padding: 1.25rem; }
  .logo { font-size: 1.25rem; letter-spacing: .2em; }
  .nav-link { font-size: .75rem; }

  .hero-inner { padding: 4rem 1rem 4.5rem; }
  .hero-bg { opacity: .25; }
  .hero h1 { font-size: clamp(2rem, 9vw, 3rem); margin-bottom: 1.5rem; }
  .hero p { font-size: 1.3rem; margin-bottom: 2rem; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; padding: .95rem 1.25rem; font-size: .8rem; }
  .hero-trust { margin-top: 1.5rem; gap: 1.25rem; font-size: .65rem; }

  .section-head { margin-bottom: 2.5rem; }
  .section-head h2 { font-size: clamp(1.7rem, 6vw, 2.25rem); }
  .section-head p { font-size: 1.3rem; }

  .why-grid { grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2.5rem; }
  .feature-card { padding: 1.25rem; }
  .feature-card h3 { font-size: 1.5rem; }

  .herb-grid, .team-grid { grid-template-columns: 1fr; gap: 2rem; }
  .herb-grid img, .team-card img { height: 280px; }
  .herb h2 { font-size: clamp(1.7rem, 6vw, 2.25rem); }
  .team-card .body { padding: 1.5rem; }
  .team-card .body h3 { font-size: 1.35rem; }

  .testi-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .testi { padding: 1.5rem; }

  .pkg-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .pkg.featured { transform: none; }
  .pkg img { height: 200px; }
  .pkg .body { padding: 1.5rem; }
  .pkg h3 { font-size: 1.5rem; }
  .pkg .price { font-size: 2.4rem; }

  .faq-item { padding: 0 1.1rem; }
  .faq-item summary { font-size: 1.2rem; padding: 1rem 0; }

  .final-cta p { font-size: 1rem; margin-bottom: 1.75rem; }

  footer { padding: 2.5rem 1.25rem; }
  footer p { font-size: .85rem; }

  .wa-float { width: 52px; height: 52px; bottom: 1rem; right: 1rem; font-size: 1.4rem; }
}

@media (max-width: 420px) {
  .why-grid { grid-template-columns: 1fr; }
  .hero-trust { flex-direction: column; gap: .75rem; }
}
