:root {
    --wine: #3d1f24;
    --wine-deep: #2a1217;
    --rose: #8a3c4d;
    --gold: #c9a15b;
    --gold-soft: #e8d5a3;
    --ivory: #fbf6ee;
    --cream: #f4ead8;
    --ink: #2b1a1d;
    --muted: #7a6468;
    --white: #fffdf9;
    --shadow: 0 24px 60px rgba(61, 31, 36, 0.16);
    --radius: 22px;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: "Cairo", sans-serif;
    background:
        radial-gradient(1200px 500px at 100% -10%, rgba(201, 161, 91, 0.22), transparent 55%),
        radial-gradient(900px 400px at -10% 20%, rgba(138, 60, 77, 0.12), transparent 50%),
        var(--ivory);
    color: var(--ink);
    line-height: 1.8;
    min-height: 100vh;
}

.page-glow {
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image: radial-gradient(circle at 20% 10%, rgba(255,255,255,.5) 0 1px, transparent 1px);
    background-size: 28px 28px;
    opacity: .35;
    z-index: 0;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
[dir="ltr"] { unicode-bidi: isolate; }
h1, h2, h3, .serif { font-family: "Amiri", serif; }

.container {
    width: min(1120px, calc(100% - 32px));
    margin-inline: auto;
    position: relative;
    z-index: 1;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(16px);
    background: rgba(251, 246, 238, 0.86);
    border-bottom: 1px solid rgba(201, 161, 91, 0.25);
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 14px 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-inline-end: auto;
}

.brand strong { display: block; font-size: 1.05rem; color: var(--wine); }
.brand small { display: block; color: var(--muted); font-size: .78rem; }

.brand-mark {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: linear-gradient(145deg, var(--gold-soft), var(--gold));
    color: var(--wine-deep);
    font-size: 1.3rem;
    box-shadow: 0 8px 18px rgba(201, 161, 91, 0.35);
}

.site-nav {
    display: flex;
    gap: 6px;
    align-items: center;
}

.site-nav a {
    padding: 8px 14px;
    border-radius: 999px;
    color: var(--wine);
    font-weight: 600;
}

.site-nav a.is-active,
.site-nav a:hover {
    background: var(--wine);
    color: var(--gold-soft);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    height: 2px;
    background: var(--wine);
    margin: 6px 8px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 999px;
    padding: 12px 22px;
    font-weight: 700;
    border: 0;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease;
}

.btn:hover { transform: translateY(-2px); }

.btn-gold {
    background: linear-gradient(135deg, #e8d5a3, #c9a15b);
    color: var(--wine-deep);
    box-shadow: 0 10px 24px rgba(201, 161, 91, .35);
}

.btn-wine {
    background: var(--wine);
    color: var(--gold-soft);
}

.btn-ghost {
    background: transparent;
    border: 1px solid rgba(201, 161, 91, .5);
    color: var(--wine);
}

.hero {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 40px;
    align-items: center;
    padding: 70px 0 40px;
}

.kicker {
    color: var(--rose);
    font-weight: 700;
    letter-spacing: .08em;
}

.hero h1 {
    font-size: clamp(2.2rem, 5vw, 4.1rem);
    line-height: 1.25;
    color: var(--wine-deep);
    margin: 10px 0 18px;
}

.lead { font-size: 1.12rem; color: var(--muted); max-width: 36rem; }

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.hero-card {
    background: linear-gradient(180deg, var(--wine-deep), var(--wine));
    color: var(--ivory);
    border-radius: 32px;
    padding: 32px;
    box-shadow: var(--shadow);
    min-height: 360px;
    position: relative;
    overflow: hidden;
}

.hero-card::after {
    content: "✿";
    position: absolute;
    left: -20px;
    bottom: -40px;
    font-size: 180px;
    opacity: .12;
    color: var(--gold);
}

.hero-card h2 { color: var(--gold-soft); margin-bottom: 12px; font-size: 2rem; }
.hero-card ul { list-style: none; margin-top: 18px; }
.hero-card li { padding: 8px 0; border-bottom: 1px solid rgba(232, 213, 163, .15); }

.section { padding: 70px 0; }
.section-head { text-align: center; margin-bottom: 36px; }
.section-head h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); color: var(--wine); }
.section-head p { color: var(--muted); }

.grid-3, .grid-2 {
    display: grid;
    gap: 22px;
}

.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
    background: var(--white);
    border: 1px solid rgba(201, 161, 91, .22);
    border-radius: var(--radius);
    padding: 26px;
    box-shadow: 0 10px 30px rgba(61, 31, 36, .06);
}

.card h3 { color: var(--wine); margin-bottom: 8px; font-size: 1.5rem; }
.icon { font-size: 1.7rem; margin-bottom: 10px; }

.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 28px;
}

.stat {
    background: var(--cream);
    border-radius: 18px;
    padding: 18px;
    text-align: center;
}

.stat b { display: block; font-size: 1.4rem; color: var(--wine); }

.quote {
    background: linear-gradient(135deg, var(--cream), var(--white));
    border-right: 5px solid var(--gold);
}

.form {
    display: grid;
    gap: 14px;
}

label { font-weight: 700; color: var(--wine); }

input, select, textarea {
    width: 100%;
    border: 1px solid rgba(61, 31, 36, .12);
    background: #fff;
    border-radius: 14px;
    padding: 12px 14px;
    font: inherit;
}

textarea { min-height: 140px; resize: vertical; }

.alert {
    padding: 14px 16px;
    border-radius: 14px;
    margin-bottom: 16px;
}

.alert-ok { background: #e9f7ef; color: #145a32; }
.alert-err { background: #fdecea; color: #7b241c; }

.site-footer {
    margin-top: 40px;
    background: var(--wine-deep);
    color: #f3e6d8;
    padding: 48px 0 18px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr .8fr .9fr;
    gap: 24px;
}

.footer-brand { margin-bottom: 10px; color: var(--gold-soft); }
.site-footer a, .site-footer p { display: block; color: #eadcc4; margin: 6px 0; }
.muted { color: #cbb8a4 !important; font-size: .92rem; }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 28px;
    padding-top: 16px;
    border-top: 1px solid rgba(232, 213, 163, .15);
    font-size: .9rem;
    color: #cbb8a4;
}

.pill {
    display: inline-block;
    background: rgba(201, 161, 91, .15);
    color: var(--wine);
    border-radius: 999px;
    padding: 4px 10px;
    font-size: .85rem;
    font-weight: 700;
}

@media (max-width: 900px) {
    .hero, .grid-3, .grid-2, .stats, .footer-grid {
        grid-template-columns: 1fr;
    }
    .header-cta { display: none; }
    .nav-toggle { display: block; }
    .site-nav {
        display: none;
        position: absolute;
        inset: 72px 16px auto;
        background: #fff;
        flex-direction: column;
        padding: 14px;
        border-radius: 18px;
        box-shadow: var(--shadow);
    }
    .site-nav.is-open { display: flex; }
}
