:root {
    --bg: #050505;
    --card-bg: #0a0a0a;
    --accent: #b91c1c;
    --text-main: #f3f4f6;
    --text-muted: #9ca3af;
    --border: rgba(255, 255, 255, 0.1);
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
}

body {
    background-color: var(--bg);
    color: var(--text-main);
    font-family: var(--font-body);
    overflow-x: hidden;
    margin: 0;
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }

/* --- HERO --- */
.care-hero {
    padding: 50px 20px 80px;
    background: radial-gradient(circle at center, #1a0505 0%, #000 80%);
    text-align: center;
}
.eyebrow { text-transform: uppercase; letter-spacing: 0.3em; color: var(--accent); font-size: 0.75rem; margin-bottom: 20px; display: block; }
.care-hero h1 { font-family: var(--font-heading); font-size: clamp(3rem, 6vw, 4.5rem); line-height: 1.1; margin-bottom: 20px; }
.care-hero p { font-size: 1.1rem; color: var(--text-muted); max-width: 600px; margin: 0 auto; line-height: 1.6; font-weight: 300; }
.scroll-line { width: 1px; height: 60px; background: linear-gradient(to bottom, var(--accent), transparent); margin: 50px auto 0; }

/* --- 1. RITUAL (Steps) --- */
.section-ritual { padding: 100px 0; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { font-family: var(--font-heading); font-size: 2.8rem; margin-bottom: 15px; }
.section-header p { color: var(--text-muted); font-size: 1rem; }

.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.step-card {
    background: rgba(255,255,255,0.02); border: 1px solid var(--border);
    padding: 40px 30px; text-align: center; border-radius: 12px; transition: 0.3s;
}
.step-card:hover { transform: translateY(-5px); border-color: var(--accent); }

.step-icon { margin-bottom: 25px; color: var(--accent); }
.step-icon svg { width: 40px; height: 40px; }

.step-card h3 { font-family: var(--font-heading); font-size: 1.5rem; margin-bottom: 15px; color: #fff; }
.step-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }

/* --- 2. GUIDE (Tips & Mistakes) --- */
.section-guide { padding: 100px 0; }
.alt-bg { background-color: var(--card-bg); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.split-guide { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }

.guide-column h3 { font-family: var(--font-heading); font-size: 2rem; margin-bottom: 30px; padding-bottom: 15px; border-bottom: 1px solid var(--border); }

.guide-list { list-style: none; padding: 0; }
.guide-list li { margin-bottom: 25px; position: relative; padding-left: 20px; }
.guide-list strong { display: block; color: #fff; font-size: 1rem; margin-bottom: 5px; font-weight: 500; }
.guide-list span { color: var(--text-muted); font-size: 0.9rem; line-height: 1.5; }

/* Custom Bullets */
.check-list li { border-left: 2px solid var(--accent); } 
.cross-list li { border-left: 2px solid #555; } /* Muted Grey for negative/mistakes */

/* --- 3. STORAGE --- */
.section-storage { padding: 100px 0; }
.section-desc { color: var(--text-muted); margin-bottom: 60px; max-width: 500px; margin-left: auto; margin-right: auto; }

.storage-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.storage-item { text-align: center; }
.icon-circle {
    width: 70px; height: 70px; border-radius: 50%; border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center; margin: 0 auto 20px;
    color: var(--accent); transition: 0.3s;
}
.icon-circle svg { width: 30px; height: 30px; }
.storage-item:hover .icon-circle { border-color: var(--accent); background: rgba(185, 28, 28, 0.1); }
.storage-item h4 { font-family: var(--font-heading); font-size: 1.3rem; margin-bottom: 10px; color: #fff; }
.storage-item p { font-size: 0.85rem; color: var(--text-muted); max-width: 250px; margin: 0 auto; }

/* --- 4. INFO & FOOTER --- */
.section-info { padding: 60px 0; }
.info-box {
    background: linear-gradient(135deg, #100505 0%, #000 100%);
    border: 1px solid var(--accent); border-radius: 12px; padding: 40px;
    display: flex; gap: 30px; align-items: flex-start; max-width: 800px; margin: 0 auto 40px;
}
.info-icon { font-size: 2.5rem; }
.info-text h3 { font-family: var(--font-heading); font-size: 1.8rem; margin-bottom: 10px; color: #fff; }
.info-text p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.6; }

.final-note { text-align: center; font-size: 0.9rem; color: #888; max-width: 700px; margin: 0 auto; border-top: 1px solid var(--border); padding-top: 30px; }
.final-note strong { color: var(--accent); }

.care-cta { padding: 60px 0 100px; }
.care-cta p { color: var(--text-muted); margin-bottom: 10px; }
.btn-link { color: #fff; font-family: var(--font-heading); font-size: 1.5rem; text-decoration: none; border-bottom: 1px solid var(--accent); padding-bottom: 2px; transition: 0.3s; }
.btn-link:hover { color: var(--accent); }

/* --- ANIMATIONS --- */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.8s, transform 0.8s; }
.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.2s; }

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 900px) {
    .steps-grid, .split-guide, .storage-grid { grid-template-columns: 1fr; gap: 40px; }
    .care-hero h1 { font-size: 2.5rem; }
    .section-header h2 { font-size: 2.2rem; }
    .info-box { flex-direction: column; text-align: center; align-items: center; }
}