﻿:root {
    --bg: #0b0b0b;
    --bg-alt: #121212;
    --gold: #c8a96a;
    --red: #7a1f1f;
    --text: #f3efe6;
    --muted: #c7b9a3;
    --shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
    --max-width: 1200px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Manrope', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(90vw, var(--max-width));
    margin: 0 auto;
}

.section {
    padding: 96px 0;
}

section {
    scroll-margin-top: 90px;
}

.section__head {
    margin-bottom: 48px;
    max-width: 640px;
}

h1, h2, h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    letter-spacing: 0.5px;
}

h1 {
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    line-height: 1.1;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    margin-bottom: 16px;
}

h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

p {
    color: var(--muted);
}

.tag {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 30px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease;
    cursor: pointer;
}

.btn--primary {
    background: var(--red);
    color: #fff;
    box-shadow: 0 12px 30px rgba(122, 31, 31, 0.45);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(122, 31, 31, 0.55);
}

.btn--outline {
    border-color: var(--gold);
    color: var(--gold);
    background: transparent;
}

.btn--outline:hover {
    background: rgba(200, 169, 106, 0.12);
    transform: translateY(-2px);
}

.btn--small {
    padding: 10px 22px;
    font-size: 0.9rem;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(11, 11, 11, 0.25);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: background 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(8px);
}

.site-header.is-solid {
    background: rgba(11, 11, 11, 0.92);
    box-shadow: var(--shadow);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    gap: 24px;
}

.brand {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-family: 'Cormorant Garamond', serif;
    color: var(--gold);
}

.brand__name {
    font-size: 1.5rem;
    letter-spacing: 0.15em;
}

.brand__tag {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: rgba(200, 169, 106, 0.7);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 26px;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.site-nav a {
    color: var(--text);
    transition: color 0.3s ease;
}

.site-nav a:hover {
    color: var(--gold);
}

body.nav-open {
    overflow: hidden;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.nav-toggle__line {
    width: 24px;
    height: 2px;
    background: var(--gold);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-image: linear-gradient(120deg, rgba(11, 11, 11, 0.9), rgba(11, 11, 11, 0.4)), var(--hero-image);
    background-size: cover;
    background-position: center;
    padding: 140px 0 120px;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(200, 169, 106, 0.15), transparent 55%);
    pointer-events: none;
}

.hero__glow {
    position: absolute;
    bottom: -80px;
    right: 10%;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(122, 31, 31, 0.5), transparent 70%);
    filter: blur(20px);
    opacity: 0.8;
}

.hero__content {
    position: relative;
    z-index: 1;
    max-width: 640px;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--gold);
    font-size: 0.8rem;
    margin-bottom: 16px;
}

.hero__subtitle {
    font-size: 1.1rem;
    margin: 20px 0 32px;
    color: rgba(243, 239, 230, 0.85);
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 32px;
}

.hero__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero__badges span {
    border: 1px solid rgba(200, 169, 106, 0.4);
    color: var(--gold);
    padding: 6px 16px;
    border-radius: 999px;
    font-size: 0.85rem;
    background: rgba(11, 11, 11, 0.55);
}

.about {
    background: var(--bg-alt);
}

.about__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 48px;
    align-items: center;
}

.about__image img {
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 32px 0;
}

.feature-card {
    background: rgba(15, 15, 15, 0.9);
    padding: 24px;
    border-radius: 16px;
    border: 1px solid rgba(200, 169, 106, 0.15);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.25);
}

.feature-card p {
    color: rgba(243, 239, 230, 0.7);
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 16px;
}

.stat {
    padding: 16px;
    border-radius: 12px;
    border: 1px solid rgba(200, 169, 106, 0.2);
    text-align: center;
    font-weight: 600;
    color: var(--gold);
    background: rgba(11, 11, 11, 0.65);
}

.products {
    background: #0f0f0f;
}

.filters {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 32px;
}

.filter {
    padding: 10px 22px;
    border-radius: 999px;
    border: 1px solid rgba(200, 169, 106, 0.3);
    background: transparent;
    color: var(--gold);
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease;
}

.filter.is-active,
.filter:hover {
    background: var(--gold);
    color: #0b0b0b;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 26px;
}

.product-card {
    background: rgba(15, 15, 15, 0.85);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: var(--shadow);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.product-card__media {
    height: 220px;
    background-size: cover;
    background-position: center;
    transition: transform 0.4s ease;
}

.product-card__body {
    padding: 24px;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.5);
}

.product-card:hover .product-card__media {
    transform: scale(1.05);
}

.product-meta {
    display: block;
    margin-top: 12px;
    color: var(--gold);
    font-size: 0.9rem;
}

.cta-banner {
    padding: 70px 0;
    background: linear-gradient(120deg, rgba(122, 31, 31, 0.9), rgba(11, 11, 11, 0.9));
}

.cta-banner__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cta-banner h2 {
    margin-bottom: 6px;
}

.reviews {
    background: #f6f2ea;
    color: #1c1c1c;
}

.reviews p,
.reviews .tag {
    color: #7a1f1f;
}

.reviews h2 {
    color: #1c1c1c;
}

.rating {
    font-weight: 600;
    color: #7a1f1f;
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.testimonial {
    background: #fff;
    padding: 26px;
    border-radius: 16px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.testimonial p {
    color: #1c1c1c;
    margin-bottom: 12px;
}

.testimonial span {
    color: #7a1f1f;
    font-weight: 600;
}

.location__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 36px;
    align-items: center;
}

.location__map iframe {
    width: 100%;
    height: 320px;
    border: none;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.location__info p {
    margin-bottom: 20px;
}

.contact {
    background: var(--bg-alt);
}

.contact__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 36px;
    align-items: start;
}

.contact__info p {
    margin-bottom: 24px;
}

.contact__form {
    display: grid;
    gap: 16px;
    background: rgba(15, 15, 15, 0.85);
    padding: 28px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact__form label {
    font-weight: 600;
    color: var(--gold);
}

.contact__form input,
.contact__form textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid rgba(200, 169, 106, 0.25);
    background: rgba(11, 11, 11, 0.8);
    color: var(--text);
    font-family: inherit;
}

.contact__form input:focus,
.contact__form textarea:focus {
    outline: 2px solid rgba(200, 169, 106, 0.4);
    border-color: rgba(200, 169, 106, 0.6);
}

.site-footer {
    padding: 48px 0;
    background: #070707;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer__meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
    color: rgba(243, 239, 230, 0.6);
}

.footer__meta a {
    color: var(--gold);
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 960px) {
    .site-nav {
        position: absolute;
        top: 100%;
        right: 5vw;
        background: rgba(11, 11, 11, 0.98);
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding: 20px 24px;
        border-radius: 12px;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-10px);
        transition: opacity 0.3s ease, transform 0.3s ease;
        box-shadow: var(--shadow);
    }

    body.nav-open .site-nav {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .nav-toggle {
        display: flex;
    }

    .header__cta {
        display: none;
    }

    .cta-banner__content {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 720px) {
    .hero {
        padding: 120px 0 90px;
    }

    .hero__actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer__inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    * {
        transition: none !important;
        animation: none !important;
    }
}
