/* ========================================
   CSS Variables & Reset
======================================== */
:root {
    --color-black: #000000;
    --color-dark-gray: #1d1d22;
    --color-white: #ffffff;
    --color-gray-text: #404040;
    --color-gold: #cfa76f;
    
    --font-primary: 'Mulish', sans-serif;
    --font-heading: 'Poppins', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-weight: 400;
    background: var(--color-black);
    color: var(--color-white);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

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

/* ========================================
   Header
======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: var(--color-white);
    color: var(--color-black);
}

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

.logo img {
    border-radius: 50%;
}

.nav {
    display: flex;
    gap: 32px;
}

.nav a {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-black);
    transition: color 0.3s ease;
}

.nav a:hover,
.nav a.active {
    color: var(--color-gold);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle svg {
    fill: var(--color-black);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-white);
    z-index: 200;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.mobile-menu.open {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu-close {
    position: absolute;
    top: 32px;
    right: 24px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile-menu-close svg {
    fill: var(--color-black);
}

.mobile-menu a {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--color-black);
}

.mobile-menu a:hover,
.mobile-menu a.active {
    color: var(--color-gold);
}

/* ========================================
   Hero Video Section
======================================== */
.hero-video {
    width: 100%;
    margin-top: 111px; /* Header height */
}

.hero-video video {
    width: 100%;
    display: block;
}

/* ========================================
   Hello Section
======================================== */
.hello-section {
    background: var(--color-dark-gray);
    padding: 48px 0 64px;
}

.hello-grid {
    display: grid;
    grid-template-columns: 60% 40%;
    gap: 32px;
    align-items: center;
}

.hello-title h1 {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--color-white);
}

.hello-content p {
    font-size: 1.1rem;
    opacity: 0.8;
    margin-bottom: 24px;
    line-height: 1.7;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 50px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 3px;
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: var(--font-primary);
}

.btn-primary {
    background: var(--color-gold);
    color: var(--color-white);
    border: none;
}

.btn-primary:hover {
    background: #b8935f;
}

.btn-outline {
    background: transparent;
    color: var(--color-black);
    border: 2px solid var(--color-black);
}

.btn-outline:hover {
    background: var(--color-black);
    color: var(--color-white);
}

/* ========================================
   Vimeo Section
======================================== */
.vimeo-section {
    background: var(--color-black);
    padding: 0;
}

.video-embed {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
    max-width: 100%;
}

.video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ========================================
   Coming Soon Section
======================================== */
.coming-soon-section {
    background: var(--color-white);
    color: var(--color-black);
    text-align: center;
    padding: 64px 24px;
}

.small-label {
    font-size: 0.875rem;
    line-height: 0.9;
    margin-bottom: 16px;
}

.coming-soon-section h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 24px;
    color: var(--color-gold);
}

/* ========================================
   Footer Section
======================================== */
.footer-section {
    background: var(--color-black);
    text-align: center;
    padding: 40px 24px;
}

.tagline {
    font-size: 1.125rem;
    line-height: 1.5;
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: opacity 0.3s ease;
}

.social-links a:hover {
    opacity: 0.7;
}

.social-links svg {
    fill: rgba(255, 255, 255, 0.8);
}

/* ========================================
   About Page
======================================== */
.page-content {
    margin-top: 111px;
    background: var(--color-white);
    color: var(--color-black);
    min-height: calc(100vh - 111px);
}

.page-header {
    padding: 64px 24px 32px;
    text-align: center;
}

.page-header h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    color: var(--color-gold);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px 64px;
    align-items: start;
}

.about-image {
    position: relative;
    min-height: 500px;
}

.about-image img {
    position: absolute;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.about-image img:first-child {
    width: 65%;
    aspect-ratio: 3/4;
    top: 0;
    left: 0;
    z-index: 1;
}

.about-image img:last-child {
    width: 55%;
    aspect-ratio: 2/3;
    bottom: 0;
    right: 0;
    z-index: 2;
}

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

.about-text p.lead {
    font-size: 1.25rem;
    color: var(--color-black);
}

.about-text a:not(.btn) {
    color: var(--color-gold);
    text-decoration: underline;
}

.about-text a:not(.btn):hover {
    color: #b8935f;
}

.page-body {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px 64px;
}

.page-body p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--color-gray-text);
}

.page-body p:first-of-type {
    font-size: 1.25rem;
    color: var(--color-black);
}

.page-body a:not(.btn) {
    color: var(--color-gold);
    text-decoration: underline;
}

.page-body a:not(.btn):hover {
    color: #b8935f;
}

.page-footer {
    text-align: center;
    padding: 32px 24px 64px;
    border-top: 1px solid #eee;
    margin-top: 32px;
}

/* ========================================
   Contact Page
======================================== */
.contact-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 48px;
}

.contact-intro p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--color-gray-text);
    margin-bottom: 0.5rem;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--color-black);
}

.required {
    color: #e74c3c;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.form-privacy {
    font-size: 0.875rem;
    color: var(--color-gray-text);
    margin-bottom: 24px;
}

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

.contact-tagline {
    text-align: center;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid #eee;
    font-style: italic;
    color: var(--color-gold);
}

/* Copyright */
.copyright {
    text-align: center;
    padding: 24px;
    font-size: 0.875rem;
    color: var(--color-gray-text);
    border-top: 1px solid #eee;
}

/* ========================================
   Responsive Design
======================================== */
@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .nav-toggle {
        display: block;
    }

    .mobile-menu {
        display: flex;
    }

    .header-inner {
        padding: 24px;
    }

    .hero-video {
        margin-top: 95px;
    }

    .hello-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .hello-title h1 {
        font-size: 2.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .page-content {
        margin-top: 95px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .about-image {
        min-height: 400px;
        order: -1;
    }

    .about-image img:first-child {
        width: 60%;
    }

    .about-image img:last-child {
        width: 50%;
    }
}

@media (max-width: 480px) {
    .hello-section {
        padding: 32px 0 48px;
    }
    
    .btn {
        padding: 14px 32px;
    }
}
