:root {
    --gold: #d4a853;
    --gold-light: #e8c882;
    --gold-muted: #b8945a;
    --charcoal: #000000;
    --charcoal-light: #1a1a1a;
    --charcoal-medium: #252525;
    --off-white: #f5f5f3;
    --gray-100: #e8e8e6;
    --gray-200: #d1d1cf;
    --gray-400: #8a8a88;
    --gray-500: #6b6b69;
    --gray-600: #4a4a48;
    
    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;
    
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    background: var(--charcoal);
    color: var(--off-white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background: var(--gold);
    color: var(--charcoal);
}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--charcoal);
}

::-webkit-scrollbar-thumb {
    background: var(--gold-muted);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold);
}

.gold-text {
    color: var(--gold);
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

.section-description {
    font-size: 1.125rem;
    color: var(--gray-400);
    max-width: 500px;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 4rem;
    background: rgba(15, 15, 15, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--off-white);
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
}

.logo-text {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 500;
    letter-spacing: -0.02em;
}

.nav {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    position: relative;
    text-decoration: none;
    color: var(--gray-400);
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    transition: color 0.3s var(--ease-out-quart);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s var(--ease-out-quart);
}

.nav-link:hover,
.nav-link.active {
    color: var(--off-white);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.cta-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: 1px solid rgba(212, 168, 83, 0.3);
    border-radius: 100px;
    color: var(--gold);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s var(--ease-out-quart);
}

.cta-button:hover {
    background: var(--gold);
    color: var(--charcoal);
    border-color: var(--gold);
}

#bee-model {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 50;
    pointer-events: none;
    transition: transform 0.3s var(--ease-out-quart);
    --poster-color: transparent;
}

.home {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 8rem 4rem 4rem;
}

.hero-content {
    max-width: 600px;
    z-index: 20;
}

.hero-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
    padding: 0.5rem 1rem;
    background: rgba(212, 168, 83, 0.1);
    border: 1px solid rgba(212, 168, 83, 0.2);
    border-radius: 100px;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
}

.title-line {
    display: block;
}

.hero-description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--gray-400);
    margin-bottom: 2.5rem;
    max-width: 480px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--gold);
    border: none;
    border-radius: 100px;
    color: var(--charcoal);
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s var(--ease-out-quart);
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(212, 168, 83, 0.3);
}

.btn-secondary {
    padding: 1rem 2rem;
    background: transparent;
    border: 1px solid var(--gray-600);
    border-radius: 100px;
    color: var(--off-white);
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s var(--ease-out-quart);
}

.btn-secondary:hover {
    border-color: var(--off-white);
    background: rgba(255, 255, 255, 0.05);
}

.about {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 4rem;
}

.about-content {
    max-width: 600px;
    margin-left: auto;
    z-index: 20;
}

.about-header {
    margin-bottom: 2rem;
}

.about-text {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 1.5rem;
    padding: 2.5rem;
}

.lead-text {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--off-white);
    margin-bottom: 1.5rem;
}

.body-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--gray-400);
    margin-bottom: 2rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 500;
    color: var(--gold);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--gray-500);
}

.link-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--gold);
    font-size: 0.9375rem;
    font-weight: 500;
    transition: all 0.3s var(--ease-out-quart);
}

.link-button:hover {
    gap: 0.75rem;
}

.link-button i {
    transition: transform 0.3s var(--ease-out-quart);
}

.link-button:hover i {
    transform: translateX(4px);
}

.gallery {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* padding: 8rem 4rem; */
}

.gallery-header {
    text-align: center;
    margin-bottom: 2rem;
    z-index: 20;
}

.gallery-header .section-description {
    margin: 0 auto;
}

.gallery-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    z-index: 20;
}

.gallery-card {
    position: relative;
    aspect-ratio: 3/4;
    cursor: pointer;
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 1.5rem;
    overflow: hidden;
    transition: all 0.4s var(--ease-out-quart);
}

.gallery-card:hover .card-inner {
    transform: translateY(-8px);
    border-color: rgba(212, 168, 83, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.card-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: linear-gradient(135deg, var(--charcoal-light) 0%, var(--charcoal-medium) 100%);
}

.card-image img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.4s var(--ease-out-quart);
}
.gallery-card:hover .card-image img {
    transform: scale(1.05);
}


.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
}

.card-title {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--off-white);
    margin-bottom: 0.25rem;
}

.card-subtitle {
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--gray-500);
}

.card-accent {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    border-top: 2px solid var(--gold);
    border-right: 2px solid var(--gold);
    opacity: 0;
    transition: opacity 0.3s var(--ease-out-quart);
}

.gallery-card:hover .card-accent {
    opacity: 1;
}

.contact {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 4rem;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    max-width: 1000px;
    width: 100%;
    z-index: 20;
}


.contact-form {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 1.5rem;
    padding: 2.5rem;
}

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

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--off-white);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    color: var(--off-white);
    font-family: var(--font-sans);
    font-size: 1rem;
    transition: all 0.3s var(--ease-out-quart);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-600);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(212, 168, 83, 0.05);
}

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

.btn-primary.full-width {
    width: 100%;
    justify-content: center;
}

.footer {
    position: relative;
    z-index: 20;
    padding: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.footer-brand .logo {
    margin-bottom: 0.5rem;
}

.footer-tagline {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    text-decoration: none;
    color: var(--gray-400);
    font-size: 0.875rem;
    transition: color 0.3s var(--ease-out-quart);
}

.footer-links a:hover {
    color: var(--off-white);
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--gray-400);
    transition: all 0.3s var(--ease-out-quart);
}

.social-link:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(212, 168, 83, 0.1);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    font-size: 0.875rem;
    color: var(--gray-600);
}

@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
}

.reveal.in-view {
    animation: fadeSlideUp 0.8s var(--ease-out-expo) forwards;
}

.reveal.in-view.animation-delay-100 { animation-delay: 0.1s; }
.reveal.in-view.animation-delay-200 { animation-delay: 0.2s; }
.reveal.in-view.animation-delay-300 { animation-delay: 0.3s; }
.reveal.in-view.animation-delay-400 { animation-delay: 0.4s; }
.reveal.in-view.animation-delay-500 { animation-delay: 0.5s; }
.reveal.in-view.animation-delay-600 { animation-delay: 0.6s; }

@media (max-width: 1024px) {
    .header {
        padding: 1.25rem 2rem;
    }
    
    .nav {
        display: none;
    }
    
    .home,
    .about,
    .gallery,
    .contact {
        padding: 6rem 2rem;
    }
    
    .gallery-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer {
        padding: 3rem 2rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .header {
        padding: 1rem 1.5rem;
    }
    
    .cta-button span {
        display: none;
    }
    
    .home,
    .about,
    .gallery,
    .contact {
        padding: 5rem 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .gallery-content {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .footer {
        padding: 2rem 1.5rem;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem 2rem;
    }
}
