:root{
  --green-dark: #2f4f37;
  --green: #4a7c53;
  --green-mid: #5c9467;
  --green-pale: #e9f1e6;
  --cream: #f7ecd8;
  --cream-soft: #fbf5e8;
  --ink: #2c2a20;
  --ink-soft: #5a5644;
  --orange: #dd8b2f;
  --orange-dark: #b9701f;
  --terracotta: #a8453a;
  --white: #ffffff;
  --shadow: rgba(44, 42, 32, 0.16);
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  background: var(--cream);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  min-height: 100vh;
  line-height: 1.5;
}
a{ color: inherit; text-decoration:none; }
.container{ max-width: 1180px; margin:0 auto; padding: 0 24px; }

/* ================= TOP BRAND BAR (no menu) ================= */
.brand-bar{ background: var(--green-dark); padding: 16px 24px; }
.brand-bar-inner{
  max-width: 1180px; margin:0 auto;
  display:flex; align-items:center; justify-content:center; gap:10px;
}
.brand{ display:flex; align-items:center; gap:10px; color: var(--cream); }
.brand-icon{ width:32px; height:32px; flex:0 0 auto; color: var(--orange); }
.brand-icon svg{ width:100%; height:100%; }
.brand-name{
  font-family: Georgia, serif; font-style: italic; font-weight:700;
  font-size: 1.2rem; letter-spacing: .2px; white-space: nowrap;
}

/* ================= PAGE HERO BANNER ================= */
.page-banner{
  background: var(--green-dark); color: var(--cream);
  padding: 54px 24px 46px; text-align:center;
}
.page-banner .eyebrow{ color: var(--orange); font-weight:700; letter-spacing:2px; text-transform:uppercase; font-size:.78rem; }
.page-banner h1{ font-family:Georgia,serif; font-style:italic; font-size: clamp(2rem,4vw,2.8rem); margin: 8px 0 10px; }
.page-banner p{ max-width: 640px; margin: 0 auto; opacity:.85; }
.banner-badges{ display:flex; gap:10px; justify-content:center; flex-wrap:wrap; margin-top: 20px; }
.banner-badge{
  font-size:.76rem; font-weight:700; letter-spacing:.4px;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.18);
  padding: 6px 14px; border-radius: 20px; color: var(--cream);
}

/* ================= BUTTONS ================= */
.btn{
  display:inline-flex; align-items:center; gap:8px; justify-content:center;
  padding: 12px 26px; border-radius: 30px; font-weight:700; font-size: .95rem;
  border: 2px solid transparent; cursor:pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn:hover{ transform: translateY(-2px); }
.btn-whatsapp{ background: #3ba55a; color:#fff; border-color:#3ba55a; }
.btn-whatsapp:hover{ background:#2f8a49; border-color:#2f8a49; }
.btn-outline-dark{ background: transparent; color: var(--green-dark); border-color: var(--orange); }
.btn-outline-dark:hover{ background: var(--orange); color: var(--ink); }
.btn-sm{ padding: 9px 20px; font-size: .88rem; }

/* ================= SECTIONS ================= */
.section{ padding: 56px 0; }
.section-white{ background: var(--white); }
.section-cream{ background: var(--cream); }
.section-green{ background: var(--green-pale); }
.section-header{ text-align:center; max-width: 700px; margin: 0 auto 40px; }
.section-header .eyebrow{
  display:inline-block; color: var(--terracotta); font-weight:700; font-size:.78rem;
  letter-spacing: 2px; text-transform:uppercase; margin-bottom: 10px;
}
.section-header h2{
  font-family: Georgia, serif; font-size: clamp(1.6rem, 3vw, 2.2rem); margin: 0 0 12px; color: var(--green-dark);
}
.section-header p{ color: var(--ink-soft); margin:0; }

/* ================= INTRO / PROSE ================= */
.two-col{ display:grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items:center; }
@media (max-width: 800px){ .two-col{ grid-template-columns: 1fr; } }
/* Photo / video slot. Same frame either way, so you can swap one for the
   other without touching anything else. */
.media-frame{
  width:100%;
  /* height:auto is required — the width/height attributes on the <img> (there to
     reserve space and stop layout shift) would otherwise win and squash the frame. */
  height:auto;
  aspect-ratio: 4/3; object-fit: cover; display:block;
  border-radius: 14px; box-shadow: 0 10px 26px var(--shadow);
  background: var(--green-pale);
}
/* Shown only until a real photo goes in — deliberately looks unfinished
   so it never reads as a design choice. */
.media-placeholder{
  aspect-ratio: 4/3; border-radius: 14px; background: var(--green-pale);
  border: 2px dashed rgba(74,124,83,.45);
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  gap: 8px; text-align:center; padding: 24px; color: var(--green);
}
.media-placeholder svg{ width:42px; height:42px; }
.media-placeholder b{ font-size:.85rem; color: var(--green-dark); }
.media-placeholder small{ font-size:.76rem; color: var(--ink-soft); max-width: 32ch; line-height:1.5; }
.prose h2{ font-family:Georgia,serif; color: var(--green-dark); font-size: 1.7rem; margin-top:0; margin-bottom:14px; }
.prose p{ color: var(--ink-soft); }
.credential{
  display:inline-flex; align-items:center; gap:9px;
  background: var(--green-pale); color: var(--green-dark);
  border: 1px solid rgba(74,124,83,.28); border-radius: 24px;
  padding: 7px 16px 7px 13px; margin-bottom: 18px;
  font-size:.82rem; font-weight:700; letter-spacing:.2px;
}
.credential svg{ width:17px; height:17px; flex:0 0 auto; }

/* ================= CHAPTERS (the rally, in order) ================= */
.chapter-list{ display:flex; flex-direction:column; gap: 18px; max-width: 880px; margin: 0 auto; }
.chapter-item{
  background: var(--white); border-radius: 14px; padding: 24px 28px;
  box-shadow: 0 6px 18px var(--shadow); border-left: 4px solid var(--orange);
  display:grid; grid-template-columns: 62px 1fr; gap: 22px; align-items:start;
}
@media (max-width: 560px){
  .chapter-item{ grid-template-columns: 1fr; gap: 10px; padding: 22px 20px; }
  .chapter-num-wrap{ display:flex; align-items:baseline; gap:10px; }
}
.chapter-num{
  font-family: Georgia, serif; font-size: 2.5rem; font-weight:700; color: var(--orange);
  line-height:1; text-align:center;
}
.chapter-shot{
  display:block; margin-top:5px; text-align:center;
  font-size:.6rem; text-transform:uppercase; letter-spacing:1.2px;
  color: var(--ink-soft); font-weight:700;
}
@media (max-width: 560px){ .chapter-num, .chapter-shot{ text-align:left; margin-top:0; } }
.chapter-head{ display:flex; align-items:baseline; gap:12px; flex-wrap:wrap; margin-bottom:8px; }
.chapter-head h3{ font-family:Georgia,serif; font-size:1.18rem; margin:0; color: var(--green-dark); }
.chapter-time{
  font-size:.7rem; font-weight:700; letter-spacing:.6px; text-transform:uppercase;
  color: var(--ink-soft); background: var(--green-pale); padding: 3px 10px; border-radius: 20px;
}
.chapter-body{ margin:0; color: var(--ink-soft); font-size:.94rem; }
.chapter-outcome{
  margin-top: 14px; padding-top: 12px; border-top: 1px dashed rgba(44,42,32,.16);
  font-size:.9rem; color: var(--green-dark); font-weight:600;
}
.chapter-outcome span{
  display:block; margin-bottom:3px; color: var(--terracotta);
  font-size:.66rem; font-weight:800; letter-spacing:1.4px; text-transform:uppercase;
}

/* ================= GROUP SIZE TOGGLE ================= */
.group-picker{ text-align:center; margin: 0 auto 30px; }
.group-picker-label{
  display:block; font-size:.76rem; font-weight:800; letter-spacing:1.6px;
  text-transform:uppercase; color: var(--ink-soft); margin-bottom: 12px;
}
.group-toggle{
  display:inline-flex; background: var(--white); border-radius: 32px; padding: 5px;
  gap: 4px; box-shadow: 0 4px 14px var(--shadow); flex-wrap:wrap; justify-content:center;
}
.group-toggle button{
  border:none; background:transparent; color: var(--ink); cursor:pointer;
  font-family: inherit; font-size:.9rem; font-weight:700;
  padding: 10px 20px; border-radius: 26px; transition: background .15s ease, color .15s ease;
  white-space: nowrap;
}
.group-toggle button:hover{ background: var(--green-pale); }
.group-toggle button.active{ background: var(--green-dark); color: var(--cream); }
.group-toggle button.active:hover{ background: var(--green-dark); }
.group-hint{
  margin: 14px auto 0; font-size:.87rem; color: var(--ink-soft); max-width: 44ch;
  min-height: 1.3em;
}
/* Below ~430px all four pills no longer fit on one row — use a 2x2 grid
   so it reads as a deliberate layout rather than an awkward wrap. */
@media (max-width: 430px){
  .group-toggle{ display:grid; grid-template-columns: 1fr 1fr; border-radius: 18px; width: 100%; }
  .group-toggle button{ border-radius: 14px; padding: 11px 12px; }
}

/* ================= PACKAGES ================= */
.packages-duo{
  display:grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 26px;
  max-width: 800px; margin: 0 auto; align-items: start;
}
@media (max-width: 700px){ .packages-duo{ grid-template-columns: 1fr; max-width: 420px; } }
.pricing-card{
  background: var(--white); border-radius: 14px; padding: 30px 26px;
  box-shadow: 0 8px 22px var(--shadow); display:flex; flex-direction:column;
  border: 2px solid transparent; position:relative;
}
.pricing-card.highlight{ border-color: var(--orange); }
.pricing-badge{
  position:absolute; top:-13px; left:50%; transform:translateX(-50%);
  background: var(--orange); color:var(--ink); white-space:nowrap;
  font-size:.7rem; font-weight:800; letter-spacing:1px; text-transform:uppercase;
  padding: 5px 14px; border-radius: 20px;
}
.pricing-card h3{ font-family:Georgia,serif; font-size:1.25rem; margin:0 0 4px; color: var(--green-dark); }
.pricing-sub{ font-size:.84rem; color: var(--ink-soft); margin-bottom: 16px; min-height: 2.6em; }
.pricing-price{
  font-size: 2.1rem; font-weight:800; color: var(--terracotta);
  margin: 0 0 2px; line-height:1.1;
}
.pricing-price .price-unit{ font-size:.86rem; font-weight:600; color: var(--ink-soft); display:block; margin-top:4px; }
.price-total{
  font-size:.82rem; color: var(--ink-soft); margin-bottom: 4px; min-height: 1.2em;
}
.price-save{
  display:inline-block; font-size:.74rem; font-weight:800; letter-spacing:.4px;
  color: var(--green-dark); background: var(--green-pale);
  padding: 4px 11px; border-radius: 20px; margin-top: 8px;
}
.price-includes{
  margin: 16px 0 4px; padding: 9px 12px; border-radius: 8px;
  background: var(--cream-soft); border: 1px dashed rgba(44,42,32,.2);
  font-size:.78rem; font-weight:700; color: var(--green-dark); text-align:center;
}
.pricing-list{ list-style:none; margin:16px 0 20px; padding:0; }
.pricing-list li{
  padding: 7px 0 7px 26px; position:relative; font-size:.92rem; color: var(--ink);
  border-bottom: 1px dashed rgba(44,42,32,.12);
}
.pricing-list li:last-child{ border-bottom:none; }
.pricing-list li::before{
  content:"\2713"; position:absolute; left:0; top:7px; color: var(--green); font-weight:800;
}
.perk-head{
  margin: 6px 0 8px; padding-top: 18px; border-top: 1px solid rgba(44,42,32,.14);
  font-size:.68rem; font-weight:800; letter-spacing:1.4px; text-transform:uppercase; color: var(--terracotta);
}
.perk-note{ font-size:.74rem; color: var(--ink-soft); margin: -4px 0 10px; font-style: italic; }
.perk-list{ list-style:none; margin:0 0 20px; padding:0; }
.perk-list li{ padding: 6px 0 6px 26px; position:relative; font-size:.9rem; color: var(--ink); }
.perk-list li::before{
  content:"\002B"; position:absolute; left:2px; top:6px; color: var(--orange); font-weight:800; font-size:1.05rem;
}
.pricing-card .btn{ margin-top:auto; align-self:stretch; }

/* ================= CUSTOM STRIP ================= */
.custom-strip{
  background: var(--white); border: 1px dashed rgba(44,42,32,.28); border-radius: 12px;
  padding: 20px 26px; max-width: 800px; margin: 26px auto 0;
  display:flex; align-items:center; justify-content:space-between; gap: 18px; flex-wrap:wrap;
}
.custom-strip h3{ font-family:Georgia,serif; font-size:1.02rem; margin:0 0 3px; color: var(--green-dark); }
.custom-strip p{ margin:0; font-size:.88rem; color: var(--ink-soft); max-width: 46ch; }

/* ================= VENUES ================= */
.venue-grid{
  display:grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 20px;
  max-width: 980px; margin: 0 auto;
}
.venue-card{
  background: var(--white); border-radius: 12px; padding: 24px 22px;
  box-shadow: 0 6px 16px var(--shadow); text-align:center;
  border-top: 4px solid var(--green); transition: transform .15s ease;
}
.venue-card:hover{ transform: translateY(-3px); }
.venue-pin{
  width: 42px; height:42px; margin: 0 auto 12px; border-radius: 50%;
  background: var(--green-pale); color: var(--green-dark);
  display:flex; align-items:center; justify-content:center;
}
.venue-pin svg{ width:20px; height:20px; }
.venue-card h3{ font-family:Georgia,serif; font-size:1.05rem; margin:0 0 4px; color: var(--green-dark); }
.venue-area{ font-size:.8rem; color: var(--terracotta); font-weight:700; letter-spacing:.4px; margin-bottom:8px; }
.venue-note{ font-size:.85rem; color: var(--ink-soft); margin:0; }
.venue-footnote{
  max-width: 640px; margin: 30px auto 0; text-align:center;
  font-size:.9rem; color: var(--ink-soft); line-height:1.6;
}

/* ================= GAMES BLOCK ================= */
.games-panel{
  background: var(--white); border-radius: 16px; padding: 40px 38px;
  max-width: 820px; margin: 0 auto; text-align:center;
  box-shadow: 0 10px 28px var(--shadow); border-top: 5px solid var(--orange);
}
.games-pill{
  display:inline-block; background: var(--green-pale); color: var(--green-dark);
  font-size:.7rem; font-weight:800; letter-spacing:1.4px; text-transform:uppercase;
  padding: 6px 16px; border-radius: 20px; margin-bottom: 16px;
}
.games-panel h2{ font-family:Georgia,serif; font-size: clamp(1.5rem,3vw,2rem); margin:0 0 14px; color: var(--green-dark); }
.games-panel p{ color: var(--ink-soft); max-width: 56ch; margin: 0 auto 14px; }
.games-panel p:last-child{ margin-bottom:0; }

/* ================= FAQ ================= */
.faq{ max-width: 780px; margin: 0 auto; display:flex; flex-direction:column; gap: 14px; }
.faq-item{ background: var(--white); border-radius: 10px; padding: 18px 22px; box-shadow: 0 4px 12px var(--shadow); }
.faq-item h3{ margin:0 0 6px; font-family: Georgia, serif; font-size: 1.02rem; color: var(--green-dark); }
.faq-item p{ margin:0; color: var(--ink-soft); font-size: .92rem; }

/* ================= CTA BANNER ================= */
.cta-banner{
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  border-radius: 16px; padding: 46px 40px; color:#fff; text-align:center;
  max-width: 1180px; margin: 0 auto;
}
.cta-banner h2{ font-family:Georgia,serif; font-size: clamp(1.5rem,3vw,2rem); margin:0 0 12px; }
.cta-banner p{ margin: 0 0 24px; opacity:.9; }
.cta-banner .btn-row{ display:flex; gap:14px; justify-content:center; flex-wrap:wrap; }

/* ================= FOOTER ================= */
.site-footer{ background: var(--green-dark); color: var(--cream); }
.footer-inner{
  max-width: 1180px; margin:0 auto; padding: 34px 24px 22px;
  display:flex; flex-direction:column; align-items:center; gap: 14px; text-align:center;
}
.footer-brand{ display:flex; align-items:center; gap:10px; }
.footer-brand .brand-icon{ width:28px; height:28px; }
.footer-tagline{ margin:0; color: var(--cream-soft); opacity:.8; font-size:.88rem; max-width: 420px; }
.footer-social-icons{ display:flex; gap:10px; }
.footer-social-icons a{
  width:38px; height:38px; border-radius:50%; background: rgba(255,255,255,0.1);
  display:flex; align-items:center; justify-content:center; transition: background .15s ease;
}
.footer-social-icons a:hover{ background: var(--orange); }
.footer-social-icons svg{ width:18px; height:18px; fill: var(--cream); }
.footer-bottom{
  border-top: 1px solid rgba(255,255,255,0.12); padding: 14px 24px;
  text-align:center; font-size: .8rem; opacity:.7;
}
