/* ════════════════════════════════════════════════════
   Javier Berrocal Tadeo · Sphaera Coaching
   Sistema de diseño compartido · v4
   ════════════════════════════════════════════════════ */

:root {
  --sand:     #f5f0e8;
  --linen:    #ede7d9;
  --terra:    #a0764e;
  --sage:     #7a8c7e;
  --charcoal: #2c2925;
  --warm-mid: #6b5c48;
  --mist:     #ddd6c8;
  --white:    #fdfaf5;
  --accent:   #a0764e;
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }

body {
  font-family:'Jost',sans-serif;
  background:var(--sand);
  color:var(--charcoal);
  font-weight:300;
  overflow-x:hidden;
}

/* Noise texture */
body::before {
  content:'';
  position:fixed; inset:0;
  background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events:none; z-index:999; opacity:0.5;
}

/* ── NAV ── */
nav {
  position:fixed; top:0; left:0; right:0; z-index:100;
  display:flex; align-items:center; justify-content:space-between;
  padding:24px 56px;
  background:rgba(245,240,232,0.92);
  backdrop-filter:blur(14px);
  border-bottom:1px solid transparent;
  transition:border-color 0.4s, padding 0.4s;
  gap:24px;
}
nav.scrolled { border-color:var(--mist); padding:16px 56px; }

.nav-logo { text-decoration:none; display:flex; align-items:center; flex-shrink:0; }
.nav-logo svg { display:block; }

.nav-right { display:flex; align-items:center; gap:36px; margin-left:auto; }
.nav-links { display:flex; gap:36px; list-style:none; align-items:center; }
.nav-links a {
  font-family:'Jost',sans-serif; font-size:12px; font-weight:400;
  letter-spacing:0.14em; text-transform:uppercase; color:var(--warm-mid);
  text-decoration:none; transition:color 0.25s;
}
.nav-links a:hover, .nav-links a.active { color:var(--charcoal); }
.nav-links a.nav-cta-link { display:none; }

.nav-cta {
  font-family:'Cormorant Garamond',serif; font-size:20px; font-weight:700;
  font-style:italic; letter-spacing:0.02em; text-transform:none;
  color:var(--terra); text-decoration:none;
  border:1.5px solid var(--terra); padding:8px 22px;
  transition:color 0.25s, background 0.25s;
  white-space:nowrap; flex-shrink:0;
}
.nav-cta:hover { color:var(--white); background:var(--terra); }

/* ── BUTTONS ── */
.btn-primary {
  font-family:'Jost',sans-serif; font-size:12px; font-weight:500;
  letter-spacing:0.14em; text-transform:uppercase; color:var(--white);
  background:var(--terra); padding:16px 36px; text-decoration:none;
  transition:background 0.25s, transform 0.2s; display:inline-block;
}
.btn-primary:hover { background:var(--charcoal); transform:translateY(-1px); }

.btn-secondary {
  font-family:'Jost',sans-serif; font-size:12px; font-weight:400;
  letter-spacing:0.14em; text-transform:uppercase; color:var(--warm-mid);
  text-decoration:none; border-bottom:1px solid var(--mist);
  padding-bottom:2px; transition:color 0.25s, border-color 0.25s;
}
.btn-secondary:hover { color:var(--charcoal); border-color:var(--charcoal); }

.btn-light {
  font-family:'Jost',sans-serif; font-size:12px; font-weight:500;
  letter-spacing:0.14em; text-transform:uppercase; color:var(--terra);
  background:var(--white); padding:16px 36px; text-decoration:none;
  white-space:nowrap; transition:background 0.25s, color 0.25s;
  display:inline-block;
}
.btn-light:hover { background:var(--charcoal); color:var(--white); }

/* ── SHARED SECTION STYLES ── */
section { padding:100px 56px; }

.section-label {
  font-size:11px; font-weight:400; letter-spacing:0.2em;
  text-transform:uppercase; color:var(--sage); margin-bottom:20px;
  display:flex; align-items:center; gap:12px;
}
.section-label::before {
  content:''; width:32px; height:1px; background:var(--sage); display:inline-block;
}

.section-title {
  font-family:'Cormorant Garamond',serif; font-size:clamp(36px,4vw,58px);
  font-weight:300; line-height:1.1; color:var(--charcoal); margin-bottom:24px;
}
.section-title em { font-style:italic; color:var(--accent); }

/* ── HERO ── */
.hero {
  min-height:100vh; display:grid; grid-template-columns:4fr 3fr;
  padding-top:80px; overflow:hidden; position:relative;
}
.hero-left {
  display:flex; flex-direction:column; justify-content:center;
  padding:80px 64px 80px 56px; position:relative;
}
.hero-eyebrow {
  font-family:'Jost',sans-serif; font-size:11px; font-weight:400;
  letter-spacing:0.2em; text-transform:uppercase; color:var(--sage);
  margin-bottom:6px; opacity:0; animation:fadeUp 0.8s 0.2s ease forwards;
}
.hero-location {
  font-family:'Jost',sans-serif; font-size:11px; font-weight:400;
  letter-spacing:0.2em; text-transform:uppercase; color:var(--accent);
  margin-bottom:28px; opacity:0; animation:fadeUp 0.8s 0.3s ease forwards;
}
.hero-title {
  font-family:'Cormorant Garamond',serif; font-size:clamp(52px,6vw,82px);
  font-weight:300; line-height:1.08; color:var(--charcoal);
  margin-bottom:12px; opacity:0; animation:fadeUp 0.8s 0.4s ease forwards;
}
.hero-title em { font-style:italic; color:var(--accent); font-weight:300; }
.hero-subtitle {
  font-family:'Cormorant Garamond',serif; font-size:clamp(18px,2.2vw,26px);
  font-weight:300; font-style:italic; color:var(--warm-mid); margin-bottom:40px;
  line-height:1.4; opacity:0; animation:fadeUp 0.8s 0.55s ease forwards;
}
.hero-body {
  font-size:16px; line-height:1.8; color:var(--warm-mid); max-width:520px;
  margin-bottom:48px; opacity:0; animation:fadeUp 0.8s 0.7s ease forwards;
}
.hero-actions {
  display:flex; gap:16px; align-items:center; flex-wrap:wrap;
  opacity:0; animation:fadeUp 0.8s 0.85s ease forwards;
}
.hero-tag-inline {
  background:var(--white); padding:10px 18px; border-left:3px solid var(--accent);
  transition:border-color 0.25s, transform 0.2s;
}
.hero-tag-inline:hover { border-color:var(--charcoal); transform:translateY(-1px); }
.hero-tag-inline p { font-size:10px; color:var(--warm-mid); letter-spacing:0.1em; text-transform:uppercase; font-weight:400; margin-bottom:2px; }
.hero-tag-inline strong { font-family:'Cormorant Garamond',serif; font-size:16px; font-weight:600; color:var(--charcoal); display:block; }

.hero-right { position:relative; overflow:hidden; opacity:0; animation:fadeIn 1.2s 0.3s ease forwards; }
.hero-image { width:100%; height:100%; object-fit:cover; object-position:top center; filter:saturate(0.85) brightness(0.97); image-rendering:-webkit-optimize-contrast; image-rendering:crisp-edges; }
.hero-image-overlay {
  position:absolute; inset:0;
  background:linear-gradient(to right, var(--sand) 0%, transparent 12%),
              linear-gradient(to top, rgba(44,41,37,0.15) 0%, transparent 50%);
}

/* ── STRIP ── */
.intro-strip {
  background:var(--charcoal); padding:32px 56px;
  display:flex; align-items:center; gap:48px;
}
.strip-item { display:flex; align-items:center; gap:16px; }
.strip-num { font-family:'Cormorant Garamond',serif; font-size:36px; font-weight:300; color:var(--accent); line-height:1; }
.strip-text { font-size:13px; color:var(--mist); line-height:1.4; }
.strip-text strong { display:block; color:var(--white); font-weight:400; letter-spacing:0.06em; }
.strip-divider { width:1px; height:40px; background:rgba(255,255,255,0.12); }

/* ── ABOUT ── */
.about { display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center; background:var(--white); }
.about-image-wrap { position:relative; }
.about-image { width:100%; aspect-ratio:3/4; object-fit:cover; object-position:top center; filter:saturate(0.8); display:block; }
.about-image-deco { position:absolute; bottom:-20px; right:-20px; width:60%; height:60%; border:1px solid var(--mist); z-index:-1; }
.about-quote { font-family:'Cormorant Garamond',serif; font-size:22px; font-style:italic; font-weight:300; color:var(--warm-mid); line-height:1.6; border-left:2px solid var(--accent); padding-left:24px; margin:32px 0; }
.about-body { font-size:16px; line-height:1.9; color:var(--warm-mid); margin-bottom:16px; }
.about-credentials { display:flex; flex-wrap:wrap; gap:10px; margin-top:32px; }
.credential { font-size:11px; font-weight:400; letter-spacing:0.1em; text-transform:uppercase; color:var(--terra); border:1px solid var(--mist); padding:7px 16px; background:var(--sand); }

/* ── SERVICES ── */
.services { background:var(--sand); }
.services-header { display:flex; justify-content:space-between; align-items:flex-end; margin-bottom:60px; }
.services-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:2px; }
.service-card {
  background:var(--white); padding:48px 36px; position:relative;
  overflow:hidden; transition:transform 0.3s ease;
}
.service-card::before {
  content:''; position:absolute; bottom:0; left:0; right:0; height:3px;
  background:var(--accent); transform:scaleX(0); transform-origin:left;
  transition:transform 0.4s ease;
}
.service-card:hover { transform:translateY(-4px); }
.service-card:hover::before { transform:scaleX(1); }
.service-icon { font-family:'Cormorant Garamond',serif; font-size:56px; font-weight:300; color:var(--mist); line-height:1; margin-bottom:24px; transition:color 0.3s; }
.service-card:hover .service-icon { color:var(--accent); }
.service-name { font-family:'Cormorant Garamond',serif; font-size:26px; font-weight:600; color:var(--charcoal); margin-bottom:14px; }
.service-desc { font-size:15px; line-height:1.75; color:var(--warm-mid); margin-bottom:28px; }
.service-link { font-size:11px; font-weight:400; letter-spacing:0.14em; text-transform:uppercase; color:var(--accent); text-decoration:none; display:flex; align-items:center; gap:8px; transition:gap 0.25s; }
.service-link:hover { gap:14px; }
.service-link::after { content:'→'; }
.service-card--highlight { background:var(--linen); border:1px solid var(--mist); }

/* ── SPHERE METODOLOGÍA ── */
.sphere { background:var(--charcoal); padding:100px 56px; position:relative; overflow:hidden; }
.sphere::before {
  content:'Sphaera'; position:absolute; right:20px; top:50%;
  transform:translateY(-50%); font-family:'Cormorant Garamond',serif;
  font-size:280px; font-weight:300; font-style:italic;
  color:rgba(255,255,255,0.03); line-height:1; pointer-events:none; white-space:nowrap;
}
.sphere-inner { max-width:760px; position:relative; z-index:1; }
.sphere-body { font-size:17px; line-height:1.9; color:rgba(255,255,255,0.6); margin-bottom:20px; }
.sphere-body strong { color:rgba(255,255,255,0.95); font-weight:500; }
.sphere-pillars { display:flex; flex-wrap:wrap; gap:12px; margin-top:48px; }
.sphere-pillar { border:1px solid rgba(255,255,255,0.15); padding:12px 28px; transition:border-color 0.3s, background 0.3s; }
.sphere-pillar:hover { border-color:var(--accent); background:rgba(160,118,78,0.1); }
.sphere-pillar span { font-family:'Cormorant Garamond',serif; font-size:18px; font-weight:300; font-style:italic; color:rgba(255,255,255,0.75); letter-spacing:0.04em; }

/* ── HERRAMIENTAS SPHAERA (bloque en sección #sphaera) ── */
.sphere-herramientas {
  margin-top: 64px;
  padding-top: 56px;
  border-top: 1px solid rgba(255,255,255,0.1);
  max-width: 640px;
}
.sphere-herramientas__eyebrow {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 14px;
}
.sphere-herramientas__titulo {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}
.sphere-herramientas__titulo em { font-style: italic; color: var(--accent); }
.sphere-herramientas__texto {
  font-size: 16px;
  line-height: 1.85;
  color: rgba(255,255,255,0.6);
  margin-bottom: 16px;
}
.sphere-herramientas__texto strong { color: rgba(255,255,255,0.9); font-weight: 400; }
.sphere-herramientas__cta {
  display: inline-block;
  margin-top: 28px;
  padding: 14px 32px;
  border: 1px solid rgba(160,118,78,0.5);
  color: var(--accent);
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: border-color 0.25s, background 0.25s, color 0.25s;
}
.sphere-herramientas__cta:hover {
  border-color: var(--accent);
  background: rgba(160,118,78,0.12);
  color: var(--white);
}

/* ── PROCESS ── */
.process { background:#b8a48e; display:grid; grid-template-columns:1fr 1.6fr; gap:80px; align-items:start; }
.process-left .section-label { color:rgba(44,41,37,0.7); }
.process-left .section-label::before { background:rgba(44,41,37,0.4); }
.process-left .section-title { color:var(--charcoal); }
.process-left .section-title em { color:var(--warm-mid); }
.process-body { font-size:16px; line-height:1.85; color:var(--warm-mid); margin-bottom:40px; }
.process-steps { display:flex; flex-direction:column; }
.step { display:grid; grid-template-columns:60px 1fr; gap:24px; padding:32px 0; border-bottom:1px solid rgba(44,41,37,0.15); align-items:start; }
.step:last-child { border-bottom:none; }
.step-num { font-family:'Cormorant Garamond',serif; font-size:42px; font-weight:300; color:rgba(44,41,37,0.35); line-height:1; transition:color 0.3s; }
.step:hover .step-num { color:var(--charcoal); }
.step-title { font-family:'Cormorant Garamond',serif; font-size:22px; font-weight:600; color:var(--charcoal); margin-bottom:8px; }
.step-desc { font-size:14px; line-height:1.7; color:var(--warm-mid); }
.step-desc strong { color:var(--charcoal); font-weight:500; }
.process-body strong { color:var(--charcoal); font-weight:500; }

/* ── RETIROS ── */
.retiros { background:var(--linen); display:grid; grid-template-columns:1.4fr 1fr; gap:80px; align-items:center; }
.retiros-image { width:100%; aspect-ratio:4/3; object-fit:cover; filter:saturate(0.75); }
.retiros-tag { display:inline-block; font-size:10px; font-weight:400; letter-spacing:0.18em; text-transform:uppercase; color:var(--white); background:var(--sage); padding:6px 14px; margin-bottom:24px; }
.retiros-body { font-size:16px; line-height:1.85; color:var(--warm-mid); margin-bottom:16px; }

/* ── TESTIMONIAL ── */
.testimonial { background:var(--sand); text-align:center; padding:100px 200px; }
.testimonial-quote { font-family:'Cormorant Garamond',serif; font-size:clamp(26px,3vw,42px); font-weight:300; font-style:italic; color:var(--charcoal); line-height:1.5; margin-bottom:36px; position:relative; }
.testimonial-quote::before { content:'\201C'; font-size:120px; color:var(--mist); position:absolute; top:-40px; left:-20px; line-height:1; font-family:'Cormorant Garamond',serif; }
.testimonial-author { font-size:12px; letter-spacing:0.16em; text-transform:uppercase; color:var(--sage); }

/* ── CTA SECTION ── */
.cta-section { background:var(--terra); padding:100px 56px; text-align:center; }
.cta-title { font-family:'Cormorant Garamond',serif; font-size:clamp(42px,5vw,72px); font-weight:300; color:var(--white); line-height:1.15; margin-bottom:20px; }
.cta-title em { font-style:italic; color:rgba(255,255,255,0.65); }
.cta-subtitle { font-size:17px; color:rgba(255,255,255,0.65); line-height:1.7; max-width:520px; margin:0 auto 56px; }
.cta-actions { display:flex; flex-direction:row; justify-content:center; align-items:center; gap:32px; flex-wrap:wrap; }
.cta-contact-info { display:flex; flex-direction:column; gap:6px; text-align:left; border-left:1px solid rgba(255,255,255,0.2); padding-left:32px; }
.cta-phone { font-family:'Cormorant Garamond',serif; font-size:20px; font-weight:300; color:rgba(255,255,255,0.75); text-decoration:none; display:flex; align-items:center; gap:8px; transition:color 0.25s; }
.cta-phone:hover { color:var(--white); }
.cta-schedule { font-size:13px; color:rgba(255,255,255,0.45); line-height:1.6; }

/* ── CONTACT FORM ── */
.contact-section { background:var(--white); padding:100px 56px; }
.contact-grid { display:grid; grid-template-columns:1fr 1.4fr; gap:80px; align-items:start; }
.contact-info-block { position:sticky; top:120px; }
.contact-info-block .section-title { margin-bottom:32px; }
.contact-info-item { display:flex; flex-direction:column; gap:4px; margin-bottom:28px; }
.contact-info-label { font-size:10px; font-weight:400; letter-spacing:0.2em; text-transform:uppercase; color:var(--sage); }
.contact-info-value { font-family:'Cormorant Garamond',serif; font-size:20px; font-weight:300; color:var(--charcoal); text-decoration:none; transition:color 0.2s; }
.contact-info-value:hover { color:var(--accent); }
.contact-schedule { font-size:14px; line-height:1.8; color:var(--warm-mid); margin-top:32px; padding-top:32px; border-top:1px solid var(--mist); }
.contact-schedule strong { display:block; font-size:10px; letter-spacing:0.16em; text-transform:uppercase; color:var(--sage); margin-bottom:10px; font-weight:400; }

.contact-form { display:flex; flex-direction:column; gap:24px; }
.form-group { display:flex; flex-direction:column; gap:8px; }
.form-group.form-group--half { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.form-group.form-group--half .form-group { gap:8px; }

label {
  font-size:10px; font-weight:400; letter-spacing:0.18em;
  text-transform:uppercase; color:var(--warm-mid);
}

input[type="text"], input[type="email"], input[type="tel"],
select, textarea {
  font-family:'Jost',sans-serif; font-size:15px; font-weight:300;
  color:var(--charcoal); background:var(--sand);
  border:1px solid var(--mist); border-bottom:2px solid var(--mist);
  padding:14px 16px; outline:none;
  transition:border-color 0.25s, background 0.25s;
  -webkit-appearance:none; appearance:none;
}
input[type="text"]:focus, input[type="email"]:focus, input[type="tel"]:focus,
select:focus, textarea:focus {
  border-color:var(--accent); border-bottom-color:var(--accent);
  background:var(--white);
}
textarea { resize:vertical; min-height:160px; line-height:1.7; }
select { background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M0 0l6 8 6-8z' fill='%236b5c48'/%3E%3C/svg%3E"); background-repeat:no-repeat; background-position:right 16px center; padding-right:40px; cursor:pointer; }

.form-privacy {
  font-size:12px; color:var(--warm-mid); line-height:1.7;
  display:flex; gap:12px; align-items:flex-start; padding:16px;
  background:var(--linen); border-left:2px solid var(--mist);
}
.form-privacy input[type="checkbox"] { margin-top:3px; flex-shrink:0; accent-color:var(--terra); cursor:pointer; }
.form-privacy a { color:var(--accent); text-decoration:none; }
.form-privacy a:hover { text-decoration:underline; }

.form-submit {
  font-family:'Jost',sans-serif; font-size:12px; font-weight:500;
  letter-spacing:0.14em; text-transform:uppercase; color:var(--white);
  background:var(--terra); padding:18px 48px; border:none; cursor:pointer;
  transition:background 0.25s, transform 0.2s; align-self:flex-start;
}
.form-submit:hover { background:var(--charcoal); transform:translateY(-1px); }

.form-success {
  display:none; background:var(--linen); padding:40px;
  border-left:3px solid var(--sage); text-align:center;
}
.form-success.visible { display:block; }
.form-success h3 { font-family:'Cormorant Garamond',serif; font-size:32px; font-weight:300; color:var(--charcoal); margin-bottom:12px; }
.form-success p { font-size:16px; color:var(--warm-mid); line-height:1.7; }

/* ── FOOTER ── */
footer { background:var(--charcoal); padding:60px 56px 40px; }
.footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:48px; margin-bottom:48px; padding-bottom:48px; border-bottom:1px solid rgba(255,255,255,0.08); }
.footer-brand-wrap { display:flex; align-items:center; gap:14px; margin-bottom:16px; }
.footer-brand { font-family:'Cormorant Garamond',serif; font-size:22px; font-weight:600; color:var(--white); }
.footer-brand span { color:#c9956e; font-style:italic; font-weight:300; }
.footer-sphaera { font-family:'Jost',sans-serif; font-size:9px; font-weight:400; letter-spacing:2.5px; text-transform:uppercase; color:var(--sage); margin-top:3px; }
.footer-tagline { font-size:14px; color:rgba(255,255,255,0.4); line-height:1.7; }
.footer-col-title { font-size:10px; font-weight:400; letter-spacing:0.2em; text-transform:uppercase; color:var(--sage); margin-bottom:20px; }
.footer-links { list-style:none; display:flex; flex-direction:column; gap:12px; }
.footer-links a { font-size:14px; color:rgba(255,255,255,0.45); text-decoration:none; transition:color 0.2s; }
.footer-links a:hover { color:var(--white); }
.footer-contact-item { font-size:14px; color:rgba(255,255,255,0.45); margin-bottom:10px; line-height:1.5; }
.footer-contact-item a { color:rgba(255,255,255,0.45); text-decoration:none; transition:color 0.2s; }
.footer-contact-item a:hover { color:var(--white); }
.footer-bottom { display:flex; justify-content:space-between; align-items:center; }
.footer-copy { font-size:12px; color:rgba(255,255,255,0.25); }
.footer-legal a { font-size:12px; color:rgba(255,255,255,0.25); text-decoration:none; }
.footer-legal a:hover { color:rgba(255,255,255,0.5); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  padding:180px 56px 80px;
  background:var(--white);
  position:relative;
  overflow:hidden;
}
.page-hero::before {
  content:''; position:absolute; inset:0;
  background:linear-gradient(135deg, var(--linen) 0%, var(--white) 60%);
}
.page-hero-inner { position:relative; z-index:1; max-width:760px; }
.page-breadcrumb { font-size:11px; letter-spacing:0.18em; text-transform:uppercase; color:var(--sage); margin-bottom:24px; }
.page-breadcrumb a { color:var(--sage); text-decoration:none; }
.page-breadcrumb a:hover { color:var(--accent); }
.page-breadcrumb span { color:var(--mist); margin:0 8px; }
.page-title { font-family:'Cormorant Garamond',serif; font-size:clamp(48px,6vw,88px); font-weight:300; line-height:1.05; color:var(--charcoal); margin-bottom:24px; }
.page-title em { font-style:italic; color:var(--accent); }
.page-subtitle { font-size:18px; line-height:1.8; color:var(--warm-mid); max-width:600px; }

/* ── CONTENT SECTIONS ── */
.content-section { padding:80px 56px; }
.content-section--linen { background:var(--linen); }
.content-section--white { background:var(--white); }
.content-section--dark { background:var(--charcoal); }
.content-section--sand { background:var(--sand); }
.content-block { max-width:720px; }
.content-body { font-size:17px; line-height:1.95; color:var(--warm-mid); margin-bottom:20px; }
.content-body strong { color:var(--charcoal); font-weight:500; }

/* ── BLOG ── */
.blog-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:2px; margin-top:60px; }
.blog-card { background:var(--white); padding:40px; transition:transform 0.3s; }
.blog-card:hover { transform:translateY(-4px); }
.blog-card-tag { font-size:10px; letter-spacing:0.18em; text-transform:uppercase; color:var(--sage); margin-bottom:16px; display:block; }
.blog-card-title { font-family:'Cormorant Garamond',serif; font-size:26px; font-weight:600; color:var(--charcoal); line-height:1.25; margin-bottom:16px; }
.blog-card-excerpt { font-size:14px; line-height:1.8; color:var(--warm-mid); margin-bottom:24px; }
.blog-card-link { font-size:11px; letter-spacing:0.14em; text-transform:uppercase; color:var(--accent); text-decoration:none; display:flex; align-items:center; gap:8px; transition:gap 0.25s; }
.blog-card-link:hover { gap:14px; }
.blog-card-link::after { content:'→'; }
.blog-card-read { font-size:11px; color:var(--mist); margin-top:4px; }

/* ── PRICING ── */
.pricing-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; margin-top:60px; }
.pricing-card {
  background:var(--white); padding:48px 36px;
  border:1px solid var(--mist); position:relative;
}
.pricing-card--featured { background:var(--charcoal); border-color:var(--charcoal); }
.pricing-card--featured .pricing-name { color:var(--white); }
.pricing-card--featured .pricing-price { color:var(--accent); }
.pricing-card--featured .pricing-desc { color:rgba(255,255,255,0.6); }
.pricing-card--featured .pricing-features li { color:rgba(255,255,255,0.7); }
.pricing-card--featured .pricing-features li::before { background:var(--sage); }
.pricing-badge { position:absolute; top:-12px; left:50%; transform:translateX(-50%); background:var(--terra); color:var(--white); font-size:9px; font-weight:500; letter-spacing:0.18em; text-transform:uppercase; padding:5px 16px; white-space:nowrap; }
.pricing-name { font-family:'Cormorant Garamond',serif; font-size:28px; font-weight:600; color:var(--charcoal); margin-bottom:8px; }
.pricing-price { font-family:'Cormorant Garamond',serif; font-size:56px; font-weight:300; color:var(--charcoal); line-height:1; margin:20px 0 4px; }
.pricing-price span { font-size:20px; vertical-align:super; margin-right:2px; }
.pricing-unit { font-size:12px; color:var(--warm-mid); letter-spacing:0.1em; text-transform:uppercase; margin-bottom:28px; }
.pricing-desc { font-size:14px; line-height:1.7; color:var(--warm-mid); margin-bottom:28px; padding-bottom:28px; border-bottom:1px solid var(--mist); }
.pricing-card--featured .pricing-desc { border-bottom-color:rgba(255,255,255,0.1); }
.pricing-features { list-style:none; display:flex; flex-direction:column; gap:12px; margin-bottom:40px; }
.pricing-features li { font-size:14px; color:var(--warm-mid); padding-left:20px; position:relative; line-height:1.5; }
.pricing-features li::before { content:''; position:absolute; left:0; top:7px; width:8px; height:1px; background:var(--accent); }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }

.reveal { opacity:0; transform:translateY(24px); transition:opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity:1; transform:translateY(0); }

/* ── COOKIE BANNER ── */
.cookie-banner {
  position:fixed; bottom:0; left:0; right:0; z-index:1000;
  background:var(--charcoal); border-top:1px solid rgba(255,255,255,0.08);
  padding:20px 56px; transform:translateY(100%); animation:slideUp 0.5s 1.5s ease forwards;
}
.cookie-banner.hidden { display:none; }
@keyframes slideUp { to { transform:translateY(0); } }
.cookie-content { display:flex; align-items:center; justify-content:space-between; gap:40px; max-width:1200px; margin:0 auto; }
.cookie-text { font-size:13px; color:rgba(255,255,255,0.55); line-height:1.6; }
.cookie-link { color:var(--accent); text-decoration:none; }
.cookie-link:hover { color:var(--white); }
.cookie-actions { display:flex; gap:12px; flex-shrink:0; }
.cookie-btn { font-family:'Jost',sans-serif; font-size:11px; font-weight:500; letter-spacing:0.12em; text-transform:uppercase; padding:10px 22px; border:none; cursor:pointer; transition:background 0.2s, color 0.2s; white-space:nowrap; }
.cookie-btn--accept { background:var(--terra); color:var(--white); }
.cookie-btn--accept:hover { background:var(--accent); }
.cookie-btn--decline { background:transparent; color:rgba(255,255,255,0.45); border:1px solid rgba(255,255,255,0.15); }
.cookie-btn--decline:hover { color:var(--white); border-color:rgba(255,255,255,0.4); }

/* ── NAV HAMBURGER ── */
.nav-hamburger {
  display:none; flex-direction:column; justify-content:center;
  gap:5px; width:44px; height:44px; background:none; border:none;
  cursor:pointer; padding:4px; flex-shrink:0; align-items:center;
  -webkit-tap-highlight-color:transparent;
}
.nav-hamburger span {
  display:block; width:22px; height:1.5px;
  background:var(--warm-mid); transition:all 0.3s ease;
}
.nav-hamburger.open span:nth-child(1) { transform:translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity:0; }
.nav-hamburger.open span:nth-child(3) { transform:translateY(-6.5px) rotate(-45deg); }

/* ── MOBILE NAV DRAWER ── */
.nav-mobile-overlay {
  display:block; position:fixed; top:0; right:0; bottom:0; z-index:99;
  width:min(300px, 85vw);
  background:rgba(44,41,37,0.98);
  transform:translateX(100%);
  transition:transform 0.3s ease, visibility 0.3s;
  visibility:hidden;
  overflow-y:auto; -webkit-overflow-scrolling:touch;
  padding:72px 28px 48px;
  display:flex; flex-direction:column;
}
.nav-mobile-overlay.open { transform:translateX(0); visibility:visible; }
.nav-mobile-overlay ul {
  display:flex; flex-direction:column;
  gap:0; list-style:none; width:100%; margin:0;
}
.nav-mobile-overlay ul li {
  width:100%;
  border-bottom:1px solid rgba(255,255,255,0.06);
}
.nav-mobile-overlay ul li:first-child {
  border-top:1px solid rgba(255,255,255,0.06);
}
.nav-mobile-overlay ul a {
  font-family:'Jost',sans-serif; font-size:17px; font-weight:300;
  color:rgba(255,255,255,0.7); text-decoration:none; letter-spacing:0.04em;
  transition:color 0.2s; display:block; padding:14px 0;
}
.nav-mobile-overlay ul a:hover,
.nav-mobile-overlay ul a.active { color:var(--terra); }
.nav-mobile-overlay .nav-mobile-cta {
  font-family:'Jost',sans-serif; font-size:14px; font-weight:400;
  letter-spacing:0.1em; text-transform:uppercase; color:var(--terra);
  text-decoration:none; margin-top:28px; display:inline-block;
  border:1.5px solid var(--terra); padding:12px 24px;
  transition:color 0.2s, background 0.2s; text-align:center; width:100%;
}
.nav-mobile-overlay .nav-mobile-cta:hover { color:var(--white); background:var(--terra); }
.nav-mobile-close {
  position:absolute; top:18px; right:18px; background:none; border:none;
  color:rgba(255,255,255,0.5); font-size:24px; cursor:pointer; line-height:1;
  transition:color 0.2s; font-weight:300; padding:8px;
  -webkit-tap-highlight-color:transparent;
}
.nav-mobile-close:hover { color:var(--white); }

/* ── GLOBAL LINK COLOR FIX (avoid browser-default blue) ── */
a { color:inherit; }
.form-privacy a { color:var(--accent); }
.form-privacy a:hover { text-decoration:underline; }
.footer-legal a { color:rgba(255,255,255,0.25); text-decoration:none; }
.footer-legal a:hover { color:rgba(255,255,255,0.5); }
.footer-copy a { color:rgba(255,255,255,0.25); text-decoration:none; }
.footer-copy a:hover { color:rgba(255,255,255,0.5); }

/* ── SPHERE on coaching-pnl page — ensure contrast ── */
.sphaera h2 .section-title,
section.sphaera .section-title { color:var(--white); }
.sphaera p { color:rgba(255,255,255,0.75); }
.sphaera .section-label { color:var(--sage); }

/* ── MOBILE ── */

/* ─── QUIEN SOY ─── */
.bio-grid { display:grid; grid-template-columns:1fr 1.4fr; gap:80px; align-items:start; max-width:1200px; }
.bio-image { width:100%; aspect-ratio:3/4; object-fit:cover; object-position:top center; filter:saturate(0.8); display:block; }
.bio-image-wrap { position:relative; }
.bio-image-deco { position:absolute; bottom:-20px; right:-20px; width:60%; height:60%; border:1px solid var(--mist); z-index:-1; }
.values-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:2px; margin-top:48px; }
.value-card { background:var(--white); padding:40px 32px; }
.value-num { font-family:'Cormorant Garamond',serif; font-size:52px; font-weight:300; color:var(--mist); margin-bottom:12px; line-height:1; }
.value-title { font-family:'Cormorant Garamond',serif; font-size:24px; font-weight:600; color:var(--charcoal); margin-bottom:12px; }
.value-body { font-size:14px; line-height:1.8; color:var(--warm-mid); }
.timeline { display:flex; flex-direction:column; gap:0; }
.timeline-item { display:grid; grid-template-columns:100px 1fr; gap:32px; padding:32px 0; border-bottom:1px solid var(--mist); align-items:start; }
.timeline-item:last-child { border-bottom:none; }
.timeline-year { font-family:'Cormorant Garamond',serif; font-size:32px; font-weight:300; color:var(--accent); padding-top:2px; }
.timeline-content strong { display:block; font-size:16px; font-weight:500; color:var(--charcoal); margin-bottom:6px; }
.timeline-content p { font-size:14px; color:var(--warm-mid); line-height:1.7; margin:0; }

/* ─── RETIROS ─── */
.retiros-hero { background:var(--charcoal); color:var(--white); padding:120px 40px 80px; text-align:center; position:relative; overflow:hidden; }
.retiros-hero::before { content:'Enso'; position:absolute; font-family:'Cormorant Garamond',serif; font-size:clamp(120px,20vw,240px); font-weight:300; font-style:italic; color:rgba(255,255,255,0.04); top:50%; left:50%; transform:translate(-50%,-50%); white-space:nowrap; pointer-events:none; }
.retiros-hero-label { font-family:'Jost',sans-serif; font-size:11px; letter-spacing:0.2em; text-transform:uppercase; color:var(--accent); margin-bottom:20px; }
.retiros-hero-title { font-family:'Cormorant Garamond',serif; font-size:clamp(36px,6vw,64px); font-weight:300; line-height:1.2; margin-bottom:24px; }
.retiros-hero-body { font-family:'Jost',sans-serif; font-size:17px; line-height:1.8; color:rgba(255,255,255,0.75); max-width:600px; margin:0 auto 40px; }
.waitlist-section { max-width:640px; margin:0 auto; padding:80px 24px; }
.waitlist-intro { font-family:'Jost',sans-serif; font-size:15px; color:var(--warm-mid); line-height:1.8; margin-bottom:48px; text-align:center; }
.waitlist-form { display:flex; flex-direction:column; gap:20px; }
.form-success { background:var(--sage); color:var(--white); padding:32px; text-align:center; border-radius:2px; display:none; }
.form-success.active { display:block; }

@media(max-width:900px){
  .bio-grid,.values-grid { grid-template-columns:1fr; }
  .timeline-item { grid-template-columns:80px 1fr; gap:20px; }
}

/* ─── FOOTER ENSO LOGO ─── */
.footer-enso-wrap { margin-top:20px; }
.footer-enso-link {
  font-family:'Jost',sans-serif;
  font-size:12px;
  font-weight:400;
  letter-spacing:0.12em;
  text-transform:uppercase;
  color:rgba(255,255,255,0.45);
  text-decoration:none;
  transition:color 0.2s;
  display:inline-block;
}
.footer-enso-link:hover { color:var(--white); }

@media (max-width:1100px) {
  nav {
    padding:12px 20px;
    /* iOS safe-area: evita que el contenido se solape con el notch/Dynamic Island */
    padding-top:calc(12px + env(safe-area-inset-top));
  }
  nav.scrolled {
    padding:10px 20px;
    padding-top:calc(10px + env(safe-area-inset-top));
  }
  .nav-right { gap:0; }
  .nav-links { display:none; }
  .nav-cta { display:none; }
  .nav-hamburger { display:flex !important; margin-left:8px; }
}
@media (max-width:900px) {
  nav { padding:16px 20px; gap:12px; }
  nav.scrolled { padding:12px 20px; }
  .hero { grid-template-columns:1fr; }
  .hero-right { aspect-ratio:4/3; height:auto; }
  .hero-left { padding:40px 24px; }
  .hero-actions { flex-direction:column; align-items:flex-start; }
  section { padding:64px 24px; }
  .about, .retiros, .process, .contact-grid { grid-template-columns:1fr; }
  .services-grid, .blog-grid, .pricing-grid { grid-template-columns:1fr; }
  .testimonial { padding:64px 24px; }
  .cta-section, .cta-actions { padding:64px 24px; flex-direction:column; }
  .intro-strip { flex-direction:column; padding:32px 24px; gap:24px; }
  .strip-divider { width:40px; height:1px; }
  .footer-grid { grid-template-columns:1fr 1fr; }
  .services-header { flex-direction:column; align-items:flex-start; gap:20px; }
  .cookie-banner { padding:20px 24px; }
  .cookie-content { flex-direction:column; align-items:flex-start; gap:16px; }
  .page-hero { padding:140px 24px 60px; }
  .content-section { padding:60px 24px; }
  .form-group.form-group--half { grid-template-columns:1fr; }
  .contact-info-block { position:static; }
  .sphaera { padding:80px 24px; }
}
