/* ibogaretreat.ro — shared stylesheet for spoke (content) pages.
   Design tokens & components mirror the one-pager (index.html). Mobile-first. */
@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=Inter:wght@300;400;500;600&display=swap');

:root {
  --gold:#3E5B4A; --gold-l:#CBA24C; --dark:#1B2A20; --mid:#565049;
  --light:#6F6857; --border:#E5DBC8; --cream:#F7F3EA; --cream2:#EFE7D6;
}
* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body { font-family:'Inter',sans-serif; color:var(--dark); background:var(--cream); line-height:1.6; overflow-x:hidden; font-feature-settings:"lnum" 1,"kern" 1; -webkit-font-smoothing:antialiased; }
.serif { font-family:'Cormorant Garamond',serif; }
em { color:var(--gold); font-style:italic; }
a { color:var(--gold); }
.wrap { max-width:1080px; margin:0 auto; padding:0 28px; }
.prose-wrap { max-width:820px; margin:0 auto; padding:0 28px; }
img { max-width:100%; }

/* ── HEADER (floating rounded glass pill — matches homepage) ── */
header {
  position:fixed; top:12px; left:12px; right:12px; margin-inline:auto; max-width:1080px; z-index:50;
  display:flex; align-items:center; justify-content:space-between; gap:18px;
  padding:11px 18px; border-radius:22px;
  border:1px solid rgba(255,255,255,0.12);
  box-shadow:0 10px 34px rgba(0,0,0,0.20);
}
/* glass on ::before so the header's own text stays sharp on iOS (backdrop-filter on the text element blurs it there) */
header::before {
  content:''; position:absolute; inset:0; z-index:-1; border-radius:inherit;
  background:rgba(27,42,32,0.55);
  -webkit-backdrop-filter:blur(18px) saturate(160%); backdrop-filter:blur(18px) saturate(160%);
}
.brand { display:inline-flex; align-items:center; gap:9px; font-family:'Cormorant Garamond',serif; font-size:21px; font-weight:500; color:#fff; letter-spacing:0.5px; text-decoration:none; }
.brand .leaf { flex:none; width:22px; height:22px; color:var(--gold-l); }
.brand span { color:var(--gold-l); }
.nav-right { display:flex; align-items:center; gap:14px; }
.nav-links { display:flex; align-items:center; gap:26px; margin-left:auto; }
.nav-links a { display:inline-flex; align-items:center; color:rgba(255,255,255,0.85); font-size:13px; font-weight:500; letter-spacing:.3px; text-decoration:none; white-space:nowrap; transition:color .2s; }
.nav-links a:hover, .nav-links a.active { color:var(--gold-l); }
.nav-toggle { display:none; background:none; border:none; color:#fff; cursor:pointer; padding:4px; }
.nav-toggle svg { width:26px; height:26px; }
.nav-scrim { position:fixed; inset:0; background:rgba(0,0,0,0.5); opacity:0; pointer-events:none; transition:opacity .3s; z-index:45; }
.nav-scrim.open { opacity:1; pointer-events:auto; }
.header-cta { background:var(--gold); color:#fff; border:none; padding:11px 22px; border-radius:50px; font-family:'Inter',sans-serif; font-size:13px; font-weight:500; text-decoration:none; cursor:pointer; transition:all .25s; white-space:nowrap; }
.header-cta:hover { background:#324B3C; transform:translateY(-2px); }
.lang { display:flex; gap:2px; background:rgba(255,255,255,0.12); border-radius:30px; padding:3px; }
.lang a { border:none; background:transparent; color:rgba(255,255,255,0.7); font-size:12px; font-weight:500; padding:6px 14px; border-radius:26px; cursor:pointer; text-decoration:none; transition:all .2s; }
.lang a.active { background:var(--gold); color:#fff; }

/* ── PAGE HERO ── */
.page-hero { background:var(--cream2); border-bottom:1px solid var(--border); padding:120px 0 56px; }
.breadcrumb { font-size:12px; letter-spacing:.5px; color:var(--light); margin-bottom:18px; }
.breadcrumb a { color:var(--gold); text-decoration:none; }
.breadcrumb a:hover { text-decoration:underline; }
.page-eyebrow { font-size:11px; font-weight:600; letter-spacing:3px; text-transform:uppercase; color:var(--gold); margin-bottom:14px; }
.page-hero h1 { font-family:'Cormorant Garamond',serif; font-weight:400; font-size:clamp(32px,5.5vw,54px); line-height:1.12; color:var(--dark); max-width:760px; }
.page-hero .lead { font-size:18px; font-weight:300; color:var(--mid); max-width:720px; margin-top:20px; }
.hero-cta { display:inline-flex; align-items:center; gap:8px; margin-top:28px; background:var(--gold); color:#fff; padding:14px 28px; border-radius:50px; font-size:14.5px; font-weight:500; text-decoration:none; transition:all .25s; }
.hero-cta:hover { background:#324B3C; transform:translateY(-2px); }

/* image hero variant (full-bleed photo + overlay, white text — mirrors homepage hero) */
.page-hero.has-img { position:relative; background:#16231B center/cover no-repeat; border-bottom:none; padding:150px 0 64px; }
.page-hero.has-img::after { content:''; position:absolute; inset:0; background:linear-gradient(180deg, rgba(27,42,32,.5) 0%, rgba(27,42,32,.62) 55%, rgba(27,42,32,.82) 100%); }
.page-hero.has-img .wrap { position:relative; z-index:2; }
.page-hero.has-img .breadcrumb, .page-hero.has-img .breadcrumb a { color:rgba(255,255,255,.82); }
.page-hero.has-img .page-eyebrow { color:var(--gold-l); }
.page-hero.has-img h1 { color:#fff; }
.page-hero.has-img .lead { color:rgba(255,255,255,.92); }

/* media block: image + text side by side (stacks on mobile) */
.media { display:grid; grid-template-columns:1.02fr 1fr; gap:44px; align-items:center; margin:14px 0; }
.media.rev .media-txt { order:2; }
.media-img { border-radius:16px; overflow:hidden; box-shadow:0 20px 50px rgba(0,0,0,.16); aspect-ratio:4/3; }
.media-img img { width:100%; height:100%; object-fit:cover; display:block; }
.media-txt h2 { margin-top:0; }

/* photo strip: row of images */
.photo-strip { display:grid; grid-template-columns:repeat(3,1fr); gap:14px; margin:30px 0; }
.photo-strip img { width:100%; aspect-ratio:4/3; object-fit:cover; border-radius:12px; display:block; }
.photo-figure { margin:30px 0; }
.photo-figure img { width:100%; border-radius:16px; display:block; box-shadow:0 20px 50px rgba(0,0,0,.14); max-height:420px; object-fit:cover; }
.photo-figure figcaption { font-size:13px; color:var(--light); text-align:center; margin-top:12px; font-style:italic; }
/* transparent line-art (botanical sketch): sits on the cream, no card framing */
.photo-figure.sketch img { width:auto; max-width:100%; max-height:460px; margin:0 auto; object-fit:contain; border-radius:0; box-shadow:none; }

/* ── CONTENT ── */
.section { padding:64px 0; }
.section.alt { background:var(--cream2); }
.prose h2 { font-family:'Cormorant Garamond',serif; font-weight:500; font-size:clamp(26px,3.6vw,36px); line-height:1.2; color:var(--dark); margin:8px 0 18px; }
.prose h3 { font-family:'Cormorant Garamond',serif; font-weight:600; font-size:22px; color:var(--dark); margin:30px 0 10px; }
.prose p { font-size:16.5px; font-weight:300; color:var(--mid); margin-bottom:18px; max-width:720px; }
.prose ul, .prose ol { margin:0 0 22px 0; padding-left:0; list-style:none; max-width:720px; }
.prose li { position:relative; font-size:16px; font-weight:300; color:var(--mid); padding:0 0 11px 26px; line-height:1.6; }
.prose li::before { content:''; position:absolute; left:4px; top:11px; width:6px; height:6px; border-radius:50%; background:var(--gold-l); }
.prose strong, .prose b { font-weight:600; color:var(--dark); }
.prose a { color:var(--gold); text-decoration:underline; text-underline-offset:2px; }
.prose .note { font-size:14px; color:var(--light); font-style:italic; }

/* numbered "chapter" steps — big serif numerals instead of bullets (like a chapter opener) */
.prose ol.steps { counter-reset:step; margin-top:26px; }
.prose ol.steps li { counter-increment:step; padding:3px 0 20px 62px; margin-bottom:18px; border-bottom:1px solid var(--border); min-height:46px; }
.prose ol.steps li:last-child { border-bottom:none; margin-bottom:0; padding-bottom:0; }
.prose ol.steps li::before {
  content:counter(step); left:0; top:-6px;
  width:46px; height:auto; border-radius:0; background:none;
  font-family:'Cormorant Garamond',serif; font-weight:500; font-size:48px; line-height:1;
  color:var(--gold-l); text-align:left;
}

/* card grid */
.cards { display:grid; grid-template-columns:repeat(auto-fit,minmax(240px,1fr)); gap:20px; margin:26px 0; }
.card { background:var(--cream); border:1px solid var(--border); border-radius:14px; padding:26px 24px; }
.card .k { font-family:'Cormorant Garamond',serif; font-size:20px; font-weight:600; color:var(--dark); margin-bottom:6px; }
.card p { font-size:14.5px; font-weight:300; color:var(--mid); margin:0; }
.card .big { font-family:'Cormorant Garamond',serif; font-size:40px; font-weight:500; color:var(--gold-l); line-height:1; }

/* research source rows */
.src-row { display:flex; flex-direction:column; gap:6px; padding:22px 0; border-top:1px solid var(--border); }
.src-tag { font-size:10px; font-weight:600; letter-spacing:1.5px; text-transform:uppercase; color:var(--gold); }
.src-row h3 { margin:0; }
.src-row a { color:var(--gold); font-weight:500; font-size:14px; text-decoration:none; }
.src-row a:hover { text-decoration:underline; }

/* FAQ */
.faq-item { border-bottom:1px solid var(--border); padding:22px 0; }
.faq-item h3 { font-family:'Cormorant Garamond',serif; font-weight:600; font-size:21px; color:var(--dark); margin:0 0 8px; }
.faq-item p { font-size:16px; font-weight:300; color:var(--mid); margin:0 0 8px; }

/* callout */
.callout { background:linear-gradient(135deg,#16231B,#223019); border:1px solid rgba(203,162,76,0.35); border-radius:16px; padding:28px 32px; margin:30px 0; color:rgba(255,255,255,0.9); }
.callout .badge { font-size:13px; font-weight:700; letter-spacing:2px; text-transform:uppercase; color:var(--gold-l); margin-bottom:10px; }
.callout p { color:rgba(255,255,255,0.9); font-weight:300; margin:0; }
.callout a { color:var(--gold-l); }

/* ── CTA BAND ── */
.cta-band { background:var(--dark); color:#fff; text-align:center; padding:66px 28px; }
.cta-band h2 { font-family:'Cormorant Garamond',serif; font-weight:400; font-size:clamp(28px,4vw,42px); margin-bottom:14px; color:#fff; }
.cta-band p { font-size:16px; font-weight:300; color:rgba(255,255,255,0.8); max-width:560px; margin:0 auto 28px; }
.btn-gold { display:inline-flex; align-items:center; gap:8px; background:var(--gold); color:#fff; padding:16px 34px; border-radius:50px; font-size:15px; font-weight:500; text-decoration:none; transition:all .25s; }
.btn-gold:hover { background:#324B3C; transform:translateY(-2px); }
.cta-band .sub { font-size:13px; color:rgba(255,255,255,0.55); margin-top:16px; }

/* related links */
.related { display:flex; flex-wrap:wrap; gap:12px; margin-top:8px; }
.related a { background:var(--cream); border:1px solid var(--border); border-radius:50px; padding:9px 18px; font-size:13.5px; color:var(--dark); text-decoration:none; transition:all .2s; }
.related a:hover { border-color:var(--gold-l); color:var(--gold); }

/* ── FOOTER ── */
footer { background:var(--dark); color:rgba(255,255,255,0.6); padding:40px 0; text-align:center; font-size:13px; font-weight:300; }
footer a { color:var(--gold-l); text-decoration:none; }
footer .fbrand { font-family:'Cormorant Garamond',serif; font-size:18px; color:#fff; margin-bottom:8px; }
.disclaimer { font-size:11px; color:var(--light); max-width:720px; margin:22px auto 0; text-align:center; line-height:1.6; }

/* ── MOBILE ── */
@media (max-width:640px) {
  .page-hero { padding:100px 0 42px; }
  .section { padding:48px 0; }
  header { top:10px; left:10px; right:10px; padding:9px 12px; gap:8px; }
  .brand { font-size:18px; gap:7px; }
  .brand .leaf { width:19px; height:19px; }
  .nav-right { gap:8px; }
  .lang a { padding:5px 10px; font-size:11px; }
  .header-cta { padding:9px 14px; font-size:11.5px; }
  .prose p, .prose li { font-size:16px; }
  .prose ol.steps li { padding-left:52px; min-height:40px; }
  .prose ol.steps li::before { width:40px; font-size:40px; top:-4px; }
}
@media (max-width:400px) {
  header { padding:8px 11px; }
  .brand { font-size:16px; gap:6px; }
  .brand .leaf { width:18px; height:18px; }
  .nav-right { gap:6px; }
  .lang a { padding:5px 8px; font-size:10.5px; }
  .header-cta { padding:8px 11px; font-size:11px; }
}

/* ── MENIU MOBIL (burger + drawer) — identic cu homepage-ul ── */
@media (max-width:960px) {
  .nav-links { position:fixed; top:0; right:0; height:100dvh; width:min(80vw,320px); background:rgba(27,42,32,0.98); flex-direction:column; gap:2px; align-items:stretch; padding:88px 28px 32px; transform:translateX(105%); transition:transform .32s cubic-bezier(.4,0,.2,1); z-index:60; margin-left:0; }
  .nav-links.open { transform:none; box-shadow:-20px 0 60px rgba(0,0,0,0.4); }
  .nav-links a { font-size:17px; padding:15px 2px; border-bottom:1px solid rgba(255,255,255,0.08); color:#fff; }
  .nav-links .nav-cta-mobile { justify-content:center; margin-top:20px; background:var(--gold); border-radius:40px; padding:15px; font-size:15px; font-weight:600; color:#fff; border-bottom:none; }
  .nav-toggle { display:inline-flex; z-index:61; }
  .header-cta.desktop-only { display:none; }
}
@media (min-width:961px) { .nav-links .nav-cta-mobile { display:none; } }
