@font-face {
    font-family: IRANSans;
    font-style: normal;
    font-display: swap;
    font-weight: normal;
    src: url("fonts/IRANSans/IRANSansWeb.woff2") format("woff2"), url("fonts/IRANSans/IRANSansWeb.woff") format("woff");
}

@font-face {
    font-family: IRANSans;
    font-style: normal;
    font-display: swap;
    font-weight: bold;
    src: url("fonts/IRANSans/IRANSansWeb_Bold.woff2") format("woff2"), url("fonts/IRANSans/IRANSansWeb_Bold.woff") format("woff");
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'IRANSans', sans-serif;
    direction: rtl;
    background: #1a1209;
    color: #3d2e10;
    overflow-x: hidden;
    line-height: 1.8;
}

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

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

ul {
    list-style: none;
}

/* ===== COLOR VARIABLES ===== */
:root {
    --cream: #FDF6E3;
    --cream-dark: #F0E4C8;
    --brown-light: #C8A96E;
    --brown: #8B6914;
    --brown-dark: #3D2E10;
    --brown-darker: #2A1F0A;
    --burgundy: #8B1A2B;
    --burgundy-light: #A8384C;
    --gold: #D4A537;
    --gold-light: #E8C96A;
    --gold-dark: #B8860B;
    --warm-white: #FFFBF0;
    --warm-gray: #7A6B5A;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--brown-darker);
}

::-webkit-scrollbar-thumb {
    background: var(--brown-light);
    border-radius: 4px;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-14px);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% center;
    }

    100% {
        background-position: 200% center;
    }
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 30px rgba(212,165,55,0.2);
    }

    50% {
        box-shadow: 0 0 60px rgba(212,165,55,0.5);
    }
}

@keyframes spinSlow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes steam1 {
    0% {
        opacity: 0;
        transform: translateY(0) translateX(0) scale(0.5);
    }

    30% {
        opacity: 0.5;
    }

    100% {
        opacity: 0;
        transform: translateY(-60px) translateX(10px) scale(1.5);
    }
}

@keyframes steam2 {
    0% {
        opacity: 0;
        transform: translateY(0) translateX(0) scale(0.5);
    }

    30% {
        opacity: 0.4;
    }

    100% {
        opacity: 0;
        transform: translateY(-50px) translateX(-12px) scale(1.3);
    }
}

@keyframes bounceDown {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(6px);
    }
}

.anim-hidden {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.anim-delay-1 {
    transition-delay: 0.1s;
}

.anim-delay-2 {
    transition-delay: 0.2s;
}

.anim-delay-3 {
    transition-delay: 0.3s;
}

.anim-delay-4 {
    transition-delay: 0.4s;
}

.anim-delay-5 {
    transition-delay: 0.5s;
}

.anim-delay-6 {
    transition-delay: 0.6s;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 100;
    padding: 20px 0;
    transition: all 0.4s ease;
}

    .navbar.scrolled {
        background: rgba(42, 31, 10, 0.97);
        backdrop-filter: blur(12px);
        padding: 12px 0;
        box-shadow: 0 4px 30px rgba(0,0,0,0.4);
    }

.navbar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.nav-logo {
    /* width: 52px;*/
    height: 52px;
    /*border-radius: 50%;
    border: 2px solid rgba(212,165,55,0.5);
    object-fit: cover;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);*/
}

.nav-brand-text h1 {
    color: var(--cream);
    font-size: 16px;
    font-weight: 700;
}

.nav-brand-text span {
    color: var(--gold-light);
    font-size: 11px;
    display: block;
    margin-top: -2px;
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

    .nav-links a {
        color: rgba(253,246,227,0.7);
        font-size: 14px;
        font-weight: 500;
        transition: color 0.3s;
        position: relative;
        padding-bottom: 4px;
    }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            right: 0;
            width: 0;
            height: 2px;
            background: var(--gold);
            transition: width 0.3s;
            border-radius: 1px;
        }

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

            .nav-links a:hover::after {
                width: 100%;
            }

.btn-order {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--burgundy), var(--burgundy-light));
    color: var(--cream);
    font-size: 14px;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(139,26,43,0.3);
}

    .btn-order:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 30px rgba(139,26,43,0.4);
    }

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, #1a1209 0%, #3d1a1a 35%, #2a1f0a 65%, #1a1209 100%);
}

/*.hero-bg-img {
    position: absolute;
    inset: 0;
    background: url('images/hero-bg.jpg') center/cover no-repeat;
    opacity: 0.2;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: url('images/texture-pattern.jpg') center/400px repeat;
    opacity: 0.04;
}*/

.hero-vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 30%, rgba(0,0,0,0.6) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 140px 24px 80px;
    text-align: center;
}

.hero-logo-wrap {
    margin-bottom: 32px;
    animation: fadeIn 1s ease forwards;
}

.hero-logo-ring {
    display: inline-block;
    padding: 6px;
    border-radius: 50%;
    animation: pulseGlow 3s ease-in-out infinite;
}

.hero-logo {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    border: 4px solid rgba(212,165,55,0.4);
    object-fit: cover;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.hero-title {
    font-size: clamp(32px, 7vw, 72px);
    font-weight: 900;
    color: var(--cream);
    line-height: 1.3;
    margin-bottom: 12px;
    animation: fadeInUp 0.8s 0.2s ease forwards;
    opacity: 0;
}

.hero-title-gold {
    background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 4s linear infinite;
}

.hero-subtitle {
    font-size: clamp(15px, 2.5vw, 20px);
    color: var(--gold-light);
    font-weight: 500;
    margin-bottom: 8px;
    animation: fadeInUp 0.8s 0.5s ease forwards;
    opacity: 0;
}

.hero-slogan {
    font-size: clamp(13px, 2vw, 16px);
    color: rgba(253,246,227,0.5);
    margin-bottom: 48px;
    animation: fadeInUp 0.8s 0.7s ease forwards;
    opacity: 0;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-bottom: 64px;
    animation: fadeInUp 0.8s 0.9s ease forwards;
    opacity: 0;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
    color: var(--brown-dark);
    font-size: 18px;
    font-weight: 800;
    padding: 20px 48px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(212,165,55,0.3);
    transition: all 0.3s;
}

    .btn-hero-primary:hover {
        transform: translateY(-3px) scale(1.03);
        box-shadow: 0 12px 40px rgba(212,165,55,0.5);
    }

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 2px solid rgba(253,246,227,0.25);
    color: var(--cream);
    font-size: 16px;
    font-weight: 600;
    padding: 18px 40px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
}

    .btn-hero-secondary:hover {
        border-color: rgba(253,246,227,0.5);
        background: rgba(253,246,227,0.08);
    }

/* Hero Bowl */
.hero-bowl-wrap {
    position: relative;
    display: inline-block;
    animation: fadeInUp 1s 1.1s ease forwards;
    opacity: 0;
}

.hero-bowl-float {
    animation: float 4s ease-in-out infinite;
}

.hero-bowl-img {
    width: clamp(280px, 45vw, 450px);
    height: clamp(280px, 45vw, 450px);
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid rgba(212,165,55,0.3);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.hero-bowl-ring {
    position: absolute;
    inset: -16px;
    border: 2px dashed rgba(212,165,55,0.15);
    border-radius: 50%;
    animation: spinSlow 25s linear infinite;
}

/* Steam */
.steam-container {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 60px;
    pointer-events: none;
}

.steam {
    position: absolute;
    bottom: 0;
    width: 10px;
    height: 20px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    filter: blur(4px);
}

.steam-1 {
    right: 20px;
    animation: steam1 3s 0s ease-out infinite;
}

.steam-2 {
    right: 45px;
    animation: steam2 3s 0.8s ease-out infinite;
}

.steam-3 {
    right: 65px;
    animation: steam1 3s 1.5s ease-out infinite;
}

/* Scroll indicator */
.scroll-indicator {
    margin-top: 48px;
    animation: fadeIn 1s 1.5s ease forwards;
    opacity: 0;
}

    .scroll-indicator a {
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        color: rgba(253,246,227,0.3);
        transition: color 0.3s;
        font-size: 12px;
    }

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

.scroll-mouse {
    width: 24px;
    height: 38px;
    border: 2px solid currentColor;
    border-radius: 12px;
    margin-top: 8px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-dot {
    width: 3px;
    height: 8px;
    background: currentColor;
    border-radius: 2px;
    animation: bounceDown 1.5s infinite;
}

/* ===== ORNAMENTAL DIVIDER ===== */
.ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px 0;
}

.ornament-line {
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.ornament-diamond {
    width: 10px;
    height: 10px;
    border: 1.5px solid var(--gold);
    transform: rotate(45deg);
    background: rgba(212,165,55,0.15);
}

.ornament-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
}

/* ===== SECTION COMMONS ===== */
.section-light {
    background: var(--warm-white);
    position: relative;
}

.section-dark {
    background: linear-gradient(180deg, var(--brown-darker), #1a1209, var(--brown-darker));
    position: relative;
}

.section-cream {
    background: var(--cream-dark);
}

.section-pad {
    padding: 100px 24px;
}

.section-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-icon {
    font-size: 36px;
    margin-bottom: 16px;
    display: block;
}

.section-title {
    font-size: clamp(28px, 5vw, 44px);
    font-weight: 900;
    margin-bottom: 8px;
}

.section-title-dark {
    color: var(--brown-dark);
}

.section-title-light {
    color: var(--cream);
}

.section-desc {
    font-size: clamp(14px, 2vw, 17px);
    max-width: 550px;
    margin: 0 auto;
    line-height: 1.9;
}

.section-desc-dark {
    color: var(--warm-gray);
}

.section-desc-light {
    color: rgba(253,246,227,0.55);
}

/* ===== ABOUT ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-img-frame {
    border: 3px solid var(--gold);
    border-radius: 16px;
    padding: 8px;
    background: rgba(212,165,55,0.05);
    position: relative;
}

    .about-img-frame::before {
        content: '';
        position: absolute;
        inset: 14px;
        border: 1px solid rgba(212,165,55,0.25);
        border-radius: 10px;
        pointer-events: none;
    }

.about-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
}

.about-text p {
    font-size: 16px;
    color: var(--warm-gray);
    line-height: 2;
    margin-bottom: 20px;
}

.about-text strong {
    color: var(--brown-dark);
    font-weight: 700;
}

.about-quote {
    background: linear-gradient(135deg, rgba(139,26,43,0.06), rgba(212,165,55,0.06));
    border-radius: 16px;
    padding: 24px 32px;
    border: 1px solid rgba(212,165,55,0.15);
    text-align: center;
    margin: 28px 0;
}

    .about-quote p {
        color: var(--burgundy) !important;
        font-weight: 700;
        font-size: 20px !important;
        margin: 0 !important;
    }

.about-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 8px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 15px;
    color: var(--warm-gray);
}

.about-feature-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(212,165,55,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--gold-dark);
    font-size: 14px;
}

/* ===== FEATURES ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.feature-card {
    background: rgba(253,246,227,0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212,165,55,0.2);
    border-radius: 20px;
    padding: 44px 32px;
    text-align: center;
    transition: all 0.4s ease;
}

    .feature-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 16px 48px rgba(0,0,0,0.15);
        border-color: rgba(212,165,55,0.4);
    }

.feature-emoji {
    font-size: 52px;
    margin-bottom: 20px;
    display: block;
    transition: transform 0.3s;
}

.feature-card:hover .feature-emoji {
    transform: scale(1.15);
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--brown-dark);
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 14px;
    color: var(--warm-gray);
    line-height: 1.9;
}

/* ===== QUOTE ===== */
.quote-frame {
    border: 3px solid var(--gold);
    border-radius: 20px;
    padding: 64px 56px;
    position: relative;
    background: rgba(255,251,240,0.8);
    max-width: 800px;
    margin: 0 auto;
}

    .quote-frame::before {
        content: '';
        position: absolute;
        inset: 10px;
        border: 1px solid rgba(212,165,55,0.3);
        border-radius: 14px;
        pointer-events: none;
    }

.quote-stars {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 28px;
}

.quote-star {
    color: var(--gold);
    font-size: 24px;
}

.quote-text {
    font-size: clamp(22px, 4vw, 34px);
    font-weight: 800;
    color: var(--brown-dark);
    line-height: 1.5;
    margin-bottom: 20px;
    text-align: center;
}

.quote-desc {
    font-size: 16px;
    color: var(--warm-gray);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 28px;
    line-height: 2;
}

.quote-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(212,165,55,0.1);
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    color: var(--brown);
}

/* ===== CONTACT ===== */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 56px;
}

.contact-card {
    border: 3px solid var(--gold);
    border-radius: 20px;
    padding: 44px 28px;
    text-align: center;
    background: rgba(253,246,227,0.4);
    transition: all 0.3s;
    position: relative;
}

    .contact-card::before {
        content: '';
        position: absolute;
        inset: 8px;
        border: 1px solid rgba(212,165,55,0.25);
        border-radius: 14px;
        pointer-events: none;
    }

    .contact-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 36px rgba(0,0,0,0.06);
    }

.contact-icon-wrap {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
}

    .contact-icon-wrap svg {
        width: 32px;
        height: 32px;
        fill: var(--burgundy);
    }

.contact-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--brown-dark);
    margin-bottom: 10px;
}

.contact-card p {
    font-size: 16px;
    color: var(--warm-gray);
    font-weight: 500;
}

.contact-icon-phone {
    background: linear-gradient(135deg, rgba(212,165,55,0.15), rgba(212,165,55,0.05));
}

.contact-icon-map {
    background: linear-gradient(135deg, rgba(139,26,43,0.15), rgba(139,26,43,0.05));
}

.contact-icon-insta {
    background: linear-gradient(135deg, rgba(225,48,108,0.15), rgba(131,58,180,0.05));
}

.cta-box {
    background: linear-gradient(135deg, var(--brown-dark), #4a3520);
    border-radius: 24px;
    padding: 64px 56px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    /*.cta-box::before {
        content: '';
        position: absolute;
        inset: 0;
        background: url('images/texture-pattern.jpg') center/400px repeat;
        opacity: 0.04;
    }*/

    .cta-box h3 {
        font-size: clamp(24px, 4vw, 34px);
        font-weight: 900;
        color: var(--cream);
        margin-bottom: 14px;
        position: relative;
        z-index: 1;
    }

    .cta-box p {
        font-size: 16px;
        color: rgba(253,246,227,0.5);
        margin-bottom: 36px;
        position: relative;
        z-index: 1;
    }

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
    color: var(--brown-dark);
    font-size: 20px;
    font-weight: 800;
    padding: 22px 56px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(212,165,55,0.25);
    transition: all 0.3s;
    position: relative;
    z-index: 1;
}

    .btn-cta:hover {
        transform: translateY(-3px) scale(1.03);
        box-shadow: 0 12px 40px rgba(212,165,55,0.45);
    }

/* ===== FOOTER ===== */
.footer {
    background: var(--brown-darker);
    border-top: 1px solid rgba(212,165,55,0.15);
    padding: 64px 24px 36px;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.footer-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid rgba(212,165,55,0.3);
    margin: 0 auto 18px;
    object-fit: cover;
}

.footer-brand {
    font-size: 20px;
    font-weight: 700;
    color: var(--cream);
    margin-bottom: 6px;
}

.footer-slogan {
    font-size: 13px;
    color: var(--gold-light);
    margin-bottom: 24px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
    margin: 24px 0 28px;
    font-size: 14px;
}

.footer-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(253,246,227,0.5);
    transition: color 0.3s;
}

    .footer-link svg {
        width: 20px;
        height: 20px;
        fill: var(--burgundy);
        margin-bottom: 1px;
    }

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

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-bottom: 32px;
}

.footer-badge {
    background: rgba(253,246,227,0.04);
    border: 1px solid rgba(253,246,227,0.08);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 13px;
    color: rgba(253,246,227,0.35);
}

.footer-copy {
    border-top: 1px solid rgba(253,246,227,0.06);
    padding-top: 28px;
    font-size: 12px;
    color: rgba(253,246,227,0.2);
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 32px;
    left: 32px;
    z-index: 90;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--brown-dark);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(212,165,55,0.3);
    transition: all 0.3s;
    font-size: 22px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

    .back-to-top.show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .back-to-top svg {
        width: 30px;
        height: 30px;
        fill: var(--brown-dark);
    }

    .back-to-top:hover {
        transform: translateY(-3px) scale(1.1);
        box-shadow: 0 10px 30px rgba(212,165,55,0.5);
    }

/* ===== MOBILE MENU ===== */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 44px;
    height: 44px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

    .mobile-menu-btn span {
        display: block;
        width: 24px;
        height: 2px;
        background: var(--cream);
        border-radius: 2px;
        transition: all 0.3s;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(42, 31, 10, 0.98);
    z-index: 95;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 36px;
}

    .mobile-menu.open {
        display: flex;
    }

    .mobile-menu a {
        color: var(--cream);
        font-size: 22px;
        font-weight: 600;
        transition: color 0.3s;
        padding: 10px 0;
    }

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

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
        display: none;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-img {
        height: 320px;
    }

    .features-grid {
        grid-template-columns: 1fr 1fr;
    }

    .contact-cards {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 56px;
    }

    .section-pad {
        padding: 80px 20px;
    }

    .ornament-line {
        width: 50px;
    }

    .quote-frame {
        padding: 48px 32px;
    }

    .cta-box {
        padding: 48px 32px;
    }
}

@media (max-width: 600px) {
    .features-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-logo {
        width: 130px;
        height: 130px;
    }

    .quote-frame {
        padding: 40px 24px;
    }

    .cta-box {
        padding: 40px 24px;
    }

    .nav-brand-text {
        display: none;
    }

    .btn-hero-primary {
        font-size: 16px;
        padding: 18px 36px;
    }

    .btn-hero-secondary {
        font-size: 14px;
        padding: 16px 32px;
    }

    .btn-order {
        padding: 12px 20px;
        font-size: 13px;
    }

    .section-pad {
        padding: 64px 16px;
    }
}
