:root {
  --ink: #0a0a09;
  --ink-2: #11110f;
  --ink-3: #181815;
  --paper: #f1ede4;
  --paper-2: #e8e1d4;
  --white: #fffdf8;
  --muted: #a8a398;
  --gold: #d9a92f;
  --gold-bright: #edc659;
  --gold-dark: #8b6716;
  --green: #24c866;
  --line-dark: rgba(255, 255, 255, 0.12);
  --line-light: rgba(18, 17, 14, 0.15);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
  --radius: 1.5rem;
  --shell: 1200px;
  --header-h: 82px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 18px);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body:has(dialog[open]) {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button,
select {
  cursor: pointer;
}

button {
  color: inherit;
}

svg {
  display: block;
  width: 1.2em;
  height: 1.2em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 780px;
  margin-bottom: 1.6rem;
  font-size: clamp(3.4rem, 7vw, 6.2rem);
  line-height: 0.97;
}

h2 {
  margin-bottom: 1.25rem;
  font-size: clamp(2.55rem, 5vw, 4.6rem);
  line-height: 1.02;
}

h3 {
  font-size: 1.7rem;
  line-height: 1.14;
}

::selection {
  background: var(--gold);
  color: var(--ink);
}

:focus-visible {
  outline: 3px solid var(--gold-bright);
  outline-offset: 4px;
}

.shell {
  width: min(calc(100% - 2rem), var(--shell));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.7rem 1rem;
  transform: translateY(-150%);
  border-radius: 0.5rem;
  background: var(--gold);
  color: var(--ink);
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: var(--header-h);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(10, 10, 9, 0.86);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(10, 10, 9, 0.97);
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.28);
}

.header-inner {
  display: flex;
  height: 100%;
  align-items: center;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 62px;
  padding: 0;
}

.brand img {
  width: 172px;
  height: 58px;
  object-fit: cover;
  object-position: center;
  mix-blend-mode: screen;
  filter: invert(1) hue-rotate(180deg) saturate(1.2) brightness(1.08) drop-shadow(0 0 12px rgba(217, 169, 47, 0.12));
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 1.8vw, 1.7rem);
  margin-left: auto;
}

.desktop-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -0.45rem;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  background: var(--gold);
  content: "";
  transition: transform 180ms ease;
}

.desktop-nav a:hover {
  color: var(--white);
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
}

.header-cta {
  flex: 0 0 auto;
  padding: 0.68rem 1.05rem;
  border: 1px solid rgba(217, 169, 47, 0.55);
  border-radius: 999px;
  color: var(--gold-bright);
  font-size: 0.8rem;
  font-weight: 800;
  transition: background 180ms ease, color 180ms ease;
}

.header-cta:hover {
  background: var(--gold);
  color: var(--ink);
}

.menu-toggle,
.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  padding-top: var(--header-h);
  background:
    radial-gradient(circle at 72% 42%, rgba(217, 169, 47, 0.13), transparent 31rem),
    var(--ink);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.3;
  background-image:
    linear-gradient(rgba(217, 169, 47, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(217, 169, 47, 0.16) 1px, transparent 1px);
  background-position: center;
  background-size: 76px 76px;
  mask-image: linear-gradient(to right, transparent 0%, black 62%, black 100%);
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 760px;
  align-items: center;
  gap: clamp(3rem, 6vw, 6rem);
  padding-block: 5rem 5.5rem;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
}

.hero-copy {
  max-width: 700px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.4rem;
  color: var(--gold-bright);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.2em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 2.5rem;
  height: 1px;
  background: currentColor;
}

.eyebrow-dark {
  color: var(--gold-dark);
}

.hero-lede {
  max-width: 650px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.7;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2.2rem;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.86rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 0.7rem;
  font-size: 0.91rem;
  font-weight: 850;
  line-height: 1.2;
  text-align: center;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-gold {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 16px 45px rgba(217, 169, 47, 0.13);
}

.button-gold:hover {
  background: var(--gold-bright);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.045);
  color: var(--white);
}

.button-ghost:hover {
  border-color: rgba(36, 200, 102, 0.55);
  background: rgba(36, 200, 102, 0.1);
}

.button-whatsapp {
  background: var(--green);
  color: white;
  box-shadow: 0 16px 45px rgba(36, 200, 102, 0.18);
}

.button-whatsapp:hover {
  background: #20b95e;
}

.button-block {
  width: 100%;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  margin: 2.2rem 0 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.84rem;
  list-style: none;
}

.hero-points li {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.hero-points svg {
  color: var(--gold);
}

.hero-profile {
  position: relative;
  align-self: center;
  min-height: 500px;
}

.hero-profile::before {
  position: absolute;
  inset: -1.25rem 1.5rem 1.5rem -1.25rem;
  border: 1px solid rgba(217, 169, 47, 0.22);
  border-radius: calc(var(--radius) + 0.35rem);
  content: "";
}

.team-statement {
  position: relative;
  min-height: 440px;
  padding: 3rem 2.6rem 7.5rem;
  overflow: hidden;
  border: 1px solid rgba(217, 169, 47, 0.3);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.055), transparent 42%),
    var(--ink-3);
  box-shadow: var(--shadow);
}

.team-statement::after {
  position: absolute;
  width: 18rem;
  height: 18rem;
  right: -9rem;
  bottom: -10rem;
  border: 1px solid rgba(217, 169, 47, 0.25);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 2rem rgba(217, 169, 47, 0.025), 0 0 0 5rem rgba(217, 169, 47, 0.02);
}

.hero-logo {
  width: min(100%, 335px);
  height: 116px;
  margin: -1rem 0 1.3rem -0.6rem;
  object-fit: cover;
  object-position: center;
  filter: invert(1) hue-rotate(180deg) saturate(1.2) brightness(1.08) drop-shadow(0 0 18px rgba(217, 169, 47, 0.14));
  mix-blend-mode: screen;
}

.team-statement h2 {
  max-width: 420px;
  margin-bottom: 1.8rem;
  font-size: clamp(2rem, 3vw, 2.75rem);
}

.team-statement ul {
  display: grid;
  gap: 0.68rem;
  margin: 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.82rem;
  list-style: none;
  grid-template-columns: 1fr 1fr;
}

.team-statement li {
  position: relative;
  padding-left: 1rem;
}

.team-statement li::before {
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

.portrait-frame {
  position: absolute;
  z-index: 2;
  bottom: 1.35rem;
  left: 2.6rem;
  display: grid;
  width: 270px;
  height: 82px;
  overflow: hidden;
  border: 1px solid rgba(217, 169, 47, 0.45);
  border-radius: 0.75rem;
  background: rgba(7, 7, 6, 0.94);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.45);
  grid-template-columns: 64px 1fr;
}

.portrait-frame img {
  width: 64px;
  height: 82px;
  object-fit: cover;
  object-position: center top;
}

.portrait-caption {
  align-self: center;
  padding: 0.7rem 0.8rem;
}

.portrait-caption strong,
.portrait-caption span {
  display: block;
}

.portrait-caption strong {
  color: white;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.15;
}

.portrait-caption span {
  margin-top: 0.22rem;
  color: var(--gold-bright);
  font-size: 0.53rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.decision-bar {
  border-block: 1px solid rgba(217, 169, 47, 0.16);
  background: var(--ink-2);
}

.decision-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.decision-grid > div {
  display: flex;
  min-height: 120px;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 2rem;
  border-left: 1px solid rgba(217, 169, 47, 0.13);
}

.decision-grid > div:last-child {
  border-right: 1px solid rgba(217, 169, 47, 0.13);
}

.decision-grid span {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
}

.decision-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.78rem;
}

.decision-grid strong {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--white);
  font-size: 0.88rem;
}

.section {
  padding-block: clamp(5rem, 9vw, 8.5rem);
}

.section-light,
.process-section,
.payments-section,
.faq-section {
  background: var(--paper);
  color: var(--ink);
}

.section-heading {
  max-width: 820px;
  margin: 0 auto 3.6rem;
  text-align: center;
}

.section-heading .eyebrow {
  justify-content: center;
}

.section-heading > p:last-child {
  max-width: 720px;
  margin: 0 auto;
  color: currentColor;
  opacity: 0.62;
  font-size: 1.06rem;
}

.section-heading-left {
  max-width: 740px;
  margin-inline: 0;
  text-align: left;
}

.section-heading-left .eyebrow {
  justify-content: flex-start;
}

.section-heading-left > p:last-child {
  margin-inline: 0;
}

.services-grid {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: var(--line-light);
  grid-template-columns: repeat(4, 1fr);
}

.service-card {
  position: relative;
  min-height: 355px;
  padding: 2rem 1.6rem;
  overflow: hidden;
  background: #f8f5ee;
  transition: background 200ms ease, transform 200ms ease;
}

.service-card::after {
  position: absolute;
  right: -3.5rem;
  bottom: -3.5rem;
  width: 7rem;
  height: 7rem;
  border: 1px solid rgba(139, 103, 22, 0.2);
  border-radius: 50%;
  content: "";
  transition: transform 250ms ease;
}

.service-card:hover {
  z-index: 1;
  background: white;
}

.service-card:hover::after {
  transform: scale(1.45);
}

.service-number {
  display: inline-block;
  margin-bottom: 3rem;
  color: var(--gold-dark);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.14em;
}

.service-card h3 {
  margin-bottom: 1rem;
  font-size: 1.85rem;
}

.service-card p {
  color: rgba(10, 10, 9, 0.63);
  font-size: 0.92rem;
}

.service-card small {
  position: absolute;
  right: 1.6rem;
  bottom: 1.7rem;
  left: 1.6rem;
  padding-top: 0.8rem;
  border-top: 1px solid var(--line-light);
  color: var(--gold-dark);
  font-size: 0.64rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  line-height: 1.4;
  text-transform: uppercase;
}

.profile-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 20%, rgba(217, 169, 47, 0.1), transparent 26rem),
    var(--ink-2);
}

.profile-layout {
  display: grid;
  align-items: start;
  gap: clamp(3rem, 7vw, 6rem);
  grid-template-columns: 1.05fr 0.95fr;
}

.profile-story > p:not(.eyebrow) {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.63);
  font-size: 1.03rem;
}

.team-map {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 2rem 0;
}

.team-map span {
  padding: 0.62rem 0.88rem;
  border: 1px solid rgba(217, 169, 47, 0.24);
  border-radius: 999px;
  background: rgba(217, 169, 47, 0.06);
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.72rem;
  font-weight: 750;
}

.profile-story blockquote {
  margin: 2rem 0 0;
  padding: 1.6rem 1.7rem;
  border: 1px solid rgba(217, 169, 47, 0.25);
  border-left: 3px solid var(--gold);
  border-radius: 0.8rem;
  background: rgba(217, 169, 47, 0.045);
}

.profile-story blockquote strong,
.profile-story blockquote span {
  display: block;
}

.profile-story blockquote strong {
  margin-bottom: 0.35rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 500;
}

.profile-story blockquote span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.91rem;
}

.credentials {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.18);
}

.credentials-header {
  padding: 2rem;
  border-bottom: 1px solid rgba(217, 169, 47, 0.2);
}

.credentials-header span {
  color: var(--gold);
  font-size: 0.67rem;
  font-weight: 850;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.credentials-header h3 {
  margin: 0.8rem 0 0.35rem;
  font-size: 2rem;
}

.credentials-header p {
  margin: 0;
  color: var(--gold-bright);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.credentials ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.credentials li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.05rem 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.88rem;
}

.credentials li:last-child {
  border-bottom: 0;
}

.credentials li span {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
}

.process-section {
  background:
    linear-gradient(90deg, transparent 49.9%, rgba(10, 10, 9, 0.045) 50%, transparent 50.1%),
    var(--paper);
}

.process-grid {
  display: grid;
  gap: 1.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
  grid-template-columns: repeat(3, 1fr);
}

.process-grid li {
  min-height: 320px;
  padding: 2rem;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.5);
}

.process-grid li > span {
  display: block;
  margin-bottom: 4rem;
  color: var(--gold-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.5rem;
  line-height: 1;
  opacity: 0.65;
}

.process-grid h3 {
  margin-bottom: 0.8rem;
  font-size: 1.75rem;
}

.process-grid p {
  color: rgba(10, 10, 9, 0.6);
  font-size: 0.92rem;
}

.urgent-section {
  position: relative;
  overflow: hidden;
  padding-block: 4rem;
  border-block: 1px solid rgba(36, 200, 102, 0.28);
  background:
    radial-gradient(circle at 85% 50%, rgba(36, 200, 102, 0.14), transparent 25rem),
    #0b1810;
}

.urgent-layout {
  display: grid;
  align-items: center;
  gap: 3rem;
  grid-template-columns: 1fr auto;
}

.urgent-layout > div {
  max-width: 820px;
}

.urgent-label {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.9rem;
  color: #5ce58f;
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.urgent-label span {
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(36, 200, 102, 0.1);
}

.urgent-layout h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
}

.urgent-layout p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
}

.consultation-section,
.trust-section,
.contact-section {
  background: var(--ink);
}

.consultation-grid {
  display: grid;
  max-width: 950px;
  gap: 1.25rem;
  margin: 0 auto;
  grid-template-columns: 1fr 1fr;
}

.consultation-card {
  padding: clamp(1.6rem, 4vw, 2.5rem);
  border: 1px solid rgba(217, 169, 47, 0.28);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(217, 169, 47, 0.06), transparent 38%),
    var(--ink-3);
}

.consultation-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.consultation-icon {
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  border: 1px solid rgba(217, 169, 47, 0.25);
  border-radius: 0.75rem;
  background: rgba(217, 169, 47, 0.08);
  color: var(--gold);
}

.consultation-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.duration {
  padding: 0.45rem 0.75rem;
  border: 1px solid rgba(217, 169, 47, 0.25);
  border-radius: 999px;
  color: var(--gold-bright);
  font-size: 0.7rem;
  font-weight: 800;
}

.consultation-card h3 {
  margin: 2rem 0 0.3rem;
  font-size: 2rem;
}

.consultation-card .price {
  display: flex;
  align-items: end;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.price strong {
  color: var(--gold-bright);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.3rem;
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1;
}

.price span {
  padding-bottom: 0.35rem;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.72rem;
  font-weight: 800;
}

.consultation-card > p:not(.price) {
  min-height: 4.8rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.91rem;
}

.consultation-note {
  display: flex;
  max-width: 950px;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin: 1rem auto 0;
  padding: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.76rem;
  text-align: center;
}

.consultation-note svg {
  flex: 0 0 auto;
  color: var(--gold);
}

.payments-section {
  background: var(--paper);
}

.payment-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, 1fr);
}

.payment-card {
  display: flex;
  min-height: 340px;
  flex-direction: column;
  padding: 2rem;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.55);
}

.payment-brand {
  display: grid;
  width: 3.2rem;
  height: 3.2rem;
  place-items: center;
  border-radius: 0.8rem;
  font-size: 1rem;
  font-weight: 900;
}

.payment-mp .payment-brand {
  background: rgba(0, 177, 234, 0.12);
  color: #0087b3;
}

.payment-paypal .payment-brand {
  background: rgba(0, 48, 135, 0.1);
  color: #003087;
}

.payment-oxxo .payment-brand {
  background: rgba(255, 101, 0, 0.11);
  color: #d95400;
}

.payment-card h3 {
  margin: 1.8rem 0 0.8rem;
  font-size: 2rem;
}

.payment-card p {
  color: rgba(10, 10, 9, 0.62);
  font-size: 0.91rem;
}

.payment-action {
  display: flex;
  width: 100%;
  min-height: 50px;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
  padding: 0.8rem 1rem;
  border: 1px solid var(--line-light);
  border-radius: 0.65rem;
  background: var(--ink);
  color: white;
  font-size: 0.82rem;
  font-weight: 800;
  transition: background 180ms ease, transform 180ms ease;
}

button.payment-action {
  font-family: inherit;
}

.payment-action:hover {
  transform: translateY(-2px);
  background: var(--ink-3);
}

.payment-reminder {
  display: grid;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
  padding: 1.25rem 1.4rem;
  border: 1px solid rgba(139, 103, 22, 0.3);
  border-radius: 0.8rem;
  background: rgba(217, 169, 47, 0.08);
  grid-template-columns: auto 1fr auto;
}

.payment-reminder > svg {
  color: var(--gold-dark);
}

.payment-reminder p {
  margin: 0;
  color: rgba(10, 10, 9, 0.66);
  font-size: 0.82rem;
}

.payment-reminder a {
  padding: 0.65rem 0.9rem;
  border-radius: 0.55rem;
  background: var(--green);
  color: white;
  font-size: 0.76rem;
  font-weight: 850;
}

.trust-section {
  background:
    linear-gradient(rgba(255, 255, 255, 0.015), rgba(255, 255, 255, 0.015)),
    var(--ink-2);
}

.trust-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, 1fr);
}

.trust-card {
  position: relative;
  min-height: 295px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.025);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.trust-card:hover {
  transform: translateY(-4px);
  border-color: rgba(217, 169, 47, 0.46);
  background: rgba(217, 169, 47, 0.04);
}

.trust-card > span {
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  border-radius: 0.75rem;
  background: rgba(217, 169, 47, 0.09);
  color: var(--gold);
}

.trust-card h3 {
  margin: 2rem 0 0.7rem;
  font-size: 1.8rem;
}

.trust-card p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.88rem;
}

.trust-card strong {
  position: absolute;
  right: 2rem;
  bottom: 2rem;
  left: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--gold-bright);
  font-size: 0.78rem;
}

.faq-section {
  background: var(--paper);
}

.faq-layout {
  display: grid;
  align-items: start;
  gap: clamp(3rem, 7vw, 6rem);
  grid-template-columns: 0.75fr 1.25fr;
}

.faq-intro {
  position: sticky;
  top: calc(var(--header-h) + 2rem);
}

.faq-intro > p:not(.eyebrow) {
  color: rgba(10, 10, 9, 0.62);
}

.faq-intro > a {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--gold-dark);
  font-size: 0.82rem;
  font-weight: 850;
}

.faq-list {
  border-top: 1px solid var(--line-light);
}

.faq-list details {
  border-bottom: 1px solid var(--line-light);
}

.faq-list summary {
  display: flex;
  min-height: 84px;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.25;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  position: relative;
  flex: 0 0 auto;
  width: 1rem;
  height: 1rem;
}

.faq-list summary span::before,
.faq-list summary span::after {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--gold-dark);
  content: "";
  transition: transform 180ms ease;
}

.faq-list summary span::after {
  transform: rotate(90deg);
}

.faq-list details[open] summary span::after {
  transform: rotate(0deg);
}

.faq-list details p {
  max-width: 720px;
  padding: 0 3rem 1.7rem 0;
  color: rgba(10, 10, 9, 0.65);
  font-size: 0.92rem;
}

.contact-section {
  background: var(--ink);
}

.contact-panel {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(217, 169, 47, 0.28);
  border-radius: calc(var(--radius) + 0.25rem);
  background: var(--ink-3);
  grid-template-columns: 1.1fr 0.9fr;
}

.contact-copy,
.contact-details {
  padding: clamp(2rem, 5vw, 4rem);
}

.contact-copy h2 {
  max-width: 660px;
}

.contact-copy > p:last-of-type {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.6);
}

.contact-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.7rem;
  margin: 0;
  border-left: 1px solid rgba(217, 169, 47, 0.18);
  background: rgba(0, 0, 0, 0.18);
  font-style: normal;
}

.contact-details a {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-details a > span {
  display: grid;
  width: 2.7rem;
  height: 2.7rem;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 0.7rem;
  background: rgba(217, 169, 47, 0.09);
  color: var(--gold);
}

.contact-details p {
  margin: 0;
}

.contact-details small,
.contact-details strong {
  display: block;
}

.contact-details small {
  margin-bottom: 0.25rem;
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.62rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-details strong {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.86rem;
  line-height: 1.45;
}

.site-footer {
  border-top: 1px solid rgba(217, 169, 47, 0.18);
  background: #060605;
}

.footer-grid {
  display: grid;
  gap: 4rem;
  padding-block: 4.5rem 3.5rem;
  grid-template-columns: 1.2fr 0.6fr 0.9fr;
}

.footer-brand .brand {
  width: 200px;
  height: 74px;
}

.footer-brand .brand img {
  width: 192px;
  height: 66px;
}

.footer-brand p {
  max-width: 480px;
  margin: 1.3rem 0 0;
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.84rem;
}

.footer-grid nav,
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}

.footer-grid strong {
  margin-bottom: 0.5rem;
  color: var(--gold);
  font-size: 0.67rem;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.footer-grid nav a,
.footer-contact a {
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.78rem;
  transition: color 180ms ease;
}

.footer-grid nav a:hover,
.footer-contact a:hover {
  color: var(--gold-bright);
}

.footer-legal {
  padding-block: 1.6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.66rem;
  text-align: center;
}

.footer-legal p {
  max-width: 900px;
  margin: 0 auto;
}

.footer-legal p + p {
  margin-top: 0.7rem;
}

.floating-whatsapp {
  position: fixed;
  z-index: 70;
  right: 1.4rem;
  bottom: 1.4rem;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  gap: 0.55rem;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: var(--green);
  color: white;
  box-shadow: 0 15px 42px rgba(36, 200, 102, 0.28);
  font-size: 0.78rem;
  font-weight: 850;
  transition: transform 180ms ease, background 180ms ease;
}

.floating-whatsapp:hover {
  transform: translateY(-3px);
  background: #20b95e;
}

.floating-whatsapp svg {
  width: 1.35rem;
  height: 1.35rem;
}

.modal {
  width: min(calc(100% - 2rem), 680px);
  max-height: calc(100dvh - 2rem);
  padding: 0;
  overflow: visible;
  border: 0;
  border-radius: 1.25rem;
  background: transparent;
  color: var(--ink);
}

.modal::backdrop {
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(8px);
}

.modal-panel {
  position: relative;
  max-height: calc(100dvh - 2rem);
  padding: clamp(1.5rem, 5vw, 2.5rem);
  overflow-y: auto;
  border: 1px solid rgba(217, 169, 47, 0.35);
  border-radius: 1.25rem;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.modal-panel h2 {
  margin-bottom: 0.6rem;
  font-size: clamp(2.1rem, 5vw, 3.2rem);
}

.modal-intro,
.payment-modal-content > p {
  color: rgba(10, 10, 9, 0.62);
  font-size: 0.86rem;
}

.modal-close {
  position: absolute;
  z-index: 2;
  top: 0.9rem;
  right: 0.9rem;
  display: grid;
  width: 2.4rem;
  height: 2.4rem;
  place-items: center;
  border: 1px solid var(--line-light);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  color: var(--ink);
  font-size: 1.35rem;
  line-height: 1;
}

#consultation-form {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

#consultation-form label {
  display: grid;
  gap: 0.38rem;
  color: rgba(10, 10, 9, 0.75);
  font-size: 0.72rem;
  font-weight: 800;
}

.form-row {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: 1fr 1fr;
}

input,
textarea,
select {
  width: 100%;
  min-height: 46px;
  padding: 0.7rem 0.8rem;
  border: 1px solid rgba(10, 10, 9, 0.2);
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.65);
  color: var(--ink);
  font-size: 0.86rem;
}

textarea {
  resize: vertical;
}

.form-notice {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.85rem;
  border: 1px solid rgba(139, 103, 22, 0.25);
  border-radius: 0.6rem;
  background: rgba(217, 169, 47, 0.07);
}

.form-notice svg {
  flex: 0 0 auto;
  margin-top: 0.15rem;
  color: var(--gold-dark);
}

.form-notice p {
  margin: 0;
  color: rgba(10, 10, 9, 0.63);
  font-size: 0.7rem;
}

.payment-modal-content {
  margin-top: 1.3rem;
}

.paypal-box,
.oxxo-code {
  padding: 1rem;
  border: 1px solid var(--line-light);
  border-radius: 0.8rem;
  background: white;
}

.oxxo-code {
  width: min(100%, 440px);
  margin-inline: auto;
}

.payment-error {
  margin: 0.7rem 0 0;
  color: #a02222;
  font-size: 0.75rem;
  text-align: center;
}

.payment-instructions {
  margin-top: 1rem;
  padding: 0.9rem;
  border: 1px solid rgba(139, 103, 22, 0.25);
  border-radius: 0.6rem;
  background: rgba(217, 169, 47, 0.07);
  color: rgba(10, 10, 9, 0.65);
  font-size: 0.78rem;
}

.payment-modal-actions {
  display: grid;
  gap: 0.7rem;
  margin-top: 1.2rem;
  grid-template-columns: 1fr 1fr;
}

.payment-modal-actions a {
  display: grid;
  min-height: 48px;
  place-items: center;
  padding: 0.7rem;
  border-radius: 0.6rem;
  background: var(--ink);
  color: white;
  font-size: 0.75rem;
  font-weight: 850;
}

.payment-modal-actions a:last-child {
  background: var(--green);
}

.icon-sprite {
  position: absolute;
  overflow: hidden;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 650ms cubic-bezier(0.2, 0.7, 0.2, 1), transform 650ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.reveal-delay {
  transition-delay: 100ms;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: grid;
    width: 46px;
    height: 46px;
    margin-left: auto;
    place-content: center;
    gap: 5px;
    border: 1px solid rgba(217, 169, 47, 0.35);
    border-radius: 0.7rem;
    background: rgba(255, 255, 255, 0.04);
  }

  .menu-toggle span {
    display: block;
    width: 20px;
    height: 1.5px;
    background: white;
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
  }

  .mobile-menu {
    position: fixed;
    z-index: 90;
    inset: var(--header-h) 0 auto;
    display: grid;
    max-height: calc(100dvh - var(--header-h));
    gap: 0.35rem;
    padding: 1rem max(1rem, calc((100% - var(--shell)) / 2));
    overflow-y: auto;
    border-bottom: 1px solid rgba(217, 169, 47, 0.25);
    background: rgba(10, 10, 9, 0.99);
    box-shadow: 0 22px 44px rgba(0, 0, 0, 0.42);
  }

  .mobile-menu[hidden] {
    display: none;
  }

  .mobile-menu a {
    padding: 0.8rem 1rem;
    border-radius: 0.55rem;
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.88rem;
    font-weight: 700;
  }

  .mobile-menu a:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--gold-bright);
  }

  .mobile-menu .mobile-menu-urgent {
    margin-top: 0.4rem;
    background: var(--green);
    color: white;
    text-align: center;
  }

  .hero-layout {
    min-height: auto;
    gap: 4rem;
    padding-block: 5rem;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 780px;
  }

  .hero-profile {
    width: min(100%, 620px);
    min-height: 430px;
  }

  .team-statement {
    min-height: 390px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .profile-layout {
    grid-template-columns: 1fr;
  }

  .credentials {
    max-width: 760px;
  }

  .contact-panel {
    grid-template-columns: 1fr;
  }

  .contact-details {
    border-top: 1px solid rgba(217, 169, 47, 0.18);
    border-left: 0;
  }
}

@media (max-width: 820px) {
  .decision-grid,
  .process-grid,
  .payment-grid,
  .trust-grid,
  .faq-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .decision-grid > div {
    min-height: 92px;
    border-right: 1px solid rgba(217, 169, 47, 0.13);
    border-bottom: 1px solid rgba(217, 169, 47, 0.13);
  }

  .decision-grid > div:last-child {
    border-bottom: 0;
  }

  .process-grid li {
    min-height: auto;
  }

  .process-grid li > span {
    margin-bottom: 2rem;
  }

  .urgent-layout {
    grid-template-columns: 1fr;
  }

  .urgent-layout .button {
    width: 100%;
  }

  .consultation-grid {
    grid-template-columns: 1fr;
  }

  .consultation-card > p:not(.price) {
    min-height: 0;
  }

  .payment-card {
    min-height: 300px;
  }

  .faq-intro {
    position: static;
  }

  .footer-grid {
    gap: 2.5rem;
  }
}

@media (max-width: 620px) {
  :root {
    --header-h: 72px;
  }

  .shell {
    width: min(calc(100% - 1.35rem), var(--shell));
  }

  .header-inner {
    gap: 1rem;
  }

  .brand {
    width: 150px;
    height: 52px;
  }

  .brand img {
    width: 144px;
    height: 50px;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.5rem);
  }

  h2 {
    font-size: clamp(2.35rem, 12vw, 3.4rem);
  }

  .hero-layout {
    gap: 3rem;
    padding-block: 3.5rem 4.5rem;
  }

  .hero-actions,
  .contact-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions .button,
  .contact-actions .button {
    width: 100%;
  }

  .hero-points {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-profile {
    min-height: 480px;
  }

  .hero-profile::before {
    inset: -0.7rem 0.8rem 1rem -0.7rem;
  }

  .team-statement {
    min-height: 430px;
    padding: 2rem 1.3rem 8.2rem;
  }

  .team-statement ul {
    grid-template-columns: 1fr;
  }

  .portrait-frame {
    bottom: 1rem;
    left: 1.3rem;
    width: 225px;
    height: 72px;
    grid-template-columns: 56px 1fr;
  }

  .portrait-frame img {
    width: 56px;
    height: 72px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 320px;
  }

  .service-number {
    margin-bottom: 2rem;
  }

  .section-heading {
    margin-bottom: 2.6rem;
  }

  .credentials-header,
  .credentials li {
    padding-inline: 1.3rem;
  }

  .payment-reminder {
    grid-template-columns: auto 1fr;
  }

  .payment-reminder a {
    grid-column: 1 / -1;
    text-align: center;
  }

  .faq-list summary {
    min-height: 74px;
    gap: 1rem;
    font-size: 1.15rem;
  }

  .contact-copy,
  .contact-details {
    padding: 1.4rem;
  }

  .contact-details strong {
    overflow-wrap: anywhere;
  }

  .floating-whatsapp {
    right: 0.8rem;
    bottom: 0.8rem;
    width: 52px;
    padding: 0;
    justify-content: center;
  }

  .floating-whatsapp span {
    display: none;
  }

  .form-row,
  .payment-modal-actions {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
