/* ============================================================
   DESIGN TOKENS — ver STYLE_GUIDE.md del portafolio
   ============================================================ */
:root {
  --color-bg: #ffffff;
  --color-bg-alt: #f4f5f9;
  --color-ink: #1b2a4e;
  --color-ink-soft: #4a5578;
  --color-muted: #8891a8;
  --color-line: #e3e6ee;
  --color-accent: #f2c94c;
  --color-accent-soft: #f8dda0;
  --font-display: 'Cormorant Garamond', 'Georgia', serif;
  --font-heading: 'Poppins', 'Helvetica Neue', sans-serif;
  --font-body: 'Jost', 'Helvetica Neue', sans-serif;
  --header-h: 84px;
  --max-width: 1400px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-ink);
  font-family: var(--font-body);
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* ============================================================
   PRELOADER
   ============================================================ */
.preloader {
  position: fixed; inset: 0;
  background: var(--color-bg);
  z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  transition: opacity .6s ease, visibility .6s ease;
}
.preloader span { font-family: var(--font-heading); font-weight: 700; font-size: 1.15rem; letter-spacing: 0.25em; color: var(--color-ink); }
.preloader.hidden { opacity: 0; visibility: hidden; }

/* ============================================================
   HEADER / NAV — compartido en todo el sitio
   ============================================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  height: var(--header-h);
  display: flex; align-items: center;
  transition: background .4s ease, box-shadow .4s ease, height .4s ease;
}
.site-header.solid {
  background: rgba(250, 248, 245, 0.94);
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 0 var(--color-line);
  height: 68px;
}
.header-inner {
  width: 100%; max-width: var(--max-width); margin: 0 auto; padding: 0 40px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.logo { font-family: var(--font-heading); font-weight: 700; font-size: 1.25rem; letter-spacing: 0.01em; color: #fff; transition: color .4s ease; }
.site-header.solid .logo { color: var(--color-ink); }

.main-nav { display: flex; align-items: center; gap: 36px; }
.nav-link {
  font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: #fff; opacity: 0.88; position: relative; padding-bottom: 4px;
  transition: color .4s ease, opacity .3s ease;
}
.nav-link::after {
  content: ''; position: absolute; left: 0; bottom: 0; width: 0; height: 1px;
  background: currentColor; transition: width .3s ease;
}
.nav-link:hover, .nav-link.active { opacity: 1; }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.site-header.solid .nav-link { color: var(--color-ink-soft); }
.site-header.solid .nav-link.active, .site-header.solid .nav-link:hover { color: var(--color-ink); }

.nav-cta {
  padding: 10px 22px;
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.5);
  color: #fff;
  font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase;
  transition: background .3s ease, color .3s ease, border-color .3s ease;
  white-space: nowrap;
}
.nav-cta:hover { background: rgba(255,255,255,0.28); }
.site-header.solid .nav-cta { background: var(--color-accent); color: #fff; border-color: var(--color-accent); }
.site-header.solid .nav-cta:hover { background: var(--color-ink); border-color: var(--color-ink); }

.nav-toggle { display: none; background: none; border: none; width: 32px; height: 22px; position: relative; z-index: 600; }
.nav-toggle span { position: absolute; left: 0; right: 0; height: 1px; background: #fff; transition: all .3s ease; }
.site-header.solid .nav-toggle span { background: var(--color-ink); }
.nav-toggle span:nth-child(1) { top: 0; }
.nav-toggle span:nth-child(2) { top: 10px; }
.nav-toggle span:nth-child(3) { top: 20px; }
.nav-open .nav-toggle span:nth-child(1) { transform: translateY(10px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-10px) rotate(-45deg); }
.nav-open .nav-toggle span { background: var(--color-ink) !important; }

/* Header con hero claro (home): siempre legible, sin depender del scroll */
body.light-hero .site-header:not(.solid) {
  background: rgba(250, 248, 245, 0.94);
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 0 var(--color-line);
}
body.light-hero .site-header:not(.solid) .logo { color: var(--color-ink); }
body.light-hero .site-header:not(.solid) .nav-link { color: var(--color-ink-soft); }
body.light-hero .site-header:not(.solid) .nav-link.active,
body.light-hero .site-header:not(.solid) .nav-link:hover { color: var(--color-ink); }
body.light-hero .site-header:not(.solid) .nav-toggle span { background: var(--color-ink); }
body.light-hero .site-header:not(.solid) .nav-cta { background: var(--color-accent); color: #fff; border-color: var(--color-accent); }
body.light-hero .site-header:not(.solid) .nav-cta:hover { background: var(--color-ink); border-color: var(--color-ink); }

/* ============================================================
   HERO — versión foto completa (página de Portafolio)
   ============================================================ */
.hero { position: relative; height: 100vh; min-height: 560px; overflow: hidden; background: #111; }
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  opacity: 0; transform: scale(1.06); transition: opacity 1.6s ease, transform 8s ease;
}
.hero-slide.active { opacity: 1; transform: scale(1); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,12,10,.45) 0%, rgba(15,12,10,.15) 32%, rgba(15,12,10,.35) 68%, rgba(15,12,10,.72) 100%);
}
.hero-content {
  position: relative; z-index: 2; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; color: #fff; padding: 0 24px;
}
.hero-eyebrow { font-size: 0.75rem; letter-spacing: 0.4em; text-transform: uppercase; opacity: 0.85; margin: 0 0 18px; }
.hero-title { font-family: var(--font-display); font-weight: 500; font-size: clamp(3rem, 9vw, 6.5rem); margin: 0; letter-spacing: 0.02em; }
.hero-subtitle-links { margin: 22px 0 0; font-size: 0.95rem; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.9; display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.hero-subtitle-links a { transition: opacity .3s ease; }
.hero-subtitle-links a:hover { opacity: 0.65; }
.hero-subtitle-links span { opacity: 0.5; }
.hero-scroll {
  position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%); z-index: 2;
  background: none; border: 1px solid rgba(255,255,255,0.6); border-radius: 50%;
  width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
}
.hero-scroll span {
  display: block; width: 6px; height: 6px;
  border-right: 1px solid #fff; border-bottom: 1px solid #fff;
  transform: rotate(45deg); margin-top: -4px; animation: bounce 1.8s infinite;
}
@keyframes bounce { 0%, 100% { transform: rotate(45deg) translate(0,0); } 50% { transform: rotate(45deg) translate(4px,4px); } }
.hero-dots { position: absolute; right: 28px; top: 50%; transform: translateY(-50%); z-index: 2; display: flex; flex-direction: column; gap: 10px; }
.hero-dot { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,0.4); border: none; padding: 0; transition: background .3s ease, transform .3s ease; }
.hero-dot.active { background: #fff; transform: scale(1.3); }

/* ============================================================
   HERO — versión split (home / servicios)
   ============================================================ */
.hero-split {
  min-height: 100vh; background: var(--color-bg);
  display: flex; align-items: center; justify-content: center;
  padding: 150px 6% 60px; gap: 4rem; flex-wrap: wrap;
}
.hero-split-text { display: flex; flex-direction: column; align-items: flex-start; max-width: 420px; flex-shrink: 0; }
.hero-split-visual { display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.hero-split .section-eyebrow { margin-bottom: 1.4rem; font-size: 0.85rem; font-weight: 700; letter-spacing: 0.28em; color: var(--color-accent); }
.hero-split-title {
  font-family: var(--font-heading); font-size: clamp(2.3rem, 4.2vw, 3.8rem); font-weight: 700;
  color: var(--color-ink); line-height: 1.15; margin: 0 0 1.4rem;
}
.hero-split-title em { font-style: normal; color: var(--color-accent); }
.hero-split-desc { font-size: 0.95rem; line-height: 1.85; color: var(--color-ink-soft); max-width: 380px; margin-bottom: 2rem; font-weight: 300; }
.hero-split-btns { display: flex; flex-direction: column; gap: 0.9rem; align-items: flex-start; }
.hero-split-zone { font-size: 0.75rem; color: var(--color-muted); font-weight: 300; margin-top: 1.2rem; max-width: 380px; line-height: 1.6; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
.hero-split-text > * { animation: fadeUp .8s ease both; }
.hero-split-text > *:nth-child(1) { animation-delay: .05s; }
.hero-split-text > *:nth-child(2) { animation-delay: .15s; }
.hero-split-text > *:nth-child(3) { animation-delay: .25s; }
.hero-split-text > *:nth-child(4) { animation-delay: .35s; }
.hero-split-text > *:nth-child(5) { animation-delay: .45s; }
.hero-split-visual { animation: fadeUp 1s .2s ease both; }

/* Hero blob — foto principal con máscara orgánica + fotos circulares flotantes */
.hero-blob-wrap { position: relative; width: 560px; height: 600px; }
.hero-blob-main {
  position: absolute; top: 40px; left: 70px; width: 400px; height: 460px;
  border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(27,42,78,0.22);
  animation: blobMorph 10s ease-in-out infinite;
}
.hero-blob-main img { width: 100%; height: 100%; object-fit: cover; display: block; }
@keyframes blobMorph {
  0%, 100% { border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%; }
  50% { border-radius: 42% 58% 61% 39% / 46% 44% 56% 54%; }
}
.hero-accent-circle {
  position: absolute; border-radius: 50%; overflow: hidden;
  border: 5px solid var(--color-bg);
  box-shadow: 0 14px 34px rgba(27,42,78,0.2);
}
.hero-accent-circle img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-accent-1 { width: 140px; height: 140px; top: 0; right: 10px; }
.hero-accent-2 { width: 120px; height: 120px; top: 190px; right: -20px; }
.hero-accent-3 { width: 160px; height: 160px; bottom: 0; left: 0; }
.hero-sparkle { position: absolute; color: var(--color-accent); animation: sparkleFloat 3s ease-in-out infinite; }
.hero-sparkle svg { width: 100%; height: 100%; }
.hero-sparkle-1 { width: 34px; height: 34px; top: 80px; left: 0; animation-delay: 0s; }
.hero-sparkle-2 { width: 24px; height: 24px; bottom: 130px; right: 90px; animation-delay: .8s; }
.hero-sparkle-3 { width: 20px; height: 20px; top: 10px; left: 180px; animation-delay: 1.6s; }
@keyframes sparkleFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: .85; }
  50% { transform: translateY(-10px) rotate(18deg); opacity: 1; }
}

/* ============================================================
   BOTONES
   ============================================================ */
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.75rem;
  padding: 0.95rem 1.9rem; border-radius: 999px; background: var(--color-accent); color: #fff;
  font-family: var(--font-body); font-size: 0.73rem; letter-spacing: 0.16em; text-transform: uppercase;
  border: none; cursor: pointer; transition: background .3s ease; font-weight: 400;
}
.btn-primary:hover { background: var(--color-ink); }
.btn-primary svg { width: 13px; transition: transform .3s ease; stroke: currentColor; fill: none; }
.btn-primary:hover svg { transform: translateX(4px); }

.btn-wa-text {
  display: inline-flex; align-items: center; gap: 0.55rem;
  background: transparent; border: none; color: var(--color-ink-soft);
  font-family: var(--font-body); font-size: 0.82rem; text-decoration: none; cursor: pointer;
  transition: color .3s ease; font-weight: 300;
}
.btn-wa-text:hover { color: var(--color-ink); }
.btn-wa-text svg { width: 15px; flex-shrink: 0; opacity: .5; }
.btn-wa-text span { text-decoration: underline; text-underline-offset: 3px; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 0.75rem;
  padding: 0.85rem 1.8rem; border-radius: 999px; background: transparent; color: var(--color-ink);
  font-family: var(--font-body); font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase;
  border: 1px solid rgba(32,30,28,0.25); cursor: pointer; transition: all .3s ease; font-weight: 400;
}
.btn-ghost:hover { border-color: var(--color-ink); background: var(--color-bg-alt); }

.btn-custom {
  display: inline-flex; align-items: center; gap: 0.7rem;
  padding: 0.85rem 1.8rem; border-radius: 999px; border: 1px solid var(--color-accent);
  background: #fff; color: var(--color-accent);
  font-family: var(--font-body); font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase;
  cursor: pointer; transition: all .3s ease; white-space: nowrap; text-decoration: none;
}
.btn-custom:hover { background: var(--color-accent); color: #fff; }
.btn-custom svg { width: 14px; stroke: currentColor; fill: none; }

/* ============================================================
   STRIP
   ============================================================ */
.strip { background: var(--color-bg-alt); border-top: 1px solid var(--color-line); border-bottom: 1px solid var(--color-line); padding: 1.2rem 6%; display: flex; align-items: center; justify-content: center; gap: 4rem; flex-wrap: wrap; }
.strip-item { font-size: 0.65rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--color-muted); }
.strip-item strong { color: var(--color-ink-soft); font-weight: 400; }
.strip-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--color-accent); }

/* ============================================================
   SECCIONES GENERALES (galería / contenido)
   ============================================================ */
.gallery-section { padding: 110px 40px; max-width: var(--max-width); margin: 0 auto; }
.gallery-section.alt { background: var(--color-bg-alt); max-width: none; }
.gallery-section.alt > * { max-width: var(--max-width); margin-left: auto; margin-right: auto; }
.gallery-section.alt .photo-rows-wrap { max-width: var(--max-width); margin-left: auto; margin-right: auto; }

.section-heading { text-align: center; max-width: 640px; margin: 0 auto 60px; }
.section-eyebrow { font-size: 0.75rem; letter-spacing: 0.35em; color: var(--color-accent); margin: 0 0 14px; text-transform: uppercase; }
.section-heading h2 { font-family: var(--font-display); font-weight: 500; font-size: clamp(2.2rem, 4vw, 3rem); margin: 0 0 16px; }
.section-desc { font-size: 0.95rem; color: var(--color-ink-soft); line-height: 1.7; margin: 0; }

/* Título/párrafo alineados a la izquierda (secciones de servicios) */
.section-title { font-family: var(--font-heading); font-weight: 700; font-size: clamp(1.8rem, 3.2vw, 2.6rem); color: var(--color-ink); line-height: 1.2; margin: 0 0 0.6rem; }
.section-body { font-size: 0.95rem; line-height: 1.9; color: var(--color-ink-soft); margin: 0 0 1.2rem; font-weight: 300; }

/* ============================================================
   GALERÍA DEL PORTAFOLIO — filas de 3 fotos (sin masonry por columnas,
   así ninguna fila mezcla personas/eventos y "Ver más" es exacto)
   ============================================================ */
.masonry-item { overflow: hidden; position: relative; cursor: pointer; background: var(--color-line); }
.masonry-item img { width: 100%; height: auto; display: block; transition: transform .7s ease, opacity .5s ease; opacity: 0; }
.masonry-item img.loaded { opacity: 1; }
.masonry-item:hover img { transform: scale(1.045); }
.masonry-item::after { content: ''; position: absolute; inset: 0; background: rgba(20,16,14,0); transition: background .4s ease; pointer-events: none; }
.masonry-item:hover::after { background: rgba(20,16,14,0.12); }

.event-group { margin-bottom: 3.5rem; padding-top: 2.5rem; border-top: 1px solid var(--color-line); }
.event-group:first-child { padding-top: 0; border-top: none; }
.event-group:last-child { margin-bottom: 0; }
.event-group-title { font-family: var(--font-display); font-weight: 500; font-size: 1.5rem; color: var(--color-ink); margin: 0 0 1.4rem; }

.photo-row { display: flex; flex-wrap: wrap; align-items: flex-start; gap: 18px; margin-bottom: 18px; }
.photo-row[hidden] { display: none; }
.photo-rows-wrap .photo-row:last-of-type { margin-bottom: 0; }
.photo-item { flex: 0 1 calc(33.333% - 12px); max-width: calc(33.333% - 12px); margin-bottom: 0; }

.photo-rows-wrap { margin-bottom: 2.6rem; }
.photo-rows-wrap:last-child { margin-bottom: 0; }

.show-more-btn {
  display: block; margin: 0.4rem auto 0; padding: 0.65rem 1.7rem; border-radius: 999px;
  background: transparent; color: var(--color-ink-soft); font-family: var(--font-body);
  font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 500;
  border: 1px solid var(--color-line); cursor: pointer; transition: all .25s ease;
}
.show-more-btn:hover { border-color: var(--color-accent); color: var(--color-accent); }

/* ============================================================
   IMPACT / SERVICIOS (por qué importa)
   ============================================================ */
.impact { padding: 110px 40px; max-width: var(--max-width); margin: 0 auto; text-align: center; position: relative; overflow: hidden; }
.impact::before, .impact::after { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); border-radius: 50%; border: 1px solid rgba(32,30,28,0.05); pointer-events: none; }
.impact::before { width: 560px; height: 560px; }
.impact::after { width: 360px; height: 360px; }
.impact-inner { max-width: 860px; margin: 0 auto; position: relative; z-index: 1; }
.impact-headline { font-family: var(--font-heading); font-weight: 800; font-size: clamp(1.7rem, 3.2vw, 2.5rem); color: var(--color-ink); line-height: 1.35; margin: 0 0 1.3rem; text-wrap: balance; }
.impact-headline em { font-style: normal; color: var(--color-accent); }
.impact-sub { font-size: 0.95rem; line-height: 1.85; color: var(--color-ink-soft); max-width: 560px; margin: 0 auto 2.8rem; font-weight: 300; }
.impact-cards { display: flex; justify-content: center; gap: 1.5rem; flex-wrap: wrap; }
.impact-card { display: flex; flex-direction: column; align-items: center; gap: 0.6rem; padding: 2.2rem 2.5rem; border-radius: 22px; background: #fff; border: 1px solid var(--color-line); min-width: 190px; transition: box-shadow .3s ease, transform .3s ease; }
.impact-card:hover { box-shadow: 0 16px 40px rgba(27,42,78,0.1); transform: translateY(-4px); }
.impact-card-icon {
  font-size: 2.4rem; margin-bottom: .3rem; width: 76px; height: 76px; border-radius: 50%;
  background: var(--color-bg-alt); display: flex; align-items: center; justify-content: center;
}
.impact-card-title { font-family: var(--font-heading); font-size: 1.05rem; color: var(--color-ink); font-weight: 600; }
.impact-card-desc { font-size: 0.75rem; color: var(--color-muted); text-align: center; line-height: 1.6; }

/* ============================================================
   PORTFOLIO PREVIEW (home → enlaza a portafolio.html)
   ============================================================ */
.portfolio-preview { padding: 110px 40px; background: var(--color-bg-alt); }
.portfolio-preview-inner { max-width: var(--max-width); margin: 0 auto; }
.portfolio-preview-header { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 1.5rem; margin-bottom: 3rem; }
.portfolio-preview-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.pp-item { aspect-ratio: 3/2; overflow: hidden; position: relative; cursor: pointer; border: 1px solid var(--color-line); border-radius: 20px; }
.pp-item img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; transition: transform .6s ease; }
.pp-item:hover img { transform: scale(1.045); }
.pp-overlay { position: absolute; inset: 0; background: rgba(32,30,28,0.55); display: flex; flex-direction: column; justify-content: flex-end; padding: 1.4rem; opacity: 0; transition: opacity .35s ease; }
.pp-item:hover .pp-overlay { opacity: 1; }
.pp-cat { font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.7); margin-bottom: 0.25rem; }
.pp-title { font-family: var(--font-heading); font-size: 1.05rem; color: #fff; font-weight: 600; }

/* ============================================================
   TESTIMONIAL
   ============================================================ */
.testimonial { background: var(--color-ink); padding: 6rem 8%; display: flex; align-items: center; justify-content: center; text-align: center; }
.testimonial-inner {
  max-width: 600px; background: #fff; border-radius: 28px;
  padding: 3.2rem 3.4rem; box-shadow: 0 30px 70px rgba(0,0,0,0.35);
}
.testimonial-stars { display: flex; justify-content: center; gap: 6px; margin-bottom: 2.4rem; }
.testimonial-stars svg { width: 22px; height: 22px; color: var(--color-accent); }
.quote-mark { font-family: Georgia, 'Times New Roman', serif; font-weight: 700; font-size: 6rem; line-height: 0.3; color: var(--color-accent-soft); margin-bottom: 0.3rem; }
.quote-text { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 600; font-style: normal; color: var(--color-ink); line-height: 1.55; margin-top: -0.6rem; margin-bottom: 1.8rem; }
.testimonial-footer { display: flex; align-items: center; justify-content: center; gap: 0.9rem; }
.testimonial-avatar {
  width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0;
  background: var(--color-accent); color: #fff; font-family: var(--font-heading); font-weight: 700; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
}
.quote-author { font-size: 0.85rem; font-weight: 600; color: var(--color-ink); text-align: left; }
.quote-author span { display: block; font-size: 0.68rem; font-weight: 400; letter-spacing: 0.08em; text-transform: uppercase; color: var(--color-muted); margin-top: 0.2rem; }

/* ============================================================
   PAQUETES
   ============================================================ */
.packages { padding: 110px 40px; background: var(--color-bg); }
.pkg-header { max-width: var(--max-width); margin: 0 auto 3.5rem; }
.pkg-promo {
  max-width: var(--max-width); margin: 0 auto 2.5rem;
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
  padding: 2.2rem 2.6rem; border-radius: 18px;
  background: linear-gradient(135deg, rgba(169,113,74,0.14) 0%, #fff 65%);
  border: 1px solid rgba(169,113,74,0.3);
}
.pkg-promo-eyebrow { font-size: 0.64rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--color-accent); margin-bottom: 0.6rem; font-weight: 500; }
.pkg-promo-title { font-family: var(--font-heading); font-size: 1.6rem; font-weight: 700; color: var(--color-ink); margin-bottom: 0.5rem; line-height: 1.2; }
.pkg-promo-title em { font-style: normal; color: var(--color-accent); }
.pkg-promo-desc { font-size: 0.88rem; color: var(--color-ink-soft); font-weight: 300; max-width: 420px; }
.pkg-promo-btn {
  flex-shrink: 0; display: inline-flex; align-items: center; padding: 0.9rem 1.9rem; border-radius: 999px;
  background: var(--color-accent); color: #fff; font-family: var(--font-body); font-size: 0.75rem; letter-spacing: 0.06em; font-weight: 500;
  text-decoration: none; transition: background .3s ease; white-space: nowrap;
}
.pkg-promo-btn:hover { background: var(--color-ink); }

.pkg-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; max-width: var(--max-width); margin: 0 auto; }
.pkg-card { background: #fff; border: 1px solid var(--color-line); border-radius: 24px; padding: 2.5rem 2rem; transition: all .35s ease; position: relative; overflow: hidden; }
.pkg-card:hover { border-color: rgba(27,42,78,0.2); transform: translateY(-6px); box-shadow: 0 24px 50px rgba(27,42,78,0.1); }
.pkg-card.featured { border-color: var(--color-accent); border-top: 4px solid var(--color-accent); }
.feat-badge { position: absolute; top: 18px; right: -34px; background: var(--color-accent); color: #fff; font-size: 0.58rem; letter-spacing: 0.14em; text-transform: uppercase; padding: 0.35rem 2.6rem; transform: rotate(38deg); }
.pkg-tier { font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--color-muted); margin-bottom: 1.2rem; }
.pkg-card.featured .pkg-tier { color: var(--color-accent); }
.pkg-name { font-family: var(--font-heading); font-size: 1.4rem; font-weight: 700; color: var(--color-ink); margin-bottom: 0.8rem; }
.pkg-price { font-family: var(--font-heading); font-size: 2.5rem; font-weight: 700; color: var(--color-ink); line-height: 1; margin-bottom: 0.4rem; }
.pkg-price sup { font-size: 1.2rem; opacity: .6; font-family: var(--font-body); font-weight: 300; }
.pkg-note { font-size: 0.72rem; color: var(--color-muted); margin-bottom: 1.8rem; }
.pkg-div { height: 1px; background: var(--color-line); margin-bottom: 1.5rem; }
.pkg-features { list-style: none; margin: 0 0 2rem; padding: 0; }
.pkg-features li { display: flex; align-items: flex-start; gap: 0.7rem; font-size: 0.85rem; color: var(--color-ink-soft); padding: 0.5rem 0; border-bottom: 1px solid rgba(32,30,28,0.05); line-height: 1.5; font-weight: 300; }
.pkg-features li::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--color-accent); flex-shrink: 0; margin-top: 0.45rem; }
.pkg-btn {
  display: block; width: 100%; padding: 0.85rem; border-radius: 999px; text-align: center; border: 1px solid rgba(32,30,28,0.2);
  background: transparent; color: var(--color-ink); font-family: var(--font-body); font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase;
  cursor: pointer; transition: all .3s ease; text-decoration: none;
}
.pkg-btn:hover { background: var(--color-accent); color: #fff; border-color: var(--color-accent); }
.pkg-card.featured .pkg-btn { background: var(--color-accent); border-color: var(--color-accent); color: #fff; }
.pkg-card.featured .pkg-btn:hover { background: var(--color-ink); border-color: var(--color-ink); }

.custom-pkg {
  max-width: var(--max-width); margin: 1.5rem auto 0; padding: 2rem 2.5rem; border-radius: 22px;
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
  background: var(--color-bg-alt); border: 1px solid var(--color-line); border-left: 4px solid var(--color-accent);
}
.custom-pkg-text h4 { font-family: var(--font-heading); font-size: 1.15rem; font-weight: 700; color: var(--color-ink); margin-bottom: 0.35rem; }
.custom-pkg-text p { font-size: 0.83rem; color: var(--color-ink-soft); font-weight: 300; line-height: 1.6; margin: 0; }

/* ============================================================
   CONTACTO — versión completa (form + opciones), home
   ============================================================ */
.contact-full { padding: 130px 40px; background: var(--color-bg-alt); color: var(--color-ink); border-top: 1px solid var(--color-line); }
.contact-full-inner { display: grid; grid-template-columns: 1.4fr 1fr; gap: 4rem; max-width: var(--max-width); margin: 0 auto; align-items: start; }
.contact-full-title { font-family: var(--font-heading); font-weight: 700; font-size: clamp(1.8rem, 3.4vw, 2.6rem); margin: 0 0 1.2rem; color: var(--color-ink); }
.contact-full-desc { font-size: 0.95rem; line-height: 1.8; color: var(--color-ink-soft); margin-bottom: 1.2rem; font-weight: 300; max-width: 440px; }
.contact-zone { font-size: 0.85rem; color: var(--color-ink-soft); margin: 0 0 2rem; font-weight: 300; line-height: 1.6; }

.contact-options { display: flex; flex-direction: column; gap: 0.7rem; align-content: start; padding-top: 19rem; }
.contact-options-subtitle { font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--color-muted); font-weight: 600; margin: 0 0 0.4rem; }
.contact-option-card {
  display: flex; flex-direction: row; align-items: center; gap: 0.8rem;
  padding: 1rem 1.2rem; border-radius: 16px; text-align: left;
  background: #fff; border: 1px solid var(--color-line);
  text-decoration: none; color: var(--color-ink); transition: all .25s ease;
}
.contact-option-card:hover { background: #fff; border-color: var(--color-accent); transform: translateX(4px); box-shadow: 0 12px 26px rgba(27,42,78,0.1); }
.coc-icon { font-size: 1.4rem; line-height: 1; }
.coc-title { font-size: 0.82rem; font-weight: 600; color: var(--color-ink); }

.cform input, .cform textarea, .cform select {
  width: 100%; padding: 0.9rem 0; background: transparent; border: none;
  border-bottom: 1px solid var(--color-line); color: var(--color-ink);
  font-family: var(--font-body); font-size: 0.9rem; font-weight: 300; outline: none;
  margin-bottom: 1.5rem; transition: border-color .3s ease; appearance: none;
}
.cform input::placeholder, .cform textarea::placeholder { color: var(--color-muted); font-weight: 300; }
.cform input:focus, .cform textarea:focus, .cform select:focus { border-bottom-color: var(--color-accent); }
.cform textarea { resize: none; height: 90px; }
.cform select option { color: var(--color-ink); background: #fff; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.form-actions { display: flex; flex-direction: column; gap: 0.85rem; align-items: flex-start; }
.form-note { font-size: 0.72rem; color: var(--color-muted); margin-top: 0.4rem; }

/* ============================================================
   SOBRE MÍ
   ============================================================ */
.about { padding: 110px 40px; background: var(--color-bg); }
.about-inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: 5rem; align-items: center; max-width: var(--max-width); margin: 0 auto; }
.about-img { aspect-ratio: 4/5; overflow: hidden; border-radius: 28px; border: 1px solid var(--color-line); position: relative; }
.about-img::after { content: ''; position: absolute; bottom: -1.5rem; right: -1.5rem; width: 60%; height: 60%; border-radius: 28px; border: 1px solid rgba(27,42,78,0.1); z-index: -1; }
.about-img img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 2.5rem; padding-top: 2.5rem; border-top: 1px solid var(--color-line); }
.stat-num { font-family: var(--font-heading); font-size: 2.4rem; font-weight: 800; color: var(--color-accent); line-height: 1; margin-bottom: 0.4rem; }
.stat-lbl { font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--color-muted); }

/* ============================================================
   FAQ
   ============================================================ */
.faq { padding: 110px 40px; background: var(--color-bg-alt); }
.faq-header { max-width: 900px; margin: 0 auto 3.5rem; }
.faq-grid { max-width: 900px; margin: 0 auto; display: flex; flex-direction: column; gap: 2.2rem; }
.faq-category { background: #fff; border: 1px solid var(--color-line); border-radius: 16px; padding: 2rem 2.3rem; }
.faq-cat-title { font-family: var(--font-heading); font-style: normal; font-size: 1rem; font-weight: 700; color: var(--color-accent); margin-bottom: 0.4rem; }
.faq-item { border-bottom: 1px solid var(--color-line); padding: 1.1rem 0; }
.faq-category .faq-item:last-child { border-bottom: none; padding-bottom: 0.2rem; }
.faq-item summary { cursor: pointer; list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 1.2rem; font-size: 0.92rem; color: var(--color-ink); font-weight: 400; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.3rem; color: var(--color-accent); flex-shrink: 0; transition: transform .3s ease; font-weight: 300; line-height: 1; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { font-size: 0.85rem; line-height: 1.8; color: var(--color-ink-soft); margin-top: 0.9rem; font-weight: 300; max-width: 640px; }

/* ============================================================
   CTA BAND (cierre de la página de Portafolio)
   ============================================================ */
.cta-band { background: var(--color-ink); color: #f4efe9; padding: 90px 40px; text-align: center; }
.cta-band-inner { max-width: 600px; margin: 0 auto; }
.cta-band .section-eyebrow { color: var(--color-accent-soft); }
.cta-band h2 { font-family: var(--font-heading); font-weight: 700; font-size: clamp(1.6rem, 3vw, 2.2rem); margin: 0 0 1rem; }
.cta-band p { font-size: 0.95rem; color: #cfc7bd; line-height: 1.7; margin: 0 0 2rem; font-weight: 300; }
.cta-band .btn-primary:hover { background: #fff; color: var(--color-ink); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer-full {
  background: var(--color-ink); padding: 2.5rem 7%;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1.5rem;
  border-top: 1px solid rgba(244,239,233,0.08);
}
.f-logo { font-family: var(--font-heading); font-weight: 700; font-size: 1.05rem; color: #f4efe9; letter-spacing: 0.01em; }
.f-links { display: flex; gap: 2rem; flex-wrap: wrap; }
.f-links a { font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: #a49c8f; transition: color .2s ease; }
.f-links a:hover { color: #f4efe9; }
.f-copy { font-size: 0.65rem; color: #8a8378; }

/* Footer claro en la página de servicios (home) */
body.light-hero .site-footer-full { background: var(--color-bg-alt); border-top-color: var(--color-line); }
body.light-hero .f-logo { color: var(--color-ink); }
body.light-hero .f-links a { color: var(--color-ink-soft); }
body.light-hero .f-links a:hover { color: var(--color-ink); }
body.light-hero .f-copy { color: var(--color-muted); }

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox { position: fixed; inset: 0; background: rgba(10,8,7,0.96); z-index: 1000; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: opacity .35s ease, visibility .35s ease; }
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox-content { max-width: 90vw; max-height: 88vh; text-align: center; }
.lightbox-content img { max-width: 90vw; max-height: 82vh; width: auto; margin: 0 auto; box-shadow: 0 20px 60px rgba(0,0,0,0.5); opacity: 0; transform: scale(0.98); transition: opacity .3s ease, transform .3s ease; }
.lightbox-content img.show { opacity: 1; transform: scale(1); }
.lightbox-count { color: #cfc7bd; font-size: 0.75rem; letter-spacing: 0.15em; margin-top: 16px; }
.lightbox-close, .lightbox-prev, .lightbox-next { position: absolute; background: none; border: none; color: #f4efe9; font-size: 2rem; line-height: 1; opacity: 0.75; transition: opacity .2s ease; }
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { opacity: 1; }
.lightbox-close { top: 28px; right: 32px; font-size: 2.2rem; }
.lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); font-size: 3rem; }
.lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); font-size: 3rem; }

/* ============================================================
   WHATSAPP FLOTANTE
   ============================================================ */
.wa-float {
  position: fixed; bottom: 1.8rem; right: 1.8rem; width: 56px; height: 56px;
  background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(32,30,28,0.35); z-index: 200; transition: transform .25s ease;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 28px; height: 28px; fill: #fff; }

/* ============================================================
   FADE-IN AL HACER SCROLL
   ============================================================ */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s ease; }
.fade-up.in-view { opacity: 1; transform: translateY(0); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .photo-item { flex-basis: calc(50% - 9px); max-width: calc(50% - 9px); }
  .gallery-section { padding: 90px 24px; }
  .impact, .portfolio-preview, .packages, .contact-full, .about, .faq { padding-left: 24px; padding-right: 24px; }
}

@media (max-width: 760px) {
  .header-inner { padding: 0 22px; }
  .main-nav {
    position: fixed; top: 0; right: 0; height: 100vh; width: min(78vw, 320px);
    background: var(--color-bg); flex-direction: column; align-items: flex-start; justify-content: center;
    gap: 28px; padding: 0 44px; transform: translateX(100%); transition: transform .4s ease; z-index: 550;
  }
  .nav-open .main-nav { transform: translateX(0); box-shadow: -10px 0 30px rgba(0,0,0,0.15); }
  .main-nav .nav-link { color: var(--color-ink); font-size: 0.85rem; }
  .main-nav .nav-cta { background: var(--color-accent); color: #fff; border: none; }
  .nav-toggle { display: block; }
  .photo-item { flex-basis: 100%; max-width: 100%; }
  .contact { padding: 90px 22px; }
  .contact-link { min-width: 0; width: 100%; max-width: 320px; }
  .hero-dots { display: none; }

  .hero-split { flex-direction: column; align-items: flex-start; padding: 120px 6% 3rem; gap: 2.5rem; }
  .hero-split-text { max-width: 100%; }
  .hero-split-visual { width: 100%; justify-content: center; }
  .hero-blob-wrap { width: 340px; height: 380px; }
  .hero-blob-main { width: 250px; height: 290px; top: 20px; left: 40px; }
  .hero-accent-1 { width: 84px; height: 84px; top: 0; right: 10px; }
  .hero-accent-2 { width: 72px; height: 72px; top: 110px; right: -10px; }
  .hero-accent-3 { width: 96px; height: 96px; bottom: 0; left: 0; }

  .about-inner, .contact-full-inner { grid-template-columns: 1fr; gap: 3rem; }
  .contact-options { padding-top: 0; }
  .pkg-grid { grid-template-columns: 1fr; }
  .portfolio-preview-grid { grid-template-columns: 1fr; }
  .pp-item { aspect-ratio: 3/2; }
  .form-row { grid-template-columns: 1fr; }
  .site-footer-full { flex-direction: column; text-align: center; }
  .custom-pkg, .pkg-promo { flex-direction: column; align-items: flex-start; text-align: left; }
  .wa-float { width: 50px; height: 50px; bottom: 1.2rem; right: 1.2rem; }
  .wa-float svg { width: 24px; height: 24px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.6rem; }
}

/* Portfolio refinement: preserve complete photographs and session order. */
:root { --color-muted: #596681; --color-accent-text: var(--color-accent); }
html { scroll-padding-top: 150px; }
:focus-visible { outline: 3px solid #477fd4; outline-offset: 5px; }
.gallery-section, .event-group { scroll-margin-top: 16px; }
.photo-row { display: flex; flex-wrap: nowrap; align-items: flex-start; gap: 18px; }
.photo-item { flex: var(--ratio) 1 0%; max-width: none; min-width: 0; padding: 0; border: 0; background: transparent; position: relative; border-radius: 2px; }
.photo-item img { width: 100%; height: auto; display: block; border-radius: 2px; transition: filter .2s ease; }
.photo-item:hover img { filter: brightness(.94); }
.photo-row:has(> :only-child) { max-width: 640px; margin-inline: auto; }
.photo-row:has(> :nth-child(2):last-child) { max-width: 1000px; margin-inline: auto; }
.photo-rows-wrap { margin-bottom: 20px; }
.event-group-title { display: flex; align-items: center; gap: 18px; }
.show-more-btn { font-size: .875rem; min-height: 44px; letter-spacing: .035em; padding: 12px 24px; color: var(--color-ink); border-color: #b5bfd1; }
.show-more-btn:hover { color: var(--color-ink); background: #edf0f6; border-color: var(--color-ink); }
.category-nav { position: sticky; top: 68px; z-index: 400; display: flex; justify-content: center; gap: 14px; padding: 8px 20px; background: rgba(255,255,255,.97); border-bottom: 1px solid var(--color-line); }
.category-nav a { display: flex; align-items: center; justify-content: center; min-height: 44px; padding: 8px 20px; border-radius: 30px; font-size: .875rem; font-weight: 400; white-space: nowrap; }
.category-nav a:hover { background: var(--color-bg-alt); }
.category-nav a[aria-current] { background: var(--color-ink); color: white; }
.gallery-cta { margin: 56px auto 0; padding-top: 28px; border-top: 1px solid var(--color-line); text-align: center; }
.gallery-cta p { font-size: 1rem; line-height: 1.6; margin-bottom: 20px; }
.gallery-section { padding-top: 72px; padding-bottom: 72px; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; }
.hero-pause { position: absolute; z-index: 3; bottom: 28px; left: 28px; min-height: 44px; border: 1px solid #ffffff99; color: white; background: #10172799; border-radius: 30px; padding: 10px 18px; font-size: .875rem; }
.hero-dots { gap: 0; right: 14px; }
.hero-dot { width: 44px; height: 36px; border-radius: 0; background: transparent; display: grid; place-items: center; }
.hero-dot::after { content: ''; width: 7px; height: 7px; border-radius: 50%; background: #ffffff77; }
.hero-dot[aria-pressed="true"]::after { background: white; width: 10px; height: 10px; }
.hero-scroll { width: 44px; height: 44px; }
.lightbox { transition: opacity .15s ease, visibility .15s ease; }
.lightbox-content { max-width: 84vw; max-height: 92dvh; }
.lightbox-content img { max-width: 84vw; max-height: 70dvh; transition: opacity .15s ease; transform: none; box-shadow: none; }
.lightbox-title { color: #fff; font-family: var(--font-display); font-weight: 500; font-size: 1.6rem; margin: 0 0 18px; }
.lightbox-count { font-size: .875rem; letter-spacing: .04em; margin: 14px 0 0; }
.lightbox-reference { font-size: .875rem; color: #ead096; margin: 8px 0; }
#lightboxStatus { color: #fff; font-size: .875rem; }
#lightboxStatus:empty, .lightbox-reference:empty { display: none; }
.lightbox-close, .lightbox-prev, .lightbox-next { width: 48px; height: 48px; opacity: 1; background: #222a38; border-radius: 50%; }
.lightbox [hidden] { display: none; }
.photo-reference { position: absolute; bottom: 8px; left: 8px; background: #14213de6; color: white; padding: 6px 10px; border-radius: 4px; font-size: 14px; }
.selection-note { text-align: center; padding: 16px 24px; margin: 0; background: #fff1d1; color: var(--color-ink); line-height: 1.6; }
.gallery-error { padding: 24px; text-align: center; }
body { font-weight: 400; }
.nav-link { font-size: .8125rem; letter-spacing: .08em; }
.main-nav { gap: 22px; }
.nav-cta, .btn-primary, .btn-ghost, .btn-custom, .pkg-btn, .pkg-promo-btn { font-size: .875rem; letter-spacing: .055em; min-height: 44px; }
.btn-primary, .site-header.solid .nav-cta, body.light-hero .site-header:not(.solid) .nav-cta { color: var(--color-ink); }
.btn-primary:hover, .site-header.solid .nav-cta:hover, body.light-hero .site-header:not(.solid) .nav-cta:hover { color: white; }
.section-eyebrow, .hero-split .section-eyebrow, .faq-cat-title, .btn-custom { color: var(--color-accent-text); }
.hero-split-desc, .section-desc, .section-body, .faq-item summary, .faq-item p, .contact-full-desc { font-size: 1rem; font-weight: 400; }
.hero-split-zone, .form-note, .f-links a, .f-copy, .strip-item, .stat-lbl, .pkg-note { font-size: .8125rem; }
.form-field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 14px; min-width: 0; }
.form-field label { font-size: .875rem; color: var(--color-ink); font-weight: 500; }
.cform .form-field input, .cform .form-field select, .cform .form-field textarea { font-size: 1rem; width: 100%; margin: 0; min-width: 0; }
.cform input:focus-visible, .cform select:focus-visible, .cform textarea:focus-visible { outline: 3px solid #477fd4; outline-offset: 2px; }
.pp-item:focus-visible .pp-overlay { opacity: 1; }
@media (max-width: 1100px) {
  .main-nav { position: fixed; top: 0; right: 0; height: 100dvh; width: min(85vw, 340px); background: white; flex-direction: column; align-items: flex-start; justify-content: center; gap: 14px; padding: 40px 28px; transform: translateX(100%); transition: transform .25s ease; z-index: 550; visibility: hidden; }
  .nav-open .main-nav { transform: translateX(0); visibility: visible; box-shadow: -10px 0 30px #1b2a4e26; }
  .main-nav .nav-link { color: var(--color-ink); font-size: .875rem; padding: 12px 0; }
  .main-nav .nav-cta { background: var(--color-accent); color: var(--color-ink); }
  .nav-toggle { display: block; width: 44px; height: 44px; }
  .nav-toggle span { left: 8px; right: 8px; }
  .nav-toggle span:nth-child(1) { top: 12px; }
  .nav-toggle span:nth-child(2) { top: 22px; }
  .nav-toggle span:nth-child(3) { top: 32px; }
}
@media (max-width: 760px) {
  .photo-row { display: flex; flex-direction: column; gap: 14px; }
  .photo-item { flex: none; width: 100%; max-width: none; }
  .category-nav { gap: 2px; padding: 6px 8px; }
  .category-nav a { padding: 8px; font-size: .8125rem; white-space: normal; text-align: center; }
  .gallery-section { padding: 44px 24px; }
  .section-heading { margin-bottom: 32px; }
  .event-group { padding-top: 28px; margin-bottom: 36px; }
  .hero-pause { left: 16px; bottom: 22px; padding: 8px 12px; font-size: .75rem; }
  .hero-scroll { left: auto; right: 22px; transform: none; bottom: 22px; }
  .hero-subtitle-links { font-size: .8125rem; letter-spacing: .06em; }
  .hero-dots { display: none; }
  .lightbox-content, .lightbox-content img { max-width: 94vw; }
  .lightbox-content img { max-height: 62dvh; }
  .lightbox-title { font-size: 1.3rem; }
  .lightbox-close { right: 16px; top: 16px; }
  .lightbox-prev, .lightbox-next { top: auto; bottom: 18px; transform: none; }
  .lightbox-prev { left: 24px; }
  .lightbox-next { right: 24px; }
  .gallery-cta .btn-primary { font-size: .8125rem; line-height: 1.6; letter-spacing: .02em; }
  .hero-blob-wrap { max-width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .fade-up { opacity: 1; transform: none; }
  .hero-slide { transform: none; }
}
/* Gold surfaces use navy text for legibility. */
.pkg-promo-btn, .pkg-card.featured .pkg-btn, .pkg-btn:hover { color: var(--color-ink); }
.pkg-promo-btn:hover, .pkg-card.featured .pkg-btn:hover { color: white; }
.lightbox { transition: opacity .15s ease; }
.pkg-tier, .pkg-promo-eyebrow, .contact-options-subtitle { font-size: .8125rem; }
.pkg-card.featured .pkg-tier, .pkg-promo-eyebrow { color: var(--color-accent-text); }
.feat-badge { color: var(--color-ink); font-size: .75rem; letter-spacing: .04em; }
.pkg-features li, .pkg-promo-desc, .custom-pkg-text p { font-size: 1rem; font-weight: 400; }
.cform input, .cform textarea, .cform select { border-bottom-color: #a4afc1; font-weight: 400; }
.cform select { appearance: auto; }
.cform textarea { resize: vertical; min-height: 100px; }
