/* ═══════════════════════════════════════════════════
   CRISTINA — AUTHENTIC & PERSONAL
   Hand-crafted feels, continuous night sky, editorial.
   ═══════════════════════════════════════════════════ */

:root {
    --bg-black: #050406;
    --gold-leaf: #c4a161;
    --gold-bright: #e2c695;
    --gold-dark: #8b6d3b;
    
    --text-high: #fbf9f4;
    --text-mid: #bdbbb1;
    --text-low: #6b6962;

    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Inter', sans-serif;
    --font-hand: 'EB Garamond', serif;

    --max-w: 1100px;
    --transition: 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

/* ── Reset ── */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    background-color: var(--bg-black);
    color: var(--text-mid);
    font-family: var(--font-sans);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3 { 
    font-family: var(--font-serif); 
    color: var(--text-high); 
    font-weight: 300;
    line-height: 1.15;
}

.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 7%;
}

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

/* ═══════════════════════════════════
   STARFIELD & BACKGROUND
   ═══════════════════════════════════ */
#starfield {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: -2;
    pointer-events: none;
}
.stars-overlay {
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at center, transparent, rgba(0,0,0,0.4));
    z-index: -1;
    pointer-events: none;
}

/* ═══════════════════════════════════
   NAVBAR
   ═══════════════════════════════════ */
.navbar {
    position: fixed;
    top: 0; width: 100%;
    z-index: 100;
    padding: 1.5rem 0;
    transition: var(--transition);
}
.navbar.scrolled {
    background: rgba(5, 4, 6, 0.8);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
}
.nav-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 7%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--text-high);
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
.logo .symbol { color: var(--gold-leaf); }

.btn-nav {
    text-decoration: none;
    color: var(--gold-leaf);
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid var(--gold-leaf);
    padding: 0.6rem 1.4rem;
    transition: var(--transition);
}
.btn-nav:hover {
    background: var(--gold-leaf);
    color: var(--bg-black);
}

/* ═══════════════════════════════════
   HERO
   ═══════════════════════════════════ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 5rem;
    background-image: url('cristina-hero.jpg');
    background-size: cover;
    background-position: center 20%;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(5, 4, 6, 0.95) 0%, rgba(5, 4, 6, 0.7) 40%, rgba(5, 4, 6, 0.2) 100%);
    z-index: 1;
}
.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 650px;
    margin: 0;
}

.label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    color: var(--gold-leaf);
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: clamp(2.8rem, 5.5vw, 4.5rem);
    margin-bottom: 2rem;
    line-height: 1.15;
}
.hero h1 em {
    font-style: italic;
    color: var(--gold-bright);
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 480px;
    color: var(--text-mid);
}

.hero-btns {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.btn {
    padding: 1.1rem 2.5rem;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    border-radius: 2px;
}
.btn-primary {
    background: var(--gold-leaf);
    color: var(--bg-black);
}
.btn-primary:hover {
    background: var(--gold-bright);
    transform: translateY(-3px);
}
.btn-link {
    color: var(--text-high);
    padding-left: 0;
}
.btn-link span { transition: transform 0.3s ease; display: inline-block; }
.btn-link:hover span { transform: translateX(5px); }


/* ═══════════════════════════════════
   SECTIONS
   ═══════════════════════════════════ */
section {
    padding: 10rem 0;
    position: relative;
}

.section-intro h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    margin: 0 auto 5rem;
    max-width: 700px;
}

.pain-points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}
.pain-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 3rem 2rem;
    text-align: center;
    transition: var(--transition);
}
.pain-card:hover {
    background: rgba(196, 161, 97, 0.05);
    border-color: var(--gold-leaf);
    transform: translateY(-10px);
}
.icon-orb {
    width: 60px; height: 60px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    color: var(--gold-leaf);
    border: 1px solid var(--gold-leaf);
    border-radius: 50%;
}
.pain-card h3 {
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

/* ── About Area ── */
.about-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 6rem;
    align-items: center;
}
.about-image {
    position: relative;
}
.organic-frame img {
    width: 100%;
    border-radius: 4px;
}
.handwritten-caption {
    font-family: var(--font-hand);
    font-size: 1.4rem;
    font-style: italic;
    color: var(--gold-bright);
    margin-top: 1.5rem;
}

.about-text h2 {
    font-size: clamp(2.2rem, 4vw, 3rem);
    margin-bottom: 2rem;
}
.text-block p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

/* ── Promise Area ── */
.promise-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3rem;
    margin-top: 4rem;
}
.promise-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
}
.promise-item .check { color: var(--gold-leaf); }

/* ── Contact Area ── */
.contact-links {
    margin-top: 4rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
}
.contact-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 2.5rem 3rem;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: var(--transition);
    min-width: 320px;
}
.contact-card.accent {
    border-color: var(--gold-leaf);
}
.contact-card:hover {
    background: var(--gold-leaf);
    transform: translateY(-5px);
}
.contact-card:hover * {
    color: var(--bg-black) !important;
}
.contact-card .icon {
    margin-bottom: 1.5rem;
    color: var(--gold-leaf);
}
.contact-card strong {
    color: var(--text-high);
    font-size: 1.5rem;
    font-family: var(--font-sans);
    font-weight: 500;
    letter-spacing: 0.05rem;
    margin-bottom: 0.5rem;
}
.contact-card span {
    color: var(--text-low);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
}

/* ═══════════════════════════════════
   FOOTER
   ═══════════════════════════════════ */
.footer {
    padding: 6rem 0 3rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 4rem;
}
.footer-info .logo { margin-bottom: 1rem; }
.footer-info p { font-size: 0.9rem; color: var(--text-low); }

.footer-nav a {
    color: var(--text-low);
    text-decoration: none;
    margin-left: 2rem;
    font-size: 0.85rem;
}
.footer-nav a:hover { color: var(--gold-leaf); }

.footer-bottom {
    text-align: center;
    color: var(--text-low);
    font-size: 0.8rem;
}

/* ═══════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s cubic-bezier(0.22, 1, 0.36, 1), 
                transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-delay { transition-delay: 0.2s; }
.reveal-delay-2 { transition-delay: 0.4s; }

/* ═══════════════════════════════════
   RESPONSIVE — TABLET
   ═══════════════════════════════════ */
@media (max-width: 1024px) {
    .hero::before { background: linear-gradient(to bottom, rgba(5, 4, 6, 0.9) 0%, rgba(5, 4, 6, 0.6) 100%); }
    .hero-inner { text-align: center; margin: 0 auto; }
    .hero p { margin: 0 auto 3rem; }
    .hero-btns { justify-content: center; }
    
    .pain-points { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
    .about-grid { grid-template-columns: 1fr; }
    .about-image { max-width: 500px; margin: 0 auto; }
    .contact-links { flex-direction: column; align-items: center; }
    .contact-card { min-width: unset; width: 100%; max-width: 400px; }
    .promise-grid { flex-direction: column; align-items: center; gap: 2rem; }

    section { padding: 6rem 0; }
    .footer-wrap { flex-direction: column; gap: 2rem; text-align: center; }
    .footer-nav a { margin: 0 1rem; }
}

/* ═══════════════════════════════════
   RESPONSIVE — MOBILE
   ═══════════════════════════════════ */
@media (max-width: 640px) {
    .container { padding: 0 5%; }
    .nav-container { padding: 0 5%; }

    .hero { padding-top: 4rem; background-position: center; }
    .hero::before { background: linear-gradient(to top, rgba(5, 4, 6, 0.95) 0%, rgba(5, 4, 6, 0.6) 100%); }
    .hero h1 { font-size: 2.2rem; }
    .hero p { font-size: 1rem; }
    .hero-btns { flex-direction: column; gap: 1rem; }
    .btn { width: 100%; text-align: center; }

    section { padding: 4rem 0; }
    .section-intro h2 { margin-bottom: 3rem; }

    .pain-card { padding: 2rem 1.5rem; }

    .about-grid { gap: 3rem; }
    .about-text h2 { font-size: 2rem; }

    .contact-card { padding: 2rem 1.5rem; min-width: unset; width: 100%; }
    .contact-card strong { font-size: 1.2rem; }

    .footer { padding: 3rem 0 2rem; }
    .footer-wrap { margin-bottom: 2rem; }
}
