@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

@font-face {
  font-family: 'Atelier Fleur Script';
  src: url('fonts/atelier-fleur-script-regular-webfont.woff2') format('woff2'),
       url('fonts/atelier-fleur-script-regular-webfont.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: block;
}

@font-face {
  font-family: 'Atelier Fleur Script';
  src: url('fonts/atelier-fleur-script-bold-webfont.woff2') format('woff2'),
       url('fonts/atelier-fleur-script-bold-webfont.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --olive: #4B5136;
  --sage: #8A8C63;
  --terracotta: #B27449;
  --cream: #EDE2CC;
  --moss: #3B4228;
  --arena: #D9C8A9;
  --dorado: #C69A62;
  --papel: #F4ECDC;
  --background: #F2EDE4;
  --foreground: #3B4228;
  --card: #EDE8DD;
  --muted: #E5DFD4;
  --muted-fg: #6B6951;
  --accent: #B27449;
  --accent-fg: #F2EDE4;
  --border: #D6CFBE;
  --primary: #4B5136;
  --primary-fg: #EDE2CC;
  --secondary: #D9C8A9;
  --font-display: 'Playfair Display', serif;
  --font-body: 'Lora', serif;
  --font-script: 'Atelier Fleur Script', cursive;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: var(--font-body); background: var(--background); color: var(--foreground); -webkit-font-smoothing: antialiased; line-height: 1.6; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-display); line-height: 1.2; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ── Utility ── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
.text-center { text-align: center; }
.text-balance { text-wrap: balance; }
.uppercase { text-transform: uppercase; }
.tracking-wide { letter-spacing: 0.25em; }
.tracking-wider { letter-spacing: 0.1em; }

/* ── Header ── */
.header { position: fixed; top: 0; left: 0; right: 0; z-index: 50; background: rgba(242,237,228,0.9); backdrop-filter: blur(8px); border-bottom: 1px solid rgba(214,207,190,0.5); }
.header-inner { max-width: 1280px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; padding: 1.5rem 1.5rem; }
.logo { font-family: var(--font-display); font-size: 1.25rem; letter-spacing: 0.05em; text-transform: uppercase; color: var(--primary); display: flex; align-items: center; gap: 0.6rem; }
.logo-img { height: 3rem; width: auto; display: block; }
.nav-desktop { display: none; align-items: center; gap: 2rem; }
.nav-desktop a { font-size: 0.875rem; letter-spacing: 0.05em; color: rgba(59,66,40,0.7); transition: color 0.2s; }
.nav-desktop a:hover, .nav-desktop a.active { color: var(--primary); font-weight: 500; }
.nav-dropdown { position: relative; }
.dropdown-menu { display: none; position: absolute; top: 100%; left: 50%; transform: translateX(-50%); background: var(--primary); min-width: 160px; flex-direction: column; z-index: 100; padding: 0.75rem 0 0.35rem; }
.nav-dropdown:hover .dropdown-menu { display: flex; }
.dropdown-item { font-size: 0.8rem; letter-spacing: 0.08em; color: var(--primary-fg) !important; padding: 0.6rem 1.25rem; transition: background 0.15s; white-space: nowrap; font-weight: 400; }
.dropdown-item:hover { background: rgba(255,255,255,0.12); color: var(--primary-fg) !important; }
.nav-sub-link { font-size: 0.8rem; color: rgba(59,66,40,0.55) !important; padding-left: 1rem; letter-spacing: 0.05em; }
.btn-primary { display: inline-flex; align-items: center; background: var(--primary); color: var(--primary-fg); padding: 0.625rem 1.5rem; font-size: 0.875rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; transition: background 0.2s; border: none; cursor: pointer; }
.btn-primary:hover { background: rgba(75,81,54,0.9); }
.btn-whatsapp { display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem; width: 100%; margin-top: 0.75rem; background: #25D366; color: #fff; padding: 0.75rem 1.5rem; font-size: 0.875rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none; border: none; cursor: pointer; transition: background 0.2s, transform 0.15s; }
.btn-whatsapp:hover { background: #1dba5a; transform: translateY(-1px); }
.btn-outline { display: inline-block; text-align: center; border: 1px solid var(--primary); color: var(--primary); padding: 0.75rem 1.5rem; font-size: 0.875rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; transition: all 0.2s; }
.btn-outline:hover { background: var(--primary); color: var(--primary-fg); }
.btn-cream { background: var(--cream); color: var(--moss); }
.btn-cream:hover { background: var(--primary); color: var(--primary-fg); }
.header-cta { display: none; }
.mobile-toggle { display: block; background: none; border: none; color: var(--foreground); padding: 0.5rem; cursor: pointer; }
.mobile-menu { display: none; background: var(--background); border-top: 1px solid rgba(214,207,190,0.5); padding: 2rem 1.5rem; }
.mobile-menu.open { display: block; }
.mobile-menu nav { display: flex; flex-direction: column; gap: 1.5rem; }
.mobile-menu a { font-size: 1rem; letter-spacing: 0.05em; color: rgba(59,66,40,0.7); }
.mobile-menu a:hover { color: var(--primary); }
.mobile-menu .btn-primary { justify-content: center; margin-top: 0.5rem; padding: 0.75rem 1.5rem; }

@media (min-width: 1024px) {
  .nav-desktop { display: flex; }
  .header-cta { display: block; }
  .mobile-toggle { display: none; }
}

/* ── Hero ── */
.hero { position: relative; min-height: 100vh; display: flex; align-items: flex-end; }
.hero-img { position: absolute; inset: 0; }
.hero-img img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.3); }
.hero-content { position: relative; z-index: 10; width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 1.5rem 5rem; }
.hero-content .tag { color: rgba(237,226,204,0.7); font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.3em; margin-bottom: 1rem; }
.hero-content h1 { font-family: var(--font-display); font-size: clamp(2.5rem, 6vw, 4.5rem); color: var(--cream); line-height: 1.1; max-width: 48rem; margin-bottom: 1.5rem; }
.hero-content h2 { font-family: var(--font-display); font-size: clamp(2.5rem, 6vw, 4.5rem); color: var(--cream); line-height: 1.1; max-width: 48rem; margin-bottom: 1.5rem; }
.hero-content .desc { color: rgba(237,226,204,0.8); font-size: 1.125rem; max-width: 32rem; margin-bottom: 2rem; line-height: 1.7; }

/* ── Sections ── */
.section { padding: 6rem 1.5rem; }
.section-sm { padding: 5rem 1.5rem; }
.bg-secondary { background: var(--secondary); }
.bg-cream { background: var(--cream); }
.bg-arena { background: var(--arena); }
.bg-sage-light { background: rgba(138,140,99,0.13); }
.bg-primary { background: var(--primary); color: var(--primary-fg); }

/* ── Tipografía script ── */
.script { font-family: var(--font-script); font-size: 1.5em; font-weight: 400; letter-spacing: 0.01em; text-transform: none; line-height: 1.1; }

/* ── Elementos decorativos SVG ── */
.deco-divider { display: block; width: 100%; max-width: 260px; margin: 2.5rem auto; opacity: 0.55; }
.deco-divider-sm { display: block; max-width: 160px; margin: 1.75rem auto; opacity: 0.5; }
.deco-leaves { height: 1.1em; width: auto; display: inline-block; vertical-align: middle; margin: 0 0.45rem; opacity: 0.7; position: relative; top: -0.05em; }
.deco-ring { height: 1.4em; width: auto; display: inline-block; vertical-align: middle; margin: 0 0.5rem; opacity: 0.65; }
.deco-leaf { height: 0.9em; width: auto; display: inline-block; vertical-align: middle; margin-right: 0.4rem; opacity: 0.65; position: relative; top: -0.05em; }

.tag-label { color: var(--sage); font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.25em; margin-bottom: 1rem; }
.section-title { font-size: clamp(1.875rem, 4vw, 3rem); color: var(--foreground); margin-bottom: 1rem; }
.section-subtitle { color: var(--muted-fg); max-width: 32rem; margin: 0 auto; }
.text-muted { color: var(--muted-fg); }
.text-accent { color: var(--accent); font-weight: 500; font-size: 0.875rem; letter-spacing: 0.1em; text-transform: uppercase; transition: color 0.2s; }
.text-accent:hover { color: rgba(178,116,73,0.8); }

/* ── Grid layouts ── */
.grid-2 { display: grid; gap: 4rem; align-items: center; }
.grid-3 { display: grid; gap: 1.5rem; }
.grid-cards { display: grid; gap: 3rem; }
@media (min-width: 768px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-cards { grid-template-columns: repeat(2, 1fr); }
}

.img-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.img-grid img { width: 100%; height: 20rem; object-fit: cover; }
.img-grid img:last-child { margin-top: 2rem; }

/* ── Gallery card ── */
.gallery-card { cursor: pointer; }
.gallery-card .img-wrap { overflow: hidden; margin-bottom: 1rem; }
.gallery-card img { width: 100%; height: 18rem; object-fit: cover; transition: transform 0.7s; }
.gallery-card:hover img { transform: scale(1.05); }
.gallery-card h3 { font-family: var(--font-script); font-size: 1.8rem; color: var(--foreground); font-weight: 400; line-height: 1; margin-bottom: 0.5rem; }
.historia-info h2 { font-family: var(--font-script); font-size: 2.6rem; color: var(--foreground); font-weight: 400; line-height: 1; margin-bottom: 0.5rem; }
/* Wrapper inline-block para fuentes script: contiene descenders y swashes en el box declarado */
.script-wrap { display: inline-block; padding: 0.1em 0.3em 0.45em 0.4em; }
.gallery-card .sub { font-size: 0.875rem; color: var(--muted-fg); margin-top: 0.25rem; }
@media (min-width: 768px) { .gallery-card img { height: 24rem; } }

/* ── Story card ── */
.story-card { cursor: pointer; }
.story-card .img-wrap { overflow: hidden; margin-bottom: 1.5rem; }
.story-card img { width: 100%; height: 18rem; object-fit: cover; transition: transform 0.7s; }
.story-card:hover img { transform: scale(1.05); }
.story-card .meta { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.5rem; }
.story-card h2 { font-family: var(--font-display); font-size: 1.25rem; color: var(--foreground); }
.story-card .location { font-size: 0.75rem; color: var(--muted-fg); text-transform: uppercase; letter-spacing: 0.1em; }
.story-card p { font-size: 0.875rem; color: var(--muted-fg); line-height: 1.6; }
@media (min-width: 768px) { .story-card img { height: 24rem; } }

/* ── Testimonial ── */
.testimonial { text-align: center; max-width: 48rem; margin: 0 auto; }
.stars { display: flex; justify-content: center; gap: 0.25rem; margin-bottom: 2rem; }
.stars svg { width: 1rem; height: 1rem; fill: var(--terracotta); }
blockquote { font-family: var(--font-display); font-size: clamp(1.25rem, 3vw, 1.875rem); color: var(--foreground); line-height: 1.5; font-style: italic; margin-bottom: 2rem; }
.testimonial .author { font-size: 0.875rem; color: var(--muted-fg); text-transform: uppercase; letter-spacing: 0.15em; }

/* ── CTA ── */
.cta-section { padding: 6rem 1.5rem; text-align: center; }
.cta-section h2 { font-family: var(--font-display); font-size: clamp(1.875rem, 4vw, 2.5rem); color: var(--foreground); margin-bottom: 1rem; }
.cta-section p { color: var(--muted-fg); margin-bottom: 2rem; }
.cta-wa-link { display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 1rem; font-size: 0.875rem; color: var(--muted-fg); text-decoration: none; opacity: 0.8; transition: opacity 0.2s; }
.cta-wa-link:hover { opacity: 1; color: var(--foreground); }
.cta-wa-link svg { flex-shrink: 0; }

/* ── Sobre mí hero ── */
.sobre-hero { background: var(--primary); overflow: hidden; padding-bottom: 0; }
.sobre-hero-top { max-width: 1280px; margin: 0 auto; padding: 2.5rem 1.5rem 0; display: grid; grid-template-columns: 1fr; align-items: center; gap: 2rem; }
@media (min-width: 768px) { .sobre-hero-top { grid-template-columns: 1fr 1fr; padding: 2.5rem 3rem 0; gap: 1rem; } }
.sobre-hero-title-wrap { display: flex; flex-direction: column; justify-content: center; text-align: right; }
.sobre-hero-title { font-family: var(--font-display); font-size: clamp(3.5rem, 9vw, 7.5rem); color: var(--cream); line-height: 0.9; letter-spacing: -0.02em; }
.sobre-hero-sub { font-family: var(--font-display); font-size: clamp(1rem, 2.2vw, 1.6rem); color: rgba(237,226,204,0.6); line-height: 1.2; margin-top: 0.75rem; font-style: italic; white-space: nowrap; }
.sobre-hero-img-wrap { display: flex; align-items: flex-end; justify-content: center; }
.sobre-hero-img { display: block; max-height: 75vh; width: auto; max-width: 100%; object-fit: contain; object-position: bottom; }
.sobre-hero-copy { max-width: 860px; margin: 0 auto; padding: 1.5rem 1.5rem 2rem; }
.sobre-hero-copy p { font-size: 0.95rem; color: rgba(237,226,204,0.75); line-height: 1.75; margin-bottom: 1.25rem; }
@media (min-width: 768px) { .sobre-hero-copy { padding: 2rem 3rem 2.5rem; } }
.scroll-hint { text-align: center; padding: 0 0 2.5rem; color: rgba(237,226,204,0.4); animation: scrollBounce 1.8s ease-in-out infinite; transition: opacity 0.4s ease; }
.scroll-hint.hidden { opacity: 0; pointer-events: none; }
@keyframes scrollBounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(8px); } }
/* Parallax shared */
.parallax-bg { position: absolute; top: -25%; left: 0; right: 0; bottom: -25%; background-size: cover; background-position: center; will-change: transform; }
.parallax-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(30,35,20,0.25) 0%, rgba(30,35,20,0.6) 100%); }
.parallax-overlay--dark { background: rgba(20,25,15,0.55); }

/* Cinematic clip container */
.sobre-cinematic-clip { position: relative; height: 75vh; overflow: hidden; }

/* Quote parallax section */
.parallax-section-quote { position: relative; height: 70vh; display: flex; align-items: center; justify-content: center; }
.parallax-section-quote .sobre-cinematic-clip { position: absolute; inset: 0; height: 100%; }
.parallax-quote-text { position: relative; z-index: 2; text-align: center; padding: 2rem; }
.parallax-quote-text blockquote { font-family: var(--font-display); font-size: clamp(2rem, 5vw, 4rem); color: white; font-style: italic; font-weight: 400; line-height: 1.2; margin: 0; text-shadow: 0 2px 20px rgba(0,0,0,0.4); }

/* Prose sections */
.sobre-prose-section { padding: 5rem 1.5rem; }
.sobre-prose-inner { max-width: 42rem; margin: 0 auto; }
.sobre-prose-inner p { font-size: 1.05rem; color: var(--muted-fg); line-height: 1.85; margin-bottom: 1.3rem; }
.sobre-cierre { font-family: var(--font-display); font-size: 1.15rem; color: var(--foreground) !important; font-style: italic; margin-top: 2rem; }

/* Reveal animations */
.reveal-up { opacity: 0; transform: translateY(36px); transition: opacity 0.85s ease, transform 0.85s ease; }
.reveal-up.visible { opacity: 1; transform: translateY(0); }

/* ── Sobre mí ── */
.about-portrait { width: 100%; max-width: 28rem; margin: 0 auto; object-fit: cover; }
.values-grid { display: grid; gap: 3rem; }
@media (min-width: 768px) { .values-grid { grid-template-columns: repeat(3, 1fr); } }
.value-card { text-align: center; }
.value-icon { width: 4rem; height: 4rem; border-radius: 50%; background: var(--cream); margin: 0 auto 1.5rem; display: flex; align-items: center; justify-content: center; }
.value-icon svg { width: 1.75rem; height: 1.75rem; color: var(--olive); }
.value-card h3 { font-family: var(--font-display); font-size: 1.25rem; color: var(--foreground); margin-bottom: 0.75rem; }
.value-card p { font-size: 0.875rem; color: var(--muted-fg); line-height: 1.6; }

.process-step { display: flex; gap: 1rem; }
.process-num { font-size: 1.875rem; font-family: var(--font-display); color: rgba(178,116,73,0.4); }
.process-step h3 { font-family: var(--font-display); font-size: 1.125rem; color: var(--foreground); margin-bottom: 0.25rem; }
.process-step p { font-size: 0.875rem; color: var(--muted-fg); }
.process-img { width: 100%; height: 31rem; object-fit: cover; }

/* ── Precios ── */
.pack-card { padding: 2rem 2.5rem; border: 1px solid var(--border); background: var(--card); transition: all 0.2s; display: flex; flex-direction: column; }
.pack-card.highlight { border-color: var(--accent); background: rgba(237,226,204,0.3); position: relative; }
.pack-badge { position: absolute; top: -0.75rem; left: 2rem; background: var(--accent); color: var(--accent-fg); font-size: 0.75rem; padding: 0.25rem 1rem; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 500; }
.pack-card h2 { font-family: var(--font-script); font-size: 2.4rem; color: var(--foreground); margin-bottom: 0.25rem; text-transform: none; letter-spacing: 0.01em; font-weight: 400; line-height: 1.6; padding: 0 0.2em 0 0.3em; }
.pack-card .pack-desc { font-size: 0.875rem; color: var(--muted-fg); margin-bottom: 1rem; }
.pack-price { font-size: 1.5rem; font-family: var(--font-display); color: var(--terracotta); margin-bottom: 2rem; }
.pack-features { margin-bottom: 1.5rem; flex: 1; }
.pack-features li { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.875rem; color: rgba(59,66,40,0.8); margin-bottom: 0.75rem; }
.pack-features svg { width: 1rem; height: 1rem; color: var(--sage); flex-shrink: 0; margin-top: 0.125rem; }
.pack-cta { display: block; width: 100%; text-align: center; margin-top: auto; }
.deco-leaf-diag { transform: rotate(-20deg); transform-origin: center; }

.prices-block { margin-bottom: 3rem; }
.prices-block-header { margin-bottom: 2.5rem; }
.prices-block-header .section-title { margin-top: 0.25rem; }
.prices-divider { border: none; border-top: 1px solid var(--border); margin: 4rem 0; }

/* ── Nuevo diseño de packs ── */
.boda-packs-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; align-items: start; margin-bottom: 3rem; }
@media (min-width: 768px) { .boda-packs-grid { grid-template-columns: repeat(3, 1fr); align-items: stretch; } }

.boda-pack-card { background: var(--card); border: 1px solid var(--border); padding: 1.75rem 1.5rem 2rem; display: flex; flex-direction: column; text-align: center; position: relative; }
.boda-pack-highlight { background: var(--primary); border-color: var(--primary); }

.boda-pack-rec { font-family: var(--font-display); font-size: 0.85rem; font-style: italic; color: rgba(237,226,204,0.8); margin-bottom: 1rem; display: block; }

.boda-pack-img { width: 100%; aspect-ratio: 3/4; max-height: 18rem; overflow: hidden; border-radius: 2rem; margin-bottom: 1.5rem; }
.boda-pack-img img { width: 100%; height: 100%; object-fit: cover; }

.boda-pack-name { font-family: var(--font-display); font-size: 2rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--foreground); margin-bottom: 0.5rem; }
.boda-pack-highlight .boda-pack-name { color: var(--cream); }

.boda-pack-tagline { font-size: 0.875rem; color: var(--muted-fg); line-height: 1.55; margin-bottom: 1.5rem; }
.boda-pack-highlight .boda-pack-tagline { color: rgba(237,226,204,0.7); }

.boda-pack-features { list-style: none; margin-bottom: 2rem; flex: 1; }
.boda-pack-features li { font-size: 0.875rem; color: var(--muted-fg); margin-bottom: 0.6rem; line-height: 1.45; }
.boda-pack-highlight .boda-pack-features li { color: rgba(237,226,204,0.85); }

.boda-pack-price-wrap { display: inline-flex; flex-direction: column; align-items: center; gap: 0.2rem; border: 2px solid var(--foreground); border-radius: 9999px; padding: 0.55rem 2rem; margin-top: auto; text-decoration: none; transition: background 0.2s, color 0.2s; }
.boda-pack-price-wrap:hover { background: var(--foreground); }
.boda-pack-highlight .boda-pack-price-wrap { border-color: var(--cream); }
.boda-pack-highlight .boda-pack-price-wrap:hover { background: var(--cream); }
.boda-pack-price { font-family: var(--font-display); font-size: 1.5rem; color: var(--foreground); line-height: 1; }
.boda-pack-price-wrap:hover .boda-pack-price { color: var(--cream); }
.boda-pack-highlight .boda-pack-price { color: var(--cream); }
.boda-pack-highlight .boda-pack-price-wrap:hover .boda-pack-price { color: var(--foreground); }
.boda-pack-iva { font-size: 0.7rem; color: var(--muted-fg); letter-spacing: 0.05em; }
.boda-pack-highlight .boda-pack-iva { color: rgba(237,226,204,0.55); }

/* Todos los packs incluyen */
.packs-includes { display: flex; flex-wrap: wrap; align-items: center; gap: 0.4rem 2.5rem; background: rgba(217,200,169,0.22); border-top: 1px solid var(--border); padding: 1.1rem 2.5rem; margin-top: 0.25rem; margin-bottom: 0; }
.packs-includes-title { font-family: var(--font-display); font-size: 0.75rem; font-weight: 700; color: var(--foreground); text-transform: uppercase; letter-spacing: 0.1em; white-space: nowrap; flex-shrink: 0; }
.packs-includes-list { display: flex; flex-wrap: wrap; gap: 0.15rem 2rem; }
.packs-includes-list p { font-size: 0.8rem; color: var(--muted-fg); line-height: 1.4; margin-bottom: 0; }
.packs-includes-list p:last-child { margin-bottom: 0; }

/* Extras */
.extras-section { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 3rem; }
.extra-item { display: grid; grid-template-columns: 1fr; gap: 1rem; border: 1px solid var(--border); padding: 1.75rem 2rem; align-items: center; }
@media (min-width: 768px) { .extra-item { grid-template-columns: 220px 1fr auto; gap: 2rem; } }
.extra-name { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--foreground); text-transform: uppercase; letter-spacing: 0.04em; line-height: 1.35; }
.extra-name-note { font-size: 0.75rem; font-weight: 400; text-transform: none; letter-spacing: 0; color: var(--muted-fg); display: block; margin-top: 0.25rem; }
.extra-desc p { font-size: 0.875rem; color: var(--muted-fg); line-height: 1.55; margin-bottom: 0.25rem; }
.extra-price-btn { display: inline-flex; flex-direction: column; align-items: center; gap: 0.15rem; border: 2px solid var(--border); border-radius: 9999px; padding: 0.6rem 1.75rem; text-decoration: none; min-width: 100px; transition: border-color 0.2s; justify-self: start; }
@media (min-width: 768px) { .extra-price-btn { justify-self: end; } }
.extra-price-btn:hover { border-color: var(--accent); }
.extra-price-btn strong { font-family: var(--font-display); font-size: 1.35rem; color: var(--foreground); line-height: 1; }
.extra-price-btn small { font-size: 0.7rem; color: var(--muted-fg); }

/* Frase cierre packs */
.packs-closing { text-align: center; font-family: var(--font-display); font-size: 1.2rem; color: var(--muted-fg); line-height: 1.6; max-width: 500px; margin: 0 auto 1rem; }

.faq-item { margin-bottom: 0; border-bottom: 1px solid var(--border); }
.faq-item:first-of-type { border-top: 1px solid var(--border); }
.faq-item h3 { font-family: var(--font-display); font-size: 1.125rem; color: var(--foreground); margin-bottom: 0.5rem; }
.faq-item p { font-size: 0.875rem; color: var(--muted-fg); line-height: 1.6; }
.faq-accordion .faq-btn { width: 100%; background: none; border: none; padding: 1.1rem 0; display: flex; align-items: center; justify-content: space-between; gap: 1rem; cursor: pointer; text-align: left; font-family: var(--font-display); font-size: 1rem; color: var(--foreground); font-weight: 500; }
.faq-accordion .faq-btn span { display: flex; align-items: center; gap: 0.5rem; }
.faq-accordion .faq-btn .deco-leaf { flex-shrink: 0; height: 0.75em; }
.faq-accordion .faq-chevron { flex-shrink: 0; transition: transform 0.3s ease; color: var(--olive); }
.faq-accordion.open .faq-chevron { transform: rotate(180deg); }
.faq-accordion .faq-body { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-accordion.open .faq-body { max-height: 500px; }
.faq-accordion .faq-body p { font-size: 0.875rem; color: var(--muted-fg); line-height: 1.7; margin-bottom: 0.6rem; padding-bottom: 0.1rem; }

/* ── Contacto ── */
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.15em; color: var(--muted-fg); margin-bottom: 0.5rem; }
.form-group input, .form-group textarea, .form-group select { width: 100%; border: 1px solid var(--border); background: var(--background); padding: 0.75rem 1rem; font-size: 0.875rem; font-family: var(--font-body); color: var(--foreground); transition: border-color 0.2s; outline: none; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--sage); }
.form-group textarea { resize: none; }
.form-group select { appearance: none; -webkit-appearance: none; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236B6951' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; background-size: 1rem; padding-right: 2.75rem; }
.pareja-card { display: flex; align-items: center; justify-content: space-between; gap: 2rem; padding: 1.75rem 2.5rem; border: 1px solid var(--border); background: var(--card); text-decoration: none; transition: border-color 0.2s; margin-bottom: 2.5rem; }
.pareja-card:hover { border-color: var(--sage); }
.pareja-card-arrow { font-size: 1.25rem; color: var(--sage); flex-shrink: 0; }
.form-row { display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .form-row { grid-template-columns: 1fr 1fr; } }
.contact-info h3 { font-family: var(--font-display); color: var(--foreground); margin-bottom: 0.25rem; }
.contact-info a { color: var(--accent); font-size: 0.875rem; transition: color 0.2s; }
.contact-info a:hover { color: rgba(178,116,73,0.8); }
.agenda-box { margin-top: 3rem; padding: 1.5rem; background: rgba(237,226,204,0.5); border: 1px solid var(--border); }
.agenda-box .label { font-size: 0.875rem; font-family: var(--font-display); color: var(--foreground); margin-bottom: 0.25rem; }
.agenda-box p { font-size: 0.75rem; color: var(--muted-fg); }
.success-msg { height: 100%; display: flex; align-items: center; justify-content: center; text-align: center; padding: 3rem; background: rgba(237,226,204,0.3); border: 1px solid var(--border); }
.success-icon { width: 4rem; height: 4rem; border-radius: 50%; background: rgba(138,140,99,0.2); margin: 0 auto 1.5rem; display: flex; align-items: center; justify-content: center; }
.success-icon svg { width: 2rem; height: 2rem; color: var(--sage); }

/* ── Blog ── */
.blog-card { cursor: pointer; }
.blog-card .img-wrap { overflow: hidden; margin-bottom: 1.5rem; }
.blog-card img { width: 100%; height: 16rem; object-fit: cover; transition: transform 0.7s; }
.blog-card:hover img { transform: scale(1.05); }
.blog-card time { font-size: 0.75rem; color: var(--muted-fg); text-transform: uppercase; letter-spacing: 0.1em; }
.blog-card h2 { font-family: var(--font-display); font-size: 1.25rem; color: var(--foreground); margin: 0.5rem 0 0.75rem; line-height: 1.3; transition: color 0.2s; }
.blog-card:hover h2 { color: var(--accent); }
.blog-card p { font-size: 0.875rem; color: var(--muted-fg); line-height: 1.6; }

/* ── Polaroid cards ── */
.polaroid-grid { gap: 3rem; align-items: start; }
.polaroid-card { background: #fff; padding: 10px 10px 52px; box-shadow: 3px 5px 28px rgba(0,0,0,0.13); cursor: pointer; display: block; text-decoration: none; transition: box-shadow 0.35s ease; }
.polaroid-card:nth-child(1) { transform: rotate(-1.4deg); }
.polaroid-card:nth-child(2) { transform: rotate(0.9deg); }
.polaroid-card:nth-child(3) { transform: rotate(-0.6deg); }
.polaroid-card:hover { transform: rotate(0deg) scale(1.02) !important; box-shadow: 6px 10px 40px rgba(0,0,0,0.18); }
.polaroid-photo { overflow: hidden; }
.polaroid-photo img { width: 100%; aspect-ratio: 3/4; object-fit: cover; display: block; transition: transform 0.6s ease; }
.polaroid-card:hover .polaroid-photo img { transform: scale(1.04); }
.polaroid-caption { display: flex; justify-content: space-between; align-items: flex-end; padding: 12px 4px 0; gap: 0.75rem; }
.polaroid-title { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--foreground); line-height: 1.45; flex: 1; font-family: var(--font-body); }
.polaroid-arrow { font-size: 1.1rem; color: var(--foreground); flex-shrink: 0; line-height: 1; transition: transform 0.25s; }
.polaroid-card:hover .polaroid-arrow { transform: translateX(4px); }

/* ── Scroll reveal ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s cubic-bezier(.4,0,.2,1), transform 0.7s cubic-bezier(.4,0,.2,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.masonry-grid img.reveal { transform: translateY(16px); }
.reveal-left { opacity: 0; transform: translateX(-48px); transition: opacity 0.85s cubic-bezier(.4,0,.2,1), transform 0.85s cubic-bezier(.4,0,.2,1); }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ── Estrellas animadas ── */
.stars svg { opacity: 0; transform: scale(0) rotate(-25deg); transition: opacity 0.3s ease, transform 0.4s cubic-bezier(.34,1.56,.64,1); }
.stars.animate svg:nth-child(1) { opacity: 1; transform: scale(1) rotate(0); transition-delay: 0s; }
.stars.animate svg:nth-child(2) { opacity: 1; transform: scale(1) rotate(0); transition-delay: 0.12s; }
.stars.animate svg:nth-child(3) { opacity: 1; transform: scale(1) rotate(0); transition-delay: 0.24s; }
.stars.animate svg:nth-child(4) { opacity: 1; transform: scale(1) rotate(0); transition-delay: 0.36s; }
.stars.animate svg:nth-child(5) { opacity: 1; transform: scale(1) rotate(0); transition-delay: 0.48s; }

/* ── Typewriter cursor ── */
.tw-cursor { display: inline-block; width: 2px; height: 1em; background: currentColor; vertical-align: text-bottom; margin-left: 1px; animation: tw-blink 0.65s step-end infinite; }
@keyframes tw-blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

/* ── Footer ── */
.footer { background: var(--primary); color: var(--primary-fg); }
.footer-top { max-width: 1280px; margin: 0 auto; padding: 5rem 1.5rem 4rem; display: grid; gap: 3rem; align-items: center; }
@media (min-width: 768px) { .footer-top { grid-template-columns: 1fr auto 1fr; gap: 4rem; } }
.footer-col-side { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-col-side p { font-family: var(--font-display); font-size: 0.95rem; font-style: italic; color: rgba(237,226,204,0.7); line-height: 1.7; }
.footer-col-side a { font-size: 0.875rem; color: rgba(237,226,204,0.65); transition: color 0.2s; }
.footer-col-side a:hover { color: var(--primary-fg); }
.footer-col-center { display: flex; flex-direction: column; align-items: center; gap: 0.75rem; text-align: center; }
.footer-logo-img { height: 5rem; width: auto; display: block; }
.footer-brand { font-family: var(--font-display); font-size: 1.1rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--primary-fg); }
.footer-location { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.2em; color: rgba(237,226,204,0.45); }
.footer-nav { max-width: 1280px; margin: 0 auto; padding: 2rem 1.5rem; border-top: 1px solid rgba(237,226,204,0.12); display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 0.5rem 0; }
.footer-nav a { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(237,226,204,0.6); transition: color 0.2s; padding: 0 0.75rem; }
.footer-nav a:hover { color: var(--primary-fg); }
.footer-sep { color: rgba(237,226,204,0.25); font-size: 0.8rem; }
.footer-bottom { max-width: 1280px; margin: 0 auto; padding: 1.5rem 1.5rem 2.5rem; text-align: center; }
.footer-bottom p { font-size: 0.7rem; color: rgba(237,226,204,0.3); letter-spacing: 0.1em; text-transform: uppercase; }

/* ── Checkout / Reservar sesión ── */
.checkout-header { display: flex; align-items: center; justify-content: space-between; padding: 1rem 2.5rem; border-bottom: 1px solid var(--border); background: var(--background); }
.checkout-header-logo { display: flex; align-items: center; gap: 0.5rem; text-decoration: none; color: var(--foreground); font-family: var(--font-display); font-size: 0.9rem; font-weight: 500; }
.checkout-header-logo img { height: 2rem; }
.checkout-header-title { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--muted-fg); }
.checkout-header-back { font-size: 0.8rem; color: var(--muted-fg); text-decoration: underline; transition: color 0.2s; }
.checkout-header-back:hover { color: var(--foreground); }
.checkout-layout { display: grid; grid-template-columns: 1fr 1fr; min-height: calc(100vh - 65px); }
.checkout-cart-col { padding: 3.5rem 3rem 3rem max(3rem, 6vw); border-right: 1px solid var(--border); }
.checkout-summary-col { padding: 3.5rem max(3rem, 6vw) 3rem 3rem; background: #f5f2ea; }
.checkout-col-title { font-family: var(--font-display); font-size: 1rem; font-weight: 600; color: var(--foreground); margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 1px solid var(--border); }
.checkout-item { display: flex; align-items: center; gap: 1rem; padding: 1.25rem 0; border-bottom: 1px solid var(--border); }
.checkout-item-img { width: 72px; height: 72px; object-fit: cover; flex-shrink: 0; }
.checkout-item-info { flex: 1; }
.checkout-item-name { font-family: var(--font-display); font-size: 0.9rem; font-weight: 600; color: var(--foreground); text-transform: uppercase; letter-spacing: 0.06em; }
.checkout-item-desc { font-size: 0.8rem; color: var(--muted-fg); margin-top: 0.2rem; }
.checkout-item-price { font-family: var(--font-display); font-size: 0.95rem; font-weight: 600; color: var(--foreground); white-space: nowrap; }
.checkout-summary-row { display: flex; justify-content: space-between; align-items: center; padding: 0.6rem 0; font-size: 0.875rem; color: var(--muted-fg); }
.checkout-summary-row.total { padding-top: 1rem; margin-top: 0.5rem; border-top: 1px solid var(--border); font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--foreground); }
.checkout-summary-total-amount { font-size: 1.1rem; }
.paypal-container { margin-top: 1.5rem; }
.checkout-alt-note { margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid var(--border); text-align: center; font-size: 0.8rem; color: var(--muted-fg); line-height: 1.6; }
.checkout-alt-note a { color: var(--olive); text-decoration: underline; }
@media (max-width: 768px) {
  .checkout-layout { grid-template-columns: 1fr; }
  .checkout-cart-col { padding: 2rem 1.5rem; border-right: none; border-bottom: 1px solid var(--border); }
  .checkout-summary-col { padding: 2rem 1.5rem; }
}

/* Legal pages */
.legal-content h2 { font-family: var(--font-display); font-size: 1.05rem; font-weight: 600; color: var(--foreground); margin: 2.5rem 0 0.75rem; text-transform: uppercase; letter-spacing: 0.06em; }
.legal-content p { color: var(--muted-fg); line-height: 1.8; margin-bottom: 1rem; font-size: 0.95rem; }
.legal-content ul { color: var(--muted-fg); line-height: 1.8; font-size: 0.95rem; padding-left: 1.25rem; margin-bottom: 1rem; }
.legal-content ul li { margin-bottom: 0.35rem; }
.legal-content a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.legal-content strong { color: var(--foreground); font-weight: 600; }
.legal-date { margin-top: 3rem; font-size: 0.8rem; color: var(--muted-fg); opacity: 0.7; }
.cookies-table { width: 100%; border-collapse: collapse; font-size: 0.875rem; margin: 1.25rem 0 1.5rem; }
.cookies-table th { background: var(--secondary); color: var(--foreground); font-weight: 600; text-align: left; padding: 0.6rem 0.875rem; border: 1px solid var(--border); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.05em; }
.cookies-table td { padding: 0.6rem 0.875rem; border: 1px solid var(--border); color: var(--muted-fg); vertical-align: top; }

/* ── Historias grid ── */
.historias-grid { display: grid; gap: 3rem; }
@media (min-width: 768px) { .historias-grid { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.historia-card { display: block; cursor: pointer; text-decoration: none; }
.historia-img-wrap { overflow: hidden; margin-bottom: 1.5rem; }
.historia-img-wrap img { width: 100%; aspect-ratio: 16/9; object-fit: cover; transition: transform 0.8s ease; display: block; }
.historia-card:hover .historia-img-wrap img { transform: scale(1.03); }
.historia-card-full { grid-column: 1 / -1; margin-top: 1rem; }
.historia-card-full .historia-img-wrap img { height: 28rem; }
.historia-info h2 img.deco-ring { height: 1.5rem; opacity: 0.55; vertical-align: middle; position: relative; top: -0.1em; }
.historia-info p { font-size: 0.9rem; color: var(--muted-fg); line-height: 1.65; margin-bottom: 1.25rem; }

/* ── Session story GIF hero ── */
.session-gif-hero { position: relative; height: 92vh; min-height: 480px; overflow: hidden; }
.session-gif-hero img.gif-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.session-gif-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(10,15,8,0.55) 0%, rgba(10,15,8,0.25) 50%, rgba(10,15,8,0.5) 100%); }
.session-gif-hero-content { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 2rem; z-index: 2; }
.session-gif-hero-content .gif-back-link { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-bottom: 1.5rem; text-decoration: none; transition: color 0.2s; }
.session-gif-hero-content .gif-back-link:hover { color: rgba(255,255,255,0.9); }
.session-gif-hero-content h1 { font-family: var(--font-script); font-size: clamp(4.5rem, 11vw, 9rem); color: white; font-weight: 400; line-height: 1.05; margin: 0; text-shadow: 0 2px 40px rgba(0,0,0,0.45); }
.session-gif-hero-content .gif-hero-sub { font-size: 0.75rem; letter-spacing: 0.25em; text-transform: uppercase; color: rgba(255,255,255,0.65); margin-top: 1.5rem; }

/* ── Session story prose ── */
.session-prose { max-width: 40rem; margin: 0 auto; padding: 5rem 1.5rem 4rem; text-align: center; }
.session-prose .session-lead { font-family: var(--font-display); font-size: 1.2rem; color: var(--foreground); font-weight: 500; line-height: 1.7; margin-bottom: 2rem; }
.session-prose p { color: var(--muted-fg); line-height: 1.9; margin-bottom: 1.4rem; font-size: 0.975rem; }
.session-prose p:last-child { font-style: italic; color: var(--foreground); margin-bottom: 0; }
.session-prose .session-divider { width: 1px; height: 3rem; background: var(--border); margin: 2rem auto; }

/* ── Gallery page ── */
.gallery-hero { padding: 4rem 1.5rem 4rem; text-align: center; border-bottom: 1px solid var(--border); }
.back-link { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.15em; color: var(--muted-fg); margin-bottom: 2.5rem; transition: color 0.2s; }
.back-link:hover { color: var(--foreground); }
.gallery-hero h1 { font-family: var(--font-script); font-size: clamp(3.5rem, 7vw, 6rem); color: var(--foreground); margin-bottom: 0.5rem; font-weight: 400; line-height: 1.6; padding: 0 0.6em; }
.gallery-meta { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.25em; color: var(--muted-fg); margin-bottom: 1rem; }
.gallery-desc { max-width: 36rem; margin: 0 auto; font-family: var(--font-display); font-size: 1rem; color: var(--muted-fg); line-height: 1.7; font-style: italic; }

.masonry-grid { padding: 0; display: grid; grid-template-columns: repeat(2, 1fr); grid-auto-rows: 10px; gap: 3px; opacity: 0; transition: opacity 0.4s ease; }
.masonry-grid.loaded { opacity: 1; }
@media (min-width: 1024px) { .masonry-grid { grid-template-columns: repeat(3, 1fr); } }
.masonry-grid img { width: 100%; display: block; align-self: start; }

/* ── Gallery nav ── */
.gallery-nav { display: flex; justify-content: space-between; align-items: center; padding: 3rem 2.5rem; }
.gallery-nav-item { display: flex; flex-direction: column; gap: 0.35rem; text-decoration: none; }
.gallery-nav-item.next { align-items: flex-end; text-align: right; }
.gallery-nav-arrow { font-size: 1.1rem; color: var(--sage); line-height: 1; transition: color 0.2s; }
.gallery-nav-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--muted-fg); }
.gallery-nav-title { font-family: var(--font-display); font-size: 1.25rem; color: var(--foreground); transition: color 0.2s; }
.gallery-nav-item:hover .gallery-nav-title,
.gallery-nav-item:hover .gallery-nav-arrow { color: var(--accent); }

/* ── Closing ── */
.closing { padding: 5rem 1.5rem; text-align: center; }
.closing p { font-family: var(--font-display); font-size: clamp(1.25rem, 3vw, 1.875rem); font-style: italic; color: rgba(59,66,40,0.6); }

/* ── Page top padding ── */
.pt-header { padding-top: 5rem; }
.mb-20 { margin-bottom: 5rem; }
.mb-16 { margin-bottom: 4rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mt-12 { margin-top: 3rem; }
.mt-4 { margin-top: 1rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-8 > * + * { margin-top: 2rem; }
