:root {
    --noir: #0e0c0b;
    --charcoal: #1a1716;
    --warm-dark: #231f1d;
    --gold: #c4a265;
    --gold-bright: #dbb978;
    --gold-dim: #9a7d4e;
    --rose: #c4868e;
    --blush: #e8c4c8;
    --cream: #f5ede4;
    --text-light: #e8e0d8;
    --text-muted: #9c928a;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Jost', sans-serif;
    background: var(--noir);
    color: var(--text-light);
    font-weight: 300;
    overflow-x: hidden;
}

/* --- GRAIN OVERLAY --- */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
    opacity: 0.5;
}

/* --- NAVIGATION --- */
nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 22px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(180deg, rgba(14,12,11,0.95) 0%, transparent 100%);
    transition: background 0.4s ease;
}

.nav-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.78rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 400;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

/* --- HERO --- */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 0 24px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 50% 40%, rgba(196,162,101,0.06) 0%, transparent 70%),
        radial-gradient(ellipse 40% 60% at 80% 20%, rgba(196,134,142,0.04) 0%, transparent 60%),
        var(--noir);
    z-index: 0;
}

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

.hero-eyebrow {
    font-size: 0.72rem;
    letter-spacing: 8px;
    text-transform: uppercase;
    color: var(--gold-dim);
    margin-bottom: 24px;
    font-weight: 400;
    opacity: 0;
    animation: fadeSlideUp 1s ease 0.3s forwards;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 8vw, 6.5rem);
    font-weight: 300;
    line-height: 1.05;
    color: var(--cream);
    letter-spacing: 2px;
    margin-bottom: 10px;
    opacity: 0;
    animation: fadeSlideUp 1s ease 0.5s forwards;
}

.hero-title em {
    font-style: italic;
    color: var(--gold);
}

.hero-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    font-weight: 300;
    font-style: italic;
    color: var(--text-muted);
    letter-spacing: 2px;
    margin-top: 16px;
    opacity: 0;
    animation: fadeSlideUp 1s ease 0.7s forwards;
}

.hero-divider {
    width: 60px;
    height: 1px;
    background: var(--gold);
    margin: 28px auto;
    opacity: 0;
    animation: fadeSlideUp 1s ease 0.9s forwards;
}

.hero-location {
    font-size: 0.75rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 400;
    opacity: 0;
    animation: fadeSlideUp 1s ease 1.1s forwards;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: fadeSlideUp 1s ease 1.5s forwards;
}

.scroll-indicator span {
    font-size: 0.65rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--text-muted);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, var(--gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* --- PHOTO GALLERY STRIP --- */
.gallery-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
    padding: 0 3px;
}

.gallery-img {
    aspect-ratio: 3/4;
    overflow: hidden;
    position: relative;
}

.gallery-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0, 0.25, 1);
}

.gallery-img:hover img {
    transform: scale(1.06);
}

.gallery-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(14,12,11,0.4) 100%);
    pointer-events: none;
}

/* --- ABOUT SECTION --- */
.about {
    padding: 100px 24px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.section-label {
    font-size: 0.68rem;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--gold-dim);
    margin-bottom: 20px;
    font-weight: 400;
}

.about-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 300;
    color: var(--cream);
    line-height: 1.3;
    margin-bottom: 40px;
}

.about-heading em {
    font-style: italic;
    color: var(--gold);
}

.about-text {
    font-size: 1rem;
    line-height: 1.85;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.about-text p {
    margin-bottom: 20px;
}

.about-text .age-highlight {
    display: inline-block;
    color: var(--gold-bright);
    font-weight: 400;
}

/* --- SOPHIA PORTRAIT --- */
.portrait-section {
    padding: 0 24px 80px;
    display: flex;
    justify-content: center;
}

.portrait-frame {
    width: 280px;
    position: relative;
}

.portrait-frame::before {
    content: '';
    position: absolute;
    top: -8px; left: -8px;
    right: 8px; bottom: 8px;
    border: 1px solid var(--gold-dim);
    z-index: 1;
    pointer-events: none;
}

.portrait-img {
    width: 100%;
    aspect-ratio: 3/4;
    background: var(--warm-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.portrait-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.portrait-placeholder {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 20px;
}

.portrait-placeholder .icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 12px;
    opacity: 0.4;
}

.portrait-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-style: italic;
    color: var(--gold);
    text-align: center;
    margin-top: 16px;
    letter-spacing: 2px;
}

/* --- DIVIDER --- */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 20px 0;
}

.section-divider .line {
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
}

.section-divider .diamond {
    width: 6px;
    height: 6px;
    background: var(--gold);
    transform: rotate(45deg);
}

/* --- CLUSTERS SECTION --- */
.clusters {
    padding: 80px 24px;
    background: linear-gradient(180deg, var(--noir) 0%, var(--charcoal) 50%, var(--noir) 100%);
}

.clusters-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.clusters-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 300;
    color: var(--cream);
    margin-bottom: 16px;
}

.clusters-intro {
    font-size: 0.95rem;
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto 50px;
    line-height: 1.7;
}

.comparison {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0;
    align-items: stretch;
}

.comp-card {
    padding: 44px 32px;
    border-radius: 2px;
}

.comp-card.clusters-card {
    background: linear-gradient(135deg, rgba(196,162,101,0.08), rgba(196,162,101,0.03));
    border: 1px solid rgba(196,162,101,0.2);
}

.comp-card.extensions-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
}

.comp-vs {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
}

.comp-vs span {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.1rem;
    color: var(--text-muted);
}

.comp-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 20px;
}

.clusters-card h3 { color: var(--gold); }
.extensions-card h3 { color: var(--rose); }

.comp-card ul {
    list-style: none;
    text-align: left;
}

.comp-card ul li {
    font-size: 0.88rem;
    line-height: 1.6;
    color: var(--text-muted);
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    padding-left: 20px;
    position: relative;
}

.comp-card ul li:last-child { border-bottom: none; }

.clusters-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 500;
}

.extensions-card ul li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: var(--rose);
    font-weight: 500;
}

.clusters-quote {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.4rem;
    color: var(--gold-bright);
    margin-top: 50px;
    line-height: 1.5;
}

/* --- VENUS COSMETICS --- */
.cosmetics {
    padding: 80px 24px;
    text-align: center;
}

.cosmetics-card {
    max-width: 700px;
    margin: 0 auto;
    padding: 50px 40px;
    border: 1px solid var(--gold-dim);
    position: relative;
    background: linear-gradient(135deg, rgba(196,162,101,0.04), transparent);
}

.cosmetics-card::before,
.cosmetics-card::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border-color: var(--gold);
}

.cosmetics-card::before {
    top: -1px; left: -1px;
    border-top: 2px solid var(--gold);
    border-left: 2px solid var(--gold);
}

.cosmetics-card::after {
    bottom: -1px; right: -1px;
    border-bottom: 2px solid var(--gold);
    border-right: 2px solid var(--gold);
}

.cosmetics-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--cream);
    margin-bottom: 18px;
    letter-spacing: 3px;
}

.cosmetics-text {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 28px;
}

.cosmetics-link {
    display: inline-block;
    padding: 14px 36px;
    border: 1px solid var(--gold);
    color: var(--gold);
    text-decoration: none;
    font-size: 0.75rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 500;
    transition: all 0.4s ease;
}

.cosmetics-link:hover {
    background: var(--gold);
    color: var(--noir);
}

/* --- HOURS & PRICING --- */
.info-section {
    padding: 80px 24px;
    background: var(--charcoal);
}

.info-grid {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.info-block h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--cream);
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.hours-table {
    width: 100%;
    border-collapse: collapse;
}

.hours-table tr {
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.hours-table td {
    padding: 13px 0;
    font-size: 0.88rem;
}

.hours-table td:first-child {
    color: var(--text-light);
    font-weight: 400;
}

.hours-table td:last-child {
    text-align: right;
    color: var(--text-muted);
    font-weight: 300;
}

.hours-table tr.weekend td:first-child {
    color: var(--gold);
}

.price-display {
    margin-bottom: 36px;
}

.price-label {
    font-size: 0.68rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.price-amount {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
}

.price-per {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.deposit-info {
    padding: 24px;
    background: rgba(196,162,101,0.06);
    border-left: 2px solid var(--gold-dim);
    margin-top: 30px;
}

.deposit-info h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    font-weight: 500;
    color: var(--gold);
    margin-bottom: 8px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.deposit-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* --- BOOK CTA --- */
.cta {
    padding: 100px 24px;
    text-align: center;
    position: relative;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 50% 50% at 50% 50%, rgba(196,162,101,0.06), transparent);
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 300;
    color: var(--cream);
    margin-bottom: 12px;
}

.cta h2 em {
    font-style: italic;
    color: var(--gold);
}

.cta p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 36px;
}

.cta-btn {
    display: inline-block;
    padding: 18px 56px;
    background: var(--gold);
    color: var(--noir);
    text-decoration: none;
    font-family: 'Jost', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 5px;
    text-transform: uppercase;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s ease;
}

.cta-btn:hover::before { left: 100%; }

.cta-btn:hover {
    background: var(--gold-bright);
    box-shadow: 0 8px 40px rgba(196,162,101,0.3);
    transform: translateY(-2px);
}

.cta-note {
    margin-top: 20px;
    font-size: 0.78rem;
    color: var(--text-muted);
    font-style: italic;
}

/* --- FOOTER --- */
footer {
    padding: 50px 24px 40px;
    border-top: 1px solid rgba(255,255,255,0.05);
    text-align: center;
}

.footer-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--gold);
    letter-spacing: 4px;
    margin-bottom: 8px;
}

.footer-sig {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.1rem;
    color: var(--text-muted);
    margin: 16px 0;
}

.footer-copy {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.2);
    letter-spacing: 2px;
    margin-top: 20px;
}

/* --- ANIMATIONS --- */
@keyframes fadeSlideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0, 0.25, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- MOBILE --- */
@media (max-width: 700px) {
    nav { padding: 16px 20px; }
    .nav-links { display: none; }

    .comparison {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .comp-vs {
        padding: 8px 0;
    }

    .info-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .gallery-strip {
        grid-template-columns: 1fr 1fr;
    }

    .gallery-strip .gallery-img:nth-child(3) {
        grid-column: span 2;
        aspect-ratio: 16/9;
    }

    .cosmetics-card { padding: 36px 24px; }
    .portrait-frame { width: 220px; }
}

@media (max-width: 420px) {
    .hero-title { letter-spacing: 0; }
    .comp-card { padding: 30px 20px; }
}
