/* Creative Minds Studio — design system
   Colors, type and spacing mirror the approved Claude Design prototype 1:1;
   layout adds responsive breakpoints since the source canvas was desktop-only. */

@font-face {
  font-family: 'Baloo 2';
  font-style: normal;
  font-weight: 500 800;
  font-display: swap;
  src: url('/assets/fonts/baloo2-variable.woff2') format('woff2');
}
@font-face {
  font-family: 'Nunito Sans';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('/assets/fonts/nunitosans-variable.woff2') format('woff2');
}
@font-face {
  font-family: 'Nunito Sans';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/nunitosans-italic-variable.woff2') format('woff2');
}
@font-face {
  font-family: 'IBM Plex Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/ibmplexmono-400.woff2') format('woff2');
}
@font-face {
  font-family: 'IBM Plex Mono';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/assets/fonts/ibmplexmono-500.woff2') format('woff2');
}

:root {
  --bg: #FDF8F1;
  --ink: #2A2320;
  --ink-2: #1A1512;
  --orange: #DD6E42;
  --orange-dark: #C85C2C;
  --orange-darker: #B8532A;
  --teal: #2F9C95;
  --pink: #A2557F;
  --yellow: #E8B33C;
  --green: #5F8A46;
  --cream: #F5EDE1;
  --cream-2: #F3E9DA;
  --cream-3: #FDFAF5;
  --border: #EADFCF;
  --border-2: #DCCDB9;
  --border-3: #F0E6D8;
  --white: #FFFFFF;
  --off-white: #FFF7EF;
  --muted: #5A4B41;
  --muted-2: #6A5A4E;
  --muted-3: #7A6A5E;
  --body-text: #4A3E36;
  --tint-orange: #F7E2D8;
  --tint-teal: #E8F1F0;
  --tint-yellow: #FBEFD6;
  --tint-pink: #F1E4F0;
  --tint-green: #E7F0DE;
  --tint-neutral: #F2E9DC;
  --font-heading: 'Baloo 2', 'Nunito Sans', system-ui, sans-serif;
  --font-body: 'Nunito Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-mono: 'IBM Plex Mono', ui-monospace, 'SFMono-Regular', Menlo, monospace;
  --container: 1180px;
  --radius-lg: 26px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --shadow-card: 0 18px 40px rgba(42,35,32,0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}
a { color: var(--orange); text-decoration: none; }
a:hover { color: var(--orange-darker); text-decoration: underline; }
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  margin: 0;
  line-height: 1.08;
  letter-spacing: -0.01em;
}
p { margin: 0; }
ul { margin: 0; }
img { max-width: 100%; display: block; }
button { font-family: inherit; }
input, textarea, select, button { font-family: inherit; font-size: inherit; }
summary { cursor: pointer; list-style: none; }
summary::-webkit-details-marker { display: none; }

@keyframes cmsFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes cmsIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
@keyframes cmsSlide { from { transform: translateX(28px); opacity: 0; } to { transform: none; opacity: 1; } }
@keyframes cmsFade { from { opacity: 0; } to { opacity: 1; } }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
}

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: 12px; top: -60px; background: var(--ink); color: var(--off-white);
  padding: 12px 18px; border-radius: 10px; z-index: 200; transition: top 0.15s ease;
  font-weight: 700; text-decoration: none;
}
.skip-link:focus { top: 12px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 15px 26px; border-radius: 999px; font-weight: 700; font-size: 16px;
  cursor: pointer; border: none; text-decoration: none; text-align: center;
  transition: background-color 0.15s ease, color 0.15s ease, transform 0.15s ease;
  line-height: 1.2;
}
.btn:hover { text-decoration: none; }
.btn-dark { background: var(--ink); color: var(--off-white); }
.btn-dark:hover { background: var(--orange); color: var(--off-white); }
.btn-orange { background: var(--orange); color: var(--off-white); }
.btn-orange:hover { background: var(--orange-dark); color: var(--off-white); }
.btn-outline { background: transparent; border: 1.5px solid var(--border-2); color: var(--ink); }
.btn-outline:hover { background: var(--cream-2); color: var(--ink); }
.btn-outline-dark { background: transparent; border: 1.5px solid var(--ink); color: var(--ink); }
.btn-outline-dark:hover { background: var(--ink); color: var(--off-white); }
.btn-white { background: var(--off-white); color: var(--orange-dark); }
.btn-white:hover { background: var(--cream); color: var(--orange-darker); }
.btn-green { background: var(--green); color: var(--off-white); }
.btn-green:hover { background: #4d7339; color: var(--off-white); }
.btn-sm { padding: 12px 20px; font-size: 14.5px; }
.btn-xs { padding: 10px 16px; font-size: 14px; }
.btn-block { display: flex; width: 100%; }
.btn:disabled { opacity: 0.55; cursor: not-allowed; }
.pill-link {
  padding: 8px 11px; border-radius: 10px; font-size: 14.5px; font-weight: 600;
  color: var(--muted); cursor: pointer; background: transparent; border: none;
  text-decoration: none; display: inline-block;
}
.pill-link:hover, .pill-link.is-active { background: var(--cream-2); color: var(--ink); text-decoration: none; }

/* ---------- Promo bar ---------- */
.promo-bar {
  background: var(--teal); color: var(--white); font-size: 14px; font-weight: 600;
  text-align: center; padding: 9px 16px; letter-spacing: 0.01em;
}
.promo-bar a { color: var(--white); text-decoration: underline; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60; background: rgba(253,248,241,0.94);
  backdrop-filter: blur(10px); border-bottom: 1px solid var(--border);
}
.site-header .container {
  padding-top: 14px; padding-bottom: 14px; display: flex; align-items: center; gap: 24px;
}
.brand { display: flex; align-items: center; gap: 11px; flex-shrink: 0; text-decoration: none; }
.brand:hover { text-decoration: none; }
.brand-mark {
  width: 40px; height: 40px; border-radius: 13px; background: var(--orange);
  display: grid; place-items: center; color: var(--off-white);
  font-family: var(--font-heading); font-weight: 800; font-size: 19px; flex-shrink: 0;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name { font-family: var(--font-heading); font-weight: 700; font-size: 19px; color: var(--ink); }
.brand-sub {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--pink);
}
.main-nav { display: flex; align-items: center; gap: 4px; margin-left: auto; flex-wrap: wrap; }
.header-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.cart-btn {
  position: relative; display: flex; align-items: center; gap: 8px; padding: 9px 14px;
  border-radius: 999px; border: 1.5px solid var(--ink); font-size: 14px; font-weight: 700;
  cursor: pointer; color: var(--ink); background: transparent;
}
.cart-btn:hover { background: var(--ink); color: var(--off-white); }
.cart-count {
  min-width: 22px; height: 22px; padding: 0 6px; border-radius: 999px; background: var(--orange);
  color: var(--off-white); font-size: 12.5px; font-weight: 700; display: grid; place-items: center;
}
.menu-toggle {
  display: none; width: 40px; height: 40px; border-radius: 10px; border: 1.5px solid var(--border-2);
  background: transparent; cursor: pointer; align-items: center; justify-content: center; flex-shrink: 0;
}
.menu-toggle span, .menu-toggle::before, .menu-toggle::after {
  content: ''; display: block; width: 18px; height: 2px; background: var(--ink); position: relative;
}
.menu-toggle { flex-direction: column; gap: 4px; }

/* ---------- Sections & type ---------- */
main { flex: 1; }
.eyebrow {
  font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--pink); margin-bottom: 14px; display: block;
}
.section { padding: 76px 24px; }
.section-tight { padding: 24px 24px 40px; }
.page-hero { padding: 64px 24px 32px; }
.page-hero h1 { font-size: 52px; margin-bottom: 20px; }
.page-hero .lede { font-size: 18px; line-height: 1.6; color: var(--muted); max-width: 720px; }
.section-head {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 24px;
  margin-bottom: 34px; flex-wrap: wrap;
}
.section-head h2 { font-size: 40px; max-width: 620px; }

/* ---------- Hero (home) ---------- */
.hero {
  padding: 72px 24px 40px; display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: 56px; align-items: center;
}
.hero-copy { animation: cmsIn 0.5s ease both; }
.hero h1 { font-size: 60px; margin-bottom: 22px; }
.hero h1 .accent { color: var(--orange); }
.hero .lede { font-size: 19px; line-height: 1.6; color: var(--muted); max-width: 540px; margin-bottom: 30px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 34px; }
.hero-checks { display: flex; gap: 28px; flex-wrap: wrap; font-size: 14px; color: var(--muted-3); }
.badge-pill {
  display: inline-flex; align-items: center; gap: 8px; padding: 7px 14px; border-radius: 999px;
  background: var(--tint-pink); color: var(--pink); font-size: 13px; font-weight: 700; margin-bottom: 22px;
}
.hero-media { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 160px 200px; gap: 16px; }
.media-tile {
  border-radius: 22px; overflow: hidden; position: relative; background: var(--tint-neutral);
}
.media-tile img { width: 100%; height: 100%; object-fit: cover; }
.media-tile.span-2 { grid-column: 1 / -1; }
.media-tile.floaty { animation: cmsFloat 6s ease-in-out infinite; }

/* ---------- Stats ---------- */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.stat-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 26px; }
.stat-num { font-family: var(--font-heading); font-size: 38px; font-weight: 700; }
.stat-label { font-size: 14.5px; color: var(--muted-3); margin-top: 4px; }

/* ---------- Program cards (home teaser) ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.program-teaser {
  background: var(--white); border: 1px solid var(--border); border-radius: 22px; padding: 28px;
  transition: transform 0.2s ease;
}
.program-teaser:hover { transform: translateY(-4px); }
.program-num {
  width: 46px; height: 46px; border-radius: 14px; display: grid; place-items: center;
  font-size: 22px; margin-bottom: 18px; font-family: var(--font-heading); font-weight: 700;
}
.program-teaser h3 { font-size: 22px; margin-bottom: 8px; }
.program-meta {
  font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--pink); margin-bottom: 12px; display: block;
}
.program-teaser p { font-size: 15px; line-height: 1.6; color: var(--muted-2); }

/* ---------- Dark band (why us) ---------- */
.band-dark { background: var(--ink); color: var(--off-white); padding: 76px 24px; margin-top: 24px; }
.band-dark h2 { color: var(--off-white); font-size: 40px; margin-bottom: 14px; }
.band-dark > .container > p { font-size: 17px; color: rgba(255,247,239,0.7); max-width: 620px; margin-bottom: 44px; }
.why-item { border-top: 2px solid var(--orange); padding-top: 20px; }
.why-item h3 { font-size: 20px; margin-bottom: 10px; color: var(--off-white); }
.why-item p { font-size: 15px; line-height: 1.6; color: rgba(255,247,239,0.72); }

/* ---------- Steps ---------- */
.step-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 26px; }
.step-num { font-family: var(--font-mono); font-size: 12px; color: var(--orange); margin-bottom: 12px; }
.step-card h3 { font-size: 19px; margin-bottom: 8px; }
.step-card p { font-size: 14.5px; line-height: 1.6; color: var(--muted-2); }

/* ---------- Testimonials ---------- */
.band-cream { background: var(--cream); padding: 76px 24px; }
.testimonial { background: var(--white); border-radius: 22px; padding: 30px; }
.stars { color: var(--yellow); font-size: 17px; letter-spacing: 2px; margin-bottom: 14px; }
.testimonial p { font-size: 16px; line-height: 1.66; color: #3A312B; margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 42px; height: 42px; border-radius: 999px; display: grid; place-items: center;
  font-family: var(--font-heading); font-weight: 700; flex-shrink: 0; overflow: hidden;
}
.avatar img { width: 100%; height: 100%; object-fit: cover; }
.author-name { font-weight: 700; font-size: 15px; }
.author-meta { font-size: 13px; color: var(--muted-3); }

/* ---------- Blog teaser cards ---------- */
.blog-teaser-media {
  height: 170px; border-radius: 20px; margin-bottom: 16px; overflow: hidden; background: var(--tint-neutral);
}
.blog-teaser-media img { width: 100%; height: 100%; object-fit: cover; }
.blog-teaser-tag {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 8px; display: block;
}
.blog-teaser h3 { font-size: 20px; margin-bottom: 8px; }
.blog-teaser p { font-size: 14.5px; line-height: 1.6; color: var(--muted-2); }
.blog-card { background: var(--white); border: 1px solid var(--border); border-radius: 22px; overflow: hidden; }
.blog-card-media { height: 180px; overflow: hidden; background: var(--tint-neutral); }
.blog-card-media img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-body { padding: 26px; }
.blog-card-body h3 { font-size: 21px; margin: 10px 0; }
.blog-card-body p { font-size: 14.5px; line-height: 1.65; color: var(--muted-2); margin-bottom: 16px; }
.blog-card-meta { font-size: 13px; color: var(--muted-3); }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--orange); border-radius: 30px; padding: 56px; display: grid;
  grid-template-columns: 1.2fr 0.8fr; gap: 40px; align-items: center; color: var(--off-white);
}
.cta-band h2 { font-size: 38px; margin-bottom: 14px; color: var(--off-white); }
.cta-band p { font-size: 17px; line-height: 1.6; color: rgba(255,247,239,0.88); }
.cta-actions { display: flex; flex-direction: column; gap: 12px; }
.cta-actions .note { font-size: 13.5px; color: rgba(255,247,239,0.8); text-align: center; }

/* ---------- Program detail rows (programas.html) ---------- */
.program-row {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 34px; display: grid; grid-template-columns: 220px 1fr 240px; gap: 32px; align-items: start;
}
.program-row-media {
  height: 180px; border-radius: 18px; overflow: hidden; background: var(--tint-neutral);
}
.program-row-media img { width: 100%; height: 100%; object-fit: cover; }
.program-row h2 { font-size: 28px; margin-bottom: 8px; }
.program-row-meta {
  font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--pink); margin-bottom: 14px; display: block;
}
.program-row p { font-size: 15.5px; line-height: 1.66; color: var(--muted); margin-bottom: 16px; }
.program-row ul { font-size: 15px; line-height: 1.9; color: var(--muted); padding-left: 20px; }
.program-price-box { background: var(--bg); border-radius: 18px; padding: 22px; }
.program-price-box .from { font-size: 13px; color: var(--muted-3); margin-bottom: 4px; }
.program-price { font-family: var(--font-heading); font-size: 30px; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.program-price-box .per { font-size: 13px; color: var(--muted-3); margin-bottom: 18px; }

/* ---------- Schedule table (horarios.html) ---------- */
.schedule-table { background: var(--white); border: 1px solid var(--border); border-radius: 24px; overflow: hidden; }
.schedule-row { display: grid; grid-template-columns: 130px repeat(5, 1fr); font-size: 14px; border-bottom: 1px solid var(--border-3); }
.schedule-row:last-child { border-bottom: none; }
.schedule-row.head { background: var(--ink); color: var(--off-white); font-size: 13.5px; font-weight: 700; }
.schedule-row.alt { background: #FDFAF5; }
.schedule-cell { padding: 18px; border-left: 1px solid var(--border-3); }
.schedule-row.head .schedule-cell, .schedule-row .schedule-cell:first-child { border-left: none; }
.schedule-row .schedule-cell:first-child {
  font-family: var(--font-mono); font-size: 12.5px; color: var(--muted-3);
}
.seats-open { color: var(--green); font-size: 12.5px; font-weight: 700; }
.seats-full { color: var(--orange-dark); font-size: 12.5px; font-weight: 700; }
.season-card { background: var(--cream); border-radius: 22px; padding: 30px; }
.season-tag { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 12px; display: block; }
.season-tag.closed { color: var(--orange-dark); }
.season-tag.open { color: var(--green); }
.season-card h3 { font-size: 22px; margin-bottom: 10px; }
.season-card p { font-size: 15px; line-height: 1.6; color: var(--muted); margin-bottom: 14px; }
.season-price { font-family: var(--font-heading); font-size: 22px; font-weight: 700; }

/* ---------- About page ---------- */
.about-hero { padding: 64px 24px 40px; display: grid; grid-template-columns: 1fr 0.85fr; gap: 52px; align-items: center; }
.about-hero h1 { font-size: 50px; margin-bottom: 22px; }
.about-hero p { font-size: 17px; line-height: 1.66; color: var(--muted); margin-bottom: 16px; }
.about-media { height: 420px; border-radius: var(--radius-lg); overflow: hidden; background: var(--tint-neutral); }
.about-media img { width: 100%; height: 100%; object-fit: cover; }
.value-card .num { font-family: var(--font-heading); font-size: 15px; margin-bottom: 10px; }
.value-card p { font-size: 15.5px; line-height: 1.66; color: rgba(255,247,239,0.75); }
.team-card-media { height: 220px; border-radius: 20px; overflow: hidden; margin-bottom: 14px; background: var(--tint-neutral); }
.team-card-media img { width: 100%; height: 100%; object-fit: cover; }
.team-card h3 { font-size: 20px; margin-bottom: 4px; }
.team-role { font-size: 13.5px; color: var(--pink); font-weight: 700; margin-bottom: 8px; display: block; }
.team-card p { font-size: 14.5px; line-height: 1.6; color: var(--muted-2); }
.info-panel { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 40px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }
.info-panel h3 { font-size: 26px; margin-bottom: 16px; }
.info-panel ul { font-size: 15.5px; line-height: 1.95; color: var(--muted); padding-left: 20px; }
.info-panel .facts { font-size: 15.5px; line-height: 1.9; color: var(--muted); }
.info-panel .facts strong { display: block; color: var(--ink); }

/* ---------- Shop (tienda.html) ---------- */
.shop-tags { display: flex; gap: 12px; flex-wrap: wrap; font-size: 13.5px; color: var(--muted); margin-top: 26px; }
.shop-tag { padding: 9px 16px; border-radius: 999px; font-weight: 700; }
.product-card { background: var(--white); border: 1px solid var(--border); border-radius: 24px; overflow: hidden; display: flex; flex-direction: column; position: relative; }
.product-media { height: 200px; overflow: hidden; background: var(--tint-teal); }
.product-media img { width: 100%; height: 100%; object-fit: cover; }
.product-badge {
  position: absolute; top: 16px; right: 16px; background: var(--ink); color: var(--off-white);
  font-size: 11.5px; font-weight: 700; padding: 6px 12px; border-radius: 999px; z-index: 2;
}
.product-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.product-age {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--pink); margin-bottom: 8px; display: block;
}
.product-card h3 { font-size: 21px; margin-bottom: 8px; }
.product-card p { font-size: 14.5px; line-height: 1.6; color: var(--muted-2); margin-bottom: 18px; }
.product-footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; gap: 12px; }
.product-price { font-family: var(--font-heading); font-size: 24px; font-weight: 700; }
.add-btn {
  padding: 11px 18px; border-radius: 999px; background: var(--orange); color: var(--off-white);
  font-weight: 700; font-size: 14px; cursor: pointer; white-space: nowrap; border: none;
}
.add-btn:hover { background: var(--orange-dark); }
.info-band { background: var(--cream); border-radius: var(--radius-lg); padding: 40px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px; }
.info-band h3 { font-size: 21px; margin-bottom: 12px; }
.info-band p { font-size: 14.5px; line-height: 1.7; color: var(--muted); }

/* ---------- Pricing ---------- */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: start; }
.price-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 34px; }
.price-card.featured { background: var(--ink); color: var(--off-white); box-shadow: var(--shadow-card); border: none; }
.price-badge { display: inline-block; background: var(--yellow); color: var(--ink); font-size: 11.5px; font-weight: 700; padding: 6px 12px; border-radius: 999px; margin-bottom: 16px; }
.price-card h3 { font-size: 24px; margin-bottom: 6px; }
.price-card.featured h3 { color: var(--off-white); }
.price-card .tagline { font-size: 14.5px; color: var(--muted-3); margin-bottom: 22px; }
.price-card.featured .tagline { color: rgba(255,247,239,0.65); }
.price-amount { font-family: var(--font-heading); font-size: 44px; font-weight: 700; line-height: 1; }
.price-card.featured .price-amount { color: var(--off-white); }
.price-period { font-size: 14px; color: var(--muted-3); margin-bottom: 24px; }
.price-card.featured .price-period { color: rgba(255,247,239,0.65); }
.price-card ul { font-size: 15px; line-height: 2; color: var(--muted); padding-left: 20px; margin-bottom: 26px; }
.price-card.featured ul { color: rgba(255,247,239,0.86); }
.discount-panel { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 36px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.discount-panel h3 { font-size: 20px; margin-bottom: 10px; }
.discount-panel p { font-size: 14.5px; line-height: 1.7; color: var(--muted); }
.faq-wrap { max-width: 900px; margin: 0 auto; }
.faq-item { background: var(--white); border: 1px solid var(--border); border-radius: 18px; padding: 22px 24px; }
.faq-item summary { font-family: var(--font-heading); font-size: 19px; font-weight: 600; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.faq-item summary::after { content: '+'; font-size: 22px; color: var(--orange); flex-shrink: 0; transition: transform 0.15s ease; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { font-size: 15px; line-height: 1.7; color: var(--muted); margin-top: 12px; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }

/* ---------- Contact ---------- */
.contact-grid { padding: 64px 24px 90px; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: start; }
.contact-grid h1 { font-size: 48px; margin-bottom: 18px; }
.contact-grid > div:first-child > p { font-size: 17px; line-height: 1.65; color: var(--muted); margin-bottom: 30px; }
.form-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 30px; display: flex; flex-direction: column; gap: 16px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 7px; font-size: 13.5px; font-weight: 700; color: var(--muted); }
.field input, .field textarea, .field select {
  padding: 13px 14px; border-radius: 12px; border: 1px solid var(--border-2); background: var(--cream-3);
  font-size: 15px; color: var(--ink); font-weight: 400; width: 100%;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: 2px solid var(--orange); outline-offset: 1px;
}
.field textarea { resize: vertical; font-family: inherit; }
.field.invalid input, .field.invalid textarea, .field.invalid select { border-color: var(--orange-dark); }
.field-error { font-size: 12.5px; color: var(--orange-darker); display: none; }
.field.invalid .field-error { display: block; }
.checkbox-row { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; line-height: 1.55; color: var(--muted-2); }
.checkbox-row input { margin-top: 3px; width: 16px; height: 16px; accent-color: var(--orange); flex-shrink: 0; }
.form-alert {
  border-radius: 14px; padding: 14px 16px; font-size: 14.5px; font-weight: 600; display: none;
}
.form-alert.success { background: var(--tint-green); color: #3F6A2C; }
.form-alert.error { background: var(--tint-orange); color: var(--orange-darker); }
.form-alert.is-visible { display: block; }
.map-card {
  height: 260px; border-radius: 24px; background: var(--tint-neutral); overflow: hidden;
  position: relative;
}
.map-card iframe { width: 100%; height: 100%; border: 0; display: block; }
.visit-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 30px; }
.visit-card h3 { font-size: 22px; margin-bottom: 18px; }
.visit-card .row { font-size: 15.5px; line-height: 1.8; color: var(--muted); margin-bottom: 14px; }
.visit-card .row:last-child { margin-bottom: 0; }
.visit-card .row strong { display: block; color: var(--ink); }
.contact-cta-card { background: var(--ink); color: var(--off-white); border-radius: var(--radius-lg); padding: 28px; }
.contact-cta-card h3 { font-size: 20px; margin-bottom: 10px; color: var(--off-white); }
.contact-cta-card p { font-size: 15px; line-height: 1.65; color: rgba(255,247,239,0.75); margin-bottom: 18px; }

/* ---------- Legal pages ---------- */
.legal-wrap { max-width: 860px; margin: 0 auto; padding: 64px 24px 90px; }
.legal-wrap h1 { font-size: 44px; margin-bottom: 12px; }
.legal-wrap .updated { font-size: 14px; color: var(--muted-3); margin-bottom: 34px; }
.legal-body { font-size: 16px; line-height: 1.8; color: var(--body-text); display: flex; flex-direction: column; gap: 22px; }
.legal-body h2 { font-size: 24px; margin-top: 10px; }
.legal-callout { background: var(--cream); border-radius: 16px; padding: 20px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: var(--off-white); padding: 64px 24px 30px; margin-top: auto; }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,247,239,0.14);
}
.footer-brand { display: flex; align-items: center; gap: 11px; margin-bottom: 18px; }
.footer-brand-mark {
  width: 38px; height: 38px; border-radius: 12px; background: var(--orange); display: grid; place-items: center;
  font-family: var(--font-heading); font-weight: 800; font-size: 18px; color: var(--off-white);
}
.footer-brand-name { font-family: var(--font-heading); font-weight: 700; font-size: 20px; color: var(--off-white); }
.site-footer p { font-size: 14.5px; line-height: 1.7; color: rgba(255,247,239,0.68); margin-bottom: 18px; }
.footer-legalname { font-size: 13.5px; color: rgba(255,247,239,0.55); }
.footer-col h4 { font-size: 15px; color: var(--off-white); margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; font-size: 14.5px; }
.footer-links a { color: rgba(255,247,239,0.68); }
.footer-links a:hover { color: var(--off-white); }
.footer-contact { font-size: 14.5px; line-height: 1.8; color: rgba(255,247,239,0.68); }
.footer-contact a { color: var(--yellow); }
.footer-bottom {
  display: flex; justify-content: space-between; gap: 20px; padding-top: 22px; font-size: 13px;
  color: rgba(255,247,239,0.5); flex-wrap: wrap;
}

/* ---------- Cart drawer ---------- */
.cart-overlay {
  position: fixed; inset: 0; z-index: 90; display: none; justify-content: flex-end;
}
.cart-overlay.is-open { display: flex; }
.cart-backdrop { position: absolute; inset: 0; background: rgba(42,35,32,0.42); border: none; cursor: pointer; padding: 0; }
.cart-panel {
  position: relative; width: 420px; max-width: 92vw; height: 100%; background: var(--bg);
  box-shadow: -20px 0 50px rgba(42,35,32,0.2); display: flex; flex-direction: column;
  animation: cmsSlide 0.24s ease both;
}
.cart-head { padding: 24px 26px; border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; }
.cart-head h3 { font-size: 24px; }
.cart-close {
  width: 34px; height: 34px; border-radius: 999px; background: var(--cream-2); display: grid; place-items: center;
  cursor: pointer; font-size: 17px; color: var(--muted); border: none;
}
.cart-body { flex: 1; overflow-y: auto; padding: 22px 26px; display: flex; flex-direction: column; gap: 16px; }
.cart-empty { text-align: center; padding: 50px 10px; }
.cart-empty p { font-size: 16px; color: var(--muted-3); margin-bottom: 20px; }
.cart-line { display: grid; grid-template-columns: 64px 1fr auto; gap: 14px; align-items: center; background: var(--white); border: 1px solid var(--border); border-radius: 16px; padding: 14px; }
.cart-line-thumb { width: 64px; height: 64px; border-radius: 12px; background: var(--tint-neutral); overflow: hidden; }
.cart-line-thumb img { width: 100%; height: 100%; object-fit: cover; }
.cart-line-name { font-weight: 700; font-size: 14.5px; line-height: 1.35; margin-bottom: 6px; }
.cart-line-price { font-size: 13px; color: var(--muted-3); margin-bottom: 8px; }
.cart-line-controls { display: flex; align-items: center; gap: 8px; }
.qty-btn {
  width: 26px; height: 26px; border-radius: 8px; background: var(--cream-2); display: grid; place-items: center;
  cursor: pointer; font-weight: 700; border: none; color: var(--ink);
}
.qty-val { min-width: 20px; text-align: center; font-weight: 700; font-size: 14px; }
.remove-link { font-size: 12.5px; color: var(--pink); cursor: pointer; margin-left: 6px; text-decoration: underline; background: none; border: none; font-family: inherit; }
.cart-line-total { font-family: var(--font-heading); font-weight: 700; font-size: 16px; white-space: nowrap; }
.cart-order-done { background: var(--tint-green); color: #3F6A2C; border-radius: 16px; padding: 20px; font-size: 14.5px; line-height: 1.6; }
.cart-order-done strong { display: block; font-size: 16px; margin-bottom: 6px; }
.cart-foot { border-top: 1px solid var(--border); padding: 22px 26px; background: #FDFAF5; }
.cart-summary-row { display: flex; justify-content: space-between; font-size: 14.5px; color: var(--muted); margin-bottom: 8px; }
.cart-total-row { display: flex; justify-content: space-between; font-family: var(--font-heading); font-size: 22px; font-weight: 700; padding-top: 12px; border-top: 1px dashed var(--border-2); margin-bottom: 16px; }
.cart-foot .note { font-size: 12px; color: var(--muted-3); text-align: center; margin-top: 10px; }
.checkout-fields { display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px; }
.checkout-fields .field input { padding: 11px 12px; font-size: 14px; }
body.cart-open { overflow: hidden; }

/* ---------- WhatsApp floating button ---------- */
.whatsapp-fab {
  position: fixed; bottom: 24px; right: 24px; z-index: 70; padding: 14px 20px; border-radius: 999px;
  background: var(--green); color: var(--off-white); font-weight: 700; font-size: 14.5px; text-decoration: none;
  box-shadow: 0 10px 26px rgba(42,35,32,0.24); display: inline-flex; align-items: center; gap: 8px;
}
.whatsapp-fab:hover { color: var(--off-white); text-decoration: none; background: #4d7339; }

/* ---------- Cookie banner ---------- */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 80; background: var(--ink); color: var(--off-white);
  padding: 20px 24px; display: none;
}
.cookie-banner.is-visible { display: block; }
.cookie-banner .container { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.cookie-banner p { font-size: 14px; line-height: 1.6; color: rgba(255,247,239,0.8); flex: 1; min-width: 280px; }
.cookie-banner a { color: var(--yellow); font-weight: 700; text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.btn-cookie-reject {
  padding: 12px 20px; border-radius: 999px; border: 1.5px solid rgba(255,247,239,0.4); font-weight: 700;
  font-size: 14px; cursor: pointer; color: var(--off-white); background: transparent;
}
.btn-cookie-reject:hover { border-color: var(--off-white); }
.btn-cookie-accept {
  padding: 12px 20px; border-radius: 999px; background: var(--orange); color: var(--off-white); font-weight: 700;
  font-size: 14px; cursor: pointer; border: none;
}
.btn-cookie-accept:hover { background: var(--orange-dark); }

/* ---------- Toast (generic form feedback outside cards) ---------- */
.toast {
  position: fixed; bottom: 24px; left: 24px; z-index: 120; background: var(--ink); color: var(--off-white);
  padding: 14px 20px; border-radius: 14px; font-size: 14.5px; font-weight: 600; box-shadow: var(--shadow-card);
  display: none; max-width: 360px;
}
.toast.is-visible { display: block; animation: cmsIn 0.2s ease both; }

/* ---------- Mobile nav drawer ---------- */
.mobile-nav {
  position: fixed; inset: 0; z-index: 95; display: none;
}
.mobile-nav.is-open { display: block; }
.mobile-nav-backdrop { position: absolute; inset: 0; background: rgba(42,35,32,0.42); border: none; padding: 0; }
.mobile-nav-panel {
  position: relative; width: 300px; max-width: 86vw; height: 100%; background: var(--bg);
  box-shadow: 20px 0 50px rgba(42,35,32,0.2); padding: 24px; display: flex; flex-direction: column; gap: 4px;
  animation: cmsIn 0.2s ease both; overflow-y: auto;
}
.mobile-nav-close {
  align-self: flex-end; width: 34px; height: 34px; border-radius: 999px; background: var(--cream-2);
  display: grid; place-items: center; cursor: pointer; font-size: 17px; color: var(--muted); border: none; margin-bottom: 10px;
}
.mobile-nav-panel a {
  padding: 12px 10px; border-radius: 10px; font-size: 16px; font-weight: 700; color: var(--ink); text-decoration: none;
}
.mobile-nav-panel a:hover, .mobile-nav-panel a.is-active { background: var(--cream-2); }
.mobile-nav-panel .btn { margin-top: 14px; }

/* =====================================================================
   Responsive
   ===================================================================== */
@media (max-width: 1040px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .program-row { grid-template-columns: 1fr; }
  .program-row-media { height: 220px; }
  .info-panel { grid-template-columns: 1fr; }
  .discount-panel { grid-template-columns: 1fr; }
  .info-band { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
}

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding-top: 40px; }
  .hero h1 { font-size: 44px; }
  .about-hero { grid-template-columns: 1fr; }
  .about-media { height: 280px; order: -1; }
  .contact-grid { grid-template-columns: 1fr; }
  .cta-band { grid-template-columns: 1fr; padding: 40px 28px; border-radius: 22px; }
  .info-panel { padding: 28px; }
}

@media (max-width: 820px) {
  .main-nav { display: none; }
  .menu-toggle { display: flex; }
  .header-cta { display: none; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .schedule-row { grid-template-columns: 100px repeat(5, minmax(120px,1fr)); }
  .schedule-table { overflow-x: auto; }
  .schedule-table > div { min-width: 720px; }
}

@media (max-width: 640px) {
  .container, .section, .band-dark, .band-cream { padding-left: 18px; padding-right: 18px; }
  .page-hero, .contact-grid, .legal-wrap { padding-left: 18px; padding-right: 18px; }
  .hero { padding-left: 18px; padding-right: 18px; }
  .site-header .container { padding-left: 18px; padding-right: 18px; }
  .hero h1 { font-size: 34px; }
  .page-hero h1 { font-size: 34px; }
  .section-head h2 { font-size: 28px; }
  h2 { font-size: 28px !important; }
  .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-media { grid-template-columns: 1fr; grid-template-rows: 160px 160px 160px; }
  .media-tile.span-2 { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .form-row-2 { grid-template-columns: 1fr; }
  .cta-band h2 { font-size: 28px; }
  .footer-bottom { flex-direction: column; }
  .whatsapp-fab span.label { display: none; }
  .price-card { padding: 26px; }
  .program-row { padding: 22px; }
  .section { padding: 48px 18px; }
  .band-dark, .band-cream { padding: 48px 18px; }
}
