/* ==========================================================================
   Soul's Colors · main stylesheet
   Estructura: variables → reset → tipografía → componentes → secciones → media queries
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --paper: #FAF3EC; --paper-2: #F2E8DD; --paper-3: #E8D8E4;
  --ink: #2D1B3D; --ink-soft: #5A4570; --muted: #8E7A9A;
  --line: rgba(74,40,112,0.14);
  --plum: #6B4A8A; --plum-deep: #432A60; --plum-soft: #C4A8D8; --plum-wash: #EADDF0;
  --gold: #C19A5C; --gold-soft: #E0C189; --terracotta: #D4998A; --sage: #9AAEA0;
  --rb-1: #E0436A; --rb-2: #E89A3A; --rb-3: #E0C189; --rb-4: #7A8B6A; --rb-5: #5A8FBC; --rb-6: #5A2E7F;
  --font-serif: 'Cormorant Garamond', serif;
  --font-script: 'Dancing Script', cursive;
  --font-sans: 'Nunito', sans-serif;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans); background: var(--paper); color: var(--ink);
  overflow-x: hidden; line-height: 1.6;
  background-image: radial-gradient(rgba(122,90,40,0.035) 1px, transparent 1px),
                    radial-gradient(rgba(122,90,40,0.025) 1px, transparent 1px);
  background-size: 22px 22px, 13px 13px;
  background-position: 0 0, 6px 9px;
}

/* ── Reveal animations ──────────────────────────────────────────────── */
[data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity .9s ease, transform .9s cubic-bezier(.2,.7,.2,1); }
[data-reveal].is-revealed { opacity: 1; transform: translateY(0); }
[data-reveal-delay="1"].is-revealed { transition-delay: .08s; }
[data-reveal-delay="2"].is-revealed { transition-delay: .16s; }
[data-reveal-delay="3"].is-revealed { transition-delay: .24s; }
[data-reveal-delay="4"].is-revealed { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) { [data-reveal] { opacity: 1; transform: none; transition: none; } }

/* ── Watercolor decorations & monogram ──────────────────────────────── */
body[data-watercolor="off"] .watercolor { display: none; }
.watercolor { position: absolute; pointer-events: none; opacity: 0.55; mix-blend-mode: multiply; z-index: 0; filter: blur(6px); }
.monogram { display: block; flex-shrink: 0; }
.monogram svg { display: block; width: 100%; height: 100%; }
.wordmark { display: flex; flex-direction: column; line-height: 1; gap: 0.18rem; }
.wordmark-1 { font-family: var(--font-script); font-size: 1.3rem; color: var(--plum); font-weight: 700; }
.wordmark-2 { font-family: var(--font-serif); font-style: italic; font-size: 0.78rem; color: var(--ink-soft); letter-spacing: 0.02em; }

/* ── Nav ────────────────────────────────────────────────────────────── */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: rgba(250,244,233,0.86); backdrop-filter: blur(14px); border-bottom: 1px solid var(--line); padding: 0.7rem 2.5rem; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 0.85rem; text-decoration: none; }
.nav-logo .monogram { width: 56px; height: 56px; }
.nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
.nav-links a { font-size: 0.78rem; font-weight: 700; color: var(--ink-soft); text-decoration: none; letter-spacing: 0.1em; text-transform: uppercase; transition: color 0.2s; }
.nav-links a:hover { color: var(--plum); }
.nav-cta { background: var(--plum); color: var(--paper) !important; padding: 0.55rem 1.3rem; border-radius: 999px; transition: background 0.2s; }
.nav-cta:hover { background: var(--plum-deep); }

/* ── Section / typography primitives ─────────────────────────────────── */
section { padding: 7rem 2rem; position: relative; }
.inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }
.eyebrow { display: inline-flex; align-items: center; gap: 0.6rem; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--plum); }
.eyebrow::before, .eyebrow::after { content: ''; width: 22px; height: 1px; background: var(--plum); opacity: 0.4; }
.eyebrow.left::before { display: none; }
.section-title { font-family: var(--font-serif); font-weight: 600; font-size: clamp(2.3rem, 4vw, 3.4rem); line-height: 1.05; color: var(--ink); letter-spacing: -0.015em; margin-top: 0.9rem; }
.section-title em { font-style: italic; color: var(--plum); }
.section-title .script { font-family: var(--font-script); font-style: normal; color: var(--plum); font-weight: 600; }
.section-desc { font-family: var(--font-serif); font-size: 1.15rem; line-height: 1.6; color: var(--ink-soft); font-style: italic; margin-top: 1.2rem; max-width: 580px; }
.ink-underline { display: block; width: 90px; height: 8px; margin-top: 1.2rem; color: var(--plum); opacity: 0.75; }

/* ── Buttons ────────────────────────────────────────────────────────── */
.btn { display: inline-flex; align-items: center; gap: 0.6rem; padding: 0.95rem 1.8rem; border-radius: 999px; font-family: var(--font-sans); font-weight: 700; font-size: 0.92rem; text-decoration: none; transition: all 0.25s; border: none; cursor: pointer; }
.btn-primary { background: var(--plum); color: var(--paper); box-shadow: 0 8px 24px -6px rgba(90,46,127,0.5); }
.btn-primary:hover { background: var(--plum-deep); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--plum); border: 1.5px solid var(--plum); }
.btn-ghost:hover { background: var(--plum); color: var(--paper); }

/* ── Hero ────────────────────────────────────────────────────────────── */
.hero { padding: 7rem 2rem 5rem; position: relative; overflow: hidden; }
.hero .watercolor.w1 { width: 520px; height: 520px; top: -160px; right: -120px; }
.hero .watercolor.w2 { width: 360px; height: 360px; bottom: -120px; left: -80px; opacity: 0.4; }
body[data-hero="asymmetric"] .hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 4rem; align-items: center; max-width: 1240px; margin: 0 auto; }
body[data-hero="asymmetric"] .hero-collage { display: none; }
body[data-hero="asymmetric"] .hero-mosaic { display: grid; }
body:not([data-hero="centered"]) .hero-feature { display: none; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 0.5rem; font-family: var(--font-script); font-size: 1.25rem; color: var(--plum); margin-bottom: 0.5rem; }
.hero-eyebrow .dot { width: 6px; height: 6px; background: var(--plum); border-radius: 50%; opacity: 0.6; }
.hero-title { font-family: var(--font-serif); font-weight: 600; font-size: clamp(3rem, 5.5vw, 5rem); line-height: 1; color: var(--ink); letter-spacing: -0.02em; margin-bottom: 1.5rem; }
.hero-title em { font-style: italic; color: var(--plum); position: relative; }
.hero-title em::after { content: ''; position: absolute; left: 0; right: 0; bottom: -6px; height: 8px; background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 8'><path d='M2 4 Q 50 1 100 4 T 198 4' stroke='%23B89AD6' stroke-width='2' fill='none' stroke-linecap='round'/></svg>") no-repeat center/100% 100%; opacity: 0.7; }
.hero-subtitle { font-family: var(--font-serif); font-style: italic; font-size: 1.25rem; color: var(--ink-soft); line-height: 1.55; max-width: 480px; margin-bottom: 2.5rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-stats { display: flex; gap: 2.5rem; padding-top: 2rem; border-top: 1px solid var(--line); max-width: 480px; }
.hero-stats > div { flex: 1; }
.stat-num { font-family: var(--font-serif); font-size: 2rem; font-weight: 600; color: var(--plum); line-height: 1; display: block; }
.stat-lbl { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); display: block; margin-top: 0.4rem; }
.hero-mosaic { grid-template-columns: 1fr 1fr; grid-template-rows: 200px 200px; gap: 1rem; position: relative; }
.hero-mosaic .pic { position: relative; }
.hero-mosaic .pic-1 { grid-row: span 2; }
.hero-mosaic .pic-1 image-slot { height: 416px; }
.hero-mosaic .pic-2 image-slot, .hero-mosaic .pic-3 image-slot { height: 200px; }
.hero-mosaic image-slot { width: 100%; border-radius: 4px; box-shadow: 0 14px 40px -12px rgba(58,26,90,0.35), 0 2px 0 rgba(0,0,0,0.04); }
.pic { transform: rotate(var(--rot, 0deg)); transition: transform 0.4s; }
.pic:hover { transform: rotate(0deg) scale(1.02); z-index: 2; }
.pic-1 { --rot: -1.5deg; } .pic-2 { --rot: 2deg; } .pic-3 { --rot: -2.5deg; }
.tape { position: absolute; width: 80px; height: 22px; top: -10px; left: 50%; transform: translateX(-50%) rotate(-3deg); background: rgba(184,154,214,0.55); border-left: 1px dashed rgba(255,255,255,0.6); border-right: 1px dashed rgba(255,255,255,0.6); z-index: 3; pointer-events: none; }
.tape.t-left { left: 12px; transform: rotate(-18deg); top: -8px; width: 60px; }
.tape.t-right { right: 12px; left: auto; transform: rotate(15deg); top: -8px; width: 60px; }
.tape.warm { background: rgba(199,117,89,0.4); }
.tape.gold { background: rgba(184,137,58,0.4); }
.hero-seal { position: absolute; top: 110px; right: 60px; width: 200px; height: 200px; z-index: 0; opacity: 0.95; pointer-events: none; }
.hero-seal svg { width: 100%; height: 100%; display: block; animation: spin 80s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
@media (max-width: 980px) { .hero-seal { width: 110px; height: 110px; top: 80px; right: 16px; } }

/* ── About ──────────────────────────────────────────────────────────── */
.about { background: var(--paper-2); position: relative; overflow: hidden; }
.about .watercolor.w1 { width: 480px; height: 480px; top: -120px; right: -150px; opacity: 0.4; }
.about-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 5rem; align-items: center; }
.about-portrait-wrap { position: relative; padding: 0; width: 100%; max-width: 828px; margin: 0 auto; justify-self: stretch; }
.about-portrait-wrap::before { content: ''; position: absolute; inset: -22px; border-radius: 50%; background: conic-gradient(from 200deg, var(--rb-1), var(--rb-2), var(--rb-3), var(--rb-4), var(--rb-5), var(--rb-6), var(--rb-1)); opacity: 0.7; -webkit-mask: radial-gradient(circle, transparent 0%, transparent 56%, black 56%, black 60%, transparent 60%); mask: radial-gradient(circle, transparent 0%, transparent 56%, black 56%, black 60%, transparent 60%); transform: rotate(-30deg); }
.about-portrait-wrap::after { content: ''; position: absolute; inset: -8px; border-radius: 50%; border: 1px dashed rgba(74,40,112,0.25); pointer-events: none; }
.about-portrait-wrap image-slot { display: block; border-radius: 50%; box-shadow: 0 22px 60px -20px rgba(58,26,90,0.4); z-index: 1; }
.about-stamp { position: absolute; bottom: 4%; right: -4%; width: 120px; height: 120px; z-index: 3; transform: rotate(8deg); filter: drop-shadow(0 6px 16px rgba(58,26,90,0.25)); }
.about-stamp svg { width: 100%; height: 100%; }
.about-signature { position: absolute; top: -0.5rem; left: -0.5rem; font-family: var(--font-script); font-size: 2.2rem; color: var(--plum); transform: rotate(-6deg); z-index: 2; background: var(--paper-2); padding: 0.1rem 1rem; border-radius: 999px; }
.about-quote { font-family: var(--font-serif); font-style: italic; font-size: 1.5rem; color: var(--ink); line-height: 1.5; margin: 1.8rem 0; border-left: 3px solid var(--plum); padding-left: 1.5rem; }
.about-body p { color: var(--ink-soft); margin-bottom: 1.1rem; line-height: 1.75; }
.about-meta { display: flex; gap: 2.5rem; margin-top: 2rem; padding-top: 2rem; border-top: 1px solid var(--line); }
.about-meta div { flex: 1; }
.about-meta-num { font-family: var(--font-serif); font-size: 2rem; font-weight: 600; color: var(--plum); display: block; line-height: 1; }
.about-meta-lbl { font-size: 0.78rem; color: var(--muted); margin-top: 0.4rem; display: block; }

/* ── Services ───────────────────────────────────────────────────────── */
.services { background: var(--paper); }
.services-header { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: end; margin-bottom: 2rem; }
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.svc-card { background: var(--paper-2); border: 1px solid var(--line); border-radius: 16px; padding: 2.5rem 2rem; position: relative; overflow: hidden; transition: all 0.3s; }
.svc-card::before { content: ''; position: absolute; inset: 0; border-radius: 16px; background: radial-gradient(circle at 80% -20%, rgba(184,154,214,0.18), transparent 60%); opacity: 0; transition: opacity 0.3s; pointer-events: none; }
.svc-card:hover { transform: translateY(-4px); border-color: rgba(90,46,127,0.3); box-shadow: 0 18px 40px -16px rgba(58,26,90,0.25); }
.svc-card:hover::before { opacity: 1; }
.svc-num { position: absolute; top: 1.4rem; right: 1.6rem; font-family: var(--font-serif); font-style: italic; font-size: 1.1rem; color: var(--plum); opacity: 0.55; }
.svc-medallion { width: 84px; height: 84px; margin-bottom: 1.6rem; position: relative; }
.svc-medallion svg.bg { position: absolute; inset: 0; width: 100%; height: 100%; }
.svc-medallion .glyph { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: var(--plum); }
.svc-medallion .glyph svg { width: 36px; height: 36px; }
.svc-name { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 600; color: var(--ink); margin-bottom: 0.7rem; line-height: 1.2; }
.svc-desc { color: var(--ink-soft); line-height: 1.7; margin-bottom: 1.5rem; font-size: 0.95rem; }
.svc-link { font-size: 0.82rem; font-weight: 700; color: var(--plum); text-decoration: none; letter-spacing: 0.05em; text-transform: uppercase; display: inline-flex; align-items: center; gap: 0.4rem; transition: gap 0.2s; }
.svc-link:hover { gap: 0.7rem; }

/* ── Verse banner ───────────────────────────────────────────────────── */
.verse { background: var(--plum-deep); color: var(--paper); padding: 7rem 2rem; text-align: center; position: relative; overflow: hidden; }
.verse-inner { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; }
.verse::before, .verse::after { content: ''; position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); border-radius: 50%; pointer-events: none; }
.verse::before { width: 760px; height: 760px; border: 1px dashed rgba(196,168,216,0.25); }
.verse::after { width: 560px; height: 560px; border: 1px dashed rgba(196,168,216,0.18); }
.verse-arc { width: 220px; height: 110px; margin: 0 auto 1.4rem; }
.verse-arc svg { width: 100%; height: 100%; display: block; }
.verse-text { font-family: var(--font-serif); font-style: italic; font-size: clamp(1.6rem, 3vw, 2.4rem); line-height: 1.45; max-width: 720px; margin: 1rem auto; color: rgba(250,244,233,0.95); }
.verse-ref { font-family: var(--font-script); font-size: 1.6rem; color: var(--plum-soft); margin-top: 1rem; }
.verse-orbit-stamp { position: absolute; width: 96px; height: 96px; opacity: 0.85; }
.verse-orbit-stamp.left { top: 50%; left: 9%; transform: translateY(-50%) rotate(-12deg); }
.verse-orbit-stamp.right { top: 50%; right: 9%; transform: translateY(-50%) rotate(12deg); }
@media (max-width: 980px) { .verse-orbit-stamp { display: none; } }

/* ── Gallery ────────────────────────────────────────────────────────── */
.gallery { background: var(--paper-2); position: relative; overflow: hidden; }
.gallery .watercolor.w1 { width: 420px; height: 420px; top: 10%; left: -120px; opacity: 0.35; }
.gallery .watercolor.w2 { width: 380px; height: 380px; bottom: 5%; right: -120px; opacity: 0.35; }
.gallery-header { display: flex; justify-content: space-between; align-items: end; flex-wrap: wrap; gap: 2rem; margin-bottom: 4rem; }
.gallery-filters { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 2.5rem; justify-content: center; }
.filter-btn { background: transparent; border: 1px solid var(--line); padding: 0.55rem 1.3rem; border-radius: 999px; font-family: var(--font-sans); font-size: 0.82rem; font-weight: 600; color: var(--ink-soft); cursor: pointer; transition: all 0.2s; }
.filter-btn:hover { color: var(--plum); border-color: var(--plum-soft); }
.filter-btn.active { background: var(--plum); color: var(--paper); border-color: var(--plum); }
.mosaic { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 90px; gap: 1rem; }
.m-item { position: relative; border-radius: 4px; overflow: hidden; background: var(--paper-3); cursor: pointer; box-shadow: 0 8px 24px -10px rgba(58,26,90,0.25); transition: transform 0.4s cubic-bezier(.2,.7,.2,1), box-shadow 0.4s; }
.m-item:hover { transform: translateY(-3px); box-shadow: 0 16px 40px -12px rgba(58,26,90,0.4); }
.m-item image-slot { width: 100%; height: 100%; display: block; }
.m-item .m-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(42,26,61,0.92) 0%, rgba(42,26,61,0.4) 30%, transparent 60%); opacity: 0; transition: opacity 0.3s; display: flex; flex-direction: column; justify-content: flex-end; padding: 1.5rem; }
.m-item:hover .m-overlay { opacity: 1; }
.m-tag { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--plum-soft); margin-bottom: 0.4rem; }
.m-title { font-family: var(--font-serif); font-style: italic; font-size: 1.25rem; color: var(--paper); line-height: 1.2; }
.m-zoom { position: absolute; top: 1rem; right: 1rem; width: 34px; height: 34px; background: rgba(250,244,233,0.95); color: var(--plum); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1rem; opacity: 0; transform: scale(0.8); transition: all 0.3s; }
.m-item:hover .m-zoom { opacity: 1; transform: scale(1); }
.m-1 { grid-column: span 6; grid-row: span 5; } .m-2 { grid-column: span 3; grid-row: span 3; } .m-3 { grid-column: span 3; grid-row: span 3; }
.m-4 { grid-column: span 3; grid-row: span 2; } .m-5 { grid-column: span 3; grid-row: span 2; }
.m-6 { grid-column: span 4; grid-row: span 4; } .m-7 { grid-column: span 4; grid-row: span 4; } .m-8 { grid-column: span 4; grid-row: span 4; }
.m-9 { grid-column: span 6; grid-row: span 3; } .m-10 { grid-column: span 6; grid-row: span 3; }
.gallery-cta { text-align: center; margin-top: 3rem; }

/* ── Lightbox ───────────────────────────────────────────────────────── */
.lightbox { position: fixed; inset: 0; background: rgba(20,10,30,0.94); z-index: 500; display: flex; align-items: center; justify-content: center; padding: 3rem 2rem; opacity: 0; pointer-events: none; transition: opacity 0.3s; backdrop-filter: blur(8px); }
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox .lb-img { max-width: 88vw; max-height: 80vh; border-radius: 4px; box-shadow: 0 30px 80px -10px rgba(0,0,0,0.6); }
.lightbox .lb-caption { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); color: var(--paper); font-family: var(--font-serif); font-style: italic; font-size: 1.1rem; }
.lightbox .lb-close { position: absolute; top: 1.5rem; right: 1.5rem; width: 44px; height: 44px; border-radius: 50%; background: rgba(250,244,233,0.15); border: none; color: var(--paper); font-size: 1.4rem; cursor: pointer; transition: background 0.2s; display: flex; align-items: center; justify-content: center; }
.lightbox .lb-close:hover { background: rgba(250,244,233,0.3); }

/* ── Pricing ────────────────────────────────────────────────────────── */
.pricing { background: var(--paper); }
.pricing-header { text-align: center; margin-bottom: 4rem; }
.pricing-header .section-desc { margin-left: auto; margin-right: auto; text-align: center; }
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; max-width: 1100px; margin: 0 auto; }
.price-card { background: var(--paper-2); border: 1px solid var(--line); border-radius: 12px; padding: 2.5rem 2rem; position: relative; transition: all 0.3s; }
.price-card.featured { background: var(--plum-deep); color: var(--paper); border-color: var(--plum); transform: translateY(-12px); box-shadow: 0 30px 60px -20px rgba(58,26,90,0.4); }
.price-card.featured .price-name, .price-card.featured .price-amount { color: var(--paper); }
.price-card.featured .price-tagline { color: var(--plum-soft); }
.price-card.featured .price-list li { color: rgba(250,244,233,0.85); }
.price-card.featured .price-list li::before { color: var(--plum-soft); }
.price-card:not(.featured):hover { transform: translateY(-4px); box-shadow: 0 18px 40px -16px rgba(58,26,90,0.25); }
.price-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--gold); color: var(--paper); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.35rem 1rem; border-radius: 999px; }
.price-name { font-family: var(--font-serif); font-size: 1.6rem; font-weight: 600; color: var(--ink); }
.price-tagline { font-family: var(--font-script); font-size: 1.15rem; color: var(--plum); margin-top: 0.2rem; }
.price-amount { font-family: var(--font-serif); font-size: 2.8rem; font-weight: 600; color: var(--ink); margin: 1.5rem 0 0.2rem; line-height: 1; }
.price-amount .currency { font-size: 1rem; vertical-align: super; opacity: 0.6; margin-right: 4px; }
.price-amount small { font-size: 0.8rem; font-weight: 400; opacity: 0.7; margin-left: 4px; font-family: var(--font-sans); }
.price-note { font-size: 0.78rem; color: var(--muted); margin-bottom: 2rem; }
.price-card.featured .price-note { color: rgba(250,244,233,0.6); }
.price-list { list-style: none; margin-bottom: 2rem; }
.price-list li { padding: 0.55rem 0; padding-left: 1.5rem; position: relative; font-size: 0.92rem; color: var(--ink-soft); border-bottom: 1px dashed var(--line); }
.price-list li:last-child { border-bottom: none; }
.price-card.featured .price-list li { border-color: rgba(255,255,255,0.1); }
.price-list li::before { content: '✦'; position: absolute; left: 0; color: var(--plum); font-size: 0.7rem; top: 0.7rem; }
.price-card .btn { width: 100%; justify-content: center; }
.price-card.featured .btn-primary { background: var(--paper); color: var(--plum-deep); }
.price-card.featured .btn-primary:hover { background: var(--paper-2); }
.pricing-foot { text-align: center; margin-top: 3rem; font-size: 0.88rem; color: var(--muted); font-style: italic; font-family: var(--font-serif); }

/* ── Workshops ──────────────────────────────────────────────────────── */
.workshops { background: var(--paper-2); position: relative; overflow: hidden; }
.workshops .watercolor.w1 { width: 380px; height: 380px; top: 10%; right: -120px; opacity: 0.4; }
.workshops-header { display: grid; grid-template-columns: 1.2fr 1fr; gap: 4rem; align-items: end; margin-bottom: 4rem; }
.workshops-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.ws-card { background: var(--paper); border: 1px solid var(--line); border-radius: 12px; overflow: hidden; transition: all 0.3s; display: flex; flex-direction: column; }
.ws-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px -16px rgba(58,26,90,0.25); }
.ws-image { position: relative; height: 220px; overflow: hidden; }
.ws-image image-slot { width: 100%; height: 100%; display: block; }
.ws-date { position: absolute; top: 1rem; left: 1rem; background: var(--paper); border-radius: 8px; padding: 0.5rem 0.8rem; text-align: center; box-shadow: 0 4px 12px rgba(0,0,0,0.12); min-width: 64px; }
.ws-day { font-family: var(--font-serif); font-size: 1.6rem; font-weight: 700; color: var(--plum); display: block; line-height: 1; }
.ws-month { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-soft); margin-top: 0.2rem; display: block; }
.ws-modality { position: absolute; top: 1rem; right: 1rem; background: rgba(250,244,233,0.95); padding: 0.3rem 0.7rem; border-radius: 999px; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-soft); }
.ws-modality.virtual { background: var(--plum-soft); color: var(--plum-deep); }
.ws-body { padding: 1.5rem 1.5rem 1.75rem; flex: 1; display: flex; flex-direction: column; }
.ws-name { font-family: var(--font-serif); font-size: 1.35rem; font-weight: 600; color: var(--ink); margin-bottom: 0.3rem; line-height: 1.2; }
.ws-meta { display: flex; gap: 1rem; flex-wrap: wrap; margin: 0.6rem 0 1rem; font-size: 0.82rem; color: var(--muted); }
.ws-meta span { display: inline-flex; align-items: center; gap: 0.35rem; }
.ws-desc { color: var(--ink-soft); font-size: 0.92rem; line-height: 1.6; margin-bottom: 1.25rem; flex: 1; }
.ws-foot { display: flex; justify-content: space-between; align-items: center; padding-top: 1rem; border-top: 1px dashed var(--line); }
.ws-price { font-family: var(--font-serif); font-size: 1.3rem; font-weight: 600; color: var(--plum); }
.ws-price small { font-size: 0.7rem; color: var(--muted); font-weight: 400; font-family: var(--font-sans); margin-left: 4px; }
.ws-spots { font-size: 0.78rem; color: var(--muted); }
.ws-spots .full { color: var(--terracotta); font-weight: 700; }
.ws-card.full { opacity: 0.65; }
.ws-cta-link { font-size: 0.82rem; font-weight: 700; color: var(--plum); text-decoration: none; letter-spacing: 0.05em; text-transform: uppercase; }

/* ── Process ────────────────────────────────────────────────────────── */
.process { background: var(--paper); }
.process-header { text-align: center; margin-bottom: 5rem; }
.process-header .section-desc { margin-left: auto; margin-right: auto; text-align: center; }
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem; position: relative; max-width: 1100px; margin: 0 auto; }
.steps::before { content: ''; position: absolute; top: 32px; left: 12.5%; right: 12.5%; height: 2px; background-image: linear-gradient(to right, var(--plum-soft) 0%, var(--plum-soft) 50%, transparent 50%, transparent 100%); background-size: 12px 2px; z-index: 0; }
.step { text-align: center; position: relative; z-index: 1; }
.step-circle { width: 72px; height: 72px; border-radius: 50%; background: var(--paper); color: var(--plum); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; font-family: var(--font-serif); font-size: 1.4rem; font-weight: 600; font-style: italic; transition: all 0.3s; position: relative; }
.step-circle::before { content: ''; position: absolute; inset: -6px; border-radius: 50%; background: conic-gradient(from 200deg, var(--rb-1), var(--rb-2), var(--rb-3), var(--rb-4), var(--rb-5), var(--rb-6), var(--rb-1)); opacity: 0.85; -webkit-mask: radial-gradient(circle, transparent 0%, transparent 60%, black 60%, black 100%); mask: radial-gradient(circle, transparent 0%, transparent 60%, black 60%, black 100%); }
.step:hover .step-circle { background: var(--plum); color: var(--paper); transform: scale(1.05); }
.step-title { font-family: var(--font-serif); font-size: 1.25rem; font-weight: 600; color: var(--ink); margin-bottom: 0.6rem; }
.step-desc { font-size: 0.9rem; color: var(--ink-soft); line-height: 1.7; }

/* ── Testimonials ───────────────────────────────────────────────────── */
.testimonials { background: var(--plum-wash); position: relative; overflow: hidden; }
.testimonials .watercolor.w1 { width: 380px; height: 380px; top: -120px; left: -100px; opacity: 0.35; }
.testimonials-head { text-align: center; margin-bottom: 4rem; }
.t-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.t-card { background: var(--paper); border-radius: 12px; padding: 2rem; position: relative; border: 1px solid rgba(90,46,127,0.1); transition: transform 0.3s; }
.t-card:hover { transform: translateY(-4px); }
.t-card::before { content: '"'; position: absolute; top: 0.5rem; left: 1.5rem; font-family: var(--font-serif); font-size: 5rem; line-height: 1; color: var(--plum-soft); opacity: 0.35; }
.t-stars { color: var(--gold); margin-bottom: 1rem; letter-spacing: 3px; font-size: 0.9rem; position: relative; z-index: 1; }
.t-text { font-family: var(--font-serif); font-style: italic; font-size: 1.05rem; color: var(--ink); line-height: 1.65; margin-bottom: 1.5rem; position: relative; z-index: 1; }
.t-author { display: flex; align-items: center; gap: 0.85rem; padding-top: 1rem; border-top: 1px dashed var(--line); }
.t-avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--plum); color: var(--paper); font-family: var(--font-serif); font-size: 0.95rem; font-weight: 600; display: flex; align-items: center; justify-content: center; flex-shrink: 0; position: relative; }
.t-avatar::before { content: ''; position: absolute; inset: -4px; border-radius: 50%; background: conic-gradient(from 200deg, var(--rb-1), var(--rb-2), var(--rb-3), var(--rb-4), var(--rb-5), var(--rb-6), var(--rb-1)); -webkit-mask: radial-gradient(circle, transparent 0%, transparent 60%, black 60%, black 100%); mask: radial-gradient(circle, transparent 0%, transparent 60%, black 60%, black 100%); opacity: 0.85; }
.t-name { font-size: 0.92rem; font-weight: 700; color: var(--ink); }
.t-loc { font-size: 0.78rem; color: var(--muted); }

/* ── CTA ────────────────────────────────────────────────────────────── */
.cta { background: var(--plum); color: var(--paper); padding: 7rem 2rem; text-align: center; position: relative; overflow: hidden; }
.cta::before, .cta::after { content: ''; position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); border-radius: 50%; pointer-events: none; }
.cta::before { width: 880px; height: 880px; border: 1px dashed rgba(255,255,255,0.18); }
.cta::after { width: 660px; height: 660px; border: 1px dashed rgba(255,255,255,0.14); }
.cta-monogram { width: 130px; height: 130px; margin: 0 auto 2rem; filter: drop-shadow(0 8px 22px rgba(0,0,0,0.25)); }
.cta-monogram svg { width: 100%; height: 100%; display: block; }
.cta-inner { max-width: 720px; margin: 0 auto; position: relative; z-index: 1; }
.cta-mark { font-family: var(--font-script); font-size: 1.6rem; color: var(--plum-soft); margin-bottom: 1rem; }
.cta-title { font-family: var(--font-serif); font-size: clamp(2.4rem, 4.5vw, 3.6rem); font-weight: 600; line-height: 1.1; margin-bottom: 1rem; letter-spacing: -0.015em; }
.cta-title em { font-style: italic; color: var(--plum-soft); }
.cta-desc { font-family: var(--font-serif); font-style: italic; font-size: 1.2rem; color: rgba(250,244,233,0.85); line-height: 1.5; margin-bottom: 2.5rem; max-width: 560px; margin-left: auto; margin-right: auto; }
.whatsapp-btn { display: inline-flex; align-items: center; gap: 0.8rem; background: var(--paper); color: var(--plum-deep); padding: 1.1rem 2.2rem; border-radius: 999px; font-weight: 700; font-size: 1rem; text-decoration: none; box-shadow: 0 12px 40px rgba(0,0,0,0.2); transition: all 0.25s; }
.whatsapp-btn:hover { transform: translateY(-3px); box-shadow: 0 16px 50px rgba(0,0,0,0.25); }
.wa-svg { width: 22px; height: 22px; fill: #25D366; }

/* ── Footer ─────────────────────────────────────────────────────────── */
footer { background: var(--ink); color: rgba(250,244,233,0.6); padding: 5rem 2rem 2rem; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3.5rem; }
.f-logo { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 1rem; }
.f-logo .monogram { width: 64px; height: 64px; }
.f-desc { font-size: 0.9rem; line-height: 1.7; max-width: 320px; margin-bottom: 1.5rem; color: rgba(250,244,233,0.5); font-family: var(--font-serif); font-style: italic; }
.f-socials { display: flex; gap: 0.6rem; }
.f-social { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.06); display: flex; align-items: center; justify-content: center; color: var(--paper); text-decoration: none; transition: background 0.2s; }
.f-social:hover { background: var(--plum); }
.f-social svg { width: 16px; height: 16px; }
.f-heading { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--paper); margin-bottom: 1.25rem; }
.f-list { list-style: none; }
.f-list li { margin-bottom: 0.6rem; }
.f-list a, .f-list span { color: rgba(250,244,233,0.5); font-size: 0.9rem; text-decoration: none; transition: color 0.2s; }
.f-list a:hover { color: var(--plum-soft); }
.footer-bottom { max-width: 1200px; margin: 0 auto; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.07); display: flex; justify-content: space-between; font-size: 0.8rem; color: rgba(250,244,233,0.3); flex-wrap: wrap; gap: 0.5rem; }

/* ── WhatsApp float button ──────────────────────────────────────────── */
.wa-float { position: fixed; bottom: 1.5rem; right: 1.5rem; width: 58px; height: 58px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 24px rgba(37,211,102,0.5); z-index: 200; text-decoration: none; transition: transform 0.2s; animation: pulse 2.8s ease-in-out infinite; }
.wa-float:hover { transform: scale(1.1); }
.wa-float svg { width: 28px; height: 28px; fill: white; }
@keyframes pulse { 0%,100% { box-shadow: 0 8px 24px rgba(37,211,102,0.5); } 50% { box-shadow: 0 8px 50px rgba(37,211,102,0.75); } }

/* ── Image-slot generic background ──────────────────────────────────── */
image-slot { background: linear-gradient(135deg, var(--plum-wash) 0%, var(--paper-3) 100%); display: block; }

/* ── Responsive ─────────────────────────────────────────────────────── */
@media (max-width: 980px) {
  .about-portrait-wrap { min-height: 300px; }
  section { padding: 5rem 1.5rem; }
  nav { padding: 0.8rem 1.2rem; }
  body[data-hero="asymmetric"] .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .nav-links { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .services-grid, .pricing-grid, .workshops-grid, .t-grid { grid-template-columns: 1fr; }
  .services-header, .workshops-header { grid-template-columns: 1fr; gap: 2rem; }
  .price-card.featured { transform: none; }
  .steps { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .steps::before { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .mosaic { grid-template-columns: repeat(6, 1fr); grid-auto-rows: 80px; }
  .m-1 { grid-column: span 6; grid-row: span 4; }
  .m-2, .m-3, .m-4, .m-5 { grid-column: span 3; grid-row: span 3; }
  .m-6, .m-7, .m-8 { grid-column: span 6; grid-row: span 4; }
  .m-9, .m-10 { grid-column: span 6; grid-row: span 3; }
}
@media (max-width: 540px) {
  .footer-inner { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.2rem; }
  .stat-num { font-size: 1.6rem; }
  .hero-mosaic .pic-1 image-slot { height: 280px; }
  .hero-mosaic .pic-2 image-slot, .hero-mosaic .pic-3 image-slot { height: 140px; }
  .about-meta { gap: 1rem; flex-wrap: wrap; }
  .nav-cta { padding: 0.5rem 1rem; font-size: 0.7rem; }
}
