:root {
    --bg-color: #0c0c0c;
    --surface-color: #161616;
    --accent-color: #e6a84f;
    --accent-glow: rgba(230, 168, 79, 0.4);
    --text-primary: #f2f2f2;
    --text-secondary: #999999;
    
    --font-heading: 'Cinzel', serif;
    --font-body: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
}

h1, h2, h3, .brand-word {
    font-family: var(--font-heading);
    font-weight: 600;
}

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

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(12, 12, 12, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 1rem 2rem;
    background: rgba(12, 12, 12, 0.95);
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    text-decoration: none;
    outline: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.brand:hover .brand-mark,
.brand:hover .brand-word {
    filter: drop-shadow(0 0 8px var(--accent-glow));
    color: #f1c40f;
}

.brand:focus-visible {
    outline: 1px solid var(--accent-color);
    outline-offset: 4px;
}

.brand-mark {
    width: 36px;
    height: 36px;
    color: var(--accent-color);
    filter: drop-shadow(0 0 5px var(--accent-glow));
    transition: all 0.3s ease;
}

.brand-word {
    font-size: 1.5rem;
    color: var(--accent-color);
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 0 10px var(--accent-glow);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: baseline;
    line-height: 1;
}

.brand-domain {
    font-family: var(--font-heading);
    font-size: 0.62em;
    color: rgba(230, 168, 79, 0.72);
    text-shadow: 0 0 6px rgba(230, 168, 79, 0.22);
    font-weight: 400;
    text-transform: lowercase;
    letter-spacing: 0.06em;
    margin-left: 0.12em;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent-color);
    text-shadow: 0 0 8px var(--accent-glow);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background-image: linear-gradient(to bottom, rgba(12, 12, 12, 0.4), rgba(12, 12, 12, 0.9)), url('../assets/images/hero-bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-content {
    max-width: 800px;
    padding: 0 2rem;
    animation: fadeIn 1.5s ease-out;
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
    text-shadow: 0 0 20px var(--accent-glow);
    letter-spacing: 2px;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 2.5rem;
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 2px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background-color: transparent;
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
    box-shadow: inset 0 0 0 var(--accent-color);
}

.btn-primary:hover {
    background-color: var(--accent-color);
    color: var(--bg-color);
    box-shadow: 0 0 20px var(--accent-glow);
}

/* Typography elements */
section {
    padding: 7rem 0;
}

section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3.5rem;
    color: var(--accent-color);
    position: relative;
}

section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background-color: var(--accent-color);
    box-shadow: 0 0 10px var(--accent-glow);
}

/* About */
.about {
    background-color: var(--bg-color);
}

.about p {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.2rem;
    color: var(--text-secondary);
    font-weight: 300;
    text-wrap: pretty;
}

.about p + p {
    margin-top: 1rem;
}

/* Gallery Grid */
.gallery {
    background-color: var(--surface-color);
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
    gap: 3rem;
}

.product-card {
    background: var(--bg-color);
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.03);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.6), 0 0 15px rgba(230, 168, 79, 0.15);
    border-color: rgba(230, 168, 79, 0.2);
}

.product-image {
    width: 100%;
    height: 350px;
    background-color: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

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

.product-image.placeholder::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        #111,
        #111 10px,
        #161616 10px,
        #161616 20px
    );
    opacity: 0.8;
}

.placeholder-text {
    position: relative;
    color: var(--text-secondary);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1.5rem;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.product-info {
    padding: 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 3.2rem;
}

.product-info p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.product-meta {
    margin: 1.5rem 0;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    text-align: left;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.product-meta span {
    display: flex;
    justify-content: space-between;
}

.product-meta strong {
    font-weight: 400;
    color: #666;
}

.price {
    display: block;
    margin-top: auto;
    font-size: 1.4rem;
    color: var(--accent-color);
    font-weight: 600;
    font-family: var(--font-heading);
}

/* Contact */
.contact {
    background-color: var(--bg-color);
    text-align: center;
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(230, 168, 79, 0.2), transparent);
}

.contact p {
    margin-bottom: 3rem;
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.contact-methods {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

/* Footer */
footer {
    text-align: center;
    padding: 2.5rem;
    background-color: #080808;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
}

footer p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    letter-spacing: 1px;
}

/* Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

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

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .navbar, .navbar.scrolled {
        padding: 1rem;
    }
    
    .nav-links {
        display: none;
    }

    .brand-mark {
        width: clamp(28px, 6vw, 36px);
        height: clamp(28px, 6vw, 36px);
    }
    
    .brand-word {
        font-size: clamp(1.2rem, 5vw, 1.5rem);
    }
    
    .brand-domain {
        font-size: clamp(0.85rem, 4vw, 1rem);
    }

    .hero {
        height: auto;
        min-height: 100svh;
        padding: 7rem 0 4rem;
        background-attachment: scroll;
    }
    
    .hero h1 {
        font-size: clamp(2.5rem, 8vw, 4.5rem);
    }
    
    .hero p {
        font-size: clamp(1rem, 4vw, 1.25rem);
        max-width: 31ch;
        margin: 0 auto 2.5rem auto;
    }
    
    .hero-content .btn {
        width: 100%;
        max-width: 20rem;
    }

    .grid {
        grid-template-columns: 1fr;
    }
    
    .product-image {
        height: 300px;
    }
    
    .product-info {
        padding: 1.5rem;
    }
    
    .product-info h3 {
        min-height: auto;
    }
    
    .product-info p {
        max-width: 28ch;
        margin-left: auto;
        margin-right: auto;
    }
    
    .product-meta span {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
        text-align: left;
    }

    .contact-methods {
        flex-direction: column;
        gap: 1rem;
    }
}
