/* ── RESET & ROOT (exact match from home page) ── */
        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        :root {
            --red-primary: #C0000C;
            --red-dark: #8B0000;
            --red-light: #E8001A;
            --red-accent: #FF1C2E;
            --red-glow: rgba(192, 0, 12, 0.15);
            --charcoal: #1A1A1A;
            --warm-black: #111111;
            --off-white: #FAF8F7;
            --cream: #F5F1EE;
            --warm-grey: #6B6B6B;
            --border: #E0D8D5;
            --wood-warm: #C8956A;
            --fire: #C8102E;
            --fire-deep: #8B0000;
            --fire-bright: #FF2442;
            --ember: #FF6B35;
            --ash: #1A1A1A;
            --smoke: #F7F5F3;
            --white: #FFFFFF;
            --gold: #C9A84C;
            --text-muted: #6B6B6B;
            --font-display: 'Playfair Display', serif;
            --font-body: 'Inter', sans-serif;
            --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: var(--font-body);
            background: var(--white);
            color: var(--ash);
            overflow-x: hidden;
        }

        ::-webkit-scrollbar {
            width: 4px;
        }
        ::-webkit-scrollbar-track {
            background: var(--smoke);
        }
        ::-webkit-scrollbar-thumb {
            background: var(--red-primary);
            border-radius: 2px;
        }

        /* ── REVEAL ── */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.7s ease;
        }
        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* ─────────────────────────────────────────────── */
        /* ── HEADER (exact match from home page) ── */
        /* ─────────────────────────────────────────────── */

        .topbar {
            background: var(--charcoal);
            color: #ccc;
            font-size: 12px;
            padding: 7px 10px;
            letter-spacing: 0.5px;
        }

        .topbar-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: nowrap;
            gap: 16px;
        }

        .topbar-left,
        .topbar-right {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 4px 0;
            flex-shrink: 0;
        }

        .topbar-right {
            flex-shrink: 0;
            margin-left: auto;
        }

        .topbar a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.2s;
            white-space: nowrap;
        }

        .topbar a:hover {
            color: var(--red-accent);
        }

        .topbar .pipe {
            margin: 0 8px;
            opacity: 0.3;
            flex-shrink: 0;
        }

        @media (max-width: 768px) {
            .topbar {
                font-size: 10px;
                padding: 5px 0;
            }
            .topbar-inner {
                gap: 8px;
                flex-wrap: wrap;
                justify-content: center;
            }
            .topbar-left,
            .topbar-right {
                flex-wrap: wrap;
                justify-content: center;
                flex-shrink: 1;
            }
            .topbar-right {
                margin-left: 0;
            }
            .topbar .pipe {
                margin: 0 4px;
            }
        }

        @media (max-width: 480px) {
            .topbar {
                font-size: 9px;
                padding: 4px 0;
            }
            .topbar .pipe {
                margin: 0 3px;
            }
            .topbar-left i,
            .topbar-right a {
                font-size: 9px;
            }
        }

        /* ── NAVBAR ── */
        .navbar-main {
            background: #fff;
            border-bottom: 1px solid var(--border);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 0 0;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
            transition: box-shadow 0.3s;
        }
        .navbar-main.scrolled {
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
        }

        .navbar-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 40px;
            height: 72px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .logo-wrap {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
        }
        .logo-flame {
            width: 42px;
            height: 42px;
            background: var(--red-primary);
            clip-path: polygon(50% 0%, 80% 30%, 100% 60%, 80% 100%, 20% 100%, 0% 60%, 20% 30%);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            flex-shrink: 0;
        }
        .logo-flame::after {
            content: '';
            position: absolute;
            width: 18px;
            height: 18px;
            background: #fff;
            clip-path: polygon(50% 0%, 80% 40%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 20% 40%);
            opacity: 0.25;
        }
        .logo-text {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 28px;
            color: var(--red-primary);
            letter-spacing: 2px;
            line-height: 1;
        }
        .logo-sub {
            font-size: 9px;
            color: var(--warm-grey);
            letter-spacing: 3px;
            text-transform: uppercase;
            display: block;
            margin-top: -2px;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 0;
            list-style: none;
            height: 72px;
        }
        .nav-links>li {
            height: 100%;
            position: relative;
        }
        .nav-links>li>a {
            display: flex;
            align-items: center;
            gap: 5px;
            height: 100%;
            padding: 0 20px;
            font-size: 13.5px;
            font-weight: 500;
            color: var(--charcoal);
            text-decoration: none;
            letter-spacing: 0.3px;
            transition: color 0.2s;
            border-bottom: 3px solid transparent;
        }
        .nav-links>li>a:hover,
        .nav-links>li>a.active {
            color: var(--red-primary);
            border-bottom-color: var(--red-primary);
        }
        .nav-links>li>a .fa-chevron-down {
            font-size: 9px;
            transition: transform 0.2s;
        }
        .nav-links>li:hover>a .fa-chevron-down {
            transform: rotate(180deg);
        }

        .nav-dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            background: #fff;
            border-top: 3px solid var(--red-primary);
            min-width: 220px;
            padding: 16px 0;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
            opacity: 0;
            visibility: hidden;
            transform: translateY(-8px);
            transition: all 0.25s;
            z-index: 999;
        }
        .nav-links>li:hover .nav-dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        .nav-dropdown a {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 9px 24px;
            font-size: 13px;
            color: var(--charcoal);
            text-decoration: none;
            transition: background 0.15s, color 0.15s;
        }
        .nav-dropdown a:hover {
            background: var(--red-glow);
            color: var(--red-primary);
        }
        .nav-dropdown a .dot {
            width: 5px;
            height: 5px;
            border-radius: 50%;
            background: var(--red-primary);
            flex-shrink: 0;
        }

        .nav-actions {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .nav-icon-btn {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            border: 1px solid var(--border);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--charcoal);
            cursor: pointer;
            transition: all 0.2s;
            text-decoration: none;
            font-size: 14px;
        }
        .nav-icon-btn:hover {
            border-color: var(--red-primary);
            color: var(--red-primary);
            background: var(--red-glow);
        }
        .btn-inquire {
            background: var(--red-primary);
            color: #fff;
            border: none;
            padding: 9px 22px;
            font-size: 13px;
            font-weight: 600;
            border-radius: 2px;
            cursor: pointer;
            letter-spacing: 0.5px;
            transition: all 0.2s;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .btn-inquire:hover {
            background: var(--red-dark);
            color: #fff;
            transform: translateY(-1px);
        }

        .nav-hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            background: none;
            border: none;
            padding: 4px;
        }
        .nav-hamburger span {
            display: block;
            width: 26px;
            height: 2px;
            background: var(--ash);
            transition: var(--transition);
        }

        #mobileNav {
            display: none;
            position: fixed;
            top: 76px;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--white);
            z-index: 999;
            padding: 2rem 1.5rem;
            flex-direction: column;
            gap: 1.2rem;
            overflow-y: auto;
            border-top: 1px solid var(--border);
        }
        #mobileNav.open {
            display: flex;
        }
        #mobileNav a {
            font-size: 1.2rem;
            font-weight: 500;
            color: var(--ash);
            text-decoration: none;
            border-bottom: 1px solid rgba(0, 0, 0, 0.06);
            padding-bottom: 0.8rem;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        #mobileNav a:hover {
            color: var(--red-primary);
        }
        #mobileNav a .fa-chevron-right {
            font-size: 12px;
            color: var(--warm-grey);
        }

        @media (max-width: 991px) {
            .navbar-inner {
                padding: 0 20px;
            }
            .nav-links {
                display: none;
            }
            .nav-hamburger {
                display: flex;
            }
            .topbar .d-flex {
                flex-wrap: wrap;
                gap: 4px 0;
            }
            .topbar .pipe {
                margin: 0 6px;
            }
        }
        @media (max-width: 576px) {
            .navbar-inner {
                padding: 0 12px;
                height: 60px;
            }
            .logo-text {
                font-size: 20px;
            }
            .logo-flame {
                width: 34px;
                height: 34px;
            }
            .logo-flame::after {
                width: 14px;
                height: 14px;
            }
            .logo-sub {
                font-size: 7px;
                letter-spacing: 2px;
            }
            .btn-inquire {
                padding: 6px 14px;
                font-size: 11px;
            }
            .nav-icon-btn {
                width: 32px;
                height: 32px;
                font-size: 12px;
            }
            .topbar {
                font-size: 10px;
                padding: 4px 0;
            }
            .topbar .pipe {
                margin: 0 4px;
            }
        }

        .logo-container {
            display: flex;
            align-items: center;
        }
        .logo-img {
            max-height: 70px;
            width: auto;
            display: block;
        }

        /* ─────────────────────────────────────────────── */
        /* ── END HEADER ── */
        /* ─────────────────────────────────────────────── */

        /* ── SECTIONS COMMON (from home) ── */
        section {
            padding: 90px 0;
        }
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 30px;
        }
        .section-eyebrow {
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--red-primary);
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .section-eyebrow::before {
            content: '';
            width: 28px;
            height: 2px;
            background: var(--red-primary);
        }
        .section-title {
            font-family: var(--font-display);
            font-size: clamp(28px, 3.5vw, 46px);
            font-weight: 700;
            color: var(--ash);
            line-height: 1.15;
            letter-spacing: -0.02em;
            margin-bottom: 16px;
        }
        .section-title .fire {
            color: var(--red-primary);
        }
        .section-desc {
            font-size: 15.5px;
            color: var(--text-muted);
            line-height: 1.7;
            max-width: 560px;
        }
        .sec-label {
            font-size: 0.65rem;
            font-weight: 600;
            letter-spacing: 0.3em;
            text-transform: uppercase;
            color: var(--red-primary);
            display: flex;
            align-items: center;
            gap: 0.6rem;
            margin-bottom: 0.8rem;
        }
        .sec-label::before {
            content: '';
            width: 24px;
            height: 1px;
            background: var(--red-primary);
        }
        .sec-title {
            font-family: var(--font-display);
            font-size: clamp(2rem, 4vw, 3.2rem);
            font-weight: 600;
            line-height: 1.1;
            color: var(--ash);
        }
        .sec-title em {
            font-style: italic;
            color: var(--gold);
        }
        .sec-desc {
            font-size: 0.9rem;
            font-weight: 300;
            line-height: 1.8;
            color: var(--text-muted);
            max-width: 560px;
        }

        /* ── About Hero ── */
        .about-hero {
            height: 60vh;
            min-height: 450px;
            background: linear-gradient(105deg, rgba(10, 0, 0, 0.8) 0%, rgba(10, 0, 0, 0.5) 50%, transparent 100%),
                        url('../../images/banner-stones.jpg');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: flex-end;
            padding-bottom: 4rem;
            position: relative;
            margin-top: 0;
        }
        .about-hero-content { max-width: 700px; }
        .about-hero .hero-badge {
            font-size: 0.7rem;
            font-weight: 600;
            letter-spacing: 0.28em;
            text-transform: uppercase;
            color: var(--red-accent);
            margin-bottom: 1rem;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(200, 16, 46, 0.2);
            border: 1px solid rgba(200, 16, 46, 0.4);
            padding: 6px 16px;
            border-radius: 100px;
        }
        .about-hero h1 {
            font-family: var(--font-display);
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 900;
            margin-bottom: 1.2rem;
            color: #fff;
            line-height: 1.05;
        }
        .about-hero h1 span { color: var(--gold); font-style: italic; }
        .about-hero .hero-desc {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.75);
            line-height: 1.7;
            max-width: 550px;
        }

        /* ── Story Section ── */
        #story {
            background: var(--cream);
            position: relative;
            overflow: hidden;
        }
        #story::before {
            content: '"';
            position: absolute;
            right: 5%;
            bottom: 0;
            font-family: var(--font-display);
            font-size: 22rem;
            font-weight: 700;
            color: rgba(192, 0, 12, 0.04);
            line-height: 1;
            pointer-events: none;
        }
        .story-quote {
            font-family: var(--font-display);
            font-size: 1.6rem;
            font-style: italic;
            color: var(--red-primary);
            line-height: 1.4;
            margin: 2rem 0;
            padding-left: 1.5rem;
            border-left: 3px solid var(--red-primary);
        }
        .story-img-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }
        .story-img-grid .img-placeholder {
            background-size: cover;
            background-position: center;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.06);
        }
        .img-tall { height: 250px; }
        .img-short { height: 180px; }

        /* ── Milestones ── */
        #milestones { background: var(--white); }
        .milestone-item {
            display: flex;
            gap: 1.5rem;
            margin-bottom: 2rem;
        }
        .milestone-year {
            font-family: var(--font-display);
            font-size: 2rem;
            font-weight: 700;
            color: var(--red-primary);
            min-width: 90px;
            line-height: 1;
        }
        .milestone-content {
            border-bottom: 1px solid var(--border);
            padding-bottom: 1.2rem;
        }
        .milestone-content h4 {
            font-family: var(--font-display);
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--ash);
            margin-bottom: 0.4rem;
        }
        .milestone-content p {
            font-size: 0.85rem;
            color: var(--text-muted);
            line-height: 1.6;
        }

        /* ── Infrastructure ── */
        #infrastructure { background: var(--cream); }
        .infra-card {
            background: var(--white);
            padding: 1.8rem;
            transition: transform var(--transition), box-shadow var(--transition);
            height: 100%;
            border: 1px solid var(--border);
        }
        .infra-card:hover { transform: translateY(-5px); box-shadow: 0 12px 24px rgba(0,0,0,0.05); }
        .infra-icon {
            width: 55px; height: 55px;
            background: rgba(192, 0, 12, 0.08);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: var(--red-primary);
            margin-bottom: 1.2rem;
            border-radius: 8px;
        }
        .infra-card h4 {
            font-family: var(--font-display);
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 0.8rem;
            color: var(--ash);
        }
        .infra-card p {
            font-size: 0.82rem;
            color: var(--text-muted);
            line-height: 1.7;
        }

        /* ── Values ── */
        #values { background: var(--white); }
        .value-card {
            text-align: center;
            padding: 2rem;
            background: var(--cream);
            border-radius: 0;
            transition: transform var(--transition);
            height: 100%;
            border: 1px solid var(--border);
        }
        .value-card:hover { transform: translateY(-4px); }
        .value-icon {
            width: 70px; height: 70px;
            background: rgba(192, 0, 12, 0.08);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            color: var(--red-primary);
            margin: 0 auto 1.2rem;
        }
        .value-card h4 {
            font-family: var(--font-display);
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 0.6rem;
            color: var(--ash);
        }
        .value-card p {
            font-size: 0.84rem;
            color: var(--text-muted);
            line-height: 1.7;
        }

        /* ── Certifications ── */
        #certifications { background: var(--cream); }
        .cert-badge {
            background: var(--white);
            padding: 1.5rem;
            text-align: center;
            border: 1px solid var(--border);
            transition: all var(--transition);
        }
        .cert-badge:hover { border-color: var(--red-primary); transform: translateY(-3px); box-shadow: 0 8px 20px rgba(0,0,0,0.05); }
        .cert-badge i { font-size: 2rem; color: var(--red-primary); margin-bottom: 0.8rem; display: block; }
        .cert-badge h5 { font-family: var(--font-display); font-size: 1rem; font-weight: 600; margin-bottom: 0.3rem; color: var(--ash); }
        .cert-badge p { font-size: 0.7rem; color: var(--text-muted); }

        /* ── Vision Mission ── */
        #vision { background: var(--white); }
        .flame-icon {
            width: 56px; height: 56px;
            background: var(--red-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            color: white;
            margin-bottom: 1.2rem;
            border-radius: 12px;
        }

        /* ── Stats Banner ── */
        .stats-banner { background: var(--red-primary); padding: 3rem 0; }
        .stats-banner .stat-item { text-align: center; }
        .stats-banner .stat-num {
            font-family: var(--font-display);
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--white);
            line-height: 1;
        }
        .stats-banner .stat-label {
            font-size: 0.7rem;
            font-weight: 500;
            letter-spacing: 0.16em;
            text-transform: uppercase;
            color: rgba(255,255,255,0.85);
            margin-top: 0.4rem;
        }

        /* ── CTA Banner (same as home) ── */
        .cta-banner-inner {
            background: linear-gradient(135deg, var(--red-dark) 0%, var(--red-primary) 50%, var(--ember) 100%);
            padding: 80px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .cta-banner-inner::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -10%;
            right: -10%;
            bottom: -50%;
            background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
        }
        .cta-banner-inner h2 {
            font-family: var(--font-display);
            font-size: clamp(28px, 4vw, 52px);
            font-weight: 900;
            color: #fff;
            margin-bottom: 14px;
            position: relative;
        }
        .cta-banner-inner p {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 36px;
            position: relative;
        }
        .cta-btns {
            display: flex;
            gap: 14px;
            justify-content: center;
            flex-wrap: wrap;
            position: relative;
        }
        .btn-white {
            background: #fff;
            color: var(--red-primary);
            padding: 14px 32px;
            border-radius: 10px;
            font-size: 15px;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-family: var(--font-body);
        }
        .btn-white:hover {
            background: var(--ash);
            color: #fff;
            transform: translateY(-2px);
        }
        .btn-outline-white {
            background: transparent;
            color: #fff;
            padding: 14px 32px;
            border-radius: 10px;
            font-size: 15px;
            font-weight: 600;
            text-decoration: none;
            border: 2px solid rgba(255, 255, 255, 0.5);
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-family: var(--font-body);
        }
        .btn-outline-white:hover {
            border-color: #fff;
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-2px);
            color: #fff;
        }

        /* ── FOOTER (exact match from home) ── */
        footer {
            background: var(--ash);
            color: rgba(255, 255, 255, 0.7);
        }
        .footer-top {
            padding: 70px 0 50px;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 48px;
        }
        .footer-brand .logo {
            margin-bottom: 18px;
        }
        .footer-brand p {
            font-size: 13.5px;
            line-height: 1.7;
            margin-bottom: 22px;
        }
        .social-links {
            display: flex;
            gap: 10px;
        }
        .social-btn {
            width: 36px;
            height: 36px;
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.07);
            border: 1px solid rgba(255, 255, 255, 0.12);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.25s;
            text-decoration: none;
            color: rgba(255, 255, 255, 0.6);
        }
        .social-btn:hover {
            background: var(--red-primary);
            border-color: var(--red-primary);
            color: #fff;
        }
        .footer-col h4 {
            font-size: 14px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 16px;
            letter-spacing: 0.05em;
        }
        .footer-col a {
            display: block;
            font-size: 13px;
            color: rgba(255, 255, 255, 0.55);
            text-decoration: none;
            margin-bottom: 10px;
            transition: color 0.2s;
        }
        .footer-col a:hover {
            color: var(--fire-bright);
        }
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding: 22px 0;
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-size: 12.5px;
            flex-wrap: wrap;
            gap: 12px;
        }
        .footer-bottom a {
            color: rgba(255, 255, 255, 0.4);
            text-decoration: none;
            margin-left: 20px;
            transition: color 0.2s;
        }
        .footer-bottom a:hover {
            color: var(--fire-bright);
        }

        /* ── FLOATING WHATSAPP ── */
        .float-wa {
            position: fixed;
            bottom: 28px;
            right: 28px;
            z-index: 999;
            width: 54px;
            height: 54px;
            border-radius: 50%;
            background: #25D366;
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            color: #fff;
            animation: floatBounce 3s ease-in-out infinite;
        }
        .float-wa:hover {
            transform: scale(1.1);
            box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
            color: #fff;
        }
        @keyframes floatBounce {
            0%,
            100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-6px);
            }
        }

        /* ── BACK TO TOP ── */
        #backTop {
            position: fixed;
            bottom: 90px;
            right: 28px;
            z-index: 999;
            width: 44px;
            height: 44px;
            background: rgba(200, 16, 46, 0.85);
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 18px;
            opacity: 0;
            pointer-events: none;
            transition: all 0.3s;
            border: none;
        }
        #backTop.visible {
            opacity: 1;
            pointer-events: all;
        }

        /* ── RESPONSIVE ── */
        @media (max-width: 1100px) {
            .footer-top {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 991px) {
            .story-img-grid { grid-template-columns: 1fr; }
            .img-tall, .img-short { height: 200px; }
            .footer-top {
                grid-template-columns: 1fr;
                gap: 32px;
            }
            .about-hero { height: 50vh; }
            .milestone-year { font-size: 1.6rem; min-width: 70px; }
            .story-quote { font-size: 1.2rem; }
        }
        @media (max-width: 767px) {
            section { padding: 60px 0; }
            .container { padding: 0 16px; }
            .about-hero { height: 45vh; min-height: 350px; }
            .cta-banner-inner { padding: 50px 0; }
            .cta-btns { flex-direction: column; align-items: center; }
            .cta-btns a { width: 100%; justify-content: center; }
            .footer-bottom { flex-direction: column; text-align: center; }
            .footer-bottom a { margin: 0 8px; }
        }
        @media (max-width: 480px) {
            .footer-bottom { flex-direction: column; text-align: center; }
            .footer-bottom a { margin: 0 8px; }
        }
