/* Design Tokens */
:root {
    --primary: #121212;
    --accent: #d4a373; /* Sophisticated Champagne/Gold */
    --bg-light: #fafafa;
    --white: #ffffff;
    --text-muted: #777;
    --transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--primary);
    background-color: var(--white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2.5rem;
}

.section {
    padding: 120px 0;
}

h1, h2, h3, .logo {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
}

.section-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 2.5rem;
    letter-spacing: -1px;
}

/* Navigation */
.navbar {
    height: 90px;
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.03);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-size: 1.8rem;
    text-decoration: none;
    color: var(--primary);
    letter-spacing: 0.5px;
}

.logo span {
    color: var(--accent);
    font-weight: 700;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.6;
    transition: var(--transition);
}

.nav-links a:hover {
    opacity: 1;
    color: var(--accent);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    background: var(--bg-light);
    padding-top: 90px;
}

.hero-title {
    font-size: clamp(3.5rem, 9vw, 6.5rem);
    line-height: 0.95;
    margin-bottom: 2rem;
}

.hero-title i {
    font-family: 'Cormorant Garamond', serif;
}

.hero-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 450px;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.btn-luxe {
    display: inline-block;
    padding: 1.2rem 3.5rem;
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid var(--primary);
    transition: var(--transition);
    cursor: pointer;
}

.btn-luxe:hover {
    background: transparent;
    color: var(--primary);
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
    font-size: 1.1rem;
}

.about-image img {
    width: 100%;
    height: auto;
    filter: sepia(15%);
    border-radius: 2px;
}

/* Gallery (Bento Grid) */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 300px;
    gap: 1.5rem;
}

.bento-item {
    background-size: cover;
    background-position: center;
    transition: var(--transition);
    filter: grayscale(100%);
}

.bento-item:hover {
    filter: grayscale(0%);
    transform: scale(0.98);
}

.item-1 { grid-column: span 8; grid-row: span 2; }
.item-2 { grid-column: span 4; grid-row: span 1; }
.item-3 { grid-column: span 4; grid-row: span 1; }
.item-4 { grid-column: span 12; grid-row: span 1; }

/* Contact Section */
.contact-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10%;
}

.contact-info p {
    color: var(--text-muted);
    max-width: 300px;
}

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

.form-group label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 1rem;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 10px 0;
    border: none;
    border-bottom: 1px solid #ddd;
    background: transparent;
    font-family: inherit;
    font-size: 1rem;
    outline: none;
    transition: var(--transition);
}

.form-group input:focus {
    border-bottom-color: var(--accent);
}

.contact-form .btn-luxe {
    width: 100%;
}

/* Footer */
.footer {
    padding: 5rem 0;
    text-align: center;
    background: var(--bg-light);
    border-top: 1px solid rgba(0,0,0,0.03);
}

.footer p {
    font-size: 0.7rem;
    letter-spacing: 2px;
    font-weight: 600;
    opacity: 0.4;
    text-transform: uppercase;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .about-grid, .contact-wrap {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .nav-links {
        display: none; /* Mobile menu logic required for production */
    }

    .section-title {
        font-size: 2.8rem;
    }

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

    .item-1, .item-2, .item-3, .item-4 {
        grid-column: span 1;
        grid-row: span 1;
    }
}