:root {
  --onyx: #0a0d11;
  --hero-bg: #1b2330;
  --paper: #e9eaec;
  --navy: #3e4a59;
  --steel: #7c90a3;
  --ink: #24272c;
  --line: #d7d8db;
  --line-dark: rgba(233, 234, 236, 0.14);
  --serif: "Bodoni Moda", Georgia, serif;
  --display: "Cinzel", Georgia, serif;
  --sans: "Inter", -apple-system, sans-serif;
  --font-serif: var(--serif);
  --font-sans: var(--sans);
  --muted: #4e5459;
  --muted-soft: #6c7078;
  --muted-on-dark: #c7cbd1;
  --idx: #5a5d63;
  --idx-on-dark: #9ba0a8;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --pad: 48px;
  --section-y: 120px;
  --header-h: 100px;
  --bs-border-radius: 0;
  --bs-border-radius-sm: 0;
  --bs-border-radius-lg: 0;
  --bs-body-bg: var(--paper);
  --bs-body-color: var(--ink);
}

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

*:not(.urgency-dot) {
  border-radius: 0;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: #8b8f96 var(--paper);
}

html::-webkit-scrollbar {
  width: 10px;
}

html::-webkit-scrollbar-track {
  background: var(--paper);
  border-left: 1px solid var(--line);
}

html::-webkit-scrollbar-thumb {
  background: #b7bac0;
  border: 2px solid var(--paper);
}

html::-webkit-scrollbar-thumb:hover {
  background: #8b8f96;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto;
  overflow-x: hidden;
}

.site-header,
.hero,
.spread-dark,
.urgency-strip,
.callout,
.site-footer {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}

h1,
h2,
h3,
h4,
h5,
p {
  margin: 0;
}

h1,
h2,
h3,
.hero-line,
.area-row .name,
.stat .num,
.about-quote,
.about-body .lede,
.faq-q,
.testimonial-card blockquote,
.callout h2 {
  font-family: var(--font-serif);
  font-optical-sizing: none;
  font-variation-settings: "opsz" 14, "wght" 500;
  font-weight: 500;
}

a:focus-visible,
button:focus-visible {
  outline: 1px solid var(--navy);
  outline-offset: 3px;
}

a:focus:not(:focus-visible),
button:focus:not(:focus-visible) {
  outline: none;
}

.spread-dark a:focus-visible,
.callout a:focus-visible,
.site-footer a:focus-visible,
.site-footer button:focus-visible,
.urgency-strip a:focus-visible,
.wa-fab:focus-visible {
  outline-color: var(--paper);
}

.shell {
  width: 100%;
  max-width: 1320px;
  margin-inline: auto;
  padding-inline: var(--pad);
}

/* Bootstrap .row negative margins would cancel .shell padding and flush text to the viewport. */
.shell .row {
  margin-left: 0;
  margin-right: 0;
}

.section,
.page-head,
.hero,
.callout,
.site-footer {
  position: relative;
  z-index: 1;
}

.section {
  padding-block: var(--section-y);
}

.section--end {
  padding-bottom: calc(var(--section-y) + 80px);
}

.spine {
  display: none;
}

@media (max-width: 767.98px) {
  :root {
    --pad: 24px;
    --section-y: 72px;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  :root {
    --pad: 36px;
    --section-y: 96px;
  }
}

/* —— Header —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(10, 13, 17, 0.92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.site-header__inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 0;
  padding-block: 26px;
  gap: 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #f2f2f3;
  min-width: 0;
}

.logo-icon {
  width: 48px;
  height: 48px;
  display: block;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.logo-title {
  font-family: var(--display);
  font-weight: 600;
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #f2f2f3;
  line-height: 1.2;
  white-space: nowrap;
}

.logo-subtitle {
  font-family: var(--display);
  font-weight: 400;
  font-size: 9.5px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: #d7d9dc;
  line-height: 1.2;
  text-align: center;
  margin-right: -0.22em;
}

.logo .sep {
  color: var(--steel);
}

.site-nav ul {
  list-style: none;
  display: flex;
  gap: 32px;
  margin: 0;
  padding: 0;
}

.site-nav a {
  font-family: var(--font-sans);
  font-size: 12.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #d7d9dc;
  position: relative;
  padding-bottom: 4px;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--steel);
  transition: width 0.4s var(--ease);
}

.site-nav a:hover::after,
.site-nav a.active::after {
  width: 100%;
}

.site-nav a.active {
  color: #fafafb;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 7px;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 1px;
  background: #f2f2f3;
  transform-origin: center;
  transition: transform 0.35s var(--ease), width 0.35s var(--ease);
}

.nav-toggle span:last-child {
  width: 14px;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(4px) rotate(45deg);
  width: 20px;
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-4px) rotate(-45deg);
  width: 20px;
}

@media (max-width: 991.98px) {
  .site-header__inner {
    padding-top: 22px;
    padding-bottom: 22px;
  }

  .logo {
    max-width: calc(100% - 40px);
  }

  .logo-icon {
    width: 40px;
    height: 40px;
  }

  .logo-title {
    font-size: 10.5px;
    white-space: normal;
  }

  .logo-subtitle {
    font-size: 8px;
    letter-spacing: 0.16em;
    margin-right: -0.16em;
  }

  .nav-toggle {
    display: flex;
  }

  .site-nav {
    display: grid;
    grid-template-rows: 0fr;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: color-mix(in srgb, var(--onyx) 72%, #000 28%);
    border-bottom: 1px solid transparent;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      grid-template-rows 0.42s var(--ease),
      opacity 0.32s var(--ease),
      visibility 0.32s var(--ease),
      border-color 0.32s var(--ease);
  }

  .site-nav > ul {
    overflow: hidden;
    min-height: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 22px;
    padding: 32px 24px 36px;
  }

  .site-nav li {
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.28s var(--ease), transform 0.36s var(--ease);
  }

  .site-nav a {
    display: inline-block;
    text-align: center;
    padding-bottom: 6px;
  }

  .site-nav a::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .site-nav.is-open {
    grid-template-rows: 1fr;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    border-bottom-color: var(--line-dark);
  }

  .site-nav.is-open li {
    opacity: 1;
    transform: none;
  }

  .site-nav.is-open li:nth-child(1) { transition-delay: 0.05s; }
  .site-nav.is-open li:nth-child(2) { transition-delay: 0.09s; }
  .site-nav.is-open li:nth-child(3) { transition-delay: 0.13s; }
  .site-nav.is-open li:nth-child(4) { transition-delay: 0.17s; }
  .site-nav.is-open li:nth-child(5) { transition-delay: 0.21s; }
}

/* —— Hero —— */
.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100svh - var(--header-h));
  display: flex;
  align-items: stretch;
  background: var(--onyx);
  padding: 56px 0 48px;
}

.hero .shell {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  flex: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  flex: 1;
  max-width: 600px;
  padding-left: 40px;
  border-left: 1px solid rgba(255, 255, 255, 0.35);
}

.hero-actions {
  margin-top: auto;
  padding-top: 48px;
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: right center;
  z-index: 0;
  pointer-events: none;
  filter: contrast(1.02);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(10, 13, 17, 0.92) 0%, rgba(10, 13, 17, 0.78) 34%, rgba(10, 13, 17, 0.36) 58%, rgba(10, 13, 17, 0.1) 78%, rgba(10, 13, 17, 0.04) 100%),
    linear-gradient(180deg, rgba(10, 13, 17, 0.16) 0%, transparent 40%, rgba(10, 13, 17, 0.22) 100%);
}

.hero-line {
  font-family: var(--font-serif);
  font-weight: 500;
  font-variation-settings: "opsz" 14, "wght" 500;
  font-size: clamp(30px, 3.8vw, 50px);
  line-height: 1.16;
  letter-spacing: -0.01em;
  max-width: 15ch;
  color: #fafafb;
}

.hero-line em {
  font-style: italic;
  color: var(--steel);
  font-weight: 500;
}

.hero-sub,
.hero__lead {
  font-family: var(--sans);
  font-size: 14.5px;
  color: #c7cbd1;
  max-width: 46ch;
  margin-top: 0;
  line-height: 1.55;
}

.hero-jurisdiccion {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--steel);
  margin-top: 10px;
}

.hero .cta-row {
  margin-top: 22px;
}

.hero .cta-secondary {
  color: #edeef0;
  border-bottom-color: rgba(255, 255, 255, 0.6);
}

.portrait {
  width: 100%;
  aspect-ratio: 4 / 5;
  border: 1px solid var(--line);
  overflow: hidden;
  background: #e3e4e6;
}

.portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 22%;
  filter: contrast(1.02);
}

.portrait-caption {
  font-family: var(--sans);
  font-size: 12px;
  color: #4e5459;
  margin-top: 14px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid var(--line);
  padding-top: 12px;
}

@media (min-width: 901px) {
  .hero {
    align-items: center;
    padding: 48px 0;
  }

  .hero-content {
    flex: 0 1 auto;
    max-width: 640px;
  }

  .hero-actions {
    margin-top: 0;
    padding-top: 22px;
  }

  .hero-line {
    font-size: clamp(38px, 4.3vw, 58px);
    max-width: 16ch;
  }

  .hero__lead {
    font-size: 16.5px;
    max-width: 50ch;
  }

  .hero .cta-row {
    margin-top: 18px;
  }

  .hero .cta-primary {
    font-size: 13.5px;
    padding: 18px 34px;
  }
}

@media (max-width: 1100px) and (min-width: 901px) {
  .hero-media {
    object-position: 86% center;
  }
}

@media (max-width: 900px) {
  .hero {
    min-height: 640px;
    min-height: calc(100vh - var(--header-h));
    min-height: calc(100svh - var(--header-h));
    align-items: stretch;
    padding: 28px 0 40px;
  }

  .hero-media {
    object-position: 84% 40%;
    opacity: 0.38;
  }

  .hero::after {
    background:
      linear-gradient(90deg, rgba(10, 13, 17, 0.72) 0%, rgba(10, 13, 17, 0.5) 48%, rgba(10, 13, 17, 0.32) 100%),
      linear-gradient(180deg, rgba(10, 13, 17, 0.28) 0%, rgba(10, 13, 17, 0.18) 40%, rgba(10, 13, 17, 0.55) 100%);
  }

  .hero-content {
    padding-left: 20px;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-media {
    object-position: 80% 38%;
    opacity: 0.32;
  }

  .hero::after {
    background: rgba(10, 13, 17, 0.55);
  }
}

@media (max-height: 700px) and (min-width: 901px) {
  .hero {
    min-height: auto;
    padding: 48px 0;
  }
}

/* —— CTAs —— */
.cta-row {
  display: flex;
  gap: 28px;
  margin-top: 36px;
  flex-wrap: wrap;
  align-items: center;
}

.cta-primary {
  font-family: var(--font-sans);
  font-size: 12.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--navy);
  color: var(--paper);
  padding: 16px 30px;
  border: 1px solid var(--navy);
  border-radius: 0;
  transition: background 0.3s ease, transform 0.3s var(--ease);
}

.cta-primary:hover {
  background: #2e3742;
  border-color: #2e3742;
  transform: translateY(-2px);
}

.cta-secondary {
  font-family: var(--font-sans);
  font-size: 12.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--ink);
  color: var(--ink);
}

.cta-row .arrow,
.see-all .arrow-glyph,
.area-row .arrow-glyph {
  display: inline-block;
  transition: transform 0.35s var(--ease);
}

.cta-row a:hover .arrow,
.cta-primary:hover .arrow,
.see-all:hover .arrow-glyph {
  transform: translateX(7px);
}

@media (max-width: 767.98px) {
  .cta-primary {
    width: 100%;
    justify-content: center;
  }
}

/* —— Urgency strip —— */
.urgency-strip {
  background: var(--navy);
  color: var(--paper);
  padding-block: 16px;
  font-family: var(--font-sans);
  font-size: 12.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.urgency-strip .shell {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  text-align: center;
}

.urgency-dot {
  width: 6px;
  height: 6px;
  flex-shrink: 0;
  background: #4cff7a;
  border-radius: 50%;
}

.urgency-strip a {
  background: var(--paper);
  color: var(--navy);
  font-weight: 600;
  padding: 8px 18px;
  display: inline-flex;
  align-items: center;
  border-radius: 0;
  transition: background 0.3s ease, transform 0.3s var(--ease);
}

.urgency-strip a:hover {
  background: #fff;
  transform: translateY(-1px);
}

@media (max-width: 767.98px) {
  .urgency-strip {
    padding-block: 14px;
  }
}

/* —— Stats —— */
.stats {
  border-top: 1px solid var(--line);
  margin-top: 24px;
}

.stat {
  padding: 36px 32px;
  text-align: center;
}

.stat + .stat {
  border-top: 1px solid var(--line);
}

.stat .num {
  font-family: var(--font-serif);
  font-size: 36px;
  color: var(--ink);
  line-height: 1.1;
}

.stat .num--icon {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 40px;
}

.stat .num--icon svg {
  width: 36px;
  height: 36px;
  display: block;
}

.stat .lbl {
  font-family: var(--font-sans);
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-soft);
  margin-top: 6px;
}

@media (min-width: 992px) {
  .stat {
    padding: 36px 32px;
  }

  .stat + .stat {
    border-top: none;
    border-left: 1px solid var(--line);
  }
}

@media (max-width: 991.98px) {
  .stat {
    padding: 24px 0;
  }

  .stat:first-child {
    border-top: none;
  }
}

/* —— Spreads / lists —— */
.spread-dark {
  background: var(--onyx);
  color: var(--paper);
}

.spread-light {
  background: var(--paper);
  color: var(--ink);
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  border-bottom: 1px solid var(--line-dark);
  padding-bottom: 28px;
  margin-bottom: 8px;
}

.spread-light .section-head,
.section-head.lined {
  border-bottom-color: var(--line);
}

.section-head h2 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-variation-settings: "opsz" 14, "wght" 500;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.15;
}

.section-head h2.sm {
  font-size: clamp(24px, 3vw, 34px);
}

.section-note {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--muted-on-dark);
  max-width: 26ch;
  text-align: right;
  margin: 0;
}

.spread-light .section-note,
.section-head.lined .section-note {
  color: var(--muted);
}

@media (max-width: 991.98px) {
  .section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .section-note {
    text-align: left;
  }
}

.area-list {
  margin-top: 8px;
}

.area-row {
  display: grid;
  grid-template-columns: 60px 1fr;
  align-items: center;
  gap: 24px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line-dark);
  transition: border-color 0.35s var(--ease);
}

@media (max-width: 991.98px) {
  .area-row {
    grid-template-columns: 40px 1fr;
    gap: 12px;
  }

  .see-all {
    max-width: calc(100% - 64px);
  }
}

@media (min-width: 992px) and (max-width: 1415.98px) {
  .see-all {
    max-width: calc(100% - 72px);
  }
}

.spread-light .area-row {
  border-bottom-color: var(--line);
}

.area-row .idx {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--idx-on-dark);
}

.spread-light .area-row .idx {
  color: var(--idx);
}

.area-row .name {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.4vw, 30px);
  font-weight: 500;
  font-variation-settings: "opsz" 14, "wght" 500;
  min-width: 0;
  transition: font-weight 0.3s ease, letter-spacing 0.3s ease, font-variation-settings 0.3s ease;
}

.area-row:hover {
  border-bottom-color: #57657a;
}

.spread-light .area-row:hover {
  border-bottom-color: var(--navy);
}

.area-row:hover .name {
  font-weight: 600;
  font-variation-settings: "opsz" 14, "wght" 600;
  letter-spacing: 0.01em;
}

.see-all {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 40px;
  font-family: var(--font-sans);
  font-size: 12.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  border-bottom: 1px solid var(--line-dark);
  padding-bottom: 6px;
}

.spread-light .see-all,
.see-all.on-paper {
  border-bottom-color: var(--line);
}

/* —— About (home) —— */
.about-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #e3e4e6;
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.02);
}

.about-photo-caption {
  font-family: var(--font-sans);
  font-size: 12px;
  color: #6c7078;
  margin-top: 14px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid var(--line);
  padding-top: 12px;
}

.about-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 500;
  font-variation-settings: "opsz" 14, "wght" 500;
  line-height: 1.4;
  color: var(--ink);
  border-left: 1px solid var(--line);
  padding-left: 28px;
  margin-bottom: 36px;
}

.about-body .lede {
  font-family: var(--font-serif);
  font-size: 19px;
  line-height: 1.7;
  color: var(--ink);
  margin-bottom: 22px;
}

.about-body p {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.8;
  color: #3b3e43;
  margin-bottom: 18px;
}

@media (max-width: 991.98px) {
  .about-quote {
    padding-left: 20px;
  }
}

/* —— Compact list —— */
.compact-list {
  border-top: 1px solid var(--line);
}

.compact-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  gap: 20px;
}

.compact-row h3,
.compact-row h4 {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 500;
  font-variation-settings: "opsz" 14, "wght" 500;
}

.compact-row p {
  font-family: var(--font-sans);
  font-size: 13.5px;
  color: #6c7078;
  margin-top: 6px;
}

.compact-row .tag {
  font-family: var(--font-sans);
  font-size: 11.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #8b8f96;
  text-align: right;
  flex-shrink: 0;
}

@media (max-width: 767.98px) {
  .compact-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding-right: 56px;
  }

  .compact-row .tag {
    text-align: left;
  }
}

@media (min-width: 768px) and (max-width: 1415.98px) {
  .compact-row {
    padding-right: 64px;
  }
}

/* —— Page head —— */
.page-head {
  padding-block: var(--section-y);
  border-bottom: 1px solid var(--line);
}

.page-head.bare {
  border-bottom: none;
}

.page-head-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: end;
}

.page-head-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #e3e4e6;
}

.page-head-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.02);
  display: block;
}

.page-head-photo-caption {
  font-family: var(--font-sans);
  font-size: 11.5px;
  color: #8b8f96;
  margin-top: 10px;
  text-align: right;
}

@media (max-width: 900px) {
  .page-head-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .page-head-grid > :last-child {
    order: -1;
  }
}

.eyebrow {
  font-family: var(--font-sans);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 20px;
}

.page-head h1 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-variation-settings: "opsz" 14, "wght" 500;
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1.15;
  max-width: 18ch;
}

.page-head h1.sm {
  font-size: clamp(28px, 4vw, 44px);
}

.page-head h1 em {
  font-style: italic;
  color: var(--navy);
}

.page-head .lede {
  font-family: var(--font-sans);
  font-size: 15.5px;
  color: var(--muted);
  max-width: 56ch;
  margin-top: 26px;
  line-height: 1.7;
}

.page-head .lede-note {
  font-family: var(--font-sans);
  font-size: 13.5px;
  font-style: italic;
  color: var(--navy);
  max-width: 56ch;
  margin-top: 14px;
  line-height: 1.6;
}

@media (max-width: 767.98px) {
  .page-head h1 {
    font-size: clamp(28px, 8vw, 38px);
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .page-head h1 {
    font-size: clamp(30px, 4vw, 44px);
  }

  .section-head h2 {
    font-size: clamp(26px, 3.6vw, 38px);
  }

  .area-row .name {
    font-size: clamp(18px, 2.8vw, 24px);
  }

  .page-head .lede,
  .hero__lead {
    font-size: 14.5px;
  }

  .stat .num {
    font-size: 32px;
  }
}

/* —— Service detail —— */
.service-detail {
  border-top: 1px solid var(--line);
  padding: 34px 0;
}

.service-detail:last-child {
  border-bottom: 1px solid var(--line);
}

.service-detail .head {
  display: flex;
  gap: 20px;
  align-items: baseline;
}

.service-detail .idx {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--idx);
  min-width: 28px;
}

.service-detail h3 {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 500;
  font-variation-settings: "opsz" 14, "wght" 500;
}

.service-detail p {
  font-family: var(--font-sans);
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.7;
  margin-top: 10px;
  margin-left: 48px;
  max-width: 60ch;
}

@media (max-width: 575.98px) {
  .service-detail p {
    margin-left: 0;
  }
}

/* —— Callout —— */
.callout {
  background: var(--onyx);
  color: var(--paper);
  padding-block: var(--section-y);
}

.callout h2 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-variation-settings: "opsz" 14, "wght" 500;
  font-size: clamp(26px, 3.4vw, 38px);
  margin-bottom: 24px;
  max-width: 20ch;
}

.callout ol {
  margin: 0 0 0 22px;
  padding: 0;
  font-family: var(--font-sans);
  font-size: 14.5px;
  line-height: 2;
  color: #d7d9dc;
}

.callout ol li::marker {
  color: #7c90a3;
}

.callout ol strong {
  font-weight: 600;
  color: var(--paper);
}

.callout .cta-primary {
  margin-top: 32px;
}

/* —— FAQ —— */
.faq-item {
  border-top: 1px solid var(--line);
  padding: 26px 0;
}

.faq-item:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  text-align: left;
  font-family: var(--font-serif);
  font-size: clamp(17px, 1.8vw, 21px);
  font-weight: 500;
  font-variation-settings: "opsz" 14, "wght" 500;
  gap: 20px;
}

@media (max-width: 1415.98px) {
  .faq-item,
  .faq-q {
    max-width: calc(100% - 72px);
  }
}

.faq-q .plus {
  font-family: var(--font-sans);
  font-size: 20px;
  color: var(--navy);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  line-height: 1;
}

.faq-item.open .faq-q .plus {
  transform: rotate(45deg);
}

.faq-a {
  font-family: var(--font-sans);
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.75;
  max-width: 64ch;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), margin 0.4s ease;
}

.faq-item.open .faq-a {
  max-height: 520px;
  margin-top: 16px;
}

/* —— Bio —— */
.bio-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #e3e4e6;
}

.bio-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.02);
}

.bio-body p {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.85;
  color: #3b3e43;
  margin-bottom: 20px;
}

.bio-body .lede {
  font-family: var(--font-serif);
  font-size: 20px;
  line-height: 1.7;
  color: var(--ink);
  margin-bottom: 26px;
}

.credentials {
  border-top: 1px solid var(--line);
  margin-top: 40px;
  padding-top: 32px;
}

.credentials h5 {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8b8f96;
  margin-bottom: 8px;
}

.credentials p {
  font-family: var(--font-serif);
  font-size: 16px;
  margin: 0;
  color: var(--ink);
}

/* —— Footer —— */
.site-footer {
  background: var(--onyx);
  color: var(--paper);
  padding: 48px 0 120px;
  border-top: 1px solid var(--line-dark);
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .site-footer {
    padding: 40px 0 112px;
  }
}

@media (max-width: 767.98px) {
  .site-footer {
    padding: 40px 0 112px;
  }
}

#contacto {
  scroll-margin-top: var(--header-h);
}

.contact-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-top: 40px;
}

.contact-whatsapp p {
  font-family: var(--font-sans);
  font-size: 14.5px;
  color: #d7d9dc;
  line-height: 1.7;
  margin-bottom: 24px;
}

.contact-note {
  font-family: var(--font-sans);
  font-size: 12.5px;
  color: #7c90a3;
  margin-top: 20px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-form label {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9ba0a8;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line-dark);
  border-radius: 0;
  box-shadow: none;
  color: var(--paper);
  font-family: var(--font-sans);
  font-size: 14px;
  padding: 8px 0;
  font-weight: 400;
  resize: vertical;
  appearance: none;
  width: 100%;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-bottom-color: var(--paper);
}

.contact-form select {
  color: var(--ink);
  background: #fff;
  color-scheme: light;
  padding-inline: 10px;
  appearance: auto;
}

.contact-form select option {
  color: var(--ink);
  background: #fff;
}

.cf-error {
  color: #e2857a;
  font-size: 12.5px;
  font-family: var(--font-sans);
  min-height: 16px;
}

.contact-form button.cta-primary {
  align-self: flex-start;
  margin-top: 4px;
  border: none;
  cursor: pointer;
}

.legal-body {
  max-width: 68ch;
}

.legal-body h2 {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 500;
  margin: 40px 0 12px;
  color: var(--ink);
}

.legal-body h2:first-child {
  margin-top: 0;
}

.legal-body p,
.legal-body li {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 14px;
}

.legal-body ul {
  padding-left: 1.2em;
  margin: 0 0 14px;
}

.legal-body a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.fine a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (max-width: 767.98px) {
  .contact-main {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  font-family: var(--font-sans);
  font-size: 13px;
  color: #b7bac0;
}

.contact-grid h3 {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6f7379;
  margin-bottom: 14px;
  font-weight: 600;
}

.contact-grid p {
  line-height: 1.9;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand img {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.footer-brand .logo-text {
  gap: 4px;
}

.footer-brand .logo-title,
.footer-brand .logo-subtitle {
  color: #f2f2f3;
}

.footer-attorney {
  font-family: var(--display);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: #b7bac0;
  margin-top: 2px;
}

@media (max-width: 767.98px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

.fine {
  margin-top: 64px;
  font-family: var(--font-sans);
  font-size: 11px;
  color: #5a5d63;
  letter-spacing: 0.03em;
}

/* —— Testimonials —— */
.testimonials-marquee {
  position: relative;
  overflow: hidden;
  margin-top: 8px;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 64px, #000 calc(100% - 64px), transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 64px, #000 calc(100% - 64px), transparent 100%);
}

.testimonials-track {
  display: flex;
  width: max-content;
  animation-name: testimonials-scroll;
  animation-duration: 22s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.testimonials-set {
  display: flex;
  align-items: stretch;
  gap: 28px;
  padding-right: 28px;
}

.testimonials-marquee:hover .testimonials-track {
  animation-play-state: paused;
}

@keyframes testimonials-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.testimonial-card {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  width: 340px;
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 32px 28px 26px;
  position: relative;
}

.testimonial-card .quote-mark {
  font-family: var(--font-serif);
  font-size: 52px;
  line-height: 1;
  color: var(--navy);
  opacity: 0.35;
  margin-bottom: 8px;
}

.testimonial-card blockquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--ink);
  margin: 0 0 22px;
  flex: 1 1 auto;
}

.testimonial-card cite {
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #6c7078;
  font-style: normal;
  display: block;
  margin-top: auto;
}

@media (max-width: 760px) {
  .testimonial-card {
    width: 280px;
    padding: 26px 22px 22px;
  }

  .testimonials-track {
    animation-duration: 18s;
  }
}

@media (prefers-reduced-motion: reduce) {
  .testimonials-track {
    animation: none;
  }

  .testimonials-marquee {
    overflow-x: auto;
  }
}

/* —— WhatsApp FAB —— */
.wa-fab {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 40;
  width: 52px;
  height: 52px;
  border: 1px solid var(--ink);
  background: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s var(--ease), opacity 0.3s ease, visibility 0.3s ease;
}

.wa-fab.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

body:has(.hero) .wa-fab {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

body:has(.hero) .wa-fab.is-shown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.wa-fab:hover {
  background: var(--navy);
  border-color: var(--navy);
  transform: translateY(-3px);
}

.wa-fab svg {
  width: 26px;
  height: 26px;
  display: block;
  fill: currentColor;
  color: var(--ink);
  transition: color 0.3s ease;
}

.wa-fab:hover svg {
  color: var(--paper);
}

@media (max-width: 991.98px) {
  .wa-fab {
    right: 18px;
    bottom: 18px;
    width: 48px;
    height: 48px;
  }

  .cta-row {
    padding-right: 56px;
  }
}

/* —— Reveal —— */
.js .reveal {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.js .reveal.in {
  opacity: 1;
  transform: translateY(0);
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

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

  .wa-fab:hover,
  .cta-primary:hover,
  .urgency-strip a:hover {
    transform: none;
  }
}
