:root {
    /* Compatibility variables for old style.css classes */
    --primary-color: var(--deep-rose);
    --primary-hover: var(--crimson);
    --secondary-color: var(--dusty-mauve);
    --accent-gold: var(--gold);
    --bg-dark: var(--obsidian);
    --bg-card: var(--velvet);
    --bg-card-hover: #2A1220;
    --border-color: rgba(139, 26, 43, 0.3);
    --text-main: var(--champagne);
    --text-muted: var(--smoke);

    --crimson: #8B1A2B;
    --deep-rose: #C4405A;
    --blush: #E8748A;
    --dusty-mauve: #9E6B7A;
    --velvet: #3D1A26;
    --midnight: #1A0D14;
    --obsidian: #0D0609;
    --gold: #C9953C;
    --champagne: #E8D5A3;
    --parchment: #F5EAD7;
    --smoke: #B8A8B0;
    --shadow: rgba(13, 6, 9, 0.85);

    --font-display: 'Cinzel Decorative', serif;
    --font-heading: 'Cormorant Garamond', serif;
    --font-sub: 'Playfair Display', serif;
    --font-body: 'Raleway', sans-serif;

    --nav-h: 72px;
}

@font-face {
    font-family: 'AlphaSilouettes2';
    src: url('assets/Alpha-Silouettes%202.ttf') format('truetype');
}

.alphabet-letter {
    font-family: 'AlphaSilouettes2', var(--font-display);
    font-size: 1.5em;
    vertical-align: middle;
    color: var(--gold);
    display: inline-block;
}

@font-face {
    font-family: 'Bamini';
    src: url('assets/BAMINI-Tamil55.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--obsidian);
    color: var(--parchment);
    font-family: var(--font-body);
    font-weight: 300;
    overflow-x: hidden;
    cursor: none;
}

/* ─── CUSTOM CURSOR ─────────────────────────────── */
.cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 8px;
    height: 8px;
    background: var(--blush);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    /* No transition for the dot to make it feel immediate */
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9998;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(232, 116, 138, 0.5);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: all 0.18s ease;
}

body:has(a:hover) .cursor-ring,
body:has(button:hover) .cursor-ring,
body:has(.btn:hover) .cursor-ring {
    transform: translate(-50%, -50%) scale(1.5);
    border-color: var(--gold);
    background: rgba(201, 149, 60, 0.1);
}

/* Essential: Hide default cursor on all interactive elements */
a,
button,
.btn,
input,
select,
textarea,
[role="button"] {
    cursor: none !important;
}

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

/* ─── SCROLLBAR ─────────────────────────────────── */
::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-track {
    background: var(--obsidian);
}

::-webkit-scrollbar-thumb {
    background: var(--crimson);
    border-radius: 2px;
}

/* ─── NAV ───────────────────────────────────────── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    height: var(--nav-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 clamp(1.5rem, 5vw, 4rem);
    background: linear-gradient(180deg, rgba(13, 6, 9, 0.97) 0%, transparent 100%);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(139, 26, 43, 0.2);
    transition: background 0.4s;
}

nav.scrolled {
    background: rgba(13, 6, 9, 0.97);
}

.nav-logo {
    font-family: var(--font-display);
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    letter-spacing: 0.15em;
    color: var(--champagne);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-logo span {
    color: var(--deep-rose);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: clamp(1.2rem, 2.5vw, 2.5rem);
    list-style: none;
}

.nav-links a {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--smoke);
    text-decoration: none;
    position: relative;
    transition: color 0.3s;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--deep-rose);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}

.nav-links a:hover {
    color: var(--parchment);
}

.nav-links a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-cta {
    font-family: var(--font-body);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--champagne) !important;
    border: 1px solid var(--crimson);
    padding: 0.55rem 1.3rem;
    border-radius: 1px;
    transition: background 0.3s, color 0.3s !important;
}

.nav-cta:hover {
    background: var(--crimson) !important;
    color: var(--parchment) !important;
}

.nav-cta::after {
    display: none !important;
}

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

.hamburger span {
    display: block;
    width: 24px;
    height: 1px;
    background: var(--smoke);
    transition: all 0.3s;
}

/* ─── HERO ──────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: calc(var(--nav-h) + 2rem) 2rem 4rem;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 30%, rgba(139, 26, 43, 0.35) 0%, transparent 65%),
        radial-gradient(ellipse 50% 80% at 20% 80%, rgba(61, 26, 38, 0.6) 0%, transparent 60%),
        radial-gradient(ellipse 40% 50% at 80% 70%, rgba(196, 64, 90, 0.15) 0%, transparent 50%),
        linear-gradient(170deg, #0D0609 0%, #1A0D14 40%, #0D0609 100%);
}

/* animated silk-like shimmer */
.hero-silk {
    position: absolute;
    inset: -50%;
    z-index: 0;
    background: conic-gradient(from 0deg at 50% 50%,
            transparent 0deg,
            rgba(139, 26, 43, 0.06) 40deg,
            transparent 80deg,
            rgba(201, 149, 60, 0.04) 120deg,
            transparent 160deg,
            rgba(139, 26, 43, 0.06) 200deg,
            transparent 240deg,
            rgba(201, 149, 60, 0.03) 280deg,
            transparent 360deg);
    animation: silk 20s linear infinite;
}

@keyframes silk {
    to {
        transform: rotate(360deg);
    }
}

/* petal particles */
.petals {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.petal {
    position: absolute;
    width: 4px;
    height: 8px;
    background: radial-gradient(ellipse at center, rgba(232, 116, 138, 0.6), transparent);
    border-radius: 50% 50% 50% 50% / 30% 30% 70% 70%;
    animation: fall linear infinite;
}

@keyframes fall {
    0% {
        transform: translateY(-20px) rotate(0deg) translateX(0);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 0.5;
    }

    100% {
        transform: translateY(100vh) rotate(720deg) translateX(40px);
        opacity: 0;
    }
}

.hero-eyebrow {
    position: relative;
    z-index: 2;
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    color: var(--deep-rose);
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeUp 1s 0.3s forwards;
}

.hero-title {
    position: relative;
    z-index: 2;
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0.05em;
    color: var(--champagne);
    margin-bottom: 0.5rem;
    opacity: 0;
    animation: fadeUp 1s 0.5s forwards;
}

.hero-title em {
    font-style: italic;
    color: var(--blush);
    font-family: var(--font-heading);
    font-size: 1.5em;
}

.hero-subtitle {
    position: relative;
    z-index: 2;
    font-family: var(--font-heading);
    font-style: italic;
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    font-weight: 300;
    color: var(--dusty-mauve);
    margin-top: 0.5rem;
    margin-bottom: 2.5rem;
    letter-spacing: 0.08em;
    opacity: 0;
    animation: fadeUp 1s 0.7s forwards;
}

.hero-divider {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: fadeUp 1s 0.8s forwards;
}

.hero-divider::before,
.hero-divider::after {
    content: '';
    flex: 1;
    max-width: 120px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--crimson));
}

.hero-divider::after {
    background: linear-gradient(90deg, var(--crimson), transparent);
}

.hero-divider span {
    color: var(--gold);
    font-size: 1rem;
}

.hero-desc {
    position: relative;
    z-index: 2;
    max-width: 540px;
    font-size: clamp(0.85rem, 1.4vw, 1rem);
    line-height: 1.9;
    color: var(--smoke);
    letter-spacing: 0.03em;
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeUp 1s 0.9s forwards;
}

.hero-actions {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
    justify-content: center;
    opacity: 0;
    animation: fadeUp 1s 1.1s forwards;
}

.btn-primary {
    font-family: var(--font-body);
    font-size: 0.72rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--obsidian);
    background: linear-gradient(135deg, var(--deep-rose), var(--crimson));
    padding: 1rem 2.5rem;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 0 30px rgba(196, 64, 90, 0.3);
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(232, 213, 163, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.5s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 40px rgba(196, 64, 90, 0.5);
}

.btn-primary:hover::before {
    transform: translateX(0);
}

.btn-ghost {
    font-family: var(--font-body);
    font-size: 0.72rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--champagne);
    border: 1px solid rgba(232, 213, 163, 0.3);
    padding: 1rem 2.5rem;
    border-radius: 8px;
    transition: border-color 0.3s, background 0.3s;
}

.btn-ghost:hover {
    border-color: var(--gold);
    background: rgba(201, 149, 60, 0.08);
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    animation: fadeUp 1s 1.5s forwards;
}

.hero-scroll span {
    font-size: 0.6rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--dusty-mauve);
}

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

@keyframes scrollPulse {

    0%,
    100% {
        transform: scaleY(1);
        opacity: 0.5
    }

    50% {
        transform: scaleY(1.2);
        opacity: 1
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

section,
.section {
    position: relative;
    z-index: 2;
    padding: 4rem clamp(1.5rem, 5vw, 6rem);
    max-width: 1600px;
    margin: 0 auto;
}

.section-label {
    font-family: var(--font-body);
    font-size: 0.6rem;
    letter-spacing: 0.55em;
    text-transform: uppercase;
    color: var(--deep-rose);
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-sub);
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 400;
    line-height: 1.1;
    color: var(--champagne);
}

.section-title em {
    font-style: italic;
    color: var(--blush);
}

.ornament {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.5rem 0;
}

.ornament-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(139, 26, 43, 0.5));
}

.ornament-line.rev {
    background: linear-gradient(90deg, rgba(139, 26, 43, 0.5), transparent);
}

.ornament span {
    color: var(--gold);
    font-size: 0.9rem;
    opacity: 0.7;
}

/* ─── GRID SYSTEMS ────────────────────────────── */
.post-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2.5rem;
    width: 100%;
}

.horizontal-scroll-grid {
    display: grid !important;
    grid-auto-flow: column !important;
    grid-auto-columns: 326px !important;
    overflow-x: auto !important;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    padding: 1rem 0 3rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 2rem;
    justify-content: start;
}

.horizontal-scroll-grid::-webkit-scrollbar {
    display: none;
}

.horizontal-scroll-grid .post-box {
    scroll-snap-align: start;
    width: 326px;
}

@media (max-width: 768px) {
    .horizontal-scroll-grid {
        grid-auto-columns: calc(100% - 3rem);
        gap: 1.5rem;
    }

    .horizontal-scroll-grid .post-box {
        width: auto;
    }
}

/* Scroll Navigation Buttons */
.scroll-wrapper {
    position: relative;
}

.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: var(--obsidian);
    color: var(--gold);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    cursor: pointer;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.scroll-btn:hover {
    background: var(--crimson);
    color: var(--parchment);
    border-color: var(--crimson);
    transform: translateY(-50%) scale(1.1);
}

.scroll-btn-left {
    left: -22px;
}

.scroll-btn-right {
    right: -22px;
}

@media (max-width: 992px) {
    .scroll-btn {
        display: none;
    }
}

/* Reference Post Box */
.post-box {
    width: 100%;
    max-width: 326px;
    border: 1px solid rgba(139, 26, 43, 0.2);
    background: #111;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.post-box:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
}

.post-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    height: 56px;
    padding: 0 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(13, 6, 9, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(139, 26, 43, 0.2);
}

.profile-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    overflow: hidden;
    border: 1.5px solid var(--gold);
    background: #222;
    flex-shrink: 0;
}

.post-title {
    font-size: 0.9rem;
    color: var(--champagne);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-decoration: none;
}

.post-content {
    background: #000;
    height: 430px;
    overflow: hidden;
}

.post-footer {
    position: relative;
    z-index: 10;
    background: #000 !important;
    display: flex;
    flex-direction: column;
    padding: 10px 0;
    border-top: 1px solid rgba(139, 26, 43, 0.2);
    box-shadow: 0 -10px 20px rgba(0, 0, 0, 0.8);
}

.footer-btn-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px;
}

.unseen-btn,
.about-trigger {
    text-decoration: none;
    padding: 8px 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.features-strip {
    background: linear-gradient(90deg, var(--velvet) 0%, #2A1220 50%, var(--velvet) 100%);
    border-top: 1px solid rgba(139, 26, 43, 0.3);
    border-bottom: 1px solid rgba(139, 26, 43, 0.3);
    padding: 2.5rem clamp(1.5rem, 5vw, 6rem);
    display: flex;
    gap: 0;
    flex-wrap: wrap;
}

.feature-item {
    flex: 1;
    min-width: 200px;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    border-right: 1px solid rgba(139, 26, 43, 0.2);
}

.feature-item:last-child {
    border-right: none;
}

.feature-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature-text h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 500;
    color: var(--champagne);
    margin-bottom: 0.2rem;
}

.feature-text p {
    font-size: 0.72rem;
    color: var(--smoke);
    letter-spacing: 0.05em;
}

/* ─── COLLECTIONS ───────────────────────────────── */
.collections {
    padding: clamp(4rem, 8vw, 8rem) clamp(1.5rem, 5vw, 6rem);
}

.collections-header {
    margin-bottom: 3rem;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 3/4;
    background: var(--velvet);
    cursor: none;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.card:hover {
    transform: translateY(-6px);
}

.card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.card:hover .card-bg {
    transform: scale(1.05);
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(13, 6, 9, 0) 30%,
            rgba(13, 6, 9, 0.5) 60%,
            rgba(13, 6, 9, 0.97) 100%);
}

.card-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 80%, rgba(139, 26, 43, 0.4), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s;
}

.card:hover .card-glow {
    opacity: 1;
}

.card-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-family: var(--font-body);
    font-size: 0.58rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    padding: 0.35rem 0.8rem;
    background: rgba(139, 26, 43, 0.85);
    backdrop-filter: blur(4px);
    color: var(--champagne);
    border-radius: 1px;
}

.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
}

.card-genre {
    font-size: 0.6rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--blush);
    margin-bottom: 0.5rem;
}

.card-title {
    font-family: 'Bamini', serif;
    font-size: clamp(1.1rem, 1.8vw, 1.4rem);
    font-weight: 500;
    color: var(--parchment);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.card-meta {
    display: flex;
    gap: 1rem;
    align-items: center;
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    color: var(--smoke);
}

.card-meta span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

/* card color swatches */
.card-1 .card-bg {
    background: linear-gradient(145deg, #3D1A26 0%, #1A0D14 60%, #2A0D1A 100%);
}

.card-2 .card-bg {
    background: linear-gradient(145deg, #1A0D14 0%, #3D1A26 50%, #1A0D14 100%);
}

.card-3 .card-bg {
    background: linear-gradient(145deg, #0D0609 0%, #3D1A26 70%, #1A0D14 100%);
}

.card-4 .card-bg {
    background: linear-gradient(145deg, #2A1220 0%, #1A0D14 50%, #3D1A26 100%);
}

.card-5 .card-bg {
    background: linear-gradient(145deg, #1A0D14 0%, #0D0609 40%, #3D1A26 100%);
}

.card-6 .card-bg {
    background: linear-gradient(145deg, #3D1A26 0%, #2A1220 60%, #0D0609 100%);
}

/* card art illusions using pseudo elements */
.card::after {
    content: attr(data-art);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -60%);
    font-size: 6rem;
    opacity: 0.07;
    font-family: var(--font-heading);
    color: var(--blush);
    pointer-events: none;
    transition: opacity 0.4s, transform 0.4s;
}

.card:hover::after {
    opacity: 0.12;
    transform: translate(-50%, -65%);
}

/* ─── MARQUEE ────────────────────────────────────── */
.marquee-section {
    overflow: hidden;
    border-top: 1px solid rgba(139, 26, 43, 0.2);
    border-bottom: 1px solid rgba(139, 26, 43, 0.2);
    padding: 1rem 0;
    background: rgba(61, 26, 38, 0.2);
}

.marquee-track {
    display: flex;
    gap: 3rem;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: var(--font-heading);
    font-style: italic;
    font-size: clamp(0.85rem, 1.5vw, 1rem);
    color: var(--dusty-mauve);
    flex-shrink: 0;
}

.marquee-dot {
    color: var(--gold);
    font-size: 0.5rem;
}

@keyframes marquee {
    to {
        transform: translateX(-50%);
    }
}

/* ─── STORE SECTION ─────────────────────────────── */
.store-section {
    padding: clamp(4rem, 8vw, 8rem) clamp(1.5rem, 5vw, 6rem);
}

.store-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.store-text p {
    font-size: clamp(0.85rem, 1.3vw, 0.95rem);
    line-height: 1.9;
    color: var(--smoke);
    margin-top: 1.5rem;
    margin-bottom: 2.5rem;
}

.store-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 2.5rem;
}

.tag {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(139, 26, 43, 0.4);
    color: var(--dusty-mauve);
    border-radius: 1px;
    transition: all 0.3s;
    cursor: none;
}

.tag:hover {
    border-color: var(--deep-rose);
    color: var(--blush);
    background: rgba(139, 26, 43, 0.1);
}

.store-visual {
    position: relative;
    height: 500px;
}

.store-card-float {
    position: absolute;
    background: linear-gradient(135deg, var(--velvet), #2A1220);
    border: 1px solid rgba(139, 26, 43, 0.3);
    border-radius: 2px;
    padding: 1.5rem;
    backdrop-filter: blur(8px);
    animation: float 6s ease-in-out infinite;
}

.store-card-float:nth-child(1) {
    top: 0;
    left: 10%;
    right: 10%;
    animation-delay: 0s;
}

.store-card-float:nth-child(2) {
    top: 30%;
    left: 0%;
    width: 48%;
    animation-delay: -2s;
}

.store-card-float:nth-child(3) {
    top: 55%;
    right: 0%;
    width: 52%;
    animation-delay: -4s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    33% {
        transform: translateY(-8px) rotate(0.5deg);
    }

    66% {
        transform: translateY(4px) rotate(-0.3deg);
    }
}

.store-card-img {
    width: 100%;
    height: 120px;
    background: linear-gradient(135deg, rgba(196, 64, 90, 0.15), rgba(201, 149, 60, 0.1));
    border-radius: 1px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
}

.store-card-title {
    font-family: 'Bamini', serif;
    font-size: 1rem;
    color: var(--champagne);
    margin-bottom: 0.3rem;
}

.store-card-price {
    font-size: 0.75rem;
    color: var(--gold);
    letter-spacing: 0.1em;
}

.store-card-badge {
    position: absolute;
    top: -10px;
    right: 1rem;
    background: var(--crimson);
    color: var(--parchment);
    font-size: 0.6rem;
    padding: 0.25rem 0.6rem;
    border-radius: 1px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

/* ─── ARTICLES ──────────────────────────────────── */
.articles-section {
    padding: clamp(4rem, 8vw, 8rem) clamp(1.5rem, 5vw, 6rem);
}

.articles-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
}

.article-card {
    background: linear-gradient(135deg, rgba(61, 26, 38, 0.3), rgba(13, 6, 9, 0.5));
    border: 1px solid rgba(139, 26, 43, 0.2);
    border-radius: 2px;
    padding: 2rem;
    transition: border-color 0.3s, background 0.3s;
    cursor: none;
}

.article-card:hover {
    border-color: rgba(196, 64, 90, 0.4);
    background: rgba(61, 26, 38, 0.4);
}

.article-card.featured {
    grid-row: span 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.article-date {
    font-size: 0.6rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--deep-rose);
    margin-bottom: 0.8rem;
}

.article-title {
    font-family: var(--font-sub);
    font-size: clamp(1rem, 1.8vw, 1.3rem);
    color: var(--champagne);
    line-height: 1.3;
    margin-bottom: 0.8rem;
}

.article-excerpt {
    font-size: 0.8rem;
    line-height: 1.7;
    color: var(--smoke);
}

.article-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--blush);
    text-decoration: none;
    margin-top: 1.5rem;
    transition: gap 0.3s;
}

.article-link:hover {
    gap: 0.8rem;
}

/* ─── TESTIMONIALS ──────────────────────────────── */
.testimonials {
    padding: 4rem clamp(1.5rem, 5vw, 6rem);
}

.testimonial-track {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 1rem;
}

.testimonial-track::-webkit-scrollbar {
    height: 2px;
}

.testimonial-card {
    flex-shrink: 0;
    width: clamp(280px, 40vw, 400px);
    scroll-snap-align: start;
    background: linear-gradient(135deg, rgba(61, 26, 38, 0.4), rgba(13, 6, 9, 0.6));
    border: 1px solid rgba(139, 26, 43, 0.2);
    border-radius: 2px;
    padding: 2rem;
}

.testimonial-stars {
    color: var(--gold);
    font-size: 0.8rem;
    margin-bottom: 1rem;
    letter-spacing: 0.2em;
}

.testimonial-text {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1rem;
    color: var(--champagne);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--crimson), var(--velvet));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--champagne);
    border: 1px solid rgba(232, 116, 138, 0.3);
}

.testimonial-name {
    font-size: 0.8rem;
    color: var(--parchment);
}

.testimonial-loc {
    font-size: 0.65rem;
    color: var(--smoke);
    margin-top: 0.2rem;
}

/* ─── NEWSLETTER ────────────────────────────────── */
.newsletter {
    margin: 0 clamp(1.5rem, 5vw, 6rem);
    background: linear-gradient(135deg, var(--velvet) 0%, #2A0D1A 50%, var(--velvet) 100%);
    border: 1px solid rgba(139, 26, 43, 0.4);
    border-radius: 2px;
    padding: clamp(3rem, 6vw, 5rem) clamp(2rem, 5vw, 5rem);
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-bottom: clamp(4rem, 8vw, 8rem);
}

.newsletter::before {
    content: '❧';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20rem;
    color: rgba(139, 26, 43, 0.04);
    pointer-events: none;
    line-height: 1;
}

.newsletter h2 {
    font-family: var(--font-sub);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    color: var(--champagne);
    margin-bottom: 1rem;
}

.newsletter p {
    color: var(--smoke);
    max-width: 480px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
    font-size: 0.9rem;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    max-width: 440px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: 1rem 1.5rem;
    background: rgba(13, 6, 9, 0.6);
    border: 1px solid rgba(139, 26, 43, 0.4);
    border-radius: 8px;
    color: var(--parchment);
    font-family: var(--font-body);
    font-size: 0.85rem;
    outline: none;
    transition: border-color 0.3s;
}

textarea.newsletter-input {
    resize: none;
    min-height: 100px;
}

.newsletter-input:focus {
    border-color: var(--deep-rose);
}

.newsletter-input::placeholder {
    color: var(--smoke);
}

.newsletter-btn {
    padding: 1rem 2rem;
    cursor: none;
    background: linear-gradient(135deg, var(--deep-rose), var(--crimson));
    border: none;
    border-radius: 2px;
    color: var(--parchment);
    font-family: var(--font-body);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: opacity 0.3s;
}

.newsletter-btn:disabled {
    opacity: 0.5;
    cursor: wait;
}

.newsletter-btn:hover:not(:disabled) {
    opacity: 0.85;
}

/* ─── FOOTER ────────────────────────────────────── */
footer {
    background: var(--midnight);
    border-top: 1px solid rgba(139, 26, 43, 0.3);
    padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 5vw, 6rem) 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand .nav-logo {
    margin-bottom: 1.2rem;
    display: block;
}

.footer-brand p {
    font-size: 0.8rem;
    line-height: 1.8;
    color: var(--smoke);
    max-width: 260px;
}

.footer-social {
    display: flex;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.social-btn {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(139, 26, 43, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: var(--smoke);
    text-decoration: none;
    transition: all 0.3s;
    cursor: none;
}

.social-btn:hover {
    border-color: var(--deep-rose);
    color: var(--blush);
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--champagne);
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
}

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

.footer-links a {
    font-size: 0.78rem;
    color: var(--smoke);
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: color 0.3s;
}

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

.footer-bottom {
    border-top: 1px solid rgba(139, 26, 43, 0.15);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    font-size: 0.72rem;
    color: rgba(184, 168, 176, 0.5);
    letter-spacing: 0.1em;
}

/* ─── AGE GATE ──────────────────────────────────── */
.age-gate {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: var(--obsidian);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.age-gate-box {
    text-align: center;
    max-width: 480px;
    animation: fadeUp 0.8s forwards;
}

.age-gate-logo {
    font-family: var(--font-display);
    font-size: 1.2rem;
    letter-spacing: 0.2em;
    color: var(--champagne);
    margin-bottom: 2rem;
}

.age-gate-logo span {
    color: var(--deep-rose);
}

.age-gate-ornament {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: block;
    background: linear-gradient(135deg, var(--gold), var(--deep-rose));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.age-gate h2 {
    font-family: var(--font-sub);
    font-size: clamp(1.3rem, 3vw, 2rem);
    color: var(--champagne);
    margin-bottom: 1rem;
}

.age-gate p {
    color: var(--smoke);
    font-size: 0.85rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.age-gate-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.age-yes {
    font-family: var(--font-body);
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--deep-rose), var(--crimson));
    border: none;
    border-radius: 1px;
    color: var(--parchment);
    cursor: none;
    transition: opacity 0.3s;
}

.age-yes:hover {
    opacity: 0.85;
}

.age-no {
    font-family: var(--font-body);
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 1rem 2.5rem;
    background: transparent;
    border: 1px solid rgba(184, 168, 176, 0.3);
    border-radius: 1px;
    color: var(--smoke);
    cursor: none;
    transition: all 0.3s;
}

.age-no:hover {
    border-color: var(--smoke);
}

.age-gate-fine {
    font-size: 0.65rem;
    color: rgba(184, 168, 176, 0.4);
    margin-top: 2rem;
    letter-spacing: 0.05em;
}

/* ─── MOBILE NAV ────────────────────────────────── */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 99;
    background: rgba(13, 6, 9, 0.98);
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    opacity: 0;
    pointer-events: none;
    transform: translateX(100%);
    transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}

.mobile-menu.open {
    opacity: 1;
    pointer-events: all;
    transform: translateX(0);
}

.mobile-menu a {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-style: italic;
    color: var(--champagne);
    text-decoration: none;
    transition: color 0.3s;
}

.mobile-menu a:hover {
    color: var(--blush);
}

/* ─── RESPONSIVE ────────────────────────────────── */
@media (max-width: 1100px) {
    .store-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .store-visual {
        height: 350px;
    }

    .articles-grid {
        grid-template-columns: 1fr 1fr;
    }

    .article-card.featured {
        grid-column: span 2;
        grid-row: auto;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .articles-grid {
        grid-template-columns: 1fr;
    }

    .article-card.featured {
        grid-column: auto;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .features-strip {
        flex-direction: column;
    }

    .feature-item {
        border-right: none;
        border-bottom: 1px solid rgba(139, 26, 43, 0.2);
    }

    .feature-item:last-child {
        border-bottom: none;
    }

    .store-visual {
        height: 280px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-input {
        border-right: 1px solid rgba(139, 26, 43, 0.4);
        border-radius: 1px;
    }

    .newsletter-btn {
        border-radius: 1px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .cards-grid {
        grid-template-columns: 1fr;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-ghost {
        width: 100%;
        text-align: center;
        padding: 1rem;
    }

    .age-gate-btns {
        flex-direction: column;
    }

    .age-yes,
    .age-no {
        width: 100%;
    }
}

/* ─── REVEAL ANIMATIONS ─────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

/* Buy Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    backdrop-filter: blur(10px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.buy-modal {
    background: var(--velvet);
    padding: 2rem;
    border-radius: 2px;
    border: 1px solid var(--crimson);
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 0 50px rgba(139, 26, 43, 0.3);
    transform: scale(0.9);
    transition: transform 0.5s ease;
    color: var(--parchment);
    cursor: auto;
}

.modal-overlay.active .buy-modal {
    transform: scale(1);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(139, 26, 43, 0.3);
}

.modal-header h2 {
    font-family: var(--font-sub);
    font-size: 1.8rem;
    color: var(--champagne);
    margin: 0;
}

.close-modal {
    background: none;
    border: none;
    color: var(--smoke);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s ease;
    padding: 0.5rem;
}

.close-modal:hover {
    color: var(--crimson);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: var(--champagne);
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="url"],
.form-group input[type="tel"],
.form-group input[type="file"],
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    background: rgba(13, 6, 9, 0.6);
    border: 1px solid rgba(139, 26, 43, 0.4);
    border-radius: 1px;
    color: var(--parchment);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: block;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(13, 6, 9, 0.8);
    box-shadow: 0 0 10px rgba(201, 149, 60, 0.1);
}

.form-group input[type="file"] {
    padding: 0.5rem;
    font-size: 0.8rem;
    color: var(--smoke);
}

.form-group input[readonly] {
    cursor: not-allowed;
    color: var(--smoke);
}

.checkbox-group {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.checkbox-group-vertical {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    color: var(--parchment);
    font-size: 0.9rem;
}

.checkbox-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--crimson);
}

.optional {
    color: var(--smoke);
    font-size: 0.8rem;
}

.required {
    color: var(--crimson);
    font-weight: 700;
}

.form-total {
    border: 1px solid var(--crimson);
    padding: 1rem;
    border-radius: 1px;
    text-align: center;
    margin-bottom: 1.5rem;
    background: rgba(139, 26, 43, 0.1);
}

.form-total strong {
    color: var(--champagne);
    font-size: 1.3rem;
}

/* ─── BIOGRAPHY MODAL (SCARLET MUSE VERSION) ──────────────── */
.bio-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(13, 6, 9, 0.85);
    backdrop-filter: blur(12px);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.bio-modal-overlay.active {
    display: flex;
    opacity: 1;
}

.bio-modal-content {
    background: var(--obsidian);
    width: 100%;
    max-width: 680px;
    max-height: 90vh;
    border-radius: 2px;
    border: 1px solid var(--border-color);
    position: relative;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--crimson) transparent;
    box-shadow: 0 0 50px rgba(139, 26, 43, 0.2);
    transform: translateY(30px);
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    color: var(--parchment);
}

.bio-modal-overlay.active .bio-modal-content {
    transform: translateY(0);
}

.bio-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.2rem;
    color: var(--smoke);
    cursor: pointer;
    transition: all 0.3s;
    z-index: 100;
}

.bio-modal-close:hover {
    color: var(--blush);
    transform: rotate(90deg);
}

.bio-header {
    background: linear-gradient(to right, rgba(139, 26, 43, 0.1), transparent);
    padding: 2.5rem 2rem;
    border-bottom: 1px solid rgba(139, 26, 43, 0.15);
}

.bio-header h2 {
    font-family: var(--font-display);
    color: var(--champagne);
    font-size: 2rem;
    margin: 0;
    letter-spacing: 0.1em;
}

.bio-header p {
    font-family: var(--font-body);
    color: var(--smoke);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    margin-top: 0.5rem;
}

.bio-body {
    padding: 2rem;
}

.bio-section {
    margin-bottom: 3.5rem;
}

.bio-section h3 {
    font-family: var(--font-heading);
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(201, 149, 60, 0.2);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.bio-section h3::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(201, 149, 60, 0.2), transparent);
}

.bio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem 1rem;
}

.bio-item {
    display: flex;
    flex-direction: column;
}

.bio-label {
    font-size: 0.65rem;
    color: var(--smoke);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 0.3rem;
}

.bio-value {
    color: var(--parchment);
    font-size: 0.9rem;
    font-weight: 400;
}

.bio-row {
    grid-column: span 2;
}

/* Biometric Diagrams */
.bio-measurements-visual,
.bio-face-visual {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(139, 26, 43, 0.15);
    border-radius: 2px;
    padding: 2.5rem 1.5rem;
    display: flex;
    justify-content: center;
    position: relative;
    margin-bottom: 1rem;
}

.bio-diagram-wrapper,
.bio-face-wrapper {
    position: relative;
    max-width: 100%;
}

.bio-body-silhouette-svg,
.bio-face-svg {
    height: 280px;
    width: auto;
    opacity: 1;
    filter: drop-shadow(0 0 15px rgba(232, 116, 138, 0.1));
}

.bio-body-silhouette-svg {
    height: 350px;
}

.measurement-pointer,
.face-pointer {
    position: absolute;
    border-bottom: 1px solid rgba(232, 116, 138, 0.4);
    display: flex;
    align-items: center;
    color: var(--blush);
    pointer-events: none;
}

.ptr-label,
.face-ptr-label {
    font-family: var(--font-body);
    font-size: 0.7rem;
    white-space: nowrap;
    position: absolute;
    left: 100%;
    padding-left: 10px;
    transform: translateY(-50%);
    color: var(--smoke);
}

.ptr-value,
.face-ptr-value {
    color: var(--champagne);
    font-weight: 500;
    margin-left: 5px;
}

.ptr-bust {
    top: 25%;
    left: 50%;
    width: 90px;
}

.ptr-waist {
    top: 38%;
    left: 50%;
    width: 90px;
}

.ptr-hips {
    top: 51%;
    left: 50%;
    width: 90px;
}

.ptr-eyes {
    top: 35%;
    left: 55%;
    width: 100px;
}

.ptr-nose {
    top: 48%;
    left: 50%;
    width: 110px;
}

.ptr-lips {
    top: 58%;
    left: 50%;
    width: 110px;
}

.ptr-jaw {
    top: 68%;
    left: 58%;
    width: 85px;
}

.height-line {
    position: absolute;
    right: 30px;
    top: 10%;
    bottom: 10%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, var(--gold), transparent);
}

.v-height-label {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: rotate(90deg) translateX(-50%);
    font-size: 0.7rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    white-space: nowrap;
}

/* Left Info Overlay */
.bio-left-info {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.left-info-item {
    display: flex;
    flex-direction: column;
}

.left-info-label {
    font-size: 0.6rem;
    color: var(--smoke);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.left-info-value {
    font-size: 0.85rem;
    color: var(--parchment);
}

/* Clothing Visuals */
.bio-bra-visual,
.bio-size-visual {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(139, 26, 43, 0.1);
    border-radius: 2px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.bra-icon-container,
.size-icon-container {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.bra-icon-svg,
.size-icon-svg {
    width: 100%;
    height: 100%;
    fill: var(--gold);
}

.bra-info-panel,
.size-info-panel {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.bra-info-item,
.size-info-item {
    display: flex;
    flex-direction: column;
}

.bra-info-label,
.size-info-label {
    font-size: 0.6rem;
    color: var(--smoke);
    text-transform: uppercase;
}

.bra-info-value,
.size-info-value {
    font-size: 1rem;
    color: var(--champagne);
}

@media (max-width: 600px) {
    .bio-grid {
        grid-template-columns: 1fr;
    }

    .bio-modal-content {
        max-height: 95vh;
    }
}