/* ── TOKENS ─────────────────────────────────── */
:root {
  --bg: #e4eeed;
  --surface: #dce8e6;
  --white: hwb(163 93% 4%);
  --navy: #a85997;
  --navy2: #6b255c;
  --hero-bg: #d8e8e4;
  --accent: #903a7b;
  --accent-light: #fcc9ef;
  --accent-mid: #70276c;
  --text: #1a2a22;
  --muted: #806a7c;
  --gold: #c8882a;
  --gold-light: #f0d8a8;
  --line: rgba(10, 40, 30, 0.1);

  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);

  /* Neumorphism shadows (light sections) */
  --neu-out: 6px 6px 16px rgba(10, 40, 30, 0.13), -6px -6px 16px rgba(255, 255, 255, 0.72);
  --neu-in: inset 4px 4px 10px rgba(10, 40, 30, 0.1), inset -4px -4px 10px rgba(255, 255, 255, 0.68);
  --neu-sm: 4px 4px 10px rgba(10, 40, 30, 0.11), -4px -4px 10px rgba(255, 255, 255, 0.68);
  /* Neumorphism shadows (dark sections) */
  --neu-dark: 5px 5px 14px rgba(0, 0, 0, 0.35), -3px -3px 10px rgba(255, 255, 255, 0.04);
  --neu-dark-in: inset 4px 4px 10px rgba(0, 0, 0, 0.3), inset -3px -3px 8px rgba(255, 255, 255, 0.04);
}

/* ── RESET ──────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ── UTILITY ────────────────────────────────── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 48px;
}

.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent-mid);
}

.rule {
  display: block;
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 16px 0;
}

/* ── REVEAL ON SCROLL ───────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal-d1 {
  transition-delay: .1s;
}

.reveal-d2 {
  transition-delay: .2s;
}

.reveal-d3 {
  transition-delay: .3s;
}

.reveal-d4 {
  transition-delay: .4s;
}

/* ── NAV ────────────────────────────────────── */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 14px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background .4s, padding .4s, box-shadow .4s;
}

#nav.scrolled {
  background: var(--white);
  padding: 10px 48px;
  box-shadow: var(--neu-sm);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo img {
  height: 71px;
  width: auto;
  object-fit: contain;
}

.nav-logo-text {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--navy);
  letter-spacing: .05em;
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  font-size: 13px;
  font-weight: 400;
  color: var(--text);
  position: relative;
  padding-bottom: 2px;
  transition: color .2s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width .3s var(--ease);
}

.nav-links a:hover {
  color: var(--accent);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .1em;
  border: 1px solid var(--accent);
  padding: 9px 22px;
  color: var(--accent);
  border-radius: 4px;
  box-shadow: var(--neu-sm);
  transition: background .25s, color .25s, box-shadow .25s;
}

.nav-cta:hover {
  background: var(--accent);
  color: #fff;
  box-shadow: var(--neu-in);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--navy);
  transition: all .3s;
}

/* ── HERO — Opción B: foto izq · texto der ──── */
#hero {
  min-height: 100vh;
  background: var(--hero-bg);
  display: flex;
  align-items: center;
  padding-top: 74px;
}

.hero-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 80px 48px;
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 72px;
  align-items: center;
}

.hero-photo-col {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-photo-accent {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  border: 1px dashed rgba(58, 144, 112, .4);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero-photo-ring {
  width: 360px;
  height: 360px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(58, 144, 112, .25);
  box-shadow: var(--neu-out);
  background: linear-gradient(135deg, var(--accent-light) 0%, #a0c8be 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-photo-ring img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-photo-fallback {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--accent-mid);
  letter-spacing: .08em;
  text-align: center;
}

.hero-text-col {
  padding: 20px 0;
}

.hero-eyebrow {
  margin-bottom: 20px;
}

.hero-heading {
  font-family: var(--serif);
  font-size: clamp(44px, 5vw, 70px);
  font-weight: 300;
  line-height: 1.06;
  color: var(--navy);
  letter-spacing: -.01em;
  margin-bottom: 20px;
}

.hero-heading em {
  font-style: italic;
  color: var(--accent);
}

.hero-sub {
  font-size: 16px;
  font-weight: 300;
  color: var(--muted);
  max-width: 420px;
  line-height: 1.75;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--navy);
  color: var(--white);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 6px;
  box-shadow: var(--neu-out);
  transition: background .25s, box-shadow .25s;
  cursor: pointer;
  border: none;
  display: inline-block;
}

.btn-primary:hover {
  background: var(--accent);
  box-shadow: var(--neu-in);
}

.btn-ghost {
  font-size: 13px;
  color: var(--text);
  border-bottom: 1px solid var(--line);
  padding-bottom: 2px;
  transition: color .25s, border-color .25s;
  cursor: pointer;
}

.btn-ghost:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.hero-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.hero-pill {
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--bg);
  border-radius: 20px;
  padding: 5px 14px;
  box-shadow: var(--neu-sm);
}

/* ── STATS ──────────────────────────────────── */
#stats {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 40px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-item {
  padding: 24px 40px;
  border-left: 1px solid var(--line);
  background: var(--white);
  border-radius: 8px;
  margin: 0 8px;
  box-shadow: var(--neu-sm);
}

.stat-item:first-child {
  border-left: 1px solid var(--line);
}

.stat-num {
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 300;
  color: var(--navy);
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
}

/* ── ABOUT ──────────────────────────────────── */
#about {
  padding: 120px 0;
  background: var(--bg);
}

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

.about-photo-wrap {
  position: relative;
}

.about-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: linear-gradient(135deg, var(--accent-light) 0%, #a0c8be 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 86px 29px;
  box-shadow: var(--neu-out);
}

.about-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.about-photo-label {
  font-family: var(--serif);
  font-size: 16px;
  color: var(--accent-mid);
  letter-spacing: .08em;
  position: relative;
}

.about-accent {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 80px;
  height: 80px;
  border: 1px solid var(--gold);
  border-radius: 4px;
  pointer-events: none;
}

.about-heading {
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 50px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 24px;
}

.about-heading em {
  font-style: italic;
}

.about-body {
  font-size: 15px;
  font-weight: 300;
  color: var(--text);
  line-height: 1.85;
  margin-bottom: 20px;
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.tag-pill {
  font-size: 12px;
  letter-spacing: .06em;
  background: var(--bg);
  color: var(--accent-mid);
  padding: 7px 18px;
  border-radius: 20px;
  box-shadow: var(--neu-sm);
  transition: box-shadow .2s;
}

.tag-pill:hover {
  box-shadow: var(--neu-in);
}

/* ── SERVICES ───────────────────────────────── */
#services {
  padding: 100px 0;
  background: var(--navy);
}

.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
}

.services-heading {
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 50px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
}

.services-heading em {
  font-style: italic;
  color: var(--accent-light);
}

.services-sub {
  font-size: 14px;
  color: var(--muted);
  max-width: 240px;
  text-align: right;
  line-height: 1.6;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.service-card {
  background: var(--navy2);
  padding: 44px 40px;
  border-radius: 16px;
  box-shadow: var(--neu-dark);
  transition: box-shadow .3s, transform .3s;
  cursor: default;
}

.service-card:hover {
  box-shadow: var(--neu-dark-in);
  transform: translateY(2px);
}

.service-num {
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 300;
  color: rgba(181 223 207);
  line-height: 1;
  margin-bottom: 20px;
}

.service-title {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.2;
}

.service-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 20px;
}

.service-tag {
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent-light);
  border-bottom: 1px solid rgba(58, 144, 112, .35);
  padding-bottom: 2px;
  display: inline-block;
}

/* ── TESTIMONIALS ───────────────────────────── */
#testimonials {
  padding: 100px 0;
  background: var(--bg);
}

.test-heading {
  font-family: var(--serif);
  font-size: clamp(32px, 3.5vw, 46px);
  font-weight: 300;
  color: var(--navy);
  text-align: center;
  margin-bottom: 56px;
}

.test-heading em {
  font-style: italic;
}

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

.test-card {
  background: var(--bg);
  padding: 36px 32px;
  border-radius: 16px;
  box-shadow: var(--neu-out);
  transition: box-shadow .3s;
}

.test-card:hover {
  box-shadow: var(--neu-in);
}

.test-quote-mark {
  font-family: var(--serif);
  font-size: 56px;
  line-height: 1;
  color: var(--accent-light);
  margin-bottom: 8px;
}

.test-quote {
  font-size: 14px;
  font-style: italic;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 20px;
  font-family: var(--serif);
}

.test-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.test-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg);
  box-shadow: var(--neu-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 16px;
  color: var(--accent-mid);
  flex-shrink: 0;
}

.test-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
}

.test-role {
  font-size: 11px;
  color: var(--muted);
}

/* ── MINDFULNESS ────────────────────────────── */
#mindfulness {
  padding: 120px 0;
  background: var(--navy);
}

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

.mf-eyebrow {
  color: var(--accent-light);
  display: block;
  margin-bottom: 12px;
}

.mf-heading {
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
}

.mf-heading em {
  font-style: italic;
  color: var(--accent-light);
}

.mf-intro {
  font-size: 15px;
  color: rgba(255, 255, 255, .45);
  max-width: 480px;
  line-height: 1.75;
}

.mf-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}

.mf-card {
  background: var(--navy2);
  padding: 44px 36px;
  border-radius: 16px;
  box-shadow: var(--neu-dark);
  transition: box-shadow .3s, transform .3s;
}

.mf-card:hover {
  box-shadow: var(--neu-dark-in);
  transform: translateY(2px);
}

.mf-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--navy);
  box-shadow: var(--neu-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}

.mf-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--accent-light);
  fill: none;
  stroke-width: 1.5;
}

.mf-card-title {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.2;
}

.mf-card-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, .4);
  line-height: 1.75;
  margin-bottom: 24px;
}

.mf-card-link {
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent-light);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.mf-card-link::after {
  content: '→';
  transition: transform .2s;
}

.mf-card-link:hover::after {
  transform: translateX(4px);
}

.mf-divider {
  margin-top: 56px;
  padding-top: 56px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.mf-detail-heading {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 300;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 16px;
}

.mf-detail-heading em {
  font-style: italic;
  color: var(--accent-light);
}

.mf-detail-body {
  font-size: 14px;
  color: rgba(255, 255, 255, .42);
  line-height: 1.8;
  margin-bottom: 16px;
}

.mf-steps {
  list-style: none;
}

.mf-steps li {
  font-size: 13px;
  color: rgba(255, 255, 255, .45);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.mf-steps li::before {
  content: attr(data-n);
  font-family: var(--serif);
  font-size: 20px;
  color: rgba(58, 144, 112, .5);
  flex-shrink: 0;
  line-height: 1.2;
}

.mf-cta-bar {
  margin-top: 64px;
  padding: 44px 52px;
  border-radius: 16px;
  background: rgba(58, 144, 112, .1);
  border: 1px solid rgba(58, 144, 112, .25);
  box-shadow: var(--neu-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.mf-cta-text {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 300;
  color: var(--white);
  line-height: 1.3;
}

.mf-cta-text em {
  font-style: italic;
  color: var(--accent-light);
}

.btn-outline-accent {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent-light);
  border: 1px solid rgba(58, 144, 112, .5);
  padding: 12px 28px;
  border-radius: 6px;
  white-space: nowrap;
  cursor: pointer;
  display: inline-block;
  box-shadow: var(--neu-dark);
  transition: border-color .2s, background .2s, box-shadow .2s;
}

.btn-outline-accent:hover {
  border-color: var(--accent-light);
  background: rgba(58, 144, 112, .15);
  box-shadow: var(--neu-dark-in);
}

/* ── BOOKING ────────────────────────────────── */
#booking {
  padding: 120px 0;
  background: var(--white);
}

.booking-header {
  text-align: center;
  margin-bottom: 64px;
}

.booking-heading {
  font-family: var(--serif);
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 300;
  color: var(--navy);
  line-height: 1.1;
  margin-top: 12px;
}

.booking-heading em {
  font-style: italic;
}

.booking-sub {
  font-size: 14px;
  color: var(--muted);
  margin-top: 8px;
}

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

/* Calendar */
.cal-wrap {
  background: var(--white);
  padding: 32px;
  border-radius: 20px;
  box-shadow: var(--neu-out);
}

.cal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.cal-month {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--navy);
}

.cal-nav {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: var(--white);
  box-shadow: var(--neu-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 16px;
  color: var(--muted);
  transition: box-shadow .2s, color .2s;
}

.cal-nav:hover {
  box-shadow: var(--neu-in);
  color: var(--accent);
}

.cal-days-head {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  margin-bottom: 8px;
}

.cal-day-label {
  text-align: center;
  font-size: 10px;
  letter-spacing: .08em;
  color: var(--muted);
  padding: 6px 0;
  text-transform: uppercase;
}

.cal-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--muted);
  border-radius: 50%;
  cursor: default;
  transition: box-shadow .2s, color .2s, background .2s;
}

.cal-day.avail {
  color: var(--navy);
  cursor: pointer;
  background: var(--white);
  box-shadow: var(--neu-sm);
}

.cal-day.avail:hover {
  box-shadow: var(--neu-in);
  color: var(--accent);
}

.cal-day.sel {
  background: var(--navy) !important;
  color: var(--white) !important;
  box-shadow: var(--neu-in) !important;
}

.time-slots {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: none;
}

.time-slots.active {
  display: block;
}

.time-slots-label {
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.time-grid {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.time-chip {
  font-size: 12px;
  padding: 7px 14px;
  border-radius: 20px;
  background: var(--white);
  color: var(--accent-mid);
  cursor: pointer;
  box-shadow: var(--neu-sm);
  border: none;
  transition: box-shadow .2s, color .2s;
}

.time-chip:hover {
  box-shadow: var(--neu-in);
  color: var(--accent);
}

.time-chip.sel {
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--neu-in);
}

/* Form */
.form-wrap {
  background: var(--white);
  padding: 40px;
  border-radius: 20px;
  box-shadow: var(--neu-out);
}

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

.form-label {
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 6px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid var(--line);
  background: transparent;
  padding: 10px 0;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--text);
  outline: none;
  transition: border-color .2s;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--accent);
}

.form-textarea {
  resize: none;
  height: 72px;
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236a8078' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
  cursor: pointer;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-honeypot {
  display: none !important;
  position: absolute;
  left: -9999px;
}

.btn-submit {
  width: 100%;
  background: var(--navy);
  color: var(--white);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 8px;
  box-shadow: var(--neu-out);
  transition: background .25s, box-shadow .25s;
}

.btn-submit:hover {
  background: var(--accent);
  box-shadow: var(--neu-in);
}

/* ── FOOTER ─────────────────────────────────── */
#footer {
  background: var(--navy);
  padding: 72px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  padding-bottom: 56px;
}

.footer-brand {
  padding-right: 56px;
}

.footer-logo-img {
  height: 114px;
  width: auto;
  margin-bottom: 20px;
  object-fit: contain;
}

.footer-tagline {
  font-size: 12px;
  color: var(--accent-light);
  letter-spacing: .1em;
  margin-bottom: 20px;
}

.footer-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, .28);
  line-height: 1.7;
  max-width: 280px;
}

.footer-col-title {
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .24);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, .38);
  transition: color .2s;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-contact-item {
  font-size: 13px;
  color: rgba(255, 255, 255, .32);
  margin-bottom: 10px;
  line-height: 1.5;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.footer-social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--navy2);
  box-shadow: var(--neu-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: rgba(255, 255, 255, .35);
  cursor: pointer;
  transition: box-shadow .2s, color .2s;
}

.footer-social-btn:hover {
  box-shadow: var(--neu-dark-in);
  color: var(--accent-light);
}

.footer-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, .04);
}

.footer-copy {
  font-size: 11px;
  color: rgba(255, 255, 255, .18);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 11px;
  color: rgba(255, 255, 255, .18);
  transition: color .2s;
}

.footer-legal a:hover {
  color: rgba(255, 255, 255, .5);
}

/* ── ANIMACIONES DE ENTRADA ─────────────────── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.hero-anim-1 {
  animation: fadeUp .9s var(--ease) .1s both;
}

.hero-anim-2 {
  animation: fadeUp .9s var(--ease) .25s both;
}

.hero-anim-3 {
  animation: fadeUp .9s var(--ease) .4s both;
}

.hero-anim-4 {
  animation: fadeUp .9s var(--ease) .55s both;
}

.hero-anim-photo {
  animation: fadeUp 1.1s var(--ease) .15s both;
}

/* ── RESPONSIVE ─────────────────────────────── */
@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .test-grid {
    grid-template-columns: 1fr 1fr;
  }

  .mf-grid {
    grid-template-columns: 1fr 1fr;
  }

  .mf-divider {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 24px;
  }

  #nav {
    padding: 12px 24px;
  }

  #nav.scrolled {
    padding: 10px 24px;
  }

  .nav-links {
    display: none;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: var(--white);
    z-index: 200;
    align-items: center;
    justify-content: center;
    gap: 28px;
  }

  .nav-links.open a {
    font-size: 20px;
  }

  .nav-hamburger {
    display: flex;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 64px 24px 56px;
    text-align: center;
  }

  .hero-photo-col {
    order: -1;
  }

  .hero-photo-ring {
    width: 240px;
    height: 240px;
  }

  .hero-photo-accent {
    width: 268px;
    height: 268px;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-pills {
    justify-content: center;
  }

  .hero-sub {
    margin: 0 auto 36px;
  }

  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
  }

  .stat-item {
    margin: 0;
    padding: 16px 8px;
    text-align: center;
  }

  .stat-num {
    font-size: 26px;
  }

  .stat-label {
    font-size: 10px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-photo-wrap {
    max-width: 300px;
    margin: 0 auto;
  }

  .services-header {
    flex-direction: column;
    gap: 12px;
  }

  .services-sub {
    text-align: left;
  }

  .booking-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .form-wrap {
    padding: 24px;
  }

  .test-grid {
    grid-template-columns: 1fr;
  }

  .mf-grid {
    grid-template-columns: 1fr;
  }

  .mf-cta-bar {
    flex-direction: column;
    text-align: center;
    padding: 32px 28px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-brand {
    padding-right: 0;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

/* ── LEGAL PAGES ─────────────────────────────── */
.legal-hero {
  background: var(--navy);
  padding: 120px 0 60px;
  text-align: center;
}

.legal-hero .eyebrow { color: var(--accent-light); }

.legal-hero h1 {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  color: var(--white);
  margin-top: 12px;
  line-height: 1.15;
}

.legal-hero h1 em {
  font-style: italic;
  color: var(--accent-light);
}

.legal-hero p {
  font-size: 14px;
  color: var(--muted);
  margin-top: 12px;
}

.legal-body {
  padding: 80px 0 100px;
  background: var(--bg);
}

.legal-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}

.legal-content h2 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--navy);
  margin: 48px 0 12px;
}

.legal-content p,
.legal-content li {
  font-size: 15px;
  font-weight: 300;
  color: var(--text);
  line-height: 1.85;
  margin-bottom: 14px;
}

.legal-content ul {
  padding-left: 20px;
  margin-bottom: 14px;
}

.legal-content a {
  color: var(--accent);
  text-decoration: underline;
}

.legal-content .highlight-box {
  background: var(--white);
  border-left: 3px solid var(--accent);
  padding: 20px 24px;
  border-radius: 8px;
  box-shadow: var(--neu-sm);
  margin: 28px 0;
  font-size: 14px;
  color: var(--text);
  line-height: 1.7;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--accent);
  text-decoration: none;
  margin-bottom: 40px;
  transition: opacity .2s;
}

.back-link:hover { opacity: .7; }

/* Cookie table (cookies.html) */
.cookie-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0 28px;
  font-size: 13px;
}

.cookie-table th {
  background: var(--navy);
  color: var(--white);
  padding: 10px 14px;
  text-align: left;
  font-weight: 400;
  letter-spacing: .04em;
}

.cookie-table td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--line);
  color: var(--text);
  font-weight: 300;
  line-height: 1.6;
  vertical-align: top;
}

.cookie-table tr:nth-child(even) td { background: var(--white); }

.badge {
  display: inline-block;
  font-size: 11px;
  padding: 3px 10px;
  border-radius: 12px;
  font-weight: 500;
  letter-spacing: .04em;
}

.badge-necessary { background: #d4edda; color: #1a5c2a; }
.badge-analytics  { background: #fff3cd; color: #856404; }
.badge-marketing  { background: #f8d7da; color: #721c24; }