:root {
    --maroon: #741b2b;
    --maroon-dark: #4d101c;
    --yellow: #facc15;
    --green: #198754;
    --orange: #f97316;
    --white: #ffffff;
    --black: #111827;
    --cream: #fffaf0;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--black);
    background: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.65;
}

.navbar-mamaya {
    background: rgba(77, 16, 28, 0.97);
    backdrop-filter: blur(10px);
}

.brand-title {
    color: var(--yellow);
    font-weight: 800;
    letter-spacing: 0.04em;
}

.hero {
    min-height: 690px;
    display: flex;
    align-items: center;
    color: white;
    background:
        radial-gradient(circle at 80% 20%, rgba(250, 204, 21, .24), transparent 28%),
        linear-gradient(135deg, rgba(77, 16, 28, .98), rgba(116, 27, 43, .95), rgba(249, 115, 22, .86));
}

.hero-image-wrap {
    position: relative;
    min-height: 560px;
}

.hero-image {
    width: 100%;
    height: 560px;
    object-fit: cover;
    object-position: center top;
    border-radius: 28px;
    border: 5px solid rgba(255, 255, 255, .7);
    box-shadow: 0 24px 65px rgba(0, 0, 0, .35);
}

.hero-placeholder {
    width: 100%;
    height: 560px;
    display: grid;
    place-items: center;
    border-radius: 28px;
    border: 4px dashed rgba(255, 255, 255, .6);
    background: rgba(255, 255, 255, .12);
    color: #ffffff;
    text-align: center;
    padding: 28px;
}

.section-pad {
    padding: 84px 0;
}

.section-title {
    color: var(--maroon);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.12;
}

.btn-maroon {
    color: white;
    background: var(--maroon);
    border-color: var(--maroon);
}

.btn-maroon:hover {
    color: white;
    background: var(--maroon-dark);
    border-color: var(--maroon-dark);
}

.btn-yellow {
    color: #111827;
    background: var(--yellow);
    border-color: var(--yellow);
    font-weight: 700;
}

.btn-orange {
    color: white;
    background: var(--orange);
    border-color: var(--orange);
}

.service-card,
.metric-card,
.story-card {
    height: 100%;
    border: 0;
    border-radius: 20px;
    background: white;
    box-shadow: 0 12px 36px rgba(17, 24, 39, .08);
    transition: transform .25s ease, box-shadow .25s ease;
}

.service-card:hover,
.metric-card:hover,
.story-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 20px 50px rgba(17, 24, 39, .14);
}

.metric-card {
    border-bottom: 5px solid var(--yellow);
}

.metric-number {
    color: var(--maroon);
    font-size: 2.5rem;
    font-weight: 900;
}

.icon-circle {
    width: 58px;
    height: 58px;
    display: inline-grid;
    place-items: center;
    color: white;
    background: linear-gradient(135deg, var(--maroon), var(--orange));
    border-radius: 18px;
    font-size: 1.4rem;
}

.bg-soft {
    background: var(--cream);
}

.footer-main {
    color: white;
    background: var(--maroon-dark);
}

.quick-help {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 1000;
}

@media (max-width: 991px) {
    .hero {
        padding-top: 110px;
        padding-bottom: 56px;
    }

    .hero-image-wrap,
    .hero-image,
    .hero-placeholder {
        min-height: 400px;
        height: 400px;
    }
}
