:root {
    --primary-color: #f8ae3a;
    --secondary-color: #f8ae3a;
    --background-color: #feebcc;
    --text-color: black;
}

* {
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
    color: var(--text-color);
}

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}


/* Header */

.top-bar {
    display: grid;
    grid-template: 1fr/repeat(2, 1fr);
    background-color: var(--primary-color);
}

.header {
    position: relative;
    z-index: 100;
}

.top-bar {
    position: relative;
    z-index: 200;
}

.left {
    display: flex;
    gap: 10px;
    margin-left: 50px;
}

.left h4 {
    margin-top: 20px;
    color: white;
}

.left img {
    width: 25px;
    height: 25px;
    margin: 15px;
}

.right {
    display: flex;
    gap: 10px;
    margin-left: 100px;
}

.right h4 {
    margin-top: 20px;
    color: white;
}

.right img {
    width: 25px;
    height: 25px;
    margin: 15px;
}

.divider {
    color: black;
}

.bottom-bar {
    display: grid;
    width: 100%;
    height: 100px;
    grid-template-columns: auto 1fr auto;
    justify-content: center;
    align-content: center;
    background-color: black;
    position: relative;
}

.logo {
    margin-left: 100px;
    justify-content: center;
    align-content: center;
    height: 80%;
    width: 150%;
}

li {
    padding-top: 20px;
    font-size: 18px;
    list-style: none;
}

.menus {
    display: flex;
    flex-direction: row;
    gap: 10px;
    justify-content: center;
    align-content: center;
}

.menus a {
    color: white !important;
    text-decoration: none;
    padding: 20px;
    font-weight: bold;
}

.menus a:hover {
    text-decoration: none;
    background-image: linear-gradient(to right, #f8ae3a, #ffffff) !important;
    border-radius: 20px;
    color: black !important;
    padding: 20px;
}

.active {
    background-image: linear-gradient(to right, #f8ae3a, #ffffff) !important;
    border-radius: 20px;
}

.menus a.active {
    color: black !important;
}

.contact-button {
    background-color: var(--primary-color);
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    border-radius: 20px;
}

.contact-button a {
    color: black;
    text-decoration: none;
    font-weight: bold;
}

.contact-button a:hover {
    text-decoration: none;
    color: white;
}

.contact {
    margin-right: 100px;
    align-content: center;
}


/* 1. The Container (li) */


/* Essential: This keeps the dropdown anchored to this specific menu item */

li {
    position: relative;
    list-style: none;
    display: inline-block;
    /* Or flex, depending on your nav bar */
}


/* 2. The Main "Business" Link */

.business {
    text-decoration: none;
    display: block;
    transition: color 0.3s;
}

.business a {
    color: white;
}


/* 3. The Dropdown Menu (Hidden by default) */

.submenu {
    display: none;
    /* Hidden by default */
    position: absolute;
    /* FULL WIDTH MAGIC */
    left: 0;
    width: 100%;
    /* Spans 100% of the .bottom-bar width */
    top: 80px;
    /* Push it down to clear the header height */
    background-color: black;
    /* Deep black/grey background */
    padding: 30px 10%;
    /* 10% side padding to align text with your logo */
    box-sizing: border-box;
    /* Ensures padding doesn't break the width */
    z-index: 999;
    /* Optional: The Gold top border seen in some designs */
    /* Layout: 2 Columns like the screenshot */
    grid-template-columns: 250px 250px;
    gap: 15px;
    align-content: center;
    justify-content: center;
    border-top: 2px solid #fdb913;
}


/* 4. The Hover Effect ( The Trigger ) */


/* When you hover the 'li', display the '.submenu' as a grid */

li:hover .submenu {
    display: grid;
}


/* Keep the main "Business" link yellow while the menu is open */

li:hover .business {
    color: var(--primary-color);
}


/* 5. Styling the Links INSIDE the dropdown */

.submenu a {
    color: white !important;
    text-decoration: none;
    font-size: 14px;
    padding: 5px 0;
    transition: color 0.2s;
    font-weight: bold;
}


/* Hover color for the dropdown items */

.submenu a:hover {
    background-image: linear-gradient(to right, #f8ae3a, #ffffff);
    width: fit-content;
    padding: 15px;
    color: black !important;
    border-radius: 20px;
    /* Gold/Yellow accent */
}

.menus li {
    position: static;
}


/* Header Mobile view */


/* =========================
MOBILE OFFCANVAS MENU
========================= */

.mb-menu {
    display: none;
}


/* Hamburger */

.menu-btn {
    width: 30px;
    cursor: pointer;
}

.menu-btn span {
    display: block;
    height: 3px;
    background: white;
    margin: 6px 0;
}


/* Overlay - Fixed to prevent body scroll */

.offcanvas-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.offcanvas-overlay.mactive {
    opacity: 1;
    visibility: visible;
}


/* Offcanvas Menu - Fixed positioning and scrolling */

.offcanvas-menu {
    position: fixed;
    top: 0;
    left: -320px;
    width: 300px;
    height: 100vh;
    /* Full viewport height */
    background-color: var(--primary-color);
    z-index: 1001;
    transition: left 0.4s ease;
    overflow: hidden;
    /* Prevent outer scroll */
    display: flex;
    flex-direction: column;
}

.offcanvas-menu.mactive {
    left: 0;
}


/* Header */

.offcanvas-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    flex-shrink: 0;
    /* Prevent header from scrolling */
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}

.offcanvas-header img {
    width: 150px;
}

.close-btn {
    font-size: 28px;
    color: white;
    cursor: pointer;
    line-height: 0.6;
    padding: 8px;
    background: black;
    border-radius: 100%;
}


/* Links Container - This is the scrollable part */

.offcanvas-links {
    list-style: none;
    margin: 0;
    padding: 20px;
    flex: 1;
    /* Take remaining space */
    overflow-y: auto;
    /* Enable vertical scroll ONLY on menu items */
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    /* Smooth scrolling on iOS */
    display: flex;
    flex-direction: column;
}

.has-submenu {
    overflow: visible;
}


/* Custom scrollbar for offcanvas menu */

.offcanvas-links::-webkit-scrollbar {
    width: 6px;
}

.offcanvas-links::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.offcanvas-links::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
}

.offcanvas-links::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.5);
}

.offcanvas-links li {
    margin-top: -20px;
}

.offcanvas-links a,
.submenu-toggle {
    color: black;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    display: block;
    padding: 10px 0;
}


/* Prevent body scroll when menu is open */

body.menu-open {
    overflow: hidden;
    position: fixed;
}


/* Submenu */

.mobile-submenu {
    display: none;
    margin-top: 10px;
    padding-left: 15px;
    overflow: scroll;
}

.mobile-submenu.mactive {
    display: block;
}

.mobile-submenu li {
    display: flex;
    flex-direction: column;
}

.mobile-submenu li a {
    font-size: 14px;
    font-weight: normal;
    color: black;
    padding: 8px 0;
}


/* Contact Button */

.contact-mobile {
    background: black;
    color: white !important;
    padding: 10px;
    border-radius: 20px;
    margin-top: 10px;
    text-align: center;
}


/* MOBILE ONLY */

@media (max-width: 768px) {
    .menus,
    .contact {
        display: none;
    }
    .mb-menu {
        display: block;
        position: absolute;
        right: 30px;
        top: 45px;
    }
    .top-bar {
        display: none;
    }
    .bottom-bar {
        display: flex;
        flex-direction: row;
        margin-top: -30px;
        ;
    }
    .logo {
        margin-right: 300px;
        height: 130px;
        width: 150px;
        padding: 10px;
    }
}


/* body */

:root {
    --gold: #E8A020;
    --gold-light: #F5C560;
    --dark: #1A1A1A;
    --text: #3D3D3D;
    --muted: #888;
    --bg: #F7F5F0;
    --white: #fff;
    --green: #2D6A4F;
    --green-light: #40916C;
    --card-bg: #FEFCF8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden
}

.hero {
    display: flex;
    flex-direction: row;
    gap: 50px;
}

.hero-img {
    margin-top: -50px;
}

.hero-img img {
    border-radius: 60px;
    width: 100%;
    height: 100%;
    padding: 30px;
}

.hero-content {
    position: relative;
    z-index: 2
}

.hero-tag {
    display: inline-block;
    background: rgba(232, 160, 32, .12);
    color: var(--gold);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 24px
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(4.8rem, 18vw, 6.2rem);
    font-weight: 900;
    line-height: 1.1;
    color: var(--dark);
    margin-bottom: 20px
}

.hero h1 em {
    font-style: normal;
    color: var(--gold)
}

.hero p {
    font-size: 18px;
    line-height: 1.7;
    color: black;
    max-width: 460px;
    margin-bottom: 36px
}

.hero-btns {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap
}

.btn-primary {
    background: var(--dark);
    color: #fff;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 18px;
    border: none;
    cursor: pointer;
    transition: all .2s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: black !important;
}

.btn-primary:hover {
    background: var(--gold) !important;
    transform: translateY(-2px)
}

.btn-outline {
    background: transparent;
    color: var(--dark);
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 18px;
    border: 2px solid rgba(26, 26, 26, .2);
    cursor: pointer;
    transition: all .2s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold)
}


/* difference */

section {
    padding: 90px 60px
}

.stag {
    display: block;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px
}

.stitle {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3.8rem, 6vw, 5.6rem);
    font-weight: 700;
    color: var(--dark);
    text-align: center;
    margin-bottom: 16px
}

.ssub {
    text-align: center;
    color: black;
    font-size: 18px;
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto 60px
}


/* cards */

.diff-sec {
    background: var(--white)
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto
}

.card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 32px 24px;
    border: 1px solid rgba(232, 160, 32, .1);
    transition: all .3s;
    text-align: center;
    position: relative;
    overflow: hidden
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transform: scaleX(0);
    transition: transform .3s
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .08)
}

.card:hover::before {
    transform: scaleX(1)
}

.ci {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.ci img {
    width: 100%;
    height: 100%;
}

.card h3 {
    font-size: 18px;
    font-weight: 700;
    color: black;
    margin-bottom: 12px
}

.card p {
    font-size: 16px;
    color: black;
    line-height: 1.65
}


/* about */

.about-sec {
    background: var(--bg)
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto
}

.about-vis {
    position: relative;
    height: 480px
}

.acb {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    top: 0;
    left: 30px;
    border: 6px solid #fff;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .12);
    background: linear-gradient(135deg, var(--gold), var(--green));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.acb img {
    width: 250%;
    height: 200%;
    margin-top: 150px;
    border-radius: 30px;
}

.acs {
    position: absolute;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    bottom: 60px;
    left: 0;
    border: 5px solid #fff;
    box-shadow: 0 12px 40px rgba(0, 0, 0, .1);
    background: linear-gradient(135deg, var(--green), var(--gold));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.adeco {
    position: absolute;
    top: 120px;
    right: 0;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(232, 160, 32, .12);
    border: 2px dashed rgba(232, 160, 32, .3)
}

.dgrid {
    position: absolute;
    bottom: 30px;
    right: 20px;
    width: 80px;
    height: 80px;
    background-image: radial-gradient(circle, var(--gold) 1.5px, transparent 1.5px);
    background-size: 12px 12px;
    opacity: .4
}

.about-content .stitle,
.about-content .stag,
.about-content .ssub {
    text-align: left
}

.about-content .ssub {
    margin: 0 0 28px
}

.alead {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.6;
    margin-bottom: 16px
}

.abody {
    font-size: 16px;
    color: black;
    line-height: 1.8;
    margin-bottom: 32px
}

.abtns {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap
}

.bplay {
    display: flex;
    align-items: center;
    gap: 10px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: var(--dark);
    transition: color .2s
}

.bplay:hover {
    color: var(--gold)
}

.pc {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
}


/* quote */

.quote-strip {
    background: var(--dark);
    padding: 60px;
    text-align: center
}

.quote-strip blockquote {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3.2rem, 5.5vw, 2.8rem);
    font-style: italic;
    color: var(--gold-light);
    max-width: 800px;
    margin: 0 auto 16px;
    line-height: 1.5
}

.quote-strip cite {
    font-size: 18px;
    color: white;
    font-style: normal;
    letter-spacing: 1px
}


/* campaigns */

.camp-sec {
    background: var(--white)
}

.camp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1100px;
    margin: 0 auto
}

.cc {
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, .06);
    transition: all .3s
}

.cc:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, .1)
}

.ci2 {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    position: relative
}

.ci2 img {
    width: 100%;
    height: 100%;
}

.cio {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .3) 0%, transparent 50%)
}

.cbody {
    padding: 24px
}

.pmeta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 6px;
    font-size: 18px;
    color: black;
    font-weight: 500
}

.pbar {
    height: 4px;
    background: rgba(0, 0, 0, .08);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 14px
}

.pfill {
    height: 100%;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    border-radius: 4px
}

.cbody h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px
}

.cbody p {
    font-size: 16px;
    color: black;
    line-height: 1.6;
    margin-bottom: 20px
}

.cfoot {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.ctag {
    background: rgba(232, 160, 32, .1);
    color: var(--gold);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: .5px
}

.carr {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gold);
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all .2s
}

.carr:hover {
    background: var(--dark);
    transform: rotate(45deg)
}


/* Footer */

.footer {
    background-color: black;
}

.footer-container {
    padding: 50px;
    display: grid;
    grid-template: 1fr/repeat(4, 1fr);
    align-content: center;
    justify-content: center;
    gap: 30px;
}

.about-company h3 {
    font-weight: bold;
    background-color: var(--primary-color);
    width: fit-content;
    padding: 10px;
    border-radius: 20px;
}

.about-company p {
    color: white;
    line-height: 2em;
    width: 300px;
}

.about-company img {
    height: 100px;
    width: 200px;
    margin-top: 30px;
    margin-bottom: 30px;
}

.our-business h3 {
    font-weight: bold;
    background-color: var(--primary-color);
    width: fit-content;
    padding: 10px;
    border-radius: 20px;
}

.quick-links {
    margin-left: 50px;
    ;
}

.quick-links h3 {
    font-weight: bold;
    background-color: var(--primary-color);
    width: fit-content;
    padding: 10px;
    border-radius: 20px;
}

.links li {
    display: flex;
    flex-direction: row;
    list-style: none;
}

.links li a {
    color: white;
    text-decoration: none;
}

li a:hover {
    background-image: linear-gradient(to right, #f8ae3a, #ffffff) !important;
    color: black;
    padding: 10px;
    border-radius: 20px;
    font-weight: bold;
}

.contact-details h3 {
    font-weight: bold;
    background-color: var(--primary-color);
    width: fit-content;
    padding: 10px;
    border-radius: 20px;
}

.contact-details li {
    display: flex;
    flex-direction: row;
    gap: 10px;
    color: white;
}

.contact-details li img {
    height: 20px;
    width: 20px;
    margin-top: 5px;
}

.contact-details li p {
    color: white;
}

.copyright p {
    color: white;
    margin-left: 600px;
    padding-bottom: 30px;
}

.mobile-copyright {
    color: #f8ae3a;
}


/* Mobile Footer */

@media (max-width: 768px) {
    .footer-container {
        display: grid;
        grid-template: 4fr/ 1fr;
        padding: 50px;
    }
    .about-company {
        text-align: center;
    }
    .about-company h3 {
        margin-left: 90px;
    }
    .about-company p {
        font-size: 18px;
        margin-left: 30px;
    }
    .our-business li {
        font-size: 15px;
        padding-left: 20px;
    }
    .quick-links {
        margin-left: 150px;
        margin-top: -365px;
    }
    .quick-links h3 {
        margin-left: 50px;
        white-space: nowrap;
    }
    .quick-links li {
        margin-left: 100px;
        font-size: 15px;
    }
    .contact-details {
        margin-top: -20px;
        padding-left: 20px;
    }
    .contact-details h3 {
        margin-left: 20px;
    }
    .footer {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .copyright {
        display: none;
    }
    .mobile-copyright p {
        color: white;
        padding: 10px;
    }
}


/* ===========================
   MOBILE — max 768px
=========================== */

@media (max-width: 768px) {
    /* --- Header --- */
    .menus,
    .contact {
        display: none;
    }
    .mb-menu {
        display: block;
        position: absolute;
        right: 24px;
        top: 65%;
        transform: translateY(-50%);
        z-index: 10;
    }
    .top-bar {
        display: none;
    }
    .bottom-bar {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        height: 100px;
        padding: 0 20px;
        position: relative;
    }
    .logo {
        margin-left: 0;
        height: 50px;
        width: auto;
        display: flex;
        align-items: center;
    }
    .logo img {
        height: 50px;
        width: auto;
        object-fit: contain;
        margin-top: 30px;
    }
    /* --- Hero --- */
    .hero {
        flex-direction: column;
        padding: 40px 20px 50px;
        gap: 30px;
        min-height: auto;
    }
    .hero-content {
        order: 1;
        text-align: center;
    }
    .hero-img {
        order: 2;
        width: 100%;
        margin-top: 0;
    }
    .hero-img img {
        border-radius: 30px;
        width: 100%;
        height: 250px;
        object-fit: cover;
        padding: 0;
    }
    .hero-tag {
        font-size: 11px;
        letter-spacing: 1px;
        margin-bottom: 16px;
    }
    .hero h1 {
        font-size: clamp(2rem, 9vw, 3rem);
        margin-bottom: 16px;
    }
    .hero p {
        font-size: 15px;
        max-width: 100%;
        margin-bottom: 28px;
    }
    .hero-btns {
        justify-content: center;
        gap: 12px;
    }
    .btn-primary,
    .btn-outline {
        padding: 12px 22px;
        font-size: 14px;
    }
    /* --- Sections --- */
    section {
        padding: 60px 20px;
    }
    .stitle {
        font-size: clamp(1.8rem, 7vw, 2.8rem);
    }
    .ssub {
        font-size: 14px;
        margin-bottom: 36px;
    }
    /* --- Cards Grid --- */
    .cards-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .card {
        padding: 24px 20px;
        text-align: left;
        display: flex;
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }
    .card::before {
        width: 3px;
        height: 100%;
        top: 0;
        left: 0;
        right: auto;
        transform: scaleY(0);
        background: linear-gradient(180deg, var(--gold), var(--gold-light));
    }
    .card:hover::before {
        transform: scaleY(1);
    }
    .ci {
        margin: 0;
        flex-shrink: 0;
        width: 50px;
        height: 50px;
    }
    .ci img {
        margin-left: 240px;
    }
    .card h3 {
        font-size: 15px;
        margin-bottom: 6px;
        margin-left: 75px;
    }
    .card p {
        font-size: 13px;
        text-align: center;
    }
    /* --- About --- */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .about-vis {
        height: 220px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .acb {
        position: relative;
        width: 200px;
        height: 200px;
        top: auto;
        left: auto;
        margin: 0 auto;
    }
    .acb img {
        width: 200%;
        height: 200%;
        margin-top: -30px;
        margin-bottom: -30px;
    }
    .about-content {
        margin-top: 100px;
    }
    .alead {
        font-size: 15px;
    }
    .abody {
        font-size: 14px;
    }
    .abtns {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    .bplay {
        font-size: 15px;
    }
    /* --- Quote --- */
    .quote-strip {
        padding: 40px 20px;
    }
    .quote-strip blockquote {
        font-size: clamp(1.1rem, 5vw, 1.6rem);
    }
    .quote-strip cite {
        font-size: 13px;
    }
    /* --- Campaigns --- */
    .camp-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .camp-grid .cc:last-child {
        grid-column: auto;
        max-width: 100%;
    }
    .ci2 {
        height: 180px;
    }
    .cbody {
        padding: 18px;
    }
    .cbody h3 {
        font-size: 15px;
    }
    .cbody p {
        font-size: 13px;
        margin-bottom: 14px;
    }
    .ctag {
        font-size: 10px;
        padding: 3px 10px;
    }
}