:root {
    --color-bg-dark: #0a0b10;
    --color-bg-card: #15161c;
    --color-bg-lighter: #1e1f26;
    --color-gold: #FFC107;
    --color-gold-hover: #e0a800;
    --color-text-main: #ffffff;
    --color-text-muted: #a0a0a0;
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Roboto', sans-serif;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--color-bg-dark);
    color: var(--color-text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Typography Utilities */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-weight: 700;
}

.text-gold {
    color: var(--color-gold);
}

.subheading {
    display: block;
    color: var(--color-gold);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-family: var(--font-heading);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-family: var(--font-heading);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    font-size: 0.9rem;
}

.btn-gold {
    background-color: var(--color-gold);
    color: #000;
    border-color: var(--color-gold);
}

.btn-gold:hover {
    background-color: transparent;
    color: var(--color-gold);
}

.btn-outline {
    background-color: transparent;
    color: #fff;
    border-color: #fff;
}

.btn-outline:hover {
    background-color: #fff;
    color: #000;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 11, 16, 0.95);
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo i {
    color: var(--color-gold);
}

.logo span {
    color: var(--color-gold);
}

.nav-list {
    display: flex;
    gap: 30px;
}

.nav-list a {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--font-heading);
}

.nav-list a:hover {
    color: var(--color-gold);
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    background: url('https://placehold.co/1920x1080/0a0b10/FFC107?text=PRECISION+MEETS+LUXURY') no-repeat center center/cover;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(10, 11, 16, 0.9) 0%, rgba(10, 11, 16, 0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin-top: 60px;
    /* Offset for fixed header */
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 193, 7, 0.2);
    color: var(--color-gold);
    padding: 5px 10px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    border-left: 3px solid var(--color-gold);
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero p {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    right: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--color-text-muted);
    font-size: 0.8rem;
    letter-spacing: 2px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

.scroll-indicator i {
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(10px);
    }

    60% {
        transform: translateY(5px);
    }
}

/* Services Section */
.services {
    padding: 100px 0;
    background-color: var(--color-bg-dark);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
    flex-wrap: wrap;
    gap: 30px;
}

.section-header h2 {
    font-size: 3rem;
}

.service-note {
    max-width: 400px;
    color: var(--color-text-muted);
    font-size: 0.9rem;
    text-align: right;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--color-bg-card);
    padding: 40px 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-gold);
}

.service-icon {
    font-size: 2rem;
    color: var(--color-gold);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin-bottom: 30px;
    min-height: 60px;
}

.service-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.price {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
}

.service-link {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Gallery Section */
.gallery {
    padding: 80px 0;
    background-color: var(--color-bg-dark);
}

.section-title-center {
    text-align: center;
    margin-bottom: 60px;
}

.section-title-center h2 {
    font-size: 3rem;
}

.title-underline {
    width: 60px;
    height: 4px;
    background-color: var(--color-gold);
    margin: 20px auto 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 250px);
    gap: 15px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Grid Layout Specifics for distinct look */
.item-1 {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
}

/* Tall left */
.item-2 {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
}

.item-3 {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
}

.item-4 {
    grid-column: 3 / 5;
    grid-row: 1 / 2;
}

/* Wide top right */
.item-5 {
    grid-column: 3 / 5;
    grid-row: 2 / 3;
}

/* Wide bottom right */

/* Philosophy Section */
.philosophy {
    padding: 100px 0;
    background-color: var(--color-bg-dark);
}

.philosophy-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.philosophy-image {
    position: relative;
}

.philosophy-image img {
    border-radius: 5px;
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background-color: var(--color-gold);
    color: #000;
    padding: 30px;
    text-align: center;
    border-radius: 5px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.experience-badge .years {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.experience-badge .label {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.philosophy-content h2 {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 30px;
}

.philosophy-content p {
    color: var(--color-text-muted);
    margin-bottom: 40px;
}

.features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.feature-item i {
    font-size: 2rem;
    color: var(--color-gold);
    margin-bottom: 15px;
}

.feature-item h4 {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.feature-item p {
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 0;
}

/* Footer Section */
.footer {
    background-color: #050508;
    padding: 80px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.brand-col p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin: 20px 0;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--color-gold);
    color: #000;
}

.footer-col h3 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: #fff;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    color: var(--color-text-muted);
    font-size: 0.9rem;
    border-bottom: 1px dotted rgba(255, 255, 255, 0.1);
    padding-bottom: 5px;
}

.hours-list li:last-child {
    border-bottom: none;
}

.closed {
    color: var(--color-gold);
}

.visit-col p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.map-placeholder img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 5px;
    filter: grayscale(100%);
    transition: var(--transition);
}

.map-placeholder img:hover {
    filter: grayscale(0%);
}

.footer-bottom {
    background-color: #020203;
    padding: 30px 0;
    font-size: 0.8rem;
    color: #666;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 20px;
}

/* MEDIA QUERIES FOR RESPONSIVENESS */

@media (max-width: 1024px) {
    .hero h1 {
        font-size: 3rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 250px);
    }

    .item-1 {
        grid-column: 1 / 2;
        grid-row: 1 / 2;
    }

    .item-2 {
        grid-column: 2 / 3;
        grid-row: 1 / 2;
    }

    .item-3 {
        grid-column: 1 / 2;
        grid-row: 2 / 3;
    }

    .item-4 {
        grid-column: 2 / 3;
        grid-row: 2 / 3;
    }

    .item-5 {
        grid-column: 1 / 3;
        grid-row: 3 / 4;
    }

    .philosophy-container {
        grid-template-columns: 1fr;
    }

    .philosophy-image {
        order: 2;
        margin-top: 50px;
    }

    .philosophy-content {
        order: 1;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .visit-col {
        grid-column: 1 / 3;
    }
}

@media (max-width: 768px) {
    .header .btn {
        display: none;
    }

    /* Hide CTA on mobile or move to menu */
    .nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--color-bg-dark);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        /* Center items */
        transition: 0.4s;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav.active {
        left: 0;
    }

    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 40px;
        width: 100%;
    }

    .nav-list a {
        font-size: 1.5rem;
        /* Larger touch targets */
    }

    .hamburger {
        display: block;
        color: #fff;
    }

    .hero-content {
        text-align: center;
        margin: 0 auto;
        padding-top: 80px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .section-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .service-note {
        text-align: center;
    }

    .features {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .visit-col {
        grid-column: auto;
    }

    .footer-bottom .container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .experience-badge {
        right: 0;
        bottom: -20px;
        padding: 20px;
    }

    .experience-badge .years {
        font-size: 2rem;
    }
}