:root {
  /* Paleta de colores adaptada al flyer */
  --bg: #fdfdfd; /* Fondo más blanco */
  --bg-soft: #fbfbfb;
  --panel: #ffffff;
  --panel-2: #fefeff;
  --text: #333333; /* Texto principal más oscuro */
  --muted: #666666;
  --muted-2: #999999;
  --line: rgba(176, 28, 122, 0.16); /* Líneas en tono magenta suave */
  --line-soft: rgba(51, 51, 51, 0.08);
  
  /* Color principal de acento: Magenta del flyer */
  --main-pink: #b01c7a;
  --pink-deep: #8c1661;
  --pink-soft: #d36ea8;
  --sand: #e8e2d6; /* Mantenemos para fondos suaves si se necesita */
  --shadow: 0 20px 60px rgba(52, 63, 55, 0.08);
  --radius: 28px;
  --radius-sm: 18px;
  --max: 1280px;
  --header-h: 84px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

img,
picture,
video,
canvas,
svg,
iframe {
  max-width: 100%;
  display: block;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  min-height: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  background:
    radial-gradient(circle at top left, rgba(176, 28, 122, 0.08), transparent 32%),
    radial-gradient(circle at 85% 14%, rgba(211, 110, 168, 0.06), transparent 28%),
    linear-gradient(180deg, #fefeff 0%, #f9f9f9 100%);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
  padding-bottom: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(to bottom, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0)),
    linear-gradient(to right, rgba(176, 28, 122, 0.02), rgba(255, 255, 255, 0));
  mix-blend-mode: soft-light;
  opacity: .55;
  z-index: 1;
}

.page-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .02;
  z-index: 2;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140' viewBox='0 0 140 140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

.cursor-glow {
  position: fixed;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 3;
  background: radial-gradient(circle, rgba(176, 28, 122, 0.15) 0%, rgba(176, 28, 122, 0.06) 35%, rgba(176, 28, 122, 0) 70%);
  filter: blur(14px);
  transition: transform .08s linear;
  mix-blend-mode: multiply;
}

a {
  color: inherit;
  text-decoration: none;
}

.frame {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  position: relative;
  z-index: 5;
}

.mono {
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.82);
  border-bottom: .5px solid rgba(176, 28, 122, 0.08);
}

.site-header .frame {
  min-height: var(--header-h);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
}

.brand-logo {
  height: 60px; /* Ajusta la altura del logo según tus necesidades */
  width: auto;
  object-fit: contain;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.main-nav a {
  font-size: .84rem;
  color: var(--muted);
  position: relative;
  transition: color .25s ease, transform .25s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 1px;
  background: var(--main-pink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .28s ease;
}

.main-nav a:hover {
  color: var(--text);
  transform: translateY(-1px);
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

.header-cta {
  min-width: 128px;
  padding: 14px 18px;
  border: .5px solid rgba(176, 28, 122, 0.2);
  border-radius: 999px;
  text-align: center;
  font-size: .84rem;
  color: var(--text);
  background: rgba(255, 255, 255, 0.65);
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}

.header-cta:hover {
  transform: translateY(-1px) scale(1.02);
  background: rgba(176, 28, 122, 0.1);
  border-color: rgba(176, 28, 122, 0.45);
}

.hero {
  position: relative;
  padding: 60px 0 80px;
  min-height: calc(100svh - var(--header-h));
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: 48px;
  align-items: end;
}

.hero-copy {
  padding: 40px 0 20px;
}

.eyebrow,
.section-kicker {
  font-size: .76rem;
  color: var(--pink-deep);
  margin-bottom: 18px;
}

.hero-copy h1,
.manifesto-block h2,
.section-head h2,
.gallery-intro h2,
.experience-copy h2,
.location-copy h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: .95;
  letter-spacing: -.03em;
  text-wrap: balance;
}

.hero-copy h1 {
  font-size: clamp(3.4rem, 8vw, 6.5rem);
  max-width: 760px;
}

.hero-copy h1 span {
  color: var(--pink-deep);
  display: block;
}

.hero-text {
  max-width: 610px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 1.03rem;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 600;
  border: .5px solid transparent;
  transition:
    transform .28s ease,
    background .28s ease,
    border-color .28s ease,
    box-shadow .28s ease,
    letter-spacing .28s ease;
}

.btn:hover {
  transform: translateY(-2px) scale(1.025);
  letter-spacing: .01em;
}

.btn-primary {
  background: linear-gradient(180deg, rgba(176, 28, 122, 1), rgba(140, 22, 97, 1));
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(176, 28, 122, 0.18);
}

.btn-primary:hover {
  box-shadow: 0 16px 40px rgba(176, 28, 122, 0.22);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.65);
  color: var(--text);
  border-color: rgba(176, 28, 122, 0.2);
}

.btn-secondary:hover {
  background: rgba(176, 28, 122, 0.08);
  border-color: rgba(176, 28, 122, 0.38);
}

.hero-meta {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  color: var(--muted-2);
  font-size: .72rem;
}

.hero-visual {
  position: relative;
  padding: 30px 0 0 40px;
}

.tall-card {
  position: relative;
  min-height: 650px;
  border-radius: 34px;
  overflow: hidden;
  border: .5px solid rgba(176, 28, 122, 0.12);
  background: #fff;
  box-shadow: var(--shadow);
}

.tall-card::before,
.art-shot::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(33, 45, 38, 0.04), rgba(176, 28, 122, 0.06)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
  opacity: .18;
  transition: opacity .38s ease;
}

.tall-card:hover::before,
.art-shot:hover::before {
  opacity: .10;
}

.tall-card img {
  width: 100%;
  height: 650px;
  object-fit: cover;
  filter: saturate(.92) contrast(1.02) brightness(.98);
  transition: transform .6s ease, filter .45s ease;
}

.tall-card:hover img {
  transform: scale(1.03);
  filter: saturate(1) contrast(1.04) brightness(1);
}

.tall-card figcaption {
  position: absolute;
  left: 20px;
  bottom: 18px;
  z-index: 3;
  font-size: .72rem;
  color: #ffffff;
  padding: 10px 12px;
  border: .5px solid rgba(255, 255, 255, 0.24);
  background: rgba(140, 22, 97, 0.36);
  backdrop-filter: blur(8px);
  border-radius: 999px;
}

.floating-note {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  display: grid;
  gap: 8px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.88);
  border: .5px solid rgba(176, 28, 122, 0.16);
  border-radius: 20px;
  box-shadow: var(--shadow);
  color: var(--pink-deep);
  font-size: .7rem;
  text-align: center;
  min-width: 220px;
}

.floating-note-mobile {
  display: none;
}

.hero-mobile-brand {
  display: none;
}

.floating-note-desktop {
  display: grid;
}

.section-divider {
  border-top: .5px solid rgba(176, 28, 122, 0.1);
}

.manifesto-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 60px;
  align-items: start;
}

.offset-top {
  padding-top: 26px;
}

.manifesto-block h2 {
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  max-width: 700px;
}

.manifesto-block h2 span {
  color: var(--pink-deep);
  display: block;
}

.manifesto-text {
  padding-top: 54px;
  max-width: 540px;
  margin-left: auto;
}

.manifesto-text p {
  color: var(--muted);
  font-size: 1.02rem;
}

.manifesto-text p + p {
  margin-top: 18px;
}


.testimonials-head {
  margin-bottom: 44px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.testimonial-card {
  position: relative;
  min-height: 320px;
  padding: 30px 28px 26px;
  border-radius: 26px;
  border: .5px solid rgba(176, 28, 122, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.9));
  box-shadow: 0 14px 34px rgba(176, 28, 122, 0.04);
  overflow: hidden;
  transition: transform .32s ease, border-color .32s ease, box-shadow .32s ease, background .32s ease;
  display: flex;
  flex-direction: column;
}

.testimonial-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(176, 28, 122, 0.4), transparent);
  opacity: .6;
}

.testimonial-card:hover {
  transform: translateY(-4px) scale(1.01);
  border-color: rgba(176, 28, 122, 0.24);
  box-shadow: 0 20px 40px rgba(176, 28, 122, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.94));
}

.testimonial-card.featured {
  background:
    radial-gradient(circle at top right, rgba(176, 28, 122, 0.08), transparent 45%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.9));
}

.testimonial-mark {
  font-family: 'Playfair Display', serif;
  font-size: 4.2rem;
  line-height: .8;
  color: var(--pink-deep);
  margin-bottom: 18px;
  display: inline-block;
}

.testimonial-card p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 26px;
  max-width: 30ch;
}

.testimonial-meta {
  margin-top: auto;
  padding-top: 18px;
  border-top: .5px solid rgba(176, 28, 122, 0.1);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.testimonial-meta strong {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--text);
  font-weight: 700;
}

.testimonial-meta span {
  color: var(--muted-2);
  font-size: .72rem;
}

.testimonials-note {
  margin-top: 26px;
  color: var(--muted-2);
  font-size: .72rem;
}

/* responsive */
@media (max-width: 1180px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
 
  .testimonial-card {
    min-height: auto;
    padding: 24px 22px;
  }

  .testimonial-card p {
    max-width: none;
  }
}

.split-head {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 30px;
  align-items: end;
  margin-bottom: 44px;
}

.section-head h2,
.gallery-intro h2,
.experience-copy h2,
.location-copy h2 {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  max-width: 760px;
}

.section-side-copy {
  color: var(--muted-2);
  font-size: .74rem;
  line-height: 1.8;
  justify-self: end;
  max-width: 280px;
}

.services-layout {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.service-panel {
  position: relative;
  min-height: 380px; /* Un poco más de altura para la lista */
  height: 100%;
  padding: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.9));
  border: .5px solid rgba(176, 28, 122, 0.12);
  border-radius: 26px;
  overflow: hidden;
  transition: transform .32s ease, border-color .32s ease, background .32s ease, box-shadow .32s ease;
  display: flex;
  flex-direction: column;
  box-shadow: 0 14px 34px rgba(176, 28, 122, 0.04);
}

.service-panel::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(176, 28, 122, 0.4), transparent);
  opacity: .6;
}

.service-panel:hover {
  transform: translateY(-4px) scale(1.01);
  border-color: rgba(176, 28, 122, 0.25);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.94));
  box-shadow: 0 20px 40px rgba(176, 28, 122, 0.08);
}

.service-panel.accent {
  background:
    radial-gradient(circle at top right, rgba(176, 28, 122, 0.08), transparent 45%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.9));
}

.service-index {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--pink-deep);
  font-size: .78rem;
}

.service-panel h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 18px;
}

.service-panel p {
  color: var(--muted);
  max-width: 32ch;
  margin-bottom: 18px;
}

.service-footer {
  margin-top: auto;
  padding-top: 24px;
  display: flex;
  flex-direction: column; /* Cambiado a columna para la lista */
  align-items: flex-start;
  gap: 12px;
}

.service-footer span {
  color: var(--muted-2);
  font-size: .76rem;
}

.service-footer ul {
  list-style: none;
  font-size: 1rem;
  color: var(--pink-deep);
  font-weight: 600;
}

.service-footer li {
  position: relative;
  padding-left: 14px;
}

.service-footer li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--pink-soft);
}

.service-note {
  margin-top: 26px;
  color: var(--muted-2);
  font-size: .72rem;
}

.gallery {
  padding: 110px 0;
}

.gallery-intro {
  max-width: 760px;
  margin-bottom: 42px;
}

.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.art-shot {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  border: .5px solid rgba(176, 28, 122, 0.12);
  background: #fff;
  min-height: 340px;
  height: 340px;
  box-shadow: var(--shadow);
}

.art-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.94) contrast(1.02) brightness(.98);
  transition: transform .65s ease, filter .45s ease;
}

.art-shot:hover img {
  transform: scale(1.04);
  filter: saturate(1) contrast(1.04) brightness(1);
}

.art-shot.large,
.art-shot.portrait,
.art-shot.wide {
  min-height: 340px;
  height: 340px;
  grid-row: auto;
}

.art-shot figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  z-index: 3;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(140, 22, 97, 0.36);
  border: .5px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
}

.art-shot figcaption span {
  font-size: .68rem;
  color: #f7f3eb; /* Mantenemos el color claro para contraste */
}

.art-shot figcaption strong {
  font-size: 1rem;
  color: #ffffff;
  text-align: right;
}

.gallery-cta-box {
  margin-top: 24px;
  padding: 22px 24px;
  border-radius: 24px;
  border: .5px solid rgba(176, 28, 122, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.94));
  box-shadow: 0 12px 28px rgba(176, 28, 122, 0.04);
}

.gallery-cta-box .mono {
  color: var(--pink-deep);
  font-size: .72rem;
  margin-bottom: 6px;
}

.gallery-cta-box h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}


.location-grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 24px;
  align-items: stretch;
}

.location-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 8px 0;
}

.location-data {
  margin-top: 28px;
  display: grid;
  gap: 14px;
}

.location-data p {
  color: var(--muted);
  max-width: 48ch;
}

.location-data span {
  color: var(--pink-deep);
  margin-right: 10px;
}

.location-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.map-shell {
  min-height: 520px;
  overflow: hidden;
  border-radius: 30px;
  border: .5px solid rgba(176, 28, 122, 0.12);
  box-shadow: var(--shadow);
  position: relative;
}

.map-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(176, 28, 122, 0.08)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.88' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='.4'/%3E%3C/svg%3E");
  opacity: .18;
}

.map-shell iframe {
  width: 100%;
  height: 100%;
  filter: saturate(.8) contrast(1.02) brightness(.98);
}

.site-footer {
  padding: 40px 0 50px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .8fr .8fr .8fr;
  gap: 28px;
  align-items: start;
}

.footer-logo {
  height: 80px; /* Logo más grande en footer */
  width: auto;
  object-fit: contain;
  margin-bottom: 14px;
}

.footer-brand h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 14px;
  color: var(--text);
}

.footer-brand > p:last-child {
  color: var(--muted);
  max-width: 42ch;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-title {
  color: var(--pink-deep);
  font-size: .72rem;
  margin-bottom: 4px;
}

.footer-col span,
.footer-col a {
  color: var(--muted);
  font-size: .95rem;
  transition: color .25s ease, transform .25s ease;
}

.footer-link-icon {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer-link-icon i {
  width: 18px;
  text-align: center;
  font-size: 1rem;
  color: var(--pink-deep);
  transition: transform .25s ease, color .25s ease;
}

.footer-link-icon:hover i {
  transform: scale(1.08);
  color: var(--text);
}

.footer-col a:hover {
  color: var(--text);
  transform: translateX(2px);
}

.footer-bottom {
  margin-top: 28px;
  padding-top: 20px;
  border-top: .5px solid rgba(176, 28, 122, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--muted-2);
  font-size: .72rem;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 92px;
  z-index: 50;
  min-width: 132px;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  border: .5px solid rgba(176, 28, 122, 0.16);
  color: var(--text);
  box-shadow: var(--shadow);
  transition: transform .28s ease, border-color .28s ease, background .28s ease;
}

.floating-whatsapp::before {
  content: "\F61C"; /* bi-whatsapp */
  font-family: 'bootstrap-icons';
  font-size: 1.1rem;
  margin-right: 8px;
  color: #25D366; /* Color WhatsApp real */
}

.floating-whatsapp:hover {
  transform: translateY(-3px) scale(1.02);
  border-color: rgba(176, 28, 122, 0.4);
  background: rgba(176, 28, 122, 0.12);
}

.mobile-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  display: none;
  gap: 12px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  border-top: .5px solid rgba(176, 28, 122, 0.1);
}

.mobile-btn {
  flex: 1;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  border: .5px solid rgba(176, 28, 122, 0.12);
  background: #ffffff;
  color: var(--text);
  font-weight: 600;
}

.mobile-btn.primary {
  background: linear-gradient(180deg, rgba(176, 28, 122, 1), rgba(140, 22, 97, 1));
  color: #ffffff;
  border: none;
}

/* --- Queries de medios de medios (Breakpoints) --- */

@media (max-width: 1180px) {
  .hero-grid,
  .manifesto-grid,
  .experience-grid, /* No está en el HTML actual, pero por seguridad */
  .location-grid,
  .split-head,
  .services-layout {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    padding: 20px 0 0;
    max-width: 720px;
    margin-left: auto;
  }

  .manifesto-text {
    padding-top: 0;
    margin-left: 0;
  }

  .section-side-copy {
    justify-self: start;
    max-width: none;
  }

  .gallery-masonry {
    grid-template-columns: 1fr 1fr;
  }

  .art-shot,
  .art-shot.large,
  .art-shot.portrait,
  .art-shot.wide {
    min-height: 320px;
    height: 320px;
  }

  .map-shell {
    min-height: 420px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 820px) {
  :root {
    --header-h: 72px;
  }

  .cursor-glow {
    display: none;
  }

  .hero,
  .hero .frame,
  .hero-grid,
  .hero-copy {
    max-width: 100%;
    overflow-x: hidden;
  }

  .site-header .frame {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .main-nav {
    display: none;
  }

  .hero {
    padding: 30px 0 70px;
    background: none;
    min-height: auto;
  }

  .hero::before {
    display: none;
  }

  .hero .frame {
    position: relative;
    z-index: 1;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .hero-copy {
    position: relative;
    z-index: 2;
    padding: 12px 0 0;
  }

  .eyebrow,
  .hero-copy h1 {
    text-align: center;
  }

  .hero-text,
  .hero-meta {
    text-align: center;
  }

  .hero-copy h1 {
    font-size: clamp(2.5rem, 10.5vw, 4rem);
    line-height: .98;
    letter-spacing: -.02em;
    margin: 0 auto;
  }

  .hero-text {
    max-width: 32ch;
    margin: 22px auto 0;
    font-size: .98rem;
    line-height: 1.75;
  }

  .hero-mobile-brand {
    display: block;
    width: min(100%, 210px);
    margin: 22px auto 0;
    border-radius: 28px;
    overflow: hidden;
    border: .5px solid rgba(176, 28, 122, 0.16);
    background: #fff;
    box-shadow: var(--shadow);
  }

  .hero-mobile-brand img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
  }

  .hero-actions {
    justify-content: center;
    gap: 12px;
    margin-top: 26px;
  }

  .hero-meta {
    justify-content: center;
    gap: 10px 18px;
    margin-top: 24px;
    font-size: .68rem;
  }

  .hero-meta span {
    display: inline-block;
  }

  .hero-visual {
    display: block;
    order: 3;
    padding: 0;
    max-width: 420px;
    width: 100%;
    margin: 0 auto;
  }

  .tall-card {
    min-height: 340px;
    border-radius: 28px;
  }

  .tall-card img {
    height: 440px;
  }

  .tall-card figcaption {
    left: 14px;
    right: 14px;
    bottom: 14px;
    width: auto;
    text-align: center;
    border-radius: 16px;
  }

  .gallery-masonry {
    grid-template-columns: 1fr;
  }

  .art-shot,
  .art-shot.large,
  .art-shot.portrait,
  .art-shot.wide {
    min-height: 280px;
    height: 280px;
  }

  .gallery-cta-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .floating-whatsapp {
    display: none;
  }

  .floating-note-desktop {
    display: none;
  }

  .floating-note-mobile {
    display: grid;
    position: relative;
    left: auto;
    bottom: auto;
    margin: 18px auto 0;
    width: min(100%, 320px);
    max-width: 100%;
    gap: 6px;
    background: rgba(255, 255, 255, 0.96);
    border: .5px solid rgba(176, 28, 122, 0.24);
    border-radius: 18px;
    padding: 14px 16px;
    box-shadow: var(--shadow);
    text-align: center;
  }

  .mobile-bar {
    display: flex;
  }

  body {
    padding-bottom: 82px;
  }

}

@media (max-width: 560px) {
  .frame {
    width: min(calc(100% - 32px), var(--max));
  }

  .hero-copy {
    padding-top: 10px;
  }

  .hero-text,
  .hero-meta {
    text-align: center;
  }

  .btn,
  .header-cta {
    width: 100%;
  }

  .btn {
    min-height: 54px;
  }

  .hero-actions,
  .location-actions {
    flex-direction: column;
  }

  .service-panel {
    min-height: 300px;
    padding: 22px;
  }

  .floating-note {
    position: relative;
    left: auto;
    bottom: auto;
    margin-top: 14px;
    text-align: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 22px;
    align-items: flex-start;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

.site-header {
  -webkit-backdrop-filter: blur(14px);
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(176, 28, 122, 0.35);
  outline-offset: 3px;
}

.map-block {
  margin-bottom: 2rem;
}

.map-label {
  margin-bottom: .5rem;
}

.map-link {
  margin-top: .5rem;
  display: inline-flex;
}

.location-tabs-shell {
  padding: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.9));
}

.location-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: .5px solid rgba(176, 28, 122, 0.1);
  flex-wrap: wrap;
}

.location-tab {
  appearance: none;
  border: .5px solid rgba(176, 28, 122, 0.14);
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted);
  border-radius: 999px;
  padding: 12px 18px;
  font: inherit;
  font-size: .92rem;
  font-weight: 600;
  cursor: pointer;
  transition:
    transform .25s ease,
    background .25s ease,
    border-color .25s ease,
    color .25s ease,
    box-shadow .25s ease;
}

.location-tab:hover {
  transform: translateY(-1px);
  border-color: rgba(176, 28, 122, 0.28);
  color: var(--text);
  background: rgba(176, 28, 122, 0.06);
}

.location-tab.is-active {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(180deg, rgba(176, 28, 122, 1), rgba(140, 22, 97, 1));
  box-shadow: 0 10px 24px rgba(176, 28, 122, 0.18);
}

.location-panels {
  position: relative;
}

.location-panel {
  animation: fadeLocation .28s ease;
}

.location-panel[hidden] {
  display: none !important;
}

.location-panel iframe {
  width: 100%;
  height: 320px;
  border: 0;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(176, 28, 122, 0.05);
}

.location-panel .map-link {
  margin-top: 14px;
}

@keyframes fadeLocation {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 820px) {
  .location-tabs-shell {
    padding: 14px;
    border-radius: 24px;
  }

  .location-tabs {
    gap: 8px;
    margin-bottom: 14px;
  }

  .location-tab {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .location-panel iframe {
    height: 280px;
    border-radius: 18px;
  }
}

.service-panel {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* imagen */
.service-media {
  margin-top: 20px;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
}

.service-media img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  transition: transform .5s ease, filter .5s ease;
}

/* hover elegante */
.service-panel:hover .service-media img {
  transform: scale(1.05);
  filter: brightness(0.95);
}

/* mobile */
@media (max-width: 820px) {
  .service-media img {
    height: 200px;
  }
}


.first-session-intro {
  max-width: 760px;
  margin-bottom: 36px;
}

.first-session-lead {
  margin-top: 14px;
  max-width: 62ch;
  color: var(--muted);
  line-height: 1.8;
}

.first-session-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.session-card {
  padding: 28px 24px;
  border-radius: 26px;
  border: .5px solid rgba(176, 28, 122, 0.12);
  background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,.9));
  box-shadow: 0 14px 34px rgba(176, 28, 122, 0.04);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.session-card:hover {
  transform: translateY(-4px);
  border-color: rgba(176, 28, 122, 0.22);
  box-shadow: 0 18px 36px rgba(176, 28, 122, 0.08);
}

.session-step {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--pink-deep);
  letter-spacing: .18em;
  font-size: .74rem;
}

.session-card h3 {
  margin-bottom: 12px;
}

.session-card p {
  color: var(--muted);
  line-height: 1.75;
}

.first-session-cta-box {
  margin-top: 28px;
  padding: 24px 28px;
  border-radius: 28px;
  border: .5px solid rgba(176, 28, 122, 0.12);
  background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(255,255,255,.92));
  box-shadow: 0 14px 34px rgba(176, 28, 122, 0.04);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.first-session-cta-box h3 {
  margin: 6px 0 0;
}

@media (max-width: 1100px) {
  .first-session-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
 

  .first-session-grid {
    grid-template-columns: 1fr;
  }

  .first-session-cta-box {
    flex-direction: column;
    align-items: flex-start;
  }
}

.hero-card {
  position: relative;
  overflow: hidden;
}

/* overlay suave para que el texto se lea */
.hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0) 40%,
    rgba(0,0,0,0.45) 100%
  );
  pointer-events: none;
}

/* bio */
.hero-bio {
  position: absolute;
  bottom: 70px;
  left: 20px;
  right: 20px;
  z-index: 2;
  color: #fff;
}

.hero-bio-kicker {
  font-size: .7rem;
  letter-spacing: .2em;
  opacity: .85;
  margin-bottom: 6px;
}

.hero-bio h3 {
  font-size: 1.4rem;
  margin-bottom: 6px;
}

.hero-bio p {
  font-size: .9rem;
  line-height: 1.6;
  opacity: .95;
}

.hero-card {
  position: relative;
  overflow: hidden;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.08) 0%,
    rgba(0,0,0,0.12) 28%,
    rgba(0,0,0,0.38) 100%
  );
  pointer-events: none;
}

/* SOBRE MÍ ARRIBA, YA NO ABAJO */
.hero-bio {
  position: absolute;
  top: 18px;
  left: 18px;
  right: auto;
  bottom: auto;
  z-index: 3;
  width: min(82%, 320px);
  padding: 16px 18px;
  color: #fff;
  background: rgba(140, 22, 97, 0.28);
  border: .5px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.14);
}

.hero-bio-kicker {
  font-size: .68rem;
  letter-spacing: .18em;
  opacity: .9;
  margin-bottom: 8px;
}

.hero-bio h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  line-height: 1;
  margin-bottom: 8px;
}

.hero-bio p {
  font-size: .92rem;
  line-height: 1.6;
  opacity: .96;
  margin: 0;
}

/* deja el caption abajo sin pelear con la bio */
.tall-card figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 3;
  text-align: center;
}

/* mobile */
@media (max-width: 820px) {
  .hero-bio {
    top: 14px;
    left: 14px;
    width: calc(100% - 28px);
    padding: 14px 15px;
    border-radius: 18px;
  }

  .hero-bio h3 {
    font-size: 1.45rem;
  }

  .hero-bio p {
    font-size: .84rem;
    line-height: 1.5;
  }

  .tall-card figcaption {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }
}

.brand-logo {
  mix-blend-mode: multiply;
}