/* ============ POUSS STYLE — brand-aligned (Pantone 113C + Cool Grey 8C) ============ */
:root {
  /* Brand palette — directo del manual */
  --pouss-yellow: #FAE053;       /* Pantone 113C  RGB 250,224,83 */
  --pouss-yellow-soft: #FFF1A6;
  --pouss-yellow-deep: #E6C73D;
  --pouss-grey: #888B8D;         /* Pantone Cool Grey 8C  RGB 136,139,141 */
  --pouss-grey-deep: #5C5E60;
  --pouss-grey-soft: #B5B7B9;

  /* Sistema */
  --bg: #FFFFFF;
  --bg-soft: #FAFAFA;
  --bg-tint: #F5F5F4;
  --ink: #3D3F41;
  --ink-soft: var(--pouss-grey);
  --ink-mute: #B5B7B9;
  --line: #ECECEC;
  --line-strong: #DCDCDC;

  /* Tipografía — Antenna ≈ Outfit, One Love ≈ Caveat, Calibri = body */
  --sans: 'Outfit', 'Calibri', system-ui, -apple-system, sans-serif;
  --script: 'Caveat', 'Brush Script MT', cursive;

  --radius: 2px;
  --max: 1200px;
  --easeOut: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
[hidden] { display: none !important; }
body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.01em;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* ============ NAV ============ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
/* ============ Logo construido (POUSS + STYLE) — fiel al manual ============ */
.nav-logo, .logo-stack {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  gap: 4px;
  text-decoration: none;
}
.logo-mark {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 28px;
  letter-spacing: 0.14em;
  color: var(--pouss-grey-deep);
  display: inline-block;
}
.logo-mark i {
  font-style: normal;
  color: var(--pouss-yellow-deep);
  font-weight: 400;
}
.logo-tag {
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.62em;
  /* trailing letter-spacing añade espacio a la derecha; compensamos con text-indent
     equivalente para que el bloque quede ópticamente centrado bajo POUSS */
  text-indent: 0.62em;
  color: var(--pouss-grey);
  font-weight: 400;
}
.logo-stack-light .logo-mark { color: #fff; font-size: 36px; }
.logo-stack-light .logo-mark i { color: var(--pouss-yellow); }
.logo-stack-light .logo-tag { color: rgba(255,255,255,0.75); font-size: 11px; letter-spacing: 0.7em; text-indent: 0.7em; }
@media (max-width: 640px) {
  .logo-mark { font-size: 24px; }
}
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pouss-grey);
  font-weight: 400;
  transition: color .2s var(--easeOut);
}
.nav-links a:hover { color: var(--pouss-grey-deep); }
@media (max-width: 640px) {
  .nav-links { display: none; }
}

/* ============ KICKER (eyebrow) — usa script handwritten para anclar marca ============ */
.kicker {
  font-family: var(--script);
  font-size: 22px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--pouss-grey);
  margin: 0 0 14px;
  font-weight: 500;
  line-height: 1;
}
.kicker.centered { text-align: center; }
.kicker.light { color: var(--pouss-yellow); }

/* numeritos en kicker (01 — Elegí…) */
.kicker .num {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--pouss-yellow-deep);
  vertical-align: middle;
  margin-right: 10px;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  overflow: hidden;
  background: var(--bg);
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 45% at 50% 35%, rgba(250, 224, 83, 0.18), transparent 70%),
    radial-gradient(ellipse 80% 50% at 50% 100%, rgba(136, 139, 141, 0.05), transparent 70%);
  pointer-events: none;
}
.hero-content { position: relative; max-width: 880px; }
.hero-title {
  font-family: var(--sans);
  font-weight: 200;
  font-size: clamp(36px, 5.5vw, 68px);
  line-height: 1;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 0 0 32px;
  color: var(--pouss-grey-deep);
}
.hero-title .hero-is {
  font-size: 0.7em;
  letter-spacing: 0.08em;
  vertical-align: middle;
}
.hero-title .script {
  font-family: var(--script);
  font-weight: 500;
  font-size: 1.05em;
  letter-spacing: 0;
  text-transform: none;
  color: var(--pouss-grey-deep);
  position: relative;
  display: inline-block;
  padding: 0 0.05em;
}
.hero-title .script::after {
  content: '';
  position: absolute;
  left: 8%; right: 8%; bottom: 0.18em;
  height: 0.18em;
  background: var(--pouss-yellow);
  z-index: -1;
  border-radius: 99px;
  opacity: 0.95;
}
.hero-sub {
  font-size: 16px;
  line-height: 1.7;
  color: var(--pouss-grey);
  margin: 0 auto 44px;
  max-width: 540px;
  font-weight: 300;
  letter-spacing: 0.02em;
}
.hero-foot {
  margin-top: 32px;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 400;
}

/* ============ Botones — borde fino, hover amarillo (estilo manual) ============ */
.cta-primary {
  display: inline-block;
  padding: 16px 42px;
  background: var(--pouss-grey-deep);
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  transition: all .3s var(--easeOut);
  border: 1.5px solid var(--pouss-grey-deep);
  border-radius: 0;
  position: relative;
}
.cta-primary:hover {
  background: var(--pouss-yellow);
  color: var(--pouss-grey-deep);
  border-color: var(--pouss-yellow);
  transform: translateY(-2px);
}

.scroll-hint {
  position: absolute;
  bottom: 32px; left: 50%;
  width: 1px; height: 48px;
  background: var(--pouss-grey-soft);
  transform: translateX(-50%);
  animation: scrollPulse 2.4s var(--easeOut) infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: translateX(-50%) scaleY(0.6); }
  50% { opacity: 1; transform: translateX(-50%) scaleY(1); }
}

/* ============ SECTIONS ============ */
.section {
  padding: 130px 0;
  position: relative;
}
.section-light { background: var(--bg); }
.section-cream { background: var(--bg-soft); }
.section-dark {
  background: var(--bg-tint);
  color: var(--ink);
}
.section-title {
  font-family: var(--sans);
  font-weight: 200;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
  margin: 0 0 22px;
  color: var(--pouss-grey-deep);
}
.section-title .script {
  font-family: var(--script);
  font-weight: 500;
  font-size: 1.15em;
  letter-spacing: 0;
  text-transform: none;
  color: var(--pouss-grey-deep);
  position: relative;
  display: inline-block;
  padding: 0 0.05em;
}
.section-title .script::after {
  content: '';
  position: absolute;
  left: 6%; right: 6%; bottom: 0.16em;
  height: 0.16em;
  background: var(--pouss-yellow);
  z-index: -1;
  border-radius: 99px;
}
.section-title.light { color: var(--pouss-grey-deep); }
.section-title.light .script { color: var(--pouss-grey-deep); }
.section-sub {
  text-align: center;
  font-size: 15px;
  line-height: 1.75;
  color: var(--pouss-grey);
  max-width: 620px;
  margin: 0 auto 72px;
  font-weight: 300;
  letter-spacing: 0.02em;
}
.section-sub.light { color: var(--pouss-grey); }

/* ============ EXPERIENCIAS GRID ============ */
.exp-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 16px;
}
@media (max-width: 760px) {
  .exp-grid { grid-template-columns: 1fr; gap: 20px; }
}

.exp-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  text-align: left;
  padding: 0;
  cursor: pointer;
  overflow: hidden;
  transition: all .4s var(--easeOut);
}
.exp-card:hover {
  border-color: var(--pouss-yellow);
  transform: translateY(-4px);
  box-shadow: 0 18px 50px -22px rgba(136, 139, 141, 0.25);
}
.exp-card-img {
  height: 320px;
  background-size: cover;
  background-position: center;
  position: relative;
  filter: grayscale(35%) brightness(1.02);
  transition: filter .4s var(--easeOut);
}
.exp-card:hover .exp-card-img { filter: grayscale(0%) brightness(1); }
.exp-card-img-mujer {
  background-image:
    linear-gradient(180deg, rgba(255,255,255,0) 60%, rgba(250, 224, 83, 0.12) 100%),
    url('https://images.unsplash.com/photo-1522337360788-8b13dee7a37e?w=1400&q=80');
}
.exp-card-img-hombre {
  background-image:
    linear-gradient(180deg, rgba(255,255,255,0) 60%, rgba(136, 139, 141, 0.18) 100%),
    url('https://images.unsplash.com/photo-1503951914875-452162b0f3f1?w=1400&q=80');
}
.exp-card-body { padding: 36px 32px 36px; }
.exp-tag {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--pouss-yellow-deep);
  margin-bottom: 14px;
  font-weight: 600;
}
.exp-card h3 {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 32px;
  line-height: 1.15;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 14px;
  color: var(--pouss-grey-deep);
}
.exp-card p {
  font-size: 14px;
  color: var(--pouss-grey);
  margin: 0 0 24px;
  line-height: 1.65;
  font-weight: 300;
}
.exp-arrow {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--pouss-grey-deep);
  font-weight: 500;
  transition: color .2s var(--easeOut);
}
.exp-card:hover .exp-arrow { color: var(--pouss-yellow-deep); }

/* ============ GROUP CARDS (sub-secciones mujer / hombre) ============ */
.grp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 920px) {
  .grp-grid { grid-template-columns: 1fr; }
}

.grp-card {
  background: #fff;
  border: 1px solid var(--line);
  padding: 44px 36px;
  display: flex;
  flex-direction: column;
  transition: all .35s var(--easeOut);
  position: relative;
}
.grp-card:hover {
  border-color: var(--pouss-yellow);
  box-shadow: 0 18px 50px -24px rgba(136, 139, 141, 0.2);
  transform: translateY(-3px);
}
.grp-num {
  font-family: var(--script);
  font-style: normal;
  font-size: 56px;
  font-weight: 500;
  color: var(--pouss-yellow-deep);
  line-height: 1;
  margin-bottom: 8px;
  display: block;
}
.grp-card h3 {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 14px;
  color: var(--pouss-grey-deep);
}
.grp-card > p {
  font-size: 14px;
  color: var(--pouss-grey);
  margin: 0 0 20px;
  line-height: 1.65;
  font-weight: 300;
}
.grp-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  flex: 1;
  border-top: 1px solid var(--line);
  padding-top: 8px;
}
.grp-list li { border-bottom: 1px solid var(--line); }
.grp-list li:last-child { border-bottom: none; }
.grp-list details { display: block; }
.grp-list summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 13px 0;
  font-size: 13.5px;
  color: var(--pouss-grey);
  cursor: pointer;
  transition: color .2s var(--easeOut);
  font-weight: 400;
}
.grp-list summary::-webkit-details-marker { display: none; }
.grp-list summary:hover { color: var(--pouss-grey-deep); }
.grp-list summary .price {
  color: var(--pouss-grey-deep);
  font-variant-numeric: tabular-nums;
  font-weight: 500;
  white-space: nowrap;
  font-size: 13px;
}
.grp-list summary .name { flex: 1; }
.grp-list summary .chev {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  font-size: 14px;
  line-height: 1;
  color: var(--pouss-grey);
  transition: all .25s var(--easeOut);
  flex-shrink: 0;
  font-weight: 300;
}
.grp-list details[open] summary .chev {
  background: var(--pouss-yellow);
  border-color: var(--pouss-yellow);
  color: var(--pouss-grey-deep);
  transform: rotate(45deg);
}
.grp-list details[open] summary { color: var(--pouss-grey-deep); }

.service-detail {
  padding: 4px 0 16px 0;
  animation: fadeSlide .3s var(--easeOut);
}
.service-detail p {
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 1.65;
  color: var(--pouss-grey);
  white-space: pre-line;
  font-weight: 300;
}
.service-detail small {
  display: block;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pouss-yellow-deep);
  margin-top: 8px;
  font-weight: 600;
}
@keyframes fadeSlide {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Hombre dentro de section-dark (ahora light tint, no negro) */
.grp-list-dark { /* alias mantenido */ }

.grp-disclaimer {
  margin: 14px 0 18px;
  font-family: var(--script);
  font-size: 16px;
  font-weight: 400;
  color: var(--pouss-grey);
  line-height: 1.4;
}

.cta-secondary {
  align-self: flex-start;
  padding: 13px 30px;
  background: transparent;
  color: var(--pouss-grey-deep);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  transition: all .3s var(--easeOut);
  border: 1.5px solid var(--pouss-grey-deep);
}
.cta-secondary:hover {
  background: var(--pouss-yellow);
  border-color: var(--pouss-yellow);
  color: var(--pouss-grey-deep);
  transform: translateY(-2px);
}

/* Card "POUSS Barber" — variante destacada (ya no es dark-on-black, es highlight con marco) */
.grp-card-dark {
  background: #fff;
  border: 1px solid var(--pouss-grey-soft);
  color: var(--ink);
  max-width: 760px;
  margin: 0 auto;
  position: relative;
}
.grp-card-dark::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px;
  width: 80px; height: 4px;
  background: var(--pouss-yellow);
}
.grp-card-dark h3 { color: var(--pouss-grey-deep); font-size: 28px; }
.grp-card-dark > p, .grp-card-dark .grp-sub {
  color: var(--pouss-grey);
  font-size: 14.5px;
}
.grp-card-dark:hover { border-color: var(--pouss-yellow); }
.cta-secondary-dark { /* sin override, hereda */ }

/* ============ FILOSOFIA ============ */
.philo { max-width: 880px; margin: 0 auto; text-align: center; }
.philo .section-title { text-align: center; }
.philo-text {
  font-family: var(--sans);
  font-style: normal;
  font-weight: 300;
  font-size: 19px;
  line-height: 1.6;
  letter-spacing: 0.01em;
  color: var(--pouss-grey-deep);
  max-width: 720px;
  margin: 0 auto 72px;
}
.philo-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  text-align: center;
}
@media (max-width: 760px) { .philo-pillars { grid-template-columns: 1fr; gap: 28px; } }
.philo-pillars > div { padding-top: 28px; border-top: 2px solid var(--pouss-yellow); }
.philo-pillars h4 {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin: 0 0 12px;
  color: var(--pouss-grey-deep);
}
.philo-pillars p {
  font-size: 14px;
  color: var(--pouss-grey);
  margin: 0;
  line-height: 1.65;
  font-weight: 300;
}

/* ============ FOOTER ============ */
.footer {
  background: var(--pouss-grey-deep);
  color: #fff;
  padding: 80px 0 24px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
@media (max-width: 760px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
}
.footer-brand { display: flex; flex-direction: column; align-items: flex-start; }
.footer-brand .logo-stack { margin-bottom: 16px; }
.footer-brand p {
  font-family: var(--script);
  font-size: 18px;
  color: var(--pouss-yellow);
  margin: 0;
  font-weight: 500;
}
.footer-col h5 {
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--pouss-yellow);
  font-weight: 500;
  margin: 0 0 16px;
}
.footer-col p, .footer-col a {
  font-size: 14px;
  color: rgba(255,255,255,0.78);
  line-height: 1.75;
  margin: 0;
  font-weight: 300;
}
.footer-col a:hover { color: var(--pouss-yellow); }
.footer-bottom {
  max-width: var(--max);
  margin: 0 auto;
  padding: 24px 24px 0;
  font-size: 10.5px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-align: center;
}

/* ============ MODAL ============ */
.modal {
  position: fixed; inset: 0;
  z-index: 1000;
  background: rgba(60, 62, 64, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: fadeIn .25s var(--easeOut);
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal-wrap {
  width: 100%;
  max-width: 1180px;
  max-height: 95vh;
  height: 95vh;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: slideUp .35s var(--easeOut);
  border: 1px solid var(--line);
  border-top: 4px solid var(--pouss-yellow);
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.modal-head {
  padding: 28px 36px 22px;
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}
.modal-head .kicker { margin: 0 0 4px; font-size: 18px; }
.modal-head h3 {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 24px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0;
  color: var(--pouss-grey-deep);
}
.modal-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  background: #fff;
  position: relative;
  min-height: 0;
}
.modal-body iframe {
  width: 100% !important;
  flex: 1;
  height: 100%;
  display: block;
  border: 0;
}
.modal-loader {
  position: absolute; inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--pouss-grey);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: var(--bg);
  z-index: 2;
}
.modal-loader.hidden { display: none; }
.spinner {
  width: 36px; height: 36px;
  border: 2px solid var(--line);
  border-top-color: var(--pouss-yellow);
  border-radius: 50%;
  animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.modal-close {
  position: absolute;
  top: 18px; right: 24px;
  z-index: 1010;
  width: 44px; height: 44px;
  background: var(--bg);
  border: 1px solid var(--line-strong);
  font-size: 24px;
  color: var(--pouss-grey-deep);
  line-height: 1;
  transition: all .2s var(--easeOut);
}
.modal-close:hover {
  background: var(--pouss-yellow);
  color: var(--pouss-grey-deep);
  border-color: var(--pouss-yellow);
}

@media (max-width: 1220px) {
  .modal { padding: 12px; }
  .modal-wrap { max-width: 100%; }
}

@media (max-width: 640px) {
  .modal { padding: 0; }
  .modal-wrap { max-width: 100%; max-height: 100vh; height: 100vh; }
  .modal-head { padding: 24px 20px 16px; }
  .modal-head h3 { font-size: 20px; }
  .modal-body iframe { min-height: 0; }
  .section { padding: 90px 0; }
  .section-title { font-size: 32px; }
  .grp-card { padding: 32px 24px; }
  .exp-card-body { padding: 28px 24px; }
}

/* ============ NAV CTA ============ */
.nav-cta {
  padding: 10px 22px;
  background: var(--pouss-yellow);
  color: var(--pouss-grey-deep);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 600;
  border: 1.5px solid var(--pouss-yellow);
  transition: all .25s var(--easeOut);
}
.nav-cta:hover {
  background: var(--pouss-grey-deep);
  border-color: var(--pouss-grey-deep);
  color: #fff;
}

/* ============ SECCIÓN CONTACTO ============ */
.section-contact {
  background: var(--bg-soft);
  color: var(--ink);
  padding: 130px 0;
}
.section-contact .section-title { color: var(--pouss-grey-deep); }
.section-contact .section-sub { color: var(--pouss-grey); }

.info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 56px;
}
@media (max-width: 920px) { .info-grid { grid-template-columns: repeat(2, 1fr); } }

.info-card {
  background: #fff;
  border: 1px solid var(--line);
  padding: 36px 24px;
  text-align: center;
  transition: all .3s var(--easeOut);
  display: block;
}
.info-card:hover {
  border-color: var(--pouss-yellow);
  background: #fff;
  transform: translateY(-3px);
  box-shadow: 0 14px 40px -20px rgba(136, 139, 141, 0.2);
}
.info-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  background: rgba(250, 224, 83, 0.25);
  border-radius: 50%;
  color: var(--pouss-grey-deep);
  margin-bottom: 18px;
  transition: background .25s var(--easeOut);
}
.info-card:hover .info-icon { background: var(--pouss-yellow); }
.info-icon svg { width: 22px; height: 22px; }
.info-card h4 {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  margin: 0 0 10px;
  color: var(--pouss-grey-deep);
}
.info-card p {
  margin: 0;
  font-size: 14px;
  color: var(--pouss-grey);
  line-height: 1.5;
  font-weight: 300;
}
.info-strong { color: var(--pouss-grey-deep) !important; font-weight: 500; }

/* ============ Reviews card ============ */
.reviews-card {
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--pouss-yellow);
  padding: 36px 40px;
  margin-bottom: 48px;
}
.reviews-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 24px;
}
.reviews-head h4 {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin: 0 0 10px;
  color: var(--pouss-grey-deep);
}
.reviews-head p {
  margin: 0;
  font-size: 14px;
  color: var(--pouss-grey);
  line-height: 1.65;
  max-width: 540px;
  font-weight: 300;
}
.reviews-rating {
  display: flex; align-items: center; gap: 8px;
  white-space: nowrap;
  font-size: 14px;
  color: var(--pouss-grey);
}
.reviews-rating .star {
  color: var(--pouss-yellow-deep);
  font-size: 22px;
  line-height: 1;
}
.reviews-rating strong { color: var(--pouss-grey-deep); font-size: 22px; font-weight: 500; }
.reviews-rating em { font-style: normal; color: var(--pouss-grey-soft); font-size: 13px; }

.cta-pill {
  display: inline-block;
  padding: 12px 26px;
  background: var(--pouss-yellow);
  color: var(--pouss-grey-deep);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: all .25s var(--easeOut);
}
.cta-pill:hover { background: var(--pouss-grey-deep); color: var(--pouss-yellow); transform: translateY(-2px); }

@media (max-width: 760px) {
  .reviews-head { flex-direction: column; }
  .reviews-card { padding: 28px 24px; }
}

/* ============ Mapa ============ */
.map-frame {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  height: 420px;
  margin-bottom: 48px;
  background: #fff;
}
.map-frame iframe { width: 100%; height: 100%; border: none; filter: grayscale(40%) contrast(0.95); }

/* CTAs ancho */
.contact-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-ghost {
  display: inline-flex;
  align-items: center;
  padding: 16px 36px;
  background: transparent;
  color: var(--pouss-grey-deep);
  border: 1.5px solid var(--pouss-grey);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  transition: all .25s var(--easeOut);
}
.cta-ghost:hover { border-color: var(--pouss-yellow); color: var(--pouss-grey-deep); background: var(--pouss-yellow); }

/* ============ MODAL CONTACTO (form) ============ */
.modal-wrap-form { max-width: 540px; }
.modal-body-form {
  min-height: auto;
  padding: 32px 36px 36px;
}
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field span {
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pouss-grey);
  font-weight: 500;
}
.field input,
.field select,
.field textarea {
  font-family: var(--sans);
  font-size: 15px;
  padding: 12px 14px;
  border: 1px solid var(--line-strong);
  background: #fff;
  color: var(--pouss-grey-deep);
  border-radius: 0;
  transition: border-color .2s var(--easeOut);
  width: 100%;
  font-weight: 300;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--pouss-yellow);
}
.field textarea { resize: vertical; min-height: 80px; }

.cta-block { display: block; width: 100%; text-align: center; margin-top: 6px; cursor: pointer; }

.contact-status {
  font-size: 13px;
  margin: 4px 0 0;
  text-align: center;
  min-height: 18px;
}
.contact-status.ok { color: #2c7a4b; }
.contact-status.error { color: #b03a3a; }

.contact-disclaimer {
  font-size: 11px;
  color: var(--pouss-grey-soft);
  text-align: center;
  margin: 4px 0 0;
  line-height: 1.5;
  font-weight: 300;
}

@media (max-width: 640px) {
  .modal-wrap-form { max-height: 100vh; height: 100vh; }
  .modal-body-form { padding: 24px 20px 28px; }
  .info-grid { grid-template-columns: 1fr 1fr; }
  .map-frame { height: 320px; }
  .hero-title { letter-spacing: 0.04em; }
}
