/* ============================================================
   TOKENS
   ============================================================ */
:root {
    --navy:        #13324A;
    --sage:        #6A8C86;
    --sage-light:  #E8EDEC;
    --beige:       #E6C2A6;
    --beige-light: #F4E6DA;
    --cream:       #F8F4EF;
    --white:       #ffffff;
    --text:        #13324A;
    --muted:       #6B7280;
    --shadow:      0 16px 40px rgba(19, 50, 74, 0.09);
    --ease:        cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--cream);
    color: var(--text);
    line-height: 1.75;
    overflow-x: hidden;
    font-weight: 400;
}

/* Headings use Cormorant Garamond — more refined than Playfair */
h1, h2, h3,
.logo-text,
.refined-label,
.artist-quote { font-family: 'Cormorant Garamond', serif; }

.container { max-width: 1120px; margin: 0 auto; padding: 0 2.5rem; }

img { display: block; max-width: 100%; }

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}

.reveal-right {
    opacity: 0;
    transform: translateX(28px);
    transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}

.reveal.visible,
.reveal-right.visible {
    opacity: 1;
    transform: none;
}

/* Stagger children inside a .reveal parent */
.pricing-grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.pricing-grid .reveal:nth-child(3) { transition-delay: 0.2s; }
.pricing-grid .reveal:nth-child(4) { transition-delay: 0.3s; }
.pricing-grid .reveal:nth-child(5) { transition-delay: 0.4s; }
.pricing-grid .reveal:nth-child(6) { transition-delay: 0.5s; }

/* ============================================================
   HEADER
   ============================================================ */
#main-header {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 88px;
    display: flex;
    align-items: center;
    background: rgba(248, 244, 239, 0.94);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(19, 50, 74, 0.05);
    z-index: 1000;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo { display: flex; flex-direction: column; gap: 3px; }

.logo-text {
    font-size: 1.75rem;
    font-weight: 600;
    letter-spacing: 5px;
    line-height: 1;
    color: var(--navy);
}

.tagline {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.55rem;
    letter-spacing: 3.5px;
    font-weight: 500;
    color: var(--sage);
    text-transform: uppercase;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2.2rem;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    transition: color 0.3s;
}

nav a:hover { color: var(--sage); }

.btn-nav {
    background: var(--navy);
    color: var(--white) !important;
    padding: 0.55rem 1.4rem;
    border-radius: 3px;
    letter-spacing: 1px;
    transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}

.btn-nav:hover {
    background: var(--sage);
    transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--navy);
    border-radius: 2px;
    transition: all 0.35s var(--ease);
}

.hamburger.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ============================================================
   HERO — Watercolour paper texture in CSS, text-first
   ============================================================ */
.hero {
    position: relative;
    padding: 220px 0 160px;
    overflow: hidden;
}

/* Pure-CSS watercolour paper texture — no external requests */
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    /* Base parchment */
    background-color: #F8F2E9;
    /* Layered radial "wash" blobs to mimic wet watercolour on paper */
    background-image:
        radial-gradient(ellipse 80% 60% at 10% 15%,  rgba(230,194,166,0.28) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 90% 80%,  rgba(106,140,134,0.18) 0%, transparent 55%),
        radial-gradient(ellipse 55% 40% at 75% 10%,  rgba(230,194,166,0.15) 0%, transparent 50%),
        radial-gradient(ellipse 70% 55% at 30% 90%,  rgba(106,140,134,0.12) 0%, transparent 50%),
        radial-gradient(ellipse 40% 30% at 55% 50%,  rgba(248,244,239,0.60) 0%, transparent 65%);
    /* Paper grain via repeating pattern */
    background-size: 100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%;
}

/* SVG noise grain layered on top for paper feel */
.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 200px 200px;
    pointer-events: none;
}

.hero .container { position: relative; z-index: 1; }

.hero-content { text-align: center; }

.hero-eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--sage);
    font-weight: 500;
    margin-bottom: 2rem;
}

.hero-content h1 {
    font-size: 6rem;
    line-height: 1.05;
    margin-bottom: 2rem;
    font-style: italic;
    font-weight: 300;
    color: var(--navy);
}

.subtitle {
    font-size: 1.15rem;
    margin: 0 auto 3.5rem;
    color: var(--muted);
    max-width: 580px;
    font-weight: 400;
    line-height: 1.8;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
    display: inline-block;
    text-decoration: none;
    background: transparent;
    color: var(--navy);
    border: 1.5px solid var(--navy);
    padding: 1.1rem 3rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 2px;
    transition: background 0.35s var(--ease), color 0.35s var(--ease), transform 0.3s var(--ease);
}

.btn-primary:hover {
    background: var(--navy);
    color: var(--white);
    transform: translateY(-2px);
}

/* ============================================================
   FILOSOFIA
   ============================================================ */
.feature-section {
    padding: 130px 0;
    background: var(--white);
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.refined-label {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 400;
    font-size: 1.15rem;
    color: var(--sage);
    margin-bottom: 1.2rem;
    display: block;
    letter-spacing: 0.3px;
}

.feature-text h2 {
    font-size: 2.8rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.feature-intro {
    font-size: 1.1rem;
    color: var(--muted);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

/* CSS-only bullet list — no special characters */
.benefits-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.benefits-list li {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.benefits-list li::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 1.5px;
    background: var(--sage);
    flex-shrink: 0;
}

.feature-image img {
    width: 100%;
    border-radius: 4px;
    box-shadow: var(--shadow);
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing-section {
    padding: 130px 0;
    background: var(--cream);
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-header h2 {
    font-size: 3.2rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.section-sub {
    font-size: 1rem;
    color: var(--muted);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    align-items: stretch;
}

.price-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 4px;
    border: 1px solid rgba(19, 50, 74, 0.08);
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card-body {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.price-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
    border-color: var(--beige);
}

.price-card.highlight {
    border: 1.5px solid var(--navy);
    position: relative;
    background: var(--white);
}

.price-card.highlight::before {
    content: 'El más elegido';
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 400;
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--navy);
    color: var(--white);
    font-size: 0.75rem;
    padding: 2px 14px;
    border-radius: 20px;
    white-space: nowrap;
    letter-spacing: 0.5px;
}

.price-card h3 {
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 0.4rem;
    min-height: 2.8rem;
    display: flex;
    align-items: center;
}

.price-card .desc {
    font-family: 'Montserrat', sans-serif;
    color: var(--sage);
    font-weight: 500;
    margin-bottom: 1.2rem;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1.8px;
}

.price-card .info {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.7;
}

.price-card .details {
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0,0,0,0.05);
    margin-bottom: 1.5rem;
}

.detail-time {
    font-size: 0.78rem;
    color: var(--muted);
    margin-bottom: 0.4rem;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.price-card .price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.9rem;
    font-weight: 600;
    color: var(--navy);
    margin-top: 0.3rem;
    line-height: 1;
}

.price-card .price span {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    font-weight: 400;
    color: var(--muted);
}

.btn-card {
    display: block;
    text-decoration: none;
    color: var(--navy);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.78rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 0.85rem;
    border: 1px solid rgba(19,50,74,0.3);
    border-radius: 2px;
    text-align: center;
    transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
}

.btn-card:hover {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}

/* ============================================================
   ARTISTA
   ============================================================ */
.artist-section {
    padding: 130px 0;
    background: var(--white);
}

.artist-grid {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 6rem;
    align-items: center;
}

.artist-photo img {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 25px 60px rgba(19, 50, 74, 0.1);
    object-fit: cover;
    object-position: center 20%;
    aspect-ratio: 4/3;
}

.artist-text h2 {
    font-size: 3.2rem;
    font-weight: 400;
    margin-bottom: 0.3rem;
}

.artist-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--sage);
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 0.3rem;
}

.artist-focus {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 0.95rem;
    color: var(--muted);
    letter-spacing: 0.5px;
    margin-bottom: 2rem;
}

.artist-bio {
    font-size: 0.95rem;
    color: var(--muted);
    margin-bottom: 1.2rem;
    line-height: 1.85;
}

/* Quote — the pause moment */
.artist-quote {
    font-size: 1.7rem;
    font-style: italic;
    font-weight: 300;
    color: var(--sage);
    border-left: 2px solid var(--beige);
    padding-left: 1.5rem;
    margin: 2.5rem 0;
    line-height: 1.4;
}

.artist-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.btn-gallery {
    display: inline-block;
    text-decoration: none;
    background: var(--navy);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.78rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 0.9rem 2rem;
    border-radius: 2px;
    transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}

.btn-gallery:hover {
    background: var(--sage);
    transform: translateY(-2px);
}

.btn-social-artist {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--text);
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 0.78rem;
    letter-spacing: 0.5px;
    border: 1px solid rgba(19,50,74,0.2);
    padding: 0.9rem 1.5rem;
    border-radius: 2px;
    transition: border-color 0.3s, color 0.3s;
}

.btn-social-artist:hover {
    border-color: var(--sage);
    color: var(--sage);
}

/* ============================================================
   CTA FINAL
   ============================================================ */
.final-cta {
    padding: 130px 0;
    background: var(--cream);
}

.cta-card {
    background: var(--navy);
    color: var(--white);
    padding: 6rem 4rem;
    border-radius: 4px;
    text-align: center;
}

.cta-label {
    color: var(--beige) !important;
    margin-bottom: 1.5rem;
}

.cta-card h2 {
    font-size: 3.2rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.cta-sub {
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 0.5rem;
}

.cta-invite {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--beige);
    margin-top: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    margin-top: 3rem;
    flex-wrap: wrap;
}

/* WA button — in Casa Sol palette, not WhatsApp green */
.btn-cta-wa {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    background: var(--beige);
    color: var(--navy);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 1rem 2rem;
    border-radius: 2px;
    transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}

.btn-cta-wa:hover {
    background: var(--beige-light);
    transform: translateY(-2px);
}

/* Instagram button — outline in sage, no external brand colors */
.btn-cta-ig {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    background: transparent;
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 1rem 2rem;
    border: 1.5px solid rgba(255,255,255,0.35);
    border-radius: 2px;
    transition: border-color 0.3s var(--ease), background 0.3s var(--ease), transform 0.3s var(--ease);
}

.btn-cta-ig:hover {
    border-color: var(--beige);
    color: var(--beige);
    transform: translateY(-2px);
}

/* ============================================================
   STICKY WHATSAPP (mobile only)
   ============================================================ */
.sticky-wa {
    display: none;
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 900;
    background: var(--navy);
    width: 56px; height: 56px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(19, 50, 74, 0.3);
    transition: transform 0.3s var(--ease), background 0.3s;
}

.sticky-wa:hover { background: var(--sage); transform: scale(1.08); }

/* ============================================================
   FOOTER
   ============================================================ */
#main-footer {
    background: var(--navy);
    color: var(--white);
    padding: 80px 0 0;
}

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
    color: var(--white) !important;
    margin-bottom: 0.4rem;
    display: block;
    font-size: 1.5rem;
    letter-spacing: 4px;
}

.footer-tagline {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.58rem;
    letter-spacing: 3px;
    color: var(--sage);
    text-transform: uppercase;
    font-weight: 500;
    display: block;
    margin-bottom: 1.2rem;
}

.footer-desc {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.8;
    font-style: italic;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
}

.footer-links h4,
.footer-contact h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.68rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--sage);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }

.footer-links a {
    text-decoration: none;
    color: rgba(255,255,255,0.6);
    font-size: 0.88rem;
    transition: color 0.3s;
}

.footer-links a:hover { color: var(--white); }

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-contact a {
    text-decoration: none;
    color: rgba(255,255,255,0.6);
    font-size: 0.88rem;
    transition: color 0.3s;
}

.footer-contact a:hover { color: var(--beige); }

.footer-bottom {
    text-align: center;
    padding: 24px 0;
    font-size: 0.72rem;
    color: rgba(255,255,255,0.25);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    /* Nav */
    #main-nav {
        display: none;
        position: absolute;
        top: 88px; left: 0;
        width: 100%;
        background: rgba(248,244,239,0.98);
        padding: 2rem 2.5rem;
        border-bottom: 1px solid rgba(19,50,74,0.06);
    }

    #main-nav.open { display: flex; flex-direction: column; }

    #main-nav ul {
        flex-direction: column;
        gap: 1.5rem;
        align-items: flex-start;
        width: 100%;
    }

    #main-nav ul li { width: 100%; }
    #main-nav ul a { font-size: 0.95rem; }
    .btn-nav { display: block; text-align: center; }
    .hamburger { display: flex; }

    /* Hero */
    .hero { padding: 160px 0 100px; }
    .hero-content h1 { font-size: 3.8rem; }

    /* Feature */
    .feature-grid { grid-template-columns: 1fr; gap: 3rem; }
    .feature-text h2 { font-size: 2.2rem; }

    /* Pricing */
    .pricing-grid { grid-template-columns: 1fr; }

    /* Artist */
    .artist-grid { grid-template-columns: 1fr; gap: 3rem; }
    .artist-text h2 { font-size: 2.6rem; }
    .artist-actions { justify-content: flex-start; }

    /* CTA */
    .cta-card { padding: 3.5rem 1.5rem; }
    .cta-card h2 { font-size: 2.2rem; }
    .cta-buttons { flex-direction: column; align-items: stretch; }

    /* Footer */
    .footer-inner { grid-template-columns: 1fr; gap: 2.5rem; }

    /* Sticky WA */
    .sticky-wa { display: flex; }
}

@media (max-width: 480px) {
    .hero-content h1 { font-size: 2.8rem; }
    .subtitle { font-size: 1rem; }
}
