    :root {
        --primary: #1a3c34;
        --primary-lt: #255247;
        --accent: #c9a04a;
        --accent-dk: #b8976b;
        --accent-lt: #f5ead6;
        --bg: #fdfaf5;
        --card: #ffffff;
        --text: #1e2d27;
        --text-muted: #5a7268;
        --border: #e4d5bc;
        --border-lt: #f0e8d8;
        --shadow-xs: 0 2px 8px rgba(26, 60, 52, 0.06);
        --shadow-sm: 0 6px 24px rgba(26, 60, 52, 0.10);
        --shadow-md: 0 16px 48px rgba(26, 60, 52, 0.14);
        --shadow-lg: 0 28px 72px rgba(26, 60, 52, 0.18);
        --radius: 14px;
        --radius-lg: 20px;
    }

    *,
    *::before,
    *::after {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    html {
        min-width: 270px;
        scroll-behavior: smooth;
    }

    body {
        background: var(--bg);
        color: var(--text);
        font-family: 'DM Sans', system-ui, sans-serif;
        line-height: 1.65;
        font-size: 15px;
        overflow-x: hidden;
    }

    ::-webkit-scrollbar {
        width: 6px;
    }

    ::-webkit-scrollbar-track {
        background: var(--bg);
    }

    ::-webkit-scrollbar-thumb {
        background: var(--border);
        border-radius: 3px;
    }

    /* PAGE LOADER */
    #pageLoader {
        position: fixed;
        inset: 0;
        background: var(--bg);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        z-index: 9999;
        transition: opacity 0.5s ease;
    }

    #pageLoader.hidden {
        opacity: 0;
        pointer-events: none;
    }

    .loader-ring {
        width: 52px;
        height: 52px;
        border: 4px solid var(--border-lt);
        border-top: 4px solid var(--accent);
        border-radius: 50%;
        animation: spin 0.9s linear infinite;
        margin-bottom: 1.3rem;
    }

    @keyframes spin {
        to {
            transform: rotate(360deg);
        }
    }

    .loader-logo {
        font-family: 'Playfair Display', serif;
        font-size: 1.45rem;
        font-weight: 700;
        color: var(--primary);
        letter-spacing: 1px;
    }

    .loader-logo span {
        color: var(--accent);
    }

    .loader-sub {
        font-size: 0.82rem;
        color: var(--text-muted);
        margin-top: 0.4rem;
    }

    /* NAVBAR */
    .navbar {
        position: sticky;
        top: 0;
        z-index: 1000;
        background: rgba(253, 250, 245, 0.97);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border-bottom: 1px solid var(--border-lt);
        padding: 0 5%;
        height: 66px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .logo {
        font-family: 'Playfair Display', serif;
        font-size: clamp(1.3rem, 4vw, 1.85rem);
        font-weight: 700;
        color: var(--primary);
        text-decoration: none;
        white-space: nowrap;
        flex-shrink: 0;
    }

    .logo span {
        color: var(--accent);
    }

    .nav-links {
        display: flex;
        gap: 2.2rem;
        align-items: center;
    }

    .nav-links a {
        color: var(--text-muted);
        text-decoration: none;
        font-weight: 500;
        font-size: 0.94rem;
        transition: color 0.2s;
        position: relative;
    }

    .nav-links a::after {
        content: '';
        position: absolute;
        bottom: -4px;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--accent);
        transition: width 0.25s ease;
        border-radius: 1px;
    }

    .nav-links a:hover,
    .nav-links a.active {
        color: var(--primary);
    }

    .nav-links a:hover::after,
    .nav-links a.active::after {
        width: 100%;
    }

    .hamburger {
        display: none;
        width: 38px;
        height: 38px;
        align-items: center;
        justify-content: center;
        background: none;
        border: 1px solid var(--border);
        border-radius: 8px;
        color: var(--text);
        cursor: pointer;
        font-size: 1.1rem;
        transition: all 0.2s;
        flex-shrink: 0;
    }

    .hamburger:hover {
        border-color: var(--accent);
        color: var(--accent);
    }

    .lang-selector {
        position: relative;
    }

    .lang-btn {
        display: flex;
        align-items: center;
        gap: 0.4rem;
        padding: 0.4rem 0.9rem;
        background: white;
        border: 1px solid var(--border);
        border-radius: 999px;
        font-size: 0.87rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.2s;
        color: var(--text);
        font-family: 'DM Sans', sans-serif;
    }

    .lang-btn:hover {
        border-color: var(--accent);
        background: var(--accent-lt);
    }

    .lang-menu {
        display: none;
        position: absolute;
        top: calc(100% + 8px);
        right: 0;
        min-width: 140px;
        background: white;
        border: 1px solid var(--border);
        border-radius: 12px;
        box-shadow: var(--shadow-md);
        z-index: 1100;
        overflow: hidden;
    }

    .lang-menu.show {
        display: block;
    }

    .lang-menu button {
        display: block;
        width: 100%;
        padding: 0.65rem 1.1rem;
        text-align: left;
        background: none;
        border: none;
        cursor: pointer;
        font-size: 0.9rem;
        font-family: 'DM Sans', sans-serif;
        color: var(--text);
        transition: background 0.15s;
    }

    .lang-menu button:hover {
        background: var(--accent-lt);
    }

    .lang-menu button.active {
        color: var(--accent);
        font-weight: 600;
    }

    @media (max-width:820px) {
        .nav-links {
            position: fixed;
            top: 0;
            right: -100%;
            width: min(300px, 85vw);
            height: 100vh;
            background: white;
            flex-direction: column;
            padding: 88px 2rem 2rem;
            box-shadow: -8px 0 40px rgba(0, 0, 0, 0.12);
            border-left: 1px solid var(--border);
            z-index: 1000;
            transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
            gap: 0.3rem;
            align-items: flex-start;
            overflow-y: auto;
        }

        .nav-links.active {
            right: 0;
        }

        .nav-links a {
            font-size: 1.05rem;
            width: 100%;
            padding: 0.7rem 0;
            border-bottom: 1px solid var(--border-lt);
            color: var(--text);
        }

        .nav-links a::after {
            display: none;
        }

        .hamburger {
            display: flex;
        }

        .nav-links .lang-selector {
            display: block;
            width: 100%;
            margin-top: 1.2rem;
        }

        .nav-links .lang-selector .lang-menu {
            position: static;
            box-shadow: none;
            border: 1px solid var(--border);
            margin-top: 6px;
            width: 100%;
            border-radius: 10px;
        }

        .nav-links .lang-selector .lang-btn {
            width: 100%;
            justify-content: space-between;
            padding: 0.7rem 1rem;
        }
    }

    .overlay {
        position: fixed;
        inset: 0;
        background: rgba(10, 20, 15, 0.45);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s;
        z-index: 999;
        backdrop-filter: blur(2px);
    }

    .overlay.show {
        opacity: 1;
        visibility: visible;
    }

    /* ═══════════ HERO ═══════════
     *
     * Three-tier background reliability (same as contact page):
     *   1. background-color: #152e26  — instant, zero-latency
     *   2. CSS background-image       — set immediately by JS
     *   3. <img class="hero-bg-img">  — fades in after confirmed load
     */
    .hero {
        position: relative;
        height: clamp(540px, 65vh, 600px);
        color: white;
        display: flex;
        align-items: flex-end;
        overflow: hidden;
    }

    /* Tier 1 + 2: background layer */
    .hero-bg {
        position: absolute;
        inset: 0;
        z-index: 0;
        background-color: #152e26;
        background-size: cover;
        background-position: center 50%;
        background-repeat: no-repeat;
        animation: heroBgZoom 18s ease-out forwards;
        will-change: transform;
    }

    /* Tier 3: <img> fade-in on confirmed load */
    .hero-bg-img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center 50%;
        opacity: 0;
        transition: opacity 1.2s ease;
        display: block;
    }

    .hero-bg-img.loaded {
        opacity: 1;
    }

    @keyframes heroBgZoom {
        from {
            transform: scale(1.08);
        }

        to {
            transform: scale(1.0);
        }
    }

    /* Gradient overlay — same rich multi-layer as contact page */
    .hero-overlay {
        position: absolute;
        inset: 0;
        z-index: 1;
        background:
            linear-gradient(160deg,
                rgba(26, 60, 52, 0.90) 0%,
                rgba(26, 60, 52, 0.50) 50%,
                rgba(201, 160, 74, 0.18) 100%),
            linear-gradient(to bottom,
                rgba(10, 28, 22, 0.30) 0%,
                rgba(10, 28, 22, 0.05) 45%,
                rgba(26, 60, 52, 0.80) 88%,
                rgba(26, 60, 52, 0.97) 100%);
    }

    /* Gold accent line at bottom */
    .hero-accent-line {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 2;
        height: 3px;
        background: linear-gradient(90deg, transparent 0%, var(--accent) 20%, #f5d98a 50%, var(--accent) 80%, transparent 100%);
        opacity: 0.6;
    }

    /* Wave cutout into page body */
    .hero-wave {
        position: absolute;
        bottom: -2px;
        left: 0;
        right: 0;
        z-index: 3;
        height: 90px;
        background: var(--bg);
        clip-path: ellipse(55% 100% at 50% 100%);
    }

    /* Breadcrumb */
    .hero-breadcrumb {
        position: absolute;
        top: 1.6rem;
        left: 6%;
        z-index: 4;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.78rem;
        color: rgba(255, 255, 255, 0.55);
        font-weight: 500;
    }

    .hero-breadcrumb a {
        color: rgba(255, 255, 255, 0.55);
        text-decoration: none;
        transition: color 0.2s;
    }

    .hero-breadcrumb a:hover {
        color: #f5d98a;
    }

    .hero-breadcrumb i {
        font-size: 0.6rem;
        color: var(--accent);
    }

    .hero-breadcrumb .crumb-current {
        color: var(--accent);
        font-weight: 600;
    }

    /* Floating decorative icon */
    .hero-decor {
        position: absolute;
        top: 2rem;
        right: 6%;
        z-index: 4;
        width: 64px;
        height: 64px;
        border-radius: 16px;
        background: rgba(201, 160, 74, 0.18);
        border: 1px solid rgba(201, 160, 74, 0.35);
        backdrop-filter: blur(8px);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.6rem;
        color: #f5d98a;
        animation: heroDecorFloat 4s ease-in-out infinite;
    }

    @keyframes heroDecorFloat {

        0%,
        100% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-8px);
        }
    }

    /* Hero content */
    .hero-content {
        position: relative;
        z-index: 4;
        padding: 0 6% 7.5rem;
        width: 100%;
        max-width: 900px;
        animation: heroIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
        animation-delay: 0.1s;
    }

    @keyframes heroIn {
        from {
            opacity: 0;
            transform: translateY(30px)
        }

        to {
            opacity: 1;
            transform: translateY(0)
        }
    }

    .hero-eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        background: rgba(201, 160, 74, 0.18);
        border: 1px solid rgba(201, 160, 74, 0.38);
        color: #f5d98a;
        padding: 0.3rem 0.9rem;
        border-radius: 999px;
        font-size: 0.75rem;
        font-weight: 600;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        margin-bottom: 1rem;
        backdrop-filter: blur(4px);
    }

    .hero h1 {
        font-family: 'Playfair Display', serif;
        font-size: clamp(2rem, 6.5vw, 4.4rem);
        font-weight: 700;
        line-height: 1.1;
        margin-bottom: 1rem;
        text-shadow: 0 3px 18px rgba(0, 0, 0, 0.5);
    }

    .hero-sub {
        font-size: clamp(0.95rem, 2.5vw, 1.15rem);
        opacity: 0.85;
        max-width: 560px;
        margin-bottom: 1.8rem;
        line-height: 1.65;
    }

    .hero-cta {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        background: var(--accent);
        color: white;
        padding: 0.85rem 2rem;
        border-radius: 999px;
        font-weight: 700;
        font-size: 0.97rem;
        text-decoration: none;
        transition: all 0.25s;
        box-shadow: 0 6px 24px rgba(201, 160, 74, 0.4);
    }

    .hero-cta:hover {
        background: var(--accent-dk);
        transform: translateY(-2px);
        box-shadow: 0 10px 32px rgba(201, 160, 74, 0.5);
    }

    /* Hero stat pills */
    .hero-pills {
        display: flex;
        gap: 0.75rem;
        margin-top: 1.4rem;
        flex-wrap: wrap;
        animation: heroIn 0.85s cubic-bezier(0.22, 1, 0.36, 1) both;
        animation-delay: 0.35s;
    }

    .hero-pill {
        display: inline-flex;
        align-items: center;
        gap: 0.4rem;
        background: rgba(255, 255, 255, 0.12);
        border: 1px solid rgba(255, 255, 255, 0.2);
        color: rgba(255, 255, 255, 0.85);
        padding: 0.35rem 0.9rem;
        border-radius: 999px;
        font-size: 0.8rem;
        font-weight: 500;
        backdrop-filter: blur(6px);
    }

    .hero-pill i {
        color: #f5d98a;
        font-size: 0.7rem;
    }

    @media (max-width:480px) {
        .hero {
            height: auto;
            min-height: 380px;
        }

        .hero-content {
            padding-bottom: 5.5rem;
        }

        .hero-decor {
            display: none;
        }

        .hero-pills {
            display: none;
        }
    }

    /* PAGE BODY */
    .page-body {
        max-width: 1240px;
        margin: 0 auto;
        padding: 3rem 5% 5rem;
    }

    .section-heading {
        font-family: 'Playfair Display', serif;
        font-size: clamp(1.55rem, 4vw, 2.4rem);
        color: var(--primary);
        font-weight: 700;
        margin-bottom: 1.4rem;
        display: flex;
        align-items: center;
        gap: 0.7rem;
    }

    .section-heading i {
        color: var(--accent);
        font-size: 0.7em;
    }

    .section-heading::after {
        content: '';
        flex: 1;
        height: 2px;
        background: linear-gradient(to right, var(--accent-lt), transparent);
        margin-left: 1rem;
        border-radius: 1px;
    }

    .section-intro {
        color: var(--text-muted);
        font-size: 1rem;
        line-height: 1.8;
        max-width: 740px;
        margin-bottom: 2.5rem;
    }

    /* STORY SECTION */
    .story-section {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3.5rem;
        align-items: center;
        margin-bottom: 4rem;
    }

    @media (max-width:820px) {
        .story-section {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
    }

    .story-image-wrap {
        position: relative;
        border-radius: var(--radius-lg);
        overflow: hidden;
        box-shadow: var(--shadow-md);
        aspect-ratio: 4/3;
    }

    .story-image-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s ease;
    }

    .story-image-wrap:hover img {
        transform: scale(1.04);
    }

    .story-badge {
        position: absolute;
        bottom: 1.2rem;
        left: 1.2rem;
        background: rgba(26, 60, 52, 0.88);
        backdrop-filter: blur(8px);
        border: 1px solid rgba(201, 160, 74, 0.4);
        color: white;
        padding: 0.6rem 1.1rem;
        border-radius: 999px;
        font-size: 0.8rem;
        font-weight: 600;
        letter-spacing: 0.5px;
        display: flex;
        align-items: center;
        gap: 0.4rem;
    }

    .story-badge i {
        color: var(--accent);
    }

    .story-text h2 {
        font-family: 'Playfair Display', serif;
        font-size: clamp(1.5rem, 3.5vw, 2.2rem);
        color: var(--primary);
        font-weight: 700;
        margin-bottom: 1rem;
    }

    .story-text p {
        color: var(--text-muted);
        font-size: 0.98rem;
        line-height: 1.82;
        margin-bottom: 1rem;
    }

    /* FEATURE CARDS */
    .cards-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(min(100%, 260px), 1fr));
        gap: 1.2rem;
        margin-bottom: 4rem;
    }

    .feature-card {
        background: var(--card);
        border: 1px solid var(--border-lt);
        border-radius: var(--radius-lg);
        padding: 1.8rem 1.6rem;
        box-shadow: var(--shadow-xs);
        transition: all 0.25s;
        position: relative;
        overflow: hidden;
    }

    .feature-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--accent), var(--accent-lt));
        opacity: 0;
        transition: opacity 0.25s;
    }

    .feature-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-sm);
        border-color: var(--accent);
    }

    .feature-card:hover::before {
        opacity: 1;
    }

    .fc-icon {
        width: 46px;
        height: 46px;
        background: var(--accent-lt);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--accent);
        font-size: 1.1rem;
        margin-bottom: 1.1rem;
        transition: all 0.25s;
    }

    .feature-card:hover .fc-icon {
        background: var(--accent);
        color: white;
    }

    .fc-title {
        font-family: 'Playfair Display', serif;
        font-size: 1.12rem;
        font-weight: 600;
        color: var(--primary);
        margin-bottom: 0.5rem;
    }

    .fc-text {
        font-size: 0.91rem;
        color: var(--text-muted);
        line-height: 1.7;
    }

    /* MISSION/VISION */
    .mv-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.2rem;
        margin-bottom: 4rem;
    }

    @media (max-width:640px) {
        .mv-grid {
            grid-template-columns: 1fr;
        }
    }

    .mv-card {
        background: var(--primary);
        border-radius: var(--radius-lg);
        padding: 2rem 1.8rem;
        color: white;
        position: relative;
        overflow: hidden;
    }

    .mv-card::after {
        content: '';
        position: absolute;
        bottom: -30px;
        right: -30px;
        width: 120px;
        height: 120px;
        border: 2px solid rgba(201, 160, 74, 0.2);
        border-radius: 50%;
    }

    .mv-card.vision {
        background: var(--primary-lt);
    }

    .mv-icon {
        width: 44px;
        height: 44px;
        background: rgba(201, 160, 74, 0.2);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--accent);
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .mv-label {
        font-size: 0.7rem;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        color: rgba(255, 255, 255, 0.55);
        margin-bottom: 0.3rem;
    }

    .mv-title {
        font-family: 'Playfair Display', serif;
        font-size: 1.2rem;
        font-weight: 600;
        color: white;
        margin-bottom: 0.7rem;
    }

    .mv-text {
        font-size: 0.91rem;
        color: rgba(255, 255, 255, 0.75);
        line-height: 1.72;
    }

    /* STATS */
    .stats-section {
        background: var(--primary);
        border-radius: var(--radius-lg);
        padding: 3rem 2rem;
        margin-bottom: 4rem;
        position: relative;
        overflow: hidden;
    }

    .stats-section::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse at 80% 50%, rgba(201, 160, 74, 0.12) 0%, transparent 65%);
    }

    .stats-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 2rem;
        position: relative;
    }

    .stat-item {
        text-align: center;
    }

    .stat-number {
        font-family: 'Playfair Display', serif;
        font-size: clamp(2rem, 5vw, 3rem);
        font-weight: 700;
        color: var(--accent);
        display: block;
        line-height: 1;
    }

    .stat-divider {
        width: 28px;
        height: 2px;
        background: rgba(201, 160, 74, 0.4);
        margin: 0.5rem auto;
        border-radius: 1px;
    }

    .stat-label {
        font-size: 0.85rem;
        color: rgba(255, 255, 255, 0.65);
        font-weight: 500;
    }

    /* WHY CHOOSE US */
    .why-grid {
        margin: auto;
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(min(100%, 250px), 1fr));
        gap: 1rem;
        margin-bottom: 4rem;
    }

    .why-card {
        background: var(--card);
        border: 1px solid var(--border-lt);
        border-radius: var(--radius);
        padding: 1.4rem 1.2rem;
        box-shadow: var(--shadow-xs);
        transition: all 0.22s;
        text-align: center;
    }

    .why-card:hover {
        border-color: var(--accent);
        box-shadow: var(--shadow-sm);
        transform: translateY(-3px);
    }

    .why-icon {
        width: 40px;
        height: 40px;
        background: var(--accent-lt);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--accent);
        font-size: 0.95rem;
        margin: 0 auto 0.85rem;
        transition: all 0.22s;
    }

    .why-card:hover .why-icon {
        background: var(--accent);
        color: white;
    }

    .why-title {
        font-family: 'Playfair Display', serif;
        font-size: 1.02rem;
        font-weight: 600;
        color: var(--primary);
        margin-bottom: 0.4rem;
    }

    .why-text {
        font-size: 0.87rem;
        color: var(--text-muted);
        line-height: 1.65;
    }

    /* COMMITMENT BANNER */
    .commitment-banner {
        background: linear-gradient(135deg, var(--accent-lt) 0%, #fff9ef 100%);
        border: 1px solid rgba(201, 160, 74, 0.3);
        border-radius: var(--radius-lg);
        padding: 2.2rem 2.4rem;
        display: flex;
        align-items: center;
        gap: 1.6rem;
        margin-bottom: 4rem;
        flex-wrap: wrap;
    }

    .commitment-icon {
        width: 56px;
        height: 56px;
        flex-shrink: 0;
        background: white;
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--accent);
        font-size: 1.4rem;
        box-shadow: var(--shadow-xs);
    }

    .commitment-text {
        flex: 1;
        min-width: 220px;
    }

    .commitment-text h3 {
        font-family: 'Playfair Display', serif;
        font-size: 1.1rem;
        color: var(--primary);
        margin-bottom: 0.35rem;
    }

    .commitment-text p {
        font-size: 0.92rem;
        color: var(--text-muted);
        line-height: 1.7;
    }

    /* CTA SECTION */
    .cta-section {
        text-align: center;
        background: var(--card);
        border: 1px solid var(--border-lt);
        border-radius: var(--radius-lg);
        padding: 3.5rem 2rem;
        box-shadow: var(--shadow-sm);
        margin-bottom: 2rem;
    }

    .cta-eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 0.4rem;
        background: var(--accent-lt);
        border: 1px solid rgba(201, 160, 74, 0.3);
        color: var(--accent);
        padding: 0.25rem 0.85rem;
        border-radius: 999px;
        font-size: 0.72rem;
        font-weight: 700;
        letter-spacing: 1.2px;
        text-transform: uppercase;
        margin-bottom: 1rem;
    }

    .cta-section h2 {
        font-family: 'Playfair Display', serif;
        font-size: clamp(1.6rem, 4vw, 2.6rem);
        color: var(--primary);
        margin-bottom: 0.8rem;
    }

    .cta-section p {
        color: var(--text-muted);
        font-size: 0.97rem;
        margin-bottom: 1.8rem;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }

    .cta-buttons {
        display: flex;
        gap: 0.8rem;
        justify-content: center;
        flex-wrap: wrap;
    }

    .btn-cta-primary {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        background: var(--accent);
        color: white;
        padding: 0.9rem 2rem;
        border-radius: 999px;
        font-weight: 700;
        font-size: 0.97rem;
        text-decoration: none;
        transition: all 0.25s;
        box-shadow: 0 6px 20px rgba(201, 160, 74, 0.3);
    }

    .btn-cta-primary:hover {
        background: var(--accent-dk);
        transform: translateY(-2px);
        box-shadow: 0 10px 30px rgba(201, 160, 74, 0.4);
    }

    .btn-cta-outline {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        background: transparent;
        color: var(--primary);
        padding: 0.9rem 2rem;
        border-radius: 999px;
        font-weight: 600;
        font-size: 0.97rem;
        text-decoration: none;
        border: 1.5px solid var(--border);
        transition: all 0.25s;
    }

    .btn-cta-outline:hover {
        border-color: var(--accent);
        color: var(--accent);
        transform: translateY(-2px);
    }

    /* FOOTER */
    footer {
        background: var(--primary);
        color: #c8ddd8;
        text-align: center;
        padding: 3.5rem 5% 2.5rem;
        font-size: 0.92rem;
    }

    .footer-logo {
        font-family: 'Playfair Display', serif;
        font-size: clamp(1.6rem, 4vw, 2rem);
        font-weight: 700;
        color: var(--accent);
        margin-bottom: 1.4rem;
    }

    .footer-links {
        display: flex;
        justify-content: center;
        gap: clamp(1rem, 3vw, 2.2rem);
        margin: 1.2rem 0 1.8rem;
        flex-wrap: wrap;
    }

    .footer-links a {
        color: #c8ddd8;
        text-decoration: none;
        transition: color 0.22s;
        font-size: 0.9rem;
    }

    .footer-links a:hover {
        color: var(--accent);
    }

    .social-icons {
        display: flex;
        justify-content: center;
        gap: clamp(1rem, 3vw, 1.8rem);
        margin: 1rem 0 1.8rem;
    }

    .social-icons a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.08);
        color: #c8ddd8;
        font-size: 1.1rem;
        transition: all 0.25s;
        text-decoration: none;
    }

    .social-icons a:hover {
        background: var(--accent);
        color: white;
        transform: translateY(-3px);
    }

    .copyright {
        opacity: 0.65;
        font-size: 0.84rem;
    }

    /* SCROLL REVEAL */
    .reveal {
        opacity: 0;
        transform: translateY(24px);
        transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .reveal.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .reveal-delay-1 {
        transition-delay: 0.1s;
    }

    .reveal-delay-2 {
        transition-delay: 0.2s;
    }

    .reveal-delay-3 {
        transition-delay: 0.3s;
    }

    .reveal-delay-4 {
        transition-delay: 0.4s;
    }

    [dir="rtl"] .navbar {
        flex-direction: row-reverse;
    }

    [dir="rtl"] .lang-btn {
        flex-direction: row-reverse;
    }

    [dir="rtl"] .footer-links {
        flex-direction: row-reverse;
    }

    [dir="rtl"] .section-heading::after {
        margin-left: 0;
        margin-right: 1rem;
    }

    @media (max-width:480px) {
        .commitment-banner {
            flex-direction: column;
            text-align: center;
        }

        .commitment-icon {
            margin: 0 auto;
        }
    }

    @media (max-width:360px) {
        :root {
            font-size: 13px;
        }

        .navbar {
            padding: 0 3%;
            height: 58px;
        }

        .page-body {
            padding: 2rem 3% 3rem;
        }
    }

    /* ═══════════ FOOTER ═══════════ */
    footer {
        background: var(--primary);
        color: #c8ddd8;
        padding: 4rem 5% 2rem;
    }

    .footer-top {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 3rem;
        padding-bottom: 3rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        max-width: 1280px;
        margin: 0 auto;
    }

    @media (max-width:900px) {
        .footer-top {
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
        }
    }

    @media (max-width:520px) {
        .footer-top {
            grid-template-columns: 1fr;
        }
    }

    .footer-logo {
        font-family: 'Cormorant Garamond', serif;
        font-size: 1.8rem;
        font-weight: 700;
        color: var(--accent);
        margin-bottom: 0.9rem;
    }

    .footer-desc {
        font-size: 0.88rem;
        color: rgba(255, 255, 255, 0.5);
        line-height: 1.75;
        max-width: 280px;
    }

    .footer-social {
        display: flex;
        gap: 0.6rem;
        margin-top: 1.2rem;
    }

    .footer-social a {
        width: 36px;
        height: 36px;
        border-radius: 9px;
        background: rgba(255, 255, 255, 0.07);
        color: #c8ddd8;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.95rem;
        transition: all 0.25s;
        text-decoration: none;
    }

    .footer-social a:hover {
        background: var(--accent);
        color: white;
        transform: translateY(-3px);
    }

    .footer-col-title {
        font-size: 0.72rem;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        color: rgba(255, 255, 255, 0.35);
        font-weight: 700;
        margin-bottom: 1.1rem;
    }

    .footer-col a {
        display: block;
        color: rgba(255, 255, 255, 0.6);
        text-decoration: none;
        font-size: 0.88rem;
        margin-bottom: 0.55rem;
        transition: color 0.2s;
    }

    .footer-col a:hover {
        color: var(--accent);
    }

    .footer-bottom {
        max-width: 1280px;
        margin: 1.8rem auto 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 0.5rem;
        font-size: 0.82rem;
        color: rgba(255, 255, 255, 0.3);
    }


    footer a , footer div, footer p  {
        text-align: left;
    } 