/* ============================================================
   AESTHETICS — Warm luxury aesthetic clinic
   ============================================================ */

:root {
  --ink:       #2D2A26;
  --ink-2:     #0F0F0F;
  --ink-soft:  #242424;
  --cream:     #FFFDFB;
  --cream-2:   #EAE2D8;
  --cream-3:   #E0D5C7;
  --gold:      #B8A089;
  --gold-2:    #B8965C;
  --gold-soft: rgba(184, 160, 137, 0.35);
  --gold-line: rgba(184, 160, 137, 0.25);
  --muted:     #9C9490;
  --muted-2:   #6B6B6B;
  --line-dark: rgba(255, 255, 255, 0.08);
  --line-light: rgba(45, 42, 38, 0.08);

  --serif: "Cormorant Garamond", "Cormorant", Georgia, serif;
  --sans:  "DM Sans", system-ui, -apple-system, sans-serif;

  --maxw: 1440px;
  --pad-x: clamp(24px, 5vw, 96px);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  background: var(--cream);
}

body {
  font-family: var(--sans);
  color: var(--ink);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: var(--cream);
  overflow-x: hidden;
}

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

/* Typography ------------------------------------------------- */
.serif { font-family: var(--serif); font-weight: 400; letter-spacing: -0.005em; }
.sans  { font-family: var(--sans); }
.italic { font-style: italic; }

.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.eyebrow::before {
  content: "";
  width: 32px; height: 1px; background: var(--gold);
  display: inline-block;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1s cubic-bezier(.2,.7,.2,1) .15s;
}
.eyebrow.reveal.in::before,
.eyebrow:not(.reveal)::before { transform: scaleX(1); }
.eyebrow.no-line::before { display: none; }
.eyebrow.center { justify-content: center; }
.eyebrow.dark { color: var(--gold); }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  margin: 0;
  line-height: 1.05;
  letter-spacing: -0.01em;
}

.h-display {
  font-size: clamp(48px, 7.5vw, 108px);
  line-height: 0.98;
  letter-spacing: -0.015em;
}

.h-section {
  font-size: clamp(40px, 5.2vw, 76px);
  line-height: 1.02;
}

.h-card {
  font-size: clamp(24px, 2vw, 32px);
  line-height: 1.15;
}

.body-lg { font-size: 17px; line-height: 1.7; color: var(--muted-2); }
.body    { font-size: 15px; line-height: 1.7; color: var(--muted-2); }
.body-sm { font-size: 13px; line-height: 1.65; color: var(--muted-2); }

.on-dark .body-lg, .on-dark .body, .on-dark .body-sm { color: rgba(255, 253, 251, 0.7); }
.on-dark h1, .on-dark h2, .on-dark h3, .on-dark h4 { color: var(--cream); }

/* Buttons ---------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 18px 32px;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--gold);
  cursor: pointer;
  text-decoration: none;
  transition: all .5s cubic-bezier(.2,.7,.2,1);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn::after {
  content: "";
  position: absolute; inset: 0;
  background: var(--gold);
  transform: translateY(101%);
  transition: transform .55s cubic-bezier(.7,0,.2,1);
  z-index: 0;
}
.btn > * { position: relative; z-index: 1; transition: color .35s; }
.btn:hover::after { transform: translateY(0); }
.btn:hover > * { color: var(--ink); }

.btn.solid {
  background: var(--gold); color: var(--ink); border-color: var(--gold);
}
.btn.solid::after { background: transparent; border: 1px solid var(--gold); }
.btn.solid:hover { background: transparent; color: var(--gold); }
.btn.solid:hover > * { color: var(--gold); }

.btn.cream {
  border-color: var(--ink);
  color: var(--ink);
}
.btn.cream::after { background: var(--ink); }
.btn.cream:hover > * { color: var(--cream); }

.btn-arrow {
  display: inline-block;
  width: 14px;
  transition: transform .4s;
}
.btn:hover .btn-arrow { transform: translateX(4px); }

/* Link with underline grow */
.link-under {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--gold);
  text-decoration: none;
  display: inline-flex;
  gap: 14px;
  align-items: center;
  padding-bottom: 6px;
  position: relative;
}
.link-under::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--gold);
  transform-origin: left;
  transition: transform .5s cubic-bezier(.2,.7,.2,1);
}
.link-under:hover::after { transform: scaleX(0); transform-origin: right; }

/* Layout helpers --------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

.section {
  padding: clamp(80px, 11vw, 160px) 0;
  position: relative;
}
.section.dark { background: var(--ink); color: var(--cream); }
.section.cream { background: var(--cream); }

/* Reveal on scroll ------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1.1s cubic-bezier(.2,.7,.2,1), transform 1.1s cubic-bezier(.2,.7,.2,1);
}
.reveal.in {
  opacity: 1;
  transform: none;
}
.reveal.delay-1 { transition-delay: 0.08s; }
.reveal.delay-2 { transition-delay: 0.16s; }
.reveal.delay-3 { transition-delay: 0.24s; }
.reveal.delay-4 { transition-delay: 0.32s; }
.reveal.delay-5 { transition-delay: 0.40s; }

/* Image reveal: clip from bottom */
.img-reveal {
  position: relative;
  overflow: hidden;
}
.img-reveal img,
.img-reveal .img-fake {
  transform: scale(1.12);
  transition: transform 1.8s cubic-bezier(.2,.7,.2,1);
}
.img-reveal::after {
  content: "";
  position: absolute; inset: 0;
  background: var(--cream);
  transform-origin: bottom;
  transition: transform 1.4s cubic-bezier(.7,0,.2,1);
}
.img-reveal.in img,
.img-reveal.in .img-fake { transform: scale(1); }
.img-reveal.in::after { transform: scaleY(0); }
.section.dark .img-reveal::after { background: var(--ink); }

/* ============================================================
   NAVBAR
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 0;
  transition: all .5s cubic-bezier(.2,.7,.2,1);
  background: transparent;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(45, 42, 38, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 16px 0;
  border-bottom: 1px solid var(--line-dark);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.brand {
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: 0.42em;
  color: var(--cream);
  text-decoration: none;
  font-weight: 500;
  line-height: 1;
}
.brand small {
  display: block;
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.5em;
  color: var(--gold);
  margin-top: 4px;
  font-weight: 400;
}
/* Brand logo (SVG) ------------------------------------------- */
.brand { display: inline-flex; align-items: center; }
.brand-logo {
  height: 100px;
  width: auto;
  display: block;
}
.footer-brand .brand-logo { height: 110px; }
@media (max-width: 700px) {
  .brand-logo { height: 70px; }
  .footer-brand .brand-logo { height: 56px; }
}
/* White SVG reads on every dark navbar state (dark hero, scrolled
   dark bar) and the dark footer. If the nav ever sits transparent
   over a light/cream hero, add the .on-light modifier to flip it dark. */
.nav.on-light:not(.scrolled) .brand-logo { filter: brightness(0); }
.nav-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 38px;
}
.nav-links a {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--cream);
  text-decoration: none;
  font-weight: 400;
  transition: color .3s;
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 50%; bottom: -8px;
  width: 0; height: 1px;
  background: var(--gold);
  transition: all .3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; left: 0; }
.nav-right {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-phone {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: rgba(255, 253, 251, 0.55);
  text-decoration: none;
  font-family: var(--sans);
}
.nav-phone:hover { color: var(--gold); }
.nav .btn { padding: 14px 24px; font-size: 10px; }

/* Mobile menu overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(45, 42, 38, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity .35s ease, transform .35s ease, visibility 0s linear .35s;
  display: flex;
  flex-direction: column;
}
.mobile-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity .35s ease, transform .35s ease, visibility 0s linear 0s;
}
.mobile-menu-top {
  padding: 22px var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line-dark);
}
.mobile-menu-close {
  width: 44px; height: 44px;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--gold);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 0;
  transition: all .3s;
}
.mobile-menu-close:hover { background: var(--gold); color: var(--ink); }
.mobile-menu-close svg { width: 14px; height: 14px; }
.mobile-menu-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
  text-align: center;
  gap: 6px;
}
.mobile-menu-eyebrow {
  margin-bottom: 28px;
}
.mobile-menu a.mm-link {
  font-family: var(--serif);
  font-size: clamp(36px, 6vw, 52px);
  color: var(--cream);
  text-decoration: none;
  line-height: 1.4;
  font-weight: 400;
  letter-spacing: -0.01em;
  position: relative;
  display: inline-block;
  transition: color .3s;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .5s ease, transform .5s ease, color .3s ease;
}
.mobile-menu.open a.mm-link {
  opacity: 1;
  transform: none;
}
.mobile-menu.open a.mm-link:nth-child(1) { transition-delay: .12s; }
.mobile-menu.open a.mm-link:nth-child(2) { transition-delay: .18s; }
.mobile-menu.open a.mm-link:nth-child(3) { transition-delay: .24s; }
.mobile-menu.open a.mm-link:nth-child(4) { transition-delay: .30s; }
.mobile-menu.open a.mm-link:nth-child(5) { transition-delay: .36s; }
.mobile-menu.open a.mm-link:nth-child(6) { transition-delay: .42s; }
.mobile-menu a.mm-link:hover {
  color: var(--gold);
  font-style: italic;
}
.mobile-menu-foot {
  padding: 24px var(--pad-x) 36px;
  border-top: 1px solid var(--line-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.mobile-menu-foot a {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 253, 251, 0.6);
  text-decoration: none;
  transition: color .3s;
}
.mobile-menu-foot a:hover { color: var(--gold); }
.mobile-menu-foot .mm-btn {
  margin-top: 8px;
}
body.menu-open {
  overflow: hidden;
}
.nav-burger {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--gold-line);
  background: transparent;
  color: var(--cream);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  transition: border-color .3s, color .3s;
}
.nav-burger:hover { border-color: var(--gold); color: var(--gold); }
.nav-burger span {
  display: block;
  width: 18px; height: 1px;
  background: currentColor;
  position: relative;
}
.nav-burger span::before,
.nav-burger span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px; height: 1px;
  background: currentColor;
}
.nav-burger span::before { top: -6px; }
.nav-burger span::after  { top:  6px; }

@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-phone { display: none; }
  .nav-burger { display: inline-flex; }
  /* On mobile/tablet, hide the CTA button — burger becomes the primary nav */
  .nav .btn.solid { display: none; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--ink);
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-top: 140px;
  padding-bottom: clamp(180px, 22vh, 260px);
}
.hero-bg {
  position: absolute;
  left: 0; right: 0;
  top: -50%;
  height: 150%;
  background-image: url("https://images.unsplash.com/photo-1570172619644-dfd03ed5d881?q=80&w=2400&auto=format&fit=crop");
  background-size: cover;
  background-position: center 30%;
  filter: grayscale(0.1) brightness(0.78) contrast(1.05);
  will-change: transform;
  transform: translate3d(0, 0, 0);
}
/* Hero video — sits inside the parallax container (.hero-bg) so it
   inherits the parallax transform and the tonal filter. The static
   background-image on .hero-bg stays underneath as fallback (and is
   what shows on mobile, where the video is hidden to save data). */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% center;
  border: 0;
}
@media (max-width: 767px) {
  .hero-video { display: none; }
}
.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(45,42,38,0.55) 0%, rgba(45,42,38,0.1) 28%, rgba(45,42,38,0.85) 100%),
    linear-gradient(90deg, rgba(45,42,38,0.55) 0%, rgba(45,42,38,0) 60%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  align-items: end;
  gap: 80px;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}
.hero-headline {
  max-width: 920px;
  color: var(--cream);
}
.hero-headline h1 {
  color: var(--cream);
  margin-top: 28px;
}
.hero-headline h1 .accent {
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
}
.hero-sub {
  margin-top: 36px;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 253, 251, 0.78);
  max-width: 480px;
  font-weight: 300;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  margin-top: 44px;
  flex-wrap: wrap;
}
.hero-meta {
  position: absolute;
  z-index: 2;
  bottom: clamp(40px, 5vw, 60px);
  right: var(--pad-x);
  display: flex;
  gap: 56px;
  color: rgba(255, 253, 251, 0.7);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  pointer-events: none;
}
.hero-meta-item {
  border-left: 1px solid var(--gold-line);
  padding-left: 20px;
  max-width: 160px;
}
.hero-meta-item strong {
  display: block;
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--gold);
  margin-bottom: 6px;
}
@media (max-width: 1024px) {
  .hero-meta { display: none; }
}

.hero-scroll {
  position: absolute;
  left: var(--pad-x);
  bottom: clamp(40px, 5vw, 60px);
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 253, 251, 0.55);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  z-index: 2;
}
.hero-scroll::before {
  content: "";
  width: 1px; height: 40px;
  background: linear-gradient(180deg, var(--gold), transparent);
  display: block;
  animation: scroll-line 2.4s ease-in-out infinite;
}
@keyframes scroll-line {
  0% { transform: scaleY(0); transform-origin: top; }
  45% { transform: scaleY(1); transform-origin: top; }
  55% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}
@media (max-width: 700px) {
  .hero-scroll { display: none; }
}

/* Hero side tag */
.hero-side {
  position: absolute;
  right: 22px;
  top: 50%;
  transform: rotate(90deg) translate(50%, -50%);
  transform-origin: right center;
  font-size: 10px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: rgba(255, 253, 251, 0.4);
  z-index: 2;
  white-space: nowrap;
  pointer-events: none;
}
@media (max-width: 1024px) {
  .hero-side { display: none; }
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  background: var(--cream);
  position: relative;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(48px, 7vw, 110px);
  align-items: center;
}
.about-images {
  position: relative;
  height: 640px;
}
.about-img-1 {
  position: absolute;
  top: 0; left: 0;
  width: 65%;
  height: 78%;
  background-image: url("https://images.unsplash.com/photo-1629909613654-28e377c37b09?q=80&w=1400&auto=format&fit=crop");
  background-size: cover;
  background-position: center;
}
.about-img-2 {
  position: absolute;
  bottom: 0; right: 0;
  width: 50%;
  height: 55%;
  background-image: url("https://images.unsplash.com/photo-1531746020798-e6953c6e8e04?q=80&w=1200&auto=format&fit=crop");
  background-size: cover;
  background-position: center;
  border: 8px solid var(--cream);
}
.about-tag {
  position: absolute;
  left: -20px;
  top: 30%;
  font-size: 10px;
  letter-spacing: 0.5em;
  color: var(--gold);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  text-transform: uppercase;
}
.about-content h2 { margin-top: 22px; }
.about-lead {
  margin-top: 32px;
  font-size: 18px;
  line-height: 1.7;
  color: var(--ink);
  font-weight: 300;
  max-width: 520px;
}
.about-body {
  margin-top: 22px;
  max-width: 520px;
}
.stats {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 40px;
  border-top: 1px solid var(--gold-line);
}
.stat-num {
  font-family: var(--serif);
  font-size: clamp(40px, 4vw, 56px);
  line-height: 1;
  color: var(--gold);
  font-weight: 400;
}
.stat-num sup {
  font-size: 0.4em;
  vertical-align: top;
  margin-left: 2px;
}
.stat-label {
  margin-top: 12px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 500;
}
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-images { height: 460px; }
  .stats { grid-template-columns: 1fr; gap: 32px; }
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  background: var(--ink);
  color: var(--cream);
}
.services-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 90px;
}
.services-head h2 { color: var(--cream); }
.services-head p { max-width: 440px; }
@media (max-width: 900px) {
  .services-head { grid-template-columns: 1fr; gap: 32px; margin-bottom: 56px; }
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line-dark);
}
.svc {
  padding: 48px 32px 56px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  position: relative;
  cursor: pointer;
  transition: background .6s;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 460px;
}
.svc::after {
  /* thin gold accent line at the bottom of each card */
  content: "";
  position: absolute;
  left: 32px; right: 32px;
  bottom: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0.18);
  transform-origin: left;
  transition: transform .8s cubic-bezier(.2,.7,.2,1);
}
.svc:hover::after { transform: scaleX(1); }
.svc:last-child { border-right: none; }
.svc:hover { background: var(--ink-soft); }
.svc-num {
  font-family: var(--serif);
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 80px;
}
.svc-img {
  position: relative;
  width: 100%;
  height: 180px;
  margin-bottom: 32px;
  background-size: cover;
  background-position: center;
  filter: grayscale(0.15) brightness(0.95);
  transition: transform .9s cubic-bezier(.2,.7,.2,1), filter .6s;
  overflow: hidden;
}
.svc-img::after {
  /* gold semi-transparent overlay on hover */
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(184,160,137,0) 0%, rgba(184,160,137,0.35) 100%);
  opacity: 0;
  transition: opacity .55s cubic-bezier(.2,.7,.2,1);
  pointer-events: none;
}
.svc:hover .svc-img { transform: scale(1.05); filter: grayscale(0) brightness(1); }
.svc:hover .svc-img::after { opacity: 1; }
.svc-title {
  font-family: var(--serif);
  font-size: 26px;
  color: var(--cream);
  margin-bottom: 16px;
  line-height: 1.15;
}
.svc-desc {
  font-size: 13px;
  color: rgba(255, 253, 251, 0.6);
  line-height: 1.7;
  margin-bottom: 28px;
  flex: 1;
}
.svc-link {
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  align-self: flex-start;
  position: relative;
  padding-bottom: 6px;
  transition: gap .35s;
}
.svc-link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .55s cubic-bezier(.2,.7,.2,1);
}
.svc:hover .svc-link { gap: 18px; }
.svc:hover .svc-link::after { transform: scaleX(1); }
.svc-link svg { width: 12px; }

@media (max-width: 1100px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .svc:nth-child(2) { border-right: none; }
}
@media (max-width: 600px) {
  .svc-grid { grid-template-columns: 1fr; }
  .svc { border-right: none; min-height: auto; }
  .svc-num { margin-bottom: 32px; }
}

/* ============================================================
   FEATURED TREATMENT
   ============================================================ */
.featured {
  background: var(--cream);
}
.featured-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(48px, 7vw, 110px);
  align-items: center;
}
.featured-img {
  position: relative;
  height: 680px;
  background-image: url("https://images.unsplash.com/photo-1616394584738-fc6e612e71b9?q=80&w=1400&auto=format&fit=crop");
  background-size: cover;
  background-position: center;
}
.featured-badge {
  position: absolute;
  top: 32px; left: 32px;
  background: var(--cream);
  padding: 18px 22px;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 500;
}
.featured-badge::before {
  content: "";
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  margin-right: 10px;
  vertical-align: middle;
}
.featured-content h2 { margin-top: 24px; }
.feature-list {
  margin-top: 40px;
  list-style: none;
  padding: 0;
}
.feature-list li {
  padding: 22px 0;
  border-bottom: 1px solid var(--gold-line);
  display: grid;
  grid-template-columns: 36px 1fr auto;
  gap: 20px;
  align-items: center;
  font-size: 14px;
  color: var(--ink);
}
.feature-list li .fl-num {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold);
  font-size: 18px;
}
.feature-list li .fl-meta {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}
.featured-meta {
  display: flex;
  gap: 48px;
  margin-top: 40px;
  padding-top: 32px;
}
.featured-meta div {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
}
.featured-meta div strong {
  display: block;
  font-family: var(--serif);
  font-style: normal;
  font-size: 28px;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: 0;
  text-transform: none;
  margin-bottom: 4px;
}
.featured-cta { margin-top: 48px; }
@media (max-width: 900px) {
  .featured-grid { grid-template-columns: 1fr; }
  .featured-img { height: 480px; }
}

/* ============================================================
   RESULTADOS (Before / After carousel)
   ============================================================ */
.results {
  background: var(--ink);
  color: var(--cream);
  overflow: hidden;
}
.results-head {
  text-align: center;
  margin-bottom: 80px;
}
.results-head .eyebrow { justify-content: center; }
.results-head h2 { margin-top: 22px; color: var(--cream); }
.results-head p {
  max-width: 540px;
  margin: 24px auto 0;
}

.results-track-wrap {
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr 56px;
  gap: 32px;
  align-items: center;
}
.results-arrow {
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .35s;
}
.results-arrow:hover:not(:disabled) {
  background: var(--gold);
  color: var(--ink);
}
.results-arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.results-arrow.left svg { transform: rotate(180deg); }
.results-arrow svg { width: 16px; }

.results-viewport {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-width: 0;
}

/* per-view defaults: desktop = 2 visible, with a 24px gap */
.results-track {
  --per-view: 2;
  --gap: 24px;
  display: flex;
  gap: var(--gap);
  transition: transform .8s cubic-bezier(.2,.7,.2,1);
}
.result-card {
  flex: 0 0 calc((100% - (var(--per-view) - 1) * var(--gap)) / var(--per-view));
  min-width: 0;
}
.result-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.result-img {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.result-img.before {
  background: linear-gradient(135deg, #d9d4ce 0%, #c7c0b8 100%);
}
.result-img.after {
  background: linear-gradient(135deg, #4a4641 0%, #2f2c28 100%);
}
.result-img::before {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  width: 38%; aspect-ratio: 3/4;
  border-radius: 50% / 55%;
  transform: translate(-50%, -45%);
  background: rgba(255,255,255,0.06);
}
.result-img.before::before { background: rgba(0,0,0,0.05); }
.result-tag {
  position: absolute;
  top: 16px; left: 16px;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  padding: 7px 12px;
  background: rgba(45,42,38,0.78);
  color: var(--cream);
  backdrop-filter: blur(8px);
  font-weight: 500;
  white-space: nowrap;
}
.result-img.after .result-tag {
  background: rgba(184, 160, 137, 0.95);
  color: var(--ink);
}
.result-meta {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--gold-line);
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}
.result-meta h4 {
  font-family: var(--serif);
  font-size: clamp(20px, 1.5vw, 26px);
  color: var(--cream);
  line-height: 1.15;
  margin: 0;
  overflow-wrap: break-word;
  word-wrap: break-word;
}
.result-meta .result-time {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: normal;
  line-height: 1.5;
}
.results-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 56px;
}
.results-dots .dot {
  width: 32px; height: 1px;
  background: rgba(255,253,251,0.2);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all .35s;
}
.results-dots .dot.active { background: var(--gold); height: 2px; }

/* Tablet: 2 cards visible */
@media (max-width: 1024px) {
  .results-track { --per-view: 2; }
  .results-track-wrap { gap: 20px; }
  .results-arrow { width: 48px; height: 48px; }
  .result-meta h4 { font-size: 22px; }
}

/* Mobile: 1 card, before/after stacked vertically, arrows below */
@media (max-width: 640px) {
  .results-track-wrap {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .results-track { --per-view: 1; --gap: 20px; }
  .results-arrow.left,
  .results-arrow.right { display: none; }
  .result-pair {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .results-mobile-nav {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
  }
  .results-mobile-nav .results-arrow {
    display: inline-flex;
  }
}
.results-mobile-nav { display: none; }

/* ============================================================
   TEAM
   ============================================================ */
.team { background: var(--cream); }
.team-head {
  text-align: center;
  margin-bottom: 80px;
}
.team-head .eyebrow { justify-content: center; }
.team-head h2 { margin-top: 22px; }
.team-head p {
  max-width: 520px;
  margin: 24px auto 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.doc {
  position: relative;
  text-align: left;
}
.doc-img {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background-size: cover;
  background-position: center top;
  background-color: var(--cream-2);
  filter: grayscale(0.1);
  transition: filter .6s;
}
.doc:hover .doc-img { filter: grayscale(0); }
.doc-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(45,42,38,0.55) 100%);
  opacity: 0;
  transition: opacity .5s;
}
.doc:hover .doc-img::after { opacity: 1; }
.doc-content {
  padding-top: 28px;
}
.doc-role {
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 12px;
}
.doc-content h3 {
  font-size: 30px;
  color: var(--ink);
  line-height: 1.1;
  font-family: var(--serif);
  font-weight: 400;
}
.doc-bio {
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted-2);
  max-width: 360px;
}
.doc-social {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--gold-line);
  display: flex;
  gap: 10px;
}
.doc-social a {
  width: 38px; height: 38px;
  border: 1px solid var(--line-light);
  color: var(--muted-2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  transition: all .35s;
}
.doc-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.doc-social svg { width: 14px; height: 14px; }
@media (max-width: 1000px) {
  .team-grid { grid-template-columns: 1fr; gap: 48px; max-width: 460px; margin-left: auto; margin-right: auto; }
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi {
  background: var(--ink);
  color: var(--cream);
  overflow: hidden;
}
.testi-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(48px, 7vw, 110px);
  align-items: center;
}
.testi-left h2 { color: var(--cream); margin-top: 22px; }
.testi-left p { margin-top: 22px; max-width: 360px; }

.testi-mark {
  font-family: var(--serif);
  font-style: italic;
  font-size: 200px;
  line-height: 0.7;
  color: var(--gold);
  opacity: 0.25;
  margin-top: 32px;
}

.testi-card {
  position: relative;
  padding: 56px 56px 48px;
  border: 1px solid var(--line-dark);
  background: var(--ink-2);
  transition: opacity .6s;
}
.testi-card.is-hidden { display: none; }
.testi-stars {
  color: var(--gold);
  letter-spacing: 6px;
  font-size: 14px;
  margin-bottom: 32px;
}
.testi-quote {
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1.35;
  color: var(--cream);
  font-weight: 300;
  font-style: italic;
}
.testi-meta {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 18px;
  align-items: center;
}
.testi-avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  border: 1px solid var(--gold-line);
}
.testi-name {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--cream);
}
.testi-treat {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 4px;
}
.testi-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
}
.testi-dots {
  display: flex;
  gap: 12px;
  flex: 1;
}
.testi-dot {
  width: 32px; height: 1px;
  background: rgba(255, 253, 251, 0.2);
  cursor: pointer;
  border: none;
  padding: 0;
  transition: all .35s;
}
.testi-dot.active { background: var(--gold); height: 2px; }
.testi-arrows {
  display: flex;
  gap: 10px;
}
.testi-arrow {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  transition: all .35s;
}
.testi-arrow:hover {
  background: var(--gold);
  color: var(--ink);
}
.testi-arrow.left svg { transform: rotate(180deg); }
.testi-arrow svg { width: 14px; height: auto; }

@media (max-width: 900px) {
  .testi-inner { grid-template-columns: 1fr; }
  .testi-mark { display: none; }
  .testi-card { padding: 36px 28px; }
  .testi-quote { font-size: 22px; }
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta {
  position: relative;
  padding: 0;
  background: var(--ink);
  overflow: hidden;
}
.final-cta-inner {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(80px, 10vw, 140px) var(--pad-x);
}
.final-cta-bg {
  position: absolute; inset: 0;
  background-image: url("https://images.unsplash.com/photo-1540555700478-4be289fbecef?q=80&w=2400&auto=format&fit=crop");
  background-size: cover;
  background-position: center;
  filter: grayscale(0.3) brightness(0.45);
}
.final-cta-bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(45,42,38,0.85), rgba(45,42,38,0.55), rgba(45,42,38,0.95));
}
.final-cta-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}
.final-cta-content h2 {
  color: var(--cream);
  margin-top: 28px;
  font-size: clamp(48px, 6vw, 88px);
}
.final-cta-content h2 .italic { color: var(--gold); }
.final-cta-content p {
  color: rgba(255, 253, 251, 0.75);
  margin-top: 28px;
  font-size: 17px;
}
.final-cta-ctas {
  margin-top: 48px;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.final-cta-contact {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--gold-line);
  display: flex;
  justify-content: center;
  gap: 56px;
  color: rgba(255, 253, 251, 0.6);
  font-size: 12px;
  letter-spacing: 0.18em;
  flex-wrap: wrap;
}
.final-cta-contact strong {
  display: block;
  color: var(--cream);
  margin-top: 4px;
  font-weight: 400;
  font-size: 14px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--ink-2);
  color: rgba(255, 253, 251, 0.7);
  padding: 90px 0 32px;
  font-size: 13px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 56px;
  padding-bottom: 64px;
  border-bottom: 1px solid var(--line-dark);
}
.footer-brand .brand { font-size: 26px; }
.footer-brand p {
  margin-top: 24px;
  max-width: 320px;
  color: rgba(255, 253, 251, 0.55);
  font-size: 13px;
  line-height: 1.7;
}
.footer-social {
  margin-top: 28px;
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid var(--line-dark);
  color: rgba(255, 253, 251, 0.7);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  font-size: 12px;
  transition: all .35s;
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-col h5 {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 22px;
  font-weight: 500;
}
.footer-col ul {
  list-style: none;
  padding: 0; margin: 0;
}
.footer-col li {
  padding: 7px 0;
}
.footer-col a {
  color: rgba(255, 253, 251, 0.65);
  text-decoration: none;
  transition: color .3s;
  font-size: 13px;
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: rgba(255, 253, 251, 0.4);
  letter-spacing: 0.08em;
}
.footer-bottom .legal {
  display: flex;
  gap: 24px;
}
.footer-bottom a { color: inherit; text-decoration: none; }
.footer-bottom a:hover { color: var(--gold); }

@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 16px; }
}
@media (max-width: 560px) {
  .footer-top { grid-template-columns: 1fr; }
}


/* ============================================================
   BOOKING PAGE  ·  /reservar.html
   ============================================================ */

/* Simplified navbar (overrides) -------------------------------- */
.nav.nav-booking {
  background: rgba(45, 42, 38, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line-dark);
  padding: 18px 0;
}
.nav-booking .nav-inner { justify-content: space-between; }
.nav-booking .nav-back {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 253, 251, 0.7);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: color .3s;
}
.nav-booking .nav-back:hover { color: var(--gold); }
.nav-booking .nav-back svg { width: 14px; transform: rotate(180deg); }
.nav-booking-right {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-booking-right .nav-phone {
  color: var(--cream);
  font-size: 12px;
  letter-spacing: 0.18em;
}
/* Booking nav: keep the phone visible at tablet widths (override the
   homepage rule that hides .nav-phone below 1024px). Hide only on
   true mobile where space is tight. */
@media (max-width: 1024px) {
  .nav.nav-booking .nav-phone { display: inline-block; }
}
@media (max-width: 700px) {
  .nav.nav-booking .nav-phone { display: none; }
}

/* Booking page layout ----------------------------------------- */
.booking-page {
  background: var(--cream);
  min-height: 100vh;
  padding-top: 100px;
}

.booking-hero {
  text-align: center;
  padding: clamp(60px, 8vw, 100px) var(--pad-x) clamp(40px, 5vw, 60px);
  max-width: 760px;
  margin: 0 auto;
}
.booking-hero h1 {
  font-size: clamp(40px, 5vw, 64px);
  margin-top: 22px;
  line-height: 1.05;
}
.booking-hero h1 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 300;
}
.booking-hero p {
  margin-top: 22px;
  font-size: 16px;
  color: var(--muted-2);
  line-height: 1.7;
}

/* Form shell --------------------------------------------------- */
.booking-form {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--pad-x) clamp(60px, 8vw, 100px);
}
.booking-step {
  padding: clamp(40px, 6vw, 64px) 0;
  border-top: 1px solid var(--gold-line);
}
.booking-step:first-child { border-top: none; padding-top: 0; }
.booking-step-head {
  display: flex;
  align-items: baseline;
  gap: 20px;
  margin-bottom: 36px;
}
.booking-step-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--gold);
  letter-spacing: 0.04em;
  line-height: 1;
  min-width: 36px;
}
.booking-step-title {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--ink);
  margin: 0;
}

/* Step 1 — service cards -------------------------------------- */
.svc-pick-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.svc-pick {
  position: relative;
  padding: 28px 24px 28px;
  border: 1px solid var(--line-light);
  background: #fff;
  cursor: pointer;
  text-align: left;
  font: inherit;
  color: inherit;
  transition: border-color .3s ease, background-color .3s ease, transform .3s ease, box-shadow .3s ease;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.svc-pick:hover {
  border-color: var(--gold-soft);
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(45,42,38,0.06);
}
.svc-pick.active {
  border-color: var(--gold);
  background: #EDE8E1;
  box-shadow: 0 20px 48px rgba(184, 160, 137, 0.18);
}
.svc-pick-icon {
  width: 36px;
  height: 36px;
  color: var(--gold);
  margin-top: 8px;
  transition: transform .35s ease;
}
.svc-pick.active .svc-pick-icon {
  transform: scale(1.06);
}
.svc-pick-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.svc-pick-num {
  font-family: var(--serif);
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--gold);
}
.svc-pick-title {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.15;
  color: var(--ink);
  margin-top: 24px;
}
.svc-pick-check {
  position: absolute;
  top: 18px; right: 18px;
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid var(--gold-line);
  color: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all .35s;
}
.svc-pick.active .svc-pick-check {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}
.svc-pick-check svg { width: 12px; }
@media (max-width: 900px) {
  .svc-pick-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .svc-pick-grid { grid-template-columns: 1fr; }
}

/* Sub-list of specific treatments */
.treat-list {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  animation: treat-in .55s cubic-bezier(.2,.7,.2,1);
}
@keyframes treat-in {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: none; }
}
.treat-chip {
  border: 1px solid var(--line-light);
  background: transparent;
  padding: 14px 18px;
  font: inherit;
  font-size: 13px;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all .3s;
}
.treat-chip:hover { border-color: var(--gold-soft); }
.treat-chip.active {
  border-color: var(--gold);
  background: rgba(184, 160, 137, 0.08);
  color: var(--ink);
}
.treat-chip .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: 1px solid var(--gold-line);
  flex-shrink: 0;
  transition: all .3s;
}
.treat-chip.active .dot {
  background: var(--gold);
  border-color: var(--gold);
}
@media (max-width: 600px) {
  .treat-list { grid-template-columns: 1fr; }
}

/* Step 2 — fields --------------------------------------------- */
.fields-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 24px;
}
.field {
  display: flex;
  flex-direction: column;
}
.field.full { grid-column: 1 / -1; }
.field label {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 10px;
  font-weight: 500;
}
.field label .opt {
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  color: var(--muted);
  font-size: 12px;
  margin-left: 8px;
}
.field input,
.field textarea {
  font: inherit;
  font-family: var(--sans);
  font-size: 15px;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line-light);
  padding: 12px 0;
  color: var(--ink);
  outline: none;
  transition: border-color .3s;
  border-radius: 0;
}
.field input:focus,
.field textarea:focus {
  border-bottom-color: var(--gold);
}
.field input::placeholder,
.field textarea::placeholder {
  color: var(--muted);
  font-weight: 300;
}
.field textarea {
  resize: vertical;
  min-height: 72px;
  border: 1px solid var(--line-light);
  padding: 14px 16px;
}
.field textarea:focus { border-color: var(--gold); }

.toggle-row {
  display: inline-flex;
  border: 1px solid var(--line-light);
  background: #fff;
  width: fit-content;
}
.toggle-row button {
  padding: 12px 26px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--muted-2);
  transition: all .3s;
}
.toggle-row button + button { border-left: 1px solid var(--line-light); }
.toggle-row button.active {
  background: var(--gold);
  color: var(--ink);
}

@media (max-width: 700px) {
  .fields-grid { grid-template-columns: 1fr; }
}

/* Step 3 — calendar + time pills ------------------------------ */
.date-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}
.calendar {
  background: #fff;
  border: 1px solid var(--line-light);
  padding: 24px 22px 28px;
}
.cal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.cal-month {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--ink);
  text-transform: capitalize;
  font-weight: 500;
}
.cal-nav {
  display: flex;
  gap: 8px;
}
.cal-nav button {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--gold-line);
  background: transparent;
  color: var(--gold);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: all .3s;
}
.cal-nav button:hover { background: var(--gold); color: var(--cream); }
.cal-nav button svg { width: 10px; }
.cal-nav button.left svg { transform: rotate(180deg); }

.cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line-light);
  margin-bottom: 8px;
}
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}
.cal-day {
  aspect-ratio: 1;
  border: none;
  background: transparent;
  font: inherit;
  font-family: var(--serif);
  font-size: 16px;
  color: var(--ink);
  cursor: pointer;
  transition: all .25s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  position: relative;
}
.cal-day:hover:not(.empty):not(.past):not(.disabled) {
  background: rgba(184, 160, 137, 0.12);
  color: var(--ink);
}
.cal-day.past, .cal-day.disabled {
  color: rgba(45, 42, 38, 0.2);
  cursor: not-allowed;
}
.cal-day.today::after {
  content: "";
  position: absolute;
  bottom: 4px; left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold);
}
.cal-day.selected {
  background: var(--gold);
  color: var(--ink);
}
.cal-day.empty { cursor: default; }

/* Time pills */
.time-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.time-label {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 4px;
}
.time-pills {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.time-pill {
  padding: 16px 22px;
  border: 1px solid var(--line-light);
  background: #fff;
  font: inherit;
  font-size: 14px;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all .3s;
}
.time-pill .time-meta {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.time-pill:hover {
  border-color: var(--gold-soft);
}
.time-pill.active {
  border-color: var(--gold);
  background: rgba(184, 160, 137, 0.08);
}
.time-pill.active .time-meta { color: var(--gold); }
@media (max-width: 800px) {
  .date-grid { grid-template-columns: 1fr; }
}

/* Submit area ------------------------------------------------- */
.booking-submit-wrap {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--gold-line);
}
.booking-submit {
  width: 100%;
  background: var(--gold);
  color: var(--ink);
  border: 1px solid var(--gold);
  padding: 22px 28px;
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  transition: all .4s;
}
.booking-submit:hover {
  background: var(--ink);
  color: var(--gold);
}
.booking-submit svg { width: 18px; transition: transform .35s; }
.booking-submit:hover svg { transform: translateX(4px); }
.booking-reassure {
  margin-top: 22px;
  text-align: center;
  font-size: 13px;
  color: var(--muted-2);
  line-height: 1.7;
}
.booking-privacy {
  margin-top: 12px;
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  justify-content: center;
}
.booking-privacy svg { width: 12px; }

/* Trust bar --------------------------------------------------- */
.trust-bar {
  background: var(--ink);
  color: var(--cream);
  padding: clamp(40px, 5vw, 56px) 0;
}
.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr) auto;
  gap: 32px;
  align-items: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 16px;
}
.trust-item svg {
  width: 22px; height: 22px;
  flex-shrink: 0;
  color: var(--gold);
}
.trust-item div {
  font-size: 13px;
  line-height: 1.5;
}
.trust-item strong {
  display: block;
  color: var(--cream);
  font-weight: 500;
  font-size: 13px;
}
.trust-item span {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 253, 251, 0.5);
  margin-top: 2px;
  display: block;
}
.trust-phone {
  padding-left: 32px;
  border-left: 1px solid var(--gold-line);
  text-align: right;
}
.trust-phone span {
  display: block;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.trust-phone a {
  font-family: var(--serif);
  font-size: 26px;
  color: var(--cream);
  text-decoration: none;
  transition: color .3s;
}
.trust-phone a:hover { color: var(--gold); }
@media (max-width: 1000px) {
  .trust-row { grid-template-columns: 1fr 1fr; gap: 28px; }
  .trust-phone {
    grid-column: 1 / -1;
    border-left: none;
    border-top: 1px solid var(--gold-line);
    padding: 24px 0 0;
    text-align: center;
  }
}
@media (max-width: 600px) {
  .trust-row { grid-template-columns: 1fr; }
}

/* Success state ----------------------------------------------- */
.booking-success {
  text-align: center;
  padding: 80px 24px;
  max-width: 640px;
  margin: 0 auto;
}
.booking-success-icon {
  width: 72px; height: 72px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 32px;
}
.booking-success-icon svg { width: 28px; }
.booking-success h2 {
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 52px);
  color: var(--ink);
  font-weight: 400;
  line-height: 1.1;
}
.booking-success h2 em { font-style: italic; color: var(--gold); font-weight: 300; }
.booking-success p {
  margin-top: 22px;
  font-size: 16px;
  color: var(--muted-2);
  line-height: 1.7;
}
.booking-success .btn { margin-top: 36px; }


/* Booking progress bar (sticky) ------------------------------- */
.booking-progress {
  position: sticky;
  top: 78px;
  z-index: 40;
  background: rgba(255, 253, 251, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--gold-line);
  border-bottom: 1px solid var(--gold-line);
  padding: 22px 0 18px;
  margin-bottom: clamp(40px, 5vw, 60px);
}
.bp-track {
  max-width: 560px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  position: relative;
}
.bp-line {
  position: absolute;
  top: 14px;
  left: calc(24px + (100% - 48px) / 6);
  right: calc(24px + (100% - 48px) / 6);
  height: 1px;
  background: var(--line-light);
  z-index: 0;
}
.bp-line-fill {
  position: absolute;
  inset: 0 auto 0 0;
  height: 100%;
  width: 0%;
  background: var(--gold);
  transition: width .55s cubic-bezier(.2,.7,.2,1);
}
.bp-step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: transparent;
  border: none;
  font: inherit;
  cursor: pointer;
  padding: 0;
  color: var(--muted);
}
.bp-dot {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid var(--line-light);
  background: var(--cream);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 13px;
  font-style: italic;
  color: var(--muted);
  transition: all .4s cubic-bezier(.2,.7,.2,1);
}
.bp-step.complete .bp-dot {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}
.bp-step.current .bp-dot {
  background: var(--ink);
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: 0 0 0 4px rgba(184, 160, 137, 0.18);
}
.bp-dot svg { width: 12px; height: 12px; }
.bp-label {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color .3s;
}
.bp-step.current .bp-label,
.bp-step.complete .bp-label { color: var(--ink); }
.bp-step.current .bp-label { color: var(--gold); }

@media (max-width: 500px) {
  .booking-progress { top: 70px; padding: 16px 0 14px; }
  .bp-dot { width: 24px; height: 24px; font-size: 12px; }
  .bp-line { top: 12px; }
  .bp-label { font-size: 9px; letter-spacing: 0.18em; }
}


/* Booking summary card (shown when all 3 steps complete) ------- */
.booking-summary {
  margin-top: 56px;
  padding: 32px clamp(24px, 4vw, 40px);
  background: #fff;
  border: 1px solid var(--gold);
  position: relative;
  animation: summary-in .55s cubic-bezier(.2,.7,.2,1);
}
@keyframes summary-in {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: none; }
}
.booking-summary-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding-bottom: 18px;
  margin-bottom: 8px;
  border-bottom: 1px solid var(--gold-line);
  gap: 16px;
  flex-wrap: wrap;
}
.booking-summary-title {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--ink);
  font-weight: 400;
  line-height: 1;
}
.booking-summary-eyebrow {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.booking-summary-row {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  gap: 20px;
  align-items: baseline;
  padding: 16px 0;
  border-bottom: 1px solid var(--line-light);
}
.booking-summary-row:last-child { border-bottom: none; }
.booking-summary-row .bs-label {
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.booking-summary-row .bs-value {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--ink);
  line-height: 1.3;
}
.booking-summary-row .bs-value small {
  display: block;
  font-family: var(--sans);
  font-size: 12px;
  color: var(--muted-2);
  letter-spacing: 0;
  margin-top: 4px;
}
.booking-summary-row .bs-edit {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px 0;
  position: relative;
  transition: color .3s;
}
.booking-summary-row .bs-edit::after {
  content: "";
  position: absolute;
  left: 0; bottom: 4px;
  width: 100%; height: 1px;
  background: var(--gold);
  transform-origin: left;
  transition: transform .35s cubic-bezier(.2,.7,.2,1);
}
.booking-summary-row .bs-edit:hover::after { transform: scaleX(0); transform-origin: right; }
@media (max-width: 600px) {
  .booking-summary-row {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 14px 0;
  }
  .booking-summary-row .bs-edit { justify-self: start; }
}


/* ============================================================
   ABOUT PAGE  ·  /sobre-nosotros.html
   ============================================================ */

/* Interior hero (60vh, dark) ----------------------------------- */
.page-hero {
  position: relative;
  min-height: 60vh;
  background: var(--ink);
  color: var(--cream);
  display: flex;
  align-items: flex-end;
  padding: 160px 0 64px;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  left: 0; right: 0;
  top: -50%;
  height: 150%;
  background-image: url("https://images.unsplash.com/photo-1540555700478-4be289fbecef?q=80&w=2400&auto=format&fit=crop");
  background-size: cover;
  background-position: center;
  filter: grayscale(0.1) brightness(0.55) contrast(1.05);
  will-change: transform;
}
.page-hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(45,42,38,0.65) 0%, rgba(45,42,38,0.35) 35%, rgba(45,42,38,0.95) 100%);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 {
  color: var(--cream);
  font-size: clamp(40px, 6vw, 84px);
  line-height: 1.02;
  margin-top: 28px;
  max-width: 920px;
}
.page-hero h1 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 300;
}
.breadcrumb {
  margin-top: 36px;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 253, 251, 0.55);
  display: flex;
  gap: 14px;
  align-items: center;
}
.breadcrumb a { color: inherit; text-decoration: none; transition: color .3s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: var(--gold); }
.breadcrumb .here { color: var(--cream); }

/* HISTORY ------------------------------------------------------ */
.history-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(48px, 7vw, 110px);
  align-items: start;
}
.history-content h2 { margin-top: 22px; }
.history-lead {
  margin-top: 32px;
  font-size: 18px;
  line-height: 1.7;
  color: var(--ink);
  font-weight: 300;
  max-width: 540px;
}

.timeline {
  margin-top: 56px;
  list-style: none;
  padding: 0;
  position: relative;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 80px; top: 8px; bottom: 8px;
  width: 1px;
  background: var(--gold-line);
}
.timeline li {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 28px;
  padding: 20px 0 28px;
  position: relative;
}
.timeline li::after {
  content: "";
  position: absolute;
  left: 75px; top: 30px;
  width: 11px; height: 11px;
  border-radius: 50%;
  background: var(--cream);
  border: 1px solid var(--gold);
  z-index: 1;
}
.timeline li.now::after {
  background: var(--gold);
}
.tl-year {
  font-family: var(--serif);
  font-size: 30px;
  color: var(--gold);
  line-height: 1;
  padding-top: 16px;
}
.tl-title {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 8px;
}
.tl-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted-2);
  max-width: 440px;
}

.history-img-stack {
  position: relative;
  height: 680px;
  margin-top: 8px;
}
.history-img-1 {
  position: absolute;
  top: 0; right: 0;
  width: 80%; height: 72%;
  background-image: url("https://images.unsplash.com/photo-1629909613654-28e377c37b09?q=80&w=1400&auto=format&fit=crop");
  background-size: cover;
  background-position: center;
}
.history-img-2 {
  position: absolute;
  bottom: 0; left: 0;
  width: 58%; height: 42%;
  background-image: url("https://images.unsplash.com/photo-1487412947147-5cebf100ffc2?q=80&w=1200&auto=format&fit=crop");
  background-size: cover;
  background-position: center;
  border: 8px solid var(--cream);
}
.history-tag {
  position: absolute;
  left: 12px; top: 30%;
  font-size: 10px;
  letter-spacing: 0.5em;
  color: var(--gold);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  text-transform: uppercase;
}
@media (max-width: 900px) {
  .history-grid { grid-template-columns: 1fr; }
  .history-img-stack { height: 480px; margin-top: 32px; }
}

/* PHILOSOPHY (3 columns, dark) -------------------------------- */
.philo {
  background: var(--ink);
  color: var(--cream);
}
.philo-head {
  text-align: center;
  margin-bottom: 90px;
}
.philo-head .eyebrow { justify-content: center; }
.philo-head h2 { color: var(--cream); margin-top: 22px; }
.philo-head p {
  max-width: 560px;
  margin: 24px auto 0;
}
.philo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}
.philo-col {
  padding: 56px 40px 56px;
  border-right: 1px solid var(--line-dark);
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.philo-col:last-child { border-right: none; }
.philo-icon {
  width: 56px; height: 56px;
  color: var(--gold);
}
.philo-icon svg {
  width: 100%; height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 1;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.philo-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 0.04em;
}
.philo-title {
  font-family: var(--serif);
  font-size: 32px;
  color: var(--cream);
  line-height: 1.1;
}
.philo-desc {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 253, 251, 0.65);
  max-width: 320px;
}
@media (max-width: 900px) {
  .philo-grid { grid-template-columns: 1fr; border-top: none; }
  .philo-col {
    border-right: none;
    border-top: 1px solid var(--line-dark);
    padding: 40px 0;
  }
}

/* FACILITIES (asymmetric gallery) ----------------------------- */
.facilities {
  background: var(--cream);
}
.facilities-head {
  text-align: center;
  margin-bottom: 80px;
}
.facilities-head .eyebrow { justify-content: center; }
.facilities-head h2 { margin-top: 22px; }

.fac-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 110px;
  gap: 20px;
}
.fac-cell {
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-color: var(--cream-2);
  cursor: pointer;
}
.fac-cell::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(45,42,38,0.65) 100%);
  opacity: 0;
  transition: opacity .55s;
}
.fac-cell:hover::after { opacity: 1; }
.fac-cell .fac-label {
  position: absolute;
  left: 20px; bottom: 16px;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cream);
  z-index: 2;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .45s ease, transform .45s ease;
}
.fac-cell:hover .fac-label { opacity: 1; transform: none; }

.fac-cell.f1 { grid-column: span 7; grid-row: span 4; }
.fac-cell.f2 { grid-column: span 5; grid-row: span 2; }
.fac-cell.f3 { grid-column: span 5; grid-row: span 2; }
.fac-cell.f4 { grid-column: span 4; grid-row: span 3; }
.fac-cell.f5 { grid-column: span 4; grid-row: span 3; }
.fac-cell.f6 { grid-column: span 4; grid-row: span 3; }

@media (max-width: 900px) {
  .fac-grid { grid-template-columns: repeat(6, 1fr); grid-auto-rows: 90px; }
  .fac-cell.f1 { grid-column: span 6; grid-row: span 3; }
  .fac-cell.f2 { grid-column: span 3; grid-row: span 2; }
  .fac-cell.f3 { grid-column: span 3; grid-row: span 2; }
  .fac-cell.f4 { grid-column: span 3; grid-row: span 2; }
  .fac-cell.f5 { grid-column: span 3; grid-row: span 2; }
  .fac-cell.f6 { grid-column: span 6; grid-row: span 2; }
}

/* VALUES + STATS + CERTIFICATIONS (dark) ---------------------- */
.values {
  background: var(--ink);
  color: var(--cream);
}
.values-head {
  text-align: center;
  margin-bottom: 80px;
}
.values-head .eyebrow { justify-content: center; }
.values-head h2 { color: var(--cream); margin-top: 22px; }

.values-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 56px 0;
  border-top: 1px solid var(--gold-line);
  border-bottom: 1px solid var(--gold-line);
}
.values-stats .v-stat {
  text-align: center;
}
.values-stats .v-num {
  font-family: var(--serif);
  font-size: clamp(48px, 5vw, 76px);
  color: var(--gold);
  line-height: 1;
  font-weight: 400;
}
.values-stats .v-num sup {
  font-size: 0.4em;
  vertical-align: top;
  margin-left: 2px;
}
.values-stats .v-label {
  margin-top: 14px;
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(255, 253, 251, 0.7);
  font-weight: 500;
}
@media (max-width: 700px) {
  .values-stats { grid-template-columns: 1fr 1fr; gap: 40px 24px; }
}

.certs {
  margin-top: 80px;
}
.certs-label {
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255, 253, 251, 0.55);
  margin-bottom: 32px;
}
.certs-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  align-items: center;
}
.cert {
  text-align: center;
  padding: 24px 12px;
  border-left: 1px solid var(--line-dark);
  font-family: var(--serif);
  color: rgba(255, 253, 251, 0.7);
  transition: color .3s;
}
.cert:first-child { border-left: none; }
.cert:hover { color: var(--gold); }
.cert-name {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1;
}
.cert-sub {
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 253, 251, 0.4);
  margin-top: 10px;
}
@media (max-width: 800px) {
  .certs-row { grid-template-columns: repeat(2, 1fr); }
  .cert { border-left: none; border-top: 1px solid var(--line-dark); padding: 24px 12px; }
  .cert:nth-child(odd) { border-left: none; }
  .cert:nth-child(even) { border-left: 1px solid var(--line-dark); }
  .cert:nth-child(-n+2) { border-top: none; }
}


/* ============================================================
   RESULTADOS PAGE  ·  /resultados.html
   ============================================================ */

/* Hero (reuses .page-hero from about, smaller) ---------------- */
.page-hero.short {
  min-height: 50vh;
  padding: 150px 0 56px;
}
.page-hero.short .page-hero-bg {
  background-image: url("https://images.unsplash.com/photo-1616394584738-fc6e612e71b9?q=80&w=2400&auto=format&fit=crop");
}
.page-hero .hero-lead {
  margin-top: 28px;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 253, 251, 0.78);
  max-width: 540px;
  font-weight: 300;
}

/* Filter bar (sticky) ----------------------------------------- */
.filter-bar {
  position: sticky;
  top: 78px;
  z-index: 40;
  background: rgba(255, 253, 251, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--gold-line);
  border-bottom: 1px solid var(--gold-line);
  padding: 18px 0;
  margin-top: clamp(40px, 6vw, 80px);
}
.filter-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.filter-pill {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 12px 22px;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--gold);
  cursor: pointer;
  transition: all .35s cubic-bezier(.2,.7,.2,1);
  border-radius: 999px;
  white-space: nowrap;
}
.filter-pill:hover {
  background: rgba(184, 160, 137, 0.1);
}
.filter-pill.active {
  background: var(--gold);
  color: var(--ink);
}
.filter-count {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-left: 8px;
}
@media (max-width: 700px) {
  .filter-bar { top: 70px; padding: 14px 0; }
  .filter-pill { padding: 10px 16px; font-size: 10px; }
}

/* Gallery grid ------------------------------------------------ */
.gallery-section { background: var(--cream); padding: clamp(60px, 8vw, 100px) 0; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 1100px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 700px) { .gallery-grid { grid-template-columns: 1fr; } }

.res-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line-light);
  transition: border-color .4s, box-shadow .4s, transform .4s;
  display: flex;
  flex-direction: column;
  animation: card-in .55s cubic-bezier(.2,.7,.2,1);
}
@keyframes card-in {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: none; }
}
.res-card:hover {
  border-color: var(--gold-soft);
  box-shadow: 0 18px 44px rgba(45,42,38,0.08);
}
.res-pair {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.res-pair::after {
  /* center divider */
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 1px;
  background: var(--gold);
  transform: translateX(-50%);
  z-index: 2;
}
.res-half {
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}
.res-half::before {
  /* face silhouette echo so the gradient placeholders feel intentional */
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  width: 40%; aspect-ratio: 3/4;
  border-radius: 50% / 55%;
  transform: translate(-50%, -42%);
  background: rgba(255,255,255,0.05);
}
.res-half.before {
  background-image: linear-gradient(135deg, #d9d4ce 0%, #c7c0b8 100%);
}
.res-half.after {
  background-image: linear-gradient(135deg, #4a4641 0%, #2f2c28 100%);
}
.res-half.before::before { background: rgba(0,0,0,0.04); }
.res-half-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .9s cubic-bezier(.2,.7,.2,1);
}
.res-card:hover .res-half-img { transform: scale(1.06); }
.res-tag {
  position: absolute;
  top: 14px;
  padding: 7px 12px;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  background: rgba(45, 42, 38, 0.78);
  color: var(--cream);
  backdrop-filter: blur(8px);
  font-weight: 500;
  z-index: 3;
}
.res-tag.left  { left: 14px; }
.res-tag.right { right: 14px; background: rgba(184, 160, 137, 0.95); color: var(--ink); }

.res-body {
  padding: 26px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.res-category {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.res-title {
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.15;
  color: var(--ink);
  font-weight: 400;
}
.res-area {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--muted-2);
  margin-top: 2px;
}
.res-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 6px;
  padding-top: 16px;
  border-top: 1px solid var(--gold-line);
}
.res-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 6px 10px;
  border: 1px solid var(--gold-line);
  color: var(--muted-2);
  font-weight: 500;
}
.res-chip svg { width: 10px; height: 10px; opacity: .7; }

/* Empty state */
.gallery-empty {
  text-align: center;
  padding: 80px 24px;
  font-family: var(--serif);
  font-size: 22px;
  color: var(--muted);
  font-style: italic;
}

/* Load more */
.load-more-wrap {
  text-align: center;
  margin-top: 64px;
}
.load-more {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 18px 36px;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition: all .4s;
}
.load-more:hover {
  background: var(--ink);
  color: var(--cream);
}
.load-more.done {
  border-color: var(--gold-line);
  color: var(--muted);
  cursor: default;
}
.load-more.done:hover { background: transparent; color: var(--muted); }

/* Legal bar --------------------------------------------------- */
.legal-bar {
  background: var(--ink-2);
  color: rgba(255, 253, 251, 0.55);
  padding: 28px 0;
  border-top: 1px solid var(--line-dark);
}
.legal-row {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  max-width: 880px;
  margin: 0 auto;
  text-align: left;
}
.legal-row svg {
  width: 18px; height: 18px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.legal-row p {
  margin: 0;
  font-size: 12px;
  line-height: 1.65;
  letter-spacing: 0.02em;
}
@media (max-width: 600px) {
  .legal-row { flex-direction: column; gap: 12px; text-align: center; align-items: center; }
}


/* ============================================================
   EQUIPO PAGE  ·  /equipo.html
   ============================================================ */

/* Director feature -------------------------------------------- */
.director {
  background: var(--cream);
}
.director-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(48px, 7vw, 110px);
  align-items: start;
}
.director-img {
  position: relative;
  aspect-ratio: 3 / 4;
  background-size: cover;
  background-position: center top;
  background-color: var(--cream-2);
  background-image: url("https://images.unsplash.com/photo-1559839734-2b71ea197ec2?q=80&w=1200&auto=format&fit=crop");
  filter: grayscale(0.1);
}
.director-img-tag {
  position: absolute;
  left: 16px; top: 30%;
  font-size: 10px;
  letter-spacing: 0.5em;
  color: var(--gold);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  text-transform: uppercase;
}
.director-content { padding-top: 12px; }
.director-role {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 16px;
}
.director-name {
  font-family: var(--serif);
  font-size: clamp(40px, 4.5vw, 64px);
  line-height: 1;
  color: var(--ink);
  font-weight: 400;
}
.director-name em { font-style: italic; color: var(--gold); font-weight: 300; }
.director-bio {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.director-bio p {
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
  color: var(--muted-2);
  max-width: 560px;
}
.director-bio p:first-child {
  font-size: 18px;
  color: var(--ink);
  font-weight: 300;
  line-height: 1.65;
}

.credentials {
  margin-top: 44px;
  padding: 32px 0;
  border-top: 1px solid var(--gold-line);
  border-bottom: 1px solid var(--gold-line);
}
.credentials h4 {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 22px;
  font-weight: 500;
}
.credentials ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.credentials li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 16px;
  font-size: 14px;
  color: var(--ink);
  line-height: 1.5;
}
.credentials li .cr-year {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold);
  font-size: 15px;
}
.credentials li small {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
  font-family: var(--sans);
  font-style: normal;
}
.colegiado {
  margin-top: 28px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.colegiado strong {
  color: var(--ink);
  font-weight: 500;
}
.director-social {
  margin-top: 28px;
  display: flex;
  gap: 10px;
}
.director-social a {
  width: 42px; height: 42px;
  border: 1px solid var(--line-light);
  color: var(--muted-2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  transition: all .35s;
}
.director-social a:hover { border-color: var(--gold); color: var(--gold); }
.director-social svg { width: 16px; height: 16px; }

@media (max-width: 900px) {
  .director-grid { grid-template-columns: 1fr; }
}

/* Team grid (dark) -------------------------------------------- */
.team-section {
  background: var(--ink);
  color: var(--cream);
}
.team-section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 72px;
}
.team-section-head h2 { color: var(--cream); margin-top: 22px; }
.team-section-head p { max-width: 420px; }
@media (max-width: 900px) {
  .team-section-head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 48px; }
}

.team-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.team-card {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 28px;
  align-items: start;
}
.team-card-img {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background-color: var(--ink-soft);
  background-size: cover;
  background-position: center top;
  filter: grayscale(0.15);
  transition: filter .6s;
}
.team-card-img-inner {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center top;
  transition: transform .9s cubic-bezier(.2,.7,.2,1);
}
.team-card-img::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(184,160,137,0) 50%, rgba(184,160,137,0.28) 100%);
  opacity: 0;
  transition: opacity .55s;
}
.team-card:hover .team-card-img { filter: grayscale(0); }
.team-card:hover .team-card-img-inner { transform: scale(1.05); }
.team-card:hover .team-card-img::after { opacity: 1; }

.team-card-body {
  padding-top: 8px;
}
.team-card-spec {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 14px;
}
.team-card-name {
  font-family: var(--serif);
  font-size: 28px;
  color: var(--cream);
  line-height: 1.1;
  font-weight: 400;
}
.team-card-bio {
  margin-top: 18px;
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255, 253, 251, 0.65);
}
.team-card-link {
  margin-top: 22px;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--gold);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 6px;
  position: relative;
  transition: gap .35s;
}
.team-card-link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--gold);
  transform-origin: left;
  transform: scaleX(0.3);
  transition: transform .5s cubic-bezier(.2,.7,.2,1);
}
.team-card:hover .team-card-link { gap: 18px; }
.team-card:hover .team-card-link::after { transform: scaleX(1); }
.team-card-link svg { width: 12px; }

@media (max-width: 900px) {
  .team-card-grid { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 560px) {
  .team-card { grid-template-columns: 1fr; gap: 20px; }
  .team-card-img { max-width: 320px; }
}

/* Formación section ------------------------------------------- */
.formacion {
  background: var(--cream);
}
.formacion-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(48px, 7vw, 110px);
  align-items: start;
}
.formacion-content h2 { margin-top: 22px; }
.formacion-content p {
  margin-top: 28px;
  font-size: 16px;
  line-height: 1.75;
  color: var(--muted-2);
  max-width: 500px;
}
.formacion-stats {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--gold-line);
}
.formacion-stats > div {
  padding: 24px 0;
  border-bottom: 1px solid var(--gold-line);
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 28px;
  align-items: baseline;
}
.formacion-stats .fs-num {
  font-family: var(--serif);
  font-size: 40px;
  color: var(--gold);
  line-height: 1;
  font-weight: 400;
}
.formacion-stats .fs-num sup {
  font-size: 0.4em;
  vertical-align: top;
  margin-left: 2px;
}
.formacion-stats .fs-label {
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.4;
}

.institutions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--gold-line);
}
.institution {
  padding: 32px 24px;
  border-bottom: 1px solid var(--gold-line);
  border-right: 1px solid var(--gold-line);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 130px;
  transition: background .4s;
}
.institution:nth-child(even) { border-right: none; }
.institution:hover { background: rgba(184, 160, 137, 0.06); }
.institution .inst-name {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--ink);
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.1;
}
.institution .inst-sub {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 10px;
  font-weight: 500;
}
.institutions-eyebrow {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
  text-align: center;
}
@media (max-width: 900px) {
  .formacion-grid { grid-template-columns: 1fr; }
}

/* Quote section (dark) ---------------------------------------- */
.team-quote {
  background: var(--ink);
  color: var(--cream);
  padding: clamp(100px, 12vw, 160px) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.team-quote::before {
  content: "\201C";
  position: absolute;
  left: 50%; top: 12%;
  transform: translateX(-50%);
  font-family: var(--serif);
  font-style: italic;
  font-size: 280px;
  line-height: 1;
  color: var(--gold);
  opacity: 0.15;
  pointer-events: none;
}
.team-quote-text {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.2;
  color: var(--gold);
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.team-quote-author {
  margin-top: 48px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  position: relative;
  z-index: 1;
}
.team-quote-author::before {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 16px;
}
.team-quote-author .qa-name {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--cream);
  font-style: normal;
}
.team-quote-author .qa-role {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255, 253, 251, 0.55);
}


/* ============================================================
   CONTACTO PAGE  ·  /contacto.html
   ============================================================ */

/* Hero override (uses .page-hero.short) ----------------------- */
.page-hero.contact .page-hero-bg {
  background-image: url("https://images.unsplash.com/photo-1631049035182-249067d7618e?q=80&w=2400&auto=format&fit=crop");
}

/* Two-column info + form -------------------------------------- */
.contact-section { background: var(--cream); }
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(48px, 7vw, 110px);
  align-items: start;
}

/* LEFT: contact info ------------------------------------------ */
.contact-info { padding-top: 8px; }
.contact-info h3 {
  font-family: var(--serif);
  font-size: 28px;
  color: var(--ink);
  margin-top: 22px;
  margin-bottom: 36px;
  font-weight: 400;
  line-height: 1.15;
}
.contact-list {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.contact-list li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 20px;
  align-items: start;
}
.contact-list .ci-icon {
  width: 44px; height: 44px;
  border: 1px solid var(--gold-line);
  border-radius: 50%;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-list .ci-icon svg { width: 18px; height: 18px; }
.contact-list .ci-label {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 6px;
}
.contact-list .ci-value {
  font-family: var(--serif);
  font-size: 19px;
  color: var(--ink);
  line-height: 1.3;
  font-weight: 400;
}
.contact-list .ci-value a { color: inherit; text-decoration: none; transition: color .3s; }
.contact-list .ci-value a:hover { color: var(--gold); }
.contact-list .ci-value small {
  display: block;
  font-family: var(--sans);
  font-size: 13px;
  color: var(--muted-2);
  margin-top: 4px;
  font-weight: 400;
}

.hours-block {
  margin-top: 40px;
  padding: 24px 0;
  border-top: 1px solid var(--gold-line);
  border-bottom: 1px solid var(--gold-line);
}
.hours-block h4 {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 18px;
  font-weight: 500;
}
.hours-block .hour-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 10px 0;
  font-size: 14px;
}
.hours-block .hour-row .hr-day {
  color: var(--ink);
  font-weight: 500;
  letter-spacing: 0.04em;
}
.hours-block .hour-row .hr-time {
  font-family: var(--serif);
  color: var(--muted-2);
  font-size: 16px;
}
.hours-block .hour-row.closed .hr-time {
  font-style: italic;
  color: var(--muted);
}

.contact-social {
  margin-top: 32px;
  display: flex;
  gap: 10px;
}
.contact-social a {
  width: 42px; height: 42px;
  border: 1px solid var(--line-light);
  color: var(--muted-2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  transition: all .35s;
}
.contact-social a:hover { border-color: var(--gold); color: var(--gold); }
.contact-social svg { width: 16px; height: 16px; }

/* Small inline map placeholder under the social row */
.mini-map {
  margin-top: 32px;
  position: relative;
  aspect-ratio: 16 / 9;
  background: #DDD5C9;
  background-image:
    linear-gradient(0deg, rgba(255,253,251,0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,253,251,0.5) 1px, transparent 1px),
    linear-gradient(135deg, rgba(184,160,137,0.05) 0%, transparent 60%);
  background-size: 28px 28px, 28px 28px, 100% 100%;
  border: 1px solid var(--gold-line);
  overflow: hidden;
  cursor: pointer;
  transition: filter .4s;
  display: block;
}
.mini-map:hover { filter: brightness(0.96); }
.mini-map::before {
  content: "";
  position: absolute;
  left: -8%; right: -8%;
  top: 38%;
  height: 14px;
  background: linear-gradient(90deg, transparent, rgba(184,160,137,0.22), transparent);
  transform: rotate(-3deg);
}
.mini-map::after {
  content: "";
  position: absolute;
  top: 62%; left: -8%; right: -8%;
  height: 10px;
  background: linear-gradient(90deg, transparent, rgba(45,42,38,0.07), transparent);
  transform: rotate(4deg);
}
.mini-map-grid {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 32% 58%, rgba(184,160,137,0.12), transparent 18%),
    radial-gradient(circle at 70% 35%, rgba(45,42,38,0.05), transparent 22%);
}
.mini-map-tag {
  position: absolute;
  left: 16px; bottom: 14px;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink);
  background: rgba(255, 253, 251, 0.88);
  backdrop-filter: blur(6px);
  padding: 7px 12px;
  border-left: 2px solid var(--gold);
  z-index: 2;
}
.map-pin {
  position: absolute;
  top: 48%; left: 50%;
  transform: translate(-50%, -100%);
  color: var(--gold);
  z-index: 2;
}
.map-pin svg { width: 32px; height: 32px; filter: drop-shadow(0 4px 10px rgba(45,42,38,0.25)); }
.map-pin-pulse {
  position: absolute;
  top: 48%; left: 50%;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--gold);
  transform: translate(-50%, -50%);
  opacity: 0;
  animation: pin-pulse 2.4s ease-out infinite;
}
@keyframes pin-pulse {
  0%   { transform: translate(-50%, -50%) scale(1);   opacity: 0.4; }
  100% { transform: translate(-50%, -50%) scale(3.5); opacity: 0; }
}
.map-cta {
  position: absolute;
  left: 16px; bottom: 16px;
  background: rgba(45, 42, 38, 0.86);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  padding: 8px 14px;
  text-decoration: none;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background .3s;
}
.map-cta:hover { background: var(--gold); color: var(--ink); }
.map-cta svg { width: 11px; }

.mini-map-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--gold);
  text-decoration: none;
  padding-bottom: 6px;
  position: relative;
  align-self: flex-start;
}
.mini-map-cta::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--gold);
  transform-origin: left;
  transition: transform .5s cubic-bezier(.2,.7,.2,1);
}
.mini-map-cta:hover::after { transform: scaleX(0); transform-origin: right; }
.mini-map-cta svg { width: 12px; }

/* RIGHT: contact form ----------------------------------------- */
.contact-form-wrap {
  background: #fff;
  padding: clamp(32px, 5vw, 56px);
  border: 1px solid var(--line-light);
  position: relative;
}
.contact-form-wrap::before {
  content: "";
  position: absolute;
  top: -1px; left: -1px; right: -1px;
  height: 2px;
  background: var(--gold);
}
.contact-form-eyebrow {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.contact-form-title {
  font-family: var(--serif);
  font-size: clamp(26px, 2.4vw, 34px);
  color: var(--ink);
  margin-top: 12px;
  margin-bottom: 36px;
  font-weight: 400;
  line-height: 1.15;
}

/* Floating-label fields */
.ff-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 20px;
}
.ff {
  position: relative;
  padding-top: 22px;
  margin-bottom: 22px;
  grid-column: span 2;
}
.ff.half { grid-column: span 1; }
.ff input,
.ff textarea,
.ff select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line-light);
  font: inherit;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink);
  padding: 10px 0;
  outline: none;
  border-radius: 0;
  transition: border-color .4s ease;
}
.ff select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 8' fill='none' stroke='%23B8A089' stroke-width='1.4'%3E%3Cpath d='M1 1l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 6px center;
  background-size: 12px 7px;
  padding-right: 24px;
  cursor: pointer;
  color: var(--ink);
}
.ff textarea {
  resize: vertical;
  min-height: 96px;
}
.ff input:focus,
.ff textarea:focus,
.ff select:focus {
  border-bottom-color: var(--gold);
}

.ff label {
  position: absolute;
  left: 0;
  top: 32px;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--muted);
  font-weight: 400;
  pointer-events: none;
  transition: top .35s ease, font-size .35s ease, letter-spacing .35s ease, color .35s ease;
}
/* float up when focused OR when input has any value (placeholder-shown trick) */
.ff input:focus + label,
.ff input:not(:placeholder-shown) + label,
.ff textarea:focus + label,
.ff textarea:not(:placeholder-shown) + label,
.ff select:focus + label,
.ff select.has-value + label {
  top: 0;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

/* Make sure inputs report empty as "placeholder-shown" — add a single
   space placeholder in JSX (placeholder=" ") so the selector works. */

/* Checkbox */
.ff-check {
  margin-top: 8px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  user-select: none;
}
.ff-check input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.ff-check .box {
  width: 20px; height: 20px;
  border: 1px solid var(--line-light);
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  color: transparent;
  transition: all .3s;
}
.ff-check .box svg { width: 12px; }
.ff-check input:checked + .box {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}
.ff-check .label {
  font-size: 13px;
  color: var(--muted-2);
  line-height: 1.55;
}
.ff-check .label a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }

.contact-submit {
  margin-top: 28px;
  width: 100%;
  background: var(--gold);
  color: var(--ink);
  border: 1px solid var(--gold);
  padding: 20px 28px;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  transition: all .4s;
}
.contact-submit:hover { background: var(--ink); color: var(--gold); }
.contact-submit svg { width: 16px; transition: transform .35s; }
.contact-submit:hover svg { transform: translateX(4px); }
.contact-submit:disabled { opacity: 0.4; cursor: not-allowed; }
.contact-submit:disabled:hover { background: var(--gold); color: var(--ink); }

.contact-success {
  text-align: center;
  padding: 32px 0 8px;
}
.contact-success-icon {
  width: 64px; height: 64px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 24px;
}
.contact-success-icon svg { width: 24px; }
.contact-success h3 {
  font-family: var(--serif);
  font-size: 32px;
  color: var(--ink);
  font-weight: 400;
  margin: 0;
}
.contact-success h3 em { font-style: italic; color: var(--gold); font-weight: 300; }
.contact-success p {
  margin-top: 16px;
  font-size: 15px;
  color: var(--muted-2);
  line-height: 1.7;
}

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .ff-row { grid-template-columns: 1fr; }
  .ff.half { grid-column: span 2; }
}

/* Big map section --------------------------------------------- */
.bigmap-section {
  background: var(--ink);
  color: var(--cream);
  padding: clamp(60px, 8vw, 100px) 0;
}
.bigmap-head {
  text-align: center;
  margin-bottom: 56px;
}
.bigmap-head .eyebrow { justify-content: center; }
.bigmap-head h2 { color: var(--cream); margin-top: 22px; }
.bigmap-head p {
  max-width: 540px;
  margin: 20px auto 0;
}

.bigmap {
  position: relative;
  aspect-ratio: 21 / 9;
  background: #2A2823;
  background-image:
    linear-gradient(0deg,  rgba(255,253,251,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,253,251,0.04) 1px, transparent 1px),
    radial-gradient(ellipse at 50% 50%, rgba(184,160,137,0.08), transparent 60%);
  background-size: 48px 48px, 48px 48px, 100% 100%;
  border: 1px solid var(--line-dark);
  overflow: hidden;
}
.bigmap::before,
.bigmap::after {
  content: "";
  position: absolute;
  left: -10%; right: -10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184,160,137,0.45), transparent);
}
.bigmap::before { top: 42%; transform: rotate(-4deg); }
.bigmap::after  { top: 64%; transform: rotate(2deg); background: linear-gradient(90deg, transparent, rgba(255,253,251,0.18), transparent); }
.bigmap .map-pin    { color: var(--gold); }
.bigmap .map-pin svg { width: 44px; height: 44px; }
.bigmap .map-pin-pulse {
  width: 22px; height: 22px;
  background: var(--gold);
}
.bigmap-marker-label {
  position: absolute;
  top: calc(48% - 64px); left: 50%;
  transform: translateX(-50%);
  background: var(--ink-2);
  color: var(--cream);
  padding: 12px 18px;
  font-family: var(--serif);
  font-size: 16px;
  border: 1px solid var(--gold-line);
  white-space: nowrap;
  z-index: 3;
}
.bigmap-marker-label small {
  display: block;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 4px;
  font-weight: 500;
}
.bigmap-actions {
  position: absolute;
  right: 24px; bottom: 24px;
  display: flex;
  gap: 10px;
  z-index: 3;
}
.bigmap-actions a {
  background: rgba(45, 42, 38, 0.86);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  padding: 12px 18px;
  text-decoration: none;
  border: 1px solid var(--gold-line);
  transition: all .3s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.bigmap-actions a:hover {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}

.bigmap-meta {
  margin-top: 32px;
  display: flex;
  justify-content: center;
  gap: clamp(24px, 4vw, 56px);
  flex-wrap: wrap;
  color: rgba(255, 253, 251, 0.65);
  font-size: 13px;
}
.bigmap-meta div {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.bigmap-meta svg { width: 18px; height: 18px; color: var(--gold); }
.bigmap-meta strong {
  color: var(--cream);
  font-weight: 500;
  font-family: var(--serif);
  font-size: 16px;
  margin-right: 4px;
}
@media (max-width: 700px) {
  .bigmap { aspect-ratio: 4 / 5; }
  .bigmap-actions { right: 16px; bottom: 16px; }
}


/* ============================================================
   CATEGORY PAGE  (Medicina Facial template, reusable)
   ============================================================ */

/* Hero override slot for category background */
.page-hero.category .page-hero-bg {
  background-image: var(--cat-hero, url("https://images.unsplash.com/photo-1616394584738-fc6e612e71b9?q=80&w=2400&auto=format&fit=crop"));
}

/* Category intro -------------------------------------------- */
.cat-intro {
  background: var(--cream);
}
.cat-intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(48px, 7vw, 110px);
  align-items: center;
}
.cat-intro-content h2 { margin-top: 22px; }
.cat-intro-lead {
  margin-top: 32px;
  font-size: 18px;
  line-height: 1.7;
  color: var(--ink);
  font-weight: 300;
  max-width: 540px;
}
.cat-intro-body {
  margin-top: 20px;
  max-width: 540px;
}

.cat-highlights {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--gold-line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.cat-highlight {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cat-highlight-icon {
  width: 36px; height: 36px;
  color: var(--gold);
}
.cat-highlight-icon svg {
  width: 100%; height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.cat-highlight-label {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--ink);
  line-height: 1.2;
  font-weight: 500;
}
.cat-intro-img {
  position: relative;
  aspect-ratio: 4 / 5;
  background-size: cover;
  background-position: center;
  background-color: var(--cream-2);
}
.cat-intro-tag {
  position: absolute;
  right: -16px; top: 30%;
  font-size: 10px;
  letter-spacing: 0.5em;
  color: var(--gold);
  writing-mode: vertical-rl;
  text-transform: uppercase;
}
@media (max-width: 900px) {
  .cat-intro-grid { grid-template-columns: 1fr; }
  .cat-highlights { grid-template-columns: 1fr; gap: 24px; }
}

/* Treatments grid (dark) ----------------------------------- */
.treatments {
  background: var(--ink);
  color: var(--cream);
}
.treatments-head {
  text-align: center;
  margin-bottom: 72px;
}
.treatments-head .eyebrow { justify-content: center; }
.treatments-head h2 { color: var(--cream); margin-top: 22px; }
.treatments-head p { max-width: 520px; margin: 24px auto 0; }

.treat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.tr-card {
  position: relative;
  background: var(--ink-2);
  border: 1px solid var(--line-dark);
  display: flex;
  flex-direction: column;
  transition: border-color .45s, transform .45s, box-shadow .45s;
}
.tr-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 24px 56px rgba(0,0,0,0.35);
}
.tr-card-img {
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  background-color: #2A2823;
  background-image:
    radial-gradient(circle at 30% 40%, rgba(184,160,137,0.18), transparent 55%),
    linear-gradient(135deg, #3a342c, #1f1c18);
  position: relative;
  overflow: hidden;
}
.tr-card-img::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.4) 100%);
  opacity: 0;
  transition: opacity .5s;
}
.tr-card:hover .tr-card-img::after { opacity: 1; }
.tr-num {
  position: absolute;
  top: 16px; right: 18px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 0.04em;
  z-index: 2;
}
.tr-body {
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}
.tr-title {
  font-family: var(--serif);
  font-size: 26px;
  color: var(--cream);
  line-height: 1.15;
  font-weight: 400;
}
.tr-desc {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255, 253, 251, 0.65);
  flex: 1;
}
.tr-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 14px;
  border-top: 1px solid var(--line-dark);
}
.tr-chip {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  padding: 6px 10px;
  border: 1px solid var(--gold-line);
  color: rgba(255, 253, 251, 0.75);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.tr-chip svg { width: 10px; height: 10px; opacity: 0.7; }
.tr-link {
  margin-top: 10px;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--gold);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 6px;
  position: relative;
  align-self: flex-start;
  transition: gap .35s;
}
.tr-link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--gold);
  transform-origin: left;
  transform: scaleX(0.25);
  transition: transform .5s cubic-bezier(.2,.7,.2,1);
}
.tr-card:hover .tr-link { gap: 18px; }
.tr-card:hover .tr-link::after { transform: scaleX(1); }
.tr-link svg { width: 12px; }

@media (max-width: 1100px) { .treat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .treat-grid { grid-template-columns: 1fr; } }

/* Why us (cream) ------------------------------------------- */
.whyus { background: var(--cream); }
.whyus-head {
  text-align: center;
  margin-bottom: 80px;
}
.whyus-head .eyebrow { justify-content: center; }
.whyus-head h2 { margin-top: 22px; }
.whyus-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--gold-line);
}
.whyus-col {
  padding: 48px 32px 48px 0;
  border-right: 1px solid var(--gold-line);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.whyus-col:last-child { border-right: none; padding-right: 0; }
.whyus-col:not(:first-child) { padding-left: 32px; }
.whyus-num {
  font-family: var(--serif);
  font-size: 64px;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.02em;
}
.whyus-title {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.2;
  color: var(--ink);
  font-weight: 400;
}
.whyus-desc {
  font-size: 13px;
  line-height: 1.7;
  color: var(--muted-2);
}
@media (max-width: 1000px) {
  .whyus-grid { grid-template-columns: 1fr 1fr; }
  .whyus-col:nth-child(2) { border-right: none; padding-right: 0; }
  .whyus-col { border-bottom: 1px solid var(--gold-line); }
  .whyus-col:nth-last-child(-n+2) { border-bottom: none; }
}
@media (max-width: 600px) {
  .whyus-grid { grid-template-columns: 1fr; }
  .whyus-col { border-right: none; padding: 32px 0; }
  .whyus-col:last-child { border-bottom: none; }
}

/* Mini results (dark) -------------------------------------- */
.cat-results { background: var(--ink); color: var(--cream); }
.cat-results-head {
  text-align: center;
  margin-bottom: 64px;
}
.cat-results-head .eyebrow { justify-content: center; }
.cat-results-head h2 { color: var(--cream); margin-top: 22px; }
.cat-results-head p { max-width: 520px; margin: 22px auto 0; }
.cat-results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 1000px) { .cat-results-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 700px)  { .cat-results-grid { grid-template-columns: 1fr; } }

.cat-results-link {
  text-align: center;
  margin-top: 56px;
}


/* ============================================================
   TREATMENT PAGE  ·  individual treatment template
   ============================================================ */

/* Description ------------------------------------------------ */
.tx-desc { background: var(--cream); }
.tx-desc-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.95fr;
  gap: clamp(48px, 7vw, 110px);
  align-items: start;
}
.tx-desc h2 { margin-top: 22px; }
.tx-desc-lead {
  margin-top: 32px;
  font-size: 18px;
  line-height: 1.7;
  color: var(--ink);
  font-weight: 300;
  max-width: 540px;
}
.tx-desc-body {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 540px;
}
.tx-desc-body p { margin: 0; }

.tx-zones {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--gold-line);
}
.tx-zones h4 {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 20px;
  font-weight: 500;
}
.tx-zones ul {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 28px;
}
.tx-zones li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--ink);
}
.tx-zones .zcheck {
  width: 18px; height: 18px;
  color: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.tx-zones .zcheck svg { width: 9px; }
.tx-desc-img {
  position: relative;
  aspect-ratio: 4 / 5;
  background-size: cover;
  background-position: center;
  background-color: var(--cream-2);
}
.tx-desc-img .tag {
  position: absolute;
  left: -16px; top: 30%;
  font-size: 10px;
  letter-spacing: 0.5em;
  color: var(--gold);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  text-transform: uppercase;
}
@media (max-width: 900px) {
  .tx-desc-grid { grid-template-columns: 1fr; }
  .tx-zones ul { grid-template-columns: 1fr; }
}

/* Procedure (horizontal timeline) ---------------------------- */
.tx-proc {
  background: var(--ink);
  color: var(--cream);
}
.tx-proc-head {
  text-align: center;
  margin-bottom: 72px;
}
.tx-proc-head .eyebrow { justify-content: center; }
.tx-proc-head h2 { color: var(--cream); margin-top: 22px; }

.proc-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  padding-top: 36px;
}
.proc-steps::before {
  /* connecting line at dot height */
  content: "";
  position: absolute;
  top: 43px; left: 12.5%; right: 12.5%;
  height: 1px;
  background: var(--gold-line);
}
.proc-step {
  text-align: center;
  padding: 0 18px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.proc-step > div + div { width: 100%; }
.proc-dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--gold);
  border: 4px solid var(--ink);
  box-shadow: 0 0 0 1px var(--gold);
  margin: 0 auto 28px;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  box-sizing: content-box;
}
.proc-roman {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--gold);
  margin-bottom: 10px;
  letter-spacing: 0.04em;
}
.proc-title {
  font-family: var(--serif);
  font-size: 19px;
  color: var(--cream);
  line-height: 1.25;
  margin-bottom: 0;
  font-weight: 400;
  max-width: 220px;
  margin-left: auto;
  margin-right: auto;
}
.proc-time {
  margin-top: 18px;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
@media (max-width: 900px) {
  .proc-steps { grid-template-columns: 1fr; gap: 32px; padding-top: 12px; }
  .proc-steps::before { display: none; }
  .proc-step {
    text-align: left;
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 24px;
    align-items: start;
    padding: 0;
  }
  .proc-dot { margin: 6px 0 0; }
  .proc-title {
    max-width: none;
    margin: 0;
    text-align: left;
  }
}

.proc-stats {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--gold-line);
  border-bottom: 1px solid var(--gold-line);
}
.proc-stat {
  text-align: center;
  padding: 36px 16px;
  border-right: 1px solid var(--gold-line);
}
.proc-stat:last-child { border-right: none; }
.proc-stat-label {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 253, 251, 0.55);
  margin-bottom: 12px;
}
.proc-stat-value {
  font-family: var(--serif);
  font-size: clamp(22px, 2vw, 28px);
  color: var(--gold);
  line-height: 1.1;
}
@media (max-width: 700px) {
  .proc-stats { grid-template-columns: 1fr 1fr; }
  .proc-stat { border-right: none; border-top: 1px solid var(--gold-line); }
  .proc-stat:nth-child(odd) { border-right: 1px solid var(--gold-line); }
  .proc-stat:nth-child(-n+2) { border-top: none; }
}

/* Ideal candidate (2 cols pros/cons) ------------------------- */
.tx-ideal { background: var(--cream); }
.ideal-head {
  text-align: center;
  margin-bottom: 64px;
}
.ideal-head .eyebrow { justify-content: center; }
.ideal-head h2 { margin-top: 22px; }
.ideal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.ideal-col {
  background: #fff;
  border: 1px solid var(--line-light);
  padding: 40px 36px 44px;
}
.ideal-col h3 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--ink);
  margin: 0 0 28px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--gold-line);
}
.ideal-col.no h3 { border-bottom-color: var(--line-light); }
.ideal-col ul {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ideal-col li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 14px;
  align-items: start;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink);
}
.ideal-col .ico {
  width: 22px; height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.ideal-col.yes .ico {
  background: rgba(184,160,137,0.15);
  border: 1px solid var(--gold);
  color: var(--gold);
}
.ideal-col.no .ico {
  background: rgba(45,42,38,0.05);
  border: 1px solid rgba(45,42,38,0.15);
  color: rgba(45,42,38,0.4);
}
.ideal-col .ico svg { width: 10px; height: 10px; }
@media (max-width: 800px) {
  .ideal-grid { grid-template-columns: 1fr; gap: 24px; }
}

/* Before/After (reuse .res-card from resultados) ------------- */
.tx-ba {
  background: var(--ink);
  color: var(--cream);
}
.tx-ba-head { text-align: center; margin-bottom: 64px; }
.tx-ba-head .eyebrow { justify-content: center; }
.tx-ba-head h2 { color: var(--cream); margin-top: 22px; }
.tx-ba-head p { max-width: 520px; margin: 22px auto 0; }
.tx-ba-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 1000px) { .tx-ba-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 700px)  { .tx-ba-grid { grid-template-columns: 1fr; } }

/* FAQ (cream, accordion) ------------------------------------- */
.tx-faq { background: var(--cream); }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: clamp(48px, 7vw, 96px);
  align-items: start;
}
.faq-side { position: sticky; top: 110px; }
.faq-side h2 {
  margin-top: 22px;
  font-size: clamp(34px, 3.6vw, 52px);
}
.faq-side p {
  margin-top: 28px;
  font-size: 15px;
  line-height: 1.75;
  color: var(--muted-2);
  max-width: 360px;
}
.faq-list {
  border-top: 1px solid var(--ink);
}
.faq-item {
  border-bottom: 1px solid var(--gold-line);
}
.faq-q {
  width: 100%;
  background: transparent;
  border: none;
  text-align: left;
  font: inherit;
  font-family: var(--serif);
  font-size: clamp(20px, 1.7vw, 24px);
  color: var(--ink);
  padding: 26px 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  line-height: 1.3;
  font-weight: 400;
}
.faq-q .plus {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-family: var(--sans);
  font-weight: 300;
  transition: transform .45s cubic-bezier(.2,.7,.2,1), background .35s, color .35s;
  position: relative;
}
.faq-q .plus::before,
.faq-q .plus::after {
  content: "";
  position: absolute;
  background: currentColor;
  top: 50%; left: 50%;
}
.faq-q .plus::before {
  width: 12px; height: 1px;
  transform: translate(-50%, -50%);
}
.faq-q .plus::after {
  width: 1px; height: 12px;
  transform: translate(-50%, -50%);
  transition: transform .45s cubic-bezier(.2,.7,.2,1);
}
.faq-item.open .plus { transform: rotate(180deg); background: var(--gold); color: var(--ink); }
.faq-item.open .plus::after { transform: translate(-50%, -50%) scaleY(0); }

.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height .55s cubic-bezier(.2,.7,.2,1), opacity .4s ease;
  opacity: 0;
}
.faq-item.open .faq-a {
  max-height: 400px;
  opacity: 1;
}
.faq-a-inner {
  padding: 0 56px 28px 0;
  font-size: 15px;
  line-height: 1.75;
  color: var(--muted-2);
}
@media (max-width: 900px) {
  .faq-grid { grid-template-columns: 1fr; }
  .faq-side { position: static; }
}

/* Price (dark, minimal) -------------------------------------- */
.tx-price {
  background: var(--ink-2);
  color: var(--cream);
  padding: clamp(80px, 10vw, 130px) 0;
  text-align: center;
}
.tx-price .eyebrow { justify-content: center; }
.tx-price-amount {
  margin-top: 28px;
  font-family: var(--serif);
  font-size: clamp(56px, 8vw, 112px);
  line-height: 1;
  color: var(--cream);
  font-weight: 400;
  letter-spacing: -0.01em;
}
.tx-price-amount .from {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 18px;
  font-weight: 500;
}
.tx-price-amount em {
  font-style: italic;
  color: var(--gold);
  font-weight: 300;
  margin-left: 4px;
}
.tx-price-note {
  margin-top: 28px;
  font-size: 14px;
  color: rgba(255, 253, 251, 0.6);
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
.tx-price .btn { margin-top: 40px; }

/* Related treatments (cream) --------------------------------- */
.tx-related { background: var(--cream); }
.related-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: end;
  margin-bottom: 56px;
}
.related-head h2 { margin-top: 22px; }
.related-head .link-under { white-space: nowrap; }
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.rel-card {
  background: #fff;
  border: 1px solid var(--line-light);
  display: flex;
  flex-direction: column;
  transition: border-color .4s, box-shadow .4s, transform .4s;
  text-decoration: none;
  color: inherit;
}
.rel-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(45,42,38,0.08);
}
.rel-img {
  aspect-ratio: 4 / 3;
  background-color: var(--cream-2);
  background-size: cover;
  background-position: center;
  background-image:
    radial-gradient(circle at 30% 40%, rgba(184,160,137,0.22), transparent 55%),
    linear-gradient(135deg, #e6dccf, #c9bda8);
}
.rel-body {
  padding: 24px 26px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.rel-cat {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.rel-title {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--ink);
  line-height: 1.2;
  font-weight: 400;
}
.rel-desc {
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted-2);
  flex: 1;
}
.rel-arrow {
  margin-top: 8px;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: gap .35s;
}
.rel-card:hover .rel-arrow { gap: 18px; }
.rel-arrow svg { width: 11px; }
@media (max-width: 1000px) { .related-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 700px) {
  .related-grid { grid-template-columns: 1fr; }
  .related-head { grid-template-columns: 1fr; gap: 16px; }
}


/* ============================================================
   BLOG  ·  /blog.html
   ============================================================ */

/* Hero override: shorter */
.page-hero.compact {
  min-height: 40vh;
  padding: 140px 0 48px;
  align-items: center;
}
.page-hero.compact .container { text-align: center; }
.page-hero.compact .eyebrow { justify-content: center; }
.page-hero.compact h1 {
  margin-top: 24px;
  font-size: clamp(36px, 5vw, 68px);
  max-width: none;
}
.page-hero.compact .page-hero-bg {
  background-image: url("https://images.unsplash.com/photo-1517824806704-9040b037703b?q=80&w=2400&auto=format&fit=crop");
}

/* Featured article (full-width horizontal card) ----------- */
.blog-featured { background: var(--cream); padding: clamp(80px, 10vw, 130px) 0 clamp(40px, 5vw, 60px); }

.blog-featured-row {
  text-align: center;
  margin-bottom: 56px;
}
.blog-featured-row .eyebrow { justify-content: center; }

.feat-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #fff;
  border: 1px solid var(--line-light);
  transition: border-color .4s, box-shadow .4s, transform .4s;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}
.feat-card:hover {
  border-color: var(--gold);
  box-shadow: 0 24px 60px rgba(45,42,38,0.1);
}
.feat-card::before {
  /* top accent line, animates on hover */
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width .9s cubic-bezier(.2,.7,.2,1);
  z-index: 3;
}
.feat-card:hover::before { width: 100%; }

.feat-img {
  position: relative;
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  background-image:
    radial-gradient(circle at 30% 40%, rgba(184,160,137,0.25), transparent 55%),
    linear-gradient(135deg, #e6dccf, #beac95);
  overflow: hidden;
}
.feat-img-inner {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 1.1s cubic-bezier(.2,.7,.2,1);
}
.feat-card:hover .feat-img-inner { transform: scale(1.04); }
.feat-badge {
  position: absolute;
  top: 20px; left: 20px;
  background: var(--cream);
  color: var(--ink);
  padding: 8px 14px;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 500;
  z-index: 2;
}
.feat-badge::before {
  content: "";
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: middle;
}
.feat-body {
  padding: clamp(36px, 5vw, 64px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
}
.feat-cat {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.feat-title {
  font-family: var(--serif);
  font-size: clamp(30px, 3.5vw, 48px);
  line-height: 1.1;
  color: var(--ink);
  font-weight: 400;
  letter-spacing: -0.005em;
}
.feat-title em { font-style: italic; color: var(--gold); font-weight: 300; }
.feat-excerpt {
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted-2);
  max-width: 480px;
}
.feat-meta {
  display: flex;
  gap: 18px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  padding-top: 18px;
  border-top: 1px solid var(--gold-line);
  align-items: center;
}
.feat-meta .dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold);
}
.feat-link {
  margin-top: 8px;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--gold);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 6px;
  position: relative;
  align-self: flex-start;
  transition: gap .35s;
}
.feat-link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--gold);
  transform-origin: left;
  transform: scaleX(0.3);
  transition: transform .5s cubic-bezier(.2,.7,.2,1);
}
.feat-card:hover .feat-link { gap: 20px; }
.feat-card:hover .feat-link::after { transform: scaleX(1); }
.feat-link svg { width: 14px; }

@media (max-width: 900px) {
  .feat-card { grid-template-columns: 1fr; }
  .feat-img { aspect-ratio: 16 / 10; }
}

/* Recent articles grid (dark) ----------------------------- */
.blog-recent {
  background: var(--ink);
  color: var(--cream);
  padding: clamp(80px, 10vw, 130px) 0;
}
.blog-recent-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 72px;
}
.blog-recent-head h2 { color: var(--cream); margin-top: 22px; }
.blog-recent-head p { max-width: 420px; }
@media (max-width: 900px) {
  .blog-recent-head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 48px; }
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
.post-card {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: transform .45s cubic-bezier(.2,.7,.2,1);
}
.post-card:hover { transform: translateY(-4px); }

.post-img {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background-color: var(--ink-soft);
  background-image:
    radial-gradient(circle at 30% 40%, rgba(184,160,137,0.18), transparent 55%),
    linear-gradient(135deg, #3a342c, #1f1c18);
  background-size: cover;
  background-position: center;
}
.post-img-inner {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 1s cubic-bezier(.2,.7,.2,1);
}
.post-card:hover .post-img-inner { transform: scale(1.06); }
.post-img::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,0.45) 100%);
  opacity: 0;
  transition: opacity .55s;
}
.post-card:hover .post-img::after { opacity: 1; }

.post-body {
  padding-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}
.post-cat {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.post-title {
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.2;
  color: var(--cream);
  font-weight: 400;
  letter-spacing: -0.005em;
  /* max 2 lines */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.post-excerpt {
  font-size: 13.5px;
  line-height: 1.7;
  color: rgba(255, 253, 251, 0.65);
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.post-meta {
  display: flex;
  gap: 14px;
  align-items: center;
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 253, 251, 0.5);
  padding-top: 16px;
  border-top: 1px solid var(--line-dark);
  margin-top: auto;
}
.post-meta .sep {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.blog-all-wrap {
  text-align: center;
  margin-top: 72px;
}

@media (max-width: 1000px) { .posts-grid { grid-template-columns: 1fr 1fr; gap: 28px; } }
@media (max-width: 600px)  { .posts-grid { grid-template-columns: 1fr; } }

/* Categories (cream) -------------------------------------- */
.blog-cats {
  background: var(--cream);
  padding: clamp(60px, 8vw, 100px) 0;
}
.cats-head {
  text-align: center;
  margin-bottom: 48px;
}
.cats-head .eyebrow { justify-content: center; }
.cats-head h2 { margin-top: 22px; font-size: clamp(32px, 3.6vw, 52px); }
.cats-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 880px;
  margin: 0 auto;
}
.cat-pill {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 14px 26px;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--gold);
  cursor: pointer;
  border-radius: 999px;
  text-decoration: none;
  transition: all .45s cubic-bezier(.2,.7,.2,1);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.cat-pill .cat-count {
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0;
  color: var(--gold);
  opacity: 0.8;
  transition: color .35s, opacity .35s;
}
.cat-pill:hover {
  background: var(--gold);
  color: var(--ink);
}
.cat-pill:hover .cat-count { color: var(--ink); opacity: 1; }


/* ============================================================
   SERVICIOS PAGE  ·  /servicios.html
   ============================================================ */

/* Hero override */
.page-hero.services .page-hero-bg {
  background-image: url("https://images.unsplash.com/photo-1540555700478-4be289fbecef?q=80&w=2400&auto=format&fit=crop");
}

/* Stacked category blocks */
.svc-index { background: var(--cream); padding: 0; }

.svc-block {
  padding: clamp(80px, 10vw, 130px) 0;
  border-top: 1px solid var(--gold-line);
}
.svc-block:first-child { border-top: none; }

.svc-block-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 7vw, 110px);
  align-items: center;
}
.svc-block.reversed .svc-block-grid {
  grid-template-areas: "content image";
}
.svc-block:not(.reversed) .svc-block-grid {
  grid-template-areas: "image content";
}
.svc-block-image { grid-area: image; }
.svc-block-content { grid-area: content; }

.svc-block-image {
  position: relative;
  aspect-ratio: 5 / 6;
  background-size: cover;
  background-position: center;
  background-color: var(--cream-2);
  overflow: hidden;
}
.svc-block-image-tag {
  position: absolute;
  left: -16px; top: 30%;
  font-size: 10px;
  letter-spacing: 0.5em;
  color: var(--gold);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  text-transform: uppercase;
}
.svc-block.reversed .svc-block-image-tag {
  left: auto; right: -16px;
  transform: rotate(0);
}

.svc-block-num {
  font-family: var(--serif);
  font-size: clamp(80px, 9vw, 132px);
  line-height: 0.9;
  color: var(--gold);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.svc-block-cat {
  display: inline-block;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 24px;
}
.svc-block-title {
  font-family: var(--serif);
  font-size: clamp(40px, 4.5vw, 64px);
  line-height: 1.02;
  color: var(--ink);
  font-weight: 400;
  letter-spacing: -0.01em;
}
.svc-block-title em { font-style: italic; color: var(--gold); font-weight: 300; }
.svc-block-desc {
  margin-top: 28px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted-2);
  max-width: 520px;
}

.svc-block-list {
  list-style: none;
  margin: 36px 0 0;
  padding: 28px 0 0;
  border-top: 1px solid var(--gold-line);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 28px;
  max-width: 520px;
}
.svc-block-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--serif);
  font-size: 17px;
  color: var(--ink);
  line-height: 1.3;
}
.svc-block-list li::before {
  content: "";
  width: 6px; height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.svc-block-cta {
  margin-top: 44px;
}

@media (max-width: 900px) {
  .svc-block-grid,
  .svc-block.reversed .svc-block-grid {
    grid-template-columns: 1fr;
    grid-template-areas: "image" "content";
    gap: 36px;
  }
  .svc-block-image { aspect-ratio: 4 / 3; }
  .svc-block-image-tag { display: none; }
  .svc-block-list { grid-template-columns: 1fr; }
}

/* "Need help?" closing section -------------------------------- */
.svc-help {
  background: var(--ink);
  color: var(--cream);
  padding: clamp(100px, 12vw, 160px) 0;
  text-align: center;
}
.svc-help .container { position: relative; }
.svc-help::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(184,160,137,0.12), transparent 50%);
  pointer-events: none;
}
.svc-help-content {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  z-index: 1;
}
.svc-help .eyebrow { justify-content: center; }
.svc-help h2 {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.05;
  color: var(--cream);
  margin-top: 26px;
  font-weight: 400;
}
.svc-help h2 em { font-style: italic; color: var(--gold); font-weight: 300; }
.svc-help p {
  margin-top: 26px;
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 253, 251, 0.72);
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
.svc-help .btn { margin-top: 44px; }



/* ============================================================
   ARTICLE PAGE  ·  /articulo-blog.html
   ============================================================ */

/* Article header (cream) -------------------------------------- */
.article-header {
  background: var(--cream);
  padding: clamp(110px, 14vw, 180px) 0 0;
}
.article-header-inner {
  max-width: 1140px;
  margin: 0 auto 0 0;
  padding: 0 var(--pad-x);
}
.article-header .breadcrumb {
  margin-top: 0;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 11px;
}
.article-header .breadcrumb a { color: var(--muted-2); }
.article-header .breadcrumb a:hover { color: var(--gold); }
.article-header .breadcrumb .sep { color: var(--gold); }
.article-header .breadcrumb .here { color: var(--ink); }
.article-cat {
  display: inline-block;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 28px;
  position: relative;
  padding-left: 46px;
}
.article-cat::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 32px; height: 1px;
  background: var(--gold);
  transform: translateY(-50%);
}
.article-title {
  font-family: var(--serif);
  font-size: clamp(38px, 5.5vw, 76px);
  line-height: 1.04;
  color: var(--ink);
  font-weight: 400;
  letter-spacing: -0.012em;
  max-width: 920px;
}
.article-title em { font-style: italic; color: var(--gold); font-weight: 300; }

.article-meta {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--gold-line);
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.article-meta .dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold);
}
.article-meta .author {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.article-meta .author-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--cream-3);
  background-image: url("https://images.unsplash.com/photo-1559839734-2b71ea197ec2?q=80&w=200&auto=format&fit=crop");
  background-size: cover;
  background-position: center top;
}
.article-meta .author-name {
  font-family: var(--serif);
  font-style: italic;
  text-transform: none;
  letter-spacing: 0;
  font-size: 14px;
  color: var(--ink);
}

/* Hero image (full width) */
.article-hero-img {
  position: relative;
  margin-top: clamp(48px, 6vw, 72px);
  aspect-ratio: 21 / 9;
  background-color: var(--cream-2);
  overflow: hidden;
}
.article-hero-img-bg {
  position: absolute;
  left: 0; right: 0;
  top: -25%;
  height: 130%;
  background-image:
    radial-gradient(circle at 30% 40%, rgba(184,160,137,0.22), transparent 55%),
    linear-gradient(135deg, #e6dccf, #beac95);
  background-size: cover;
  background-position: center;
  will-change: transform;
}

/* Article body (cream) ---------------------------------------- */
.article-section {
  background: var(--cream);
  padding: clamp(60px, 8vw, 100px) 0;
}
.article-grid {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: minmax(0, 720px) 280px;
  gap: clamp(48px, 6vw, 90px);
  align-items: start;
}
.article-grid.no-sidebar { grid-template-columns: minmax(0, 800px); justify-content: center; }

.article-body {
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.8;
  color: #333;
}
.article-body > * + * { margin-top: 28px; }
.article-body p { margin: 0; }
.article-body p:first-child::first-letter {
  font-family: var(--serif);
  font-size: 4.5em;
  float: left;
  line-height: 0.95;
  padding: 6px 14px 0 0;
  color: var(--gold);
  font-weight: 400;
}
.article-body h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--ink);
  letter-spacing: -0.005em;
  margin-top: 56px;
  scroll-margin-top: 120px;
}
.article-body h2 em { font-style: italic; color: var(--gold); font-weight: 300; }
.article-body h3 {
  font-family: var(--serif);
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 500;
  line-height: 1.2;
  color: var(--ink);
  margin-top: 36px;
}
.article-body a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color .3s;
}
.article-body a:hover { border-bottom-color: var(--gold); }
.article-body ol,
.article-body ul {
  padding-left: 0;
  margin: 28px 0 0;
  list-style: none;
}
.article-body ol { counter-reset: art-counter; }
.article-body ol li {
  counter-increment: art-counter;
  position: relative;
  padding-left: 56px;
  margin-bottom: 16px;
  line-height: 1.7;
}
.article-body ol li::before {
  content: counter(art-counter, decimal-leading-zero);
  position: absolute;
  left: 0; top: 4px;
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold);
  font-size: 22px;
  letter-spacing: 0.04em;
}
.article-body ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
}
.article-body ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 14px;
  width: 8px; height: 1px;
  background: var(--gold);
}
.article-body blockquote {
  margin: 56px 0;
  padding: 24px 0 24px 36px;
  border-left: 2px solid var(--gold);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.35;
  color: var(--ink);
}
.article-body blockquote footer {
  margin-top: 16px;
  font-family: var(--sans);
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.article-body figure {
  margin: 56px 0;
}
.article-body figure .fig-img {
  aspect-ratio: 16 / 9;
  background-color: var(--cream-2);
  background-image:
    radial-gradient(circle at 30% 50%, rgba(184,160,137,0.2), transparent 55%),
    linear-gradient(135deg, #ede4d7, #c9bda8);
  background-size: cover;
  background-position: center;
}
.article-body figure figcaption {
  margin-top: 14px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--muted);
  text-align: center;
}

/* FAQ inline pairs */
.article-body .qa { margin-top: 24px; padding: 22px 0; border-bottom: 1px solid var(--gold-line); }
.article-body .qa h3 { margin-top: 0; font-size: 19px; font-weight: 500; color: var(--ink); }
.article-body .qa p { margin-top: 10px; font-size: 16px; color: var(--muted-2); line-height: 1.75; }

/* Sidebar ----------------------------------------------------- */
.article-aside { position: sticky; top: 110px; }
.toc-eyebrow {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--gold-line);
}
.toc-list {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
}
.toc-list li {
  position: relative;
  padding: 10px 0;
}
.toc-list a {
  display: block;
  font-family: var(--serif);
  font-size: 16px;
  color: var(--muted-2);
  text-decoration: none;
  line-height: 1.35;
  padding-left: 18px;
  position: relative;
  transition: color .3s;
}
.toc-list a::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 8px; height: 1px;
  background: var(--gold-line);
  transform: translateY(-50%);
  transition: width .35s ease, background .35s ease;
}
.toc-list a:hover { color: var(--ink); }
.toc-list li.active a {
  color: var(--ink);
  font-weight: 500;
}
.toc-list li.active a::before {
  width: 18px;
  background: var(--gold);
}

.aside-card {
  margin-top: 40px;
  padding: 28px 24px 30px;
  background: var(--ink);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.aside-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
}
.aside-card-eyebrow {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 14px;
}
.aside-card-title {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.2;
  color: var(--cream);
  margin-bottom: 20px;
}
.aside-card-title em { font-style: italic; color: var(--gold); font-weight: 300; }
.aside-card .btn {
  padding: 14px 18px;
  font-size: 10px;
  letter-spacing: 0.26em;
  width: 100%;
}

@media (max-width: 1000px) {
  .article-grid { grid-template-columns: 1fr; }
  .article-aside { position: static; max-width: 600px; margin: 0 auto; }
}

/* Related (reuse blog post-card) ------------------------------ */
.article-related {
  background: var(--ink);
  color: var(--cream);
  padding: clamp(80px, 10vw, 120px) 0;
}
.article-related-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 24px;
  margin-bottom: 56px;
}
.article-related-head h2 {
  color: var(--cream);
  margin-top: 22px;
}
@media (max-width: 700px) {
  .article-related-head { grid-template-columns: 1fr; }
}

/* (reuses .posts-grid, .post-card from blog.css) */
