:root {
    --bg-dark: #060606;
    --bg-darker: #040404;
    --text-white: #ffffff;
    --text-grey: #aaaaaa;
    --accent-gold: #d49134; 
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-grey);
    font-family: var(--font-body);
    overflow-x: hidden;
    width: 100%;
}

html {
    overflow-x: hidden;
    width: 100%;
}

img {
    max-width: 100%;
}

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

.bg-darker {
    background-color: var(--bg-darker);
}

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

.section-padding {
    padding: 100px 0;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

.btn-outline {
    border: 1.5px solid var(--accent-gold);
    color: var(--accent-gold);
    background-color: rgba(0, 0, 0, 0.7);
}

.btn-outline:hover {
    border-color: #D49134;
    background-color: #D49134;
    color: var(--bg-dark);
}

/* Header */
.header {
    padding: 30px 0;
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 10;
}
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.logo {
    display: flex;
    align-items: center;
}
.logo svg {
    height: 45px;
    width: auto;
    margin-right: 15px;
}
.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.1;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    font-family: var(--font-body);
    text-align: left;
    color: var(--text-white);
}

.nav ul {
    display: flex;
    gap: 40px;
    list-style: none;
}
.nav a {
    color: var(--text-white);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}
.nav a:hover {
    color: var(--accent-gold);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(to right, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.85) 30%, rgba(0,0,0,0.5) 60%, rgba(0,0,0,0) 100%), url('../images/Bg.png') center/cover no-repeat;
    display: flex;
    align-items: center;
}
.hero .container {
    width: 100%;
}
.hero-content {
    max-width: 800px;
}
.hero-title {
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 400;
    line-height: 1.0;
    margin-bottom: 30px;
    letter-spacing: 1px;
    color: var(--text-white);
}
.hero-separator {
    border: none;
    border-top: 1.5px solid var(--accent-gold);
    width: 70px;
    margin-bottom: 30px;
    margin-left: 0;
}
.hero-tags {
    font-size: 0.75rem;
    letter-spacing: 2.5px;
    color: var(--text-white);
    font-weight: 500;
}
.separator {
    margin: 0 15px;
}

/* Typography Additions */
.gold-subtitle {
    font-size: 0.75rem;
    color: var(--accent-gold);
    letter-spacing: 2px;
    text-transform: uppercase;
}
.gold-italic {
    color: var(--accent-gold);
    font-style: italic;
}
.gold-caption {
    font-size: 0.85rem;
    color: var(--accent-gold);
}
.mt-3 { margin-top: 15px; }
.mt-4 { margin-top: 30px; }
.mb-2 { margin-bottom: 10px; }
.mb-3 { margin-bottom: 15px; }
.mb-4 { margin-bottom: 30px; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* Lines */
.short-gold-line {
    width: 60px;
    height: 1px;
    background-color: var(--accent-gold);
    margin: 20px 0;
}
.short-gold-line.center { margin-left: auto; margin-right: auto; }

.section-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 60px;
}
.long-gold-line {
    flex-grow: 1;
    height: 1px;
    background-color: rgba(212, 145, 52, 0.3);
    max-width: 300px;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}
.about-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--text-white);
    line-height: 1.2;
    margin-top: 20px;
}
.about-right p {
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-grey);
}
.about-right p:last-child { margin-bottom: 0; }

/* Featured Concepts */
.section-title {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--accent-gold);
    letter-spacing: 3px;
    text-transform: uppercase;
}
.concepts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.concept-card {
    background: transparent;
    border: 1px solid rgba(212, 145, 52, 0.4);
    padding: 60px 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}
.concept-logo-text {
    height: 250px;
    display: flex;
    align-items: center;
    color: var(--text-white);
}
.concept-logo-svg {
    height: 250px;
    color: var(--text-white);
}
.concept-logo-flex {
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: var(--text-white);
}
.learn-more {
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: var(--text-white);
    text-decoration: none;
    font-weight: 600;
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 0.3s;
}
.learn-more:hover {
    color: var(--accent-gold);
}
.learn-more .arrow {
    color: var(--accent-gold);
    font-size: 1.2rem;
    transition: transform 0.3s;
}
.learn-more:hover .arrow {
    transform: translateX(5px);
}

/* Services */
.services-row {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: nowrap;
    gap: 0;
}
.service-icon-box {
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 0 15px;
}
.service-icon-box svg {
    width: 32px;
    height: 32px;
    margin-bottom: 25px;
}
.service-icon-box h4 {
    font-size: 0.65rem;
    letter-spacing: 1.5px;
    color: var(--text-white);
    text-transform: uppercase;
    line-height: 1.6;
    font-weight: 500;
}
.service-separator {
    width: 1px;
    background-color: var(--accent-gold);
    opacity: 0.5;
    margin: 0 10px;
}

/* Contact Section */
.contact-box {
    border: 1px solid rgba(212, 145, 52, 0.4);
    padding: 60px 50px;
    border-radius: 4px;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.inquiry-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--text-white);
    line-height: 1.2;
}
.contact-desc {
    font-size: 0.85rem;
    line-height: 1.8;
    color: var(--text-grey);
}
.inquiry-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.form-row {
    display: flex;
    gap: 20px;
}
.inquiry-form input,
.inquiry-form textarea {
    width: 100%;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 1px;
    border-radius: 2px;
}
.inquiry-form input:focus,
.inquiry-form textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
}
.btn-solid-gold {
    background-color: var(--accent-gold);
    color: var(--bg-dark);
    border: none;
    padding: 18px 40px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    border-radius: 2px;
    transition: background-color 0.3s;
}
.btn-solid-gold:hover {
    background-color: #e5a443;
}
.btn-solid-gold .arrow {
    font-size: 1.2rem;
}

/* Footer */
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr 2.5fr;
    gap: 40px;
}
.footer-col:not(:first-child) {
    border-left: 1px solid rgba(212, 145, 52, 0.4);
    padding-left: 40px;
}
.footer-logo { margin-bottom: 20px; }
.social-icons {
    display: flex;
    gap: 15px;
}
.social-circle {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(212, 145, 52, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 0.75rem;
    text-decoration: none;
    transition: all 0.3s;
}
.social-circle svg {
    width: 16px;
    height: 16px;
    fill: var(--text-white);
    transition: fill 0.3s;
}
.social-circle:hover {
    border-color: var(--accent-gold);
}
.social-circle:hover svg {
    fill: var(--accent-gold);
}
.footer-nav { list-style: none; }
.footer-nav li { margin-bottom: 12px; }
.footer-nav a {
    color: var(--text-white);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
}
.footer-nav a:hover { color: var(--accent-gold); }
.contact-info-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}
.gold-icon {
    color: var(--accent-gold);
    font-size: 1.1rem;
}
.contact-info-item p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--text-white);
}
.footer-insta-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
.footer-insta-grid img {
    width: 100%;
    height: 70px;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid rgba(212, 145, 52, 0.6);
}
.footer-bottom {
    background-color: var(--bg-dark);
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid rgba(212, 145, 52, 0.4);
}
.footer-bottom p {
    font-size: 0.75rem;
    color: var(--text-grey);
    letter-spacing: 1px;
}

/* Hamburger Menu Base Styles */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 100;
}
.hamburger .bar {
    width: 25px;
    height: 2px;
    background-color: var(--accent-gold);
    margin: 4px 0;
    transition: all 0.3s ease;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    /* Responsive Grids */
    .about-grid, 
    .concepts-grid, 
    .services-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer-col:not(:first-child) {
        border-left: none;
        padding-left: 0;
    }
}

@media (max-width: 768px) {
    /* Header & Nav Mobile Overlay */
    .hamburger {
        display: flex;
    }
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(10px) rotate(45deg);
    }
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-10px) rotate(-45deg);
    }

    .nav {
        position: fixed;
        left: -100%;
        top: 0;
        gap: 0;
        flex-direction: column;
        background-color: var(--bg-dark);
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: 0.3s ease;
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 90;
    }
    .nav.active {
        left: 0;
    }
    .nav ul {
        flex-direction: column;
        gap: 30px;
    }
    
    .header .btn-outline {
        display: none;
    }
    .header .btn-outline.active {
        display: inline-block;
        position: fixed;
        bottom: 50px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 95;
    }

    /* Typography scaling */
    .hero {
        height: auto;
        min-height: 75vh;
        padding: 150px 0 50px 0;
    }
    
    .hero-title {
        font-size: 2.6rem;
    }
    .section-title {
        font-size: 2.5rem;
    }
    .inquiry-title {
        font-size: 1.8rem;
    }
    .hero-tags {
        font-size: 0.55rem;
        letter-spacing: 1.5px;
    }
    .separator {
        margin: 0 6px;
    }
    
    .section-padding {
        padding: 60px 0;
    }

    /* Container & Layout adjustments */
    .container {
        padding: 0 20px;
        width: 100%;
        max-width: 100vw;
    }
    .concept-card {
        padding: 40px 20px;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }
    .services-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px 20px;
        width: 100%;
    }
    .service-icon-box {
        width: 100%;
        max-width: 100%;
    }
    .service-separator {
        display: none;
    }
    .contact-box {
        padding: 40px 20px;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }
    .form-row {
        flex-direction: column;
        gap: 20px;
    }
    .section-header {
        max-width: 100%;
    }
    .long-gold-line {
        min-width: 0;
    }
    
    /* Text stacking for mobile */
    .stack-mobile {
        display: block;
        line-height: 1.2;
    }
    .hide-mobile {
        display: none;
    }
    .section-title {
        font-size: 2.2rem;
    }
}
