/* ==========================================================================
   By Tina Makeup — rediseño 2026
   Basado en el diseño "By Tina Makeup" (Claude Design)
   ========================================================================== */

:root {
  --color-primary: #C79AA0;
  --color-secondary: #EADFD3;
  --color-accent: #7C2F3B;
  --color-background: #F5EFE8;
  --color-surface: #FBF8F3;
  --color-dark: #1C1613;
  --color-text: #2B2320;
  --color-muted: #9C8B80;
  --color-champagne: #C6A579;

  --ease: cubic-bezier(.22, 1, .36, 1);
  --pad-x: clamp(20px, 5vw, 64px);
  --gap-col: clamp(14px, 1.8vw, 26px);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--color-background);
  color: var(--color-text);
  font-family: 'Jost', sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.is-locked { overflow: hidden; }

a { color: var(--color-accent); text-decoration: none; }
img, video { display: block; max-width: 100%; }
::selection { background: var(--color-primary); color: #fff; }

:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--color-dark);
  color: var(--color-surface);
  padding: 12px 20px;
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.skip-link:focus { left: 12px; top: 12px; }

@keyframes drift {
  0%   { transform: translate3d(0, 0, 0); }
  50%  { transform: translate3d(-2.2%, 1.4%, 0); }
  100% { transform: translate3d(0, 0, 0); }
}

@keyframes stage-in {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}

@keyframes tile-in {
  from { opacity: 0; transform: translateY(24px) scale(.98); }
  to   { opacity: 1; transform: none; }
}

@keyframes service-word-pan {
  from { transform: translate3d(-38%, -50%, 0); }
  to   { transform: translate3d(-62%, -50%, 0); }
}

@keyframes service-word-pan-reverse {
  from { transform: translate3d(-62%, -50%, 0); }
  to   { transform: translate3d(-38%, -50%, 0); }
}

/* --------------------------------------------------------------------------
   Tipografía compartida
   -------------------------------------------------------------------------- */

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin: 0 0 26px;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 34px;
  height: 1px;
  background: var(--color-champagne);
  flex: none;
}
.eyebrow--center {
  display: inline-flex;
  justify-content: center;
}
.eyebrow--center::after {
  content: "";
  display: inline-block;
  width: 34px;
  height: 1px;
  background: var(--color-champagne);
  flex: none;
}
.eyebrow--light { color: var(--color-primary); }
.eyebrow--plain::before { display: none; }

.script {
  font-family: 'Parisienne', cursive;
  font-weight: 400;
  letter-spacing: 0;
}

.watermark {
  position: absolute;
  font-family: 'Parisienne', cursive;
  line-height: .8;
  color: var(--color-primary);
  opacity: .14;
  pointer-events: none;
  white-space: nowrap;
  z-index: 0;
  user-select: none;
}

/* --------------------------------------------------------------------------
   Botones
   -------------------------------------------------------------------------- */

.btn {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: 18px 32px;
  border-radius: 2px;
  border: 0;
  cursor: pointer;
  transition: background .5s var(--ease), transform .5s var(--ease), border-color .5s var(--ease), color .5s var(--ease);
}
.btn--dark {
  background: var(--color-dark);
  color: var(--color-surface);
}
.btn--dark:hover {
  background: var(--color-accent);
  color: var(--color-surface);
  transform: translateY(-2px);
}
.btn--light {
  background: var(--color-surface);
  color: var(--color-dark);
}
.btn--light:hover {
  background: var(--color-primary);
  color: var(--color-dark);
  transform: translateY(-2px);
}
.btn--ghost {
  background: transparent;
  color: var(--color-text);
  border: 1px solid rgba(43, 35, 32, .28);
  padding: 18px 30px;
}
.btn--ghost:hover {
  border-color: var(--color-accent);
  background: rgba(124, 47, 59, .05);
  color: var(--color-text);
}
.btn--outline-light {
  background: transparent;
  color: var(--color-surface);
  border: 1px solid rgba(251, 248, 243, .3);
  padding: 19px 32px;
}
.btn--outline-light:hover {
  border-color: var(--color-primary);
  color: var(--color-surface);
}
.btn--lg { padding: 19px 36px; }

.link-underline {
  display: inline-block;
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--color-text);
  border-bottom: 1px solid var(--color-accent);
  padding-bottom: 6px;
  transition: letter-spacing .4s var(--ease);
}
.link-underline:hover { letter-spacing: .22em; color: var(--color-text); }

.circle-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid rgba(251, 248, 243, .28);
  color: var(--color-surface);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  transition: background .4s var(--ease), border-color .4s var(--ease);
}
.circle-btn:hover {
  background: rgba(251, 248, 243, .1);
  border-color: var(--color-champagne);
}
.circle-btn--dark {
  width: 48px;
  height: 48px;
  font-size: 18px;
  border-color: rgba(43, 35, 32, .22);
  color: var(--color-text);
}
.circle-btn--dark:hover {
  background: rgba(124, 47, 59, .06);
  border-color: var(--color-accent);
}

/* --------------------------------------------------------------------------
   Navegación
   -------------------------------------------------------------------------- */

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px var(--pad-x);
  background: transparent;
  transition: background .5s var(--ease), box-shadow .5s var(--ease), padding .5s var(--ease);
}
.site-nav.is-scrolled {
  background: rgba(245, 239, 232, .92);
  box-shadow: 0 1px 0 rgba(43, 35, 32, .08);
  padding: 12px var(--pad-x);
  backdrop-filter: blur(10px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 13px;
}
.brand__isotype { height: 52px; width: auto; transition: height .5s var(--ease); }
.brand__wordmark { height: 30px; width: auto; transition: height .5s var(--ease); }
.site-nav.is-scrolled .brand__isotype { height: 42px; }
.site-nav.is-scrolled .brand__wordmark { height: 25px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 40px);
}
.nav-links a {
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--color-text);
  padding-bottom: 2px;
  background-image: linear-gradient(var(--color-accent), var(--color-accent));
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 0% 1px;
  transition: background-size .4s var(--ease);
}
.nav-links a:hover { background-size: 100% 1px; }
.nav-links .btn {
  font-size: 11px;
  padding: 12px 22px;
  background-image: none;
}
.nav-links .btn--dark,
.mobile-menu .btn--dark { color: var(--color-surface); }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 8px;
}
.burger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--color-text);
}
.burger span:last-child { width: 16px; }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 85;
  background: var(--color-background);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 34px;
}
.mobile-menu[hidden] { display: none; }
.mobile-menu a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  color: var(--color-text);
}
.mobile-menu .btn {
  margin-top: 10px;
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  padding: 15px 30px;
}
.mobile-menu__close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: transparent;
  border: 0;
  font-size: 30px;
  line-height: 1;
  color: var(--color-text);
  cursor: pointer;
  font-family: 'Cormorant Garamond', serif;
}

/* --------------------------------------------------------------------------
   Marcos de imagen
   -------------------------------------------------------------------------- */

.frame {
  position: relative;
  border: 1px solid var(--color-champagne);
  padding: 10px;
  background: var(--color-surface);
}
.frame__media {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: var(--color-secondary);
}
.frame__media img,
.frame__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.frame__caption {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(43, 35, 32, .72);
  background: rgba(251, 248, 243, .86);
  padding: 8px 14px;
  border-radius: 2px;
  white-space: nowrap;
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  min-height: 100svh;
  padding: clamp(110px, 14vh, 160px) var(--pad-x) clamp(48px, 8vh, 90px);
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
  overflow: hidden;
}
.hero__watermark {
  top: 6%;
  right: -4%;
  font-size: clamp(180px, 34vw, 460px);
  animation: drift 26s ease-in-out infinite;
}
.hero__copy {
  position: relative;
  z-index: 2;
  max-width: 640px;
}
.hero__role {
  font-size: 12px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin: 0 0 18px;
}
.hero__title {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(52px, 8.5vw, 116px);
  line-height: .94;
  letter-spacing: -.01em;
  color: var(--color-text);
}
.hero__title .script {
  display: block;
  font-size: clamp(58px, 9.2vw, 128px);
  color: var(--color-accent);
}
.hero__tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(20px, 2.4vw, 27px);
  color: var(--color-text);
  margin: 30px 0 16px;
}
.hero__lead {
  max-width: 440px;
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.7;
  color: var(--color-muted);
  margin: 0 0 38px;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
.hero__visual {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero__portrait {
  position: relative;
  width: min(100%, 460px);
}
.hero__portrait .frame {
  aspect-ratio: 3 / 4;
  border-radius: 280px 280px 14px 14px;
}
.hero__portrait .frame__media { border-radius: 270px 270px 8px 8px; }
.hero__badge {
  position: absolute;
  bottom: -18px;
  left: -26px;
  background: var(--color-surface);
  border: 1px solid var(--color-champagne);
  padding: 14px 24px 16px;
  box-shadow: 0 26px 46px -30px rgba(43, 35, 32, .55);
  text-align: left;
}
.hero__badge strong {
  display: block;
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--color-muted);
}
.hero__badge span {
  display: block;
  font-family: 'Parisienne', cursive;
  font-size: 34px;
  line-height: 1;
  color: var(--color-accent);
  margin-top: 4px;
}

/* --------------------------------------------------------------------------
   La artista
   -------------------------------------------------------------------------- */

.artist {
  position: relative;
  background: var(--color-surface);
  padding: clamp(80px, 12vh, 150px) var(--pad-x);
  overflow: hidden;
}
.artist__watermark {
  bottom: -6%;
  left: -3%;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(150px, 26vw, 360px);
  opacity: .1;
}
.artist__grid {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
.artist__visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.artist__stack {
  position: relative;
  width: min(100%, 440px);
}
.artist__stack > .frame {
  aspect-ratio: 4 / 5;
  background: var(--color-background);
}
.artist__plate {
  position: absolute;
  bottom: 26px;
  left: -26px;
  background: var(--color-surface);
  border: 1px solid var(--color-champagne);
  padding: 16px 30px 18px;
  box-shadow: 0 26px 46px -30px rgba(43, 35, 32, .55);
}
.artist__plate strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(30px, 4vw, 40px);
  line-height: .86;
  color: var(--color-text);
}
.artist__plate span {
  display: block;
  font-family: 'Parisienne', cursive;
  font-size: clamp(38px, 5vw, 50px);
  line-height: .72;
  color: var(--color-champagne);
  margin-top: 3px;
}
.artist__accent {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 120px;
  aspect-ratio: 3 / 4;
  border: 1px solid var(--color-champagne);
  padding: 7px;
  background: var(--color-background);
  border-radius: 120px 120px 6px 6px;
  box-shadow: 0 20px 40px -28px rgba(43, 35, 32, .5);
}
.artist__accent .frame__media { border-radius: 113px 113px 3px 3px; }

.artist__content { max-width: 560px; }
.artist__title {
  margin: 0 0 30px;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(42px, 6vw, 84px);
  line-height: .98;
  letter-spacing: -.01em;
  color: var(--color-text);
}
.artist__title .script {
  display: block;
  color: var(--color-accent);
  font-size: clamp(52px, 7vw, 100px);
}
.artist__content p {
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.75;
  color: var(--color-text);
  margin: 0 0 20px;
}
.artist__content p.is-muted { color: var(--color-muted); margin-bottom: 28px; }
.artist__quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(21px, 2.5vw, 30px);
  line-height: 1.3;
  color: var(--color-text);
  border-left: 2px solid var(--color-champagne);
  padding-left: 22px;
  margin: 0 0 36px;
}

/* --------------------------------------------------------------------------
   Servicios
   -------------------------------------------------------------------------- */

.services {
  position: relative;
  background: var(--color-dark);
  color: var(--color-surface);
  padding: clamp(80px, 12vh, 150px) var(--pad-x);
  overflow: hidden;
}
.services__watermark {
  top: 50%;
  left: 50%;
  right: auto;
  width: max-content;
  font-size: clamp(180px, 29vw, 420px);
  color: #fff;
  opacity: .05;
  animation: service-word-pan 18s linear infinite alternate;
}
.services__watermark--reverse {
  top: 22%;
  opacity: .035;
  animation-name: service-word-pan-reverse;
}
.services__watermark--lower {
  top: 78%;
  opacity: .03;
  animation-name: service-word-pan-reverse;
  animation-duration: 21s;
}
.services__inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}
.services__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  max-width: 820px;
  margin: 0 auto clamp(50px, 7vh, 90px);
}
.services__title {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(40px, 5.6vw, 80px);
  line-height: .98;
  color: var(--color-surface);
}
.services__title .script {
  display: block;
  color: var(--color-primary);
  font-size: clamp(48px, 6.4vw, 92px);
}
.services__intro {
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.75;
  color: rgba(251, 248, 243, .68);
  margin: 0;
  max-width: 540px;
  text-align: center;
}

.services__bar {
  display: flex;
  align-items: center;
  margin-bottom: clamp(14px, 2vh, 26px);
}
.services__counter {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 2.6vw, 34px);
  color: var(--color-primary);
  line-height: 1;
}
.services__counter small {
  color: rgba(251, 248, 243, .35);
  font-size: .62em;
  letter-spacing: .05em;
}
.services__stage { position: relative; }
.services__stage.is-animating { animation: stage-in .66s var(--ease); }
.services__portal-stage {
  position: relative;
  touch-action: pan-y;
}
.services__service-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vw, 32px);
  margin-top: clamp(10px, 2vh, 20px);
}
.service-nav {
  flex: none;
  background: rgba(28, 22, 19, .94);
  border-color: rgba(198, 165, 121, .88);
  box-shadow: 0 14px 32px -18px rgba(0, 0, 0, .9);
}
.services__swipe-hint {
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(251, 248, 243, .48);
}

.portal {
  position: relative;
  display: block;
  width: 100%;
  height: clamp(320px, 52vh, 520px);
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
}
.portal__ghost {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(94vw, 860px);
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(34px, 8vw, 104px);
  line-height: .92;
  letter-spacing: -.01em;
  color: rgba(251, 248, 243, .9);
  z-index: 1;
  pointer-events: none;
}
.portal__window {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: clamp(220px, 32vw, 360px);
  height: clamp(300px, 46vh, 460px);
  border-radius: 74px;
  overflow: hidden;
  z-index: 2;
  box-shadow: 0 46px 90px -44px rgba(0, 0, 0, .75);
  border: 1px solid rgba(198, 165, 121, .5);
}
.portal__window video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.portal__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(28, 22, 19, .34) 0%, rgba(28, 22, 19, .1) 45%, rgba(28, 22, 19, .62) 100%);
}
.portal__label {
  position: absolute;
  bottom: 18px;
  left: 0;
  right: 0;
  text-align: center;
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(251, 248, 243, .82);
  z-index: 3;
}
.portal__reveal {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: clamp(220px, 32vw, 360px);
  height: clamp(300px, 46vh, 460px);
  border-radius: 74px;
  overflow: hidden;
  z-index: 3;
  pointer-events: none;
}
.portal__reveal span {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(94vw, 860px);
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(34px, 8vw, 104px);
  line-height: .92;
  letter-spacing: -.01em;
  color: var(--color-champagne);
  text-shadow: 0 2px 24px rgba(28, 22, 19, .55);
}

.services__meta { text-align: center; margin-top: clamp(14px, 2vh, 26px); }
.services__toggle {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(251, 248, 243, .66);
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 6px 4px;
  border-bottom: 1px solid rgba(251, 248, 243, .28);
  transition: color .4s;
}
.services__toggle:hover { color: var(--color-surface); }

.services__detail {
  max-width: 680px;
  margin: clamp(22px, 4vh, 40px) auto 0;
  text-align: center;
  border-top: 1px solid rgba(251, 248, 243, .14);
  padding-top: clamp(22px, 4vh, 36px);
}
.services__detail[hidden] { display: none; }
.services__tag {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--color-dark);
  background: var(--color-champagne);
  padding: 5px 12px;
  border-radius: 2px;
  margin-bottom: 18px;
}
.services__tag[hidden] { display: none; }
.services__desc {
  margin: 0 0 26px;
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.75;
  color: rgba(251, 248, 243, .72);
}
.services__detail .btn { padding: 16px 30px; }

.services__tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(14px, 3vw, 34px);
  margin-top: clamp(32px, 5vh, 56px);
  border-top: 1px solid rgba(251, 248, 243, .14);
  padding-top: clamp(22px, 3vh, 34px);
}
.services__tabs button {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  cursor: pointer;
  background: transparent;
  border: 0;
  border-bottom: 1px solid transparent;
  padding: 8px 4px;
  color: rgba(251, 248, 243, .4);
  transition: color .4s var(--ease), border-color .4s var(--ease);
}
.services__tabs button:hover { color: rgba(251, 248, 243, .75); }
.services__tabs button.is-active {
  color: var(--color-primary);
  border-bottom-color: var(--color-champagne);
}

/* --------------------------------------------------------------------------
   Galería
   -------------------------------------------------------------------------- */

.gallery {
  position: relative;
  background: var(--color-background);
  padding: clamp(80px, 12vh, 150px) var(--pad-x);
  overflow: hidden;
}
.gallery__inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
}
.gallery__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto clamp(38px, 6vh, 64px);
}
.gallery__title {
  margin: 0 0 18px;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(40px, 5.6vw, 78px);
  line-height: .98;
  color: var(--color-text);
}
.gallery__title .script { color: var(--color-accent); }
.gallery__lead {
  font-size: clamp(14px, 1.5vw, 16px);
  line-height: 1.7;
  color: var(--color-muted);
  margin: 0;
}

.gallery__grid {
  display: flex;
  align-items: stretch;
  gap: var(--gap-col);
}
.gallery__col {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: var(--gap-col);
}
/* la última pieza de cada columna estira para cerrar la retícula en línea */
.gallery__col > .tile { flex: 0 0 auto; }
.gallery__col > .tile:last-child { flex: 1 1 auto; }

.tile {
  position: relative;
  display: block;
  width: 100%;
  border: 0;
  padding: 0;
  margin: 0;
  cursor: pointer;
  overflow: hidden;
  background: var(--color-secondary);
  box-shadow: inset 0 0 0 1px var(--color-champagne);
  transition: transform .7s var(--ease), box-shadow .7s var(--ease);
  animation: tile-in .64s var(--ease) backwards;
}
.tile img,
.tile video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 38%;
  border-radius: inherit;
}
.tile video {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .6s var(--ease);
}
.tile.is-playing video { opacity: 1; }
.tile:hover {
  transform: scale(1.03);
  box-shadow: inset 0 0 0 1px var(--color-champagne), 0 24px 44px -30px rgba(43, 35, 32, .55);
}

.tile--arch   { border-radius: 999px 999px 14px 14px; }
.tile--circle { border-radius: 50%; }
.tile--oval   { border-radius: 50% / 46%; }
.tile--tall   { border-radius: 180px; }
.tile--rect   { border-radius: 10px; }

.tile__label {
  position: absolute;
  bottom: 16px;
  left: 0;
  right: 0;
  text-align: center;
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(251, 248, 243, .92);
  text-shadow: 0 1px 12px rgba(28, 22, 19, .8);
  z-index: 2;
  padding: 0 14px;
}
.tile__veil {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  justify-content: center;
  background: rgba(28, 22, 19, .42);
  opacity: 0;
  transition: opacity .5s var(--ease);
  border-radius: inherit;
  z-index: 2;
}
.tile:hover .tile__veil,
.tile:focus-visible .tile__veil { opacity: 1; }
.tile__veil em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 22px;
  color: #fff;
}
.gallery__pager {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-top: clamp(34px, 5vh, 54px);
}
.gallery__page-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--color-text);
  letter-spacing: .05em;
}

/* --------------------------------------------------------------------------
   Lightbox
   -------------------------------------------------------------------------- */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(20, 15, 13, .94);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(20px, 5vw, 70px);
  backdrop-filter: blur(4px);
}
.lightbox[hidden] { display: none; }
.lightbox__close {
  position: absolute;
  top: 22px;
  right: 26px;
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 38px;
  line-height: 1;
  cursor: pointer;
  font-family: 'Cormorant Garamond', serif;
  z-index: 3;
}
.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .4);
  color: #fff;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  z-index: 3;
  transition: background .4s;
}
.lightbox__nav:hover { background: rgba(255, 255, 255, .14); }
.lightbox__nav--prev { left: clamp(14px, 3vw, 44px); }
.lightbox__nav--next { right: clamp(14px, 3vw, 44px); }

.lightbox__panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: center;
  max-width: min(94vw, 1080px);
  width: 100%;
}
.lightbox__media {
  position: relative;
  height: min(78svh, 760px);
  aspect-ratio: 3 / 4;
  width: auto;
  max-width: 100%;
  margin: 0 auto;
  padding: clamp(4px, .55vw, 8px);
  overflow: hidden;
  border: 1px solid rgba(198, 165, 121, .72);
  background: linear-gradient(135deg, rgba(198, 165, 121, .30), rgba(251, 248, 243, .06));
  box-shadow: 0 0 0 5px rgba(198, 165, 121, .10), 0 40px 80px -40px rgba(0, 0, 0, .8);
}
.lightbox__media::after {
  content: "";
  position: absolute;
  inset: 3px;
  border: 1px solid rgba(251, 248, 243, .22);
  pointer-events: none;
  z-index: 1;
}
.lightbox__media img,
.lightbox__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lightbox__media video { background: #000; object-fit: contain; }
.lightbox__info { color: var(--color-surface); }
.lightbox__eyebrow {
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin: 0 0 16px;
}
.lightbox__title {
  margin: 0 0 18px;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1;
  color: var(--color-surface);
}
.lightbox__desc {
  margin: 0 0 28px;
  font-size: clamp(14px, 1.5vw, 16px);
  line-height: 1.75;
  color: rgba(251, 248, 243, .72);
}
.lightbox__counter {
  margin: 22px 0 0;
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .5);
}

/* --------------------------------------------------------------------------
   CTA final + footer
   -------------------------------------------------------------------------- */

.cta {
  position: relative;
  background: var(--color-dark);
  color: var(--color-surface);
  padding: clamp(90px, 15vh, 180px) var(--pad-x);
  text-align: center;
  overflow: hidden;
}
.cta__watermark {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(160px, 30vw, 440px);
  color: #fff;
  opacity: .05;
}
.cta__inner {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin: 0 auto;
}
.cta__eyebrow {
  font-size: 11px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin: 0 0 26px;
}
.cta__title {
  margin: 0 0 28px;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(44px, 7vw, 104px);
  line-height: .98;
  color: var(--color-surface);
}
.cta__title .script {
  display: block;
  color: var(--color-primary);
  font-size: clamp(52px, 8vw, 120px);
}
.cta__lead {
  font-size: clamp(15px, 1.7vw, 18px);
  line-height: 1.75;
  color: rgba(251, 248, 243, .68);
  margin: 0 auto 42px;
  max-width: 520px;
}
.cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  align-items: center;
}

.site-footer {
  background: var(--color-dark);
  color: rgba(251, 248, 243, .6);
  border-top: 1px solid rgba(251, 248, 243, .12);
  padding: 44px var(--pad-x);
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
}
.site-footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 15px;
}
.site-footer__brand img:first-child { height: 50px; width: auto; }
.site-footer__brand img:last-child { height: 28px; width: auto; }
.site-footer p {
  margin: 0;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.site-footer p.is-legal { letter-spacing: .06em; }

.whatsapp-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 80;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 30px -12px rgba(28, 22, 19, .6);
  transition: transform .4s var(--ease);
}
.whatsapp-fab:hover { transform: translateY(-3px) scale(1.04); color: #fff; }

/* --------------------------------------------------------------------------
   Reveal
   -------------------------------------------------------------------------- */

.js [data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.js [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 1024px) {
  .lightbox__panel { grid-template-columns: 1fr; max-width: min(90vw, 560px); }
  .lightbox__media { height: min(48svh, 420px); }
  .lightbox__info { text-align: center; }
  .lightbox__desc { margin-bottom: 22px; }
}

@media (max-width: 860px) {
  .nav-links { display: none; }
  .burger { display: flex; }
  .hero { grid-template-columns: 1fr; }
  .hero__visual { order: -1; }
  .hero__portrait { width: min(100%, 320px); }
  .hero__badge { left: -12px; bottom: -14px; padding: 12px 18px 14px; }
  .artist__grid { grid-template-columns: 1fr; }
  .artist__stack { width: min(100%, 340px); }
  .artist__accent { width: 92px; top: -20px; right: -12px; }
  .artist__plate { left: -12px; padding: 13px 22px 15px; }
  .services__head { grid-template-columns: 1fr; align-items: start; }
  .brand__isotype { height: 42px; }
  .brand__wordmark { height: 24px; }
  .site-footer { justify-content: center; text-align: center; }
}

@media (max-width: 620px) {
  .hero { padding-top: clamp(96px, 12vh, 130px); gap: 28px; }
  .hero__portrait { width: min(74%, 270px); }
  .hero__badge { padding: 10px 16px 12px; }
  .hero__badge strong { font-size: 10px; letter-spacing: .14em; }
  .hero__badge span { font-size: 28px; }
  .gallery__col { max-width: 420px; margin: 0 auto; }
  .portal__ghost { font-size: clamp(30px, 11vw, 60px); }
  .portal__reveal span { font-size: clamp(30px, 11vw, 60px); }
  .lightbox__nav { width: 44px; height: 44px; }
  .lightbox__nav--prev { left: 8px; }
  .lightbox__nav--next { right: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .js [data-reveal] { opacity: 1; transform: none; }
}
