/* ═══════════════════════════════════════════════════════════
   LUXURY PLANT MEDICINE — Global Styles
   ═══════════════════════════════════════════════════════════ */

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

:root {
  --display: 'Playfair Display', serif;
  --body: 'Outfit', sans-serif;
  --cream: #F3EFE7;
  --cream-light: #FAF8F4;
  --cream-mid: #EDEAE2;
  --gold: #B8975C;
  --gold-dark: #A07E48;
  --charcoal: #1A1A18;
  --charcoal-light: #2A261F;
  --text: #5A554A;
  --text-light: #9B9487;
  --text-muted: #B0A89A;
  --border: #E6E1D6;
  --border-light: #D4CEBF;
  --green: #8DB87A;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
::selection { background: var(--gold); color: var(--charcoal); }

html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: var(--body); }

/* ─── TYPOGRAPHY ──────────────────────────────────────────── */
.h-display { font-family: var(--display); }
.label {
  font-family: var(--body);
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
}
.section-title {
  font-family: var(--display);
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 400;
  color: var(--charcoal);
}
.section-sub {
  font-family: var(--body);
  font-size: 14px;
  color: var(--text-light);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ─── LAYOUT ──────────────────────────────────────────────── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section { padding: 72px 0; }
.section-head { text-align: center; margin-bottom: 48px; }
.section-head .label { margin-bottom: 10px; }
.section-head .section-title { margin-bottom: 10px; }

.grid-3 { display: grid; grid-template-columns: repeat(auto-fill, minmax(330px, 1fr)); gap: 22px; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 18px; }
.grid-dest { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 18px; }

/* ─── NAV ─────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 18px 28px;
  display: flex; justify-content: space-between; align-items: center;
  transition: all 0.35s ease;
}
.nav.scrolled {
  padding: 12px 28px;
  background: rgba(243,239,231,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  display: flex; align-items: center; gap: 10px; cursor: pointer;
}
.nav-logo-icon {
  width: 30px; height: 30px; background: var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; color: var(--charcoal); font-weight: 700;
}
.nav-logo-text {
  font-family: var(--display); font-size: 15px; font-weight: 600;
  color: var(--charcoal); letter-spacing: 0.5px;
}
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-link {
  font-size: 10.5px; letter-spacing: 1.8px; text-transform: uppercase;
  color: #6B6560; background: none; border: none; cursor: pointer;
  transition: color 0.25s; padding: 0;
}
.nav-link:hover, .nav-link.active { color: var(--gold); }
.nav-mobile-btn {
  display: none; background: none; border: none;
  font-size: 22px; cursor: pointer; color: var(--charcoal);
}
.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 1001;
  background: rgba(26,26,24,0.97); backdrop-filter: blur(20px);
  flex-direction: column; align-items: center; justify-content: center; gap: 28px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--body); font-size: 16px; letter-spacing: 3px;
  text-transform: uppercase; color: #F0EBE1;
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-mobile-btn { display: block; }
}

/* ─── BUTTONS ─────────────────────────────────────────────── */
.cta {
  display: inline-block;
  font-family: var(--body); font-size: 11px; font-weight: 500;
  letter-spacing: 2.5px; text-transform: uppercase;
  padding: 13px 30px; cursor: pointer;
  transition: all 0.35s; border-radius: 1px; border: none;
}
.cta-dark { background: var(--charcoal); color: #F0EBE1; }
.cta-dark:hover { background: var(--gold); color: var(--charcoal); }
.cta-gold { background: var(--gold); color: var(--charcoal); }
.cta-gold:hover { background: var(--gold-dark); }
.cta-outline {
  background: transparent; color: #F0EBE1;
  border: 1px solid rgba(240,235,225,0.3);
}
.cta-outline:hover { border-color: var(--gold); color: var(--gold); }

/* ─── PILLS / FILTERS ────────────────────────────────────── */
.pill {
  border: 1px solid var(--border-light); background: transparent; color: #6B6560;
  font-size: 11px; letter-spacing: 1px; text-transform: uppercase;
  padding: 7px 16px; cursor: pointer; transition: all 0.25s;
  border-radius: 1px; white-space: nowrap;
}
.pill:hover { border-color: #6B5D3F; color: var(--charcoal); }
.pill.active { background: var(--charcoal); border-color: var(--charcoal); color: #F0EBE1; }
.filter-label {
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--text-light); padding: 8px 0; margin-right: 6px;
}
.filters { display: flex; flex-direction: column; gap: 14px; align-items: center; margin-bottom: 36px; }
.filter-row { display: flex; gap: 6px; flex-wrap: wrap; justify-content: center; align-items: center; }

/* ─── RETREAT CARD ────────────────────────────────────────── */
.retreat-card {
  background: var(--cream-light); border: 1px solid var(--border);
  border-radius: 2px; overflow: hidden; cursor: pointer;
  transition: all 0.5s cubic-bezier(.23,1,.32,1);
}
.retreat-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.1); }
.retreat-card-img {
  position: relative; height: 200px; overflow: hidden;
}
.retreat-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.retreat-card:hover .retreat-card-img img { transform: scale(1.06); }
.retreat-card-badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--gold); color: var(--charcoal);
  font-size: 9px; letter-spacing: 2px; text-transform: uppercase;
  padding: 5px 12px; font-weight: 600;
}
.retreat-card-med {
  position: absolute; top: 14px; right: 14px;
  background: rgba(26,26,24,0.7); backdrop-filter: blur(6px);
  color: #D4C9A8; font-size: 10px; letter-spacing: 1.5px;
  padding: 5px 10px; text-transform: uppercase;
}
.retreat-card-body { padding: 20px 22px 16px; }
.retreat-card-header { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; margin-bottom: 6px; }
.retreat-card-name {
  font-family: var(--display); font-size: 20px; font-weight: 600;
  color: var(--charcoal); line-height: 1.2;
}
.retreat-card-price { font-family: var(--display); font-size: 19px; font-weight: 700; color: var(--charcoal); text-align: right; }
.retreat-card-price small { display: block; font-family: var(--body); font-size: 9px; color: var(--text-light); font-weight: 400; letter-spacing: 0.5px; }
.retreat-card-meta { font-size: 11px; color: #6B5D3F; letter-spacing: 0.5px; margin-bottom: 8px; }
.retreat-card-tag { font-size: 12.5px; color: var(--text); line-height: 1.55; margin-bottom: 12px; }
.retreat-card-rating { display: flex; align-items: center; gap: 6px; margin-bottom: 12px; }
.stars { color: var(--gold); font-size: 13px; letter-spacing: 2px; }
.rating-num { font-size: 11px; font-weight: 600; color: var(--charcoal); }
.rating-count { font-size: 10px; color: var(--text-light); }
.retreat-card-tags { display: flex; gap: 5px; flex-wrap: wrap; }
.tag {
  font-size: 9px; letter-spacing: 1.5px; text-transform: uppercase;
  color: #6B5D3F; border: 1px solid var(--border-light);
  padding: 4px 10px; border-radius: 1px;
}
.retreat-card-footer {
  border-top: 1px solid var(--border); padding: 12px 22px;
  display: flex; justify-content: space-between; align-items: center;
}
.retreat-card-footer .link {
  font-family: var(--display); font-size: 12.5px;
  color: #6B5D3F; font-style: italic;
}
.retreat-card-footer .book {
  font-size: 9px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); font-weight: 600;
}

/* ─── MEDICINE GUIDE CARD ─────────────────────────────────── */
.guide-card {
  border-radius: 2px; padding: 28px 26px; color: #F0EBE1;
  cursor: pointer; transition: all 0.5s cubic-bezier(.23,1,.32,1);
  position: relative; overflow: hidden;
}
.guide-card:hover { transform: translateY(-4px); }
.guide-card-circle {
  position: absolute; top: -20px; right: -20px;
  width: 100px; height: 100px; border-radius: 50%;
  background: rgba(255,255,255,0.04);
}
.guide-card-icon { font-size: 32px; margin-bottom: 12px; position: relative; }
.guide-card .label { opacity: 0.5; margin-bottom: 6px; color: currentColor; }
.guide-card h3 { font-family: var(--display); font-size: 26px; font-weight: 600; margin-bottom: 2px; }
.guide-card .subtitle { font-family: var(--display); font-size: 14px; font-style: italic; opacity: 0.6; margin-bottom: 14px; }
.guide-card p { font-size: 12.5px; line-height: 1.6; opacity: 0.8; margin-bottom: 18px; }
.guide-card-meta {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
  border-top: 1px solid rgba(255,255,255,0.12); padding-top: 14px;
}
.guide-card-meta .meta-label { font-size: 8px; letter-spacing: 2px; text-transform: uppercase; opacity: 0.4; margin-bottom: 3px; }
.guide-card-meta .meta-value { font-size: 11.5px; }
.guide-card-link { margin-top: 16px; font-family: var(--display); font-size: 12px; font-style: italic; opacity: 0.6; }

/* ─── DESTINATION CARD ────────────────────────────────────── */
.dest-card {
  position: relative; border-radius: 2px; overflow: hidden;
  height: 280px; cursor: pointer;
}
.dest-card img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; transition: transform 0.6s ease;
}
.dest-card:hover img { transform: scale(1.05); }
.dest-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(transparent 30%, rgba(26,26,24,0.85));
}
.dest-card-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 24px; }
.dest-card-count { font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.dest-card h3 { font-family: var(--display); font-size: 26px; font-weight: 600; color: #F0EBE1; margin-bottom: 6px; }
.dest-card p { font-size: 12px; color: rgba(240,235,225,0.65); line-height: 1.5; margin-bottom: 8px; }
.dest-card .legal { font-size: 10px; color: var(--green); letter-spacing: 0.3px; }

/* ─── HERO ────────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center; text-align: center;
  padding: 120px 24px 80px;
  background: linear-gradient(165deg, #1A1A18 0%, #2A261F 35%, #332C22 65%, #1A1A18 100%);
  overflow: hidden;
}
.hero-glow {
  position: absolute; border-radius: 50%;
  background: radial-gradient(circle, rgba(184,151,92,0.07) 0%, transparent 70%);
  animation: glow 7s ease-in-out infinite;
}
.hero-glow-1 { top: 15%; left: 8%; width: 350px; height: 350px; }
.hero-glow-2 { bottom: 12%; right: 6%; width: 250px; height: 250px; animation-delay: 3s; animation-duration: 9s; }

.hero .label { margin-bottom: 28px; }
.hero h1 {
  font-family: var(--display); font-size: clamp(34px, 6.5vw, 76px);
  font-weight: 300; color: #F0EBE1; line-height: 1.08;
  max-width: 860px; margin-bottom: 22px;
}
.hero h1 em { font-style: italic; color: var(--gold); }
.hero .hero-sub {
  font-size: clamp(13px, 1.6vw, 16px); color: rgba(240,235,225,0.5);
  line-height: 1.7; max-width: 560px; margin-bottom: 44px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.hero-categories {
  margin-top: 72px; display: flex; gap: 24px;
  flex-wrap: wrap; justify-content: center;
}
.hero-cat {
  text-align: center; padding: 0 8px; cursor: pointer;
  transition: transform 0.3s;
}
.hero-cat:hover { transform: translateY(-3px); }
.hero-cat-icon { font-size: 28px; margin-bottom: 6px; }
.hero-cat-name { font-family: var(--display); font-size: 15px; color: #F0EBE1; margin-bottom: 2px; }
.hero-cat-dur { font-size: 10px; color: rgba(240,235,225,0.35); letter-spacing: 0.5px; }

/* ─── MARQUEE ─────────────────────────────────────────────── */
.marquee-wrap {
  background: var(--charcoal); padding: 14px 0; overflow: hidden;
  border-top: 1px solid rgba(184,151,92,0.12);
  border-bottom: 1px solid rgba(184,151,92,0.12);
}
.marquee-track { display: flex; animation: marqueeScroll 35s linear infinite; white-space: nowrap; }
.marquee-item {
  font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--gold); white-space: nowrap; opacity: 0.6;
  padding: 0 20px;
}

/* ─── QUIZ CTA BANNER ─────────────────────────────────────── */
.quiz-banner {
  background: linear-gradient(135deg, #2D5016 0%, #1A3848 50%, #3D2860 100%);
  padding: 72px 24px; text-align: center; position: relative; overflow: hidden;
}
.quiz-banner-icon { font-size: 42px; margin-bottom: 16px; }
.quiz-banner h2 {
  font-family: var(--display); font-size: clamp(24px, 4vw, 38px);
  font-weight: 400; color: #F0EBE1; margin-bottom: 12px;
}
.quiz-banner p {
  font-size: 14px; color: rgba(240,235,225,0.55);
  line-height: 1.6; margin-bottom: 32px; max-width: 600px; margin-left: auto; margin-right: auto;
}

/* ─── HOW IT WORKS ────────────────────────────────────────── */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 28px; }
.step-num { font-family: var(--display); font-size: 44px; font-weight: 300; color: var(--gold); line-height: 1; margin-bottom: 14px; }
.step-title { font-family: var(--display); font-size: 20px; font-weight: 600; color: var(--charcoal); margin-bottom: 8px; }
.step-desc { font-size: 13px; color: #6B6560; line-height: 1.6; }

/* ─── NEWSLETTER ──────────────────────────────────────────── */
.newsletter { padding: 72px 24px; text-align: center; }
.newsletter.dark { background: var(--charcoal); }
.newsletter.light { background: var(--cream-mid); }
.newsletter .section-title { color: inherit; }
.newsletter.dark .section-title { color: #F0EBE1; }
.newsletter p { max-width: 540px; margin: 0 auto 28px; }
.newsletter.dark p { color: rgba(240,235,225,0.45); }
.newsletter-form { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.email-input {
  background: transparent; border: 1px solid var(--border-light);
  padding: 12px 18px; font-family: var(--body); font-size: 14px;
  color: var(--charcoal); outline: none; width: 100%; max-width: 340px;
  border-radius: 1px; transition: border-color 0.3s;
}
.email-input:focus { border-color: var(--gold); }
.email-input::placeholder { color: var(--text-muted); }
.newsletter.dark .email-input {
  background: rgba(240,235,225,0.05);
  border-color: rgba(240,235,225,0.12);
  color: #F0EBE1;
}
.newsletter-fine { font-size: 10px; margin-top: 14px; }
.newsletter.dark .newsletter-fine { color: rgba(240,235,225,0.2); }
.newsletter.light .newsletter-fine { color: #C4BFB3; }

/* ─── QUIZ PAGE ───────────────────────────────────────────── */
.quiz-progress {
  width: 100%; height: 3px; background: var(--border);
  border-radius: 2px; margin-top: 16px; overflow: hidden;
}
.quiz-progress-bar { height: 100%; background: var(--gold); border-radius: 2px; transition: width 0.4s ease; }
.quiz-option {
  display: block; width: 100%; text-align: left;
  padding: 18px 22px; background: var(--cream-light);
  border: 1px solid var(--border); border-radius: 2px;
  font-family: var(--body); font-size: 15px; color: var(--charcoal);
  cursor: pointer; transition: all 0.25s; margin-bottom: 10px;
}
.quiz-option:hover { background: var(--charcoal); color: #F0EBE1; border-color: var(--charcoal); }

/* ─── CONTENT PAGE (ABOUT / GUIDES) ──────────────────────── */
.content-page { padding-top: 100px; }
.content-body {
  max-width: 760px; margin: 0 auto; padding: 40px 24px 72px;
  font-size: 15px; color: var(--text); line-height: 1.8;
}
.content-body p { margin-bottom: 18px; }
.content-body h3 {
  font-family: var(--display); font-size: 22px; font-weight: 500;
  color: var(--charcoal); margin: 36px 0 14px;
}
.content-body .gold { color: var(--gold); }
.safety-box {
  background: var(--cream-light); border: 1px solid var(--border);
  border-radius: 2px; padding: 40px 36px; margin-top: 56px;
}
.safety-box h3 { margin-top: 0; }

/* ─── FOOTER ──────────────────────────────────────────────── */
.footer { background: #141412; padding: 56px 24px 36px; }
.footer-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 36px; margin-bottom: 44px;
}
.footer-brand { font-family: var(--display); font-size: 16px; font-weight: 600; color: #F0EBE1; letter-spacing: 1px; margin-bottom: 12px; }
.footer-brand-sub { font-size: 11.5px; color: rgba(240,235,225,0.3); line-height: 1.6; }
.footer-col-title { font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.footer-link {
  display: block; font-size: 12.5px; color: rgba(240,235,225,0.35);
  margin-bottom: 9px; transition: color 0.25s;
}
.footer-link:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(240,235,225,0.06); padding-top: 20px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.footer-small { font-size: 10px; color: rgba(240,235,225,0.18); }

/* ─── ANIMATIONS ──────────────────────────────────────────── */
@keyframes glow { 0%,100%{opacity:0.3} 50%{opacity:0.7} }
@keyframes marqueeScroll { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
@keyframes fadeUp { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }

.anim { opacity: 0; transform: translateY(20px); transition: all 0.6s ease; }
.anim.visible { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 768px) {
  .hero h1 { font-size: 36px; }
  .grid-3, .grid-4, .grid-dest { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-categories { gap: 16px; }
}
@media (max-width: 480px) {
  .steps-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}
