/* ============================================================
   MÈRE ERZULIE — VOODOO RITUALIST WEBSITE
   Design: Dark Mystical Voodoo
   ============================================================ */

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

:root {
    --black:      #060608;
    --dark:       #0d0b12;
    --card-bg:    #110f1a;
    --border:     #2a1f3d;
    --red:        #8b0000;
    --red-bright: #c0392b;
    --red-glow:   #ff2020;
    --gold:       #c9a84c;
    --gold-light: #e8c96a;
    --purple:     #2d0a4e;
    --purple-mid: #4a1a7a;
    --purple-light:#7b2d8b;
    --text:       #d4c5e2;
    --text-dim:   #8a7a9b;
    --white:      #f0e8ff;

    --font-title: 'Cinzel Decorative', serif;
    --font-heading: 'Cinzel', serif;
    --font-body:  'Crimson Text', Georgia, serif;
}

html { scroll-behavior: smooth; }

body {
    background-color: var(--black);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.7;
    overflow-x: hidden;
    min-height: 100vh;
}

a { color: var(--gold); text-decoration: none; transition: color .3s; }
a:hover { color: var(--gold-light); }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ---------- SCROLLBAR ---------- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--purple-mid); border-radius: 3px; }

/* ---------- PARTICLES ---------- */
#particles-container {
    position: fixed; inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    border-radius: 50%;
    animation: float-up linear infinite;
    opacity: 0;
}

@keyframes float-up {
    0%   { transform: translateY(100vh) translateX(0) scale(0); opacity: 0; }
    10%  { opacity: 1; }
    90%  { opacity: .4; }
    100% { transform: translateY(-10vh) translateX(var(--drift)) scale(1.5); opacity: 0; }
}

/* ---------- SMOKE OVERLAY ---------- */
.smoke-overlay {
    position: fixed; inset: 0;
    pointer-events: none;
    z-index: 1;
    background: radial-gradient(ellipse at 50% 100%, rgba(45,10,78,.3) 0%, transparent 70%);
}

/* ---------- HEADER ---------- */
.site-header {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 1000;
    background: linear-gradient(to bottom, rgba(6,6,8,.98) 0%, rgba(6,6,8,.85) 100%);
    border-bottom: 1px solid rgba(201,168,76,.2);
    backdrop-filter: blur(12px);
}

.header-inner {
    max-width: 1200px; margin: 0 auto;
    padding: 0 2rem;
    height: 80px;
    display: flex; align-items: center; justify-content: space-between;
}

.logo a {
    display: flex; align-items: center; gap: 1rem;
    color: inherit; text-decoration: none;
}

.logo-symbol {
    font-size: 2.2rem;
    color: var(--gold);
    filter: drop-shadow(0 0 8px var(--gold));
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { filter: drop-shadow(0 0 6px var(--gold)); }
    50%       { filter: drop-shadow(0 0 16px var(--gold-light)); }
}

.logo-text { display: flex; flex-direction: column; }
.logo-name {
    font-family: var(--font-title);
    font-size: 1.1rem;
    color: var(--gold-light);
    letter-spacing: .1em;
    line-height: 1.2;
}
.logo-tagline {
    font-family: var(--font-body);
    font-size: .75rem;
    color: var(--text-dim);
    font-style: italic;
    letter-spacing: .05em;
}

.main-nav ul {
    display: flex; align-items: center; gap: 2rem;
}
.main-nav a {
    font-family: var(--font-heading);
    font-size: .85rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--text-dim);
    transition: color .3s;
}
.main-nav a:hover { color: var(--gold-light); }

.nav-cta {
    background: linear-gradient(135deg, var(--red) 0%, #5c0010 100%) !important;
    color: var(--gold-light) !important;
    padding: .5rem 1.4rem !important;
    border-radius: 2px;
    border: 1px solid rgba(201,168,76,.3);
    box-shadow: 0 0 20px rgba(139,0,0,.4);
    transition: all .3s !important;
}
.nav-cta:hover {
    box-shadow: 0 0 30px rgba(139,0,0,.7) !important;
    transform: translateY(-1px);
}

.menu-toggle {
    display: none;
    background: none; border: none;
    color: var(--gold); font-size: 1.5rem; cursor: pointer;
}

/* ---------- MAIN CONTENT WRAPPER ---------- */
main { position: relative; z-index: 2; padding-top: 80px; }

/* ---------- HERO SECTION ---------- */
.hero {
    min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 6rem 2rem 4rem;
}

.hero-bg {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(45,10,78,.8) 0%, transparent 60%),
        radial-gradient(ellipse at 50% 100%, rgba(139,0,0,.4) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(6,6,8,0) 0%, rgba(6,6,8,.9) 100%);
    z-index: 0;
}

/* Voodoo doll SVG background */
.hero-doll {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: min(500px, 80vw);
    opacity: .06;
    pointer-events: none;
    animation: doll-breathe 6s ease-in-out infinite;
}

@keyframes doll-breathe {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: .06; }
    50%       { transform: translate(-50%, -52%) scale(1.03); opacity: .09; }
}

.hero-content { position: relative; z-index: 1; max-width: 800px; }

.hero-eyebrow {
    font-family: var(--font-heading);
    font-size: .8rem;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
    display: flex; align-items: center; justify-content: center; gap: 1rem;
}
.hero-eyebrow::before,
.hero-eyebrow::after {
    content: ''; flex: 1; max-width: 80px;
    height: 1px; background: linear-gradient(to right, transparent, var(--gold));
}
.hero-eyebrow::after { background: linear-gradient(to left, transparent, var(--gold)); }

.hero h1 {
    font-family: var(--font-title);
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 40px rgba(201,168,76,.3);
}

.hero h1 em {
    font-style: normal;
    color: var(--gold-light);
    display: block;
    font-size: .7em;
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-dim);
    margin-bottom: 3rem;
    max-width: 600px; margin-left: auto; margin-right: auto;
    font-style: italic;
    margin-bottom: 3rem;
}

.hero-ctas {
    display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
}

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex; align-items: center; gap: .5rem;
    font-family: var(--font-heading);
    font-size: .85rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: .9rem 2rem;
    border-radius: 2px;
    border: none; cursor: pointer;
    transition: all .3s;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--red) 0%, #6b0000 100%);
    color: var(--gold-light);
    border: 1px solid rgba(201,168,76,.3);
    box-shadow: 0 4px 30px rgba(139,0,0,.5), inset 0 1px 0 rgba(255,255,255,.05);
}
.btn-primary:hover {
    background: linear-gradient(135deg, var(--red-bright) 0%, var(--red) 100%);
    box-shadow: 0 6px 40px rgba(139,0,0,.8);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--gold);
    border: 1px solid rgba(201,168,76,.5);
    box-shadow: 0 0 20px rgba(201,168,76,.1);
}
.btn-outline:hover {
    background: rgba(201,168,76,.08);
    border-color: var(--gold);
    box-shadow: 0 0 30px rgba(201,168,76,.3);
    color: var(--gold-light);
    transform: translateY(-2px);
}

.btn-ghost {
    background: rgba(45,10,78,.4);
    color: var(--text);
    border: 1px solid var(--border);
}
.btn-ghost:hover {
    background: rgba(74,26,122,.4);
    border-color: var(--purple-light);
    color: var(--white);
}

/* ---------- SECTION COMMON ---------- */
section { position: relative; z-index: 2; }

.section-title {
    text-align: center;
    margin-bottom: 1rem;
}
.section-title h2 {
    font-family: var(--font-title);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    color: var(--white);
    margin-bottom: .5rem;
}
.section-title .gold-bar {
    width: 80px; height: 2px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    margin: .8rem auto 1.5rem;
}
.section-title p {
    color: var(--text-dim);
    font-style: italic;
    max-width: 600px; margin: 0 auto;
}

/* ---------- RITUAL CARDS (Boutique) ---------- */
.boutique-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px; margin: 0 auto;
    padding: 0 2rem;
}

.ritual-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
    transition: all .4s;
    position: relative;
    display: flex; flex-direction: column;
}

.ritual-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity .4s;
}
.ritual-card:hover::before { opacity: 1; }

.ritual-card:hover {
    border-color: rgba(201,168,76,.4);
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0,0,0,.6), 0 0 40px rgba(139,0,0,.2);
}

.ritual-card.featured {
    border-color: rgba(139,0,0,.5);
    box-shadow: 0 0 30px rgba(139,0,0,.15);
}
.ritual-card.featured::before { opacity: 1; background: linear-gradient(to right, transparent, var(--red-bright), transparent); }

.card-badge {
    position: absolute; top: 1rem; right: 1rem;
    background: linear-gradient(135deg, var(--red) 0%, #6b0000 100%);
    color: var(--gold-light);
    font-family: var(--font-heading);
    font-size: .65rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    padding: .3rem .8rem;
    border-radius: 2px;
    border: 1px solid rgba(201,168,76,.2);
}

.card-icon {
    height: 180px;
    display: flex; align-items: center; justify-content: center;
    background: radial-gradient(ellipse at center, rgba(45,10,78,.5) 0%, transparent 70%);
    font-size: 5rem;
    position: relative;
    overflow: hidden;
}

.card-icon::after {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at center, rgba(139,0,0,.1) 0%, transparent 70%);
}

.card-icon .doll-svg {
    width: 100px; height: 140px;
    animation: doll-sway 4s ease-in-out infinite;
    filter: drop-shadow(0 0 15px rgba(201,168,76,.4));
}

@keyframes doll-sway {
    0%, 100% { transform: rotate(-3deg); }
    50%       { transform: rotate(3deg); }
}

.card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }

.card-intensity {
    display: flex; gap: .3rem;
    margin-bottom: .8rem;
}
.intensity-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--border);
}
.intensity-dot.active { background: var(--red-bright); box-shadow: 0 0 6px var(--red-glow); }

.card-body h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: .7rem;
    line-height: 1.3;
}
.card-body p {
    color: var(--text-dim);
    font-size: .95rem;
    flex: 1;
    margin-bottom: 1.2rem;
}

.card-meta {
    display: flex; gap: 1rem;
    margin-bottom: 1.2rem;
    font-size: .8rem;
    color: var(--text-dim);
}
.card-meta span {
    display: flex; align-items: center; gap: .3rem;
}

.card-footer {
    display: flex; align-items: center; justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}
.card-long-desc {
    margin: .8rem 0;
    color: var(--text-dim);
    font-size: .9rem;
    line-height: 1.7;
    border-left: 2px solid rgba(201,168,76,.3);
    padding-left: 1rem;
}
.card-long-desc p { margin: 0 0 .8rem; }
.card-long-desc p:last-child { margin-bottom: 0; }
.btn-read-more {
    background: none;
    border: none;
    color: var(--gold);
    font-size: .82rem;
    cursor: pointer;
    padding: 0;
    margin: .4rem 0 .8rem;
    letter-spacing: .05em;
    opacity: .8;
    transition: opacity .2s;
}
.btn-read-more:hover { opacity: 1; }

.card-price {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--gold-light);
    font-weight: 600;
}
.card-price span {
    font-size: .8rem;
    color: var(--text-dim);
    font-weight: 400;
    display: block;
    line-height: 1;
}

/* ---------- BOUTIQUE PAGE LAYOUT ---------- */
.boutique-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom, var(--dark) 0%, var(--black) 100%);
}

.boutique-intro {
    text-align: center;
    max-width: 700px; margin: 0 auto 4rem;
    padding: 0 2rem;
}

/* ---------- ORDER MODAL ---------- */
.modal-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,.85);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: none; align-items: center; justify-content: center;
    padding: 1rem;
}
.modal-overlay.active { display: flex; }

.modal {
    background: var(--card-bg);
    border: 1px solid rgba(201,168,76,.3);
    border-radius: 6px;
    width: 100%; max-width: 580px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 30px 100px rgba(0,0,0,.8), 0 0 60px rgba(139,0,0,.2);
    animation: modal-enter .4s ease;
}

@keyframes modal-enter {
    from { transform: translateY(30px) scale(.97); opacity: 0; }
    to   { transform: none; opacity: 1; }
}

.modal-header {
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid var(--border);
    text-align: center;
    background: radial-gradient(ellipse at top, rgba(45,10,78,.4) 0%, transparent 70%);
}
.modal-header h3 {
    font-family: var(--font-title);
    font-size: 1.2rem;
    color: var(--gold-light);
    margin-bottom: .3rem;
}
.modal-header p { color: var(--text-dim); font-size: .9rem; font-style: italic; }

.modal-close {
    position: absolute; top: 1rem; right: 1rem;
    background: none; border: none;
    color: var(--text-dim); font-size: 1.5rem; cursor: pointer;
    transition: color .2s; line-height: 1;
}
.modal-close:hover { color: var(--red-bright); }

.modal-body { padding: 1.5rem 2rem 2rem; }

/* ---------- FORMS ---------- */
.form-group { margin-bottom: 1.2rem; }

.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-size: .8rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: .4rem;
}
.form-group label .required { color: var(--red-bright); }

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    background: rgba(255,255,255,.04);
    border: 1px solid var(--border);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1rem;
    padding: .7rem 1rem;
    border-radius: 2px;
    transition: border-color .3s, box-shadow .3s;
    outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: rgba(201,168,76,.5);
    box-shadow: 0 0 0 3px rgba(201,168,76,.08);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select option { background: var(--dark); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-hint {
    font-size: .8rem;
    color: var(--text-dim);
    margin-top: .3rem;
    font-style: italic;
}

.form-upload-area {
    border: 2px dashed var(--border);
    border-radius: 4px;
    padding: 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: all .3s;
    position: relative;
}
.form-upload-area:hover { border-color: rgba(201,168,76,.4); background: rgba(201,168,76,.03); }
.form-upload-area input[type="file"] {
    display: none;
}
.upload-icon { font-size: 2rem; margin-bottom: .5rem; opacity: .5; }
.upload-label { font-size: .9rem; color: var(--text-dim); }

.form-price-summary {
    background: rgba(139,0,0,.1);
    border: 1px solid rgba(139,0,0,.3);
    border-radius: 4px;
    padding: 1rem 1.2rem;
    margin: 1.2rem 0;
    display: flex; justify-content: space-between; align-items: center;
}
.form-price-summary .label { color: var(--text-dim); font-size: .9rem; }
.form-price-summary .price { font-family: var(--font-heading); font-size: 1.4rem; color: var(--gold-light); }

.payment-info {
    background: rgba(45,10,78,.3);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 1rem 1.2rem;
    margin-bottom: 1.2rem;
    font-size: .9rem;
}
.payment-info h4 {
    font-family: var(--font-heading);
    font-size: .8rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--purple-light);
    margin-bottom: .5rem;
}
.payment-info p { color: var(--text-dim); margin-bottom: .2rem; }

/* ---------- TESTIMONIALS ---------- */
.testimonials-section {
    padding: 5rem 0;
    background: var(--dark);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    max-width: 1100px; margin: 0 auto;
    padding: 0 2rem;
}

.testimonial-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 1.5rem;
    position: relative;
    transition: transform .3s;
}
.testimonial-card:hover { transform: translateY(-4px); }
.testimonial-card::before {
    content: '\201C';
    position: absolute; top: .8rem; left: 1rem;
    font-size: 4rem;
    color: rgba(139,0,0,.3);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-stars { color: var(--gold); font-size: .9rem; margin-bottom: .8rem; margin-top: .5rem; }
.testimonial-text { font-style: italic; color: var(--text); margin-bottom: 1rem; font-size: .95rem; }
.testimonial-author {
    font-family: var(--font-heading);
    font-size: .8rem;
    color: var(--text-dim);
    letter-spacing: .05em;
}

/* ---------- FEATURES / WHY ---------- */
.features-section {
    padding: 5rem 0;
    background: var(--black);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    max-width: 1100px; margin: 0 auto;
    padding: 0 2rem;
}

.feature-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 4px;
    transition: all .3s;
}
.feature-item:hover {
    border-color: rgba(201,168,76,.3);
    box-shadow: 0 10px 40px rgba(0,0,0,.4);
}
.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px var(--gold));
}
.feature-item h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--gold-light);
    margin-bottom: .5rem;
    letter-spacing: .05em;
}
.feature-item p { font-size: .9rem; color: var(--text-dim); }

/* ---------- URGENCY / PROMO BANNER ---------- */
.promo-banner {
    background: linear-gradient(135deg, rgba(139,0,0,.4) 0%, rgba(45,10,78,.4) 100%);
    border-top: 1px solid rgba(139,0,0,.3);
    border-bottom: 1px solid rgba(139,0,0,.3);
    text-align: center;
    padding: 1.5rem;
    font-family: var(--font-heading);
    font-size: .85rem;
    letter-spacing: .1em;
    color: var(--gold-light);
}

/* ---------- FAQ ---------- */
.faq-section {
    padding: 5rem 0;
    background: var(--dark);
}

.faq-list {
    max-width: 750px; margin: 0 auto;
    padding: 0 2rem;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: 4px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    width: 100%; background: var(--card-bg);
    border: none; cursor: pointer;
    padding: 1.2rem 1.5rem;
    text-align: left;
    color: var(--white);
    font-family: var(--font-heading);
    font-size: .9rem;
    letter-spacing: .05em;
    display: flex; justify-content: space-between; align-items: center;
    transition: background .3s;
}
.faq-question:hover { background: rgba(45,10,78,.4); }
.faq-question.active { color: var(--gold-light); }
.faq-arrow { transition: transform .3s; font-size: 1rem; }
.faq-question.active .faq-arrow { transform: rotate(180deg); }

.faq-answer {
    display: none;
    padding: 1rem 1.5rem 1.2rem;
    background: rgba(45,10,78,.15);
    color: var(--text-dim);
    font-size: .95rem;
    line-height: 1.7;
    border-top: 1px solid var(--border);
}
.faq-answer.open { display: block; }

/* ---------- CONTACT PAGE ---------- */
.contact-section {
    padding: 5rem 0;
    min-height: 80vh;
}
.contact-wrapper {
    max-width: 650px; margin: 0 auto;
    padding: 0 2rem;
}
.contact-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 2.5rem;
    box-shadow: 0 20px 60px rgba(0,0,0,.5);
}
.contact-card h2 {
    font-family: var(--font-title);
    font-size: 1.5rem;
    color: var(--gold-light);
    text-align: center;
    margin-bottom: .5rem;
}
.contact-card .subtitle {
    text-align: center;
    color: var(--text-dim);
    font-style: italic;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
}

/* ---------- MERCI PAGE ---------- */
.merci-section {
    padding: 8rem 2rem;
    min-height: 80vh;
    display: flex; align-items: center; justify-content: center;
    text-align: center;
}
.merci-card {
    background: var(--card-bg);
    border: 1px solid rgba(201,168,76,.3);
    border-radius: 6px;
    padding: 3rem;
    max-width: 600px;
    box-shadow: 0 0 60px rgba(139,0,0,.2);
}
.merci-icon { font-size: 4rem; margin-bottom: 1.5rem; animation: pulse-glow 3s infinite; }
.merci-card h1 {
    font-family: var(--font-title);
    font-size: 1.8rem;
    color: var(--gold-light);
    margin-bottom: 1rem;
}
.merci-ref {
    background: rgba(45,10,78,.5);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: .8rem 1.5rem;
    margin: 1.5rem 0;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--gold);
    letter-spacing: .1em;
}

/* ---------- ADMIN ---------- */
.admin-body { background: #0f0f14; }
.admin-header {
    background: #1a1a2e;
    border-bottom: 1px solid #333;
    padding: 1rem 2rem;
    display: flex; justify-content: space-between; align-items: center;
}
.admin-title { color: var(--gold); font-family: var(--font-heading); }
.admin-main { max-width: 1100px; margin: 2rem auto; padding: 0 2rem; }
.admin-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
    font-size: .9rem;
}
.admin-table th {
    background: rgba(45,10,78,.5);
    color: var(--gold);
    font-family: var(--font-heading);
    font-size: .75rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: .9rem 1rem;
    text-align: left;
}
.admin-table td { padding: .8rem 1rem; color: var(--text); border-top: 1px solid var(--border); }
.admin-table tr:hover td { background: rgba(255,255,255,.02); }
.status-badge {
    padding: .2rem .7rem;
    border-radius: 20px;
    font-size: .75rem;
    font-family: var(--font-heading);
    letter-spacing: .05em;
}
.status-pending    { background: rgba(201,168,76,.15); color: var(--gold); }
.status-confirmed  { background: rgba(41,182,246,.15); color: #29b6f6; }
.status-in_progress{ background: rgba(139,0,0,.2);   color: #ef5350; }
.status-completed  { background: rgba(76,175,80,.15); color: #66bb6a; }
.status-cancelled  { background: rgba(100,100,100,.15); color: #888; }

/* ---------- FOOTER ---------- */
.site-footer {
    background: var(--dark);
    border-top: 1px solid var(--border);
    position: relative;
    z-index: 2;
    margin-top: 4rem;
}

.footer-glow {
    position: absolute; top: 0; left: 50%; transform: translateX(-50%);
    width: 400px; height: 2px;
    background: linear-gradient(to right, transparent, var(--red), transparent);
}

.footer-inner {
    max-width: 1200px; margin: 0 auto;
    padding: 4rem 2rem 2rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
}

.footer-brand .logo-symbol { font-size: 2.5rem; color: var(--gold); display: block; margin-bottom: .5rem; }
.footer-name {
    font-family: var(--font-title);
    font-size: 1.2rem;
    color: var(--gold-light);
    margin-bottom: .2rem;
}
.footer-sub { font-size: .8rem; color: var(--text-dim); margin-bottom: 1rem; }
.footer-quote { color: var(--text-dim); font-style: italic; font-size: .9rem; }

.footer-links h4,
.footer-rituals h4,
.footer-contact h4 {
    font-family: var(--font-heading);
    font-size: .8rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
    padding-bottom: .5rem;
    border-bottom: 1px solid var(--border);
}
.footer-links li,
.footer-rituals li { margin-bottom: .5rem; }
.footer-links a,
.footer-rituals a { color: var(--text-dim); font-size: .9rem; transition: color .3s; }
.footer-links a:hover,
.footer-rituals a:hover { color: var(--gold-light); }

.footer-contact p { color: var(--text-dim); font-size: .9rem; margin-bottom: .4rem; }

.footer-bottom {
    max-width: 1200px; margin: 0 auto;
    padding: 1.5rem 2rem;
    border-top: 1px solid var(--border);
    text-align: center;
    font-size: .8rem;
    color: var(--text-dim);
}
.footer-bottom a { color: var(--text-dim); }
.footer-bottom a:hover { color: var(--gold); }
.disclaimer { margin-top: .4rem; opacity: .6; font-style: italic; font-size: .75rem; }

/* ---------- CANDLE ANIMATION ---------- */
.candle-row {
    display: flex; justify-content: center; gap: 3rem;
    padding: 2rem 0;
}

.candle { position: relative; display: flex; flex-direction: column; align-items: center; }

.candle-body {
    width: 20px; height: 80px;
    background: linear-gradient(to bottom, #f5e6c8 0%, #d4a853 50%, #a07030 100%);
    border-radius: 3px 3px 2px 2px;
    position: relative;
    box-shadow: inset -3px 0 6px rgba(0,0,0,.2);
}

.candle-wick {
    width: 2px; height: 14px;
    background: #2a1a0a;
    margin-bottom: -1px;
    border-radius: 1px;
}

.flame {
    position: relative;
    width: 12px; height: 22px;
    background: radial-gradient(ellipse at 50% 80%, #ff9500 0%, #ff5500 40%, #ff2200 70%, transparent 100%);
    border-radius: 50% 50% 40% 40%;
    animation: flicker 0.15s infinite alternate;
    filter: blur(.5px);
}
.flame::before {
    content: '';
    position: absolute;
    bottom: 3px; left: 50%; transform: translateX(-50%);
    width: 6px; height: 14px;
    background: radial-gradient(ellipse at 50% 70%, #fff 0%, #fff9 30%, transparent 80%);
    border-radius: 50%;
}

@keyframes flicker {
    0%   { transform: scaleX(1) scaleY(1) rotate(-1deg); }
    50%  { transform: scaleX(0.9) scaleY(1.05) rotate(1deg); }
    100% { transform: scaleX(1.1) scaleY(0.97) rotate(-0.5deg); }
}

/* ---------- PAGE HERO (inner pages) ---------- */
.page-hero {
    padding: 6rem 2rem 4rem;
    text-align: center;
    background: radial-gradient(ellipse at 50% 0%, rgba(45,10,78,.6) 0%, transparent 60%);
    border-bottom: 1px solid var(--border);
}
.page-hero h1 {
    font-family: var(--font-title);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--white);
    margin-bottom: .8rem;
}
.page-hero p { color: var(--text-dim); font-style: italic; font-size: 1.05rem; }

/* ---------- ALERT MESSAGES ---------- */
.alert {
    padding: 1rem 1.2rem;
    border-radius: 4px;
    margin-bottom: 1.2rem;
    font-size: .95rem;
}
.alert-success { background: rgba(76,175,80,.15); border: 1px solid rgba(76,175,80,.3); color: #a5d6a7; }
.alert-error   { background: rgba(139,0,0,.2);    border: 1px solid rgba(139,0,0,.4);   color: #ef9a9a; }

/* ---------- RESPONSIVE ---------- */
/* ---------- BLOG ---------- */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1100px; margin: 0 auto;
    padding: 0 2rem;
}

.blog-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 2rem;
    display: flex; flex-direction: column;
    transition: all .3s;
    position: relative;
}
.blog-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    opacity: 0; transition: opacity .3s;
}
.blog-card:hover { transform: translateY(-5px); border-color: rgba(201,168,76,.3); box-shadow: 0 15px 40px rgba(0,0,0,.5); }
.blog-card:hover::before { opacity: 1; }

.blog-card-icon { font-size: 2.5rem; margin-bottom: 1rem; filter: drop-shadow(0 0 8px var(--gold)); }

.blog-card-meta {
    display: flex; gap: 1rem; flex-wrap: wrap;
    font-size: .8rem; color: var(--text-dim);
    margin-bottom: .8rem;
    font-family: var(--font-heading);
    letter-spacing: .05em;
}

.blog-card h2 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    color: var(--white);
    margin-bottom: .8rem;
    line-height: 1.4;
}
.blog-card h2 a { color: var(--white); transition: color .3s; }
.blog-card h2 a:hover { color: var(--gold-light); }

.blog-excerpt {
    color: var(--text-dim);
    font-size: .95rem;
    line-height: 1.7;
    flex: 1;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-tags { display: flex; flex-wrap: wrap; gap: .4rem; }
.blog-tag {
    background: rgba(45,10,78,.5);
    border: 1px solid rgba(123,45,139,.3);
    color: var(--gold);
    font-size: .7rem;
    font-family: var(--font-heading);
    letter-spacing: .08em;
    padding: .2rem .7rem;
    border-radius: 20px;
}

/* Article blog */
.article-hero {
    padding: 6rem 2rem 3rem;
    text-align: center;
    background: radial-gradient(ellipse at 50% 0%, rgba(45,10,78,.6) 0%, transparent 60%);
    border-bottom: 1px solid var(--border);
    max-width: 800px; margin: 0 auto;
}
.article-hero h1 {
    font-family: var(--font-title);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.3;
}
.article-meta {
    display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap;
    font-size: .85rem; color: var(--text-dim);
    font-family: var(--font-heading);
    letter-spacing: .05em;
    margin-bottom: 1rem;
}
.article-body {
    max-width: 800px; margin: 0 auto;
    padding: 3rem 2rem 5rem;
}
.article-body h2 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--gold-light);
    margin: 2.5rem 0 1rem;
    padding-bottom: .5rem;
    border-bottom: 1px solid var(--border);
}
.article-body h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    color: var(--white);
    margin: 1.5rem 0 .7rem;
}
.article-body p { margin-bottom: 1.2rem; line-height: 1.8; }
.article-body ul, .article-body ol { margin: 1rem 0 1.5rem 1.5rem; }
.article-body li { margin-bottom: .5rem; color: var(--text); }
.article-body strong { color: var(--gold-light); }
.article-body a { color: var(--gold); border-bottom: 1px solid rgba(201,168,76,.3); }
.article-body a:hover { color: var(--gold-light); border-bottom-color: var(--gold); }

.article-cta {
    background: linear-gradient(135deg, rgba(139,0,0,.2) 0%, rgba(45,10,78,.3) 100%);
    border: 1px solid rgba(139,0,0,.3);
    border-radius: 6px;
    padding: 2rem;
    text-align: center;
    margin: 2rem 0;
}
.article-cta h3 { font-family: var(--font-title); color: var(--gold-light); margin-bottom: .5rem; font-size: 1.1rem; }
.article-cta p { color: var(--text-dim); margin-bottom: 1.2rem; font-style: italic; }

.article-breadcrumb {
    max-width: 800px; margin: 0 auto;
    padding: 1.5rem 2rem 0;
    font-size: .8rem;
    font-family: var(--font-heading);
    color: var(--text-dim);
    letter-spacing: .05em;
}
.article-breadcrumb a { color: var(--text-dim); }
.article-breadcrumb a:hover { color: var(--gold); }

/* ---------- FIN BLOG ---------- */

@media (max-width: 900px) {
    .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
    .main-nav { display: none; }
    .main-nav.open {
        display: flex; flex-direction: column;
        position: fixed; inset: 80px 0 0;
        background: rgba(6,6,8,.97);
        padding: 2rem;
        z-index: 999;
    }
    .main-nav.open ul { flex-direction: column; gap: 1.5rem; }
    .menu-toggle { display: block; }
    .footer-inner { grid-template-columns: 1fr; gap: 1.5rem; }
    .hero h1 { font-size: 1.8rem; }
    .boutique-grid { grid-template-columns: 1fr; }
}
