/* =====================================================
   LEGACY FOTÓGRAFOS — Hoja de estilos principal
   Paleta cálida + minimalista editorial
   ===================================================== */

:root {
  --bg:           #0a0a08;
  --bg-alt:       #111110;
  --bg-dark:      #050504;
  --bg-darker:    #020201;
  --ink:          #f0ece4;
  --ink-soft:     #c4bdb0;
  --ink-muted:    #7a7268;
  --line:         #252118;
  --gold:         #c9a96e;
  --gold-dark:    #a98a52;
  --white:        #ffffff;
  --shadow-sm:    0 1px 2px rgba(0,0,0,.4), 0 2px 8px rgba(0,0,0,.3);
  --shadow-md:    0 6px 20px rgba(0,0,0,.5);
  --shadow-lg:    0 20px 60px rgba(0,0,0,.7);

  --ff-serif:     "Cormorant Garamond", "Times New Roman", Georgia, serif;
  --ff-sans:      "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --ease:         cubic-bezier(.2,.7,.2,1);
  --container:    1200px;
  --radius:       2px;
}

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--ff-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; transition: opacity .25s var(--ease), color .25s var(--ease); }
a:hover { opacity: .75; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }

/* === Tipografía === */
h1, h2, h3, h4, .h-display {
  font-family: var(--ff-serif);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -.01em;
  color: var(--ink);
  margin: 0 0 .6em;
}
.h-display {
  font-size: clamp(2rem, 4vw + 1rem, 3.6rem);
  font-weight: 400;
}
.h-display em { color: var(--gold-dark); font-style: italic; }
.h-display--light { color: var(--white); }

.eyebrow {
  font-family: var(--ff-sans);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin: 0 0 1.2em;
}

p { margin: 0 0 1em; color: var(--ink-soft); }
strong { color: var(--ink); font-weight: 600; }

/* === Contenedores === */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow { max-width: 820px; }

/* === Secciones === */
.section {
  padding: clamp(60px, 9vw, 120px) 0;
}
.section--alt { background: var(--bg-alt); }
.section--dark { background: var(--bg-dark); color: var(--white); }
.section--dark p { color: rgba(255,255,255,.7); }
.section__head { margin-bottom: 60px; }
.section__head.center { text-align: center; max-width: 720px; margin-left: auto; margin-right: auto; }
.section__lead { font-size: 1.08rem; color: var(--ink-muted); }
.section__lead--light { color: rgba(255,255,255,.7); }

/* === Botones === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all .3s var(--ease);
  cursor: pointer;
  border: 1px solid transparent;
}
.btn--primary {
  background: var(--gold);
  color: #0a0a08;
}
.btn--primary:hover {
  background: var(--white);
  color: #0a0a08;
  opacity: 1;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn--ghost {
  background: transparent;
  border-color: var(--gold);
  color: var(--gold);
}
.btn--ghost:hover {
  background: var(--gold);
  color: #0a0a08;
  opacity: 1;
}
.btn--block { display: flex; width: 100%; }

/* === Nav === */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250, 247, 242, 0);
  backdrop-filter: blur(0);
  transition: background .3s var(--ease), padding .3s var(--ease), backdrop-filter .3s var(--ease), box-shadow .3s var(--ease);
  padding: 18px 0;
}
.nav.is-scrolled {
  background: rgba(8, 8, 6, .95);
  backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: 0 1px 0 rgba(201,169,110,.15), var(--shadow-sm);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  transition: color .3s var(--ease);
}
.nav.is-scrolled .nav__logo,
.nav.is-scrolled .nav__menu a { color: var(--white); }
.nav__logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  background: var(--gold);
  color: var(--bg-dark);
  font-family: var(--ff-serif);
  font-size: 1.4rem;
  font-weight: 500;
  border-radius: 1px;
}
.nav__logo-text {
  font-family: var(--ff-serif);
  font-size: 1.05rem;
  letter-spacing: .05em;
  line-height: 1;
}
.nav__logo-text em { font-style: italic; opacity: .8; }
.nav__menu {
  display: flex;
  gap: 36px;
  align-items: center;
}
.nav__menu a {
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--white);
}
.nav__cta {
  border: 1px solid currentColor;
  padding: 9px 22px;
  border-radius: var(--radius);
}
.nav__toggle {
  display: none;
  width: 36px; height: 36px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 8px;
}
.nav__toggle span {
  display: block;
  height: 1.5px;
  background: var(--white);
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.nav.is-scrolled .nav__toggle span { background: var(--white); }
.nav__toggle.is-active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__toggle.is-active span:nth-child(2) { opacity: 0; }
.nav__toggle.is-active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* === Hero === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  overflow: hidden;
  padding: 120px 24px 80px;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-color: #050504;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.35) 50%, rgba(0,0,0,.70) 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 880px;
}
.hero__content .eyebrow {
  color: var(--gold);
  margin-bottom: 1.6em;
}
.hero__title {
  font-size: clamp(2.6rem, 7vw, 5.4rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -.02em;
  margin: 0 0 .6em;
  color: var(--white);
}
.hero__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}
.hero__subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,.78);
  max-width: 600px;
  margin: 0 auto 2.4em;
  line-height: 1.7;
}
.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero__actions .btn--primary {
  background: var(--gold);
  color: #0a0a08;
}
.hero__actions .btn--primary:hover {
  background: var(--white);
  color: #0a0a08;
}
.hero__actions .btn--ghost {
  border-color: rgba(255,255,255,.5);
  color: var(--white);
}
.hero__actions .btn--ghost:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
  color: var(--white);
}
.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 28px;
  height: 48px;
  border: 1.5px solid rgba(255,255,255,.4);
  border-radius: 20px;
}
.hero__scroll span {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 8px;
  background: var(--gold);
  border-radius: 1px;
  animation: scroll 2s var(--ease) infinite;
}
@keyframes scroll {
  0% { opacity: 1; transform: translate(-50%, 0); }
  100% { opacity: 0; transform: translate(-50%, 14px); }
}

/* === Layouts dos columnas === */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 8vw, 100px);
  align-items: center;
}
.two-col--reverse .two-col__text { order: 1; }
.two-col--reverse .contact-form { order: 2; }

.two-col__media {
  position: relative;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 16px;
}
.img-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}
.img-frame--lg { aspect-ratio: 3 / 4; }
.img-frame--sm { aspect-ratio: 1 / 1; margin-top: 60px; }

/* === Placeholders (sustituir por imágenes reales) === */
.placeholder {
  position: relative;
  width: 100%;
  height: 100%;
  background:
    repeating-linear-gradient(135deg, rgba(201,169,110,.08) 0 12px, transparent 12px 24px),
    linear-gradient(135deg, #d9d0bf 0%, #c4b89f 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-soft);
  font-size: .8rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  text-align: center;
  min-height: 240px;
  border: 1px solid var(--line);
}
.placeholder span { padding: 12px; }
.placeholder--portrait { aspect-ratio: 3 / 4; }
.placeholder--dark {
  background:
    repeating-linear-gradient(135deg, rgba(201,169,110,.1) 0 12px, transparent 12px 24px),
    linear-gradient(135deg, #2a241c 0%, #1a1610 100%);
  color: rgba(255,255,255,.5);
  border-color: rgba(255,255,255,.06);
}

/* Badges (stats) */
.badges {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.badges li {
  text-align: left;
  border-left: 2px solid var(--gold);
  padding-left: 14px;
}
.badges strong {
  display: block;
  font-family: var(--ff-serif);
  font-size: 2rem;
  line-height: 1;
  color: var(--ink);
  margin-bottom: 4px;
}
.badges span {
  font-size: .8rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

/* === Servicios === */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.service {
  padding: 36px 28px;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.service:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}
.service__icon {
  width: 52px; height: 52px;
  color: var(--gold-dark);
  margin-bottom: 20px;
}
.service h3 {
  font-size: 1.5rem;
  margin: 0 0 .4em;
}
.service p {
  margin: 0;
  font-size: .95rem;
}

/* === Paquetes === */
.packages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 20px;
}
.pkg {
  position: relative;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  padding: 44px 32px;
  display: flex;
  flex-direction: column;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.pkg:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.pkg--featured {
  background: #12100a;
  color: var(--white);
  border: 1px solid var(--gold);
  transform: scale(1.03);
  box-shadow: 0 0 40px rgba(201,169,110,.12);
}
.pkg--featured:hover { transform: scale(1.03) translateY(-4px); }
.pkg--featured .pkg__name,
.pkg--featured .pkg__price { color: var(--white); }
.pkg--featured .pkg__features li { color: rgba(255,255,255,.85); border-color: rgba(201,169,110,.15); }
.pkg--featured .pkg__features strong { color: var(--gold); }
.pkg--featured .pkg__features li::before { color: var(--gold); }
.pkg--featured .pkg__desc { color: rgba(255,255,255,.7); }
.pkg--featured .pkg__tag { color: var(--gold); }
.pkg--featured .btn--primary {
  background: var(--gold);
  color: #0a0a08;
}
.pkg--featured .btn--primary:hover { background: var(--white); color: #0a0a08; }

.pkg__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--bg-dark);
  padding: 6px 16px;
  font-size: .7rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 500;
}
.pkg__head { margin-bottom: 28px; padding-bottom: 28px; border-bottom: 1px solid var(--line); }
.pkg--featured .pkg__head { border-color: rgba(201,169,110,.2); }
.pkg__tag {
  font-size: .7rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin: 0 0 12px;
  font-weight: 500;
}
.pkg__name {
  font-family: var(--ff-serif);
  font-size: 2rem;
  margin: 0 0 8px;
  font-weight: 400;
}
.pkg__price {
  font-family: var(--ff-serif);
  font-size: 2.6rem;
  line-height: 1;
  color: var(--gold);
  margin: 4px 0 12px;
}
.pkg__currency { font-size: 1.4rem; vertical-align: top; line-height: 2; color: var(--gold-dark); margin-right: 2px; }
.pkg__mxn { font-size: 1rem; color: var(--ink-muted); letter-spacing: .1em; }
.pkg--featured .pkg__mxn { color: rgba(255,255,255,.5); }
.pkg__desc { font-size: .92rem; color: var(--ink-muted); margin: 0; }
.pkg__features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  flex: 1;
}
.pkg__features li {
  position: relative;
  padding: 12px 0 12px 26px;
  font-size: .92rem;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
}
.pkg__features li:last-child { border-bottom: 0; }
.pkg__features li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 11px;
  color: var(--gold-dark);
  font-weight: 600;
}

/* Add-ons */
.addons { margin-top: 80px; text-align: center; }
.addons .eyebrow { color: var(--ink-muted); }
.addons__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 32px 0 16px;
}
.addon {
  background: var(--bg-alt);
  padding: 18px 22px;
  border: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-size: .92rem;
}
.addon strong { color: var(--ink); }
.addon span { color: var(--gold-dark); font-weight: 500; letter-spacing: .04em; }
.note { font-size: .82rem; color: var(--ink-muted); font-style: italic; margin: 16px 0 0; }

/* === Galería === */
.filters {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.filter {
  padding: 10px 20px;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  border: 1px solid rgba(255,255,255,.15);
  transition: all .25s var(--ease);
}
.filter:hover { color: var(--white); border-color: rgba(255,255,255,.4); }
.filter.is-active {
  background: var(--gold);
  color: var(--bg-dark);
  border-color: var(--gold);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  grid-auto-flow: dense;
}
.gallery__item {
  position: relative;
  margin: 0;
  overflow: hidden;
  cursor: pointer;
  transition: opacity .4s var(--ease), transform .4s var(--ease);
}
.gallery__item[data-aspect="portrait"] .placeholder { aspect-ratio: 3/4; }
.gallery__item[data-aspect="landscape"] {
  grid-column: span 2;
}
.gallery__item[data-aspect="landscape"] .placeholder { aspect-ratio: 3/2; }
.gallery__item[data-aspect="square"] .placeholder { aspect-ratio: 1/1; }
.gallery__item .placeholder { transition: transform .8s var(--ease); }
.gallery__item:hover .placeholder { transform: scale(1.05); }
.gallery__item figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 16px;
  background: linear-gradient(0deg, rgba(0,0,0,.7), transparent);
  color: var(--white);
  font-size: .82rem;
  letter-spacing: .05em;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .35s var(--ease), transform .35s var(--ease);
}
.gallery__item:hover figcaption { opacity: 1; transform: translateY(0); }
.gallery__item.is-hidden { display: none; }
.gallery__note {
  text-align: center;
  margin: 40px 0 0;
  color: rgba(255,255,255,.6);
}
.gallery__note a { color: var(--gold); border-bottom: 1px solid var(--gold); padding-bottom: 1px; }

/* === Pasos (proceso) === */
.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  counter-reset: step;
}
.step {
  position: relative;
  padding: 32px 20px;
  border-top: 1px solid var(--line);
}
.step__num {
  font-family: var(--ff-serif);
  font-size: 1.6rem;
  color: var(--gold-dark);
  margin-bottom: 12px;
}
.step h3 { font-size: 1.2rem; margin: 0 0 8px; }
.step p { font-size: .9rem; margin: 0; }

/* === Testimonios === */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.quote {
  margin: 0;
  padding: 32px;
  background: var(--bg-alt);
  border-left: 3px solid var(--gold);
  position: relative;
}
.quote::before {
  content: """;
  position: absolute;
  top: -20px;
  left: 20px;
  font-family: var(--ff-serif);
  font-size: 5rem;
  color: var(--gold);
  line-height: 1;
  opacity: .4;
}
.quote p {
  font-family: var(--ff-serif);
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.5;
  color: var(--ink);
  margin: 0 0 16px;
}
.quote footer {
  font-size: .82rem;
  color: var(--ink);
  font-weight: 600;
  letter-spacing: .02em;
}
.quote footer span {
  font-weight: 400;
  color: var(--ink-muted);
  letter-spacing: .05em;
  font-size: .78rem;
}

/* === FAQ === */
.faq { margin-top: 20px; }
.faq__item {
  border-top: 1px solid var(--line);
  padding: 22px 0;
}
.faq__item:last-child { border-bottom: 1px solid var(--line); }
.faq__item summary {
  list-style: none;
  cursor: pointer;
  font-family: var(--ff-serif);
  font-size: 1.25rem;
  color: var(--ink);
  position: relative;
  padding-right: 40px;
  font-weight: 500;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  font-size: 1.6rem;
  color: var(--gold-dark);
  transition: transform .3s var(--ease);
  font-weight: 300;
}
.faq__item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq__item p {
  margin: 14px 0 0;
  color: var(--ink-soft);
}

/* === CTA Band === */
.cta-band {
  background: var(--bg-dark);
  color: var(--white);
  text-align: center;
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(201,169,110,.15), transparent 60%);
}
.cta-band > * { position: relative; }
.cta-band h2 {
  font-family: var(--ff-serif);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--white);
  margin: 0 0 12px;
}
.cta-band p {
  color: rgba(255,255,255,.7);
  margin: 0 0 32px;
}
.cta-band .btn--primary {
  background: var(--gold);
  color: var(--bg-dark);
}
.cta-band .btn--primary:hover { background: var(--white); }

/* === Contacto / Formulario === */
.contact-info {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}
.contact-info li {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.contact-info__label {
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 500;
}
.contact-info a, .contact-info span {
  font-family: var(--ff-serif);
  font-size: 1.15rem;
  color: var(--ink);
}

.socials { display: flex; gap: 12px; margin-top: 24px; }
.socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  border: 1px solid var(--line);
  color: var(--ink);
  transition: all .25s var(--ease);
}
.socials a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #0a0a08;
  opacity: 1;
}
.socials svg { width: 18px; height: 18px; }

.contact-form {
  background: var(--bg-alt);
  padding: 44px 36px;
  border-radius: var(--radius);
}
.field { margin-bottom: 18px; display: block; }
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.field label {
  display: block;
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 8px;
  font-weight: 500;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 14px;
  background: var(--bg-dark);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-family: var(--ff-sans);
  font-size: .95rem;
  color: var(--ink);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 0;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,169,110,.15);
}
.field textarea { resize: vertical; min-height: 110px; font-family: inherit; }
.field input:invalid:not(:placeholder-shown) { border-color: #c14a4a; }

.form-status {
  font-size: .88rem;
  margin: 16px 0 0;
  text-align: center;
}
.form-status.is-success { color: #1f7a4d; }
.form-status.is-error { color: #c14a4a; }
.legal {
  font-size: .75rem;
  color: var(--ink-muted);
  text-align: center;
  margin: 14px 0 0;
}

/* === Footer === */
.footer {
  background: var(--bg-darker);
  color: rgba(255,255,255,.7);
  padding: 60px 0 30px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.2fr;
  gap: 40px;
  align-items: center;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  margin-bottom: 24px;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
}
.footer__brand p { color: var(--white); margin: 0; line-height: 1.4; }
.footer__brand em { color: var(--gold); font-style: italic; font-size: .9rem; }
.footer__links {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}
.footer__links a {
  color: rgba(255,255,255,.7);
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.footer__links a:hover { color: var(--gold); opacity: 1; }
.footer__legal {
  text-align: right;
  font-size: .8rem;
}
.footer__legal p { margin: 0 0 4px; color: rgba(255,255,255,.5); }
.footer__legal a { color: rgba(255,255,255,.7); }

/* === WhatsApp flotante === */
.float-wa {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  background: #25d366;
  color: var(--white);
  border-radius: 50%;
  box-shadow: var(--shadow-lg);
  transition: transform .25s var(--ease);
}
.float-wa:hover { transform: scale(1.08); opacity: 1; }
.float-wa svg { width: 28px; height: 28px; }

/* === Animaciones de entrada === */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* === Responsive === */
@media (max-width: 960px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .packages { grid-template-columns: 1fr; }
  .pkg--featured { transform: none; }
  .pkg--featured:hover { transform: translateY(-4px); }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .testimonials { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .addons__grid { grid-template-columns: repeat(2, 1fr); }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .two-col--reverse .two-col__text,
  .two-col--reverse .contact-form { order: initial; }
  .footer__inner { grid-template-columns: 1fr; text-align: center; }
  .footer__legal { text-align: center; }
  .footer__brand { justify-content: center; }
}

@media (max-width: 640px) {
  .nav__menu {
    position: fixed;
    inset: 64px 0 0 0;
    flex-direction: column;
    background: rgba(8,8,6,.98);
    padding: 32px 24px;
    gap: 18px;
    transform: translateY(-110%);
    transition: transform .35s var(--ease);
    height: calc(100vh - 64px);
    border-top: 1px solid var(--line);
  }
  .nav__menu.is-open { transform: translateY(0); }
  .nav__menu a { color: var(--white) !important; font-size: 1rem; }
  .nav__toggle { display: flex; }
  .nav { background: rgba(8,8,6,.95); backdrop-filter: blur(12px); padding: 12px 0; }
  .nav .nav__logo,
  .nav .nav__menu a,
  .nav .nav__toggle span { color: var(--white); }
  .nav .nav__toggle span { background: var(--white); }

  .services-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; }
  .gallery__item[data-aspect="landscape"] { grid-column: auto; }
  .steps { grid-template-columns: 1fr; }
  .addons__grid { grid-template-columns: 1fr; }
  .badges { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 22px; }
  .hero { padding: 100px 20px 60px; min-height: 90vh; }
}

/* === Preferencia: reducir movimiento === */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}
