.hero {
  position: relative;
  min-height: 100vh;
  background: var(--midnight);
  color: var(--ivo);
  overflow: hidden;
  isolation: isolate;
  padding-top: 120px;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      120% 80% at 80% 30%,
      rgba(208, 182, 140, 0.08),
      transparent 60%
    ),
    radial-gradient(
      80% 60% at 10% 90%,
      rgba(14, 34, 56, 0.85),
      transparent 60%
    ),
    linear-gradient(180deg, var(--midnight) 0%, var(--navy) 100%);
  z-index: -2;
}
.hero__grain {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  pointer-events: none;
  z-index: -1;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 .9 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}
.hero__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 40px var(--pad-x) 120px;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  min-height: calc(100vh - 120px);
}
.hero--fullbleed .hero__grid {
  display: block;
  padding: 0;
  position: relative;
}
.hero--fullbleed .hero__portrait {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero--fullbleed .hero__portrait .ph {
  height: 100%;
  aspect-ratio: auto;
  opacity: 0.45;
}
.hero--fullbleed .hero__portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(1, 12, 28, 0.4) 0%,
      rgba(1, 12, 28, 0.78) 60%,
      rgba(1, 12, 28, 0.9) 100%
    ),
    linear-gradient(
      90deg,
      rgba(1, 12, 28, 0.85) 0%,
      rgba(1, 12, 28, 0.5) 50%,
      rgba(1, 12, 28, 0.3) 100%
    );
}
.hero--fullbleed .hero__copy {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 0 var(--pad-x);
  min-height: calc(100vh - 120px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 32px;
}
.hero__eyebrow .dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}
.hero__h1 {
  margin: 0 0 28px;
  max-width: 14ch;
}
.hero__sub {
  margin: 0 0 40px;
  max-width: 52ch;
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.hero__meta {
  position: absolute;
  left: var(--pad-x);
  bottom: 36px;
  display: flex;
  align-items: center;
  gap: 18px;
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--ivo-45);
  text-transform: uppercase;
}
.hero__meta .num {
  color: var(--gold);
  font-weight: 500;
}
.hero__meta .dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--ivo-22);
  flex: 0 0 auto;
}
.hero__scroll {
  position: absolute;
  right: var(--pad-x);
  bottom: 36px;
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--ivo-45);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero__scroll .line {
  width: 36px;
  height: 1px;
  background: var(--gold);
}
.hero__portrait {
  position: relative;
}
.hero__portrait .ph {
  aspect-ratio: 4/5;
  background: var(--navy-2);
}
.hero__frame {
  position: absolute;
  left: -16px;
  top: -16px;
  right: 24px;
  bottom: 24px;
  border: 1px solid var(--gold);
  opacity: 0.35;
  pointer-events: none;
}
.hero__sub {
  margin-top: 32px;
}

@media (max-width: 880px) {
  .hero__grid {
    grid-template-columns: 1fr;
    padding-bottom: 80px;
  }
  .hero__meta,
  .hero__scroll {
    position: static;
    margin-top: 24px;
  }
}

.credband {
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}
.credband__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  align-items: center;
  list-style: none;
  padding: 0;
}
.credband__item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 8px 0;
}
.credband__icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--gold-2);
  border: 1px solid var(--gold);
  border-radius: 50%;
  flex: 0 0 auto;
}
.credband__icon svg {
  width: 22px;
  height: 22px;
}
.credband__n {
  display: block;
  font-family: var(--ff-sans);
  font-size: 28px;
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--ink);
}
.credband__l {
  font-size: 13.5px;
  color: var(--ink-60);
  line-height: 1.35;
  margin: 0;
}
@media (max-width: 880px) {
  .credband__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

.criterio__head {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(40px, 6vw, 80px);
  align-items: end;
  margin-bottom: clamp(56px, 7vw, 96px);
}
@media (max-width: 880px) {
  .criterio__head {
    grid-template-columns: 1fr;
  }
}
.criterio__eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 28px;
}
.criterio__eyebrow .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid var(--gold-2);
}
.criterio__h2 {
  margin: 0;
}
.criterio__pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line-dark);
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (max-width: 880px) {
  .criterio__pillars {
    grid-template-columns: 1fr;
  }
}
.criterio__pillar {
  padding: 44px 36px 44px 0;
  border-right: 1px solid var(--line-dark);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.criterio__pillar:last-child {
  border-right: 0;
  padding-right: 0;
}
@media (min-width: 881px) {
  .criterio__pillar:not(:first-child) {
    padding-left: 36px;
  }
}
@media (max-width: 880px) {
  .criterio__pillar {
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
    padding: 28px 0;
  }
  .criterio__pillar:last-child {
    border-bottom: 0;
  }
}
.criterio__pn {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--gold-2);
  text-transform: uppercase;
}
.criterio__pic {
  width: 48px;
  height: 48px;
  color: var(--gold-2);
}
.criterio__pic svg {
  width: 100%;
  height: 100%;
}
.criterio__pt {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 0;
}
.criterio__px {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-60);
  margin: 0;
}

.procs__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: clamp(48px, 6vw, 80px);
}
@media (max-width: 880px) {
  .procs__head {
    flex-direction: column;
    align-items: flex-start;
  }
}
.procs__h2 {
  margin: 16px 0 0;
  max-width: 18ch;
}
.procs__intro {
  max-width: 38ch;
}

/* CARDS layout */
.procs__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
@media (max-width: 1180px) {
  .procs__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 720px) {
  .procs__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .procs__grid {
    grid-template-columns: 1fr;
  }
}
.procs__card {
  display: flex;
  flex-direction: column;
  background: var(--ivory);
  transition:
    transform 380ms ease,
    box-shadow 380ms ease;
  text-decoration: none;
  color: inherit;
}
.procs__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(1, 12, 28, 0.08);
}
.procs__card .ph {
  aspect-ratio: 4/5;
}
.procs__card-body {
  padding: 22px 22px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.procs__card-n {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--gold-2);
  text-transform: uppercase;
}
.procs__card-t {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.005em;
  margin: 0;
  line-height: 1.22;
}
.procs__card-x {
  font-size: 13.5px;
  color: var(--ink-60);
  margin: 0;
  line-height: 1.55;
  flex: 1;
}
.procs__card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--ink-60);
  padding-top: 8px;
  border-top: 1px solid var(--line-dark);
  margin-top: 4px;
}
.procs__card:hover .procs__card-link {
  color: var(--gold-2);
}

/* EDITORIAL list layout */
.procs__list {
  border-top: 1px solid var(--line-dark);
}
.procs__row {
  display: grid;
  grid-template-columns: 100px minmax(0, 1.2fr) minmax(0, 1.6fr) 160px;
  gap: 32px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid var(--line-dark);
  text-decoration: none;
  color: inherit;
  transition:
    padding 320ms ease,
    background 320ms ease;
}
.procs__row:hover {
  padding-left: 8px;
}
.procs__row .ph {
  aspect-ratio: 1/1;
  max-width: 120px;
}
.procs__row-n {
  font-family: var(--ff-sans);
  font-weight: 300;
  font-size: clamp(40px, 4vw, 64px);
  color: var(--gold-2);
  line-height: 1;
  letter-spacing: -0.02em;
}
.procs__row-t {
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 400;
  margin: 0;
  letter-spacing: -0.01em;
}
.procs__row-x {
  font-size: 15px;
  color: var(--ink-60);
  margin: 0;
  line-height: 1.55;
}
.procs__row-go {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--ink-45);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-end;
}
@media (max-width: 880px) {
  .procs__row {
    grid-template-columns: 70px minmax(0, 1fr);
  }
  .procs__row .ph,
  .procs__row-go {
    display: none;
  }
}

.procs__foot {
  margin-top: 48px;
  text-align: center;
}

.quote-sec {
  padding-top: 0;
}
.quote {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(40px, 6vw, 80px);
  align-items: stretch;
  background: var(--ivory);
  padding: clamp(48px, 6vw, 80px);
  position: relative;
}
@media (max-width: 880px) {
  .quote {
    grid-template-columns: 1fr;
    padding: 40px;
  }
}
.quote .ph {
  height: 100%;
  aspect-ratio: 4/5;
  min-height: 380px;
}
.quote__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
}
.quote__mark {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 88px;
  line-height: 0.6;
  color: var(--gold);
  height: 28px;
}
.quote__text {
  font-family: var(--ff-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.32;
  color: var(--ink);
  margin: 0;
  letter-spacing: -0.005em;
}
[data-display="sans"] .quote__text {
  font-family: var(--ff-sans);
  font-style: normal;
  font-weight: 300;
}
.quote__attr {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-60);
  margin: 0;
}
.quote__attr b {
  color: var(--ink);
  font-weight: 600;
}
.quote__attr .sep {
  width: 28px;
  height: 1px;
  background: var(--gold-2);
}

.metodo {
  position: relative;
  overflow: hidden;
}
.metodo__head {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(40px, 6vw, 80px);
  align-items: end;
  margin-bottom: clamp(64px, 8vw, 100px);
}
@media (max-width: 880px) {
  .metodo__head {
    grid-template-columns: 1fr;
  }
}
.metodo__h2 {
  margin: 16px 0 0;
  max-width: 14ch;
  color: var(--ivo);
}

.metodo__rail {
  position: relative;
  padding: 50px 0 0;
}
.metodo__line {
  position: absolute;
  top: 22px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--ivo-22);
}
.metodo__line::before {
  content: "";
  position: absolute;
  left: 0;
  top: -5px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: transparent;
}
.metodo__line::after {
  content: "";
  position: absolute;
  right: 0;
  top: -5px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--gold);
}
.metodo__steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (max-width: 1100px) {
  .metodo__steps {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 64px;
  }
}
@media (max-width: 600px) {
  .metodo__steps {
    grid-template-columns: repeat(2, 1fr);
  }
}
.metodo__step {
  position: relative;
  padding: 0 18px 0 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.metodo__node {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--midnight);
  border: 1px solid var(--gold);
  color: var(--gold);
  display: grid;
  place-items: center;
  font-family: var(--ff-mono);
  font-size: 12px;
  letter-spacing: 0.05em;
  font-weight: 500;
  margin-top: -22px;
  position: relative;
  z-index: 2;
  transition:
    background 240ms ease,
    color 240ms ease;
}
.metodo__step:hover .metodo__node {
  background: var(--gold);
  color: var(--midnight);
}
.metodo__step-t {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.005em;
  margin: 0;
  color: var(--ivo);
}
.metodo__step-x {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ivo-70);
  margin: 0;
}

.doctor__grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: stretch;
}
@media (max-width: 880px) {
  .doctor__grid {
    grid-template-columns: 1fr;
  }
}

.doctor__media {
  position: relative;
}
.doctor__media .ph {
  aspect-ratio: 4/5;
  width: 100%;
  min-height: 320px;
}
.doctor__sigil {
  position: absolute;
  right: -16px;
  top: -16px;
  width: 96px;
  height: 96px;
  background: var(--gold);
  color: var(--midnight);
  display: grid;
  place-items: center;
  font-family: var(--ff-sans);
  font-weight: 300;
  font-size: 48px;
  letter-spacing: -0.04em;
  line-height: 1;
  z-index: 2;
}
.doctor__sigil small {
  font-family: var(--ff-mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: block;
  margin-top: 4px;
}
@media (max-width: 880px) {
  .doctor__sigil {
    right: 0;
    top: -8px;
  }
}

.doctor__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 32px;
}
.doctor__h2 {
  margin: 16px 0 0;
  max-width: 18ch;
}
.doctor__copy p {
  margin: 0 0 16px;
  font-size: 17px;
  line-height: 1.62;
  color: var(--ink-60);
}
.doctor__copy p strong {
  color: var(--ink);
  font-weight: 600;
}

.doctor__creds {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin-top: 12px;
  border-top: 1px solid var(--line-dark);
}
@media (max-width: 540px) {
  .doctor__creds {
    grid-template-columns: 1fr;
  }
}
.doctor__cred {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 18px 18px 0;
  border-bottom: 1px solid var(--line-dark);
}
.doctor__cred:nth-child(odd) {
  border-right: 1px solid var(--line-dark);
  padding-right: 24px;
}
.doctor__cred:nth-child(even) {
  padding-left: 24px;
}
@media (max-width: 540px) {
  .doctor__cred {
    padding-left: 0 !important;
    padding-right: 0 !important;
    border-right: 0 !important;
  }
}
.doctor__cred svg {
  width: 22px;
  height: 22px;
  color: var(--gold-2);
  flex: 0 0 auto;
}
.doctor__cred span {
  font-size: 14.5px;
  color: var(--ink);
  font-weight: 500;
}

.doctor__cta {
  margin-top: 8px;
}

.intl {
  position: relative;
  overflow: hidden;
}
.intl__bg {
  position: absolute;
  right: -10%;
  top: -20%;
  width: 60%;
  aspect-ratio: 1/1;
  background: radial-gradient(
    circle,
    rgba(208, 182, 140, 0.12),
    transparent 65%
  );
  z-index: 0;
}
.intl__container {
  position: relative;
  z-index: 1;
}
.intl__head {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(40px, 6vw, 80px);
  align-items: end;
  margin-bottom: clamp(56px, 7vw, 88px);
}
@media (max-width: 880px) {
  .intl__head {
    grid-template-columns: 1fr;
  }
}
.intl__h2 {
  margin: 16px 0 0;
  max-width: 16ch;
  color: var(--ivo);
}

.intl__cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--ivo-22);
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (max-width: 980px) {
  .intl__cols {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 520px) {
  .intl__cols {
    grid-template-columns: 1fr;
  }
}
.intl__col {
  padding: 40px 32px 40px 0;
  border-right: 1px solid var(--ivo-22);
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform 320ms ease;
}
.intl__col:hover {
  transform: translateY(-2px);
}
.intl__col:last-child {
  border-right: 0;
  padding-right: 0;
}
@media (min-width: 881px) {
  .intl__col:not(:first-child) {
    padding-left: 32px;
  }
}
@media (max-width: 980px) {
  .intl__col {
    border-right: 0;
    border-bottom: 1px solid var(--ivo-22);
    padding: 32px 0;
  }
  .intl__col:last-child {
    border-bottom: 0;
  }
}
.intl__icon {
  width: 36px;
  height: 36px;
  color: var(--gold);
}
.intl__icon svg {
  width: 100%;
  height: 100%;
}
.intl__t {
  font-size: 20px;
  font-weight: 500;
  color: var(--ivo);
  margin: 0;
  letter-spacing: -0.005em;
}
.intl__x {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ivo-70);
  margin: 0;
}

.intl__foot {
  margin-top: clamp(48px, 6vw, 72px);
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.intl__foot .note {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ivo-45);
}

.faq__head {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(40px, 6vw, 80px);
  margin-bottom: clamp(48px, 6vw, 72px);
  align-items: end;
}
@media (max-width: 880px) {
  .faq__head {
    grid-template-columns: 1fr;
  }
}
.faq__h2 {
  margin: 16px 0 0;
  max-width: 14ch;
}
.faq__list {
  border-top: 1px solid var(--line-dark);
}
.faq__item {
  border-bottom: 1px solid var(--line-dark);
}
.faq__btn {
  width: 100%;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 32px;
  gap: 24px;
  align-items: center;
  padding: 28px 0;
  text-align: left;
  color: var(--ink);
  transition: padding 280ms ease;
}
.faq__btn:hover {
  padding-left: 6px;
}
.faq__n {
  font-family: var(--ff-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--gold-2);
}
.faq__q {
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 500;
  letter-spacing: -0.005em;
}
.faq__pic {
  width: 24px;
  height: 24px;
  color: var(--ink-60);
  justify-self: end;
}
.faq__pic svg {
  width: 100%;
  height: 100%;
  transition: transform 320ms ease;
}
details[open].faq__item .faq__pic svg {
  transform: rotate(45deg);
  color: var(--gold-2);
}
.faq__btn {
  list-style: none;
  cursor: pointer;
}
.faq__btn::-webkit-details-marker {
  display: none;
}
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 380ms cubic-bezier(0.2, 0.6, 0.2, 1);
}
.faq__a-inner {
  padding: 0 56px 32px 72px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-60);
  max-width: 70ch;
}
details[open].faq__item .faq__a {
  max-height: 400px;
}
@media (max-width: 600px) {
  .faq__a-inner {
    padding-left: 0;
    padding-right: 0;
  }
}

.contacto {
  position: relative;
  overflow: hidden;
}
.contacto__bg {
  position: absolute;
  left: -10%;
  bottom: -20%;
  width: 50%;
  aspect-ratio: 1/1;
  background: radial-gradient(
    circle,
    rgba(208, 182, 140, 0.1),
    transparent 60%
  );
  z-index: 0;
}
.contacto__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
@media (max-width: 980px) {
  .contacto__grid {
    grid-template-columns: 1fr;
  }
}
.contacto__h2 {
  margin: 16px 0 32px;
  max-width: 14ch;
  color: var(--ivo);
}
.contacto__sub {
  margin-bottom: 40px;
}
.contacto__trust {
  display: grid;
  gap: 14px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--ivo-22);
  list-style: none;
  padding-left: 0;
}
.contacto__trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  color: var(--ivo-70);
}
.contacto__check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: grid;
  place-items: center;
  color: var(--gold);
}
.contacto__check svg {
  width: 12px;
  height: 12px;
  stroke-width: 1.6;
}

.contacto__card {
  background: var(--ivory);
  color: var(--ink);
  padding: clamp(32px, 4vw, 48px);
  position: relative;
}
.contacto__card::before {
  content: "";
  position: absolute;
  left: -1px;
  top: -1px;
  width: 40px;
  height: 40px;
  border-top: 1px solid var(--gold);
  border-left: 1px solid var(--gold);
}
.contacto__form-eyebrow {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin: 0 0 16px;
}
.contacto__form-t {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.005em;
  margin: 0 0 24px;
}
.field {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
.field label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-60);
  margin-bottom: 8px;
  font-weight: 500;
}
.field input,
.field select {
  appearance: none;
  font: inherit;
  font-size: 15px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--ink-25);
  padding: 8px 0 10px;
  color: var(--ink);
  border-radius: 0;
  transition: border-color 200ms ease;
}
.field input:focus,
.field select:focus {
  outline: none;
  border-bottom-color: var(--gold-2);
}
.field input::placeholder {
  color: var(--ink-25);
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 600px) {
  .field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.contacto__submit {
  width: 100%;
  justify-content: center;
  margin-top: 12px;
}
.contacto__legal {
  font-size: 11.5px;
  color: var(--ink-45);
  margin-top: 16px;
  line-height: 1.5;
  text-align: center;
}
.contacto__sent {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  padding: 32px 0;
}
.contacto__sent .ring {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: grid;
  place-items: center;
  color: var(--gold-2);
}

.contacto__card--wa {
  padding: 0;
}
.contacto__wa-photo {
  margin: 0;
  overflow: hidden;
  aspect-ratio: 16/9;
}
.contacto__wa-photo img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center 18%;
  display: block;
}
.contacto__wa-body {
  padding: clamp(28px, 3vw, 40px);
}
.contacto__wa-desc {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-60);
  margin: 0 0 28px;
}
.contacto__wa-btn {
  width: 100%;
  justify-content: center;
  gap: 10px;
}
.contacto__wa-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.contacto__wa-trust {
  margin: 16px 0 0;
  font-size: 11.5px;
  color: var(--ink-45);
  text-align: center;
  line-height: 1.5;
}

.footer {
  background: var(--midnight);
  color: var(--ivo-70);
  padding: clamp(64px, 8vw, 96px) var(--pad-x) 32px;
  border-top: 1px solid var(--ivo-22);
}
.footer__top {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 3fr) minmax(0, 3fr);
  gap: 60px;
  padding-bottom: 56px;
}
@media (max-width: 880px) {
  .footer__top {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.footer__brand .logo {
  height: 56px;
  margin-bottom: 28px;
  display: inline-block;
}
.icon--sm {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.footer__tag {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 22px;
  color: var(--ivo);
  margin: 24px 0;
  line-height: 1.3;
  max-width: 30ch;
}
[data-display="sans"] .footer__tag {
  font-family: var(--ff-sans);
  font-style: normal;
  font-weight: 300;
}
.footer__col h4 {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  margin: 0 0 20px;
  font-weight: 500;
}
.footer__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}
.footer__col a {
  font-size: 14.5px;
  transition: color 200ms ease;
}
.footer__col a:hover {
  color: var(--ivo);
}
.footer__bottom {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-top: 32px;
  border-top: 1px solid var(--ivo-22);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ivo-45);
}
.footer__bottom a:hover {
  color: var(--ivo);
}
.footer__social {
  display: flex;
  gap: 22px;
}
