/* ── TOKENS ── */
:root {
  --c:   #F6F3EC;   /* cream  — fondo principal */
  --s:   #B9A590;   /* sand   — acentos */
  --n:   #2B4E6E;   /* navy   — tipografía / botones */
  --o:   #3B5110;   /* olive  — iconos / hover */
  --nd:  #1C3347;
  --ndd: #0e1f2d;
  --ink: #111111;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--c);
  color: var(--ink);
  overflow-x: hidden;
}

/* ── GRAIN ── */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 9999;
  pointer-events: none; opacity: .022;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
}

/* ═══════════════════════════════
   NAV
═══════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  padding: 1.4rem 3rem;
  display: flex; align-items: center; justify-content: space-between;
  transition: background .35s, box-shadow .35s;
}
nav.solid {
  background: rgba(43,78,110,.96);
  backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 rgba(185,165,144,.12);
}
nav.solid .nav-logo-main { color: var(--c); }
nav.solid .nav-logo-sub  { color: var(--s); }
nav.solid .nav-links a   { color: rgba(246,243,236,.65); }
nav.solid .nav-links a:hover { color: var(--s); }
nav.solid .nav-btn {
  background: var(--c); color: var(--ndd);
}
nav.solid .nav-btn:hover { background: var(--s); }

.nav-logo {
  display: flex; flex-direction: column; gap: .1rem;
  text-decoration: none;
}
.nav-logo-main {
  font-family: 'Fraunces', serif;
  font-size: .9rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink);
  transition: color .35s;
}
.nav-logo-sub {
  font-size: .58rem; font-weight: 400;
  letter-spacing: .26em; text-transform: uppercase;
  color: var(--s);
  transition: color .35s;
}
.nav-right { display: flex; align-items: center; gap: 2.5rem; }
.nav-links  { list-style: none; display: flex; gap: 2rem; }
.nav-links a {
  font-size: .7rem; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  color: rgba(17,17,17,.5); text-decoration: none;
  transition: color .25s;
}
.nav-links a:hover { color: var(--n); }
.nav-btn {
  font-size: .68rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--c); background: var(--ndd);
  padding: .6rem 1.4rem; border-radius: 3px;
  text-decoration: none;
  transition: background .25s;
}
.nav-btn:hover { background: var(--n); }
.nav-hamburger { display: none; }

/* ═══════════════════════════════
   HERO
═══════════════════════════════ */
.hero {
  min-height: 100svh;
  background: var(--c);
  display: flex; align-items: stretch;
  padding-top: 5rem;
  position: relative;
}
.hero-inner {
  width: 100%; max-width: 1400px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; padding: 5rem 3rem 5rem;
  align-items: center;
}

/* left */
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .65rem; font-weight: 500;
  letter-spacing: .26em; text-transform: uppercase;
  color: var(--n); margin-bottom: 2rem;
  opacity: .6;
}
.hero-eyebrow svg { opacity: .6; }
.hero-h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(3rem, 6.5vw, 6.5rem);
  font-weight: 700; line-height: .92;
  letter-spacing: -.02em; color: var(--ink);
  margin-bottom: 1.8rem;
}
.hero-h1 em { font-style: italic; color: var(--n); }
.hero-body {
  font-size: clamp(.88rem, 1.2vw, 1.05rem);
  font-weight: 300; line-height: 1.8;
  color: rgba(17,17,17,.6);
  max-width: 420px; margin-bottom: 2.5rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }

.btn-primary {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .7rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--c); background: var(--ndd);
  padding: .9rem 2rem; border-radius: 3px;
  text-decoration: none; border: 1px solid var(--ndd);
  transition: background .25s, transform .2s;
}
.btn-primary:hover { background: var(--n); border-color: var(--n); transform: translateY(-1px); }

.btn-outline-dark {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .7rem; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink); background: transparent;
  padding: .9rem 2rem; border-radius: 3px;
  text-decoration: none; border: 1px solid rgba(17,17,17,.25);
  transition: border-color .25s, color .25s;
}
.btn-outline-dark:hover { border-color: var(--n); color: var(--n); }

.hero-trust {
  display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap;
}
.hero-trust span {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .72rem; font-weight: 400;
  color: rgba(17,17,17,.5);
}
.hero-trust svg { color: var(--o); flex-shrink: 0; }

/* right */
.hero-right {
  display: flex; justify-content: flex-end; align-items: center;
}
.hero-img-card {
  width: 100%; max-width: 480px;
  background: var(--nd);
  border-radius: 8px;
  border: 1px solid rgba(43,78,110,.12);
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 80px rgba(43,78,110,.12), 0 4px 20px rgba(0,0,0,.06);
}
.hero-img-card img {
  width: 100%; aspect-ratio: 3/4;
  object-fit: cover; display: block;
}

/* floating card overlay */
.hero-badge {
  position: absolute; bottom: 1.5rem; left: 1.5rem; right: 1.5rem;
  background: rgba(14,31,45,.88);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(185,165,144,.18);
  border-radius: 6px;
  padding: 1.2rem 1.4rem;
}
.hero-badge-top {
  display: flex; gap: .35rem; margin-bottom: .9rem;
}
.hero-badge-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(246,243,236,.2);
}
.hero-badge-dot--green { background: var(--o); }
.hero-badge-num {
  font-family: 'Fraunces', serif;
  font-size: 2.4rem; font-weight: 700;
  color: var(--s); line-height: 1;
  margin-bottom: .2rem;
}
.hero-badge-label {
  font-size: .65rem; font-weight: 400;
  letter-spacing: .14em; text-transform: uppercase;
  color: rgba(246,243,236,.4); line-height: 1.5;
  margin-bottom: .9rem;
}
.hero-badge-row { display: flex; gap: .4rem; }
.hero-badge-chip {
  font-size: .6rem; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--o); background: rgba(59,81,16,.15);
  border: 1px solid rgba(59,81,16,.3);
  padding: .25rem .65rem; border-radius: 999px;
}

/* ═══════════════════════════════
   TRUST STRIP
═══════════════════════════════ */
.trust-strip {
  background: var(--n);
  padding: 2rem 3rem;
  border-top: 1px solid rgba(185,165,144,.08);
  border-bottom: 1px solid rgba(185,165,144,.08);
}
.trust-strip-inner {
  max-width: 1400px; margin: 0 auto;
  display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap;
  gap: 1.5rem;
}
.trust-strip-inner span {
  display: inline-flex; align-items: center; gap: .65rem;
  font-size: .78rem; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase;
  color: rgba(246,243,236,.55);
}
.trust-strip-inner svg {
  width: 16px; height: 16px;
  color: var(--o); flex-shrink: 0;
}

/* ═══════════════════════════════
   MARQUEE
═══════════════════════════════ */
.marquee-strip {
  background: var(--n);
  overflow: hidden;
  padding: 1.4rem 0;
  border-bottom: 1px solid rgba(185,165,144,.06);
}
.marquee-track {
  display: flex; align-items: center; gap: 2.5rem;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee-track span {
  font-size: .82rem; font-weight: 500;
  letter-spacing: .22em; text-transform: uppercase;
  color: rgba(246,243,236,.45);
  white-space: nowrap;
}
.marquee-track .ms {
  font-style: normal;
  color: var(--s); opacity: .7;
  font-size: 1rem;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ═══════════════════════════════
   MISIÓN
═══════════════════════════════ */
.mision {
  background: var(--c);
  padding: 9rem 3rem;
}
.mision-inner {
  max-width: 1400px; margin: 0 auto;
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 6rem; align-items: center;
}
.tag {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .62rem; font-weight: 500;
  letter-spacing: .28em; text-transform: uppercase;
  color: var(--s); margin-bottom: 2.5rem;
}
.tag::before { content: ''; width: 24px; height: 1px; background: var(--s); }

.mision-quote-wrap { position: relative; }
.mision-quote-mark {
  font-family: 'Fraunces', serif;
  font-size: 10rem; line-height: .7;
  color: rgba(43,78,110,.08);
  position: absolute; top: 0; left: -1rem;
  user-select: none; pointer-events: none;
}
.mision-quote {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.3rem, 2.2vw, 2rem);
  font-weight: 300; font-style: italic;
  line-height: 1.55; color: var(--ink);
  padding-left: 1.5rem;
  border-left: 3px solid var(--o);
  margin-bottom: 2.5rem;
  quotes: none;
}
.mision-sig {
  display: flex; align-items: center; gap: 1rem;
}
.mision-sig-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(43,78,110,.12);
  flex-shrink: 0;
}
.mision-sig-avatar img { width: 100%; height: 100%; object-fit: cover; }
.mision-sig-name {
  font-family: 'Fraunces', serif;
  font-size: .95rem; font-weight: 600;
  color: var(--n);
}
.mision-sig-loc {
  font-size: .65rem; letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(43,78,110,.45); margin-top: .15rem;
}

.mision-photo-card {
  width: min(100%, 430px);
  margin-left: auto;
  border-radius: 6px;
  overflow: hidden;
  background: rgba(43,78,110,.08);
  box-shadow: 0 24px 70px rgba(16, 29, 42, .14);
  border: 1px solid rgba(43,78,110,.08);
}
.mision-photo {
  display: block;
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center;
}

/* ═══════════════════════════════
   SERVICIOS — acordeón editorial
═══════════════════════════════ */
.servicios {
  background: var(--n);
}

/* header */
.svc-header {
  padding: 9rem 3rem 5rem;
  border-bottom: 1px solid rgba(246,243,236,.15);
}
.svc-header-inner {
  max-width: 1400px; margin: 0 auto;
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 2rem;
}
.tag-light {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .62rem; font-weight: 500;
  letter-spacing: .28em; text-transform: uppercase;
  color: var(--s); margin-bottom: 1.2rem;
}
.tag-light::before { content: ''; width: 24px; height: 1px; background: var(--s); }
.svc-h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.8rem, 5vw, 5.5rem);
  font-weight: 700; line-height: .9;
  color: var(--c);
}
.svc-header-sub {
  font-size: .88rem; font-weight: 300;
  line-height: 1.85; color: rgba(246,243,236,.3);
  text-align: right; max-width: 220px;
}

/* lista acordeón */
.svc-list {
  max-width: 1400px; margin: 0 auto;
  padding: 0 3rem 8rem;
}

.svc-item {
  border-bottom: 1px solid rgba(246,243,236,.12);
}
.svc-item:first-child { border-top: 1px solid rgba(246,243,236,.12); }

.svc-trigger {
  width: 100%;
  display: grid;
  grid-template-columns: 5rem 1fr auto;
  align-items: center;
  gap: 2rem;
  background: none; border: none; cursor: pointer;
  padding: 2.2rem 0;
  text-align: left;
  transition: opacity .2s;
}
.svc-trigger:hover .svc-name { color: var(--s); }
.svc-trigger:hover .svc-num  { color: var(--s); }

.svc-num {
  font-family: 'Fraunces', serif;
  font-size: 4.5rem; font-weight: 700; line-height: 1;
  color: rgba(246,243,236,.1);
  transition: color .3s;
  user-select: none;
}
.svc-item.open .svc-num { color: rgba(185,165,144,.35); }

.svc-name {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.6rem, 2.8vw, 2.8rem);
  font-weight: 700; line-height: 1;
  color: var(--c);
  transition: color .3s;
}
.svc-item.open .svc-name { color: var(--s); }

.svc-btn-wrap {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(246,243,236,.15);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background .3s, border-color .3s, transform .35s;
}
.svc-btn-wrap svg { width: 16px; height: 16px; color: rgba(246,243,236,.5); transition: color .3s; }
.svc-item.open .svc-btn-wrap {
  background: var(--s);
  border-color: var(--s);
  transform: rotate(45deg);
}
.svc-item.open .svc-btn-wrap svg { color: var(--ndd); }

/* panel expandible */
.svc-panel {
  max-height: 0; overflow: hidden;
  transition: max-height .5s cubic-bezier(.4,0,.2,1);
}
.svc-item.open .svc-panel { max-height: 600px; }

.svc-panel-inner {
  display: grid;
  grid-template-columns: 5rem 1fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
}
/* ocupa la columna del contenido, salta la del número */
.svc-panel-inner > * { grid-column: 2; }

.svc-desc {
  font-size: .9rem; font-weight: 300; line-height: 1.9;
  color: rgba(246,243,236,.5);
  margin-bottom: 1.5rem;
  max-width: 700px;
}
.svc-tags {
  display: flex; flex-wrap: wrap; gap: .4rem;
}
.svc-tags span {
  font-size: .62rem; font-weight: 400;
  letter-spacing: .04em;
  color: rgba(185,165,144,.6);
  background: rgba(185,165,144,.07);
  border: 1px solid rgba(185,165,144,.12);
  padding: .3rem .75rem; border-radius: 999px;
  transition: background .25s, color .25s;
}
.svc-tags span:hover {
  background: rgba(185,165,144,.15);
  color: var(--s);
}

/* ═══════════════════════════════
   MARQUEE SERVICIOS (grande)
═══════════════════════════════ */
.svc-marquee {
  background: var(--c);
  overflow: hidden;
  border-top: 1px solid rgba(43,78,110,.08);
  border-bottom: 1px solid rgba(43,78,110,.08);
  padding: 2rem 0;
}
.svc-marquee-track {
  display: flex; align-items: baseline; gap: 2.5rem;
  width: max-content;
  animation: marquee-rev 35s linear infinite;
}
.svc-marquee-track span {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.6rem, 3vw, 2.8rem);
  font-weight: 700; font-style: italic;
  color: rgba(43,78,110,.12);
  white-space: nowrap;
}
.svc-marquee-track .svm-sep {
  color: var(--s); font-size: 1.5rem;
  font-style: normal; opacity: .4;
}
@keyframes marquee-rev {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

/* ═══════════════════════════════
   GALERÍA
═══════════════════════════════ */
.galeria {
  background: var(--c);
  padding: 7rem 3rem;
}
.galeria-badge-wrap {
  display: flex; justify-content: center;
  margin-bottom: 3rem;
}
.galeria-badge {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: 'Fraunces', serif;
  font-size: 1.1rem; font-weight: 600;
  color: var(--ink);
  background: var(--c);
  border: 1.5px solid rgba(43,78,110,.18);
  padding: .7rem 1.8rem;
  border-radius: 999px;
  box-shadow: 0 2px 16px rgba(43,78,110,.06);
}
.galeria-badge svg { color: var(--n); }

.galeria-grid {
  max-width: 1400px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 340px 260px;
  gap: .75rem;
}
/* foto 1 — ocupa col 1, ambas filas */
.gi:nth-child(1) { grid-column: 1; grid-row: 1 / 3; }
/* foto 2 — col 2, fila 1 */
.gi:nth-child(2) { grid-column: 2; grid-row: 1; }
/* foto 3 — col 3, fila 1 */
.gi:nth-child(3) { grid-column: 3; grid-row: 1; }
/* foto 4 — col 2, fila 2 */
.gi:nth-child(4) { grid-column: 2; grid-row: 2; }
/* foto 5 — col 3, fila 2 */
.gi:nth-child(5) { grid-column: 3; grid-row: 2; }
/* foto 6 — fila 3, ancho completo */
.gi:nth-child(6) { grid-column: 1 / -1; grid-row: 3; height: 220px; }

.gi {
  overflow: hidden; border-radius: 4px;
  background: var(--nd);
}
.gi img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .6s ease;
}
.gi:hover img { transform: scale(1.04); }

.galeria-footer {
  display: flex; justify-content: center;
  margin-top: 3rem;
}

/* ═══════════════════════════════
   PROCESO
═══════════════════════════════ */
.proceso {
  background: #EFECE5;
  padding: 9rem 3rem;
}
.proceso-inner { max-width: 1400px; margin: 0 auto; }
.proceso-top {
  text-align: center;
  margin-bottom: 5rem;
}
.proceso-icon-top {
  width: 56px; height: 56px; margin: 0 auto 2rem;
  color: var(--n); opacity: .6;
}
.proceso-icon-top svg { width: 100%; height: 100%; }
.proceso-h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  font-weight: 700; line-height: 1.1;
  color: var(--ink); margin-bottom: 1.2rem;
}
.proceso-sub {
  font-size: .92rem; font-weight: 300;
  line-height: 1.75; color: rgba(17,17,17,.5);
  margin-bottom: 2.5rem;
}

.proceso-steps {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 3rem 2.4rem;
  max-width: 1180px;
  margin: 0 auto;
}
.proceso-step {
  text-align: center;
  grid-column: span 2;
}
.proceso-step:nth-child(4) {
  grid-column: 2 / span 2;
}
.proceso-step:nth-child(5) {
  grid-column: 4 / span 2;
}
.ps-num {
  font-family: 'Fraunces', serif;
  font-size: .72rem; font-weight: 600;
  letter-spacing: .18em;
  color: var(--s); margin-bottom: 1.5rem;
}
.ps-icon {
  width: 52px; height: 52px;
  color: var(--n); margin: 0 auto 1.5rem;
  display: block;
}
.ps-title {
  font-family: 'Fraunces', serif;
  font-size: 1.2rem; font-weight: 700;
  color: var(--ink); margin-bottom: .8rem;
  line-height: 1.25;
}
.ps-desc {
  font-size: .84rem; font-weight: 300;
  line-height: 1.8; color: rgba(17,17,17,.55);
}

/* ═══════════════════════════════
   CTA FINAL
═══════════════════════════════ */
.cta-final {
  background: var(--n);
  padding: 8rem 3rem 0;
  overflow: hidden;
}
.cta-final-inner {
  max-width: 1400px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
  padding-bottom: 8rem;
}
.cta-h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.4rem, 4.5vw, 5rem);
  font-weight: 700; line-height: .95;
  color: var(--c); margin-bottom: 1.5rem;
}
.cta-body {
  font-size: .92rem; font-weight: 300;
  line-height: 1.8; color: rgba(246,243,236,.5);
  max-width: 380px; margin-bottom: 2.5rem;
}
.btn-cta-cream {
  display: inline-flex; align-items: center;
  font-size: .7rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--ndd); background: var(--c);
  padding: .9rem 2rem; border-radius: 3px;
  text-decoration: none; margin-bottom: 2rem;
  transition: background .25s;
}
.btn-cta-cream:hover { background: var(--s); }
.cta-checks {
  display: flex; flex-direction: column; gap: .6rem;
}
.cta-checks span {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .72rem; font-weight: 400;
  color: rgba(246,243,236,.45);
}
.cta-checks svg { color: var(--o); flex-shrink: 0; }

/* sticker cloud */
.cta-final-right {
  display: flex; align-items: center; justify-content: center;
}
.sticker-cloud {
  display: flex; flex-direction: column;
  gap: 1rem; align-items: flex-start;
}
.stk {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.6rem, 2.5vw, 2.5rem);
  font-weight: 700; line-height: 1;
  padding: .55rem 1.6rem;
  border-radius: 999px;
  white-space: nowrap;
}
.stk-1 {
  background: var(--c); color: var(--ndd);
  transform: rotate(-2deg);
}
.stk-2 {
  background: var(--o); color: var(--c);
  transform: rotate(1.5deg); align-self: center;
}
.stk-3 {
  background: transparent;
  border: 2px solid rgba(246,243,236,.3);
  color: var(--c);
  transform: rotate(-1deg); align-self: flex-end;
}
.stk-4 {
  background: var(--s); color: var(--ndd);
  transform: rotate(2deg);
}

/* bottom marquee strip */
.cta-strip-bottom {
  border-top: 1px solid rgba(246,243,236,.12);
  padding: 1.2rem 3rem;
  display: flex; align-items: center;
  gap: 2rem; overflow: hidden;
  flex-wrap: nowrap;
}
.cta-strip-bottom span {
  font-size: .62rem; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase;
  color: rgba(246,243,236,.25); white-space: nowrap;
}
.csb-sep { color: var(--s); opacity: .4; }

/* ═══════════════════════════════
   FAQ
═══════════════════════════════ */
.faq {
  background: var(--c);
  padding: 9rem 3rem;
}
.faq-inner {
  max-width: 900px; margin: 0 auto;
}
.faq-h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.4rem, 4vw, 4rem);
  font-weight: 700; line-height: 1.0;
  color: var(--ink); text-align: center;
  margin-bottom: 4rem;
}
.faq-list { display: flex; flex-direction: column; }
.faq-item {
  border-bottom: 1px solid rgba(43,78,110,.1);
}
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem;
  background: none; border: none; cursor: pointer;
  padding: 1.6rem 0;
  font-family: 'DM Sans', sans-serif;
  font-size: .97rem; font-weight: 400;
  color: var(--ink); text-align: left;
  transition: color .25s;
}
.faq-q:hover { color: var(--n); }
.faq-q:hover .faq-arrow { color: var(--n); transform: rotate(0deg) translateX(2px); }
.faq-arrow {
  width: 18px; height: 18px; flex-shrink: 0;
  color: var(--s);
  transition: transform .3s, color .25s;
}
.faq-item.open .faq-arrow { transform: rotate(90deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .4s ease;
}
.faq-item.open .faq-a { max-height: 300px; }
.faq-a p {
  padding-bottom: 1.6rem;
  font-size: .88rem; font-weight: 300;
  line-height: 1.85; color: rgba(17,17,17,.6);
}

/* ═══════════════════════════════
   FORMULARIO
═══════════════════════════════ */
.formulario {
  background: var(--c);
  padding: 9rem 3rem;
  border-top: 1px solid rgba(43,78,110,.08);
}
.formulario-inner {
  max-width: 1400px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: 8rem; align-items: start;
}
.form-h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 3.2vw, 3.5rem);
  font-weight: 700; line-height: 1.0;
  color: var(--n); margin-top: .5rem; margin-bottom: 2rem;
}
.form-info-body {
  font-size: .9rem; font-weight: 300; line-height: 1.85;
  color: rgba(43,78,110,.6); margin-bottom: 3rem;
}
.contact-list { display: flex; flex-direction: column; gap: 1.4rem; }
.contact-row  { display: flex; gap: 1rem; align-items: flex-start; }
.cr-icon {
  width: 20px; height: 20px; flex-shrink: 0;
  margin-top: 2px; color: var(--o);
}
.cr-body { font-size: .87rem; font-weight: 300; line-height: 1.6; color: var(--n); }
.cr-body strong {
  display: block; font-size: .6rem; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--s); margin-bottom: .2rem;
}
.cr-body a {
  color: var(--n); text-decoration: none;
  border-bottom: 1px solid rgba(43,78,110,.2);
  transition: color .25s, border-color .25s;
}
.cr-body a:hover { color: var(--o); border-color: var(--o); }

.form-loc-img {
  margin-top: 2.5rem; position: relative;
  height: 220px; overflow: hidden; border-radius: 4px;
}
.form-loc-img img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  filter: saturate(.75);
  transition: transform .5s ease;
}
.form-loc-img:hover img { transform: scale(1.04); }
.loc-label {
  position: absolute; bottom: .8rem; left: 1rem;
  font-size: .6rem; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase;
  color: rgba(246,243,236,.85);
  background: rgba(14,31,45,.55);
  backdrop-filter: blur(6px);
  padding: .3rem .7rem; border-radius: 3px;
}

/* form box */
.form-box {
  background: var(--n); padding: 3.5rem;
  border-radius: 6px;
}
.form-box-title {
  font-family: 'Fraunces', serif;
  font-size: 1.7rem; font-weight: 400;
  color: var(--c); margin-bottom: 2.5rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0 1.5rem; }
.form-field { margin-bottom: 1.6rem; }
.form-field label {
  display: block; font-size: .6rem; font-weight: 500;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--s); margin-bottom: .5rem;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  background: rgba(246,243,236,.06);
  border: 1px solid rgba(246,243,236,.12);
  border-radius: 3px;
  padding: .8rem 1rem;
  color: var(--c); font-family: 'DM Sans', sans-serif;
  font-size: .88rem; font-weight: 300;
  outline: none;
  transition: border-color .25s, background .25s;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(246,243,236,.2); }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--s);
  background: rgba(246,243,236,.09);
}
.form-field select {
  -webkit-appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23B9A590'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center;
}
.form-field select option, .form-field select optgroup {
  background: var(--nd); color: var(--c);
}
.form-field textarea { resize: vertical; min-height: 100px; line-height: 1.65; }
.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;
}
.form-submit {
  width: 100%; margin-top: .5rem;
  font-family: 'DM Sans', sans-serif;
  font-size: .7rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--n); background: var(--c);
  border: none; border-radius: 3px;
  padding: 1rem; cursor: pointer;
  transition: background .25s;
}
.form-submit:hover { background: var(--s); }
.form-submit:disabled {
  cursor: wait;
  opacity: .72;
}
.form-privacy-note {
  margin-top: 1rem;
  font-size: .72rem;
  line-height: 1.7;
  color: rgba(246,243,236,.46);
}
.form-status {
  min-height: 1.5rem;
  margin-top: 1rem;
  font-size: .82rem;
  line-height: 1.7;
  color: rgba(246,243,236,.6);
}
.form-status.is-success {
  color: #D9E7BE;
}
.form-status.is-error {
  color: #E8C1B8;
}

/* ═══════════════════════════════
   LEGAL PAGE
═══════════════════════════════ */
.legal-page {
  background: linear-gradient(180deg, #F6F3EC 0%, #F2EEE6 100%);
}
.legal-nav-right {
  gap: 0;
}
.legal-main {
  padding-top: 6rem;
}
.legal-hero {
  padding: 4rem 3rem 2rem;
}
.legal-hero-inner {
  max-width: 980px;
  margin: 0 auto;
}
.legal-h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.8rem, 6vw, 5.4rem);
  font-weight: 700;
  line-height: .94;
  color: var(--ink);
  margin-bottom: 1.4rem;
}
.legal-intro {
  max-width: 720px;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(17,17,17,.62);
}
.legal-content-wrap {
  padding: 1rem 3rem 7rem;
}
.legal-content-card {
  max-width: 980px;
  margin: 0 auto;
  background: rgba(255,255,255,.52);
  border: 1px solid rgba(43,78,110,.08);
  border-radius: 10px;
  box-shadow: 0 24px 80px rgba(43,78,110,.08);
  backdrop-filter: blur(8px);
}
.legal-richtext {
  padding: 3rem;
  color: rgba(17,17,17,.78);
}
.legal-richtext h1,
.legal-richtext h2,
.legal-richtext h3 {
  font-family: 'Fraunces', serif;
  color: var(--n);
  line-height: 1.12;
  margin: 2rem 0 1rem;
}
.legal-richtext h1:first-child,
.legal-richtext h2:first-child,
.legal-richtext h3:first-child {
  margin-top: 0;
}
.legal-richtext h2 {
  font-size: 1.55rem;
}
.legal-richtext h3 {
  font-size: 1.2rem;
}
.legal-richtext p,
.legal-richtext li {
  font-size: .95rem;
  font-weight: 300;
  line-height: 1.95;
}
.legal-richtext p + p,
.legal-richtext ul,
.legal-richtext ol {
  margin-top: 1rem;
}
.legal-richtext ul,
.legal-richtext ol {
  padding-left: 1.3rem;
}
.legal-richtext a {
  color: var(--n);
}

/* ═══════════════════════════════
   FOOTER
═══════════════════════════════ */
footer {
  background: var(--n);
  padding: 5rem 3rem 3rem;
}
.footer-inner { max-width: 1400px; margin: 0 auto; }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem; padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(185,165,144,.08);
  margin-bottom: 2.5rem;
}
.footer-logo-name {
  font-family: 'Fraunces', serif;
  font-size: 1.2rem; font-weight: 700;
  color: var(--c); letter-spacing: .04em; margin-bottom: .3rem;
}
.footer-logo-loc {
  font-size: .6rem; letter-spacing: .24em;
  text-transform: uppercase; color: var(--s); margin-bottom: 1.8rem;
}
.footer-brand-p {
  font-size: .82rem; font-weight: 300;
  line-height: 1.75; color: rgba(246,243,236,.35);
  max-width: 260px;
}
.footer-col-h {
  font-size: .6rem; font-weight: 500;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--s); margin-bottom: 1.4rem;
}
.footer-nav { list-style: none; display: flex; flex-direction: column; gap: .7rem; }
.footer-nav a {
  font-size: .82rem; font-weight: 300;
  color: rgba(246,243,236,.4); text-decoration: none;
  transition: color .25s;
}
.footer-nav a:hover { color: var(--s); }
.footer-addr {
  font-size: .82rem; font-weight: 300;
  color: rgba(246,243,236,.4); line-height: 1.75; margin-bottom: 1.4rem;
}
.footer-wa {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .75rem; font-weight: 500;
  color: var(--c); text-decoration: none;
  border-bottom: 1px solid rgba(246,243,236,.18); padding-bottom: 2px;
  transition: border-color .25s, color .25s;
}
.footer-wa:hover { color: var(--s); border-color: var(--s); }
.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  margin-top: 1.2rem;
}
.footer-social-link {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(246,243,236,.14);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(246,243,236,.62);
  text-decoration: none;
  transition: color .25s, border-color .25s, background .25s, transform .25s;
}
.footer-social-link:hover {
  color: var(--s);
  border-color: rgba(185,165,144,.45);
  background: rgba(246,243,236,.04);
  transform: translateY(-1px);
}
.footer-social-link svg {
  width: 16px;
  height: 16px;
  display: block;
}
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
}
.footer-copy {
  font-size: .68rem; color: rgba(246,243,236,.2); font-weight: 300;
}
.footer-privacy {
  font-size: .68rem; color: rgba(246,243,236,.3);
  text-decoration: none; letter-spacing: .1em; text-transform: uppercase;
  transition: color .25s;
}
.footer-privacy:hover { color: var(--s); }

/* ═══════════════════════════════
   REVEAL ANIMATIONS
═══════════════════════════════ */
.reveal {
  opacity: 0; transform: translateY(22px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.on { opacity: 1; transform: translateY(0); }
.reveal.d1 { transition-delay: .12s; }
.reveal.d2 { transition-delay: .22s; }
.reveal.d3 { transition-delay: .34s; }

/* ═══════════════════════════════
   RESPONSIVE
═══════════════════════════════ */
@media (max-width: 1100px) {
  nav { padding: 1.2rem 2rem; }
  .hero-inner { padding-left: 2rem; padding-right: 2rem; gap: 4rem; }
  .mision-inner { padding: 0 2rem; gap: 4rem; }
  .formulario-inner { padding: 0 2rem; gap: 4rem; }
  .cta-final-inner { padding: 0 2rem 8rem; gap: 4rem; }
  .galeria, .proceso, .faq, .formulario, .mision { padding-left: 2rem; padding-right: 2rem; }
  .svc-header { padding-left: 2rem; padding-right: 2rem; }
  .svc-list { padding-left: 2rem; padding-right: 2rem; }
  footer { padding-left: 2rem; padding-right: 2rem; }
  .trust-strip, .cta-strip-bottom { padding-left: 2rem; padding-right: 2rem; }
  .mision-inner { grid-template-columns: 1fr; gap: 4rem; }
  .mision-photo-card { margin: 0 auto; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .cta-strip-bottom { gap: 1.5rem; }
  .svc-header-inner { flex-direction: column; gap: 1.5rem; }
  .svc-header-sub { text-align: left; max-width: 100%; }
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; padding: 3rem 2rem 4rem; }
  .hero-right { display: none; }
  .trust-strip-inner { justify-content: center; }
  .svc-trigger { grid-template-columns: 3.5rem 1fr auto; gap: 1rem; }
  .svc-num { font-size: 3rem; }
  .svc-panel-inner { grid-template-columns: 3.5rem 1fr; gap: 1rem; }
  .formulario-inner { grid-template-columns: 1fr; gap: 3rem; }
  .cta-final-inner { grid-template-columns: 1fr; text-align: center; }
  .cta-body { max-width: 100%; }
  .cta-checks { align-items: center; }
  .sticker-cloud { align-items: center; }
  .galeria-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 200px 200px;
  }
  .gi:nth-child(1) { grid-column: 1; grid-row: 1; }
  .gi:nth-child(2) { grid-column: 2; grid-row: 1; }
  .gi:nth-child(3) { grid-column: 1; grid-row: 2; }
  .gi:nth-child(4) { grid-column: 2; grid-row: 2; }
  .gi:nth-child(5) { grid-column: 1; grid-row: 3; }
  .gi:nth-child(6) { grid-column: 2; grid-row: 3; height: auto; }
  .proceso-steps { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .proceso-step,
  .proceso-step:nth-child(4),
  .proceso-step:nth-child(5) { grid-column: auto; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-hamburger {
    display: flex; flex-direction: column; justify-content: center; gap: 5px;
    background: none; border: none; cursor: pointer; padding: .4rem;
    width: 36px; height: 36px; position: relative; z-index: 510;
  }
  .nav-hamburger span {
    display: block; width: 22px; height: 1.5px;
    background: var(--ink);
    transition: background .3s, transform .3s, opacity .3s;
    transform-origin: center;
  }
  /* Hamburguesa → X cuando menú abierto */
  .nav-hamburger[aria-expanded="true"] span { background: var(--c); }
  .nav-hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .nav-hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .nav-hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
  nav.solid .nav-hamburger span { background: var(--c); }

  .nav-right { display: none; }
  .nav-right.open {
    display: flex; flex-direction: column; align-items: flex-start; gap: 0;
    position: fixed; inset: 0;
    background: var(--n);
    padding: 0 2rem;
    z-index: 490;
    justify-content: center;
  }
  .nav-right.open .nav-links {
    display: flex; flex-direction: column; gap: 0;
    width: 100%;
  }
  .nav-right.open .nav-links a {
    font-size: 1.6rem; font-family: 'Fraunces', serif; font-weight: 300;
    color: var(--c); letter-spacing: .01em;
    padding: 1.1rem 0;
    border-bottom: 1px solid rgba(246,243,236,.12);
    display: block;
  }
  .nav-right.open .nav-links a:hover { color: var(--s); }
  .nav-right.open .nav-btn {
    margin-top: 2rem; font-size: .85rem;
    background: var(--c); color: var(--n);
    align-self: flex-start;
  }
  .svc-trigger { grid-template-columns: 2.8rem 1fr auto; gap: .8rem; padding: 1.6rem 0; }
  .svc-num { font-size: 2.2rem; }
  .svc-panel-inner { grid-template-columns: 1fr; gap: 0; }
  .svc-panel-inner > * { grid-column: 1; }
  .galeria-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: .8rem; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .stk { font-size: 1.4rem; }
  .trust-strip-inner { flex-direction: column; align-items: flex-start; gap: .7rem; }
  .legal-hero,
  .legal-content-wrap { padding-left: 1.5rem; padding-right: 1.5rem; }
  .legal-richtext { padding: 2rem 1.25rem; }
}
