/* ============================================================
   Manos para Venezuela — design tokens (derived from v0 design)
   ============================================================ */
:root {
  --green-900: #16271e;
  --green-800: #1d3528;
  --green-700: #244031;
  --clay: #c2674a;
  --clay-dark: #a8543a;
  --cream: #f7f2e8;
  --cream-2: #fbf8f1;
  --paper: #ffffff;
  --ink: #2a2925;
  --ink-soft: #5c5a52;
  --line: #e6dfd0;
  --white-muted: rgba(255, 255, 255, 0.72);

  --serif: "Newsreader", Georgia, "Times New Roman", serif;
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --maxw: 1120px;
  --radius: 10px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.container-narrow { max-width: 760px; }

/* ── Eyebrow + headings ── */
.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--clay);
  margin: 0 0 18px;
}
.eyebrow-light { color: var(--white-muted); }

.section-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 0 0 6px;
}
.section-title::after {
  content: "";
  display: block;
  width: 56px;
  height: 3px;
  background: var(--clay);
  border-radius: 2px;
  margin: 18px 0 0;
}
.section-lead {
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  color: var(--ink-soft);
  max-width: 60ch;
  margin: 22px 0 0;
}

.section { padding: clamp(60px, 9vw, 110px) 0; }
.section-alt { background: var(--cream-2); }

.ph { color: var(--clay); font-weight: 600; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 12px 22px;
  border-radius: 8px;
  text-decoration: none;
  border: 1px solid transparent;
  transition: background .2s, opacity .2s, transform .1s;
  cursor: pointer;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--clay); color: #fff; }
.btn-primary:hover { background: var(--clay-dark); }
.btn-ghost { background: transparent; border-color: rgba(255,255,255,0.45); color: #fff; }
.btn-ghost:hover { background: rgba(255,255,255,0.1); }
.btn-sm { padding: 8px 16px; font-size: 0.88rem; }
.btn-lg { padding: 15px 30px; font-size: 1.02rem; }

/* ── Nav ── */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(29, 53, 40, 0.92);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.brand { font-family: var(--serif); font-size: 1.15rem; color: #fff; text-decoration: none; letter-spacing: -0.01em; }
.nav-right { display: flex; align-items: center; gap: 8px; }

/* ── Language switcher (mechanic + style mirrored from montserrat-advisory.com) ── */
.lang-switch { display: flex; align-items: center; gap: 2px; }
.lang-switch.nav-lang { margin-right: 4px; }
.lang-switch a { display: flex; align-items: center; padding: 4px 6px; opacity: 0.5; transition: opacity 0.3s; text-decoration: none; }
.lang-switch a:hover { opacity: 0.8; }
.lang-switch a.active { opacity: 1; }
.lang-switch svg { width: 20px; height: 14px; border-radius: 2px; }

/* ── Hero ── */
.hero {
  position: relative;
  background: radial-gradient(120% 120% at 70% 10%, var(--green-700), var(--green-900));
  color: #fff;
  padding: clamp(90px, 16vw, 170px) 0 clamp(70px, 10vw, 120px);
  overflow: hidden;
}
.hero-inner { position: relative; z-index: 2; }
.hero-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.8rem, 8vw, 5.2rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
}
.hero-lead {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: var(--white-muted);
  max-width: 46ch;
  margin: 0 0 32px;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-heart {
  position: absolute; right: -40px; bottom: -40px;
  width: 360px; height: 360px;
  color: rgba(255,255,255,0.06);
  z-index: 1;
}

/* ── Split layout (problem / process / heart / transparency) ── */
.split { display: grid; grid-template-columns: 1.5fr 1fr; gap: clamp(32px, 6vw, 72px); align-items: start; }
.split-reverse { grid-template-columns: 1fr 1.4fr; }

/* ── Cards (mission) ── */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 44px; }
.card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; }
.card-icon { width: 26px; height: 26px; color: var(--clay); margin-bottom: 16px; }
.card-title { font-family: var(--serif); font-size: 1.25rem; font-weight: 500; margin: 0 0 8px; }
.card-text { color: var(--ink-soft); font-size: 0.95rem; margin: 0; }

/* ── Callouts ── */
.callout { background: var(--cream-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; }
.section-alt .callout { background: var(--paper); }
.callout-accent { border-left: 3px solid var(--clay); }
.callout-sticky { position: sticky; top: 88px; }
.callout-label { font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600; color: var(--clay); margin: 0 0 12px; }
.callout-text { font-family: var(--serif); font-size: 1.08rem; color: var(--ink); margin: 0; }

/* ── Dot list / check list ── */
.dot-list, .check-list { list-style: none; padding: 0; margin: 32px 0 0; }
.dot-list li { position: relative; padding: 12px 0 12px 24px; border-bottom: 1px solid var(--line); color: var(--ink); }
.dot-list li::before { content: ""; position: absolute; left: 0; top: 20px; width: 7px; height: 7px; border-radius: 50%; background: var(--clay); }
.check-list li { display: flex; align-items: flex-start; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.check-box { flex: 0 0 auto; width: 16px; height: 16px; border: 1.5px solid var(--clay); border-radius: 4px; margin-top: 4px; }

/* ── Steps (process) ── */
.steps { list-style: none; counter-reset: s; padding: 0; margin: 36px 0 0; }
.step { display: flex; gap: 18px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.step-num { flex: 0 0 auto; width: 30px; height: 30px; border-radius: 50%; background: var(--green-800); color: #fff; font-size: 0.85rem; display: flex; align-items: center; justify-content: center; font-weight: 600; }
.step-title { font-family: var(--serif); font-size: 1.18rem; font-weight: 500; margin: 0 0 4px; }
.step-text { color: var(--ink-soft); font-size: 0.95rem; margin: 0; }

/* ── Portrait (heart) ── */
.portrait { position: relative; margin: 0; }
.portrait-placeholder, .portrait img { width: 100%; aspect-ratio: 4 / 5; border-radius: var(--radius); object-fit: cover; }
.portrait-placeholder { background: linear-gradient(160deg, var(--green-700), var(--green-900)); }
.portrait-badge { position: absolute; left: 16px; bottom: 16px; background: rgba(22,39,30,0.85); color: #fff; font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; padding: 6px 12px; border-radius: 6px; }

/* ── Ledger table (limits) ── */
.ledger { width: 100%; border-collapse: collapse; margin-top: 40px; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.ledger thead { background: var(--green-800); }
.ledger th { color: #fff; text-align: left; font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; padding: 14px 22px; font-weight: 600; }
.ledger td { padding: 18px 22px; border-top: 1px solid var(--line); background: var(--paper); vertical-align: top; }
.ledger tr td:first-child { font-family: var(--serif); font-size: 1.05rem; width: 38%; }
.ledger td:last-child { color: var(--ink-soft); }

/* ── Plan grid ── */
.plan-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 44px; }
.plan-card { display: flex; gap: 18px; align-items: flex-start; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.plan-days { flex: 0 0 auto; display: flex; flex-direction: column; align-items: center; justify-content: center; width: 58px; height: 58px; border-radius: 10px; background: var(--green-800); color: #fff; font-family: var(--serif); font-size: 1.25rem; line-height: 1; }
.plan-days small { font-family: var(--sans); font-size: 0.55rem; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.75; margin-top: 4px; }
.plan-title { font-family: var(--serif); font-size: 1.18rem; font-weight: 500; margin: 0 0 4px; }
.plan-text { color: var(--ink-soft); font-size: 0.95rem; margin: 0; }

/* ── CTA band ── */
.cta-band { background: radial-gradient(120% 120% at 50% 0%, var(--green-700), var(--green-900)); color: #fff; padding: clamp(70px, 11vw, 130px) 0; }
.cta-inner { text-align: center; max-width: 720px; margin: 0 auto; }
.cta-title { font-family: var(--serif); font-weight: 500; font-size: clamp(1.9rem, 4.5vw, 3.1rem); line-height: 1.08; margin: 0 0 30px; }
.cta-note { color: var(--white-muted); font-size: 0.95rem; margin: 22px auto 0; max-width: 46ch; }

/* ── FAQ ── */
.faq { margin-top: 36px; }
.faq-item { border-top: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-q { font-family: var(--serif); font-size: 1.2rem; padding: 22px 36px 22px 0; cursor: pointer; list-style: none; position: relative; }
.faq-q::-webkit-details-marker { display: none; }
.faq-mark { position: absolute; right: 4px; top: 50%; width: 14px; height: 14px; transform: translateY(-50%); }
.faq-mark::before, .faq-mark::after { content: ""; position: absolute; background: var(--clay); }
.faq-mark::before { left: 0; top: 6px; width: 14px; height: 2px; }
.faq-mark::after { left: 6px; top: 0; width: 2px; height: 14px; transition: opacity .2s; }
.faq-item[open] .faq-mark::after { opacity: 0; }
.faq-a { color: var(--ink-soft); margin: 0 0 22px; max-width: 64ch; }

/* ── Footer ── */
.footer { background: var(--green-900); color: #fff; padding: clamp(54px, 8vw, 84px) 0 36px; }
.footer-inner { display: flex; flex-wrap: wrap; gap: 40px; justify-content: space-between; }
.footer-name { font-family: var(--serif); font-size: 1.3rem; margin: 0 0 10px; }
.footer-tagline { color: var(--white-muted); max-width: 42ch; margin: 0; }
.footer-meta p { margin: 0 0 8px; }
.footer-meta a { color: #fff; text-decoration: none; }
.footer-meta a:hover { text-decoration: underline; }
.footer-label { color: var(--white-muted); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; margin-right: 8px; }

.footer-bottom { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 18px; margin-top: 40px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.08); }
.footer-lang { display: flex; align-items: center; gap: 14px; }
.footer-lang-label { font-size: 0.72rem; color: var(--white-muted); letter-spacing: 0.1em; text-transform: uppercase; font-weight: 500; }
.footer-lang .lang-switch svg { width: 22px; height: 15px; }
.footer-legal { display: flex; gap: 20px; align-items: center; font-size: 0.78rem; color: var(--white-muted); }
.footer-kicker { letter-spacing: 0.08em; text-transform: uppercase; font-size: 0.7rem; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 900px) {
  .split, .split-reverse { grid-template-columns: 1fr; }
  .callout-sticky { position: static; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .card-grid, .plan-grid { grid-template-columns: 1fr; }
  .hero-heart { width: 240px; height: 240px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  /* switcher: same mobile pill behaviour as montserrat-advisory.com */
  .lang-switch.nav-lang { margin-right: 0; padding: 4px 8px; border: 1px solid rgba(255,255,255,0.12); border-radius: 999px; background: rgba(255,255,255,0.055); gap: 8px; }
  .lang-switch svg { width: 22px; height: 15px; }
}
