/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   TOKENS — Paleta restaurada más cercana al original
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
:root {
  --ink:        #0C0812;
  --deep:       #1E0F1C;
  --plum:       #3C1A3A;
  --violet:     #5E2D5C;
  --terra:      #AE582D;
  --terra-hover:#C06A3E;
  --amethyst:   #7B4379;
  --orchid:     #9E6A9C;
  --lavender:   #CAA6C8;
  --mist:       #F0E8F0;
  --petal:      #F5EEF5;
  --white:      #FDFCF9;
  --gold:       #9A8560;
  --t-dark:     #0C0920;
  --t-body:     #3A2040;
  --t-muted:    #6B4869;
  --t-faint:    rgba(107, 72, 105, 0.5);
  --s-light:    #F4EDF4;
  --border:     rgba(202, 166, 200, 0.2);
  --border-mid: rgba(94, 45, 92, 0.2);
  --ease:       cubic-bezier(0.16, 1, 0.3, 1);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   RESET
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Jost', sans-serif;
  background: var(--white);
  color: var(--t-dark);
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; font-weight: 400; line-height: 1.1; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SCROLL PROGRESS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#bar {
  position: fixed; top: 0; left: 0;
  height: 1.5px; width: 0%;
  background: linear-gradient(90deg, var(--violet), var(--gold));
  z-index: 9999;
  transition: width 0.08s linear;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   NAVIGATION
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000; height: 72px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 56px;
  transition: background 0.4s var(--ease), border-color 0.4s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(12, 8, 18, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom-color: rgba(202, 166, 200, 0.1);
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 19px; font-style: italic; font-weight: 400;
  color: var(--white); letter-spacing: 0.04em;
  display: flex; align-items: center; gap: 12px;
}
.nav-logo span { color: var(--lavender); font-style: normal; }
.nav-logo img { width: 36px; height: 36px; border-radius: 8px; flex-shrink: 0; display: block; }
.nav-links { display: flex; gap: 40px; }
.nav-links a {
  font-size: 11px; font-weight: 400; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.nav-btn {
  font-size: 11px; font-weight: 500; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--ink);
  background: var(--lavender); padding: 10px 24px; border-radius: 2px;
  transition: background 0.25s, transform 0.2s;
}
.nav-btn:hover { background: var(--white); transform: translateY(-1px); }
.nav-ham {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px;
}
.nav-ham span {
  display: block; width: 22px; height: 1.5px; background: var(--white);
  transition: transform 0.3s var(--ease), opacity 0.2s;
}
.nav-ham.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-ham.open span:nth-child(2) { opacity: 0; }
.nav-ham.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mob-nav {
  position: fixed; inset: 0; background: var(--ink);
  z-index: 900; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 40px;
  transform: translateX(100%);
  transition: transform 0.5s var(--ease);
}
.mob-nav.open { transform: translateX(0); }
.mob-nav a {
  font-family: 'Playfair Display', serif; font-size: 32px;
  font-style: italic; color: var(--white);
  opacity: 0; transform: translateX(30px);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease), color 0.2s;
}
.mob-nav.open a { opacity: 1; transform: translateX(0); }
.mob-nav.open a:nth-child(1) { transition-delay: 0.12s; }
.mob-nav.open a:nth-child(2) { transition-delay: 0.19s; }
.mob-nav.open a:nth-child(3) { transition-delay: 0.26s; }
.mob-nav.open a:nth-child(4) { transition-delay: 0.33s; }
.mob-nav.open a:nth-child(5) { transition-delay: 0.40s; }
.mob-nav a:hover { color: var(--lavender); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   HERO
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse 900px 700px at 8% 85%, rgba(60, 26, 58, 0.55) 0%, transparent 100%),
    radial-gradient(ellipse 600px 500px at 80% 15%, rgba(94, 45, 92, 0.1) 0%, transparent 100%),
    linear-gradient(158deg, #1A0D18 0%, var(--ink) 55%, #0A0610 100%);
}
.hero-glow {
  position: absolute; z-index: 1;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(94, 45, 92, 0.2) 0%, transparent 70%);
  top: -120px; left: -100px; pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 2;
  width: 100%; max-width: 1180px;
  margin: 0 auto; padding: 0 56px; padding-top: 72px;
  display: grid; grid-template-columns: 1fr 400px;
  gap: 80px; align-items: center; min-height: 100vh;
}
.hero-text { display: flex; flex-direction: column; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 11px; font-weight: 400; letter-spacing: 0.26em;
  text-transform: uppercase; color: var(--lavender);
  margin-bottom: 36px;
  opacity: 0; animation: aUp 0.8s var(--ease) 0.2s forwards;
}
.hero-eyebrow::before { content: ''; width: 32px; height: 1px; background: var(--lavender); opacity: 0.6; }
.hero h1 {
  font-size: clamp(46px, 5.6vw, 76px); font-weight: 400;
  line-height: 1.08; color: var(--white); margin-bottom: 28px;
  opacity: 0; animation: aUp 0.9s var(--ease) 0.4s forwards;
}
.hero h1 em { font-style: italic; color: var(--lavender); }
.hero-sub {
  font-size: 16px; line-height: 1.85;
  color: rgba(236, 234, 255, 0.65); max-width: 460px;
  font-weight: 300; margin-bottom: 52px;
  opacity: 0; animation: aUp 0.9s var(--ease) 0.6s forwards;
}
.hero-actions {
  display: flex; align-items: center; gap: 28px; flex-wrap: wrap;
  opacity: 0; animation: aUp 0.9s var(--ease) 0.8s forwards;
}
.btn-solid {
  display: inline-block; font-family: 'Jost', sans-serif;
  font-size: 11px; font-weight: 500; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--white);
  background: var(--terra); padding: 14px 34px; border-radius: 2px;
  border: 1px solid var(--terra);
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
}
.btn-solid:hover {
  background: var(--terra-hover); border-color: var(--terra-hover);
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(174, 88, 45, 0.35);
}
.btn-outline {
  display: inline-block; font-family: 'Jost', sans-serif;
  font-size: 11px; font-weight: 400; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(236, 234, 255, 0.75);
  border-bottom: 1px solid rgba(202, 166, 200, 0.35); padding-bottom: 3px;
  transition: color 0.2s, border-color 0.2s;
}
.btn-outline:hover { color: var(--white); border-color: var(--lavender); }
.hero-portrait {
  position: relative;
  opacity: 0; animation: aUp 1s var(--ease) 0.5s forwards;
}
.hero-portrait::before {
  content: ''; position: absolute; z-index: -1;
  top: 44%; left: 50%; transform: translate(-50%, -50%);
  width: 160%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle, rgba(94, 45, 92, 0.22) 0%, transparent 65%);
  pointer-events: none;
}
.hero-portrait-frame {
  width: 100%; aspect-ratio: 9/13;
  position: relative;
  filter: drop-shadow(0 20px 60px rgba(60, 26, 58, 0.44));
}
.hero-portrait-frame img { width: 100%; height: 100%; object-fit: contain; object-position: center top; }
.hero-portrait-frame::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 65%, rgba(12, 8, 18, 0.28) 100%);
  pointer-events: none;
}
.hero-scroll {
  position: absolute; bottom: 28px; left: 56px; z-index: 3;
  display: flex; align-items: center; gap: 12px;
  font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase;
  color: rgba(202, 166, 200, 0.45);
  opacity: 0; animation: aUp 0.8s var(--ease) 1.2s forwards;
}
.hero-scroll-line { width: 40px; height: 1px; background: linear-gradient(90deg, rgba(202, 166, 200, 0.4), transparent); }
@keyframes aUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   MARQUEE
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.marquee {
  overflow: hidden; background: var(--plum); padding: 14px 0;
  border-top: 1px solid rgba(202, 166, 200, 0.1);
  border-bottom: 1px solid rgba(202, 166, 200, 0.1);
}
.marquee-track {
  display: flex; white-space: nowrap;
  animation: ticker 30s linear infinite;
}
.marquee-item { display: inline-flex; align-items: center; gap: 28px; padding: 0 28px; flex-shrink: 0; }
.marquee-item span {
  font-family: 'Playfair Display', serif; font-size: 15px;
  font-style: italic; font-weight: 300;
  color: rgba(202, 166, 200, 0.8); letter-spacing: 0.03em;
}
.msep { width: 3px; height: 3px; border-radius: 50%; background: var(--gold); opacity: 0.6; flex-shrink: 0; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   UTILITIES
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.eyebrow {
  font-size: 10px; font-weight: 400; letter-spacing: 0.26em;
  text-transform: uppercase; color: var(--amethyst);
  display: inline-flex; align-items: center; gap: 12px;
  margin-bottom: 18px;
}
.eyebrow::before { content: ''; width: 24px; height: 1px; background: var(--amethyst); }
.eyebrow.light { color: var(--lavender); }
.eyebrow.light::before { background: var(--lavender); }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.75s var(--ease), transform 0.75s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 0.08s; }
.d2 { transition-delay: 0.16s; }
.d3 { transition-delay: 0.24s; }
.d4 { transition-delay: 0.32s; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   ABOUT
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.about { display: grid; grid-template-columns: 1fr 1fr; }
.about-img { position: relative; min-height: 520px; overflow: hidden; background: var(--deep); }
.about-img img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; transition: transform 0.9s var(--ease); }
.about-img:hover img { transform: scale(1.03); }
.about-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(60, 26, 58, 0.3) 0%, transparent 50%);
}
.about-body {
  background: var(--petal); padding: 96px 80px;
  display: flex; flex-direction: column; justify-content: center;
}
.about-body h2 { font-size: clamp(32px, 3vw, 48px); color: var(--t-dark); margin-bottom: 28px; line-height: 1.15; }
.about-body h2 em { font-style: italic; color: var(--violet); }
.about-body p { font-size: 15px; line-height: 1.9; color: var(--t-body); margin-bottom: 20px; font-weight: 300; }
.about-certs { margin-top: 32px; margin-bottom: 36px; border-top: 1px solid var(--border); padding-top: 28px; display: flex; flex-direction: column; gap: 10px; }
.cert-item { display: flex; align-items: flex-start; gap: 12px; font-size: 13px; color: var(--t-muted); }
.cert-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--orchid); flex-shrink: 0; margin-top: 6px; }
.signature { font-family: 'Playfair Display', serif; font-size: 26px; font-style: italic; font-weight: 300; color: var(--violet); margin-bottom: 32px; }
.btn-text {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 500; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--violet);
  transition: color 0.2s;
}
.btn-text::after { content: '→'; font-size: 14px; transition: transform 0.25s var(--ease); }
.btn-text:hover { color: var(--amethyst); }
.btn-text:hover::after { transform: translateX(4px); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   METTA MEANING
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.metta-meaning {
  background: var(--deep);
  padding: 96px 80px;
  position: relative;
  overflow: hidden;
}
.metta-meaning::before, .metta-meaning::after {
  content: ''; position: absolute; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(202, 166, 200, 0.12), transparent);
}
.metta-meaning::before { top: 0; }
.metta-meaning::after { bottom: 0; }
.metta-inner { max-width: 1000px; margin: 0 auto; }
.metta-inner > h2 {
  font-size: clamp(28px, 3vw, 42px);
  color: var(--white); margin-bottom: 56px; line-height: 1.15;
}
.metta-inner > h2 em { font-style: italic; color: var(--lavender); }
.metta-grid {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 0 64px;
  align-items: start;
}
.metta-divider { background: rgba(202, 166, 200, 0.15); align-self: stretch; }
.metta-col { padding: 0 8px; }
.metta-word {
  font-family: 'Playfair Display', serif;
  font-size: 38px; font-style: italic; font-weight: 400;
  color: var(--lavender); display: block;
  margin-bottom: 8px; letter-spacing: 0.01em;
}
.metta-origin {
  font-size: 10px; font-weight: 400;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--orchid); margin-bottom: 20px;
}
.metta-col > p:last-child {
  font-size: 15px; line-height: 1.85;
  color: rgba(202, 166, 200, 0.6); font-weight: 300;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SERVICES
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.services { padding: 112px 80px; background: var(--white); }
.services-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 72px; gap: 40px; }
.services-header h2 { font-size: clamp(34px, 3.8vw, 54px); line-height: 1.1; max-width: 420px; }
.services-header h2 em { font-style: italic; color: var(--violet); }
.services-header-note { font-size: 15px; line-height: 1.75; color: var(--t-muted); max-width: 320px; text-align: right; font-weight: 300; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); }
.svc-card { background: var(--white); padding: 52px 44px 44px; position: relative; overflow: hidden; transition: background 0.3s; }
.svc-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--violet), var(--orchid));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.svc-card:hover::before { transform: scaleX(1); }
.svc-card:hover { background: var(--s-light); }
.svc-num { font-family: 'Playfair Display', serif; font-size: 12px; font-style: italic; color: var(--t-faint); letter-spacing: 0.1em; margin-bottom: 40px; }
.svc-icon { width: 52px; height: 52px; margin-bottom: 28px; border-radius: 4px; overflow: hidden; background: var(--mist); display: flex; align-items: center; justify-content: center; }
.svc-icon img { width: 34px; height: 34px; object-fit: contain; }
.svc-icon svg { width: 26px; height: 26px; color: var(--violet); }
.svc-card h3 { font-size: 22px; color: var(--t-dark); margin-bottom: 16px; line-height: 1.3; }
.svc-card p { font-size: 14px; line-height: 1.8; color: var(--t-muted); font-weight: 300; }
.svc-tags { margin-top: 24px; display: flex; flex-wrap: wrap; gap: 8px; }
.svc-tag { font-size: 10px; font-weight: 400; letter-spacing: 0.12em; text-transform: uppercase; color: var(--violet); background: rgba(94, 45, 92, 0.08); padding: 5px 12px; border-radius: 2px; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   QUOTE
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.quote-block {
  background: var(--deep); padding: 120px 80px;
  text-align: center; position: relative; overflow: hidden;
}
.quote-block::before, .quote-block::after {
  content: ''; position: absolute; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(202, 166, 200, 0.15), transparent);
}
.quote-block::before { top: 0; }
.quote-block::after { bottom: 0; }
.quote-glow {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 500px; height: 300px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(94, 45, 92, 0.18) 0%, transparent 70%);
  pointer-events: none;
}
.quote-inner { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; }
.quote-mark { font-family: 'Playfair Display', serif; font-size: 100px; line-height: 0.7; color: var(--violet); opacity: 0.2; text-align: left; margin-bottom: 12px; }
.quote-text { font-family: 'Playfair Display', serif; font-size: clamp(22px, 3.2vw, 36px); font-weight: 300; font-style: italic; color: var(--white); line-height: 1.55; margin-bottom: 36px; }
.quote-attr { font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--lavender); opacity: 0.7; display: inline-flex; align-items: center; gap: 18px; }
.quote-attr::before, .quote-attr::after { content: ''; width: 28px; height: 1px; background: rgba(202, 166, 200, 0.35); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   APPROACH
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.approach { padding: 112px 80px; background: var(--petal); }
.approach-header { text-align: center; margin-bottom: 72px; }
.approach-header h2 { font-size: clamp(30px, 3.2vw, 46px); color: var(--t-dark); margin-bottom: 16px; }
.approach-header p { font-size: 15px; color: var(--t-muted); max-width: 440px; margin: 0 auto; line-height: 1.75; font-weight: 300; }
.approach-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.ap-card { background: var(--white); padding: 48px 36px; border-radius: 4px; border: 1px solid var(--border); transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s; }
.ap-card:hover { border-color: rgba(94, 45, 92, 0.25); box-shadow: 0 16px 48px rgba(60, 26, 58, 0.1); transform: translateY(-4px); }
.ap-num { font-family: 'Playfair Display', serif; font-size: 48px; font-style: italic; font-weight: 300; color: var(--mist); line-height: 1; margin-bottom: 24px; display: block; }
.ap-card h3 { font-size: 20px; color: var(--t-dark); margin-bottom: 12px; }
.ap-card p { font-size: 14px; line-height: 1.8; color: var(--t-muted); font-weight: 300; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   TESTIMONIALS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.testimonials { padding: 112px 80px; background: var(--white); }
.testimonials-header { text-align: center; margin-bottom: 72px; }
.testimonials-header h2 { font-size: clamp(30px, 3.2vw, 46px); color: var(--t-dark); margin-bottom: 12px; }
.testimonials-header h2 em { font-style: italic; color: var(--violet); }
.testimonials-header p { font-size: 15px; color: var(--t-muted); font-weight: 300; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.t-card { padding: 44px 36px; background: var(--petal); border: 1px solid var(--border); border-radius: 4px; position: relative; transition: box-shadow 0.3s, transform 0.3s; }
.t-card:hover { box-shadow: 0 20px 56px rgba(60, 26, 58, 0.09); transform: translateY(-3px); }
.t-qmark { font-family: 'Playfair Display', serif; font-size: 64px; line-height: 1; color: var(--orchid); opacity: 0.15; position: absolute; top: 20px; left: 28px; }
.t-text { font-family: 'Playfair Display', serif; font-size: 17px; font-style: italic; font-weight: 300; line-height: 1.7; color: var(--t-dark); margin-bottom: 32px; }
.t-author { display: flex; align-items: center; gap: 14px; }
.t-photo { width: 48px; height: 48px; border-radius: 50%; overflow: hidden; flex-shrink: 0; border: 2px solid var(--border); }
.t-photo img { width: 100%; height: 100%; object-fit: cover; }
.t-name { font-size: 14px; font-weight: 500; color: var(--t-dark); display: block; }
.t-loc { font-size: 12px; color: var(--t-muted); letter-spacing: 0.04em; }
.testimonials-cta { text-align: center; margin-top: 52px; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   CONTACT
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.contact { display: grid; grid-template-columns: 1fr 1fr; }
.contact-left {
  background: var(--deep); padding: 96px 72px;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; overflow: hidden;
}
.contact-left::before {
  content: ''; position: absolute;
  width: 350px; height: 350px; border-radius: 50%;
  background: radial-gradient(circle, rgba(94, 45, 92, 0.2) 0%, transparent 70%);
  bottom: -80px; right: -60px; pointer-events: none;
}
.contact-left h2 { font-size: clamp(28px, 2.8vw, 40px); color: var(--white); line-height: 1.2; margin-bottom: 20px; position: relative; z-index: 1; }
.contact-left > p { font-size: 15px; line-height: 1.85; color: rgba(202, 166, 200, 0.65); margin-bottom: 52px; max-width: 360px; font-weight: 300; position: relative; z-index: 1; }
.c-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 28px; position: relative; z-index: 1; }
.c-icon { width: 38px; height: 38px; border: 1px solid rgba(202, 166, 200, 0.2); border-radius: 3px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.c-icon svg { width: 17px; height: 17px; stroke: var(--lavender); fill: none; stroke-width: 1.5; }
.c-item strong { display: block; font-size: 10px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--lavender); margin-bottom: 4px; }
.c-item span, .c-item a { font-size: 15px; color: rgba(236, 234, 255, 0.8); }
.c-item a { text-decoration: none; transition: color 0.2s; }
.c-item a:hover { color: var(--lavender); }
.contact-right { background: var(--s-light); padding: 96px 72px; display: flex; flex-direction: column; justify-content: center; }
.contact-right h3 { font-size: 28px; color: var(--t-dark); margin-bottom: 40px; }
.contact-right h3 em { font-style: italic; color: var(--violet); }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.fg { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.fg label { font-size: 10px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--t-muted); }
.fg input, .fg textarea, .fg select {
  font-family: 'Jost', sans-serif; font-size: 14px; font-weight: 300;
  color: var(--t-dark); background: var(--white);
  border: 1px solid var(--border-mid); border-radius: 2px;
  padding: 13px 16px; outline: none;
  transition: border-color 0.2s, box-shadow 0.2s; -webkit-appearance: none;
}
.fg select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236A5FA0' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
  cursor: pointer;
}
.fg input::placeholder, .fg textarea::placeholder { color: var(--t-faint); }
.fg input:focus, .fg textarea:focus, .fg select:focus {
  border-color: var(--violet);
  box-shadow: 0 0 0 3px rgba(94, 45, 92, 0.08);
}
.fg textarea { resize: vertical; min-height: 108px; }
.form-btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Jost', sans-serif; font-size: 11px; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--white); background: var(--terra);
  border: none; padding: 14px 36px; border-radius: 2px; cursor: pointer;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
  margin-top: 8px; align-self: flex-start;
}
.form-btn:hover { background: var(--terra-hover); transform: translateY(-1px); box-shadow: 0 8px 28px rgba(174, 88, 45, 0.3); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FOOTER
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
footer { background: var(--ink); padding: 72px 80px 48px; }
.footer-rule { height: 1px; background: linear-gradient(90deg, transparent, rgba(202, 166, 200, 0.2), transparent); margin-bottom: 60px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 52px; margin-bottom: 60px; }
.footer-logo { font-family: 'Playfair Display', serif; font-size: 20px; font-style: italic; color: var(--white); display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.footer-logo span { color: var(--lavender); font-style: normal; }
.footer-logo img { width: 40px; height: 40px; border-radius: 8px; flex-shrink: 0; display: block; }
.footer-tagline { font-size: 14px; line-height: 1.75; color: rgba(202, 166, 200, 0.4); max-width: 280px; margin-bottom: 28px; font-style: italic; font-family: 'Playfair Display', serif; }
.footer-social { display: flex; gap: 10px; }
.fsoc { width: 36px; height: 36px; border: 1px solid rgba(202, 166, 200, 0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: rgba(202, 166, 200, 0.45); transition: border-color 0.25s, color 0.25s, background 0.25s; }
.fsoc:hover { border-color: var(--orchid); color: var(--orchid); background: rgba(94, 45, 92, 0.1); }
.fsoc svg { width: 15px; height: 15px; }
.footer-col h5 { font-family: 'Jost', sans-serif; font-size: 10px; font-weight: 500; letter-spacing: 0.24em; text-transform: uppercase; color: rgba(202, 166, 200, 0.35); margin-bottom: 22px; }
.footer-col ul { display: flex; flex-direction: column; gap: 13px; }
.footer-col ul a { font-size: 14px; color: rgba(202, 166, 200, 0.55); transition: color 0.2s; }
.footer-col ul a:hover { color: var(--lavender); }
.footer-bottom { border-top: 1px solid rgba(202, 166, 200, 0.1); padding-top: 32px; display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 12px; color: rgba(202, 166, 200, 0.3); }
.footer-bottom a { font-size: 12px; color: rgba(202, 166, 200, 0.3); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--lavender); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   TESTIMONIOS PAGE
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.tpage-hero {
  background: var(--deep);
  padding: 148px 80px 96px;
  text-align: center;
  position: relative; overflow: hidden;
}
.tpage-hero::before {
  content: ''; position: absolute;
  width: 900px; height: 700px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(94, 45, 92, 0.22) 0%, transparent 68%);
  top: 50%; left: 50%; transform: translate(-50%, -62%);
  pointer-events: none;
}
.tpage-hero-inner {
  max-width: 680px; position: relative; z-index: 1;
  margin: 0 auto;
}
.tpage-back {
  font-size: 10px; font-weight: 400; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(202, 166, 200, 0.35);
  transition: color 0.2s; display: block; text-align: left; margin-bottom: 36px;
}
.tpage-back:hover { color: var(--lavender); }
.tpage-hero-inner .eyebrow { justify-content: center; }
.tpage-hero-inner .eyebrow::after {
  content: ''; width: 24px; height: 1px; background: rgba(202, 166, 200, 0.4);
}
.tpage-hero-inner h1 {
  font-size: clamp(36px, 5vw, 60px);
  color: var(--white); margin-bottom: 20px; line-height: 1.1;
}
.tpage-hero-inner h1 em { font-style: italic; color: var(--lavender); }
.tpage-hero-inner > p {
  font-size: 16px; line-height: 1.85;
  color: rgba(202, 166, 200, 0.6); font-weight: 300;
  max-width: 480px; margin: 0 auto;
}
.tpage-hero-div {
  width: 100%; height: 1px; margin: 40px 0 36px;
  background: linear-gradient(90deg, transparent, rgba(202, 166, 200, 0.18), transparent);
}
.tpage-stats {
  display: flex; align-items: center; justify-content: center;
}
.tstat-item {
  display: flex; flex-direction: column; align-items: center;
  padding: 0 40px;
}
.tstat-num {
  font-family: 'Playfair Display', serif;
  font-size: 34px; font-style: italic; font-weight: 400;
  color: var(--lavender); line-height: 1; margin-bottom: 7px;
}
.tstat-label {
  font-size: 10px; font-weight: 400; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(202, 166, 200, 0.38);
}
.tstat-sep {
  width: 1px; height: 42px;
  background: rgba(202, 166, 200, 0.14); flex-shrink: 0;
}
.tpage-section { background: var(--white); padding: 88px 80px; }
.tpage-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 24px; max-width: 1100px; margin: 0 auto;
}
.tpage-cta {
  background: var(--plum); padding: 100px 80px;
  text-align: center; position: relative; overflow: hidden;
}
.tpage-cta::before, .tpage-cta::after {
  content: ''; position: absolute; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(202, 166, 200, 0.15), transparent);
}
.tpage-cta::before { top: 0; }
.tpage-cta::after { bottom: 0; }
.tpage-cta-inner { position: relative; z-index: 1; max-width: 560px; margin: 0 auto; }
.tpage-cta-inner h2 {
  font-size: clamp(26px, 3.5vw, 42px);
  color: var(--white); margin-bottom: 36px; line-height: 1.2;
}
.tpage-cta-inner h2 em { font-style: italic; color: var(--lavender); }
@media (max-width: 1060px) {
  .tpage-hero { padding: 124px 40px 80px; }
  .tstat-item { padding: 0 28px; }
  .tpage-section { padding: 72px 40px; }
  .tpage-cta { padding: 80px 40px; }
}
@media (max-width: 640px) {
  .tpage-hero { padding: 104px 20px 64px; }
  .tpage-section { padding: 56px 20px; }
  .tpage-grid { grid-template-columns: 1fr; }
  .tpage-cta { padding: 64px 20px; }
  .tstat-item { padding: 0 18px; }
  .tstat-num { font-size: 26px; }
}
@media (max-width: 480px) {
  .tpage-stats { flex-direction: column; gap: 20px; }
  .tstat-sep { width: 42px; height: 1px; }
  .tstat-item { padding: 0; }
}

/* Política de privacidad */
.privacy-section { background: var(--white); padding: 148px 80px 96px; }
.privacy-inner { max-width: 760px; margin: 0 auto; }
.privacy-updated { font-size: 12px; color: var(--orchid); margin-bottom: 48px; letter-spacing: 0.05em; }
.privacy-body h2 { font-size: 18px; font-weight: 500; color: var(--t-dark); margin: 40px 0 12px; }
.privacy-body p, .privacy-body li { font-size: 15px; line-height: 1.85; color: var(--t-body); font-weight: 300; }
.privacy-body ul { margin: 12px 0 16px 20px; }
.privacy-body li { margin-bottom: 6px; }
.privacy-body a { color: var(--violet); text-decoration: none; }
.privacy-body a:hover { color: var(--amethyst); }
@media (max-width: 1060px) { .privacy-section { padding: 124px 40px 80px; } }
@media (max-width: 640px) { .privacy-section { padding: 104px 20px 64px; } }

/* WhatsApp float */
.wa { position: fixed; bottom: 28px; right: 28px; width: 54px; height: 54px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; z-index: 800; box-shadow: 0 4px 20px rgba(37,211,102,0.35); transition: transform 0.25s var(--ease), box-shadow 0.25s; }
.wa::before { content: ''; position: absolute; inset: -3px; border-radius: 50%; border: 1.5px solid rgba(37,211,102,0.4); animation: waPulse 2.8s ease-in-out infinite; }
@keyframes waPulse { 0%, 100% { transform: scale(1); opacity: 0.7; } 60% { transform: scale(1.25); opacity: 0; } }
.wa:hover { transform: scale(1.08) translateY(-2px); box-shadow: 0 8px 32px rgba(37,211,102,0.5); }
.wa svg { width: 26px; height: 26px; fill: white; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   RESPONSIVE
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 1060px) {
  .nav { padding: 0 32px; }
  .nav-links, .nav-btn { display: none; }
  .nav-ham { display: flex; }
  .hero-inner { grid-template-columns: 1fr; padding: 0 32px; min-height: auto; padding-top: 110px; padding-bottom: 80px; gap: 52px; }
  .hero-portrait { max-width: 320px; margin: 0 auto; }
  .hero-scroll { left: 32px; bottom: 24px; }
  .about { grid-template-columns: 1fr; }
  .about-img { min-height: 60vw; }
  .about-body { padding: 72px 40px; }
  .services { padding: 80px 40px; }
  .services-header { flex-direction: column; align-items: flex-start; gap: 20px; }
  .services-header-note { text-align: left; max-width: 100%; }
  .services-grid { grid-template-columns: 1fr; background: none; gap: 0; }
  .svc-card { border: 1px solid var(--border); border-top: none; }
  .svc-card:first-child { border-top: 1px solid var(--border); }
  .metta-meaning { padding: 80px 40px; }
  .metta-grid { grid-template-columns: 1fr; gap: 48px 0; }
  .metta-divider { display: none; }
  .quote-block { padding: 88px 40px; }
  .approach { padding: 80px 40px; }
  .approach-grid { grid-template-columns: 1fr; gap: 16px; }
  .testimonials { padding: 80px 40px; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 20px; }
  .contact { grid-template-columns: 1fr; }
  .contact-right { order: -1; padding: 72px 40px; }
  .contact-left { padding: 72px 40px; }
  footer { padding: 56px 40px 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .frow { grid-template-columns: 1fr; }
  .hero-scroll { display: none; }
  .footer-col ul { gap: 0; }
  .footer-col ul a { display: block; padding: 10px 0; }
}
@media (max-width: 640px) {
  .nav { padding: 0 20px; }
  .hero-inner { padding: 0 20px; padding-top: 100px; padding-bottom: 60px; }
  .about-body { padding: 56px 20px; }
  .services { padding: 64px 20px; }
  .svc-card { padding: 40px 24px 36px; }
  .metta-meaning { padding: 64px 20px; }
  .quote-block { padding: 72px 20px; }
  .approach { padding: 64px 20px; }
  .testimonials { padding: 64px 20px; }
  .t-card { padding: 36px 24px; }
  .contact-left { padding: 56px 20px; }
  .contact-right { padding: 56px 20px; }
  footer { padding: 48px 20px 36px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .wa { bottom: 20px; right: 20px; width: 50px; height: 50px; }
  .form-btn { width: 100%; justify-content: center; }
  .hero h1 { font-size: clamp(34px, 9.5vw, 46px); }
  .hero-portrait { max-width: 240px; }
  .about-img { min-height: 260px; }
  .ap-card { padding: 36px 24px; }
}
