/* ============================================================
   La Vianda Catering · Banquetería de bodas · Santiago
   Paleta blanco-dorado, serif romántica editorial nupcial
   ============================================================ */

:root {
  --bg: #FBF8F2;
  --surface: #FFFFFF;
  --fg: #2A2520;
  --muted: #7A7165;
  --accent: #A6822E;          /* dorado vivo: rellenos, bordes, decorativo */
  --accent-ink: #8A6A1E;      /* dorado oscuro: texto chico sobre claro (4.8:1) */
  --accent-deep: #7A5E1B;     /* dorado profundo: fondo de botones sólidos (texto --bg 5.7:1) */
  --line: #E6DECF;

  --ink-on-dark: #FBF8F2;
  --muted-on-dark: #D8CCB2;
  --dark: #2A2520;
  --dark-2: #332D26;

  --display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --body: "Hanken Grotesk", system-ui, sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  --maxw: 1180px;
  --pad: clamp(1.25rem, 5vw, 4rem);
  --bar-h: 34px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

a { color: inherit; }

::selection { background: rgba(166, 130, 46, 0.22); color: var(--fg); }

:focus-visible {
  outline: 2px solid var(--accent-ink);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ---------- Tipografía base ---------- */

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--fg);
}

.eyebrow, .kicker {
  font-family: var(--body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-ink);
  margin: 0 0 1rem;
}

.kicker--light { color: #E9C879; }

.section-title {
  font-size: clamp(2rem, 4.3vw, 3.3rem);
  letter-spacing: -0.015em;
}

.section-title--light { color: var(--ink-on-dark); }

.lead {
  font-size: 1.12rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 56ch;
}

.lead--center { margin-inline: auto; }

/* ============================================================
   Barra DEMO Digital Bee
   ============================================================ */

.db-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--bar-h);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  background: var(--dark);
  color: var(--ink-on-dark);
  font-family: var(--body);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  padding: 0 1rem;
  transition: background 0.25s var(--ease);
}

.db-bar:hover { background: #3a3329; }

.db-bar__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #E9C879;
  box-shadow: 0 0 0 3px rgba(233, 200, 121, 0.2);
}

.db-bar__arrow { transition: transform 0.25s var(--ease); }
.db-bar:hover .db-bar__arrow { transform: translateX(3px); }

/* ============================================================
   Navegación
   ============================================================ */

.nav {
  position: sticky;
  top: var(--bar-h);
  z-index: 900;
  background: rgba(251, 248, 242, 0.82);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}

.nav.is-stuck {
  border-bottom-color: var(--line);
  background: rgba(251, 248, 242, 0.94);
}

.nav__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0.85rem var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
}

.brand__mark { flex: none; }

.brand__text { display: flex; flex-direction: column; line-height: 1; }

.brand__name {
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--fg);
}

.brand__sub {
  font-family: var(--body);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-ink);
  margin-top: 3px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.4vw, 2rem);
}

.nav__links a {
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--fg);
  position: relative;
  transition: color 0.2s var(--ease);
}

.nav__links a:not(.nav__cta)::after {
  content: "";
  position: absolute;
  left: 0; bottom: -5px;
  width: 100%; height: 1.5px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.nav__links a:not(.nav__cta):hover { color: var(--accent-ink); }
.nav__links a:not(.nav__cta):hover::after { transform: scaleX(1); }

.nav__cta {
  border: 1px solid var(--accent);
  color: var(--accent-ink) !important;
  padding: 0.5rem 1.1rem;
  border-radius: 100px;
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}

.nav__cta:hover {
  background: var(--accent-deep);
  border-color: var(--accent-deep);
  color: var(--bg) !important;
}

@media (max-width: 880px) {
  .nav__links a:not(.nav__cta):not([href="#cotiza"]) { display: none; }
}

/* ============================================================
   Botones
   ============================================================ */

.btn {
  --b: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--body);
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  padding: 0.95rem 1.7rem;
  border-radius: 100px;
  border: 1px solid var(--b);
  cursor: pointer;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--solid {
  background: var(--accent-deep);
  border-color: var(--accent-deep);
  color: var(--bg);
  box-shadow: 0 10px 24px -14px rgba(122, 94, 27, 0.7);
}
.btn--solid:hover {
  background: #6E5418;
  border-color: #6E5418;
  box-shadow: 0 16px 30px -14px rgba(110, 84, 24, 0.85);
}

.btn--ghost {
  background: transparent;
  color: var(--accent-ink);
}
.btn--ghost:hover { background: rgba(166, 130, 46, 0.08); }

.btn--block { width: 100%; }

.btn--wsp {
  background: #25D366;
  border-color: #25D366;
  color: #0b3d20;
  padding: 1rem 2rem;
  font-size: 1.04rem;
}
.btn--wsp:hover {
  background: #1ebe5a;
  border-color: #1ebe5a;
  box-shadow: 0 16px 30px -14px rgba(37, 211, 102, 0.7);
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(4rem, 12vh, 9rem) var(--pad) clamp(3rem, 8vh, 6rem);
  overflow: hidden;
  isolation: isolate;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.hero__mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 55% at 78% 18%, rgba(166, 130, 46, 0.14), transparent 60%),
    radial-gradient(50% 50% at 12% 88%, rgba(166, 130, 46, 0.10), transparent 58%),
    radial-gradient(80% 70% at 50% 50%, rgba(255, 255, 255, 0.6), transparent 70%),
    linear-gradient(160deg, #FFFDF8 0%, var(--bg) 45%, #F6EFE0 100%);
}

.hero__filigree {
  position: absolute;
  top: 50%;
  right: clamp(-220px, -8vw, -40px);
  transform: translateY(-50%);
  width: min(680px, 70vw);
  height: min(680px, 70vw);
  opacity: 0.55;
}

.hero__inner {
  position: relative;
  max-width: var(--maxw);
  width: 100%;
  margin: 0 auto;
}

.hero .eyebrow { margin-bottom: 1.4rem; }

.hero__title {
  font-size: clamp(2.9rem, 8vw, 6.4rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
  max-width: 16ch;
}

.hero__title em {
  font-style: italic;
  font-weight: 500;
  color: var(--accent-ink);
}

.hero__lede {
  margin: 1.8rem 0 2.4rem;
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  color: var(--muted);
  max-width: 50ch;
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.hero__stats {
  list-style: none;
  margin: 3.4rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.6rem, 5vw, 3.4rem);
  border-top: 1px solid var(--line);
  padding-top: 1.8rem;
  max-width: 640px;
}

.hero__stats li { display: flex; flex-direction: column; }

.hero__stats strong {
  font-family: var(--display);
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  font-weight: 600;
  color: var(--fg);
  line-height: 1;
}

.hero__stats span {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 0.4rem;
  letter-spacing: 0.02em;
}

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 1.6rem;
  transform: translateX(-50%);
  width: 26px;
  height: 42px;
  border: 1px solid var(--accent);
  border-radius: 100px;
  display: flex;
  justify-content: center;
  padding-top: 7px;
}

.hero__scroll span {
  width: 3px;
  height: 8px;
  border-radius: 3px;
  background: var(--accent);
  animation: scrollDot 1.8s var(--ease) infinite;
}

@keyframes scrollDot {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(14px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

@media (max-width: 720px) {
  .hero__scroll { display: none; }
}

/* ============================================================
   Secciones genéricas
   ============================================================ */

section { padding: clamp(4.5rem, 11vh, 8rem) var(--pad); }

.about, .services, .visit, .quote-form { background: var(--bg); }

.kicker { display: block; }

/* ---------- SOBRE NOSOTROS ---------- */

.about__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
}

.about__copy p:not(.kicker) { color: var(--muted); margin: 1.1rem 0 0; }
.about__copy p.kicker { color: var(--accent-ink); margin: 0 0 1rem; }
.about__copy .lead { color: var(--fg); }
.about__copy .section-title { margin-bottom: 0.5rem; }

.about__list {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.about__list li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1rem;
  color: var(--fg);
}

.tick {
  flex: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 1px solid var(--accent);
  position: relative;
}
.tick::after {
  content: "";
  position: absolute;
  left: 7px; top: 5px;
  width: 5px; height: 9px;
  border: solid var(--accent-ink);
  border-width: 0 1.6px 1.6px 0;
  transform: rotate(45deg);
}

.about__art {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}

.about__plate {
  width: min(360px, 80vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 35%, #FFFDF8, #F4ECDB);
  padding: 1.6rem;
  box-shadow:
    0 30px 60px -30px rgba(166, 130, 46, 0.35),
    inset 0 0 0 1px var(--line);
  display: grid;
  place-items: center;
}
.about__plate svg { width: 100%; height: auto; }

.about__art figcaption {
  font-family: var(--display);
  font-style: italic;
  font-size: 1rem;
  color: var(--muted);
}

/* ---------- SERVICIOS ---------- */

.services__head {
  max-width: 760px;
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
  text-align: center;
}
.services__head .kicker { color: var(--accent-ink); }
.services__head .section-title { margin-bottom: 1.1rem; }

.cards {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 1.6rem);
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 2rem 1.9rem 2.1rem;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.45s var(--ease);
}

.card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), #D9B463);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(166, 130, 46, 0.4);
  box-shadow: 0 30px 50px -30px rgba(42, 37, 32, 0.28);
}
.card:hover::before { transform: scaleX(1); }

.card__icon {
  width: 58px; height: 58px;
  border-radius: 50%;
  background: rgba(166, 130, 46, 0.08);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  margin-bottom: 1.4rem;
}
.card__icon svg { width: 30px; height: 30px; }

.card h3 {
  font-size: 1.55rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.card p {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.62;
  margin: 0;
}

.card__price {
  margin-top: 1.3rem !important;
  padding-top: 1.1rem;
  border-top: 1px solid var(--line);
  font-size: 0.92rem !important;
  color: var(--muted) !important;
}
.card__price strong {
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--accent-ink);
}

.services__foot {
  max-width: var(--maxw);
  margin: clamp(2rem, 4vw, 3rem) auto 0;
  text-align: center;
  color: var(--muted);
  font-size: 1rem;
}
.services__foot strong { color: var(--fg); font-weight: 600; }

/* ============================================================
   BLOQUE DE CONFIANZA (fondo oscuro)
   ============================================================ */

.trust {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.trust::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(45% 40% at 85% 8%, rgba(166, 130, 46, 0.22), transparent 60%),
    radial-gradient(40% 40% at 8% 100%, rgba(166, 130, 46, 0.16), transparent 60%);
  pointer-events: none;
}

.trust__inner {
  position: relative;
  max-width: var(--maxw);
  margin: 0 auto;
}

.trust__head { max-width: 640px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }

.trust__pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.6rem, 3vw, 3rem);
}

.pillar { position: relative; padding-top: 1.4rem; }
.pillar::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 46px; height: 1px;
  background: var(--accent);
}

.pillar__num {
  font-family: var(--display);
  font-size: 0.95rem;
  color: #E9C879;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 0.7rem;
}

.pillar h3 {
  color: var(--ink-on-dark);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.pillar p {
  color: var(--muted-on-dark);
  font-size: 0.98rem;
  line-height: 1.62;
  margin: 0;
}

.quote {
  margin: clamp(3rem, 6vw, 5rem) auto 0;
  max-width: 880px;
  text-align: center;
  position: relative;
}

.quote__mark { width: 46px; height: 46px; margin: 0 auto 1rem; }

.quote blockquote {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.5rem, 3.2vw, 2.4rem);
  line-height: 1.32;
  font-weight: 500;
  color: var(--ink-on-dark);
  font-style: italic;
}

.quote figcaption {
  margin-top: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.quote__name {
  font-family: var(--display);
  font-size: 1.2rem;
  color: #E9C879;
}
.quote__meta {
  font-size: 0.85rem;
  color: var(--muted-on-dark);
  letter-spacing: 0.02em;
}

.trust__logos {
  list-style: none;
  margin: clamp(3rem, 6vw, 5rem) 0 0;
  padding-top: 2.2rem;
  border-top: 1px solid rgba(216, 204, 178, 0.18);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(1.2rem, 4vw, 3rem);
}
.trust__logos li {
  font-family: var(--display);
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  font-style: italic;
  color: var(--muted-on-dark);
  opacity: 0.85;
  letter-spacing: 0.01em;
}

/* ============================================================
   VISÍTANOS
   ============================================================ */

.visit__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
}

.visit__info .lead { margin-bottom: 2.2rem; }
.visit__info .section-title { margin-bottom: 0.6rem; }

.visit__details {
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem 2rem;
}
.visit__details dt {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-ink);
  margin-bottom: 0.45rem;
}
.visit__details .vi {
  font-size: 1rem;
  color: var(--accent);
}
.visit__details dd {
  margin: 0;
  color: var(--fg);
  font-size: 1rem;
  line-height: 1.55;
}
.visit__details a {
  color: var(--accent-ink);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s var(--ease);
}
.visit__details a:hover { border-bottom-color: var(--accent); }

.visit__map {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 30px 60px -34px rgba(42, 37, 32, 0.3);
}
.visit__map svg { width: 100%; height: auto; display: block; }

.visit__pin {
  position: absolute;
  left: 1rem; bottom: 1rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 0.45rem 0.95rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--fg);
  box-shadow: 0 6px 16px -8px rgba(42, 37, 32, 0.3);
}

/* ============================================================
   COTIZACIÓN
   ============================================================ */

.quote-form__inner {
  max-width: 980px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: clamp(2rem, 5vw, 4rem);
  box-shadow: 0 40px 80px -50px rgba(42, 37, 32, 0.3);
}

.quote-form__intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto clamp(2rem, 4vw, 3rem);
}
.quote-form__intro .section-title { margin-bottom: 1rem; }
.quote-form__intro .lead { margin-inline: auto; }

.form { display: grid; gap: 1.3rem; }

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.3rem;
}

.field { display: flex; flex-direction: column; }

.field label {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--fg);
  margin-bottom: 0.5rem;
}

.field input,
.field select,
.field textarea {
  font-family: var(--body);
  font-size: 1rem;
  color: var(--fg);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
  width: 100%;
}
.field textarea { resize: vertical; min-height: 110px; }

.field input::placeholder,
.field textarea::placeholder { color: #A89C88; }

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--surface);
  box-shadow: 0 0 0 4px rgba(166, 130, 46, 0.14);
}

.field select { appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14'%3E%3Cpath d='M3 5l4 4 4-4' fill='none' stroke='%238A6A1E' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.6rem;
}

.form__foot {
  margin-top: 0.6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.form__foot .btn { max-width: 380px; }

.form__note {
  font-size: 0.86rem;
  color: var(--muted);
  text-align: center;
  margin: 0;
  transition: color 0.25s var(--ease);
}
.form__note.is-ok { color: var(--accent-ink); font-weight: 600; }

/* ============================================================
   CTA DIGITAL BEE
   ============================================================ */

.db-cta {
  background:
    radial-gradient(60% 80% at 50% 0%, rgba(166, 130, 46, 0.18), transparent 60%),
    #211c17;
  text-align: center;
  padding: clamp(4rem, 9vh, 7rem) var(--pad);
}

.db-cta__inner { max-width: 640px; margin: 0 auto; }

.db-cta__kicker {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #E9C879;
  margin: 0 0 1rem;
}

.db-cta__title {
  font-family: var(--display);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 600;
  color: var(--ink-on-dark);
  margin: 0 0 1rem;
}

.db-cta__text {
  color: var(--muted-on-dark);
  font-size: 1.08rem;
  line-height: 1.65;
  margin: 0 auto 2.2rem;
  max-width: 48ch;
}

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  background: var(--dark-2);
  color: var(--muted-on-dark);
  padding: clamp(3rem, 6vw, 4.5rem) var(--pad) 0;
}

.footer__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.4fr;
  gap: 2.5rem;
  padding-bottom: 2.8rem;
}

.brand__name--foot {
  color: var(--ink-on-dark);
  font-size: 1.7rem;
  display: block;
  margin-bottom: 0.7rem;
}

.footer__brand p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 38ch;
}

.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.footer__nav a {
  text-decoration: none;
  color: var(--muted-on-dark);
  font-size: 0.95rem;
  transition: color 0.2s var(--ease);
  width: fit-content;
}
.footer__nav a:hover { color: #E9C879; }

.footer__contact p {
  margin: 0 0 0.5rem;
  font-size: 0.95rem;
  line-height: 1.55;
}
.footer__contact a {
  color: var(--ink-on-dark);
  text-decoration: none;
  border-bottom: 1px solid rgba(233, 200, 121, 0.4);
}
.footer__contact a:hover { border-bottom-color: #E9C879; }

.footer__bar {
  border-top: 1px solid rgba(216, 204, 178, 0.16);
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 1.4rem 0 2rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.82rem;
}
.footer__bar p { margin: 0; }
.footer__bar a {
  color: #E9C879;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
.footer__bar a:hover { border-bottom-color: #E9C879; }

/* ============================================================
   WhatsApp flotante
   ============================================================ */

.wsp-float {
  position: fixed;
  right: clamp(1rem, 3vw, 1.8rem);
  bottom: clamp(1rem, 3vw, 1.8rem);
  z-index: 950;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 14px 30px -10px rgba(37, 211, 102, 0.6);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.wsp-float::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: wspPulse 2.4s var(--ease) infinite;
}
.wsp-float:hover { transform: scale(1.07); box-shadow: 0 18px 36px -10px rgba(37, 211, 102, 0.7); }

@keyframes wspPulse {
  0% { transform: scale(1); opacity: 0.7; }
  70% { transform: scale(1.5); opacity: 0; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ============================================================
   Reveals (solo activos con JS)
   ============================================================ */

.js-on [data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
  will-change: opacity, transform;
}
.js-on [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* stagger dentro de grupos */
.js-on .cards [data-reveal].is-visible:nth-child(2) { transition-delay: 0.07s; }
.js-on .cards [data-reveal].is-visible:nth-child(3) { transition-delay: 0.14s; }
.js-on .cards [data-reveal].is-visible:nth-child(4) { transition-delay: 0.07s; }
.js-on .cards [data-reveal].is-visible:nth-child(5) { transition-delay: 0.14s; }
.js-on .cards [data-reveal].is-visible:nth-child(6) { transition-delay: 0.21s; }
.js-on .trust__pillars [data-reveal].is-visible:nth-child(2) { transition-delay: 0.1s; }
.js-on .trust__pillars [data-reveal].is-visible:nth-child(3) { transition-delay: 0.2s; }

@media (prefers-reduced-motion: reduce) {
  .js-on [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }
  .hero__scroll span { animation: none; }
  .wsp-float::after { animation: none; }
  .db-bar__dot { box-shadow: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 980px) {
  .about__grid { grid-template-columns: 1fr; }
  .about__art { order: -1; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .trust__pillars { grid-template-columns: 1fr; gap: 2rem; }
  .visit__grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  body { font-size: 16px; }
  .cards { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .visit__details { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 2rem; }
  .hero__stats { gap: 1.6rem 2.4rem; }
  .quote-form__inner { border-radius: 20px; }
}

@media (max-width: 460px) {
  .hero__title { font-size: clamp(2.5rem, 11vw, 3.4rem); }
  .btn { width: 100%; }
  .hero__actions { width: 100%; }
}
