/* ============================================================
   pasa-tramite-online.cc — Styles
   Brand: Vía Asesores
   Accent: #C2701F (ámbar quemado) · Neutral · White
   Design: Editorial cálido — tipografía humanista, grid asimétrico
   ============================================================ */

:root {
  /* Colores */
  --accent:        #C2701F;
  --accent-dark:   #9A5514;
  --accent-light:  #FBF0E6;
  --accent-mid:    #E8975A;

  --neutral-950:   #1A1612;
  --neutral-800:   #3D3530;
  --neutral-600:   #6B5E57;
  --neutral-400:   #A89E99;
  --neutral-200:   #E8E2DF;
  --neutral-100:   #F5F1EF;
  --white:         #FFFFFF;

  /* Tipografía */
  --font-serif:    'Palatino Linotype', 'Book Antiqua', Palatino, Georgia, serif;
  --font-sans:     'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;

  /* Espaciado */
  --container:     1160px;
  --section-v:     88px;
  --gap-md:        1.5rem;
  --gap-lg:        2.5rem;

  /* Radios */
  --r-sm:  3px;
  --r-md:  8px;
  --r-lg:  14px;
  --r-xl:  24px;

  /* Sombras */
  --shadow-xs: 0 1px 4px rgba(26,22,18,.06);
  --shadow-sm: 0 2px 10px rgba(26,22,18,.08);
  --shadow-md: 0 6px 24px rgba(26,22,18,.11);
  --shadow-lg: 0 16px 48px rgba(26,22,18,.14);

  --transition: 200ms ease;
}

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.68;
  color: var(--neutral-800);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; font-size: inherit; }

/* ── Contenedor ──────────────────────────────────────────── */
.container {
  width: 92%;
  max-width: var(--container);
  margin-inline: auto;
}
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ── Tipografía ──────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  color: var(--neutral-950);
  line-height: 1.18;
}
h1 { font-size: clamp(2.1rem, 5.5vw, 3.4rem); font-weight: 400; }
h2 { font-size: clamp(1.65rem, 3.8vw, 2.5rem); font-weight: 400; }
h3 { font-size: 1.15rem; font-weight: 700; }
p  { max-width: 66ch; }

/* ── Botones ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .78rem 1.8rem;
  border-radius: var(--r-sm);
  font-family: var(--font-sans);
  font-size: .92rem;
  font-weight: 700;
  letter-spacing: .03em;
  transition: background var(--transition), color var(--transition),
              transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
}
.btn--fill {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(194,112,31,.3);
}
.btn--fill:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(194,112,31,.35);
}
.btn--ghost {
  border: 2px solid var(--accent);
  color: var(--accent);
}
.btn--ghost:hover {
  background: var(--accent);
  color: var(--white);
}
.btn--light {
  background: var(--white);
  color: var(--accent-dark);
  box-shadow: var(--shadow-sm);
}
.btn--light:hover {
  background: var(--accent-light);
  transform: translateY(-1px);
}

/* ── Etiqueta de sección ─────────────────────────────────── */
.eyebrow {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .9rem;
}
.eyebrow--light { color: rgba(255,255,255,.7); }

/* ── Secciones ───────────────────────────────────────────── */
.section { padding-block: var(--section-v); }
.section--warm  { background: var(--neutral-100); }
.section--cream { background: var(--accent-light); }
.section__head  { margin-bottom: 3rem; }
.section__head p { color: var(--neutral-600); margin-top: .8rem; }
.section__head--center { text-align: center; }
.section__head--center p { margin-inline: auto; }

/* ── Divisor decorativo ──────────────────────────────────── */
.divider {
  width: 48px; height: 3px;
  background: var(--accent);
  border-radius: 2px;
  margin-top: 1rem;
}
.divider--center { margin-inline: auto; }

/* ============================================================
   HEADER / NAVEGACIÓN
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--white);
  border-bottom: 1px solid var(--neutral-200);
  box-shadow: var(--shadow-xs);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

/* Logo */
.nav__logo {
  display: flex;
  align-items: center;
  gap: .65rem;
}
.nav__wordmark {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--neutral-950);
  letter-spacing: .01em;
}
.nav__wordmark strong {
  color: var(--accent);
  font-weight: 700;
}

/* Links escritorio */
.nav__menu {
  display: none;
  align-items: center;
  gap: 2rem;
}
.nav__menu a {
  font-size: .88rem;
  font-weight: 600;
  color: var(--neutral-600);
  position: relative;
  padding-bottom: 3px;
  transition: color var(--transition);
}
.nav__menu a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  border-radius: 1px;
  transition: width var(--transition);
}
.nav__menu a:hover,
.nav__menu a.is-active { color: var(--accent); }
.nav__menu a:hover::after,
.nav__menu a.is-active::after { width: 100%; }
.nav__cta { margin-left: .5rem; }

/* Burger */
.nav__burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  border-radius: var(--r-sm);
  padding: 5px;
}
.nav__burger span {
  display: block;
  height: 2px;
  background: var(--neutral-800);
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease, width .2s ease;
  transform-origin: center;
}
.nav__burger span:nth-child(2) { width: 65%; }
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; width: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Menú móvil */
.nav__drawer {
  display: none;
  position: absolute;
  top: 73px; left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--neutral-200);
  box-shadow: var(--shadow-md);
  padding: 1.5rem 4%;
  flex-direction: column;
  gap: .25rem;
}
.nav__drawer.is-open { display: flex; }
.nav__drawer a {
  font-size: .97rem;
  font-weight: 600;
  color: var(--neutral-800);
  padding: .7rem 0;
  border-bottom: 1px solid var(--neutral-100);
  transition: color var(--transition);
}
.nav__drawer a:last-child { border: none; }
.nav__drawer a:hover { color: var(--accent); }

@media (min-width: 780px) {
  .nav__menu   { display: flex; }
  .nav__burger { display: none; }
}

/* ============================================================
   HERO — layout asimétrico: texto izquierda + panel derecha
   ============================================================ */
.hero {
  padding-top: 72px;
  padding-bottom: 56px;
  background: var(--neutral-950);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 85% 50%, rgba(194,112,31,.18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(194,112,31,.08) 0%, transparent 60%);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  display: grid;
  gap: 3rem;
  align-items: center;
}
.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  background: rgba(194,112,31,.18);
  border: 1px solid rgba(194,112,31,.35);
  color: var(--accent-mid);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .32rem .85rem;
  border-radius: 100px;
  margin-bottom: 1.4rem;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 1.3rem;
}
.hero h1 em {
  font-style: italic;
  color: var(--accent-mid);
}
.hero__sub {
  color: rgba(255,255,255,.62);
  font-size: 1.05rem;
  max-width: 50ch;
  margin-bottom: 2.2rem;
}
.hero__btns  { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero__panel {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-lg);
  padding: 2rem 1.75rem;
  backdrop-filter: blur(6px);
}
.hero__panel-title {
  font-family: var(--font-serif);
  color: var(--white);
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 1.25rem;
  padding-bottom: .9rem;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.hero__checklist {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.hero__checklist li {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  color: rgba(255,255,255,.78);
  font-size: .9rem;
}
.hero__check-icon {
  width: 20px; height: 20px;
  background: rgba(194,112,31,.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 3px;
}
.hero__check-icon svg { color: var(--accent-mid); }
.hero__note {
  margin-top: 1.6rem;
  padding: .85rem 1rem;
  background: rgba(194,112,31,.12);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  font-size: .78rem;
  color: rgba(255,255,255,.58);
  line-height: 1.5;
}

@media (min-width: 780px) {
  .hero__inner { grid-template-columns: 1.1fr .9fr; }
  .hero { padding-top: 96px; padding-bottom: 80px; }
}

/* ============================================================
   BANDA DE CONFIANZA
   ============================================================ */
.trust-bar {
  background: var(--accent-light);
  border-bottom: 1px solid var(--neutral-200);
  padding-block: 18px;
}
.trust-bar__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2.5rem;
  justify-content: center;
  align-items: center;
}
.trust-bar__item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .82rem;
  font-weight: 700;
  color: var(--neutral-800);
}
.trust-bar__item svg { color: var(--accent); flex-shrink: 0; }

/* ============================================================
   SERVICIOS — cards con hover elevación
   ============================================================ */
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: var(--gap-md);
}
.svc-card {
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: var(--r-md);
  padding: 1.9rem 1.6rem;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}
.svc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.svc-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.svc-card:hover::before { transform: scaleX(1); }
.svc-card__ico {
  width: 50px; height: 50px;
  background: var(--accent-light);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem;
  color: var(--accent);
}
.svc-card h3 { margin-bottom: .45rem; }
.svc-card p { font-size: .88rem; color: var(--neutral-600); max-width: none; }

/* ============================================================
   PROCESO — línea de tiempo horizontal
   ============================================================ */
.process__track {
  display: grid;
  gap: 2rem;
  counter-reset: step-counter;
}
.step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 1.25rem;
  align-items: start;
}
.step__num {
  width: 60px; height: 60px;
  background: var(--accent);
  color: var(--white);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(194,112,31,.3);
}
.step__body h3 { margin-bottom: .35rem; font-size: 1.05rem; }
.step__body p { font-size: .88rem; color: var(--neutral-600); max-width: none; }

@media (min-width: 900px) {
  .process__track {
    grid-template-columns: repeat(3, 1fr);
  }
  .step {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }
  .step__num { margin-bottom: .5rem; }
}

/* ============================================================
   TESTIMONIOS
   ============================================================ */
.testimonials__grid {
  display: grid;
  gap: var(--gap-md);
  grid-template-columns: repeat(auto-fill, minmax(275px, 1fr));
}
.testi {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 1.9rem 1.6rem;
  box-shadow: var(--shadow-xs);
  border: 1px solid var(--neutral-200);
  display: flex;
  flex-direction: column;
}
.testi__stars {
  color: var(--accent);
  font-size: .9rem;
  letter-spacing: .08em;
  margin-bottom: .9rem;
}
.testi__body {
  font-size: .91rem;
  font-style: italic;
  color: var(--neutral-800);
  flex: 1;
  margin-bottom: 1.3rem;
  max-width: none;
}
.testi__open-quote {
  font-family: var(--font-serif);
  font-size: 3rem;
  color: var(--neutral-200);
  line-height: .8;
  margin-bottom: .5rem;
}
.testi__author {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--neutral-100);
}
.testi__avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--accent-light);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
}
.testi__name { font-size: .88rem; font-weight: 700; color: var(--neutral-950); }
.testi__city { font-size: .78rem; color: var(--neutral-400); }

/* ============================================================
   FAQ ACORDEÓN
   ============================================================ */
.faq__wrap {
  max-width: 800px;
  margin-inline: auto;
}
.faq__item { border-bottom: 1px solid var(--neutral-200); }
.faq__item:first-child { border-top: 1px solid var(--neutral-200); }
.faq__btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 0;
  text-align: left;
  font-size: .96rem;
  font-weight: 700;
  color: var(--neutral-950);
  transition: color var(--transition);
}
.faq__btn:hover { color: var(--accent); }
.faq__indicator {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 2px solid var(--neutral-200);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
  color: var(--neutral-600);
}
.faq__btn[aria-expanded="true"] .faq__indicator {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
  transform: rotate(45deg);
}
.faq__panel {
  overflow: hidden;
  max-height: 0;
  transition: max-height .38s ease;
}
.faq__panel.is-open { max-height: 700px; }
.faq__panel p {
  padding-bottom: 1.15rem;
  font-size: .9rem;
  color: var(--neutral-600);
  max-width: none;
}
.faq__panel a { color: var(--accent); text-decoration: underline; }

/* ============================================================
   BANNER CTA FINAL
   ============================================================ */
.cta-strip {
  background: var(--accent);
  padding-block: 72px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-strip::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 320px; height: 320px;
  background: rgba(255,255,255,.06);
  border-radius: 50%;
  pointer-events: none;
}
.cta-strip h2 { color: var(--white); margin-bottom: 1rem; }
.cta-strip p  { color: rgba(255,255,255,.78); margin-inline: auto; margin-bottom: 2rem; }
.cta-strip__btns { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }

/* ============================================================
   NOSOTROS
   ============================================================ */
.about-intro { padding-block: 80px 0; }
.about-intro__inner {
  display: grid;
  gap: 3rem;
  align-items: center;
}
.about-intro__quote-wrap {
  background: var(--accent-light);
  border-radius: var(--r-lg);
  padding: 2.5rem 2rem;
  border-left: 4px solid var(--accent);
}
.about-intro__quote {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--neutral-950);
  line-height: 1.5;
  margin-bottom: 1rem;
}
.about-intro__quote-attr { font-size: .82rem; color: var(--neutral-600); }

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: var(--gap-md);
}
.value-tile {
  padding: 1.75rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: var(--r-md);
}
.value-tile__ico {
  width: 44px; height: 44px;
  background: var(--accent-light);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  margin-bottom: 1rem;
}
.value-tile h3 { font-size: 1rem; margin-bottom: .35rem; }
.value-tile p  { font-size: .86rem; color: var(--neutral-600); max-width: none; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 1.25rem;
  max-width: 820px;
}
.team-card { text-align: center; }
.team-card__avatar {
  width: 76px; height: 76px;
  border-radius: 50%;
  background: var(--accent-light);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
  border: 3px solid var(--accent);
}
.team-card strong { display: block; font-size: .92rem; color: var(--neutral-950); }
.team-card span   { font-size: .8rem; color: var(--neutral-600); }

@media (min-width: 780px) {
  .about-intro__inner { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   SERVICIOS (página completa)
   ============================================================ */
.services-full-grid {
  display: grid;
  gap: 1.5rem;
}
.svc-row {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 1.5rem;
  align-items: start;
  padding: 2rem;
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: var(--r-md);
  transition: box-shadow var(--transition), border-color var(--transition);
}
.svc-row:hover {
  box-shadow: var(--shadow-sm);
  border-color: var(--accent);
}
.svc-row__ico {
  width: 68px; height: 68px;
  background: var(--accent-light);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
}
.svc-row h3 { margin-bottom: .35rem; }
.svc-row p  { font-size: .88rem; color: var(--neutral-600); max-width: none; }

@media (min-width: 700px) {
  .services-full-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   CONTACTO
   ============================================================ */
.contact-layout {
  display: grid;
  gap: 3rem;
  align-items: start;
}
.contact-data__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.6rem;
}
.contact-data__ico {
  width: 46px; height: 46px;
  background: var(--accent-light);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
}
.contact-data__label { font-size: .74rem; text-transform: uppercase; letter-spacing: .1em; color: var(--neutral-400); margin-bottom: .15rem; }
.contact-data__val   { font-size: .95rem; color: var(--neutral-950); font-weight: 700; }
.contact-data__val a { color: var(--accent); transition: color var(--transition); }
.contact-data__val a:hover { color: var(--accent-dark); }

/* Formulario */
.form-card {
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: var(--r-lg);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-sm);
}
.form-card__title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--neutral-950);
  margin-bottom: 1.6rem;
}
.fg { margin-bottom: 1.3rem; }
.fg label {
  display: block;
  font-size: .82rem;
  font-weight: 700;
  color: var(--neutral-800);
  margin-bottom: .4rem;
}
.fg input,
.fg select,
.fg textarea {
  width: 100%;
  padding: .72rem 1rem;
  border: 1.5px solid var(--neutral-200);
  border-radius: var(--r-sm);
  font-family: var(--font-sans);
  font-size: .9rem;
  color: var(--neutral-950);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.fg input:focus,
.fg select:focus,
.fg textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(194,112,31,.14);
}
.fg.has-err input,
.fg.has-err select,
.fg.has-err textarea { border-color: #B91C1C; }
.fg textarea { resize: vertical; min-height: 118px; }
.fg__err { display: none; font-size: .76rem; color: #B91C1C; margin-top: .3rem; }
.fg.has-err .fg__err { display: block; }
.form-row { display: grid; gap: 1rem; }
.form-legal { font-size: .76rem; color: var(--neutral-400); margin-bottom: 1.2rem; }
.form-legal a { color: var(--accent); text-decoration: underline; }
.form-success {
  display: none;
  text-align: center;
  padding: 2.5rem 1rem;
}
.form-success.is-shown { display: block; }
.form-success__icon { font-size: 3.5rem; margin-bottom: 1rem; }
.form-success h3 { font-size: 1.2rem; margin-bottom: .5rem; }
.form-success p { font-size: .88rem; color: var(--neutral-600); }
.form-btn-wrap { display: flex; }
.form-btn-wrap .btn { width: 100%; justify-content: center; }

@media (min-width: 780px) {
  .contact-layout { grid-template-columns: 1fr 1.6fr; }
  .form-row { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   PÁGINAS LEGALES
   ============================================================ */
.legal-header {
  padding-block: 72px 52px;
  background: var(--neutral-100);
  border-bottom: 1px solid var(--neutral-200);
}
.legal-body {
  padding-block: 64px;
  max-width: 820px;
}
.legal-body h2 {
  font-size: 1.2rem;
  margin: 2.2rem 0 .7rem;
  color: var(--neutral-950);
  border-bottom: 1px solid var(--neutral-200);
  padding-bottom: .4rem;
}
.legal-body p,
.legal-body li {
  font-size: .9rem;
  color: var(--neutral-600);
  margin-bottom: .7rem;
  max-width: none;
}
.legal-body ul { padding-left: 1.25rem; list-style: disc; }
.legal-body ul li { margin-bottom: .35rem; }
.legal-body a { color: var(--accent); text-decoration: underline; }
.breadcrumb { font-size: .8rem; color: var(--neutral-400); margin-bottom: 1.2rem; }
.breadcrumb a { color: var(--accent); }
.breadcrumb span { margin-inline: .3rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--neutral-950);
  color: var(--neutral-400);
  padding-block: 60px 32px;
}
.footer__top {
  display: grid;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.footer__brand .nav__wordmark { color: var(--white); }
.footer__brand .nav__wordmark strong { color: var(--accent-mid); }
.footer__brand p {
  font-size: .85rem;
  color: #6B5E57;
  margin-top: .75rem;
  max-width: 34ch;
}
.footer__col h4 {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1rem;
}
.footer__col ul { display: flex; flex-direction: column; gap: .45rem; }
.footer__col ul a {
  font-size: .86rem;
  color: #6B5E57;
  transition: color var(--transition);
}
.footer__col ul a:hover { color: var(--neutral-400); }
.footer__disclaimer {
  background: rgba(194,112,31,.1);
  border-left: 3px solid rgba(194,112,31,.4);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  padding: .85rem 1.15rem;
  font-size: .79rem;
  color: #6B5E57;
  margin-bottom: 2rem;
  max-width: 700px;
}
.footer__bottom {
  border-top: 1px solid #2C2420;
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  justify-content: space-between;
  font-size: .78rem;
  color: #3D3530;
}
.footer__bottom address { font-style: normal; color: #3D3530; }

@media (min-width: 620px) {
  .footer__top { grid-template-columns: 1.6fr 1fr 1fr; }
}

/* ============================================================
   RESPONSIVE GENERAL
   ============================================================ */
@media (min-width: 780px) {
  :root { --section-v: 108px; }
}
