:root{
    --gold:#b98a3d;
    --gold-dark:#8f6621;
    --maroon:#3e0f16;
    --maroon-2:#5a1720;
    --cream:#f8f2e8;
    --text:#2d2420;
}

html, body {
    font-family: "Vazirmatn", sans-serif;
    background: #fbf7f1;
    color: var(--text);
}

body {
    overflow-x: hidden;
}

.navbar {
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 12px rgba(0,0,0,.06);
}

.brand-title {
    color: var(--maroon);
    letter-spacing: .3px;
    font-weight: 800;
}

.nav-link {
    color: #4a3f3b !important;
    font-weight: 500;
    transition: .25s ease;
}

.nav-link:hover {
    color: var(--gold) !important;
}

.btn-gold {
    background: linear-gradient(180deg, #d7ab52, #b98a3d);
    color: #fff;
    border: 0;
    box-shadow: 0 8px 20px rgba(185,138,61,.25);
}

.btn-gold:hover {
    background: linear-gradient(180deg, #c99a45, #9f7430);
    color:#fff;
}

.btn-outline-gold {
    border: 1px solid rgba(255,255,255,.5);
    color: #fff;
}

.btn-outline-gold:hover {
    background: rgba(255,255,255,.12);
    color:#fff;
}

.hero {
    background: radial-gradient(circle at 20% 20%, rgba(255,255,255,.08), transparent 30%),
    linear-gradient(90deg, #2f0810 0%, #4a121d 50%, #5c1a26 100%);
    color: #fff;
    min-height: 82vh;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto -10% -12% -10%;
    height: 220px;
    background: linear-gradient(180deg, transparent, rgba(0,0,0,.22));
    transform: skewY(-3deg);
}

.hero-title {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.4rem, 5vw, 4.6rem);
    line-height: 1.08;
    font-weight: 700;
}

.hero-subtitle {
    max-width: 560px;
    color: rgba(255,255,255,.88);
    font-size: 1.05rem;
}

.hero-card {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 1.25rem;
    box-shadow: 0 20px 50px rgba(0,0,0,.18);
}

.section-title {
    font-family: Georgia, "Times New Roman", serif;
    color: var(--maroon);
    font-weight: 700;
}

.section-subline {
    width: 120px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: .75rem auto 0;
}

.feature-strip {
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0,0,0,.05);
    transform: translateY(-38px);
    position: relative;
    z-index: 2;
}

.icon-circle {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(185,138,61,.09);
    display: grid;
    place-items: center;
    color: var(--gold-dark);
    font-size: 1.2rem;
    flex: 0 0 auto;
}

.category-card,
.product-card,
.quality-card,
.step-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,.06);
    border-radius: 1.2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,.04);
    transition: .25s ease;
    height: 100%;
}

.category-card:hover,
.product-card:hover,
.quality-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(0,0,0,.08);
}

.gold-badge {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    color: var(--gold-dark);
    background: rgba(185,138,61,.08);
    border: 1px solid rgba(185,138,61,.18);
    padding: .35rem .8rem;
    border-radius: 999px;
    font-size: .9rem;
}

.dark-band {
    background: linear-gradient(90deg, #3a0911, #5a1720);
    color: #fff;
}

.dark-band .section-title,
.dark-band p {
    color: #fff;
}

.step-number {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 2px solid rgba(185,138,61,.65);
    color: var(--gold);
    display: grid;
    place-items: center;
    font-weight: 700;
    margin-inline: auto;
}

.footer {
    background: #171717;
    color: rgba(255,255,255,.78);
}

.footer a {
    color: rgba(255,255,255,.78);
    text-decoration: none;
}

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

.small-muted {
    color: #7d6f68;
    font-size: .95rem;
}

.section-pad {
    padding: 5rem 0;
}

@media (max-width: 991px) {
    .hero {
        min-height: auto;
        padding-top: 5rem;
        padding-bottom: 4rem;
    }
    .feature-strip {
        transform: none;
        margin-top: 1.25rem;
    }
}