:root {
    --black: #000000;
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --mid-gray: #999999;
    --transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--white);
    color: var(--black);
}

/* Header & Logo */
.main-header {
    background-color: var(--white);
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 50px;
}

.brand-logo {
    width: 323px;
    height: 158px;
    object-fit: contain;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 50px;
}

.nav-links a {
    text-decoration: none;
    color: var(--black);
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--mid-gray);
}

/* Hero Section */
.hero {
    position: relative;
    height: calc(100vh - 198px); /* Height minus the header space */
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-left: 10%;
    max-width: 700px;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.8rem;
    color: var(--mid-gray);
    display: block;
    margin-bottom: 15px;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 30px;
}

.hero-content h1 em {
    font-style: italic;
    font-weight: 400;
}

/* Fancy Buttons */
.hero-actions {
    display: flex;
    align-items: center;
    gap: 30px;
}

.btn-dark {
    background: var(--black);
    color: var(--white);
    padding: 18px 40px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    transition: var(--transition);
}

.btn-dark:hover {
    background: #333;
    transform: translateY(-2px);
}

.btn-text {
    color: var(--black);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    transition: var(--transition);
}

.btn-text:hover {
    color: var(--mid-gray);
    padding-left: 5px;
}