@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

:root {
    --primary: #c5a059;
    --primary-dark: #a68549;
    --bg: #0a0a0a;
    --bg-alt: #121212;
    --text: #ffffff;
    --text-dim: #b3b3b3;
    --glass: rgba(255, 255, 255, 0.03);
    --border: rgba(255, 255, 255, 0.1);
}

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

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

h1, h2, h3, h4, .serif {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

section {
    padding: 100px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.btn {
    display: inline-block;
    padding: 16px 36px;
    background: var(--primary);
    color: #000;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: 0.4s cubic-bezier(0.2, 0.6, 0.2, 1);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(197, 160, 89, 0.3);
}

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

.btn-outline:hover {
    background: var(--primary);
    color: #000;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    z-index: 1000;
    transition: 0.5s;
    background: transparent;
}

nav.scrolled {
    height: 70px;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}

.logo {
    font-size: 1.5rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-dim);
}

.nav-links a:hover {
    color: var(--primary);
}

/* Hero Section - Balanced Split */
.hero {
    height: 100vh;
    min-height: 800px;
    display: flex;
    position: relative;
    overflow: hidden;
    background: #080808;
    padding: 0;
}

.hero-bg-glow {
    position: absolute;
    top: 50%;
    right: 0%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.08) 0%, transparent 70%);
    transform: translateY(-50%);
    pointer-events: none;
}

.hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
}

.hero-visual-side {
    padding: 120px 40px 40px 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-img-container {
    width: 100%;
    height: 100%;
    position: relative;
    border: 1px solid var(--border);
}

.hero-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.frame-border {
    position: absolute;
    top: 20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--primary);
    z-index: -1;
    pointer-events: none;
}

.hero-content-side {
    display: flex;
    align-items: center;
    padding-left: 80px;
    padding-right: 10%;
}

.hero-inner {
    max-width: 550px;
}

.gold-line {
    width: 80px;
    height: 2px;
    background: var(--primary);
    margin: 25px 0;
}

.hero-inner h1 {
    font-size: clamp(3.5rem, 6vw, 5.5rem);
    line-height: 0.9;
    margin-bottom: 30px;
    color: #fff;
    font-weight: 800;
    text-transform: uppercase;
}

.hero-subtext {
    font-size: 1.1rem;
    color: var(--text-dim);
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

.scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-dim);
}

.mouse {
    width: 20px;
    height: 35px;
    border: 1px solid var(--border);
    border-radius: 20px;
    position: relative;
}

.mouse::after {
    content: '';
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 8px;
    background: var(--primary);
    animation: scrollMove 2s infinite;
}

@keyframes scrollMove {
    0% { opacity: 0; transform: translate(-50%, 0); }
    50% { opacity: 1; transform: translate(-50%, 5px); }
    100% { opacity: 0; transform: translate(-50%, 10px); }
}

.scroll-down span {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 3px;
}
    height: 100%;
    object-fit: cover;
}

.hero-text-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tagline {
    font-size: 0.8rem;
    color: var(--primary);
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: 600;
}

.hero-text-content h1 {
    font-size: clamp(3.5rem, 8vw, 6.5rem);
    line-height: 0.95;
    margin-bottom: 40px;
    color: #fff;
    font-weight: 800;
}

.accent-text {
    color: var(--primary);
    font-style: italic;
    font-weight: 400;
}

.hero-btns {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    color: var(--text-dim);
}

.scroll-indicator span {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    writing-mode: vertical-lr;
}

.scroll-indicator .line {
    width: 1px;
    height: 60px;
    background: linear-gradient(var(--primary), transparent);
}

/* Experience Section */
.experience {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.exp-content h2 {
    font-size: 3.5rem;
    margin-bottom: 30px;
    color: var(--primary);
}

.exp-content p {
    font-size: 1.1rem;
    color: var(--text-dim);
    margin-bottom: 30px;
}

.exp-img {
    position: relative;
}

.exp-img img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border: 1px solid var(--border);
}

.exp-img::after {
    content: '';
    position: absolute;
    top: 30px;
    right: -30px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--primary);
    z-index: -1;
}

/* Services */
.services {
    background: var(--bg-alt);
    text-align: center;
}

.section-head {
    margin-bottom: 60px;
}

.section-head h2 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.section-head div {
    width: 60px;
    height: 2px;
    background: var(--primary);
    margin: 0 auto;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--glass);
    padding: 50px 30px;
    border: 1px solid var(--border);
    transition: 0.4s;
}

.service-card:hover {
    border-color: var(--primary);
    transform: translateY(-10px);
}

.service-card i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-dim);
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
}

.gallery-item {
    height: 450px;
    overflow: hidden;
    border: 1px solid var(--border);
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.8s cubic-bezier(0.2, 0.6, 0.2, 1);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    transform: translateY(100%);
    transition: 0.4s;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

/* Testimonials */
.testimonials {
    background: var(--bg-alt);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.testimonial-card {
    padding: 40px;
    border-left: 2px solid var(--primary);
    background: var(--glass);
}

.stars {
    color: var(--primary);
    margin-bottom: 20px;
    display: flex;
    gap: 5px;
}

.t-content {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: var(--text-dim);
}

.t-author {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

/* Contact & Hours */
.contact-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid var(--border);
    color: var(--text-dim);
}

.hours-list li.today {
    color: var(--primary);
    font-weight: 600;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item h4 {
    color: var(--primary);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.info-item p {
    font-size: 1.2rem;
}

/* Footer */
footer {
    padding: 80px 5%;
    background: #000;
    border-top: 1px solid var(--border);
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.social-links a {
    font-size: 1.5rem;
    color: var(--text-dim);
}

.social-links a:hover {
    color: var(--primary);
}

.copyright {
    color: var(--text-dim);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Animations */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

@media (max-width: 968px) {
    .hero-split {
        grid-template-columns: 1fr;
    }

    .hero-visual-side {
        padding: 120px 5% 40px;
        height: 50vh;
    }

    .hero-content-side {
        padding: 40px 5% 100px;
        text-align: center;
        justify-content: center;
    }

    .hero-inner h1 {
        font-size: 3.5rem;
    }

    .hero-btns {
        flex-direction: column;
        width: 100%;
    }

    .scroll-down {
        display: none;
    }
    
    .experience, .contact-section {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .nav-links {
        display: none;
    }
}
