/* =========================================================
   CORE 3 STUDIO - Design System
   Brand palette (from Manual de marca):
   Lino Puro #E3D6C6 · Bosque Botánico #69705E · Ámbar Silvestre #BA8D56
   Bruma Mineral #A3A384 · Nuez Robusta #563313 · Negro Obsidiana #121212
   Type: Playfair Display (títulos) · Montserrat (cuerpo)
   ========================================================= */

/* ---------- Fonts (self-hosted, variable woff2) ---------- */
@font-face {
  font-family: "Playfair Display";
  src: url("../assets/fonts/PlayfairDisplay.woff2") format("woff2");
  font-weight: 400 900; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Playfair Display";
  src: url("../assets/fonts/PlayfairDisplay-Italic.woff2") format("woff2");
  font-weight: 400 900; font-style: italic; font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../assets/fonts/Montserrat.woff2") format("woff2");
  font-weight: 100 900; font-style: normal; font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
  --linen:        #E3D6C6;
  --linen-deep:   #D9CAB6;
  --paper:        #F1EAE0;
  --paper-soft:   #F6F1E9;
  --cream:        #FBF7F0;
  --forest:       #69705E;
  --forest-deep:  #565B4A;
  --amber:        #BA8D56;
  --amber-deep:   #A2743F;
  --mineral:      #A3A384;
  --nut:          #563313;
  --obsidian:     #16130F;
  --ink-soft:     #4A4640;
  --ink-mute:     #736C61;

  --font-serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-sans:  "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;

  --radius: 3px;
  --radius-lg: 4px;
  --wrap: 1280px;
  --wrap-wide: 1440px;
  --gutter: clamp(20px, 5vw, 72px);
  /* left/right inset that aligns full-bleed (hero/split) text columns
     with the centered .wrap-wide container edge */
  --pad-edge: max(var(--gutter), calc((100vw - var(--wrap-wide)) / 2 + var(--gutter)));

  --shadow-soft: 0 18px 48px -28px rgba(86, 51, 19, .38);
  --shadow-card: 0 24px 60px -34px rgba(86, 51, 19, .45);

  --ease: cubic-bezier(.16, 1, .3, 1);
  --dur: .7s;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-sans);
  color: var(--obsidian);
  background: var(--linen);
  line-height: 1.65;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: .01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: none; }
input, textarea, select { font: inherit; color: inherit; }
ul { list-style: none; padding: 0; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 500; line-height: 1.05; letter-spacing: -.01em; }
.eyebrow {
  font-family: var(--font-sans);
  font-size: 12px; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--amber-deep);
}
.section-title { font-size: clamp(2rem, 4.4vw, 3.4rem); }
.lede { font-size: clamp(1rem, 1.4vw, 1.12rem); color: var(--ink-soft); max-width: 54ch; }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.wrap-wide { width: 100%; max-width: var(--wrap-wide); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(64px, 9vw, 128px); }
.section-sm { padding-block: clamp(48px, 6vw, 88px); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6em;
  padding: 15px 30px;
  font-family: var(--font-sans); font-size: 12.5px; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  border-radius: var(--radius);
  transition: transform .25s var(--ease), background-color .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
  will-change: transform;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--forest); color: var(--cream); }
.btn-primary:hover { background: var(--forest-deep); transform: translateY(-2px); }
.btn-dark { background: var(--obsidian); color: var(--cream); }
.btn-dark:hover { background: #2a251e; transform: translateY(-2px); }
.btn-amber { background: var(--amber); color: var(--obsidian); }
.btn-amber:hover { background: var(--amber-deep); color: var(--cream); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--obsidian); border: 1px solid rgba(86,51,19,.35); }
.btn-ghost:hover { background: var(--obsidian); color: var(--cream); border-color: var(--obsidian); transform: translateY(-2px); }
.btn-ghost-light { background: transparent; color: var(--cream); border: 1px solid rgba(251,247,240,.4); }
.btn-ghost-light:hover { background: var(--cream); color: var(--obsidian); transform: translateY(-2px); }
.btn-block { width: 100%; }

/* text link with animated underline */
.link-underline {
  position: relative; display: inline-flex; align-items: center; gap: .5em;
  font-size: 12.5px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  padding-bottom: 4px;
}
.link-underline::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 100%;
  background: currentColor; transform: scaleX(0); transform-origin: left;
  transition: transform .4s var(--ease);
}
.link-underline:hover::after { transform: scaleX(1); }
.link-underline svg { transition: transform .3s var(--ease); }
.link-underline:hover svg { transform: translateX(4px); }

/* ---------- Logo mark ---------- */
.logo-mark { display: inline-flex; align-items: center; }
.logo-lockup { display: inline-flex; flex-direction: column; align-items: center; gap: 6px; line-height: 1; }
.logo-lockup .mark { width: 46px; }
.logo-lockup .word { font-family: var(--font-serif); font-weight: 500; font-size: 20px; letter-spacing: .12em; }
.logo-lockup .word b { font-weight: 500; }
.logo-lockup .word .three { color: var(--amber-deep); font-weight: 600; }
.logo-lockup .sub {
  font-family: var(--font-sans); font-size: 8.5px; font-weight: 600;
  letter-spacing: .42em; text-transform: uppercase; color: var(--ink-mute);
  display: flex; align-items: center; gap: 7px;
}
.logo-lockup .sub::before, .logo-lockup .sub::after { content:""; width: 14px; height: 1px; background: var(--amber); }
.logo-mark svg .mc { fill: var(--obsidian); transition: fill .3s var(--ease); }
.logo-mark svg .d1 { fill: var(--obsidian); }
.logo-mark svg .d2 { fill: var(--forest); }
.logo-mark svg .d3 { fill: var(--amber); }
/* cream variant on dark backgrounds */
.on-dark .logo-mark svg .mc { fill: var(--cream); }
.on-dark .logo-mark svg .d1 { fill: var(--cream); }
.on-dark .logo-lockup .word { color: var(--cream); }
.on-dark .logo-lockup .word .three { color: var(--amber); }
.on-dark .logo-lockup .sub { color: rgba(251,247,240,.7); }

/* ---------- Announcement bar ---------- */
.announce {
  background: var(--forest); color: var(--cream);
  font-size: 11px; font-weight: 600; letter-spacing: .13em; text-transform: uppercase;
}
.announce .wrap-wide { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 20px; padding-block: 11px; }
.announce .a-main { text-align: center; }
.announce .a-right { justify-self: end; color: rgba(251,247,240,.72); white-space: nowrap; }
@media (max-width: 860px){
  .announce .wrap-wide { grid-template-columns: 1fr; }
  .announce .a-side, .announce .a-right { display: none; }
  .announce .a-main { text-align: center; }
}

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(240,233,222,.86);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid rgba(86,51,19,.09);
  transition: background .3s var(--ease), box-shadow .3s var(--ease);
}
.site-header.scrolled { background: rgba(240,233,222,.96); box-shadow: 0 10px 30px -22px rgba(86,51,19,.5); }
.nav { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 24px; padding-block: 14px; }
.nav-left, .nav-right { display: flex; align-items: center; gap: clamp(18px, 1.9vw, 30px); flex-wrap: nowrap; }
.nav-right { justify-content: flex-end; }
.nav a.nav-link {
  font-size: 12px; font-weight: 600; letter-spacing: .13em; text-transform: uppercase;
  position: relative; padding-block: 6px; color: var(--ink-soft); white-space: nowrap;
  transition: color .25s var(--ease);
}
.nav a.nav-link::after {
  content:""; position: absolute; left:0; bottom: 0; height: 1px; width: 100%;
  background: var(--amber-deep); transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--ease);
}
.nav a.nav-link:hover { color: var(--obsidian); }
.nav a.nav-link:hover::after { transform: scaleX(1); }
.nav-center { justify-self: center; }
.nav-center .logo-lockup .mark { width: 40px; }
.nav-center .logo-lockup .word { font-size: 17px; }
.nav-cta { display: inline-flex; align-items: center; gap: clamp(14px, 1.6vw, 18px); flex: none; }
.header-login { font-size: 12px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); white-space: nowrap; }
.header-login:hover { color: var(--obsidian); }
.header-icon { display: inline-grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(86,51,19,.24); color: var(--ink-soft); transition: background-color .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease); }
.header-icon:hover { background: var(--obsidian); border-color: var(--obsidian); color: var(--cream); }
.header-icon svg { display: block; }
.btn-nav { padding: 12px 22px; font-size: 11px; }
.nav-toggle { display: none; }

/* ---------- Hero ---------- */
.hero { background: var(--paper); position: relative; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1fr 1.05fr; min-height: min(88vh, 820px); }
.hero-grid > * { min-width: 0; }
.hero-copy { display: flex; flex-direction: column; justify-content: center; padding-block: clamp(40px, 6vw, 96px); padding-inline: var(--pad-edge) clamp(30px, 4vw, 64px); }
.hero-copy .eyebrow { margin-bottom: 22px; }
.hero h1 { font-size: clamp(2.9rem, 6.4vw, 5.3rem); line-height: .98; font-weight: 500; }
.hero h1 .accent { color: var(--amber-deep); font-style: italic; }
.hero .rule { width: 54px; height: 2px; background: var(--amber); margin: 28px 0 24px; }
.hero p.lede { font-size: clamp(1rem, 1.3vw, 1.14rem); }
.hero-actions { display: flex; align-items: center; gap: 26px; margin-top: 38px; flex-wrap: wrap; }
.hero-media { position: relative; overflow: hidden; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-media .kb { transform: scale(1.06); animation: kenburns 18s ease-out forwards; }
@keyframes kenburns { to { transform: scale(1); } }
@media (prefers-reduced-motion: reduce){ .hero-media .kb { animation: none; transform: none; } }
.hero-badge {
  position: absolute; left: clamp(20px,4vw,44px); bottom: clamp(20px,4vw,40px);
  background: rgba(240,233,222,.9); backdrop-filter: blur(6px);
  padding: 14px 20px; border-radius: var(--radius); font-size: 11px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase; color: var(--nut);
  display: flex; align-items: center; gap: 10px; box-shadow: var(--shadow-soft);
}
.hero-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--amber); }

@media (max-width: 820px){
  .hero-grid { grid-template-columns: 1fr; min-height: 0; }
  .hero-copy { padding-block: 44px 40px; padding-inline: var(--gutter); }
  .hero-media { min-height: 380px; }
  .hero h1 { font-size: clamp(3rem, 13vw, 4rem); }
}

/* ---------- Values strip ---------- */
.values { background: var(--amber); color: var(--obsidian); }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(24px, 4vw, 60px); padding-block: clamp(36px, 4.5vw, 56px); }
.value { display: flex; gap: 18px; align-items: flex-start; }
.value .v-ic { flex: none; width: 40px; height: 40px; color: var(--nut); }
.value .v-ic svg { width: 100%; height: 100%; stroke: currentColor; fill: none; stroke-width: 1.4; }
.value h3 { font-family: var(--font-sans); font-size: 12px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 8px; }
.value p { font-size: 14.5px; color: #3d3320; line-height: 1.5; max-width: 30ch; }
@media (max-width: 860px){ .values-grid { grid-template-columns: 1fr; gap: 26px; } }

/* ---------- Section head ---------- */
.section-head { max-width: 60ch; margin-bottom: clamp(36px, 5vw, 60px); }
.section-head .eyebrow { display: block; margin-bottom: 16px; }
.section-head p { margin-top: 14px; color: var(--ink-soft); }
.section-head.center { margin-inline: auto; text-align: center; }

/* ---------- Disciplines ---------- */
.disciplines { background: var(--linen); }
.disc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 1.6vw, 22px); }
.disc {
  background: var(--paper-soft); border-radius: var(--radius-lg); overflow: hidden;
  display: flex; flex-direction: column; box-shadow: var(--shadow-soft);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.disc:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.disc-media { aspect-ratio: 4/5; overflow: hidden; }
.disc-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.disc:hover .disc-media img { transform: scale(1.05); }
.disc-body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.disc-body h3 { font-size: 1.35rem; }
.disc-body p { font-size: 14px; color: var(--ink-soft); margin-top: 8px; }
.disc-toggle {
  margin-top: 18px; display: inline-flex; align-items: center; justify-content: space-between;
  width: 100%; font-size: 11.5px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  color: var(--nut); padding-top: 16px; border-top: 1px solid rgba(86,51,19,.14);
}
.disc-toggle .chev { transition: transform .4s var(--ease); }
.disc.open .disc-toggle .chev { transform: rotate(180deg); }
.disc-panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .45s var(--ease); }
.disc.open .disc-panel { grid-template-rows: 1fr; }
.disc-panel-inner { overflow: hidden; }
.disc-panel ul { margin-top: 14px; display: flex; flex-direction: column; gap: 10px; }
.disc-panel li { display: flex; justify-content: space-between; gap: 12px; font-size: 13.5px; color: var(--ink-soft); padding-bottom: 10px; border-bottom: 1px dashed rgba(86,51,19,.16); }
.disc-panel li span:last-child { color: var(--nut); font-weight: 600; white-space: nowrap; }
.disc-panel .note { margin-top: 12px; font-size: 12px; color: var(--ink-mute); font-style: italic; }
.disc-more { display: flex; justify-content: center; margin-top: clamp(30px, 4vw, 46px); }
@media (max-width: 1040px){ .disc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px){ .disc-grid { grid-template-columns: 1fr; } }

/* ---------- Lead capture ---------- */
.lead { background: var(--paper); }
.lead-grid { display: grid; grid-template-columns: 1.02fr 1fr; align-items: stretch; }
.lead-grid > * { min-width: 0; }
.lead-media { position: relative; overflow: hidden; min-height: 420px; }
.lead-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.lead-media .lead-tag {
  position: absolute; left: 28px; bottom: 28px; z-index: 2;
  background: rgba(22,19,15,.72); color: var(--cream); backdrop-filter: blur(6px);
  padding: 16px 20px; border-radius: var(--radius); max-width: 260px;
}
.lead-media .lead-tag strong { display:block; font-family: var(--font-serif); font-size: 1.15rem; font-weight: 500; margin-bottom: 4px; }
.lead-media .lead-tag span { font-size: 12px; letter-spacing: .04em; color: rgba(251,247,240,.82); }
.lead-form-wrap { padding-block: clamp(36px, 5vw, 72px); padding-inline: clamp(30px, 4vw, 64px) var(--pad-edge); display: flex; flex-direction: column; justify-content: center; }
@media (max-width: 820px){
  .lead-grid { grid-template-columns: 1fr; }
  .lead-media { min-height: 280px; }
  .lead-form-wrap { padding-inline: var(--gutter); }
}
.lead-form-wrap .eyebrow { margin-bottom: 14px; }
.lead-form-wrap h2 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); }
.lead-form-wrap > p { color: var(--ink-soft); margin-top: 14px; max-width: 46ch; }
form .field { display: flex; flex-direction: column; gap: 7px; margin-top: 18px; }
form label { font-size: 11.5px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-soft); }
form label .req { color: var(--amber-deep); }
.input, textarea.input, select.input {
  width: 100%; padding: 13px 15px; background: var(--cream);
  border: 1px solid rgba(86,51,19,.2); border-radius: var(--radius); font-size: 15px;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.input::placeholder { color: #a99e8d; }
.input:focus, textarea.input:focus, select.input:focus {
  outline: none; border-color: var(--amber-deep);
  box-shadow: 0 0 0 3px rgba(186,141,86,.2);
}
textarea.input { resize: vertical; min-height: 120px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 480px){ .field-row { grid-template-columns: 1fr; } }
.form-hint { font-size: 12px; color: var(--ink-mute); margin-top: 8px; }
.form-error { display: none; font-size: 12px; color: #9a3412; margin-top: 6px; }
.field.invalid .input { border-color: #b45309; box-shadow: 0 0 0 3px rgba(180,83,9,.14); }
.field.invalid .form-error { display: block; }
.lead-actions { margin-top: 26px; }

/* progressive optional block */
.lead-optional {
  display: grid; grid-template-rows: 0fr; transition: grid-template-rows .55s var(--ease), opacity .5s var(--ease);
  opacity: 0;
}
.lead-optional.show { grid-template-rows: 1fr; opacity: 1; margin-top: 8px; }
.lead-optional-inner { overflow: hidden; }
.opt-divider { display: flex; align-items: center; gap: 14px; margin: 26px 0 6px; color: var(--ink-mute); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; }
.opt-divider::before, .opt-divider::after { content:""; height: 1px; background: rgba(86,51,19,.18); flex: 1; }

/* chips (multi/single select) */
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 10px; }
.chip { position: relative; }
.chip input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.chip span {
  display: inline-flex; padding: 9px 16px; border-radius: 999px; font-size: 12.5px; font-weight: 600;
  letter-spacing: .04em; background: var(--cream); border: 1px solid rgba(86,51,19,.2);
  color: var(--ink-soft); transition: all .25s var(--ease); user-select: none;
}
.chip input:checked + span { background: var(--forest); border-color: var(--forest); color: var(--cream); }
.chip input:focus-visible + span { box-shadow: 0 0 0 3px rgba(186,141,86,.35); }
.chip:hover span { border-color: var(--amber-deep); }

/* checkbox */
.check { display: flex; align-items: flex-start; gap: 12px; margin-top: 22px; cursor: pointer; }
.check input { position: absolute; opacity: 0; }
.check .box {
  flex: none; width: 20px; height: 20px; border: 1px solid rgba(86,51,19,.4); border-radius: 4px;
  background: var(--cream); display: grid; place-items: center; margin-top: 2px; transition: all .2s var(--ease);
}
.check .box svg { width: 12px; height: 12px; stroke: var(--cream); stroke-width: 3; fill: none; opacity: 0; transition: opacity .2s; }
.check input:checked + .box { background: var(--forest); border-color: var(--forest); }
.check input:checked + .box svg { opacity: 1; }
.check input:focus-visible + .box { box-shadow: 0 0 0 3px rgba(186,141,86,.35); }
.check span.lbl { font-size: 13.5px; color: var(--ink-soft); }

/* success */
.form-success { display: none; text-align: center; padding: 20px 0; }
.form-success.show { display: block; animation: fadeUp .6s var(--ease) both; }
.form-success .ok { width: 58px; height: 58px; margin: 0 auto 18px; border-radius: 50%; background: var(--forest); display: grid; place-items: center; }
.form-success .ok svg { width: 26px; height: 26px; stroke: var(--cream); stroke-width: 2.4; fill: none; }
.form-success h3 { font-size: 1.7rem; }
.form-success p { color: var(--ink-soft); margin-top: 10px; }

/* ---------- Bonos ---------- */
.bonos { background: var(--forest); color: var(--cream); }
.bonos-grid { display: grid; grid-template-columns: .9fr 2.4fr; gap: clamp(30px, 4vw, 64px); align-items: center; }
.bonos-intro h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); color: var(--cream); }
.bonos-intro .eyebrow { color: var(--amber); }
.bonos-intro p { color: rgba(251,247,240,.78); margin-top: 16px; max-width: 34ch; font-size: 15px; }
.bonos-intro .link-underline { margin-top: 24px; color: var(--cream); }
.bono-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.bono {
  background: rgba(251,247,240,.06); border: 1px solid rgba(251,247,240,.16);
  border-radius: var(--radius-lg); padding: 24px 20px; text-align: center;
  transition: transform .4s var(--ease), background-color .4s var(--ease), border-color .4s var(--ease);
}
.bono:hover { transform: translateY(-6px); background: rgba(251,247,240,.12); border-color: rgba(186,141,86,.6); }
.bono .tier { font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--amber); }
.bono .price { font-family: var(--font-serif); font-size: 2.5rem; font-weight: 500; margin: 14px 0 2px; }
.bono .per { font-size: 12px; color: rgba(251,247,240,.6); letter-spacing: .05em; }
.bono .btn { margin-top: 20px; }
.bono.featured { background: var(--amber); border-color: var(--amber); color: var(--obsidian); }
.bono.featured .tier { color: var(--nut); }
.bono.featured .per { color: rgba(22,19,15,.6); }
.bono-foot { margin-top: 22px; font-size: 12px; color: rgba(251,247,240,.6); text-align: center; }
@media (max-width: 980px){ .bonos-grid { grid-template-columns: 1fr; } .bono-cards { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 480px){ .bono-cards { grid-template-columns: 1fr; } }

/* ---------- Feature split (founders / regalo / about) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; }
.split > * { min-width: 0; }
.split.reverse .split-media { order: 2; }
.split-media { position: relative; overflow: hidden; min-height: 440px; }
.split-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.split-copy { display: flex; flex-direction: column; justify-content: center; padding-block: clamp(44px, 6vw, 96px); padding-inline: var(--pad-edge) clamp(28px, 5vw, 64px); }
.split.reverse .split-copy { padding-inline: clamp(28px, 5vw, 64px) var(--pad-edge); }
.split-copy .eyebrow { margin-bottom: 16px; }
.split-copy h2 { font-size: clamp(1.9rem, 3.8vw, 3rem); }
.split-copy p { color: var(--ink-soft); margin-top: 18px; max-width: 46ch; }
.split-copy .actions { margin-top: 32px; display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.founders-split { background: var(--paper); }
.split-forest { background: var(--forest); }
.split-forest .split-copy .eyebrow { color: var(--amber); }
.split-forest .split-copy h2 { color: var(--cream); }
.split-forest .split-copy p { color: rgba(251,247,240,.82); }
.split-forest .split-copy .link-underline { color: var(--cream); }
.founders-split .split-media .watermark { position: absolute; top: 30px; left: 30px; width: 70px; opacity: .9; z-index: 2; }
.regalo-split { background: var(--linen); }
@media (max-width: 860px){
  .split { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: 0; }
  .split-media { min-height: 320px; }
  .split-copy, .split.reverse .split-copy { padding-inline: var(--gutter); }
}

/* ---------- Founders promo banner ---------- */
.founders-banner { background: var(--linen); }
.fb-inner {
  background: var(--paper-soft); border-radius: var(--radius-lg); overflow: hidden;
  display: grid; grid-template-columns: 1fr 1.1fr; box-shadow: var(--shadow-soft);
}
.fb-media { position: relative; min-height: 380px; }
.fb-media img { position:absolute; inset:0; width:100%; height:100%; object-fit: cover; }
.fb-media .watermark { position: absolute; top: 26px; left: 26px; width: 66px; z-index: 2; }
.fb-copy { padding: clamp(36px, 4.6vw, 72px); display: flex; flex-direction: column; justify-content: center; }
.fb-copy .eyebrow { color: var(--amber-deep); }
.fb-copy h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); margin-top: 14px; }
.fb-copy p { color: var(--ink-soft); margin-top: 16px; max-width: 42ch; }
.fb-cup { margin-top: 20px; display: inline-flex; align-items: center; gap: 10px; font-size: 12.5px; font-weight: 600; letter-spacing: .06em; color: var(--nut); }
.fb-cup .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--amber); box-shadow: 0 0 0 4px rgba(186,141,86,.22); }
.fb-copy .actions { margin-top: 30px; }
@media (max-width: 860px){ .fb-inner { grid-template-columns: 1fr; } .fb-media { min-height: 300px; } }

/* ---------- Founder benefit cards (core-founders page) ---------- */
.benefit-list { display: grid; gap: 14px; max-width: 860px; margin-inline: auto; }
.benefit {
  background: var(--paper-soft); border: 1px solid rgba(86,51,19,.12); border-radius: var(--radius-lg);
  overflow: hidden; transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.benefit.open { border-color: rgba(186,141,86,.5); box-shadow: var(--shadow-soft); }
.benefit-head { width: 100%; display: flex; align-items: center; gap: 20px; padding: 24px 28px; text-align: left; }
.benefit-head .idx { font-family: var(--font-serif); font-size: 1.1rem; color: var(--amber-deep); flex: none; width: 26px; }
.benefit-head h3 { font-size: clamp(1.15rem, 2vw, 1.5rem); flex: 1; }
.benefit-head .plus { flex: none; width: 26px; height: 26px; position: relative; }
.benefit-head .plus::before, .benefit-head .plus::after { content:""; position:absolute; top:50%; left:50%; background: var(--nut); transition: transform .4s var(--ease); }
.benefit-head .plus::before { width: 16px; height: 1.5px; transform: translate(-50%,-50%); }
.benefit-head .plus::after { width: 1.5px; height: 16px; transform: translate(-50%,-50%); }
.benefit.open .plus::after { transform: translate(-50%,-50%) rotate(90deg); opacity: 0; }
.benefit-panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .45s var(--ease); }
.benefit.open .benefit-panel { grid-template-rows: 1fr; }
.benefit-panel-inner { overflow: hidden; }
.benefit-panel p { padding: 0 28px 26px 74px; color: var(--ink-soft); max-width: 62ch; }
@media (max-width: 560px){ .benefit-panel p { padding-left: 28px; } }

/* ---------- Comparativa de bonos ---------- */
.comparativa { background: var(--linen); }
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.compare-table { width: 100%; min-width: 720px; border-collapse: collapse; background: var(--paper-soft); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-soft); }
.compare-table th, .compare-table td { padding: 17px 20px; text-align: center; border-bottom: 1px solid rgba(86,51,19,.12); }
.compare-table thead th { vertical-align: bottom; background: var(--paper); border-bottom: 1px solid rgba(86,51,19,.2); }
.compare-table .rowlabel, .compare-table tbody th[scope=row] { text-align: left; font-family: var(--font-sans); font-weight: 600; font-size: 13.5px; color: var(--ink-soft); }
.compare-table .th-note { font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-mute); }
.compare-table .plan { display: block; font-family: var(--font-serif); font-size: 1.2rem; color: var(--obsidian); }
.compare-table .plan-price { display: block; margin-top: 5px; font-size: 13px; color: var(--nut); font-weight: 600; }
.compare-table .plan-price small { color: var(--ink-mute); font-weight: 400; }
.compare-table td.feat, .compare-table th.feat { background: rgba(186,141,86,.13); }
.compare-table thead th.feat { background: var(--amber); }
.compare-table thead th.feat .plan, .compare-table thead th.feat .plan-price { color: var(--obsidian); }
.compare-table thead th.feat .plan-price small { color: rgba(22,19,15,.6); }
.compare-table .hint { font-size: 11px; color: var(--ink-mute); font-weight: 400; }
.compare-table tbody tr:last-child td, .compare-table tbody tr:last-child th { border-bottom: none; }
.compare-table .yes { display: inline-block; width: 22px; height: 22px; position: relative; }
.compare-table .yes::after { content: ""; position: absolute; left: 50%; top: 50%; width: 13px; height: 7px; border-left: 2px solid var(--forest); border-bottom: 2px solid var(--forest); transform: translate(-50%,-68%) rotate(-45deg); }
.compare-table .cta-row td { padding-top: 22px; padding-bottom: 22px; }
.compare-foot { text-align: center; max-width: 64ch; margin: 22px auto 0; font-size: 13px; color: var(--ink-mute); }

/* ---------- Instagram ---------- */
.ig-section { background: var(--linen); padding-top: clamp(48px, 6vw, 84px); }
.ig-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: clamp(24px, 3vw, 36px); gap: 20px; flex-wrap: wrap; }
.ig-head .eyebrow { color: var(--amber-deep); display: block; }
.ig-head h3 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); margin-top: 8px; }
.ig-follow { padding: 13px 26px; }
.ig-grid { display: grid; grid-template-columns: repeat(6, 1fr); width: 100%; }
.ig-item { position: relative; aspect-ratio: 4/5; overflow: hidden; display: block; }
.ig-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.ig-item::after { content: ""; position: absolute; inset: 0; background: rgba(22,19,15,0); transition: background .4s var(--ease); z-index: 1; }
.ig-ov { position: absolute; inset: 0; display: grid; place-items: center; opacity: 0; transition: opacity .4s var(--ease); z-index: 2; }
.ig-glyph { width: clamp(24px, 1.9vw, 30px); height: clamp(24px, 1.9vw, 30px); color: #fff; transform: scale(.82); transition: transform .4s var(--ease); filter: drop-shadow(0 2px 8px rgba(0,0,0,.35)); }
.ig-item:hover img { transform: scale(1.06); }
.ig-item:hover::after { background: rgba(22,19,15,.4); }
.ig-item:hover .ig-ov { opacity: 1; }
.ig-item:hover .ig-glyph { transform: scale(1); }
.ig-item:focus-visible { outline: 3px solid var(--amber); outline-offset: -3px; }
@media (hover: none){
  .ig-item::after { background: linear-gradient(transparent 58%, rgba(22,19,15,.32)); }
  .ig-ov { opacity: 1; align-items: end; padding-bottom: 12px; }
  .ig-glyph { transform: scale(1); width: 28px; height: 28px; }
}
@media (max-width: 1000px){ .ig-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px){ .ig-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Footer ---------- */
.site-footer { background: var(--linen); color: var(--ink-soft); padding-top: clamp(40px, 5vw, 60px); padding-bottom: 36px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: clamp(28px, 4vw, 56px); padding-block: clamp(30px, 4vw, 48px); border-top: 1px solid rgba(86,51,19,.14); }
.footer-brand .logo-lockup { align-items: flex-start; }
.footer-brand p { font-size: 13.5px; margin-top: 18px; max-width: 30ch; line-height: 1.6; }
.footer-col h4 { font-family: var(--font-sans); font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--nut); margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a, .footer-col li { font-size: 13.5px; color: var(--ink-soft); transition: color .25s var(--ease); }
.footer-col a:hover { color: var(--obsidian); }
.footer-social { display: flex; gap: 12px; margin-top: 18px; }
.footer-social a { width: 38px; height: 38px; border: 1px solid rgba(86,51,19,.25); border-radius: 50%; display: grid; place-items: center; transition: all .25s var(--ease); }
.footer-social a:hover { background: var(--obsidian); border-color: var(--obsidian); color: var(--cream); }
.footer-social svg { width: 17px; height: 17px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding-top: 26px; border-top: 1px solid rgba(86,51,19,.14); font-size: 12px; color: var(--ink-mute); }
.footer-bottom .fb-links { display: flex; gap: 20px; }
@media (max-width: 860px){ .footer-top { grid-template-columns: 1fr 1fr; } .footer-brand { grid-column: 1 / -1; } .footer-bottom { flex-direction: column; text-align: center; } }

/* ---------- Page hero (interior pages) ---------- */
.page-hero { background: var(--paper); position: relative; overflow: hidden; }
.page-hero .wrap { padding-block: clamp(56px, 8vw, 104px); position: relative; z-index: 2; }
.page-hero .eyebrow { display:block; margin-bottom: 16px; }
.page-hero h1 { font-size: clamp(2.4rem, 5.4vw, 4.2rem); max-width: 16ch; }
.page-hero p { margin-top: 20px; color: var(--ink-soft); max-width: 52ch; font-size: 1.05rem; }
.page-hero .wm { position: absolute; right: -40px; top: 50%; transform: translateY(-50%); width: 340px; opacity: .06; z-index: 1; }

/* ---------- Calendar widget placeholder ---------- */
.cal-panel { background: var(--paper-soft); border: 1px solid rgba(86,51,19,.12); border-radius: var(--radius-lg); padding: clamp(20px, 3vw, 30px); box-shadow: var(--shadow-soft); margin-bottom: 30px; }
.cal-panel-head { display: flex; justify-content: space-between; align-items: center; gap: 16px; margin-bottom: 20px; }
.cal-panel-head h3 { font-family: var(--font-serif); font-weight: 500; font-size: 1.3rem; }
.cal-reset { display: inline-flex; align-items: center; gap: 7px; font-size: 12px; font-weight: 600; letter-spacing: .06em; color: var(--ink-soft); transition: color .25s var(--ease); }
.cal-reset svg { transition: transform .5s var(--ease); }
.cal-reset:hover { color: var(--nut); }
.cal-reset:hover svg { transform: rotate(-180deg); }
.cal-filters { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.cal-field { display: flex; flex-direction: column; gap: 8px; }
.cal-field > label { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); }
.select-wrap { position: relative; }
.select-wrap select { appearance: none; -webkit-appearance: none; -moz-appearance: none; width: 100%; padding: 13px 42px 13px 16px; background: var(--cream); border: 1px solid rgba(86,51,19,.22); border-radius: var(--radius); font-size: 14.5px; color: var(--obsidian); cursor: pointer; transition: border-color .25s var(--ease), box-shadow .25s var(--ease); }
.select-wrap select:hover { border-color: rgba(86,51,19,.42); }
.select-wrap select:focus { outline: none; border-color: var(--amber-deep); box-shadow: 0 0 0 3px rgba(186,141,86,.2); }
.select-wrap select:focus + .select-chev { color: var(--amber-deep); transform: translateY(-50%) rotate(180deg); }
.select-chev { position: absolute; right: 15px; top: 50%; transform: translateY(-50%); width: 16px; height: 16px; pointer-events: none; color: var(--nut); transition: transform .3s var(--ease), color .25s var(--ease); }
@media (max-width: 820px){ .cal-filters { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px){ .cal-filters { grid-template-columns: 1fr; } .cal-panel-head { flex-wrap: wrap; } }
.widget-embed {
  border: 1px dashed rgba(86,51,19,.32); border-radius: var(--radius-lg); background: var(--paper-soft);
  padding: clamp(40px, 7vw, 90px) 24px; text-align: center; color: var(--ink-mute);
}
.widget-embed .wic { display: block; width: 52px; height: 52px; margin: 0 auto 20px; color: var(--amber-deep); }
.widget-embed .wic svg { width: 100%; height: 100%; stroke: currentColor; fill: none; stroke-width: 1.3; }
.widget-embed h3 { font-family: var(--font-sans); font-size: 13px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--nut); }
.widget-embed p { max-width: 46ch; margin: 12px auto 0; font-size: 14px; }
.widget-embed code { background: var(--linen-deep); padding: 2px 7px; border-radius: 3px; font-size: 12.5px; color: var(--nut); }

/* ---------- Contacto ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 72px); align-items: start; }
.contact-info .info-item { display: flex; gap: 16px; padding: 20px 0; border-bottom: 1px solid rgba(86,51,19,.14); }
.contact-info .info-item:first-child { padding-top: 0; }
.contact-info .ic { flex: none; width: 22px; color: var(--amber-deep); margin-top: 3px; }
.contact-info .ic svg { width: 100%; stroke: currentColor; fill: none; stroke-width: 1.5; }
.contact-info h4 { font-family: var(--font-sans); font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--nut); margin-bottom: 4px; }
.contact-info p, .contact-info a { font-size: 15px; color: var(--ink-soft); }
.contact-info a:hover { color: var(--obsidian); }
.map-embed { margin-top: 30px; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid rgba(86,51,19,.14); }
.map-embed iframe { display: block; width: 100%; height: 300px; border: 0; filter: saturate(.85) sepia(.08); }
@media (max-width: 860px){ .contact-grid { grid-template-columns: 1fr; } }

/* ---------- Quote block ---------- */
.quote-block { background: var(--forest); color: var(--cream); text-align: center; }
.quote-block .wrap { max-width: 900px; }
.quote-block .mark-q { font-family: var(--font-serif); font-size: 4rem; line-height: .4; color: var(--amber); display: block; margin-bottom: 20px; }
.quote-block blockquote { font-family: var(--font-serif); font-size: clamp(1.5rem, 3.4vw, 2.5rem); font-weight: 500; font-style: italic; line-height: 1.25; }
.quote-block cite { display: block; margin-top: 24px; font-family: var(--font-sans); font-style: normal; font-size: 12px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: rgba(251,247,240,.7); }

/* ---------- About feature list ---------- */
.pillars { background: var(--paper); }
.feature-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(22px, 3vw, 44px); }
.feature-item { padding-top: 22px; border-top: 2px solid var(--amber); }
.feature-item h4 { font-family: var(--font-serif); font-weight: 500; font-size: clamp(1.15rem, 1.5vw, 1.4rem); line-height: 1.15; margin-bottom: 10px; }
.feature-item p { font-size: 14px; color: var(--ink-soft); max-width: 28ch; }
@media (max-width: 820px){ .feature-row { grid-template-columns: 1fr 1fr; gap: 30px 26px; } }
@media (max-width: 480px){ .feature-row { grid-template-columns: 1fr; gap: 26px; } }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); will-change: opacity, transform; }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; } .reveal.d4 { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce){ .reveal { opacity: 1 !important; transform: none !important; transition: none; } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }

/* ---------- Mobile nav ---------- */
@media (max-width: 1200px){
  .nav { grid-template-columns: auto 1fr auto; }
  .nav-left { display: none; }
  .nav-right .nav-link { display: none; }
  .nav-center { justify-self: start; }
  .nav-toggle { display: inline-flex; flex-direction: column; gap: 5px; width: 42px; height: 42px; align-items: center; justify-content: center; order: -1; }
  .nav-toggle span { width: 22px; height: 1.6px; background: var(--obsidian); transition: transform .35s var(--ease), opacity .35s var(--ease); }
  .nav.open .nav-toggle span:nth-child(1){ transform: translateY(6.6px) rotate(45deg); }
  .nav.open .nav-toggle span:nth-child(2){ opacity: 0; }
  .nav.open .nav-toggle span:nth-child(3){ transform: translateY(-6.6px) rotate(-45deg); }
  .mobile-menu {
    position: fixed; inset: 0 0 0 auto; width: min(360px, 84vw); background: var(--paper);
    z-index: 60; transform: translateX(100%); transition: transform .45s var(--ease);
    display: flex; flex-direction: column; padding: 90px 34px 34px; gap: 4px; box-shadow: var(--shadow-card);
  }
  .mobile-menu.open { transform: translateX(0); }
  .mobile-menu a { font-family: var(--font-serif); font-size: 1.5rem; padding: 12px 0; border-bottom: 1px solid rgba(86,51,19,.12); }
  .mobile-menu .m-actions { margin-top: 20px; display: flex; flex-direction: column; gap: 12px; }
  .mobile-overlay { position: fixed; inset: 0; background: rgba(22,19,15,.4); z-index: 55; opacity: 0; pointer-events: none; transition: opacity .4s var(--ease); }
  .mobile-overlay.open { opacity: 1; pointer-events: auto; }
  .m-close { position: absolute; top: 26px; right: 26px; width: 40px; height: 40px; font-size: 26px; }
}
@media (min-width: 1201px){ .mobile-menu, .mobile-overlay { display: none; } }

/* hide desktop nav-cta text on small */
@media (max-width: 1200px){ .header-login { display: none; } }
@media (max-width: 560px){ .btn-nav { padding: 11px 16px; font-size: 10px; } }

/* ============================================================
   Header v2 (hamburguesa) + Menú full-screen
   ============================================================ */
.nav { grid-template-columns: 1fr auto 1fr; gap: 16px; }
.menu-btn { justify-self: start; display: inline-flex; align-items: center; gap: 12px; color: var(--obsidian); }
.menu-ico { display: inline-flex; flex-direction: column; justify-content: center; gap: 5px; width: 26px; height: 16px; }
.menu-ico span { display: block; height: 1.7px; width: 100%; background: currentColor; transition: width .3s var(--ease); }
.menu-btn:hover .menu-ico span:nth-child(1) { width: 62%; }
.menu-btn:hover .menu-ico span:nth-child(3) { width: 80%; }
.menu-txt { font-size: 12px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; }
.nav-logo { justify-self: center; display: inline-flex; }
.nav-logo .logo-lockup { gap: 5px; }
.nav-logo .logo-lockup .mark { width: 38px; }
.nav-logo .logo-lockup .word { font-size: 16px; }
.nav-actions { justify-self: end; display: flex; align-items: center; gap: 16px; }

.fsmenu { position: fixed; inset: 0; z-index: 70; background: var(--forest); color: var(--cream); opacity: 0; visibility: hidden; transition: opacity .55s var(--ease), visibility .55s var(--ease); display: flex; align-items: center; overflow-y: auto; }
.fsmenu.open { opacity: 1; visibility: visible; }
.fsmenu-inner { display: grid; grid-template-columns: 1.5fr 1fr; gap: clamp(30px,5vw,90px); width: 100%; align-items: center; padding-block: clamp(96px,13vh,140px); }
.fsmenu-nav { display: flex; flex-direction: column; gap: clamp(4px,.7vw,12px); }
.fsmenu-nav a { font-family: var(--font-serif); font-weight: 500; font-size: clamp(2.1rem,5.6vw,4.4rem); line-height: 1.08; color: var(--cream); width: -moz-fit-content; width: fit-content; max-width: 100%; opacity: 0; transform: translateY(24px); transition: color .25s var(--ease); }
.fsmenu.open .fsmenu-nav a { animation: fsIn .55s var(--ease) forwards; }
.fsmenu.open .fsmenu-nav a:nth-child(1){ animation-delay: .10s; }
.fsmenu.open .fsmenu-nav a:nth-child(2){ animation-delay: .16s; }
.fsmenu.open .fsmenu-nav a:nth-child(3){ animation-delay: .22s; }
.fsmenu.open .fsmenu-nav a:nth-child(4){ animation-delay: .28s; }
.fsmenu.open .fsmenu-nav a:nth-child(5){ animation-delay: .34s; }
.fsmenu-nav a:hover { color: var(--amber); }
@keyframes fsIn { to { opacity: 1; transform: none; } }

.fsmenu-aside { display: flex; flex-direction: column; gap: 24px; align-items: flex-start; }
.fsmenu-block .eyebrow { color: var(--amber); display: block; margin-bottom: 10px; }
.fsmenu-block p { color: rgba(251,247,240,.8); font-size: 14px; line-height: 1.6; margin-bottom: 12px; }
.fsmenu-link { display: block; color: var(--cream); font-size: 15px; margin-bottom: 8px; transition: color .25s var(--ease); width: -moz-fit-content; width: fit-content; }
.fsmenu-link:hover { color: var(--amber); }
.fsmenu-cta { margin-top: 6px; }

.fsmenu-close { position: absolute; top: 22px; right: clamp(18px,4vw,44px); width: 48px; height: 48px; display: grid; place-items: center; color: var(--cream); z-index: 2; }
.fsmenu-close span { position: absolute; width: 24px; height: 1.8px; background: currentColor; transition: background-color .25s var(--ease); }
.fsmenu-close span:nth-child(1){ transform: rotate(45deg); }
.fsmenu-close span:nth-child(2){ transform: rotate(-45deg); }
.fsmenu-close:hover { color: var(--amber); }

@media (prefers-reduced-motion: reduce){
  .fsmenu-nav a { opacity: 1; transform: none; animation: none; }
}
@media (max-width: 860px){
  .fsmenu-inner { grid-template-columns: 1fr; gap: 32px; align-items: start; }
  .fsmenu-aside { margin-top: 6px; }
}
@media (max-width: 640px){
  .menu-txt { display: none; }
  .nav-actions .header-icon { display: none; }
}

/* ============ Regalo: banda inmersiva ============ */
.gift-band { position: relative; min-height: clamp(440px, 60vh, 600px); display: flex; align-items: center; overflow: hidden; background: var(--nut); }
.gift-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 68% center; }
.gift-scrim { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(22,19,15,.82) 0%, rgba(22,19,15,.55) 40%, rgba(22,19,15,.08) 78%, rgba(22,19,15,0) 100%); }
.gift-inner { position: relative; z-index: 2; width: 100%; }
.gift-copy { max-width: 47ch; color: var(--cream); }
.gift-copy .eyebrow { color: var(--amber); display: block; margin-bottom: 16px; }
.gift-copy h2 { font-size: clamp(2.2rem, 4.6vw, 3.6rem); color: var(--cream); }
.gift-copy p { margin: 18px 0 32px; color: rgba(251,247,240,.86); max-width: 42ch; }
@media (max-width: 640px){
  .gift-scrim { background: linear-gradient(180deg, rgba(22,19,15,.35) 0%, rgba(22,19,15,.72) 100%); }
  .gift-copy p { max-width: none; }
}

/* ============ Filosofía: intro editorial ============ */
.philosophy-intro { max-width: 60ch; margin-bottom: clamp(40px, 5vw, 68px); }
.philosophy-intro .eyebrow { display: block; margin-bottom: 16px; }
.philosophy-intro .lede { margin-top: 18px; }
.philosophy-intro .link-underline { margin-top: 26px; }

/* Acceso socias como CTA secundario en el header; se oculta en pantallas estrechas (queda en el menú) */
@media (max-width: 900px){ .nav-actions .btn-login { display: none; } }

/* ============ Contacto: tarjeta a dos tonos ============ */
.contact-section { background: var(--linen); }
.contact-card { display: grid; grid-template-columns: 1.05fr .95fr; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-card); }
.contact-form-side { background: var(--paper); padding: clamp(28px,4vw,54px); }
.contact-form-side .eyebrow { display: block; margin-bottom: 10px; }
.contact-form-side > .form-body > h2 { font-size: clamp(1.7rem,2.6vw,2.3rem); margin-bottom: 8px; }
.contact-info-side { background: var(--forest); color: var(--cream); padding: clamp(28px,4vw,54px); display: flex; flex-direction: column; }
.contact-info-side .eyebrow { color: var(--amber); display: block; margin-bottom: 8px; }
.cinfo { display: flex; flex-direction: column; margin-top: 8px; }
.cinfo li { display: flex; gap: 16px; padding: 20px 0; border-bottom: 1px solid rgba(251,247,240,.16); }
.cinfo li:last-child { border-bottom: none; padding-bottom: 0; }
.cinfo li:first-child { padding-top: 0; }
.cinfo .ic { flex: none; width: 22px; color: var(--amber); margin-top: 2px; }
.cinfo .ic svg { width: 100%; stroke: currentColor; fill: none; stroke-width: 1.5; }
.cinfo h4 { font-family: var(--font-sans); font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: rgba(251,247,240,.62); margin-bottom: 5px; }
.cinfo p, .cinfo a { font-size: 15px; color: var(--cream); line-height: 1.55; }
.cinfo a { transition: color .25s var(--ease); }
.cinfo a:hover { color: var(--amber); }
.contact-map { margin-top: 22px; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-soft); }
.contact-map iframe { display: block; width: 100%; height: 400px; border: 0; filter: saturate(.9) sepia(.06); }
@media (max-width: 860px){
  .contact-card { grid-template-columns: 1fr; }
  .contact-map iframe { height: 320px; }
}

/* ============ About: hero inmersivo (centrado) ============ */
.page-hero-media { min-height: clamp(480px, 64vh, 660px); display: flex; align-items: center; }
.page-hero-media .page-hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.page-hero-media .page-hero-scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(22,19,15,.42) 0%, rgba(22,19,15,.5) 55%, rgba(22,19,15,.6) 100%); }
.page-hero-media .wrap { position: relative; z-index: 2; text-align: center; }
.page-hero-media .eyebrow { color: var(--amber); }
.page-hero-media h1 { color: var(--cream); max-width: 20ch; margin-inline: auto; }
.page-hero-media p { color: rgba(251,247,240,.92); max-width: 54ch; margin-inline: auto; }

/* Punto del "Cupo real" (Core Founders) centrado */
.cupo-dot { flex: none; width: 9px; height: 9px; border-radius: 50%; background: var(--nut); box-shadow: 0 0 0 4px rgba(86,51,19,.18); }

/* Heroes de páginas interiores: centrados y consistentes */
.page-hero .wrap { text-align: center; }
.page-hero .wrap h1 { margin-inline: auto; max-width: 22ch; }
.page-hero .wrap p { margin-inline: auto; }

/* ============ Home: hero inmersivo a sangre completa ============ */
.hero-media-full { position: relative; min-height: min(92vh, 880px); display: flex; align-items: center; overflow: hidden; }
.hero-media-full .hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transform: scale(1.06); animation: kenburns 18s ease-out forwards; }
.hero-media-full .hero-scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(22,19,15,.44) 0%, rgba(22,19,15,.48) 55%, rgba(22,19,15,.64) 100%); }
.hero-media-full .hero-inner { position: relative; z-index: 2; text-align: center; }
.hero-media-full .eyebrow { color: var(--amber); margin-bottom: 22px; }
.hero-media-full h1 { color: var(--cream); max-width: 15ch; margin-inline: auto; }
.hero-media-full h1 .accent { color: var(--amber); }
.hero-media-full .rule { margin: 26px auto 24px; }
.hero-media-full .lede { color: rgba(251,247,240,.9); margin-inline: auto; }
.hero-media-full .hero-actions { justify-content: center; margin-top: 34px; }
.hero-media-full .link-underline { color: var(--cream); }
@media (prefers-reduced-motion: reduce){
  .hero-media-full .hero-bg { animation: none; transform: none; }
}

/* ============ Comparativa: tarjetas en móvil (sin scroll lateral) ============ */
.compare-cards { display: none; }
@media (max-width: 760px){
  .table-scroll { display: none; }
  .compare-cards { display: grid; gap: 16px; }
  .pcard { background: var(--paper-soft); border: 1px solid rgba(86,51,19,.12); border-radius: var(--radius-lg); padding: 22px 22px 24px; box-shadow: var(--shadow-soft); }
  .pcard.featured { border-color: var(--amber); box-shadow: 0 0 0 2px rgba(186,141,86,.35), var(--shadow-soft); }
  .pcard-top { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; padding-bottom: 14px; margin-bottom: 12px; border-bottom: 1px solid rgba(86,51,19,.14); }
  .pcard-top .tier { font-family: var(--font-serif); font-weight: 500; font-size: 1.35rem; }
  .pcard-price { font-size: 14px; font-weight: 600; color: var(--nut); white-space: nowrap; }
  .pcard-price small { color: var(--ink-mute); font-weight: 400; }
  .pcard-feats { display: flex; flex-direction: column; margin-bottom: 18px; }
  .pcard-feats li { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 10px 0; border-bottom: 1px dashed rgba(86,51,19,.16); font-size: 14px; color: var(--ink-soft); }
  .pcard-feats li:last-child { border-bottom: none; }
  .pcard-feats strong { color: var(--obsidian); font-weight: 600; }
  .pcard .btn { width: 100%; }
  .compare-foot { margin-top: 20px; }
}

@media (max-width: 760px){
  .pcard-feats .yes { display: inline-block; width: 20px; height: 20px; position: relative; flex: none; }
  .pcard-feats .yes::after { content: ""; position: absolute; left: 50%; top: 50%; width: 12px; height: 7px; border-left: 2px solid var(--forest); border-bottom: 2px solid var(--forest); transform: translate(-50%,-68%) rotate(-45deg); }
}

/* Banda "Regala bienestar": texto y CTA centrados y sobreimpresos */
.gift-band .gift-scrim { background: linear-gradient(180deg, rgba(22,19,15,.42) 0%, rgba(22,19,15,.5) 55%, rgba(22,19,15,.62) 100%); }
.gift-inner { text-align: center; }
.gift-copy { max-width: 52ch; margin-inline: auto; }
.gift-copy p { margin-inline: auto; }

/* ===================================================================
   Ajustes móvil (feedback cliente)
   =================================================================== */

/* 1) Instagram: solo 2 imágenes (una fila) en móvil, estilo referencia */
@media (max-width: 760px){
  .ig-grid { grid-template-columns: repeat(2, 1fr); }
  .ig-grid .ig-item:nth-child(n+3) { display: none; }
}

/* 2) Header móvil estilo Pleto: logo a la izquierda, CTA + hamburguesa a la derecha */
@media (max-width: 760px){
  .site-header .nav { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
  .nav-logo   { order: 1; margin-right: auto; }
  .nav-actions{ order: 2; gap: 10px; }
  .menu-btn   { order: 3; }
  .menu-txt   { display: none; }
}

/* 3) Carrusel SOLO en "Tarifas fundadoras" (Core Founders, #unirme).
      La home "Elige tu bono" (#bonos) vuelve a tarjetas apiladas. */
@media (max-width: 760px){
  #unirme .bono-cards { display: flex; grid-template-columns: none; overflow-x: auto; gap: 14px;
    scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
    padding: 4px 4px 12px; margin-inline: -4px; scroll-padding-inline: 4px; }
  #unirme .bono-cards .bono { flex: 0 0 82%; scroll-snap-align: center; }
  #unirme .bono-cards::-webkit-scrollbar { height: 0; }
  #bonos .bono-cards { grid-template-columns: 1fr; }
}

/* "Acceso socias" con más protagonismo en el menú full-screen (botón) */
.fsmenu-block .fsmenu-link[href*="bsport"]{
  display: inline-flex; align-items: center; justify-content: center;
  margin-top: 12px; padding: 12px 24px;
  border: 1px solid rgba(251,247,240,.55); border-radius: var(--radius);
  font-size: 12.5px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--cream); width: -moz-fit-content; width: fit-content;
  transition: background-color .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}
.fsmenu-block .fsmenu-link[href*="bsport"]:hover{ background: var(--cream); color: var(--obsidian); border-color: var(--cream); }

/* 4) Puntos de "cupo" con parpadeo suave */
@keyframes pulseDot {
  0%   { box-shadow: 0 0 0 0 rgba(86,51,19,.5); }
  70%  { box-shadow: 0 0 0 9px rgba(86,51,19,0); }
  100% { box-shadow: 0 0 0 0 rgba(86,51,19,0); }
}
.cupo-dot, .fb-cup .dot { animation: pulseDot 1.9s ease-out infinite; }
@media (prefers-reduced-motion: reduce){
  .cupo-dot, .fb-cup .dot { animation: none; }
}

/* ============ Landing independiente (Fase 1) ============ */
.landing-header { background: var(--paper); display: flex; justify-content: center; padding: 22px var(--gutter); border-bottom: 1px solid rgba(86,51,19,.09); }
.landing-header .logo-lockup .mark { width: 44px; }
.landing-page .lead { background: var(--paper); }
.landing-lead .lead-grid { min-height: min(78vh, 760px); }
.landing-footer { background: var(--linen); padding: 30px 0; text-align: center; border-top: 1px solid rgba(86,51,19,.1); }
.landing-footer .wrap-wide { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.landing-footer .lf-links { display: flex; gap: 24px; font-size: 13px; order: -1; }
.landing-footer .lf-links a { color: var(--ink-soft); transition: color .25s var(--ease); }
.landing-footer .lf-links a:hover { color: var(--obsidian); }
.landing-footer .lf-copy { font-size: 12px; color: var(--ink-mute); letter-spacing: .02em; }
