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

:root {
    --gold: #C9A227;
    --gold-light: #E8D5A3;
    --dark: #1A1A1A;
    --gray: #F5F5F5;
    --gray-border: #E5E5E5;
    --text: #1A1A1A;
    --text-muted: #666666;
    --red: #DC2626;
    --white: #FFFFFF;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--white);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

/* TOP BAR */
.top-bar {
    background: var(--dark);
    color: var(--white);
    padding: 12px 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
}

.top-bar-content {
    color: var(--white);
}

.top-bar-name {
    color: var(--gold);
}

/* LANGUAGE TOGGLE */
.lang-toggle {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: 12px;
}

.lang-btn {
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.5);
    padding: 3px 8px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    cursor: pointer;
    border-radius: 3px;
    transition: all 0.2s ease;
    font-family: 'Inter', sans-serif;
}

.lang-btn:hover {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.5);
}

.lang-btn.lang-active {
    background: var(--gold);
    color: var(--dark);
    border-color: var(--gold);
}

.lang-sep {
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.7rem;
}

/* HERO SECTION */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: var(--white);
}

.hero-image {
    width: 100%;
    height: 55vh;
    min-height: 350px;
    position: relative;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, var(--white) 0%, transparent 100%);
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px 24px 60px;
    position: relative;
    z-index: 2;
    margin-top: -80px;
}

.artist-name {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 500;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
    color: var(--dark);
}

.artist-title {
    font-size: 0.9rem;
    color: var(--text-muted);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 32px;
}

.hero-stats {
    display: flex;
    gap: 48px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.stat {
    text-align: center;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--gold);
    display: block;
}

.stat-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.stat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    margin-bottom: 4px;
}

/* HERO EMAIL FORM */
.hero-form {
    max-width: 480px;
    width: 100%;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.12) 0%, rgba(232, 213, 163, 0.15) 100%);
    border: 1px solid rgba(201, 162, 39, 0.25);
    border-radius: 12px;
    padding: 28px 24px;
    box-shadow: 0 8px 32px rgba(201, 162, 39, 0.1);
}

.hero-form-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.hero-form-text strong {
    color: var(--dark);
}

.email-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

@media (min-width: 640px) {
    .email-form {
        flex-direction: row;
    }
}

.email-input {
    flex: 1;
    padding: 16px 20px;
    background: var(--white);
    border: 1px solid var(--gray-border);
    border-radius: 6px;
    color: var(--text);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.email-input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.1);
}

.email-input::placeholder {
    color: #999;
}

.submit-btn {
    padding: 16px 32px;
    background: var(--dark);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.submit-btn:hover {
    background: var(--gold);
    color: var(--dark);
}

.trust-mini {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 16px;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.trust-mini span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.scroll-indicator {
    margin-top: 40px;
    animation: bounce 2s infinite;
}

.scroll-indicator svg {
    width: 24px;
    height: 24px;
    stroke: var(--text-muted);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* SERIES SECTIONS */
.series-section {
    padding: 100px 0;
    position: relative;
}

.series-section:nth-child(even) {
    background: var(--gray);
}

.series-header {
    text-align: center;
    margin-bottom: 60px;
}

.series-badge {
    display: inline-block;
    padding: 6px 18px;
    background: transparent;
    border: 1px solid var(--gray-border);
    color: var(--text-muted);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.series-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 500;
    margin-bottom: 16px;
    color: var(--dark);
}

.series-description {
    max-width: 550px;
    margin: 0 auto;
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* ARTWORKS GRID */
.artworks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.artwork-card {
    position: relative;
    display: block;
    text-decoration: none;
    color: inherit;
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    aspect-ratio: 3/4;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.artwork-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.artwork-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f8f8 0%, #f0f0f0 100%);
    border: 2px dashed var(--gray-border);
}

.artwork-placeholder-text {
    color: var(--text-muted);
    font-size: 0.85rem;
    text-align: center;
    padding: 20px;
}

.artwork-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.artwork-card.sold-out .artwork-image {
    opacity: 0.6;
    filter: grayscale(30%);
}

.sold-out-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--dark);
    color: var(--white);
    padding: 6px 14px;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-radius: 4px;
    z-index: 10;
}

.artwork-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.98) 0%, transparent 100%);
}

.artwork-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin-bottom: 4px;
    color: var(--dark);
}

.artwork-details {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* EMAIL SECTION BOTTOM */
.email-section {
    padding: 100px 0;
    background: var(--dark);
    text-align: center;
    position: relative;
}

.email-headline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: 12px;
    color: var(--white);
}

.email-subheadline {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    max-width: 450px;
    margin: 0 auto 32px;
}

.urgency-text {
    color: var(--gold);
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.urgency-text::before,
.urgency-text::after {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--gold);
    opacity: 0.5;
}

.email-form-dark {
    max-width: 480px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

@media (min-width: 640px) {
    .email-form-dark {
        flex-direction: row;
    }
}

.email-input-dark {
    flex: 1;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    color: var(--white);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.email-input-dark:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.12);
}

.email-input-dark::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.submit-btn-gold {
    padding: 16px 32px;
    background: var(--gold);
    color: var(--dark);
    border: none;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.submit-btn-gold:hover {
    background: var(--gold-light);
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
}

.trust-badge svg {
    width: 18px;
    height: 18px;
    stroke: var(--gold);
}

/* FOOTER */
.footer {
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid var(--gray-border);
    background: var(--white);
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    letter-spacing: 0.15em;
    margin-bottom: 12px;
    color: var(--dark);
}

.footer-text {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.social-links a {
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--gold);
}

/* FORM FEEDBACK */
.form-feedback {
    text-align: center;
    font-size: 0.85rem;
    min-height: 1.4em;
    margin-top: 10px;
    transition: opacity 0.3s ease;
}

.form-feedback:empty {
    display: none;
}

.form-feedback--success {
    color: #16a34a;
}

.form-feedback--error {
    color: var(--red);
}

.form-feedback--sending {
    color: var(--text-muted);
}

.form-feedback--dark.form-feedback--success {
    color: #4ade80;
}

.form-feedback--dark.form-feedback--error {
    color: #fca5a5;
}

.form-feedback--dark.form-feedback--sending {
    color: rgba(255, 255, 255, 0.5);
}

/* MOBILE OPTIMIZATIONS */
@media (max-width: 640px) {
    .artworks-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
        margin-top: 30px;
    }

    .artwork-card {
        aspect-ratio: 3/4;
        border-radius: 6px;
    }

    .artwork-info {
        padding: 10px;
    }

    .artwork-title {
        font-size: 0.85rem;
    }

    .artwork-details {
        font-size: 0.65rem;
    }

    .sold-out-badge {
        top: 6px;
        left: 6px;
        padding: 3px 6px;
        font-size: 0.5rem;
    }

    .series-section {
        padding: 50px 0;
    }

    .series-title {
        font-size: 1.6rem;
    }

    .series-description {
        font-size: 0.85rem;
    }
}

@media (min-width: 641px) and (max-width: 1024px) {
    .artworks-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
}
