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

:root {
    --bg-primary: #fafafa;
    --bg-secondary: #ffffff;
    --bg-dark: #0a0a0a;
    --text-primary: #111111;
    --text-secondary: #666666;
    --text-light: #999999;
    --accent: #c9a962;
    --accent-dark: #b8984d;
    --border: #e8e8e8;
    --border-light: #f2f2f2;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    cursor: none;
}

.section-label {
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 1rem;
    display: block;
}

.cursor {
    width: 12px;
    height: 12px;
    background: var(--accent);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    transition: transform 0.15s ease, width 0.3s ease, height 0.3s ease;
}

.cursor.hover {
    width: 60px;
    height: 60px;
    background: transparent;
    border: 1px solid var(--accent);
}

.cursor-dot {
    width: 4px;
    height: 4px;
    background: var(--text-primary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10000;
}

.grain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9998;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 2rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    mix-blend-mode: difference;
}

nav.scrolled {
    background: rgba(250, 250, 250, 0.9);
    backdrop-filter: blur(20px);
    mix-blend-mode: normal;
    padding: 1.25rem 4rem;
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    text-decoration: none;
    letter-spacing: 0.5px;
}

nav.scrolled .logo {
    color: var(--text-primary);
}

.nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    position: relative;
    padding: 0.5rem 0;
}

nav.scrolled .nav-links a {
    color: var(--text-secondary);
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.hero {
    min-height: 70vh;
    position: relative;
    overflow: hidden;
    background: var(--bg-dark);
    display: flex;
    align-items: center;
    padding-top: 8rem;
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.8) 50%, rgba(0,0,0,0.9) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 4rem;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 2rem;
    font-weight: 600;
}

.hero-badge::before {
    content: '\25C6';
    font-size: 1rem;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3.5rem, 7vw, 6rem);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -3px;
    color: white;
    margin-bottom: 1.5rem;
}

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

.hero-description {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.8;
    max-width: 720px;
    margin: 0 auto 3rem;
}

.contact-main {
    background: var(--bg-primary);
    padding: 8rem 4rem;
}

.contact-main-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
    gap: 5rem;
    align-items: start;
}

.contact-intro h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.25rem, 4vw, 3.25rem);
    font-weight: 400;
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
    line-height: 1.15;
}

.contact-intro h2 em {
    font-style: italic;
    color: var(--accent);
}

.contact-intro .lead {
    color: var(--text-secondary);
    font-size: 1.0625rem;
    line-height: 1.75;
    margin-bottom: 2.5rem;
}

.contact-meta {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-meta-item {
    padding: 1.25rem 1.5rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 2px;
}

.contact-meta-item span {
    display: block;
    font-size: 0.6875rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 0.35rem;
}

.contact-meta-item a,
.contact-meta-item p {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
}

.contact-meta-item a:hover {
    color: var(--accent-dark);
}

.contact-alert {
    border-radius: 2px;
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
    font-size: 0.9375rem;
}

.contact-alert--success {
    background: rgba(201, 169, 98, 0.12);
    border: 1px solid rgba(201, 169, 98, 0.35);
    color: var(--text-primary);
}

.contact-alert--error {
    background: rgba(180, 50, 50, 0.06);
    border: 1px solid rgba(180, 50, 50, 0.2);
    color: var(--text-primary);
}

.contact-alert--error ul {
    margin: 0.5rem 0 0 1.25rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.contact-form-panel {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    padding: 2.5rem;
    position: relative;
}

.contact-form-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, var(--accent), var(--accent-dark));
    opacity: 0.85;
}

.contact-form {
    padding-left: 1rem;
}

.contact-field {
    margin-bottom: 1.5rem;
}

.contact-field label {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.contact-field input,
.contact-field textarea {
    width: 100%;
    font-family: inherit;
    font-size: 0.9375rem;
    padding: 0.875rem 1rem;
    border: 1px solid var(--border);
    border-radius: 2px;
    background: var(--bg-primary);
    color: var(--text-primary);
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
    color: var(--text-light);
}

.contact-field input:focus,
.contact-field textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(201, 169, 98, 0.15);
}

.contact-field textarea {
    min-height: 160px;
    resize: vertical;
}

.contact-field--error input,
.contact-field--error textarea {
    border-color: rgba(180, 50, 50, 0.45);
}

.contact-field-error {
    font-size: 0.8125rem;
    color: #a33;
    margin-top: 0.35rem;
}

.contact-submit {
    width: 100%;
    margin-top: 0.5rem;
    padding: 1rem 1.5rem;
    font-family: inherit;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--bg-dark);
    background: var(--accent);
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.contact-submit:hover {
    background: var(--accent-dark);
    transform: translateY(-1px);
}

@media (max-width: 1024px) {
    .contact-main-inner {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }

    .contact-form-panel::before {
        width: 100%;
        height: 3px;
        top: 0;
        left: 0;
    }

    .contact-form {
        padding-left: 0;
        padding-top: 0.5rem;
    }
}

@media (max-width: 768px) {
    body {
        cursor: auto;
    }

    .cursor, .cursor-dot {
        display: none;
    }

    nav {
        padding: 1.5rem 2rem;
    }

    .nav-links {
        display: none;
    }

    .hero {
        padding: 6rem 2rem;
        min-height: auto;
    }

    .hero-content {
        padding: 0;
    }

    .contact-main {
        padding: 6rem 2rem;
    }

    .contact-form-panel {
        padding: 1.75rem;
    }
}

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

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