/* =============================================
   DESIGN SYSTEM — Sound Therapy Landing
   Dark Forest × Contemporary Wellness × Quiet Luxury
   ============================================= */

:root {
  /* ---- Color System ---- */
  --bg-deep:        #101714;
  --bg-surface:     #17231F;
  --bg-elevated:    #1c2a25;
  --green:          #007A53;
  --green-soft:     rgba(0, 122, 83, 0.15);
  --sage:           #A8BCAF;
  --sage-dim:       rgba(168, 188, 175, 0.5);
  --cream:          #FCD299;
  --cream-soft:     rgba(252, 210, 153, 0.12);
  --text-primary:   #F5F1E8;
  --text-secondary: #B9C0B8;
  --border:         rgba(168, 188, 175, 0.1);
  --border-hover:   rgba(168, 188, 175, 0.2);

  /* ---- Typography ---- */
  --font: 'Manrope', system-ui, -apple-system, sans-serif;

  /* ---- Spacing ---- */
  --section-pad: clamp(100px, 14vw, 180px);
  --container:   1060px;

  /* ---- Motion ---- */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --duration: 0.7s;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  background-color: var(--bg-deep);
  color: var(--text-primary);
  font-family: var(--font);
  font-weight: 400;
  line-height: 1.8;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--green); color: var(--text-primary); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 72px);
}

/* ---- Utilities ---- */
.desktop-only { display: inline; }
@media (max-width: 600px) { .desktop-only { display: none; } }

/* ---- Animations ---- */
.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity var(--duration) var(--ease), transform var(--duration) var(--ease);
}

.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* ---- Shared Typography ---- */
.eyebrow {
  display: block;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 20px;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.section-body {
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.85;
  color: var(--text-secondary);
  margin-bottom: 20px;
  max-width: 520px;
}

/* =============================================
   NAV
   ============================================= */

nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px clamp(24px, 5vw, 72px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s var(--ease), padding 0.3s var(--ease);
}

nav.scrolled {
  background: rgba(16, 23, 20, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding-top: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}

.nav-wordmark {
  font-size: 0.92rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--text-primary);
}

.nav-cta {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  border: 1px solid rgba(252, 210, 153, 0.25);
  padding: 9px 22px;
  border-radius: 6px;
  transition: all 0.3s var(--ease);
  cursor: pointer;
}

.nav-cta:hover {
  background: var(--cream);
  color: var(--bg-deep);
  border-color: var(--cream);
}

/* =============================================
   HERO
   ============================================= */

#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('experience_woman.jpg');
  background-size: cover;
  background-position: center 35%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(16, 23, 20, 0.45) 0%,
    rgba(16, 23, 20, 0.6) 35%,
    rgba(16, 23, 20, 0.85) 70%,
    var(--bg-deep) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 160px clamp(24px, 5vw, 72px) 120px;
  max-width: 800px;
}

.hero-eyebrow {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 40px;
  opacity: 0;
  animation: heroFade 1.2s 0.2s var(--ease) forwards;
}

.hero-title {
  font-size: clamp(2.6rem, 6.5vw, 5rem);
  font-weight: 400;
  line-height: 1.25;
  color: var(--text-primary);
  margin-bottom: 28px;
  letter-spacing: -0.02em;
  opacity: 0;
  animation: heroFade 1.2s 0.4s var(--ease) forwards;
}

.hero-title em {
  font-style: normal;
  color: var(--cream);
}

.hero-subtitle {
  font-size: clamp(0.9rem, 1.6vw, 1.02rem);
  font-weight: 400;
  color: var(--text-secondary);
  margin-bottom: 56px;
  line-height: 1.85;
  opacity: 0;
  animation: heroFade 1.2s 0.6s var(--ease) forwards;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--cream);
  color: var(--bg-deep);
  padding: 15px 40px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  opacity: 0;
  animation: heroFade 1.2s 0.8s var(--ease) forwards;
}

.btn-primary:hover {
  background: var(--text-primary);
  transform: translateY(-1px);
  box-shadow: 0 8px 32px rgba(252, 210, 153, 0.15);
}

.btn-primary .arrow { transition: transform 0.3s; }
.btn-primary:hover .arrow { transform: translateX(3px); }

@keyframes heroFade {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* =============================================
   EXPERIENCE
   ============================================= */

#experience {
  padding: var(--section-pad) 0;
  background: var(--bg-deep);
}

.experience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.feature-list {
  list-style: none;
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.feature-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sage);
  flex-shrink: 0;
  margin-top: 10px;
  opacity: 0.6;
}

.feature-text strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 3px;
}

.feature-text p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.experience-images {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  height: 560px;
}

.exp-img {
  border-radius: 6px;
  overflow: hidden;
}

.exp-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =============================================
   PROCESO DE LA SESIÓN
   ============================================= */

#proceso {
  padding: var(--section-pad) 0;
  background: var(--bg-surface);
}

.proceso-header {
  margin-bottom: 64px;
}

.proceso-intro {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text-secondary);
  max-width: 820px;
  margin-top: 16px;
}

.proceso-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.proceso-card {
  background: rgba(16, 23, 20, 0.6);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px 24px;
  transition: all 0.3s var(--ease);
}

.proceso-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

.proceso-num {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--cream);
  display: block;
  margin-bottom: 20px;
}

.proceso-card-title {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 10px;
  line-height: 1.35;
}

.proceso-card-body {
  font-size: 0.84rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* =============================================
   LO QUE INCLUYE TU EXPERIENCIA
   ============================================= */

#incluye {
  padding: var(--section-pad) 0;
  background: var(--bg-deep);
}

.incluye-header {
  text-align: center;
  margin-bottom: 56px;
}

.incluye-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.incluye-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px 24px;
  transition: all 0.3s var(--ease);
}

.incluye-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

.incluye-card.featured-incluye {
  background: var(--cream-soft);
  border-color: rgba(252, 210, 153, 0.25);
  grid-column: span 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.featured-incluye .incluye-tag {
  color: var(--cream);
}

.incluye-tag {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 12px;
}

.incluye-card-title {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.incluye-card-body {
  font-size: 0.84rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.valor-real-banner {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px 36px;
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
}

.valor-real-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
}

.valor-real-text {
  font-size: 1.08rem;
  font-weight: 400;
  color: var(--cream);
}

#quote-band {
  position: relative;
  padding: clamp(100px, 14vw, 160px) 0;
  background: var(--bg-surface);
  overflow: hidden;
}

.quote-bg {
  position: absolute;
  inset: 0;
  background-image: url('experience_woman.jpg');
  background-size: cover;
  background-position: center;
  filter: blur(4px) brightness(0.4);
  transform: scale(1.05);
}

.quote-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(16, 23, 20, 0.88) 0%,
    rgba(23, 35, 31, 0.94) 50%,
    rgba(16, 23, 20, 0.88) 100%
  );
}

.quote-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 72px);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.quote-line {
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cream), transparent);
  margin: 0 auto;
  opacity: 0.6;
}

.quote-text {
  font-size: clamp(1.35rem, 3.2vw, 2.2rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.6;
  color: var(--text-primary);
  margin: 32px 0;
  letter-spacing: -0.01em;
}

.quote-attr {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 32px;
  opacity: 0.9;
}

/* =============================================
   BENJAMIN
   ============================================= */

#benjamin {
  position: relative;
  padding: var(--section-pad) 0;
  background: var(--bg-deep);
  overflow: hidden;
}

.benjamin-ambient {
  position: absolute;
  top: 50%;
  left: 20%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 122, 83, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.benjamin-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.benjamin-image-frame {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
  border: 1px solid var(--border);
}

.benjamin-image-frame img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  object-position: center 20%;
  transition: transform 0.8s var(--ease);
}

.benjamin-image-frame:hover img {
  transform: scale(1.02);
}

.benjamin-content .section-body { margin-bottom: 16px; }

.credentials {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
  margin-top: 36px;
}

.credential-item {
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--sage);
  letter-spacing: 0.03em;
}

/* =============================================
   GALLERY — Mosaic & Panoramic
   ============================================= */

#gallery {
  padding: var(--section-pad) 0;
  background: var(--bg-surface);
}

.gallery-header {
  text-align: center;
  margin-bottom: 56px;
}

.gallery-header .section-body {
  margin-left: auto;
  margin-right: auto;
}

.gallery-mosaic {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 16px;
}

.gallery-featured {
  height: 500px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.gallery-featured img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.gallery-featured:hover img {
  transform: scale(1.02);
}

.gallery-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 500px;
}

.gallery-item {
  flex: 1;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--border);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
  filter: saturate(0.92);
}

.gallery-item:hover img {
  transform: scale(1.03);
  filter: saturate(1);
}

.gallery-bottom {
  margin-top: 16px;
  height: 340px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.gallery-bottom img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transition: transform 0.8s var(--ease);
}

.gallery-bottom:hover img {
  transform: scale(1.02);
}

/* =============================================
   PRICING
   ============================================= */

#pricing {
  padding: var(--section-pad) 0;
  background: var(--bg-deep);
}

.pricing-layout {
  max-width: 580px;
  margin: 0 auto;
  text-align: center;
}

.pricing-header {
  margin-bottom: 48px;
}

.pricing-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: clamp(32px, 5vw, 56px);
}

.pricing-date {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 36px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}

.pricing-date-day {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-primary);
}

.pricing-date-time {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sage);
}

.pricing-body {
  margin-bottom: 36px;
}

.pricing-regular {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 8px;
}

.pricing-strike {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--text-secondary);
  text-decoration: line-through;
  opacity: 0.5;
}

.pricing-regular-label {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
  opacity: 0.5;
}

.pricing-founder {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
}

.pricing-amount {
  font-size: clamp(3rem, 7vw, 4rem);
  font-weight: 400;
  color: var(--cream);
  line-height: 1;
  letter-spacing: -0.02em;
}

.pricing-founder-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.7;
}

.pricing-includes {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--cream-soft);
  border-radius: 6px;
}

.pricing-includes-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cream);
  opacity: 0.6;
}

.pricing-includes-text {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--cream);
  opacity: 0.85;
}

.pricing-cta {
  width: 100%;
  justify-content: center;
  margin-top: 32px;
  opacity: 1;
  animation: none;
}

/* =============================================
   FORM
   ============================================= */

#registro {
  padding: var(--section-pad) 0;
  background: var(--bg-surface);
}

.form-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.form-intro { max-width: 420px; }

.form-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: clamp(28px, 4vw, 44px);
}

.form-card-title {
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.form-card-subtitle {
  font-size: 0.82rem;
  color: var(--text-secondary);
  margin-bottom: 28px;
}

.form-group { margin-bottom: 20px; }

.form-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage-dim);
  margin-bottom: 8px;
}

/* Option Selector */
.option-selector {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.option-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: rgba(16, 23, 20, 0.5);
  cursor: pointer;
  transition: all 0.25s var(--ease);
  position: relative;
}

.option-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.option-card:hover {
  border-color: var(--border-hover);
}

.option-card.active {
  border-color: var(--green);
  background: var(--green-soft);
}

.option-card.sold-out {
  opacity: 0.55;
  cursor: not-allowed;
  border-style: dashed;
  pointer-events: none;
}

.sold-out-badge {
  margin-left: auto;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: #e74c3c;
  background: rgba(231, 76, 60, 0.12);
  border: 1px solid rgba(231, 76, 60, 0.3);
  padding: 3px 8px;
  border-radius: 4px;
  flex-shrink: 0;
}

.option-radio-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid var(--sage-dim);
  flex-shrink: 0;
  transition: all 0.25s;
}

.option-card.active .option-radio-dot {
  border-color: var(--green);
  background: var(--green);
}

.option-title {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-primary);
}

.option-desc {
  font-size: 0.72rem;
  color: var(--text-secondary);
  line-height: 1.4;
  margin-top: 1px;
}

.form-input {
  width: 100%;
  background: rgba(16, 23, 20, 0.6);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 14px 16px;
  font-family: var(--font);
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--text-primary);
  outline: none;
  transition: all 0.25s var(--ease);
}

.form-input::placeholder { color: var(--sage-dim); }

.form-input:focus {
  border-color: var(--green);
  background: var(--green-soft);
  box-shadow: 0 0 0 3px rgba(0, 122, 83, 0.08);
}

.form-input.error { border-color: #c0392b; }

.btn-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--cream);
  color: var(--bg-deep);
  padding: 16px 32px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  margin-top: 20px;
}

.btn-submit:hover {
  background: var(--text-primary);
  transform: translateY(-1px);
  box-shadow: 0 8px 32px rgba(252, 210, 153, 0.12);
}

.btn-submit:active { transform: translateY(0); }
.btn-submit .arrow { transition: transform 0.3s; }
.btn-submit:hover .arrow { transform: translateX(3px); }

.form-success {
  display: none;
  text-align: center;
  padding: 36px 16px;
}

.form-success.visible { display: block; }

.success-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--green);
  font-size: 1.3rem;
  animation: successScale 0.5s var(--ease) forwards;
}

@keyframes successScale {
  from { transform: scale(0); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.success-title {
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.success-text {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* =============================================
   FOOTER
   ============================================= */

footer {
  background: var(--bg-deep);
  border-top: 1px solid var(--border);
  padding: 40px clamp(24px, 5vw, 72px);
}

.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-wordmark {
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--sage-dim);
}

.footer-credit {
  font-size: 0.72rem;
  color: var(--sage-dim);
}

.footer-credit a {
  color: var(--sage);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(168, 188, 175, 0.3);
  transition: color 0.3s;
}

.footer-credit a:hover { color: var(--text-primary); }

.footer-copy {
  font-size: 0.68rem;
  color: rgba(168, 188, 175, 0.35);
}

/* =============================================
   MOBILE IMAGE BRIDGE
   ============================================= */

.mobile-image-bridge {
  display: none;
}

/* =============================================
   RESPONSIVE
   ============================================= */

@media (max-width: 900px) {
  :root {
    --section-pad: clamp(64px, 10vw, 100px);
  }

  .experience-grid,
  .benjamin-grid,
  .form-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .proceso-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .incluye-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .incluye-card.featured-incluye {
    grid-column: span 2;
  }

  .experience-images {
    height: 300px;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
  }

  .benjamin-image-frame img { height: 380px; }
  .section-body { max-width: 100%; }

  /* Quote band — better mobile feel */
  .quote-text {
    font-size: clamp(1.15rem, 4.5vw, 1.6rem);
    line-height: 1.55;
  }
}

@media (max-width: 600px) {
  /* Mobile image bridge — show between hero and experience */
  .mobile-image-bridge {
    display: block;
    width: 100%;
    height: 240px;
    overflow: hidden;
    margin-top: -40px;
    position: relative;
    z-index: 1;
  }

  .mobile-image-bridge img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
  }

  /* Hide therapy_head from experience grid on mobile (it's shown above) */
  .experience-images .exp-img:last-child {
    display: none;
  }

  .experience-images {
    grid-template-columns: 1fr;
    height: 220px;
  }

  /* Reduce hero bottom padding on mobile */
  .hero-content {
    padding: 130px 24px 80px;
  }

  .hero-title {
    font-size: clamp(2.2rem, 9vw, 3rem);
    line-height: 1.2;
  }

  /* Experience section — less top padding since bridge image is above */
  #experience {
    padding-top: 56px;
  }

  /* Quote band — mobile */
  #quote-band {
    padding: 72px 0;
  }

  .quote-inner {
    padding: 0 24px;
  }

  .quote-text {
    font-size: 1.15rem;
    line-height: 1.65;
    margin: 24px 0;
  }

  .quote-attr {
    margin-bottom: 24px;
  }

  .quote-line {
    width: 36px;
  }

  /* Benjamin — centered on mobile, editorial feel */
  .benjamin-grid {
    gap: 32px;
  }

  .benjamin-image-frame img {
    height: 320px;
    object-position: center 15%;
    border-radius: 6px;
  }

  .benjamin-content {
    text-align: center;
  }

  .benjamin-content .eyebrow {
    text-align: center;
  }

  .benjamin-content .section-body {
    text-align: left;
  }

  .credentials {
    justify-content: center;
    gap: 8px 12px;
  }

  .credential-item {
    font-size: 0.72rem;
  }

  /* Proceso & Incluye — Mobile Grids */
  .proceso-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .incluye-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .incluye-card.featured-incluye {
    grid-column: span 1;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .valor-real-banner {
    flex-direction: column;
    padding: 20px 24px;
    gap: 6px;
  }

  /* Gallery Mosaic — Mobile */
  .gallery-mosaic {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .gallery-featured {
    height: 250px;
    border-radius: 6px;
  }

  .gallery-stack {
    height: auto;
    gap: 12px;
  }

  .gallery-item {
    height: 220px;
    border-radius: 6px;
  }

  .gallery-bottom {
    margin-top: 12px;
    height: 200px;
    border-radius: 6px;
  }

  .gallery-header {
    margin-bottom: 32px;
  }

  /* Pricing */
  .pricing-date {
    flex-direction: column;
    gap: 4px;
  }

  .pricing-card {
    padding: 28px 24px;
  }

  /* Form */
  .form-layout {
    gap: 32px;
  }

  .form-intro {
    text-align: center;
  }

  .form-intro .eyebrow {
    font-size: 0.6rem;
    letter-spacing: 0.18em;
  }

  .form-card {
    padding: 24px 20px;
  }

  /* Footer */
  .footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  /* Buttons */
  .btn-primary { width: 100%; justify-content: center; }
}

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg-deep); }
::-webkit-scrollbar-thumb { background: var(--bg-surface); border-radius: 2px; }
::-webkit-scrollbar-thumb:hover { background: var(--sage-dim); }
