/* ───────────────────────────────────────────────────────────────
   SANPORT — Corporate / refined luxury (Lufthansa-inspired)
   Display: Wix Madefor Display (sans bold geometric)
   Body:    Wix Madefor Text
   Mono:    JetBrains Mono (eyebrow / index)
─────────────────────────────────────────────────────────────── */

:root {
  --ink:        #0E1B3D;
  --ink-deep:   #08112A;
  --ink-soft:   #1E2A4D;
  --gold:       #C9A66A;
  --gold-soft:  #E2C893;
  --gold-deep:  #A88547;
  --cream:      #F5EFE2;
  --paper:      #FAFAF7;
  --paper-warm: #F3EFE7;
  --line:       #D7CFBE;
  --line-dark:  rgba(255,255,255,.14);
  --muted:      #6E6859;

  --display: "Wix Madefor Display", "Onest", system-ui, sans-serif;
  --serif:   "Wix Madefor Display", system-ui, sans-serif;
  --sans:    "Wix Madefor Text", "Onest", system-ui, -apple-system, sans-serif;
  --mono:    "JetBrains Mono", ui-monospace, "SFMono-Regular", monospace;

  --maxw: 1280px;
  --pad-x: clamp(20px, 5vw, 80px);

  --ease-out: cubic-bezier(.2,.7,.2,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.55;
  letter-spacing: -.005em;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
em { font-style: normal; font-weight: inherit; }
::selection { background: var(--ink); color: var(--gold-soft); }

/* ─── shared utilities ─────────────────────────────────────── */

.mark { width: 28px; height: 28px; color: var(--ink); flex: none; }
.mark--gold { color: var(--paper); }

.meta__dot {
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  margin-right: 2px;
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: .4; transform: scale(.8); }
  50%      { opacity: 1;  transform: scale(1); }
}

.muted { color: var(--muted);  }

/* ─── buttons ──────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 26px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 14.5px;
  letter-spacing: .01em;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform .25s var(--ease-out), background .25s, color .25s, border-color .25s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }

.btn--primary {
  background: var(--ink);
  color: var(--paper);
}
.btn--primary:hover {
  background: var(--gold);
  color: var(--ink);
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--ghost:hover {
  background: var(--ink);
  color: var(--paper);
}

.btn--full {
  width: 100%;
  justify-content: center;
  padding: 18px 28px;
  font-size: 15px;
}

/* ─── NAV ──────────────────────────────────────────────────── */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 18px var(--pad-x);
  background: rgba(250,250,247,.78);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav__mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
}
.nav__logo {
  height: 28px;
  width: auto;
  display: block;
}
.nav__links {
  display: flex;
  justify-content: center;
  gap: 36px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-soft);
}
.nav__links a {
  position: relative;
  padding: 4px 0;
  transition: color .2s;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--gold);
  transition: right .35s var(--ease-out);
}
.nav__links a:hover::after { right: 0; }
.nav__links a:hover { color: var(--ink); }

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-self: end;
  padding: 10px 18px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  transition: background .2s, color .2s;
}
.nav__cta:hover {
  background: var(--ink);
  color: var(--paper);
}
.nav__cta svg { transition: transform .25s var(--ease-out); }
.nav__cta:hover svg { transform: translateX(3px); }

@media (max-width: 800px) {
  .nav { grid-template-columns: 1fr auto; }
  .nav__links { display: none; }
}

/* ─── HERO ─────────────────────────────────────────────────── */

.hero {
  position: relative;
  isolation: isolate;
  min-height: calc(100svh - 60px);
  padding: clamp(40px, 8vw, 96px) var(--pad-x) 64px;
  background:
    radial-gradient(120% 80% at 100% 0%, rgba(201,166,106,.55) 0%, transparent 55%),
    radial-gradient(80% 60% at 10% 100%, rgba(201,166,106,.18) 0%, transparent 60%),
    linear-gradient(160deg, var(--ink-deep) 0%, var(--ink) 60%, var(--ink-soft) 100%);
  color: var(--paper);
  overflow: hidden;
}
.hero__grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 .35 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  opacity: .12;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: -1;
}
.hero__glow {
  position: absolute;
  top: -160px; right: -160px;
  width: 640px; height: 640px;
  background: radial-gradient(circle, rgba(226,200,147,.4), transparent 60%);
  filter: blur(20px);
  z-index: -2;
  animation: float 18s ease-in-out infinite alternate;
}
@keyframes float {
  0%   { transform: translate(0,0); }
  100% { transform: translate(-40px, 30px); }
}

.hero__meta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-soft);
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line-dark);
  margin-bottom: 40px;
  width: fit-content;
  animation: fadeUp .9s var(--ease-out) both .1s;
}
.meta__sep { opacity: .4; }

.hero__title {
  font-family: var(--serif);
  font-weight: 700;
  line-height: .92;
  letter-spacing: -.028em;
  font-size: clamp(56px, 11vw, 168px);
  margin: 0 0 32px;
}
.hero__eyebrow {
  display: block;
  font-family: var(--sans);
  font-size: clamp(12px, 1vw, 14px);
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  animation: fadeUp .9s var(--ease-out) both .2s;
}
.hero__line {
  display: block;
  animation: fadeUp 1s var(--ease-out) both .3s;
}
.hero__line:nth-child(3) { animation-delay: .4s; }
.hero__line--italic {
  font-weight: 700;
  color: var(--gold-soft);
  padding-left: clamp(40px, 8vw, 120px);
}
.hero__period {
  color: var(--gold);
  margin-left: -.05em;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero__sub {
  max-width: 540px;
  margin: 0 0 44px;
  font-size: clamp(15px, 1.4vw, 18.5px);
  line-height: 1.55;
  color: rgba(250,250,247,.78);
  animation: fadeUp 1s var(--ease-out) both .55s;
}

.hero__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 80px;
  animation: fadeUp 1s var(--ease-out) both .7s;
}
.hero__ctas .btn--ghost {
  color: var(--paper);
  border-color: rgba(250,250,247,.4);
}
.hero__ctas .btn--ghost:hover {
  background: var(--paper);
  color: var(--ink);
}

.hero__pillars {
  display: flex;
  align-items: flex-end;
  gap: clamp(20px, 4vw, 56px);
  padding-top: 32px;
  border-top: 1px solid var(--line-dark);
  animation: fadeUp 1s var(--ease-out) both .85s;
}
.hero__pillars > div:not(.pillar__sep) {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pillar__num {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 400;
  letter-spacing: -.02em;
  color: var(--gold-soft);
  line-height: 1;
}
.pillar__lbl {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(250,250,247,.55);
}
.pillar__sep {
  width: 1px;
  height: 36px;
  background: var(--line-dark);
}

.hero__scroll {
  position: absolute;
  right: var(--pad-x);
  bottom: 32px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(250,250,247,.5);
}
.hero__scroll-line {
  display: inline-block;
  width: 60px; height: 1px;
  background: var(--gold);
  transform-origin: left;
  animation: lineGrow 2.4s var(--ease-out) infinite;
}
@keyframes lineGrow {
  0%, 100% { transform: scaleX(.2); opacity: .4; }
  50%      { transform: scaleX(1);  opacity: 1; }
}
@media (max-width: 700px) {
  .hero__scroll { display: none; }
  .hero__pillars { flex-wrap: wrap; }
  .pillar__sep { display: none; }
}

/* ─── MARQUEE ──────────────────────────────────────────────── */

.marquee {
  background: var(--ink);
  color: var(--gold-soft);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  overflow: hidden;
  padding: 22px 0;
}
.marquee__track {
  display: inline-flex;
  align-items: center;
  gap: 36px;
  white-space: nowrap;
  font-family: var(--serif);
  
  font-weight: 700;
  font-size: clamp(22px, 3vw, 38px);
  letter-spacing: -.01em;
  animation: marquee 38s linear infinite;
  will-change: transform;
}
.mq-dot {
  color: var(--gold);
  font-size: .5em;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── SECTION shells ───────────────────────────────────────── */

.section {
  position: relative;
  padding: clamp(80px, 12vw, 160px) var(--pad-x);
}
.section--cream { background: var(--cream); }
.section--gallery { background: var(--paper-warm); }
.section--cta { background: var(--paper); }
.section--dark {
  background: var(--ink);
  color: var(--paper);
  isolation: isolate;
}
.dark__grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 .3 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  opacity: .07;
  z-index: -1;
  pointer-events: none;
}

.sec-head {
  max-width: 720px;
  margin: 0 0 72px;
}
.sec-head__index {
  display: inline-block;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 28px;
}
.sec-head--dark .sec-head__index {
  color: var(--gold);
  border-bottom-color: var(--line-dark);
}
.sec-head__title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(40px, 6vw, 84px);
  line-height: 1;
  letter-spacing: -.025em;
  margin: 0 0 24px;
}
.sec-head__title em {
  
  font-weight: 700;
  color: var(--gold-deep);
}
.sec-head--dark .sec-head__title em { color: var(--gold-soft); }
.sec-head__lead {
  max-width: 560px;
  font-size: clamp(15.5px, 1.3vw, 18px);
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}
.sec-head--dark .sec-head__lead { color: rgba(250,250,247,.7); }

/* ─── PARA QUIÉN — cards ───────────────────────────────────── */

.for-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .for-grid { grid-template-columns: 1fr; } }

.for-card {
  position: relative;
  padding: 40px 32px 32px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 2px;
  transition: transform .4s var(--ease-out), box-shadow .4s, border-color .4s;
}
.for-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px -28px rgba(14,27,61,.25);
  border-color: var(--gold);
}
.for-card--accent {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.for-card--accent .for-card__num { color: var(--gold); }
.for-card--accent p { color: rgba(250,250,247,.7); }
.for-card--accent .for-card__tags li { border-color: var(--line-dark); color: rgba(250,250,247,.7); }

.for-card__num {
  font-family: var(--mono);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: .18em;
  color: var(--gold-deep);
  display: block;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.for-card--accent .for-card__num { color: var(--gold); border-bottom-color: var(--line-dark); }
.for-card h3 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(24px, 2vw, 30px);
  line-height: 1.1;
  letter-spacing: -.018em;
  margin: 0 0 18px;
}
.for-card p {
  font-size: 15px;
  color: var(--muted);
  margin: 0 0 28px;
  line-height: 1.6;
}
.for-card__tags {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.for-card__tags li {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
}

/* ─── SERVICIOS — magazine list ────────────────────────────── */

.services {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-dark);
}
.svc {
  display: grid;
  grid-template-columns: 80px 1fr 64px;
  align-items: start;
  gap: clamp(20px, 4vw, 48px);
  padding: clamp(28px, 4vw, 48px) 0;
  border-bottom: 1px solid var(--line-dark);
  transition: padding .4s var(--ease-out);
}
.svc:hover {
  padding-left: 12px;
  padding-right: 12px;
}
.svc__num {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: .14em;
  color: var(--gold);
  padding-top: 8px;
}
.svc__body h3 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(26px, 3.4vw, 44px);
  line-height: 1.05;
  letter-spacing: -.02em;
  margin: 0 0 10px;
  transition: color .3s;
}
.svc:hover .svc__body h3 {
  color: var(--gold-soft);
  
}
.svc__body p {
  max-width: 560px;
  font-size: 15.5px;
  line-height: 1.6;
  color: rgba(250,250,247,.7);
  margin: 0;
}
.svc__icon {
  width: 56px; height: 56px;
  color: var(--gold);
  opacity: .8;
  justify-self: end;
  transition: transform .5s var(--ease-out), opacity .3s;
}
.svc:hover .svc__icon {
  transform: rotate(-8deg) scale(1.05);
  opacity: 1;
}
@media (max-width: 700px) {
  .svc { grid-template-columns: 56px 1fr; }
  .svc__icon { display: none; }
}

/* ─── GALERÍA ─────────────────────────────────────────────── */

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 16px;
}
.gallery__item {
  margin: 0;
  position: relative;
  overflow: hidden;
}
.gallery__item--tall { grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }

.ph {
  width: 100%; height: 100%;
  display: flex; align-items: flex-end; justify-content: flex-start;
  padding: 22px;
  border: 1px solid var(--line);
  position: relative;
  isolation: isolate;
  transition: transform .6s var(--ease-out);
}
.ph::before {
  content: "";
  position: absolute; inset: 0;
  z-index: -1;
}
.ph--1::before { background: linear-gradient(135deg, #2A3553 0%, #0E1B3D 60%, #1C2547 100%); }
.ph--2::before { background: linear-gradient(160deg, #E2C893 0%, #C9A66A 50%, #A88547 100%); }
.ph--3::before { background: linear-gradient(135deg, #1E2A4D 0%, #0E1B3D 70%, #08112A 100%); }
.ph--4::before {
  background:
    radial-gradient(60% 80% at 100% 0%, rgba(201,166,106,.5), transparent 60%),
    linear-gradient(135deg, #0E1B3D 0%, #1E2A4D 100%);
}
.ph__label {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--paper);
  padding: 6px 10px;
  background: rgba(0,0,0,.3);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.15);
}
.ph--2 .ph__label { color: var(--ink); background: rgba(255,255,255,.4); border-color: rgba(14,27,61,.15); }

.gallery__item:hover .ph { transform: scale(1.02); }

.gallery__item figcaption {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  padding-top: 12px;
}

@media (max-width: 900px) {
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery__item--tall { grid-row: auto; }
  .gallery__item--wide { grid-column: span 2; }
}

/* ─── MANIFESTO ────────────────────────────────────────────── */

.section--manifesto {
  background:
    radial-gradient(80% 60% at 100% 0%, rgba(201,166,106,.18), transparent 60%),
    var(--ink-deep);
  color: var(--paper);
  padding-top: clamp(100px, 14vw, 180px);
  padding-bottom: clamp(100px, 14vw, 180px);
  position: relative;
  overflow: hidden;
}
.manifesto__index {
  display: block;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 60px;
}
.manifesto {
  max-width: 980px;
  margin: 0;
  padding: 0;
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(34px, 5vw, 68px);
  line-height: 1.15;
  letter-spacing: -.022em;
}
.manifesto em {
  
  color: var(--gold-soft);
  font-weight: 700;
}
.manifesto__break {
  display: block;
  margin-top: 12px;
  color: var(--gold-soft);
  
}
.manifesto__small {
  max-width: 620px;
  margin-top: 56px;
  font-family: var(--sans);
  font-style: normal;
  font-weight: 400;
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.6;
  color: rgba(250,250,247,.7);
  letter-spacing: 0;
}
.manifesto__sign {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 56px;
  font-family: var(--mono);
  font-style: normal;
  font-size: 11.5px;
  font-weight: 400;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-soft);
}
.manifesto__sign .mark { width: 32px; height: 32px; }
.manifesto__logo {
  height: 28px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: .9;
}

/* ─── CTA / FORM ────────────────────────────────────────────── */

.cta {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 96px);
  max-width: var(--maxw);
  margin: 0 auto;
  align-items: start;
}
@media (max-width: 900px) { .cta { grid-template-columns: 1fr; } }

.cta__kicker {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: block;
  margin-bottom: 28px;
}
.cta__lead h2 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1;
  letter-spacing: -.025em;
  margin: 0 0 28px;
}
.cta__lead h2 em {
  
  color: var(--gold-deep);
}
.cta__lead p {
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0 0 36px;
  max-width: 440px;
}
.cta__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cta__list li {
  position: relative;
  padding-left: 36px;
  font-size: 15px;
  color: var(--ink);
}
.cta__list li::before {
  content: "";
  position: absolute;
  left: 0; top: .55em;
  width: 24px; height: 1px;
  background: var(--gold);
}

/* form */
.form {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(28px, 4vw, 44px);
  display: flex;
  flex-direction: column;
  gap: 18px;
  border-radius: 4px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.form::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(80% 60% at 100% 0%, rgba(201,166,106,.2), transparent 60%);
  z-index: -1;
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 600px) { .form__row { grid-template-columns: 1fr; } }

.form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-soft);
}
.form input,
.form select,
.form textarea {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--paper);
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(250,250,247,.2);
  padding: 12px 0;
  outline: none;
  transition: border-color .25s;
  border-radius: 0;
}
.form input::placeholder,
.form textarea::placeholder { color: rgba(250,250,247,.35); }
.form input:focus,
.form select:focus,
.form textarea:focus { border-color: var(--gold); }
.form select { appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8' fill='none'><path d='M1 1l5 5 5-5' stroke='%23C9A66A' stroke-width='1.4'/></svg>"); background-repeat: no-repeat; background-position: right 4px center; }
.form select option { color: var(--ink); }
.form textarea { resize: vertical; }
.form__note {
  font-size: 12px;
  color: rgba(250,250,247,.5);
  margin: 4px 0 0;
  text-align: center;
}
.form .btn--primary {
  background: var(--gold);
  color: var(--ink);
  margin-top: 4px;
}
.form .btn--primary:hover {
  background: var(--paper);
}

/* ─── FOOTER ───────────────────────────────────────────────── */

.foot {
  background: var(--ink-deep);
  color: var(--paper);
  padding: clamp(60px, 8vw, 100px) var(--pad-x) 36px;
}
.foot__top {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--line-dark);
}
@media (max-width: 900px) { .foot__top { grid-template-columns: 1fr; } }

.foot__brand { display: flex; flex-direction: column; gap: 20px; align-items: flex-start; }
.foot__logo {
  height: 56px;
  width: auto;
  filter: brightness(0) invert(1);
}
.foot__tag {
  font-family: var(--sans);
  font-weight: 400;
  
  color: var(--gold-soft);
  font-size: 14px;
  max-width: 280px;
  margin: 0;
}

.foot__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 600px) { .foot__cols { grid-template-columns: 1fr 1fr; } }

.foot__cols h4 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 18px;
}
.foot__cols ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.foot__cols a {
  font-size: 13.5px;
  color: rgba(250,250,247,.65);
  transition: color .2s;
}
.foot__cols a:hover { color: var(--gold-soft); }

.foot__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(250,250,247,.4);
}
@media (max-width: 600px) { .foot__bottom { flex-direction: column; gap: 12px; } }

/* ─── WhatsApp flotante ────────────────────────────────────── */

.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 32px -8px rgba(37,211,102,.6), 0 4px 8px rgba(0,0,0,.15);
  z-index: 100;
  transition: transform .25s var(--ease-out), box-shadow .25s;
  animation: wa-pulse 3s ease-in-out infinite;
}
.wa-float:hover {
  transform: scale(1.08) translateY(-2px);
}
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 12px 32px -8px rgba(37,211,102,.6), 0 0 0 0 rgba(37,211,102,.4); }
  70%      { box-shadow: 0 12px 32px -8px rgba(37,211,102,.6), 0 0 0 18px rgba(37,211,102,0); }
}

/* Elementos con data-reveal son visibles por defecto.
   La única secuencia animada es la entrada del hero (orquestada arriba). */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
}
