/* =========================================================
   Secciones: estudio, servicios, CTA, FAQ, contacto, footer,
   páginas de servicio, navegación y transiciones
   ========================================================= */

:root {
  --paper: #f3efe8;
  --paper-2: #e9e3d8;
  --card: #fbf9f5;
  --ink: #0e1829;
  --ink-70: rgba(14, 24, 41, .72);
  --ink-50: rgba(14, 24, 41, .5);
  --ink-12: rgba(14, 24, 41, .12);
  --ink-06: rgba(14, 24, 41, .06);
  --gold-ink: #8f6b43;
  --gold-grad-dark: linear-gradient(120deg, #7d5c38 0%, #b98f5f 50%, #8f6b43 100%);
}

/* Garamond Premier usa cifras de estilo antiguo: forzamos cifras alineadas */
.process__num, .about__fnum, .emblem__num,
.acc-trigger__num, .toc em, .preloader__count, .contact__item strong, .mmenu__list em {
  font-variant-numeric: lining-nums;
  font-feature-settings: "lnum" 1;
}

.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.ico {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.ico-wa { width: 18px; height: 18px; fill: currentColor; }

/* ---------- Base de sección ---------- */
.section {
  position: relative;
  padding: clamp(96px, 11vw, 170px) 0;
}
.section--paper {
  background: var(--paper);
  color: var(--ink);
}
.section--paper .eyebrow { color: var(--gold-ink); }
.section--paper .eyebrow__line { background: var(--gold-ink); }

.h2 {
  margin: 22px 0 0;
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(32px, 4vw, 62px);
  line-height: 1.04;
  letter-spacing: .005em;
  text-transform: uppercase;
}
.h2--sm { font-size: clamp(28px, 3vw, 46px); }
.h2 strong,
.cta-band__title strong,
.footer__cta-title strong {
  font-weight: 600;
  background: var(--gold-grad);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}
.section--paper .h2 strong {
  background: var(--gold-grad-dark);
  -webkit-background-clip: text;
          background-clip: text;
}

.section-head { margin-bottom: clamp(48px, 6vw, 88px); }
.section-head--split {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr);
  align-items: end;
  gap: 32px 80px;
}
.section-head__lead {
  margin: 0;
  max-width: 460px;
  justify-self: end;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--ivory-70);
}
.section--paper .section-head__lead { color: var(--ink-70); }

/* Estados iniciales de animación (solo con JS) */
.js [data-reveal],
.js [data-reveal-group] > * { opacity: 0; }
.js [data-clip] { clip-path: inset(100% 0 0 0); }

/* =========================================================
   NAV: submenú de servicios
   ========================================================= */
.nav__item--sub { position: relative; }
.nav__item--sub > .nav__link { display: flex; align-items: center; gap: 6px; }
.nav__caret {
  width: 12px;
  height: 12px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 2;
  transition: transform .5s var(--ease-out);
}
.nav__item--sub:hover .nav__caret,
.nav__item--sub:focus-within .nav__caret { transform: rotate(180deg); }

.subnav {
  position: absolute;
  top: 100%;
  left: 50%;
  width: 700px;
  padding-top: 22px;
  transform: translate(-50%, 12px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .45s var(--ease-out), transform .6s var(--ease-out), visibility .45s;
}
.nav__item--sub:hover .subnav,
.nav__item--sub:focus-within .subnav {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}
.subnav__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  padding: 28px 32px 32px;
  background: rgba(10, 17, 30, .92);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
          backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid var(--ivory-12);
  border-top: 1px solid rgba(185, 143, 95, .5);
  box-shadow: 0 40px 80px -30px rgba(0, 0, 0, .7);
}
.subnav__label {
  margin: 0 0 14px;
  font-size: 10px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.subnav__feature {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px;
  margin: 0 -14px;
  transition: background-color .4s;
}
.subnav__feature:hover { background: rgba(185, 143, 95, .08); }
.subnav__icon {
  flex: none;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(185, 143, 95, .35);
  border-radius: 50%;
  color: var(--gold-light);
  transition: background-color .4s, color .4s;
}
.subnav__feature:hover .subnav__icon { background: var(--gold); color: var(--navy-900); }
.subnav__feature strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.1;
  color: var(--ivory);
}
.subnav__feature small { font-size: 12px; color: var(--ivory-50); }
.subnav__col + .subnav__col { padding-left: 32px; border-left: 1px solid var(--ivory-12); }
.subnav__col ul { margin-top: 8px; }
.subnav__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--ivory-12);
  font-size: 14px;
  color: var(--ivory-70);
  transition: color .3s, padding .5s var(--ease-out);
}
.subnav__link .ico { width: 16px; height: 16px; color: var(--gold); opacity: 0; transform: translate(-6px, 6px); transition: opacity .4s, transform .5s var(--ease-out); }
.subnav__link:hover { color: var(--ivory); padding-left: 6px; }
.subnav__link:hover .ico { opacity: 1; transform: none; }

/* Menú móvil: accesos a servicios */
.mmenu__services {
  margin-top: 28px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s, transform .8s var(--ease-out);
}
.menu-open .mmenu__services { opacity: 1; transform: none; transition-delay: .65s; }
.mmenu__services p {
  margin: 0 0 12px;
  font-size: 10px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.mmenu__services div { display: flex; flex-wrap: wrap; gap: 8px; }
.mmenu__services a {
  padding: 8px 14px;
  font-size: 12px;
  border: 1px solid var(--ivory-12);
  border-radius: 999px;
  color: var(--ivory-70);
}
.mmenu__inner { overflow-y: auto; }

/* =========================================================
   TRANSICIÓN ENTRE PÁGINAS
   ========================================================= */
.pt {
  position: fixed;
  inset: 0;
  z-index: 950;
  pointer-events: none;
  display: grid;
  place-items: center;
}
.pt__panel {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 50%, rgba(185, 143, 95, .08), transparent 70%),
    var(--navy-950);
  transform: scaleY(0);
  transform-origin: bottom;
}
.pt__mark {
  position: relative;
  width: 72px;
  opacity: 0;
}
.pt__mark img { width: 100%; height: auto; }
.js .page-service .pt__panel { transform: scaleY(1); }
.js .page-service .pt__mark { opacity: 1; }

/* =========================================================
   WHATSAPP FLOTANTE
   ========================================================= */
.wa-float {
  position: fixed;
  right: clamp(16px, 2.4vw, 32px);
  bottom: clamp(16px, 2.4vw, 32px);
  z-index: 80;
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(145deg, #3ddc7e 0%, #1faa59 55%, #138a48 100%);
  box-shadow: 0 18px 40px -12px rgba(31, 170, 89, .55), inset 0 1px 0 rgba(255, 255, 255, .25);
  transform: scale(0);
  transition: transform .7s var(--ease-out);
}
.wa-float.is-visible { transform: scale(1); }
.wa-float:hover { transform: scale(1.08); }
.wa-float .ico-wa { width: 26px; height: 26px; }
.wa-float::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid #2fcf72;
  animation: waPulse 2.6s var(--ease-out) infinite;
}
@keyframes waPulse {
  from { transform: scale(1); opacity: .8; }
  to { transform: scale(1.7); opacity: 0; }
}

/* =========================================================
   EL ESTUDIO
   ========================================================= */
.about {
  background:
    radial-gradient(ellipse 50% 40% at 0% 20%, rgba(31, 49, 80, .6), transparent 70%),
    var(--navy-900);
  overflow: hidden;
}
.about__grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: clamp(56px, 8vw, 140px);
}

.about__media {
  position: relative;
  padding: 0 0 56px 56px;
}
.about__img {
  position: relative;
  margin: 0;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--navy-800);
}
.about__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% 50%;
  filter: saturate(.75) contrast(1.04);
}
.about__img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(14, 24, 41, .55));
}
.about__frame {
  position: absolute;
  top: 56px;
  right: 56px;
  bottom: 0;
  left: 0;
  border: 1px solid rgba(185, 143, 95, .4);
}
.about__stamp {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 28px 22px 22px;
  background: rgba(10, 17, 30, .78);
  -webkit-backdrop-filter: blur(16px);
          backdrop-filter: blur(16px);
  border: 1px solid var(--ivory-12);
  border-left: 2px solid var(--gold);
}
.about__stamp-mark {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 1px solid rgba(185, 143, 95, .35);
}
.about__stamp-mark img { width: 32px; height: auto; }
.about__stamp small {
  display: block;
  font-size: 10px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.about__stamp strong {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.15;
}
.about__vertical {
  position: absolute;
  top: 56px;
  right: 18px;
  font-size: 10px;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--ivory-50);
  writing-mode: vertical-rl;
}

.about__lead {
  margin: 30px 0 0;
  font-family: var(--font-serif);
  font-size: clamp(22px, 1.9vw, 28px);
  font-style: italic;
  font-weight: 300;
  line-height: 1.4;
  color: var(--ivory);
}
.about__text {
  margin: 22px 0 0;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--ivory-70);
}
.about__features {
  margin-top: 40px;
  border-top: 1px solid var(--ivory-12);
}
.about__features li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 12px;
  padding: 22px 0;
  border-bottom: 1px solid var(--ivory-12);
}
.about__fnum {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--gold-light);
}
.about__features h3 {
  margin: 0 0 4px;
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 500;
}
.about__features p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--ivory-70);
}
.about__sign {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 36px;
}
.about__sign-mark {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px solid rgba(185, 143, 95, .5);
  background: radial-gradient(circle at 30% 25%, rgba(216, 181, 132, .22), transparent 65%), var(--navy-800);
}
.about__sign-mark img { width: 34px; height: auto; }
.about__sign strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
}
.about__sign small { font-size: 12px; letter-spacing: .08em; color: var(--ivory-50); }


/* Empatía: primero el problema */
.empathy { margin-bottom: clamp(110px, 13vw, 200px); }
.empathy__head { max-width: 1040px; }
.empathy__lead {
  max-width: 660px;
  margin: 30px 0 0;
  font-size: clamp(16px, 1.25vw, 19px);
  font-weight: 300;
  line-height: 1.8;
  color: var(--ivory-70);
}
.empathy__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: clamp(48px, 6vw, 80px) 0 0;
  padding: 0;
  list-style: none;
}
.pain {
  --x: 50%;
  --y: 50%;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 34px 28px 32px;
  background: linear-gradient(170deg, rgba(31, 49, 80, .45), rgba(14, 24, 41, .2));
  border: 1px solid var(--ivory-12);
  overflow: hidden;
  transition: border-color .6s, transform .8s var(--ease-out);
}
.pain::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(320px circle at var(--x) var(--y), rgba(216, 181, 132, .12), transparent 65%);
  opacity: 0;
  transition: opacity .5s;
}
.pain::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 2px;
  background: var(--gold-grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .9s var(--ease-out);
}
.pain:hover { border-color: rgba(185, 143, 95, .35); transform: translateY(-6px); }
.pain:hover::before { opacity: 1; }
.pain:hover::after { transform: scaleX(1); }
.pain__icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 1px solid rgba(185, 143, 95, .4);
  color: var(--gold-light);
  transition: background-color .6s, color .6s, transform .8s var(--ease-out);
}
.pain__icon .ico { width: 26px; height: 26px; }
.pain:hover .pain__icon { background: var(--gold-grad); color: var(--navy-900); transform: rotate(-8deg); }
.pain h3 {
  position: relative;
  margin: 28px 0 12px;
  font-family: var(--font-serif);
  font-size: clamp(22px, 1.7vw, 26px);
  font-weight: 500;
  line-height: 1.2;
}
.pain p {
  position: relative;
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--ivory-70);
}

@media (max-width: 1180px) {
  .empathy__list { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .empathy__list { grid-template-columns: 1fr; }
}

/* Manifiesto */
.manifesto {
  position: relative;
  max-width: 1180px;
  margin: clamp(110px, 13vw, 200px) auto;
  text-align: center;
}
.manifesto__mark {
  display: block;
  height: 70px;
  font-family: var(--font-serif);
  font-size: 140px;
  line-height: 1;
  color: var(--gold);
}
.manifesto p {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(30px, 3.9vw, 60px);
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: -.01em;
}
.manifesto .sw { transition: none; }

/* Proceso */
.process {
  position: relative;
}
.process__track {
  position: absolute;
  left: 0;
  right: 0;
  top: 7px;
  height: 1px;
  background: var(--ivory-12);
}
.process__fill {
  position: absolute;
  inset: 0;
  background: var(--gold-grad);
  transform: scaleX(0);
  transform-origin: left;
}
.process__list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.process__dot {
  display: block;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: var(--navy-900);
  box-shadow: 0 0 0 6px var(--navy-900);
}
.process__num {
  display: block;
  margin-top: 36px;
  font-family: var(--font-serif);
  font-size: 64px;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(185, 143, 95, .7);
}
.process__step h3 {
  margin: 18px 0 10px;
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 500;
}
.process__step p {
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
  color: var(--ivory-70);
}

/* =========================================================
   SERVICIOS
   ========================================================= */
.services { overflow: hidden; }
.services::before {
  content: "";
  position: absolute;
  top: 0;
  right: -10vw;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, rgba(185, 143, 95, .12), transparent 65%);
  pointer-events: none;
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.svc-grid--2 { grid-template-columns: repeat(2, 1fr); }

.svc-card {
  --x: 50%;
  --y: 50%;
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 470px;
  padding: 36px 34px 32px;
  background: var(--card);
  color: var(--ink);
  border: 1px solid var(--ink-12);
  overflow: hidden;
  isolation: isolate;
  transition: border-color .6s, box-shadow .8s var(--ease-out), transform .8s var(--ease-out);
}
.svc-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse 80% 60% at 100% 0%, rgba(185, 143, 95, .18), transparent 60%),
    var(--navy-900);
  clip-path: inset(100% 0 0 0);
  transition: clip-path .8s var(--ease-in-out);
}
.svc-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(420px circle at var(--x) var(--y), rgba(216, 181, 132, .16), transparent 60%);
  opacity: 0;
  transition: opacity .5s;
}
.svc-card:hover {
  transform: translateY(-6px);
  border-color: transparent;
  box-shadow: 0 50px 90px -40px rgba(14, 24, 41, .55);
}
.svc-card:hover::before { clip-path: inset(0 0 0 0); }
.svc-card:hover::after { opacity: 1; }

.svc-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.svc-card__icon {
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  border-radius: 50%;
  border: 1px solid rgba(143, 107, 67, .35);
  color: var(--gold-ink);
  transition: background-color .6s, color .6s, border-color .6s, transform .8s var(--ease-out);
}
.svc-card__icon .ico { width: 28px; height: 28px; }
.svc-card:hover .svc-card__icon {
  background: var(--gold-grad);
  border-color: transparent;
  color: var(--navy-900);
  transform: rotate(-10deg);
}
.svc-card__label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--ink-50);
  transition: color .6s;
}
.svc-card:hover .svc-card__label { color: var(--gold-light); }

.svc-card__title {
  margin: 44px 0 14px;
  font-family: var(--font-serif);
  font-size: clamp(28px, 2.3vw, 36px);
  font-weight: 500;
  line-height: 1.05;
  transition: color .6s;
}
.svc-card__text {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--ink-70);
  transition: color .6s;
}
.svc-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 22px 0 0;
}
.svc-card__tags li {
  padding: 5px 12px;
  font-size: 11px;
  border: 1px solid var(--ink-12);
  border-radius: 999px;
  color: var(--ink-70);
  transition: color .6s, border-color .6s;
}
.svc-card:hover .svc-card__title { color: var(--ivory); }
.svc-card:hover .svc-card__text { color: var(--ivory-70); }
.svc-card:hover .svc-card__tags li { color: var(--ivory-70); border-color: var(--ivory-12); }

.svc-card__more {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 26px;
  border-top: 1px solid var(--ink-12);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink);
  transition: color .6s, border-color .6s;
}
/* Toda la card es clickeable */
.svc-card__more::after { content: ""; position: absolute; inset: 0; z-index: 1; }
.svc-card { margin-top: 0; }
.svc-card .svc-card__more { position: static; }
.svc-card > .svc-card__tags + .svc-card__more { margin-top: auto; }
.svc-card__tags { margin-bottom: 30px; }

.svc-card__arrow {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--ink-12);
  transition: background-color .6s, border-color .6s, transform .8s var(--ease-out);
}
.svc-card__arrow .ico { width: 18px; height: 18px; stroke-width: 1.6; transition: transform .6s var(--ease-out); }
.svc-card:hover .svc-card__more { color: var(--gold-light); border-color: var(--ivory-12); }
.svc-card:hover .svc-card__arrow { background: var(--gold); border-color: var(--gold); color: var(--navy-900); }
.svc-card:hover .svc-card__arrow .ico { transform: rotate(-45deg); }

/* Card grande (especialidades) */
.svc-card--big {
  min-height: 620px;
  padding: clamp(36px, 4vw, 60px);
}
.svc-card--big .svc-card__icon { width: 78px; height: 78px; }
.svc-card--big .svc-card__icon .ico { width: 34px; height: 34px; }
.svc-card--big .svc-card__title {
  margin-top: clamp(48px, 6vw, 80px);
  font-size: clamp(38px, 3.6vw, 58px);
  line-height: 1;
}
.svc-card--big .svc-card__text { max-width: 540px; font-size: 16px; }
.svc-card__watermark {
  position: absolute;
  right: -30px;
  top: -30px;
  z-index: -1;
  width: 300px;
  height: 300px;
  color: rgba(14, 24, 41, .035);
  pointer-events: none;
  transition: color .8s, transform 1.4s var(--ease-out);
}
.svc-card__watermark .ico { width: 100%; height: 100%; stroke-width: .22; }
.svc-card--big:hover .svc-card__watermark { color: rgba(216, 181, 132, .09); transform: rotate(-10deg) scale(1.05); }

.svc-card__subs {
  position: relative;
  z-index: 2;
  margin: 34px 0 34px;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--ink-12);
}
.svc-card--big .svc-card__more { border-top: 0; padding-top: 0; }
.svc-card__subs a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 15px 0;
  border-bottom: 1px solid var(--ink-12);
  font-size: 15px;
  color: var(--ink);
  transition: color .4s, padding .6s var(--ease-out), border-color .6s;
}
.svc-card__subs .ico { width: 16px; height: 16px; color: var(--gold-ink); transition: transform .5s var(--ease-out), color .4s; }
.svc-card__subs a:hover { padding-left: 10px; color: var(--gold-ink); }
.svc-card__subs a:hover .ico { transform: translate(3px, -3px); }
.svc-card--big:hover .svc-card__subs { border-color: var(--ivory-12); }
.svc-card--big:hover .svc-card__subs a { color: var(--ivory-70); border-color: var(--ivory-12); }
.svc-card--big:hover .svc-card__subs a:hover { color: var(--ivory); }
.svc-card--big:hover .svc-card__subs .ico { color: var(--gold-light); }

/* =========================================================
   CTA
   ========================================================= */
.cta-band {
  position: relative;
  padding: clamp(90px, 10vw, 150px) 0;
  overflow: hidden;
  background:
    radial-gradient(ellipse 50% 80% at 85% 50%, rgba(185, 143, 95, .14), transparent 70%),
    var(--navy-950);
}
.cta-band__bg { position: absolute; inset: 0; pointer-events: none; }
.cta-band__ring {
  position: absolute;
  top: 50%;
  right: -10vw;
  border-radius: 50%;
  border: 1px solid rgba(185, 143, 95, .18);
  transform: translateY(-50%);
}
.cta-band__ring--1 { width: 46vw; height: 46vw; }
.cta-band__ring--2 { width: 64vw; height: 64vw; right: -19vw; border-style: dashed; border-color: rgba(185, 143, 95, .1); animation: spin 90s linear infinite; }
.cta-band__mono {
  position: absolute;
  top: 50%;
  right: 4vw;
  width: min(26vw, 380px);
  aspect-ratio: 345 / 330;
  transform: translateY(-50%);
  -webkit-mask: url("../img/logo-mg-mask.svg") center / contain no-repeat;
          mask: url("../img/logo-mg-mask.svg") center / contain no-repeat;
  background: linear-gradient(160deg, rgba(185, 143, 95, .16), rgba(241, 241, 240, .03));
}
.cta-band__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, .75fr);
  align-items: end;
  gap: 40px 80px;
}
.cta-band__title {
  margin: 22px 0 0;
  font-family: var(--font-serif);
  font-size: clamp(34px, 4.2vw, 70px);
  font-weight: 400;
  line-height: 1.04;
  text-transform: uppercase;
}
.cta-band__side p {
  margin: 0 0 28px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--ivory-70);
}
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.btn .ico-wa { width: 18px; height: 18px; }

/* =========================================================
   PREGUNTAS FRECUENTES
   ========================================================= */
.faq__grid {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: clamp(48px, 7vw, 120px);
}
.faq__sticky { position: sticky; top: 120px; }
.faq__lead {
  margin: 26px 0 0;
  max-width: 420px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--ink-70);
}
.faq__note {
  margin: 28px 0 0;
  font-size: 12px;
  color: var(--ink-50);
}

.help-card {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 440px;
  margin-top: 40px;
  padding: 22px;
  background: var(--navy-900);
  color: var(--ivory);
  border-left: 2px solid var(--gold);
}
.help-card__img {
  flex: none;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(185, 143, 95, .5);
}
.help-card__img img { width: 100%; height: 100%; object-fit: cover; object-position: 66% 30%; transform: scale(1.6); transform-origin: 66% 30%; }
.help-card__title { margin: 0; font-family: var(--font-serif); font-size: 22px; font-weight: 500; }
.help-card__text { margin: 4px 0 10px; font-size: 13px; color: var(--ivory-70); }
.help-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.help-card__link .ico { width: 16px; height: 16px; transition: transform .5s var(--ease-out); }
.help-card__link:hover .ico { transform: translateX(4px); }

/* Acordeón */
.accordion { border-top: 1px solid var(--ink-12); }
.acc-item { border-bottom: 1px solid var(--ink-12); }
.acc-item__h { margin: 0; }
.acc-trigger {
  display: grid;
  grid-template-columns: 56px 1fr 48px;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 30px 0;
  text-align: left;
  color: var(--ink);
}
.acc-trigger__num {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .16em;
  color: var(--gold-ink);
}
.acc-trigger__q {
  font-family: var(--font-serif);
  font-size: clamp(21px, 1.9vw, 27px);
  font-weight: 500;
  line-height: 1.25;
  transition: color .4s;
}
.acc-trigger:hover .acc-trigger__q { color: var(--gold-ink); }
.acc-trigger__icon {
  position: relative;
  justify-self: end;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--ink-12);
  transition: background-color .5s, border-color .5s;
}
.acc-trigger__icon i {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 1px;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: transform .6s var(--ease-out);
}
.acc-trigger__icon i:last-child { transform: translate(-50%, -50%) rotate(90deg); }
.acc-item.is-open .acc-trigger__icon { background: var(--navy-900); border-color: var(--navy-900); color: var(--gold-light); }
.acc-item.is-open .acc-trigger__icon i:last-child { transform: translate(-50%, -50%) rotate(0deg); }

.acc-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .7s var(--ease-out);
}
.acc-panel > div { overflow: hidden; }
.acc-item.is-open .acc-panel { grid-template-rows: 1fr; }
.acc-panel p {
  margin: 0;
  padding: 0 60px 32px 68px;
  font-size: 15.5px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--ink-70);
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity .5s, transform .7s var(--ease-out);
}
.acc-item.is-open .acc-panel p { opacity: 1; transform: none; transition-delay: .1s; }
.accordion--compact .acc-trigger { padding: 24px 0; }
.accordion--compact .acc-trigger__q { font-size: clamp(20px, 1.6vw, 24px); }

/* =========================================================
   CONTACTO
   ========================================================= */
.contact {
  position: relative;
  padding: clamp(96px, 11vw, 170px) 0;
  overflow: hidden;
  background: var(--navy-950);
}
.contact__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 45% 55% at 90% 30%, rgba(185, 143, 95, .1), transparent 70%),
    radial-gradient(ellipse 50% 50% at 0% 100%, rgba(31, 49, 80, .7), transparent 70%);
  pointer-events: none;
}
.contact__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(48px, 7vw, 120px);
  align-items: start;
}
.contact__lead {
  margin: 26px 0 0;
  max-width: 460px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--ivory-70);
}
.contact__list {
  margin-top: 44px;
  border-top: 1px solid var(--ivory-12);
}
.contact__item {
  display: grid;
  grid-template-columns: 52px 1fr 20px;
  align-items: center;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--ivory-12);
}
.contact__list li:last-child .contact__item,
.contact__list li:nth-last-child(2) .contact__item { grid-template-columns: 52px 1fr; }
.contact__icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(185, 143, 95, .35);
  color: var(--gold-light);
  transition: background-color .5s, color .5s;
}
.contact__icon .ico { width: 20px; height: 20px; }
.contact__item small {
  display: block;
  font-size: 10px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--ivory-50);
}
.contact__item strong {
  font-family: var(--font-serif);
  font-size: 21px;
  font-weight: 500;
  word-break: break-word;
}
.contact__item > .ico {
  width: 18px;
  height: 18px;
  color: var(--gold);
  transition: transform .5s var(--ease-out);
}
a.contact__item:hover .contact__icon { background: var(--gold); color: var(--navy-900); }
a.contact__item:hover > .ico { transform: translate(3px, -3px); }

/* Formulario */
.cform {
  position: relative;
  padding: clamp(28px, 4vw, 56px);
  background: linear-gradient(160deg, rgba(31, 49, 80, .45), rgba(14, 24, 41, .35));
  -webkit-backdrop-filter: blur(16px);
          backdrop-filter: blur(16px);
  border: 1px solid var(--ivory-12);
  box-shadow: 0 60px 120px -60px rgba(0, 0, 0, .8);
}
.cform::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 40px;
  right: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
}
.cform__head {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-bottom: 28px;
  margin-bottom: 10px;
  border-bottom: 1px solid var(--ivory-12);
}
.cform__mark {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(185, 143, 95, .35);
}
.cform__mark img { width: 30px; height: auto; }
.cform__title { margin: 0; font-family: var(--font-serif); font-size: 28px; font-weight: 500; line-height: 1.1; }
.cform__sub { margin: 2px 0 0; font-size: 13px; color: var(--ivory-50); }

.cform__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 32px;
}
.field {
  position: relative;
  padding-top: 18px;
}
.field--full { grid-column: 1 / -1; }
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 22px 0 12px;
  font: inherit;
  font-size: 16px;
  color: var(--ivory);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--ivory-12);
  border-radius: 0;
  outline: none;
  resize: vertical;
  -webkit-appearance: none;
          appearance: none;
}
.field textarea { min-height: 110px; }
.field select option { color: var(--ink); }
.field label {
  position: absolute;
  left: 0;
  top: 42px;
  font-size: 15px;
  color: var(--ivory-50);
  pointer-events: none;
  transform-origin: left;
  transition: transform .5s var(--ease-out), color .4s, top .5s var(--ease-out);
}
.field::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--gold-grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .7s var(--ease-out);
}
.field:focus-within::after { transform: scaleX(1); }
.field input:focus + label,
.field input:not(:placeholder-shown) + label,
.field textarea:focus + label,
.field textarea:not(:placeholder-shown) + label,
.field select:focus + label,
.field select:valid + label {
  top: 14px;
  transform: scale(.72);
  color: var(--gold-light);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.field--select::before {
  content: "";
  position: absolute;
  right: 4px;
  top: 46px;
  width: 8px;
  height: 8px;
  border-right: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  transform: rotate(45deg);
  pointer-events: none;
}
.field.is-invalid input,
.field.is-invalid select,
.field.is-invalid textarea { border-bottom-color: #d27b6a; }

.cform__hp { position: absolute; left: -9999px; opacity: 0; }

.check {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-top: 30px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--ivory-70);
  cursor: pointer;
}
.check input { position: absolute; opacity: 0; }
.check__box {
  flex: none;
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  margin-top: 1px;
  border: 1px solid rgba(185, 143, 95, .6);
  transition: background-color .3s;
}
.check__box .ico { width: 14px; height: 14px; stroke-width: 2; color: var(--navy-900); opacity: 0; transform: scale(.4); transition: opacity .3s, transform .4s var(--ease-out); }
.check input:checked + .check__box { background: var(--gold); }
.check input:checked + .check__box .ico { opacity: 1; transform: none; }
.check input:focus-visible + .check__box { outline: 1px solid var(--gold-light); outline-offset: 3px; }
.check.is-invalid .check__box { border-color: #d27b6a; }

.cform__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 28px;
  margin-top: 36px;
}
.link-wa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ivory-70);
  transition: color .4s;
}
.link-wa .ico-wa { color: var(--gold-light); }
.link-wa:hover { color: var(--ivory); }
.cform__status {
  min-height: 1.6em;
  margin: 22px 0 0;
  font-size: 14px;
  color: var(--ivory-70);
}
.cform__status.is-ok { color: var(--gold-light); }
.cform__status.is-error { color: #e19a8b; }
.cform.is-sending button[type="submit"] { pointer-events: none; opacity: .6; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  position: relative;
  background: var(--navy-950);
  border-top: 1px solid var(--ivory-12);
  overflow: hidden;
}
.footer__map {
  position: relative;
  height: clamp(380px, 42vw, 520px);
}
.footer__map iframe {
  position: absolute;
  top: -64px;
  left: 0;
  width: 100%;
  height: calc(100% + 64px);
  border: 0;
  filter: grayscale(1) invert(.92) contrast(.88) brightness(.85) sepia(.25) hue-rotate(180deg);
}
.footer__map-shade {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(8, 14, 25, .85) 0%, rgba(8, 14, 25, .2) 45%, transparent 70%),
    linear-gradient(180deg, rgba(8, 14, 25, .5) 0%, transparent 20%, transparent 70%, var(--navy-950) 100%);
}
.footer__map-inner {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  pointer-events: none;
}
.map-card {
  pointer-events: auto;
  max-width: 380px;
  padding: 32px;
  background: rgba(10, 17, 30, .85);
  -webkit-backdrop-filter: blur(14px);
          backdrop-filter: blur(14px);
  border: 1px solid var(--ivory-12);
  border-top: 2px solid var(--gold);
}
.map-card__pin {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--gold-grad);
  color: var(--navy-900);
}
.map-card__pin .ico { width: 20px; height: 20px; }
.map-card__kicker { margin: 0; font-size: 10px; letter-spacing: .28em; text-transform: uppercase; color: var(--gold-light); }
.map-card__title { margin: 6px 0 8px; font-family: var(--font-serif); font-size: 26px; font-weight: 500; line-height: 1.1; }
.map-card__addr { margin: 0; font-size: 14px; color: var(--ivory-70); }
.map-card__hours { margin: 4px 0 22px; font-size: 13px; color: var(--ivory-50); }

.footer__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  padding: clamp(64px, 7vw, 100px) 0;
  border-bottom: 1px solid var(--ivory-12);
}
.footer__cta-title {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.3vw, 52px);
  line-height: 1.06;
  text-transform: uppercase;
}
.footer__cta-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr .8fr 1fr 1.2fr;
  gap: 48px;
  padding: clamp(56px, 6vw, 88px) 0;
}
.footer__brand img { height: 64px; width: auto; }
.footer__brand p {
  max-width: 340px;
  margin: 24px 0 0;
  font-size: 14px;
  line-height: 1.8;
  color: var(--ivory-50);
}
.footer__title {
  margin: 0 0 20px;
  font-size: 10px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.footer__col li + li { margin-top: 12px; }
.footer__group a { color: var(--ivory); font-weight: 500; }
.footer__group:not(:first-child) { margin-top: 22px !important; }
.footer__col li.footer__sub { margin-top: 8px; padding-left: 14px; border-left: 1px solid var(--ivory-12); }
.footer__sub a { font-size: 13px; color: var(--ivory-50); }
.footer__dev a {
  color: var(--gold-light);
  border-bottom: 1px solid rgba(185, 143, 95, .35);
  transition: color .3s, border-color .3s;
}
.footer__dev a:hover { color: var(--ivory); border-color: var(--ivory); }
.footer__col a,
.footer__col span {
  position: relative;
  font-size: 14px;
  color: var(--ivory-70);
  transition: color .4s;
}
.footer__col a:hover { color: var(--ivory); }
.footer__col ul:not(.footer__contact) a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .6s var(--ease-out);
}
.footer__col ul:not(.footer__contact) a:hover::after { transform: scaleX(1); transform-origin: left; }
.footer__contact a,
.footer__contact span {
  display: inline-flex;
  align-items: flex-start;
  gap: 12px;
  word-break: break-word;
}
.footer__contact .ico,
.footer__contact .ico-wa { flex: none; width: 17px; height: 17px; margin-top: 2px; color: var(--gold); }

.footer__giant {
  overflow: hidden;
  padding-bottom: 10px;
  line-height: .85;
  text-align: center;
  white-space: nowrap;
}
.footer__giant span {
  display: inline-block;
  font-family: var(--font-serif);
  font-size: clamp(36px, 12vw, 220px);
  font-weight: 300;
  letter-spacing: -.02em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(185, 143, 95, .28);
  background: var(--gold-grad);
  background-size: 0% 100%;
  background-repeat: no-repeat;
  -webkit-background-clip: text;
          background-clip: text;
  transition: background-size 1.6s var(--ease-in-out);
}
.footer__giant:hover span { background-size: 100% 100%; }
.footer__giant .gl { display: inline-block; }

.footer__bottom {
  padding-right: 84px !important;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px 32px;
  padding: 28px 0 36px;
  border-top: 1px solid var(--ivory-12);
  font-size: 12px;
  color: var(--ivory-50);
}
.footer__bottom p { margin: 0; }
.footer__legal { flex: 1; text-align: center; }
.to-top {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(185, 143, 95, .4);
  color: var(--gold-light);
  transition: background-color .5s, color .5s;
}
.to-top .ico { width: 18px; height: 18px; transform: rotate(-90deg); transition: transform .6s var(--ease-out); }
.to-top:hover { background: var(--gold); color: var(--navy-900); }
.to-top:hover .ico { transform: rotate(-90deg) translateX(3px); }

/* =========================================================
   PÁGINA DE SERVICIO
   ========================================================= */
.phero {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: min(100svh, 940px);
  overflow: hidden;
  background: var(--navy-900);
}
.phero__inner {
  position: relative;
  flex: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  align-items: center;
  gap: 60px;
  padding-top: calc(var(--header-h) + clamp(40px, 7vh, 80px));
  padding-bottom: clamp(56px, 8vh, 96px);
}
.crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ivory-50);
}
.crumbs a { transition: color .3s; }
.crumbs a:hover { color: var(--gold-light); }
.crumbs span[aria-hidden] { color: var(--gold); }
.crumbs [aria-current] { color: var(--ivory); }

.phero__title {
  margin: 24px 0 0;
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(34px, min(4.9vw, 8.6vh), 82px);
  line-height: 1.02;
  letter-spacing: .005em;
  text-transform: uppercase;
}
.phero__title strong {
  font-weight: 600;
  background: var(--gold-grad);
  background-size: 200% 100%;
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  animation: goldShift 6s ease-in-out infinite alternate;
}
.phero__lead {
  max-width: 580px;
  margin: 28px 0 0;
  font-size: clamp(15px, 1.15vw, 17px);
  font-weight: 300;
  line-height: 1.8;
  color: var(--ivory-70);
}
.link-wa--light { color: var(--ivory-70); }
.phero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 40px;
}
.phero__tags li {
  padding: 8px 16px;
  font-size: 12px;
  border: 1px solid var(--ivory-12);
  border-radius: 999px;
  color: var(--ivory-70);
}

/* Emblema */
.emblem {
  position: relative;
  justify-self: center;
  width: min(100%, 460px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}
.emblem__ring--outer {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(185, 143, 95, .3);
}
.emblem__dash,
.emblem__text {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.emblem__dash circle {
  fill: none;
  stroke: rgba(185, 143, 95, .35);
  stroke-width: 1;
  stroke-dasharray: 2 8;
}
.emblem__dash { animation: spin 80s linear infinite reverse; }
.emblem__text { animation: spin 40s linear infinite; }
.emblem__text text {
  font-family: var(--font-sans);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: .14em;
  fill: var(--ivory-50);
}
.emblem__core {
  position: relative;
  display: grid;
  place-items: center;
  width: 52%;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 25%, rgba(216, 181, 132, .25), transparent 60%),
    linear-gradient(160deg, var(--navy-800), var(--navy-950));
  border: 1px solid rgba(185, 143, 95, .45);
  box-shadow: 0 40px 90px -30px rgba(0, 0, 0, .8), inset 0 0 60px rgba(185, 143, 95, .08);
  color: var(--gold-light);
}
.emblem__core .ico { width: 42%; height: 42%; stroke-width: .9; }
.emblem__num {
  position: absolute;
  bottom: 16%;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .3em;
  color: var(--ivory-50);
}
.emblem__orbit {
  position: absolute;
  inset: 0;
  animation: spin 14s linear infinite;
}
.emblem__orbit i {
  position: absolute;
  top: -4px;
  left: 50%;
  width: 8px;
  height: 8px;
  margin-left: -4px;
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 16px var(--gold-light);
}

/* Cuerpo del servicio */
.subsvc { padding-bottom: 0; }
.svc--after-subs .svc__grid {
  padding-top: clamp(80px, 9vw, 140px);
  border-top: 1px solid var(--ink-12);
}
.svc--after-subs { padding-top: clamp(80px, 9vw, 140px); }

.svc__grid {
  display: grid;
  grid-template-columns: 290px minmax(0, 1fr);
  gap: clamp(48px, 7vw, 120px);
}
.svc__sticky { position: sticky; top: 110px; }
.svc__toc-title {
  margin: 0 0 16px;
  font-size: 10px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold-ink);
}
.toc { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--ink-12); }
.toc a {
  position: relative;
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 13px 0 13px 0;
  border-bottom: 1px solid var(--ink-12);
  font-size: 14px;
  color: var(--ink-70);
  transition: color .4s, padding .6s var(--ease-out);
}
.toc em {
  font-style: normal;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .14em;
  color: var(--ink-50);
}
.toc a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 14px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .6s var(--ease-out);
}
.toc a:hover,
.toc a.is-active { color: var(--ink); padding-left: 24px; }
.toc a:hover::before,
.toc a.is-active::before { transform: scaleX(1); }
.toc a.is-active em { color: var(--gold-ink); }

.aside-card {
  position: relative;
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  column-gap: 16px;
  margin-top: 28px;
  padding: 26px 26px 28px;
  background: var(--navy-900);
  color: var(--ivory);
  overflow: hidden;
}
.aside-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold-grad);
}
.aside-card__img {
  grid-row: span 2;
  display: block;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(185, 143, 95, .5);
}
.aside-card__img img { width: 100%; height: 100%; object-fit: cover; object-position: 66% 30%; transform: scale(1.6); transform-origin: 66% 30%; }
.aside-card__kicker { align-self: end; margin: 0; font-size: 9.5px; letter-spacing: .24em; text-transform: uppercase; color: var(--gold-light); }
.aside-card__title { align-self: start; margin: 4px 0 0; font-family: var(--font-serif); font-size: 19px; font-weight: 500; line-height: 1.2; }
.aside-card .btn { grid-column: 1 / -1; justify-self: start; margin-top: 22px; }

/* El panel lateral siempre entra completo en pantallas bajas */
@media (max-height: 760px) {
  .svc__sticky { top: 92px; }
  .toc a { padding: 10px 0; font-size: 13.5px; }
  .aside-card { margin-top: 20px; padding: 22px 22px 24px; }
  .aside-card .btn { margin-top: 18px; }
}

.svc-block + .svc-block { margin-top: clamp(80px, 9vw, 130px); }
.svc-block__lead {
  margin: 30px 0 0;
  max-width: 760px;
  font-family: var(--font-serif);
  font-size: clamp(22px, 1.9vw, 27px);
  line-height: 1.45;
  color: var(--ink);
}
.svc-block__text {
  margin: 20px 0 0;
  max-width: 760px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--ink-70);
}

.claims {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 44px;
  border-top: 1px solid var(--ink-12);
  border-left: 1px solid var(--ink-12);
}
.claim {
  --x: 50%;
  --y: 50%;
  position: relative;
  padding: 32px 32px 34px;
  background: var(--card);
  border-right: 1px solid var(--ink-12);
  border-bottom: 1px solid var(--ink-12);
  overflow: hidden;
  transition: background-color .5s;
}
.claim::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(300px circle at var(--x) var(--y), rgba(185, 143, 95, .16), transparent 65%);
  opacity: 0;
  transition: opacity .5s;
}
.claim:hover::before { opacity: 1; }
.claim::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--gold-grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .8s var(--ease-out);
}
.claim:hover::after { transform: scaleX(1); }
.claim__icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(143, 107, 67, .35);
  color: var(--gold-ink);
  transition: background-color .5s, color .5s, border-color .5s;
}
.claim__icon .ico { width: 17px; height: 17px; stroke-width: 1.8; }
.claim:hover .claim__icon { background: var(--navy-900); border-color: var(--navy-900); color: var(--gold-light); }
.claim h3 {
  position: relative;
  margin: 14px 0 8px;
  font-family: var(--font-serif);
  font-size: 25px;
  font-weight: 500;
  line-height: 1.15;
}
.claim p {
  position: relative;
  margin: 0;
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--ink-70);
}

.checklist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 32px;
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
}
.checklist li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--ink-12);
  font-size: 15px;
  color: var(--ink);
}
.checklist li > span {
  flex: none;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(143, 107, 67, .35);
  color: var(--gold-ink);
}
.checklist .ico { width: 18px; height: 18px; }
.checklist--boxed li > span { background: var(--navy-900); border-color: var(--navy-900); color: var(--gold-light); }

/* Proceso vertical (páginas de servicio) */
.process--vertical { margin-top: 44px; }
.process--vertical .process__track {
  left: 7px;
  right: auto;
  top: 8px;
  bottom: 8px;
  width: 1px;
  height: auto;
  background: var(--ink-12);
}
.process--vertical .process__fill { transform: scaleY(0); transform-origin: top; }
.process--vertical .process__list { grid-template-columns: 1fr; gap: 0; }
.process--vertical .process__step {
  position: relative;
  display: grid;
  grid-template-columns: 48px 90px 1fr;
  grid-template-areas: "dot num title" "dot num text";
  align-items: start;
  column-gap: 8px;
  padding: 0 0 44px;
}
.process--vertical .process__dot { grid-area: dot; background: var(--paper); box-shadow: 0 0 0 6px var(--paper); margin-top: 8px; }
.process--vertical .process__num { grid-area: num; margin: 0; font-size: 52px; -webkit-text-stroke-color: rgba(143, 107, 67, .6); }
.process--vertical h3 { grid-area: title; margin: 6px 0 6px; color: var(--ink); }
.process--vertical p { grid-area: text; color: var(--ink-70); max-width: 560px; }

/* Otros servicios */
.related {
  background: var(--paper-2);
  color: var(--ink);
}
.related .eyebrow { color: var(--gold-ink); }
.related .eyebrow__line { background: var(--gold-ink); }
.related .h2 strong { background: var(--gold-grad-dark); -webkit-background-clip: text; background-clip: text; }
.related .link-arrow { justify-self: end; color: var(--ink-70); }
.related .link-arrow:hover { color: var(--ink); }
.related .link-arrow__circle { border-color: var(--ink-12); }
.related .link-arrow__circle .ico { width: 16px; height: 16px; color: var(--gold-ink); }
/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1280px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 1180px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .subsvc { padding-bottom: 0; }
.svc--after-subs .svc__grid {
  padding-top: clamp(80px, 9vw, 140px);
  border-top: 1px solid var(--ink-12);
}
.svc--after-subs { padding-top: clamp(80px, 9vw, 140px); }

.svc__grid { grid-template-columns: 1fr; }
  .svc__aside { display: none; }
}

@media (max-width: 960px) {
  .section-head--split,
  .about__grid,
  .faq__grid,
  .contact__grid,
  .cta-band__inner,
  .phero__inner { grid-template-columns: 1fr; }
  .section-head__lead { justify-self: start; }
  .about__media { max-width: 560px; }
  .process__list { grid-template-columns: repeat(2, 1fr); row-gap: 56px; }
  .process:not(.process--vertical) .process__track { display: none; }
  .faq__sticky { position: static; }
  .cta-band__mono { opacity: .5; }
  .emblem { width: min(80%, 360px); order: -1; justify-self: start; }
  .phero__inner { padding-top: calc(var(--header-h) + 30px); gap: 40px; }
  .phero .emblem { display: none; }
  .footer__map-shade { background: linear-gradient(180deg, rgba(8, 14, 25, .3), rgba(8, 14, 25, .2) 40%, var(--navy-950) 100%); }
  .footer__map-inner { align-items: flex-end; padding-bottom: 24px; }
}

@media (max-width: 640px) {
  .svc-grid,
  .svc-grid--2,
  .claims,
  .checklist,
  .cform__grid,
  .footer__grid { grid-template-columns: 1fr; }
  .svc-card { min-height: 0; padding: 30px 24px 26px; }
  .process__list { grid-template-columns: 1fr; }
  .about__media { padding: 0 0 40px 28px; }
  .about__frame { top: 28px; right: 28px; }
  .about__stamp { padding: 16px 18px; }
  .about__stamp strong { font-size: 18px; }
  .about__vertical { display: none; }
  .acc-trigger { grid-template-columns: 1fr 44px; }
  .acc-trigger__num { display: none; }
  .acc-panel p { padding: 0 0 26px; }
  .process--vertical .process__step { grid-template-columns: 36px 1fr; grid-template-areas: "dot num" "dot title" "dot text"; }
  .process--vertical .process__num { font-size: 40px; }
  .footer__legal { text-align: left; }
  .contact__item strong { font-size: 18px; }
  .footer__map { height: 460px; }
  .map-card { padding: 24px; }
}
