/* ═══════════════════════════════════════════════════════════════
   MemorialAI — Landing Page Styles
   Breakpoints: 480px · 768px · 1024px
   ═══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=DM+Sans:wght@300;400;500&display=swap');

/* ── RESET & VARIABLES ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ink:        #1a1410;
  --cream:      #f5f0e8;
  --warm:       #e8dfd0;
  --gold:       #b8965a;
  --gold-light: #d4b483;
  --muted:      #7a6e62;
  --border:     rgba(184,150,90,0.25);
  --shadow:     rgba(26,20,16,0.08);
  --px: clamp(1.25rem, 5vw, 3rem);
  --py: clamp(3.5rem, 8vw, 7rem);
}

html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--cream); color: var(--ink); overflow-x: hidden; }

/* ══════════════════════════════════════════════════════
   NAV
══════════════════════════════════════════════════════ */
nav {
  position: fixed; top: 0; width: 100%; z-index: 100;
  padding: 1.1rem var(--px);
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(245,240,232,0.92); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border); transition: box-shadow 0.3s;
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 600;
  letter-spacing: 0.02em; color: var(--ink); text-decoration: none; z-index: 101;
}
.nav-logo span { color: var(--gold); }

.nav-links { display: flex; gap: 1.75rem; align-items: center; }
.nav-links a {
  font-size: 0.875rem; color: var(--muted); text-decoration: none;
  transition: color 0.2s; white-space: nowrap; letter-spacing: 0.04em;
}
.nav-links a:hover { color: var(--ink); }

.btn-nav {
  background: var(--ink) !important; color: var(--cream) !important;
  padding: 0.55rem 1.25rem !important; border-radius: 2px;
  font-size: 0.78rem !important; letter-spacing: 0.08em !important;
  text-transform: uppercase; transition: background 0.2s !important; white-space: nowrap;
}
.btn-nav:hover { background: var(--gold) !important; color: var(--ink) !important; }

/* Hamburger — oculto en desktop */
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px; z-index: 101;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--ink); border-radius: 2px; transition: all 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Overlay oscuro detrás del menú */
.nav-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(26,20,16,0.4); z-index: 98;
}
.nav-overlay.open { display: block; }

/* ══════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: clamp(6rem,10vw,8rem) var(--px) clamp(3rem,6vw,4rem);
  gap: clamp(2rem,4vw,4rem);
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 50% at 80% 50%, rgba(184,150,90,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(184,150,90,0.05) 0%, transparent 60%);
}
.hero-text { position: relative; z-index: 1; }
.hero-eyebrow {
  font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold); font-weight: 500; margin-bottom: 1.25rem;
  display: flex; align-items: center; gap: 0.75rem;
}
.hero-eyebrow::before { content: ''; display: block; width: 2rem; height: 1px; background: var(--gold); flex-shrink: 0; }

h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem,4.5vw,4.5rem); font-weight: 300;
  line-height: 1.1; letter-spacing: -0.01em; margin-bottom: 1.25rem;
}
h1 em { font-style: italic; color: var(--gold); }

.hero-sub {
  font-size: clamp(0.9rem,1.5vw,1.05rem); line-height: 1.75;
  color: var(--muted); max-width: 44ch; margin-bottom: 2.25rem; font-weight: 300;
}
.hero-actions { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }

/* Card flotante */
.hero-visual { position: relative; z-index: 1; display: flex; justify-content: center; align-items: center; }
.memorial-card-preview {
  background: white; border: 1px solid var(--border); border-radius: 4px; overflow: hidden;
  width: 100%; max-width: 400px;
  box-shadow: 0 24px 80px rgba(26,20,16,0.12), 0 4px 16px rgba(26,20,16,0.06);
  animation: float 6s ease-in-out infinite;
}
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

.card-header {
  height: 160px;
  background: linear-gradient(160deg, #2c2420 0%, #1a1410 60%, #3d2e1e 100%);
  position: relative; overflow: hidden; display: flex; align-items: flex-end; padding: 1.25rem;
}
.card-header::before {
  content: ''; position: absolute; inset: 0; opacity: 0.4;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23b8965a' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.card-avatar {
  width: 56px; height: 56px; border-radius: 50%; border: 2px solid var(--gold); flex-shrink: 0;
  background: linear-gradient(135deg, #c9a96e, #8b6914);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; color: white; font-weight: 300;
  position: relative; z-index: 1; margin-right: 0.875rem;
}
.card-name-area { position: relative; z-index: 1; min-width: 0; }
.card-name  { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: white; font-weight: 300; line-height: 1.2; }
.card-dates { font-size: 0.7rem; color: var(--gold-light); letter-spacing: 0.05em; margin-top: 0.2rem; }
.card-body  { padding: 1.1rem 1.25rem; }
.card-quote {
  font-family: 'Cormorant Garamond', serif; font-size: 0.9rem; font-style: italic; line-height: 1.6;
  color: #4a4038; border-left: 2px solid var(--gold); padding-left: 0.75rem; margin-bottom: 0.875rem;
}
.card-stats { display: flex; gap: 1.25rem; padding-top: 0.875rem; border-top: 1px solid var(--warm); }
.card-stat  { text-align: center; }
.card-stat-num   { font-size: 1rem; font-weight: 500; color: var(--ink); display: block; }
.card-stat-label { font-size: 0.65rem; color: var(--muted); letter-spacing: 0.05em; text-transform: uppercase; }
.card-footer {
  padding: 0.75rem 1.25rem; background: var(--warm); border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}
.card-share-text { font-size: 0.7rem; color: var(--muted); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.card-share-btn  { font-size: 0.65rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); font-weight: 500; flex-shrink: 0; margin-left: 0.5rem; }

/* ══════════════════════════════════════════════════════
   TRUST BAR
══════════════════════════════════════════════════════ */
.trust-bar {
  background: var(--ink); color: var(--cream);
  padding: 1.1rem var(--px);
  display: flex; align-items: center; justify-content: center;
  gap: clamp(1rem,3vw,3rem); flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: clamp(0.68rem,1.2vw,0.8rem); letter-spacing: 0.05em; opacity: 0.85; white-space: nowrap;
}
.trust-item svg { width: 15px; height: 15px; stroke: var(--gold); fill: none; flex-shrink: 0; }

/* ══════════════════════════════════════════════════════
   SECTIONS BASE
══════════════════════════════════════════════════════ */
.section { padding: var(--py) var(--px); }
.section-inner { max-width: 1200px; margin: 0 auto; }

.section-label {
  font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); font-weight: 500; margin-bottom: 0.875rem;
  display: flex; align-items: center; gap: 0.75rem;
}
.section-label::before { content: ''; display: block; width: 1.5rem; height: 1px; background: var(--gold); flex-shrink: 0; }

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.9rem,4vw,3.25rem); font-weight: 300; line-height: 1.15; margin-bottom: 0.875rem;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-sub { color: var(--muted); font-size: clamp(0.875rem,1.5vw,1rem); line-height: 1.7; max-width: 50ch; font-weight: 300; }

/* ══════════════════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════════════════ */
.btn-primary {
  background: var(--ink); color: var(--cream);
  padding: 0.9rem 2rem; border-radius: 2px;
  font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase;
  text-decoration: none; font-weight: 500; transition: all 0.25s;
  border: 1px solid var(--ink); display: inline-block; white-space: nowrap;
}
.btn-primary:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); }

.btn-secondary {
  color: var(--muted); font-size: 0.875rem; text-decoration: none;
  display: flex; align-items: center; gap: 0.5rem; transition: color 0.2s; white-space: nowrap;
}
.btn-secondary:hover { color: var(--gold); }
.btn-secondary::after { content: '→'; transition: transform 0.2s; }
.btn-secondary:hover::after { transform: translateX(4px); }

/* ══════════════════════════════════════════════════════
   STEPS
══════════════════════════════════════════════════════ */
.steps-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  margin-top: clamp(2rem,5vw,4rem); border: 1px solid var(--border);
}
.step {
  padding: clamp(1.5rem,3vw,2.5rem) clamp(1.25rem,2.5vw,2rem);
  background: white; border-right: 1px solid var(--border); transition: background 0.3s;
}
.step:last-child { border-right: none; }
.step:hover { background: var(--warm); }
.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem,5vw,4rem); font-weight: 300; color: var(--border);
  line-height: 1; margin-bottom: 1.25rem; transition: color 0.3s;
}
.step:hover .step-num { color: var(--gold-light); }
.step-title { font-size: 0.95rem; font-weight: 500; margin-bottom: 0.4rem; }
.step-desc  { font-size: 0.82rem; color: var(--muted); line-height: 1.6; font-weight: 300; }

/* ══════════════════════════════════════════════════════
   EXAMPLES
══════════════════════════════════════════════════════ */
.examples-section {
  background: var(--ink); padding: var(--py) var(--px); position: relative; overflow: hidden;
}
.examples-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 100%, rgba(184,150,90,0.08) 0%, transparent 70%);
}
.examples-section .section-label { color: var(--gold-light); }
.examples-section .section-title { color: var(--cream); }
.examples-section .section-sub   { color: rgba(245,240,232,0.55); }

.examples-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem; margin-top: clamp(2rem,5vw,4rem); position: relative; z-index: 1;
}
.example-card {
  background: rgba(245,240,232,0.05); border: 1px solid rgba(184,150,90,0.2);
  border-radius: 3px; overflow: hidden; transition: all 0.3s; cursor: pointer;
}
.example-card:hover { background: rgba(245,240,232,0.08); border-color: rgba(184,150,90,0.4); transform: translateY(-4px); }
.ex-header { height: 110px; position: relative; display: flex; align-items: flex-end; padding: 0.875rem; }
.ex-header-1 { background: linear-gradient(135deg, #1a2a3a, #0d1d2c); }
.ex-header-2 { background: linear-gradient(135deg, #2a1a2a, #1a0d1a); }
.ex-header-3 { background: linear-gradient(135deg, #1a2a1a, #0d1d0d); }
.ex-avatar {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  border: 1.5px solid var(--gold); margin-right: 0.625rem;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif; font-size: 1rem; color: white;
}
.ex-avatar-1 { background: linear-gradient(135deg, #4a6fa5, #2c4a7a); }
.ex-avatar-2 { background: linear-gradient(135deg, #9b6b9b, #6b3d6b); }
.ex-avatar-3 { background: linear-gradient(135deg, #5a8a5a, #2d5a2d); }
.ex-name  { font-family: 'Cormorant Garamond', serif; font-size: 0.95rem; color: white; font-weight: 300; line-height: 1.2; }
.ex-years { font-size: 0.62rem; color: var(--gold-light); margin-top: 0.15rem; }
.ex-body  { padding: 1.1rem; }
.ex-text  { font-size: 0.78rem; color: rgba(245,240,232,0.6); line-height: 1.6; font-style: italic; font-weight: 300; }
.ex-footer {
  padding: 0.625rem 1.1rem; border-top: 1px solid rgba(184,150,90,0.15);
  display: flex; justify-content: space-between; align-items: center;
}
.ex-likes { font-size: 0.68rem; color: var(--gold-light); }
.ex-btn   { font-size: 0.62rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); white-space: nowrap; }

/* ══════════════════════════════════════════════════════
   PRICING
══════════════════════════════════════════════════════ */
.pricing-section { padding: var(--py) var(--px); background: var(--warm); }
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem; max-width: 960px; margin-inline: auto;
  margin-top: clamp(2rem,5vw,4rem);
}
.price-card {
  background: white; border: 1px solid var(--border); border-radius: 3px;
  padding: clamp(1.5rem,3vw,2.5rem) clamp(1.25rem,2.5vw,2rem);
  position: relative; transition: all 0.3s;
}
.price-card:hover { box-shadow: 0 12px 40px rgba(26,20,16,0.1); transform: translateY(-2px); }
.price-card.featured { background: var(--ink); border-color: var(--gold); transform: translateY(-8px); }
.price-card.featured:hover { transform: translateY(-12px); }

.price-badge {
  position: absolute; top: -0.75rem; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--ink);
  font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.28rem 0.875rem; border-radius: 1px; font-weight: 500; white-space: nowrap;
}
.price-tier { font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.625rem; }
.price-card.featured .price-tier { color: var(--gold-light); }

.price-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.25rem,4vw,3rem); font-weight: 300; line-height: 1; margin-bottom: 0.2rem; min-height: 3rem;
}
.price-card.featured .price-amount { color: var(--gold); }
.price-period { font-size: 0.75rem; color: var(--muted); margin-bottom: 1.25rem; min-height: 1.1rem; }
.price-card.featured .price-period { color: rgba(245,240,232,0.5); }

.price-amount.loading, .price-period.loading {
  background: linear-gradient(90deg, #e0d8cc 25%, #ede6d8 50%, #e0d8cc 75%);
  background-size: 200% 100%; animation: shimmer 1.2s infinite;
  border-radius: 3px; color: transparent !important; user-select: none;
}
.price-card.featured .price-amount.loading,
.price-card.featured .price-period.loading {
  background: linear-gradient(90deg, #2a2420 25%, #3a3028 50%, #2a2420 75%);
  background-size: 200% 100%; animation: shimmer 1.2s infinite;
}
@keyframes shimmer { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }

.price-features { list-style: none; margin-bottom: 1.5rem; }
.price-features li {
  font-size: 0.82rem; color: var(--muted); padding: 0.45rem 0;
  border-bottom: 1px solid var(--warm); display: flex; gap: 0.5rem; align-items: flex-start;
}
.price-card.featured .price-features li { color: rgba(245,240,232,0.65); border-bottom-color: rgba(184,150,90,0.15); }
.price-features li::before { content: '—'; color: var(--gold); flex-shrink: 0; font-size: 0.72rem; margin-top: 0.1rem; }
.price-features li.disabled { opacity: 0.35; }

.btn-price {
  width: 100%; padding: 0.82rem; font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
  border: 1px solid; border-radius: 2px; cursor: pointer; font-weight: 500; transition: all 0.25s;
  text-decoration: none; display: block; text-align: center; font-family: 'DM Sans', sans-serif;
}
.btn-price-outline { border-color: var(--border); color: var(--ink); background: transparent; }
.btn-price-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-price-gold { border-color: var(--gold); background: var(--gold); color: var(--ink); }
.btn-price-gold:hover { background: var(--gold-light); }

.currency-badge {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem;
  font-size: 0.72rem; color: var(--muted); margin-top: 0.875rem; opacity: 0; transition: opacity 0.4s;
}
.currency-flag { font-size: 0.9rem; }

/* ══════════════════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════════════════ */
.testimonials { padding: var(--py) var(--px); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: clamp(2rem,5vw,4rem); }
.testimonial { padding: clamp(1.25rem,3vw,2rem); border: 1px solid var(--border); border-radius: 3px; position: relative; }
.testimonial::before {
  content: '"'; font-family: 'Cormorant Garamond', serif; font-size: 4.5rem; line-height: 1;
  color: var(--border); position: absolute; top: 0.4rem; left: 0.875rem; font-style: italic;
}
.testimonial-text   { font-size: 0.875rem; line-height: 1.7; color: var(--muted); font-style: italic; font-weight: 300; margin-bottom: 1rem; padding-top: 1.5rem; }
.testimonial-author { font-size: 0.8rem; font-weight: 500; }
.testimonial-role   { font-size: 0.72rem; color: var(--muted); }

/* ══════════════════════════════════════════════════════
   CTA
══════════════════════════════════════════════════════ */
.cta-section {
  background: var(--ink); padding: clamp(4rem,10vw,8rem) var(--px);
  text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 80% at 50% 100%, rgba(184,150,90,0.12) 0%, transparent 70%);
}
.cta-section .section-label { justify-content: center; color: var(--gold-light); }
.cta-section .section-label::before { display: none; }
.cta-title {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem,5vw,4rem); font-weight: 300;
  color: var(--cream); line-height: 1.15; margin-bottom: 1.1rem; position: relative; z-index: 1;
}
.cta-title em { font-style: italic; color: var(--gold); }
.cta-sub {
  color: rgba(245,240,232,0.5); font-size: clamp(0.875rem,1.5vw,1rem); line-height: 1.7;
  max-width: 44ch; margin: 0 auto 2.25rem; font-weight: 300; position: relative; z-index: 1;
}
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }
.btn-cta-primary {
  background: var(--gold); color: var(--ink); padding: 1rem 2.25rem; border-radius: 2px;
  font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none; font-weight: 500; transition: all 0.25s; display: inline-block; white-space: nowrap;
}
.btn-cta-primary:hover { background: var(--gold-light); }
.btn-cta-ghost {
  border: 1px solid rgba(245,240,232,0.2); color: rgba(245,240,232,0.7); padding: 1rem 2.25rem; border-radius: 2px;
  font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none; font-weight: 300; transition: all 0.25s; display: inline-block; white-space: nowrap;
}
.btn-cta-ghost:hover { border-color: var(--gold); color: var(--gold); }

/* ══════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════ */
footer {
  background: #100d0a; color: rgba(245,240,232,0.4);
  padding: 2rem var(--px); display: flex; align-items: center;
  justify-content: space-between; font-size: 0.78rem; flex-wrap: wrap; gap: 1rem;
}
footer a { color: rgba(245,240,232,0.4); text-decoration: none; transition: color 0.2s; }
footer a:hover { color: var(--gold); }
.footer-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: rgba(245,240,232,0.7); }
.footer-logo span { color: var(--gold); }
.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }

/* ══════════════════════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════════════════════ */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.hero-text > * { animation: fadeUp 0.8s ease both; }
.hero-eyebrow { animation-delay: 0.1s; }
h1            { animation-delay: 0.2s; }
.hero-sub     { animation-delay: 0.35s; }
.hero-actions { animation-delay: 0.5s; }
.hero-visual  { animation: fadeUp 0.9s 0.3s ease both; }

/* ══════════════════════════════════════════════════════
   RESPONSIVE — 1024px tablet landscape
══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .step:nth-child(2) { border-right: none; }
  .step:nth-child(3) { border-top: 1px solid var(--border); border-right: 1px solid var(--border); }
  .step:nth-child(4) { border-top: 1px solid var(--border); border-right: none; }
  .pricing-grid { max-width: 700px; gap: 1rem; }
  .price-card.featured { transform: translateY(-4px); }
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE — 768px tablet portrait
══════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  /* Nav hamburger */
  .nav-hamburger { display: flex; }
  .nav-links {
    position: fixed; top: 0; right: -100%; width: 75%; max-width: 280px; height: 100vh;
    background: var(--cream); flex-direction: column; align-items: flex-start;
    padding: 5rem 2rem 2rem; gap: 0; border-left: 1px solid var(--border);
    box-shadow: -8px 0 32px rgba(26,20,16,0.1); transition: right 0.3s ease; z-index: 99; overflow-y: auto;
  }
  .nav-links.open { right: 0; }
  .nav-links a { font-size: 1rem; padding: 0.875rem 0; border-bottom: 1px solid var(--border); width: 100%; color: var(--ink); }
  .btn-nav { margin-top: 1.25rem !important; width: 100%; text-align: center; padding: 0.875rem 1.5rem !important; font-size: 0.85rem !important; }

  /* Hero */
  .hero { grid-template-columns: 1fr; padding-top: 5.5rem; text-align: center; gap: 2.5rem; }
  .hero-eyebrow { justify-content: center; }
  .hero-sub     { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .hero-visual  { order: -1; }
  .memorial-card-preview { max-width: 360px; }

  .examples-grid     { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .pricing-grid      { grid-template-columns: 1fr; max-width: 380px; margin-inline: auto; }
  .price-card.featured { transform: none; }
  .price-card.featured:hover { transform: translateY(-2px); }

  footer { flex-direction: column; align-items: center; text-align: center; }
  .footer-links { justify-content: center; }
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE — 480px móvil pequeño
══════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .hero { padding-top: 5rem; }

  .trust-bar { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; justify-items: start; }

  .steps-grid { grid-template-columns: 1fr; }
  .step { border-right: none !important; }
  .step + .step { border-top: 1px solid var(--border); }
  .step:nth-child(3),
  .step:nth-child(4) { border-right: none !important; }

  .memorial-card-preview { max-width: 100%; }
  .card-header { height: 130px; }

  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn-primary  { text-align: center; }
  .btn-secondary { justify-content: center; }
  .cta-actions  { flex-direction: column; align-items: stretch; }
  .btn-cta-primary,
  .btn-cta-ghost { text-align: center; }
}
