/* =========================================================
   QUERER VIVIR — Hoja de estilos
   Diseño: "Santuario cálido" — editorial, silencioso, digno
   ========================================================= */

/* ---------- Tokens ---------- */
:root {
  /* Paleta */
  --cream:      #F6F1E7;
  --bone:       #FAF7F0;
  --ivory:      #FDFBF6;
  --charcoal:   #1F2420;
  --ink:        #2B302B;
  --forest:     #2D3B2F;
  --forest-dk:  #1E2A20;
  --terracotta: #B56840;
  --terracotta-dk: #8F4E2C;
  --sage:       #8A9A85;
  --sage-lt:    #C5CEC0;
  --gold:       #A88254;
  --stone:      #65645D;
  --stone-lt:   #9A9890;
  --line:       #D9D1BE;

  /* Tipografía */
  --font-display: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;

  /* Escalas */
  --f-xs:  0.75rem;
  --f-sm:  0.875rem;
  --f-md:  1rem;
  --f-lg:  1.125rem;
  --f-xl:  1.375rem;
  --f-2xl: 1.75rem;
  --f-3xl: 2.25rem;
  --f-4xl: 3rem;
  --f-5xl: 4rem;
  --f-6xl: 5.5rem;

  /* Espacio */
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.5rem;
  --sp-6: 2rem;
  --sp-7: 3rem;
  --sp-8: 4rem;
  --sp-9: 6rem;
  --sp-10: 8rem;
  --sp-11: 12rem;

  /* Layout */
  --container: 1240px;
  --container-narrow: 820px;
  --container-wide: 1440px;
  --radius: 4px;
  --radius-lg: 12px;

  /* Transiciones */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --t-base: 400ms var(--ease);
  --t-fast: 200ms var(--ease);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--f-md);
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "ss01", "cv11";
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4, h5, h6 { margin: 0; font-weight: 400; line-height: 1.15; letter-spacing: -0.02em; }
p { margin: 0; }
input, textarea, select { font: inherit; color: inherit; }

/* ---------- Tipografía ---------- */
.display {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-weight: 350;
  font-style: normal;
  font-variation-settings: "SOFT" 30, "WONK" 0;
  letter-spacing: -0.025em;
  line-height: 1.05;
}
.display-sm { font-size: clamp(1.75rem, 3vw, 2.25rem); }
.display-md { font-size: clamp(2.25rem, 4vw, 3.25rem); }
.display-lg { font-size: clamp(2.75rem, 6vw, 4.5rem); }
.display-xl { font-size: clamp(3rem, 8vw, 6rem); }

.eyebrow {
  font-family: var(--font-body);
  font-size: var(--f-xs);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--stone);
}
.eyebrow-forest { color: var(--forest); }
.eyebrow-gold { color: var(--gold); }

.lede {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.25rem, 2vw, 1.625rem);
  line-height: 1.5;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.italic { font-style: italic; }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--sp-5);
}
.container-narrow {
  width: 100%;
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 var(--sp-5);
}
.container-wide {
  width: 100%;
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 var(--sp-5);
}

section { padding: var(--sp-10) 0; position: relative; }
@media (max-width: 768px) {
  section { padding: var(--sp-8) 0; }
}

.rule {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: var(--sp-4) 0;
  border: 0;
}
.rule-center { margin-left: auto; margin-right: auto; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: var(--sp-5) 0;
  transition: background var(--t-base), padding var(--t-base), box-shadow var(--t-base);
}
.site-header.scrolled {
  background: rgba(250, 247, 240, 0.96);
  backdrop-filter: saturate(180%) blur(8px);
  -webkit-backdrop-filter: saturate(180%) blur(8px);
  padding: var(--sp-4) 0;
  box-shadow: 0 1px 0 rgba(31, 36, 32, 0.06);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-6);
}
.brand {
  font-family: var(--font-display);
  font-size: var(--f-xl);
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--forest);
  line-height: 1;
  text-decoration: none;
  display: inline-flex;
  align-items: baseline;
  gap: var(--sp-2);
}
.brand em {
  font-style: italic;
  font-weight: 300;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
}
.nav-links a {
  font-size: var(--f-sm);
  color: var(--ink);
  font-weight: 400;
  letter-spacing: 0.01em;
  transition: color var(--t-fast);
}
.nav-links a:hover { color: var(--terracotta); }

.nav-cta {
  font-size: var(--f-sm);
  padding: var(--sp-3) var(--sp-5);
  border: 1px solid var(--forest);
  color: var(--forest);
  border-radius: 999px;
  transition: all var(--t-fast);
}
.nav-cta:hover {
  background: var(--forest);
  color: var(--cream);
}

.nav-toggle {
  display: none;
  width: 28px;
  height: 28px;
  position: relative;
}
.nav-toggle span {
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: var(--ink);
  transition: transform var(--t-fast);
}
.nav-toggle span:nth-child(1) { top: 8px; }
.nav-toggle span:nth-child(2) { top: 18px; }

@media (max-width: 880px) {
  .nav-links {
    position: fixed;
    inset: 0;
    background: var(--cream);
    flex-direction: column;
    justify-content: center;
    gap: var(--sp-6);
    transform: translateY(-100%);
    transition: transform var(--t-base);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { font-family: var(--font-display); font-size: 1.5rem; }
  .nav-toggle { display: block; position: relative; z-index: 101; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-3);
  padding: var(--sp-4) var(--sp-6);
  font-size: var(--f-sm);
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: 999px;
  transition: all var(--t-fast);
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--forest);
  color: var(--cream);
  border-color: var(--forest);
}
.btn-primary:hover {
  background: var(--forest-dk);
  border-color: var(--forest-dk);
  transform: translateY(-1px);
}
.btn-secondary {
  background: transparent;
  color: var(--forest);
  border-color: var(--forest);
}
.btn-secondary:hover {
  background: var(--forest);
  color: var(--cream);
}
.btn-terracotta {
  background: var(--terracotta);
  color: var(--ivory);
  border-color: var(--terracotta);
}
.btn-terracotta:hover {
  background: var(--terracotta-dk);
  border-color: var(--terracotta-dk);
}
.btn-lg {
  padding: var(--sp-5) var(--sp-7);
  font-size: var(--f-md);
}
.btn-ghost {
  color: var(--ink);
  padding: var(--sp-3) 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
}
.btn-ghost:hover { color: var(--terracotta); border-color: var(--terracotta); }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  padding: 0;
  overflow: hidden;
  background: var(--forest-dk);
  color: var(--cream);
  display: flex;
  align-items: flex-end;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero-media .placeholder,
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    180deg,
    rgba(30, 42, 32, 0.35) 0%,
    rgba(30, 42, 32, 0.15) 35%,
    rgba(30, 42, 32, 0.85) 100%
  );
}
.hero-inner {
  position: relative;
  z-index: 3;
  width: 100%;
  padding-bottom: var(--sp-9);
  padding-top: var(--sp-11);
}
.hero h1 {
  max-width: 15ch;
  margin-bottom: var(--sp-5);
}
.hero h1 em {
  font-style: italic;
  color: var(--sage-lt);
  display: block;
}
.hero-lede {
  max-width: 44ch;
  font-family: var(--font-body);
  font-size: var(--f-lg);
  font-weight: 300;
  color: rgba(246, 241, 231, 0.88);
  line-height: 1.55;
  margin-bottom: var(--sp-7);
}
.hero-cta {
  display: flex;
  gap: var(--sp-4);
  flex-wrap: wrap;
}
.hero-cta .btn-secondary {
  color: var(--cream);
  border-color: rgba(246, 241, 231, 0.5);
}
.hero-cta .btn-secondary:hover {
  background: var(--cream);
  color: var(--forest);
  border-color: var(--cream);
}
.hero-scroll {
  position: absolute;
  bottom: var(--sp-6);
  right: var(--sp-5);
  z-index: 3;
  font-size: var(--f-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(246, 241, 231, 0.6);
  writing-mode: vertical-rl;
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}
.hero-scroll::before {
  content: '';
  width: 1px;
  height: 48px;
  background: rgba(246, 241, 231, 0.4);
}
@media (max-width: 768px) {
  .hero-scroll { display: none; }
}

/* ---------- Manifiesto ---------- */
.manifiesto {
  background: var(--cream);
  text-align: center;
  padding: var(--sp-11) 0;
}
.manifiesto .lede {
  max-width: 32ch;
  margin: 0 auto;
  color: var(--ink);
  font-weight: 300;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  line-height: 1.35;
}
.manifiesto .lede em { font-style: italic; color: var(--terracotta); }

/* ---------- Enfoque (dos columnas) ---------- */
.enfoque {
  background: var(--bone);
}
.enfoque-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-9);
  align-items: center;
}
@media (max-width: 880px) {
  .enfoque-grid { grid-template-columns: 1fr; gap: var(--sp-7); }
}
.enfoque-media {
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  overflow: hidden;
}
.enfoque-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.enfoque-text h2 {
  margin-top: var(--sp-3);
  margin-bottom: var(--sp-5);
}
.enfoque-text p {
  margin-bottom: var(--sp-4);
  color: var(--ink);
  max-width: 52ch;
}
.enfoque-text p:last-of-type { margin-bottom: var(--sp-6); }

/* ---------- Servicios ---------- */
.servicios { background: var(--cream); }
.servicios-header {
  text-align: center;
  max-width: var(--container-narrow);
  margin: 0 auto var(--sp-8);
}
.servicios-header h2 { margin-bottom: var(--sp-4); }
.servicios-header p { color: var(--stone); max-width: 56ch; margin: 0 auto; }

.servicios-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
@media (max-width: 768px) {
  .servicios-grid { grid-template-columns: 1fr; }
}
.servicio {
  background: var(--cream);
  padding: var(--sp-8) var(--sp-6);
  transition: background var(--t-base);
}
.servicio:hover { background: var(--bone); }
.servicio-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--f-sm);
  color: var(--gold);
  display: block;
  margin-bottom: var(--sp-4);
}
.servicio h3 {
  font-family: var(--font-display);
  font-size: var(--f-2xl);
  margin-bottom: var(--sp-4);
  color: var(--forest);
}
.servicio p {
  color: var(--stone);
  font-size: var(--f-md);
  line-height: 1.7;
  max-width: 46ch;
}

/* ---------- Lugar ---------- */
.lugar {
  background: var(--forest-dk);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.lugar-header {
  max-width: var(--container-narrow);
  text-align: center;
  margin: 0 auto var(--sp-8);
}
.lugar-header .eyebrow { color: var(--sage-lt); }
.lugar-header h2 { color: var(--cream); margin-bottom: var(--sp-5); }
.lugar-header p { color: rgba(246, 241, 231, 0.75); max-width: 58ch; margin: 0 auto; }

.lugar-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--sp-4);
  grid-auto-rows: 180px;
}
@media (max-width: 880px) {
  .lugar-grid { grid-template-columns: repeat(6, 1fr); grid-auto-rows: 140px; }
}
@media (max-width: 560px) {
  .lugar-grid { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 120px; gap: var(--sp-3); }
}
.lugar-img {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--forest);
}
.lugar-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.lugar-img.tall { grid-row: span 2; }
.lugar-img.wide { grid-column: span 6; }
.lugar-img.half { grid-column: span 3; }
.lugar-img.third { grid-column: span 4; }
.lugar-img.quarter { grid-column: span 3; }
.lugar-img.twothird { grid-column: span 8; }

@media (max-width: 880px) {
  .lugar-img.wide { grid-column: span 6; }
  .lugar-img.half { grid-column: span 3; }
  .lugar-img.third { grid-column: span 3; }
  .lugar-img.quarter { grid-column: span 3; }
  .lugar-img.twothird { grid-column: span 6; }
}
@media (max-width: 560px) {
  .lugar-img { grid-column: span 2 !important; }
  .lugar-img.wide { grid-column: span 4 !important; }
}

/* ---------- Equipo ---------- */
.equipo { background: var(--bone); }
.equipo-header {
  max-width: var(--container-narrow);
  text-align: center;
  margin: 0 auto var(--sp-8);
}
.equipo-header h2 { margin-bottom: var(--sp-4); }
.equipo-header p { color: var(--stone); max-width: 58ch; margin: 0 auto; }

.equipo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-7) var(--sp-5);
}
@media (max-width: 1024px) { .equipo-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px) { .equipo-grid { grid-template-columns: repeat(2, 1fr); } }

.miembro {
  text-align: left;
}
.miembro-foto {
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: var(--radius);
  margin-bottom: var(--sp-4);
  background: var(--cream);
}
.miembro-foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 600ms var(--ease);
}
.miembro:hover .miembro-foto img {
  transform: scale(1.03);
}
.miembro h3 {
  font-family: var(--font-display);
  font-size: var(--f-xl);
  font-weight: 400;
  color: var(--forest);
  margin-bottom: var(--sp-1);
}
.miembro .rol {
  font-size: var(--f-sm);
  color: var(--stone);
  font-style: italic;
}

/* ---------- Confianza ---------- */
.confianza {
  background: var(--cream);
  padding: var(--sp-9) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.confianza-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-6);
}
@media (max-width: 768px) {
  .confianza-grid { grid-template-columns: repeat(2, 1fr); gap: var(--sp-6); }
}
.trust-item { text-align: left; }
.trust-num {
  font-family: var(--font-display);
  font-size: var(--f-4xl);
  color: var(--terracotta);
  display: block;
  margin-bottom: var(--sp-2);
  line-height: 1;
}
.trust-label {
  font-size: var(--f-sm);
  color: var(--stone);
  line-height: 1.5;
}

/* ---------- Contacto ---------- */
.contacto {
  background: var(--bone);
  padding: var(--sp-10) 0;
}
.contacto-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--sp-9);
  align-items: start;
}
@media (max-width: 880px) {
  .contacto-grid { grid-template-columns: 1fr; gap: var(--sp-7); }
}
.contacto-intro h2 { margin-bottom: var(--sp-5); }
.contacto-intro p {
  color: var(--stone);
  margin-bottom: var(--sp-5);
  max-width: 46ch;
}
.contacto-info {
  margin-top: var(--sp-7);
  border-top: 1px solid var(--line);
  padding-top: var(--sp-5);
}
.contacto-info dt {
  font-size: var(--f-xs);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--stone-lt);
  margin-bottom: var(--sp-1);
}
.contacto-info dd {
  margin: 0 0 var(--sp-4) 0;
  color: var(--ink);
  font-size: var(--f-md);
}

/* Form */
.form {
  background: var(--ivory);
  padding: var(--sp-7);
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.form-field {
  margin-bottom: var(--sp-5);
}
.form-field label {
  display: block;
  font-size: var(--f-xs);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--stone);
  margin-bottom: var(--sp-2);
  font-weight: 500;
}
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: var(--sp-3) 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: var(--f-md);
  transition: border-color var(--t-fast);
  font-family: var(--font-body);
}
.form-field textarea {
  resize: vertical;
  min-height: 100px;
  font-family: var(--font-body);
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--forest);
}
.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--stone-lt);
}

.form-consent {
  display: flex;
  gap: var(--sp-3);
  align-items: flex-start;
  margin-bottom: var(--sp-5);
  font-size: var(--f-sm);
  color: var(--stone);
  line-height: 1.55;
}
.form-consent input {
  margin-top: 4px;
  flex-shrink: 0;
  accent-color: var(--forest);
  width: 16px;
  height: 16px;
}
.form-consent a {
  color: var(--forest);
  text-decoration: underline;
  text-decoration-color: var(--line);
  text-underline-offset: 3px;
}
.form-consent a:hover { text-decoration-color: var(--forest); }

.form-note {
  font-size: var(--f-xs);
  color: var(--stone-lt);
  margin-top: var(--sp-4);
  line-height: 1.55;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--forest-dk);
  color: rgba(246, 241, 231, 0.75);
  padding: var(--sp-9) 0 var(--sp-6);
  font-size: var(--f-sm);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--sp-7);
  padding-bottom: var(--sp-7);
  border-bottom: 1px solid rgba(246, 241, 231, 0.12);
}
@media (max-width: 880px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: var(--sp-6); }
}
@media (max-width: 560px) {
  .footer-top { grid-template-columns: 1fr; }
}
.footer-brand {
  font-family: var(--font-display);
  font-size: var(--f-2xl);
  color: var(--cream);
  margin-bottom: var(--sp-3);
  line-height: 1;
  display: block;
}
.footer-brand em { font-style: italic; }
.footer-logo {
  display: block;
  width: 160px;
  max-width: 100%;
  height: auto;
  margin-bottom: var(--sp-5);
  margin-left: -12px;
  opacity: 0.92;
  transition: opacity var(--t-fast);
}
.footer-logo:hover { opacity: 1; }
.footer-tag {
  color: rgba(246, 241, 231, 0.55);
  max-width: 32ch;
  line-height: 1.55;
  font-size: var(--f-sm);
}
.footer-title {
  font-size: var(--f-xs);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(246, 241, 231, 0.5);
  margin-bottom: var(--sp-4);
  display: block;
  font-weight: 500;
}
.footer-list li { margin-bottom: var(--sp-3); }
.footer-list a { color: rgba(246, 241, 231, 0.85); transition: color var(--t-fast); }
.footer-list a:hover { color: var(--terracotta); }

.footer-bottom {
  padding-top: var(--sp-5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-5);
  flex-wrap: wrap;
  font-size: var(--f-xs);
  color: rgba(246, 241, 231, 0.5);
}
.footer-legal {
  background: rgba(0,0,0,0.18);
  padding: var(--sp-5) 0;
  margin-top: var(--sp-6);
  font-size: 11px;
  line-height: 1.6;
  color: rgba(246, 241, 231, 0.5);
  border-top: 1px solid rgba(246, 241, 231, 0.08);
}
.footer-legal strong { color: rgba(246, 241, 231, 0.75); font-weight: 500; }
.footer-legal p { margin-bottom: var(--sp-2); }

/* ---------- Placeholders ---------- */
.placeholder {
  width: 100%;
  height: 100%;
  background:
    repeating-linear-gradient(
      135deg,
      rgba(45, 59, 47, 0.06),
      rgba(45, 59, 47, 0.06) 1px,
      transparent 1px,
      transparent 14px
    ),
    linear-gradient(180deg, #C5CEC0 0%, #8A9A85 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(31, 36, 32, 0.35);
  font-family: var(--font-body);
  font-size: var(--f-xs);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  text-align: center;
  padding: var(--sp-4);
  position: relative;
}
.placeholder::before {
  content: '';
  position: absolute;
  inset: var(--sp-3);
  border: 1px dashed rgba(31, 36, 32, 0.2);
}
.placeholder.dark {
  background:
    repeating-linear-gradient(
      135deg,
      rgba(246, 241, 231, 0.04),
      rgba(246, 241, 231, 0.04) 1px,
      transparent 1px,
      transparent 14px
    ),
    linear-gradient(180deg, #2D3B2F 0%, #1E2A20 100%);
  color: rgba(246, 241, 231, 0.4);
}
.placeholder.dark::before { border-color: rgba(246, 241, 231, 0.15); }

/* ---------- Utilidades ---------- */
.center { text-align: center; }
.mt-auto { margin-top: auto; }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

/* Reveal animation — "cut the mustard" pattern
   Sólo se esconde si <html class="js">, para no romper print/SSR/headless */
@media (prefers-reduced-motion: no-preference) {
  .js .reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 800ms var(--ease), transform 800ms var(--ease);
  }
  .js .reveal.in {
    opacity: 1;
    transform: translateY(0);
  }
}
@media print {
  .reveal, .js .reveal { opacity: 1 !important; transform: none !important; }
}

/* ---------- Print ---------- */
@media print {
  .site-header, .hero-scroll, .nav-toggle { display: none; }
}
