@media (max-width: 600px) {
    .uuuuheroo {
        height: 36vh;
        padding: 10px 0;
    }

    .uuuuhero-content h1 {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }

    .uuuubtn {
        padding: 7px 12px;
        font-size: 13px;
    }

    .uuuustory {
        padding: 30px 6px;
    }

    .uuuustory h2 {
        font-size: 1.1rem;
        margin: 10px 0;
    }

    .uuuustory p {
        font-size: 13px;
        max-width: 98vw;
    }

    .uuuuheritage {
        padding: 30px 6px;
    }

    .uuuugrid-2 {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .uuuuheritage-left h4,
    .uuuuteam-right h4 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }

    .uuuutimeline li {
        padding: 7px 0 7px 12px;
        font-size: 13px;
    }

    .uuuuteam-right img {
        width: 50vw;
        max-width: 70px;
        margin-bottom: 10px;
    }

    .uuuumission {
        padding: 30px 6px;
    }

    .uuuumission h3 {
        font-size: 1.1rem;
    }

    .uuuumission p {
        font-size: 13px;
    }

    .uuuucontainer {
        padding: 0 2vw;
        max-width: 100vw;
    }
}

/* --- Fonts & Base Styles --- */
:root {
    --dark: #0b0b0b;
    --cream: #f7f3ea;
    --accent: #cbb677;
    --overlay: rgba(0, 0, 0, 0.7);
    --text-light: #f1f1f1;
    --max-width: 1100px;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Inter", sans-serif;
    background: var(--cream);
    color: #111;
    line-height: 1.6;
}

/* --- Hero Section --- */
.uuuuhero-and-story {
    position: relative;
    background: center/cover no-repeat url("/aboutusbg.jpeg");
    background-attachment: scroll;
}

.uuuuheroo {
    height: 60vh;
    position: relative;
    color: var(--text-light);
}

.uuuoverlay {
    background: rgba(0, 0, 0, 0.5);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.uuuuhero-content h1 {
    font-family: "Playfair Display", serif;
    font-size: 3.2rem;
    margin-bottom: 20px;
}

.uuuubtn {
    display: inline-block;
    border: 1px solid var(--accent);
    color: var(--text-light);
    padding: 10px 25px;
    border-radius: 2px;
    transition: 0.3s;
}

.uuuubtn:hover {
    background: var(--accent);
    color: #000;
}

/* --- Story Section --- */
.uuuustory {
    background-color: var(--overlay);
    color: var(--text-light);
    padding: 80px 20px;
    position: relative;
}

.uuuustory .uuuucontainer {
    background: transparent;
    padding: 0;
    position: relative;
    z-index: 2;
}

.uuuustory::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.75);
    z-index: 1;
    pointer-events: none;
}

.uuuucontainer {
    max-width: var(--max-width);
    margin: auto;
    text-align: left;
}

.uuusection-subtitle {
    color: var(--accent);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.uuuustory h2 {
    font-family: "Playfair Display", serif;
    font-size: 2rem;
    margin: 20px 0;
}

.uuuustory p {
    max-width: 700px;
}

/* --- Heritage Section --- */
.uuuuheritage {
    background: var(--cream);
    padding: 80px 20px;
    color: #111;
}

.uuugrid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    align-items: start;
}

.uuuuheritage-left h4,
.uuuuteam-right h4 {
    font-family: "Playfair Display", serif;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.uuuutimeline {
    list-style: none;
    padding: 0;
    border-left: 2px solid var(--accent);
}

.uuuutimeline li {
    padding: 10px 0 10px 20px;
    position: relative;
}

.uuuutimeline li::before {
    content: '';
    position: absolute;
    left: -7px;
    top: 15px;
    width: 10px;
    height: 10px;
    background: var(--accent);
    border-radius: 50%;
}

.uuuuteam-right img {
    width: 90%;
    max-width: 165px;
    border-radius: 5px;
    margin-bottom: 20px;
}

/* --- Mission Section --- */
.uuuumission {
    padding: 80px 20px;
    background: var(--cream);
}

.uuuumission h3 {
    font-family: "Playfair Display", serif;
    font-size: 1.8rem;
    color: #000;
}

.uuuumission p {
    margin-top: 10px;
    color: #444;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .uuuuhero-content h1 {
        font-size: 2.3rem;
    }

    .uuugrid-2 {
        gap: 30px;
    }
}

.uuuhero-sub {
    margin: 20px 0;
}

.uuuhero-bggg {
    display: none;
}

.uuuhero-overlay {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.29);
    inset: 0;
}