:root {
    --cream: #f9f7f2;
    --gold: #b38e5d;
    --dark: #1a1a1a;
    --gray: #666;
    --white: #ffffff;
}

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

body {
    background-color: var(--cream);
    color: var(--dark);
    font-family: 'Crimson Text', serif;
    font-size: 1.25rem;
    -webkit-font-smoothing: antialiased;
}

.italic {
    font-style: italic;
}

/* Preloader Lineal */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--cream);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease;
}

.line-loader {
    width: 150px;
    height: 1px;
    background: #ddd;
    position: relative;
    overflow: hidden;
}

.line-loader::after {
    content: '';
    position: absolute;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gold);
    animation: load 1.5s infinite;
}

@keyframes load {
    100% {
        left: 100%;
    }
}

/* Header Minimal */
.header-minimal {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    padding: 30px 0;
    transition: 0.3s;
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-black {
    height: 60px;
    filter: grayscale(1) brightness(0);
    opacity: 0.8;
}

.btn-back,
.btn-lang {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    background: none;
    border: none;
    cursor: pointer;
}

/* Hero Art */
.hero-art {
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 0 20px;
}

.hero-text-box {
    text-align: center;
    z-index: 2;
    max-width: 800px;
}

.hero-text-box h1 {
    font-size: clamp(4rem, 10vw, 7rem);
    line-height: 0.9;
    font-weight: 400;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.hero-text-box h1 span {
    color: var(--gold);
    font-style: italic;
    text-transform: lowercase;
}

.hero-divider {
    width: 60px;
    height: 1px;
    background: var(--gold);
    margin: 0 auto 30px;
}

.hero-text-box p {
    font-size: 1.5rem;
    line-height: 1.6;
    color: var(--gray);
}

/* Form Card Art */
.form-wrapper {
    padding: 100px 20px;
    display: flex;
    justify-content: center;
}

.form-card-art {
    background: var(--white);
    padding: 80px;
    border-radius: 2px;
    max-width: 900px;
    width: 100%;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.05);
}

.form-card-art h2 {
    font-size: 3rem;
    margin-bottom: 50px;
    text-align: center;
    font-weight: 400;
}

.field-container {
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
}

.field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    color: var(--gold);
    font-weight: 700;
}

input,
textarea {
    border: none;
    border-bottom: 1px solid #ddd;
    padding: 15px 0;
    font-family: 'Crimson Text', serif;
    font-size: 1.4rem;
    background: transparent;
    transition: 0.3s;
}

input:focus,
textarea:focus {
    outline: none;
    border-bottom-color: var(--gold);
}

.field-hint {
    font-size: 1rem;
    color: #999;
    margin-top: 10px;
    font-style: italic;
}

/* Button Submit Art */
.button-wrapper {
    margin-top: 40px;
    text-align: center;
}

.btn-submit-art {
    background: none;
    border: none;
    font-family: 'Crimson Text', serif;
    font-size: 1.8rem;
    cursor: pointer;
    position: relative;
    padding-bottom: 10px;
}

.btn-line {
    width: 100%;
    height: 1px;
    background: var(--dark);
    transition: 0.5s;
    transform-origin: right;
    scale: 0.3 1;
}

.btn-submit-art:hover .btn-line {
    scale: 1 1;
    transform-origin: left;
    background: var(--gold);
}

/* Footer */
.footer-art {
    padding: 80px 0;
    text-align: center;
    border-top: 1px solid #eee;
}

.footer-line {
    width: 1px;
    height: 50px;
    background: #ddd;
    margin: 0 auto 30px;
}

.footer-content p {
    font-size: 1rem;
    letter-spacing: 3px;
    color: var(--gray);
    margin-bottom: 10px;
}

/* Animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(50px);
    transition: 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .field-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .hero-text-box h1 {
        font-size: 4rem;
    }

    .form-card-art {
        padding: 40px 20px;
    }
}