/* Roche Marine — Multi-page luxury corporate system */

:root {
    --navy-deep: #001a2e;
    --navy: #002b45;
    --navy-mid: #003d5c;
    --gold: #c9a03a;
    --gold-bright: #d4af37;
    --gold-soft: #e8cf7a;
    --gold-deep: #7a6120;
    --ink: #050d18;
    --text: #1a2836;
    --text-muted: #5c6b78;
    --white: #ffffff;
    --mist: #f2f5f8;
    --mist-dark: #e2e8ef;
    --pearl: linear-gradient(180deg, #fbfcfe 0%, #f0f4f8 50%, #e8eef4 100%);
    --gradient-gold: linear-gradient(135deg, #f0d78c 0%, #d4af37 42%, #a67c1a 100%);
    --gradient-navy: linear-gradient(165deg, #001a2e 0%, #003d5c 100%);
    --gradient-veil: linear-gradient(120deg, rgba(0, 26, 46, 0.93) 0%, rgba(0, 43, 69, 0.65) 45%, rgba(0, 61, 92, 0.2) 100%);
    --shadow-soft: 0 8px 40px rgba(0, 26, 46, 0.07);
    --shadow-lift: 0 28px 64px rgba(0, 26, 46, 0.12);
    --shadow-gold: 0 12px 40px rgba(201, 160, 58, 0.3);
    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 26px;
    --radius-xl: 36px;
    --font-ar: "IBM Plex Sans Arabic", "Noto Sans Arabic", system-ui, sans-serif;
    --font-en: "Syne", "IBM Plex Sans Arabic", sans-serif;
    --gutter: clamp(1.25rem, 4vw, 2.75rem);
    --nav-pad-top: 0.5rem;
    --nav-h: calc(120px + env(safe-area-inset-top, 0px));
    --nav-glass-bg: rgba(255, 255, 255, 0.46);
    --nav-glass-border: rgba(255, 255, 255, 0.52);
    --nav-glass-solid: rgba(255, 255, 255, 0.82);
    --section-y: clamp(4.5rem, 10vw, 7.5rem);
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 17px; }

body {
    font-family: var(--font-ar);
    color: var(--text);
    background: var(--white);
    line-height: 1.8;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    /* geometricPrecision يقلّل قطع الحروف العربية في WebKit مع بعض الخطوط */
    text-rendering: geometricPrecision;
}

main {
    position: relative;
    z-index: 0;
}

html[lang="ar"] {
    hyphens: none;
    -webkit-hyphens: none;
    word-break: normal;
    overflow-wrap: break-word;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container {
    width: 100%;
    max-width: 1200px;
    margin-inline: auto;
    padding-inline: var(--gutter);
}

/* ---------- Preloader (home only) ---------- */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-navy);
    transition: opacity 0.55s var(--ease-out), visibility 0.55s;
}
.preloader--done { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader__inner { text-align: center; padding: 2rem; }
.preloader__logo { height: 88px; width: auto; margin: 0 auto 1.25rem; filter: drop-shadow(0 6px 24px rgba(0,0,0,.35)); }
.preloader__bar { width: 140px; height: 2px; margin: 0 auto; background: rgba(255,255,255,.12); border-radius: 2px; overflow: hidden; }
.preloader__bar span { display: block; height: 100%; width: 35%; background: var(--gradient-gold); animation: barMove 1.1s ease-in-out infinite; }
@keyframes barMove { 0% { transform: translateX(-100%); } 100% { transform: translateX(400%); } }

/* ---------- Navbar — shell (glass) + pill (logo row) + menu (sibling = no flex bug) ---------- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9000;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    overflow: visible;
    padding-top: max(14px, calc(var(--nav-pad-top) + env(safe-area-inset-top, 0px) + 12px));
    padding-bottom: 8px;
    padding-inline-start: max(calc(var(--gutter) + 12px), env(safe-area-inset-left, 0px));
    padding-inline-end: max(calc(var(--gutter) + 12px), env(safe-area-inset-right, 0px));
    background: transparent;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    pointer-events: none;
}

.nav__shell {
    pointer-events: auto;
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: visible;
    border-radius: 9999px;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 0.85rem 1.5rem;
    padding: 0.45rem 1.35rem 0.45rem 1.2rem;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.55) 0%, rgba(255, 255, 255, 0.22) 48%, rgba(255, 255, 255, 0.42) 100%),
        rgba(255, 255, 255, 0.52);
    border: 1px solid var(--nav-glass-border);
    box-shadow:
        0 8px 32px rgba(0, 18, 42, 0.12),
        0 2px 12px rgba(0, 14, 36, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.85);
    transition:
        background 0.45s var(--ease-out),
        box-shadow 0.45s ease,
        border-color 0.45s ease;
}

/* فوق خلفية داكنة (هيرو / كتلة كحلي / فوتر) — يُفعَّل بالتمرير عبر JS */
.nav.nav--bd-dark .nav__shell {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.06) 100%),
        rgba(0, 26, 46, 0.48);
    border-color: rgba(255, 255, 255, 0.32);
    box-shadow:
        0 12px 36px rgba(0, 8, 22, 0.45),
        0 2px 12px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.nav.nav--bd-dark.nav--solid .nav__shell {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.26) 0%, rgba(255, 255, 255, 0.1) 100%),
        rgba(0, 26, 46, 0.62);
    border-color: rgba(255, 255, 255, 0.38);
}

.nav.nav--bd-dark .nav__link {
    color: rgba(255, 255, 255, 0.94);
}

.nav.nav--bd-dark .nav__link:hover,
.nav.nav--bd-dark .nav__link:focus-visible {
    color: var(--gold-soft);
}

.nav.nav--bd-dark .nav__link--active {
    color: var(--gold-bright);
}

.nav.nav--bd-dark .nav__toggle {
    color: rgba(255, 255, 255, 0.95);
}

.nav.nav--bd-dark .nav__brand-name {
    color: rgba(255, 255, 255, 0.92);
}

.nav.nav--bd-dark .nav__brand-orb {
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.26) 0%, rgba(255, 255, 255, 0.1) 100%);
    border-color: rgba(255, 255, 255, 0.42);
    box-shadow:
        0 6px 22px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.nav--solid .nav__shell {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.88) 55%, rgba(252, 253, 255, 0.94) 100%),
        var(--nav-glass-solid);
    border-color: rgba(255, 255, 255, 0.92);
    box-shadow:
        0 10px 36px rgba(0, 20, 48, 0.1),
        0 2px 10px rgba(0, 16, 40, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.nav--page .nav__shell {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.82) 0%, rgba(255, 255, 255, 0.58) 50%, rgba(255, 255, 255, 0.68) 100%),
        rgba(255, 255, 255, 0.48);
}

.nav--page.nav--solid .nav__shell {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 100%),
        var(--nav-glass-solid);
}

.nav__pill {
    flex: 0 0 auto;
    min-width: 0;
    display: flex;
    align-items: center;
    position: relative;
    overflow: visible;
}

.nav__inner {
    position: static;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 0 0 auto;
    min-width: 0;
    width: auto;
    max-width: 100%;
    padding: 0;
    gap: 0.75rem;
    overflow: visible;
}

.nav__brand {
    display: inline-flex;
    align-items: center;
    gap: 0.68rem;
    flex-shrink: 0;
    border-radius: 0;
}

.nav__brand-name {
    font-family: var(--font-en);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(0, 26, 46, 0.84);
    line-height: 1;
    white-space: nowrap;
}

.nav__brand-orb {
    position: relative;
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.95) 0%, rgba(240, 245, 252, 0.88) 100%);
    border: 1px solid rgba(255, 255, 255, 0.58);
    box-shadow:
        0 6px 24px rgba(0, 18, 44, 0.12),
        0 1px 4px rgba(0, 12, 32, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.85);
    transition: box-shadow 0.35s var(--ease-out), transform 0.35s var(--ease-out);
}

.nav__brand-orb::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: linear-gradient(200deg, rgba(255, 255, 255, 0.55) 0%, transparent 55%);
    pointer-events: none;
    opacity: 0.5;
}

.nav__brand:hover .nav__brand-orb {
    box-shadow:
        0 8px 28px rgba(0, 18, 44, 0.16),
        0 2px 8px rgba(0, 12, 32, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
    transform: scale(1.03);
}

.nav__brand-orb .nav__logo {
    position: relative;
    z-index: 1;
    width: 50px;
    height: 50px;
    object-fit: contain;
    transition: transform 0.35s var(--ease-out);
}

.nav__brand:hover .nav__brand-orb .nav__logo {
    transform: scale(1.04);
}

.nav__menu {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 0.5rem 2.25rem;
    flex: 1 1 auto;
    min-width: 0;
    margin-inline-start: auto;
    justify-content: flex-end;
    padding-inline-end: clamp(1rem, 2.2vw, 1.8rem);
}

@media (max-width: 1100px) and (min-width: 993px) {
    .nav__menu {
        gap: 0.5rem 1.15rem;
    }

    .nav__link {
        font-size: 0.86rem;
    }
}

.nav__link {
    font-size: 0.92rem;
    font-weight: 600;
    color: rgba(0, 26, 46, 0.88);
    letter-spacing: 0;
    padding: 0.45rem 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav__link::after {
    content: "";
    position: absolute;
    bottom: 0;
    inset-inline-start: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    border-radius: 2px;
    transition: width 0.35s var(--ease-out);
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.45);
}

.nav__link:hover,
.nav__link:focus-visible {
    color: var(--gold-deep);
    outline: none;
}

.nav__link:hover::after,
.nav__link:focus-visible::after { width: 100%; }

.nav__link--active {
    color: var(--gold-deep);
}

.nav__link--active::after {
    width: 100%;
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 7px;
    padding: 11px;
    color: var(--navy-deep);
    border-radius: var(--radius-sm);
}

.nav__toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav__toggle.is-open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

@media (max-width: 992px) {
    .nav__shell {
        border-radius: 26px;
        max-width: 100%;
        overflow: visible;
        padding: 0.42rem 1rem 0.42rem 0.9rem;
        box-shadow:
            0 6px 24px rgba(0, 18, 42, 0.1),
            0 1px 8px rgba(0, 14, 36, 0.05),
            inset 0 1px 0 rgba(255, 255, 255, 0.72);
    }

    .nav--solid .nav__shell {
        box-shadow:
            0 6px 24px rgba(0, 20, 48, 0.09),
            0 1px 8px rgba(0, 16, 40, 0.05),
            inset 0 1px 0 rgba(255, 255, 255, 0.95);
    }

    .nav__pill {
        flex: 1 1 auto;
        width: 100%;
        min-width: 0;
    }

    .nav__brand-orb {
        width: 52px;
        height: 52px;
    }

    .nav__brand-orb .nav__logo {
        width: 42px;
        height: 42px;
    }

    .nav__inner {
        flex: 1 1 auto;
        min-width: 0;
        width: 100%;
        max-width: 100%;
        overflow: visible;
    }

    .nav__brand {
        min-width: auto;
        flex-shrink: 0;
    }

    .nav__brand-name {
        display: none;
    }

    .nav__toggle {
        display: flex;
        flex-shrink: 0;
    }

    .nav__menu {
        position: absolute;
        top: calc(100% + 8px);
        left: 0;
        right: 0;
        width: auto;
        z-index: 50;
        box-sizing: border-box;
        flex: none;
        justify-content: flex-start;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 0.5rem 1rem 1.1rem;
        margin: 0;
        max-height: min(85vh, 480px);
        overflow-x: hidden;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
        background: #fff;
        border: 1px solid rgba(0, 26, 46, 0.1);
        border-radius: 20px;
        box-shadow: 0 16px 48px rgba(0, 18, 44, 0.14), 0 2px 12px rgba(0, 14, 36, 0.06);
        gap: 0;
        pointer-events: auto;
    }

    .nav__menu.is-open {
        display: flex;
        flex-direction: column;
    }

    .nav__link {
        position: relative;
        z-index: 1;
        flex: 0 0 auto;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(0, 26, 46, 0.08);
        color: var(--navy-deep);
    }

    .nav__link:last-child {
        border-bottom: none;
    }

    .nav__link::after { display: none; }

    .nav__link--active {
        background: rgba(212, 175, 55, 0.14);
        color: var(--gold-deep);
        padding-inline: 0.75rem;
        margin-inline: -0.75rem;
        border-radius: var(--radius-sm);
        border-bottom-color: transparent;
    }

    .nav.nav--bd-dark .nav__menu.is-open .nav__link {
        color: var(--navy-deep);
    }

    .nav.nav--bd-dark .nav__menu.is-open .nav__link:hover,
    .nav.nav--bd-dark .nav__menu.is-open .nav__link:focus-visible {
        color: var(--gold-deep);
    }

    .nav.nav--bd-dark .nav__menu.is-open .nav__link--active {
        color: var(--gold-deep);
    }
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 1.85rem;
    font-size: 0.78rem;
    font-weight: 700;
    font-family: var(--font-en);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    transition: transform 0.35s var(--ease-out), box-shadow 0.35s ease, background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.btn--primary {
    background: var(--gradient-gold);
    color: var(--ink);
    box-shadow: var(--shadow-gold);
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 48px rgba(212, 175, 55, 0.35);
}

.btn--outline {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(212, 175, 55, 0.55);
}

.btn--outline:hover {
    border-color: var(--gold-bright);
    background: rgba(212, 175, 55, 0.12);
    color: var(--gold-soft);
}

.btn--outline-dark {
    color: var(--navy-deep);
    border: 1px solid var(--gold-deep);
    background: transparent;
}

.btn--outline-dark:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--gold);
}

.btn--lg { padding: 1.15rem 2.2rem; font-size: 0.82rem; }

/* ---------- Home hero ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    padding-top: var(--nav-h);
    overflow: hidden;
}

.hero__media { position: absolute; inset: 0; z-index: 0; }

.hero__parallax {
    position: absolute;
    inset: -4% -2%;
    background-color: var(--navy-deep);
    background-repeat: no-repeat;
    /* شاشات صغيرة: لقطة أبعد — تُرى مساحة أكبر من السفينة والبحر */
    background-size: cover;
    background-position: center 40%;
    transform: translate3d(0, 0, 0) scale(1.02);
    will-change: transform;
}

@media (min-width: 600px) {
    .hero__parallax {
        inset: -5% -2.5%;
        background-position: center 45%;
        transform: translate3d(0, 0, 0) scale(1.03);
    }
}

/* صورة الناقلة: قرب تدريجي على الشاشات الأوسع */
.hero__parallax--tanker {
    background-image: url("../assets/images/pexels-luis-morales-torres-19217421-oil-tanker.jpg");
}

@media (min-width: 900px) {
    .hero__parallax--tanker {
        background-size: 135% auto;
        background-position: center 48%;
    }

    .hero__parallax {
        inset: -6% -3%;
        transform: translate3d(0, 0, 0) scale(1.05);
    }
}

@media (min-width: 1200px) {
    .hero__parallax--tanker {
        background-size: 155% auto;
        background-position: center 46%;
    }
}

@media (min-width: 1600px) {
    .hero__parallax--tanker {
        background-size: 175% auto;
        background-position: center 44%;
    }
}

.hero__veil { position: absolute; inset: 0; background: var(--gradient-veil); z-index: 1; }
.hero__veil--gold {
    z-index: 2;
    background: radial-gradient(ellipse 80% 60% at 75% 15%, rgba(212, 175, 55, 0.11) 0%, transparent 55%);
    mix-blend-mode: screen;
    opacity: 0.85;
}

.hero__content { position: relative; z-index: 4; width: 100%; padding-block: clamp(3rem, 8vw, 5.5rem); max-width: 720px; }

.hero__eyebrow {
    font-family: var(--font-en);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold-soft);
    margin-bottom: 1.25rem;
    animation: fadeUp 0.9s var(--ease-out) 0.1s both;
}

.hero__line {
    width: 72px;
    height: 3px;
    background: var(--gradient-gold);
    border-radius: 2px;
    margin-bottom: 1.5rem;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
    animation: fadeUp 0.9s var(--ease-out) 0.15s both;
}

.hero__title-ar {
    font-size: clamp(2.2rem, 5.5vw, 3.5rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.28;
    margin-bottom: 0.5rem;
    padding-block: 0.14em 0.2em;
    letter-spacing: 0;
    text-shadow: 0 6px 40px rgba(0, 0, 0, 0.4);
    overflow: visible;
    animation: fadeUp 0.9s var(--ease-out) 0.22s both;
}

.hero__title-en {
    font-family: var(--font-en);
    font-size: clamp(1rem, 2.2vw, 1.45rem);
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.93);
    margin-bottom: 1.5rem;
    animation: fadeUp 0.9s var(--ease-out) 0.32s both;
}

.hero__sub {
    font-size: clamp(0.98rem, 1.4vw, 1.1rem);
    color: rgba(255, 255, 255, 0.76);
    max-width: 500px;
    margin-bottom: 2rem;
    line-height: 1.85;
    animation: fadeUp 0.9s var(--ease-out) 0.42s both;
}

.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; animation: fadeUp 0.9s var(--ease-out) 0.52s both; }

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(26px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
    position: relative;
    min-height: 42vh;
    display: flex;
    align-items: flex-end;
    margin-top: -28px;
    padding-top: calc(var(--nav-h) + 28px);
    padding-bottom: clamp(2.5rem, 6vw, 4rem);
    overflow: hidden;
    background-color: var(--navy-deep);
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.page-hero--tall { min-height: 48vh; }

.page-hero__bg {
    position: absolute;
    inset: 0;
    background: var(--navy-deep) center / cover no-repeat;
    filter: saturate(0.9) brightness(0.55);
}

.page-hero__veil {
    position: absolute;
    inset: 0;
    background: linear-gradient(165deg, rgba(0, 26, 46, 0.88) 0%, rgba(0, 43, 69, 0.72) 50%, rgba(0, 26, 46, 0.55) 100%);
}

.page-hero__inner { position: relative; z-index: 2; width: 100%; }

.page-hero__label {
    font-family: var(--font-en);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold-soft);
    margin-bottom: 0.75rem;
}

.page-hero__title {
    font-size: clamp(1.85rem, 4vw, 2.75rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.36;
    letter-spacing: 0;
    margin-bottom: 0.65rem;
    padding-block: 0.1em 0.16em;
    overflow: visible;
}

.page-hero__sub {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.72);
    max-width: 560px;
    line-height: 1.75;
}

.page-hero__rule {
    width: 56px;
    height: 3px;
    background: var(--gradient-gold);
    border-radius: 2px;
    margin-top: 1.25rem;
    box-shadow: 0 0 16px rgba(212, 175, 55, 0.35);
}

/* ---------- Sections ---------- */
.section { padding-block: var(--section-y); position: relative; }
.section--mist { background: var(--mist); }
.section--pearl { background: var(--pearl); }
.section--navy { background: var(--gradient-navy); color: rgba(255, 255, 255, 0.92); }

.section__head { text-align: center; max-width: 700px; margin-inline: auto; margin-bottom: clamp(2.5rem, 5vw, 3.5rem); }
.section__head--left { text-align: start; margin-inline: 0; }
.section__label {
    font-family: var(--font-en);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--gold-deep);
    margin-bottom: 0.85rem;
}
.section--navy .section__label { color: var(--gold-soft); }

.section__title {
    font-size: clamp(1.65rem, 2.8vw, 2.25rem);
    font-weight: 800;
    color: var(--navy-deep);
    line-height: 1.4;
    margin-bottom: 1rem;
    padding-block: 0.1em 0.16em;
    letter-spacing: 0;
    overflow: visible;
}
.section--navy .section__title { color: var(--white); }

.section__lead { font-size: 1.05rem; color: var(--text-muted); line-height: 1.85; }
.section--navy .section__lead { color: rgba(255, 255, 255, 0.72); }

.section__rule {
    width: 48px;
    height: 3px;
    background: var(--gradient-gold);
    border-radius: 2px;
    margin: 1rem auto 0;
}
.section__head--left .section__rule { margin-inline: 0; }

/* ---------- Reveal ---------- */
.reveal {
    opacity: 0;
    transform: translate3d(0, 28px, 0);
    transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
    overflow: visible;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.reveal.is-visible { opacity: 1; transform: translate3d(0, 0, 0); }

/* ---------- Home: intro split ---------- */
.intro-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}
@media (max-width: 900px) { .intro-split { grid-template-columns: 1fr; } }

.intro-split__text {
    overflow: visible;
    min-height: 0;
}

.intro-split__visual {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lift);
    border: 1px solid rgba(212, 175, 55, 0.15);
}
.intro-split__visual img { width: 100%; aspect-ratio: 5/4; object-fit: cover; transition: transform 0.9s var(--ease-out); }
.intro-split__visual:hover img { transform: scale(1.03); }

.intro-split__text .lead {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--navy-deep);
    line-height: 1.85;
    margin-bottom: 1.25rem;
    padding-block: 0.06em 0;
    overflow: visible;
}
.intro-split__text p { color: var(--text-muted); margin-bottom: 1rem; font-size: 1.02rem; }

/* ---------- Feature cards (home — 6 cards: classic + media on left) ---------- */
.feature-grid--six {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1.1rem, 2.2vw, 1.65rem);
}

@media (max-width: 1024px) {
    .feature-grid--six {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .feature-grid--six {
        grid-template-columns: 1fr;
    }
}

.feature-card--split {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    padding: 0;
    min-height: 0;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--mist-dark);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    transition: transform 0.4s var(--ease-out), box-shadow 0.4s ease, border-color 0.35s ease;
}

.feature-card--split:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lift), 0 0 0 1px rgba(212, 175, 55, 0.22);
    border-color: rgba(212, 175, 55, 0.26);
}

.feature-card__content {
    flex: 1;
    min-width: 0;
    padding: 1.75rem 1.35rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
}

.feature-card--split .feature-card__icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-sm);
    background: var(--gradient-gold);
    color: var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.15rem;
    box-shadow: var(--shadow-gold);
}

.feature-card--split .feature-card__icon svg {
    width: 26px;
    height: 26px;
}

.feature-card__content h3 {
    font-size: 1.08rem;
    font-weight: 800;
    color: var(--navy-deep);
    margin-bottom: 0.55rem;
    line-height: 1.42;
    padding-block: 0.06em 0.1em;
    letter-spacing: 0;
    overflow: visible;
}

.feature-card__content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.75;
    letter-spacing: 0;
    margin: 0;
}

/* عمود الصور على اليسار (في RTL يظهر العنصر الثاني يسار الشاشة) */
.feature-card__media {
    flex: 0 0 38%;
    max-width: 216px;
    min-height: 188px;
    position: relative;
    overflow: hidden;
    align-self: stretch;
    background: var(--navy-deep);
    border-radius: var(--radius-lg) 26px 26px var(--radius-lg);
}

.feature-card__media img {
    width: 100%;
    height: 100%;
    min-height: 188px;
    object-fit: cover;
    object-position: center;
    transition: transform 0.65s var(--ease-out);
}

.feature-card--split:hover .feature-card__media img {
    transform: scale(1.06);
}

@media (max-width: 600px) {
    .feature-card--split {
        flex-direction: column;
    }

    .feature-card__media {
        flex: none;
        order: -1;
        max-width: none;
        width: 100%;
        min-height: 200px;
        border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    }

    .feature-card__media img {
        min-height: 200px;
    }

    .feature-card__content {
        padding: 1.5rem 1.35rem 1.65rem;
    }
}

/* ---------- Expertise strip ---------- */
.expertise-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}
@media (max-width: 900px) { .expertise-strip { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .expertise-strip { grid-template-columns: 1fr; } }

.expertise-strip__item {
    text-align: center;
    padding: 1.75rem 1rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(212, 175, 55, 0.22);
    border-radius: var(--radius-md);
    backdrop-filter: blur(10px);
    transition: border-color 0.3s ease, background 0.3s ease;
}
.expertise-strip__item:hover {
    border-color: rgba(212, 175, 55, 0.45);
    background: rgba(255, 255, 255, 0.09);
}
.expertise-strip__item strong { display: block; font-size: 0.95rem; color: var(--white); margin-bottom: 0.35rem; }
.expertise-strip__item span { font-size: 0.8rem; color: rgba(255, 255, 255, 0.62); font-family: var(--font-en); letter-spacing: 0.06em; text-transform: uppercase; }

/* ---------- CTA band ---------- */
.cta-band {
    position: relative;
    padding-block: clamp(4rem, 9vw, 6rem);
    overflow: hidden;
}
.cta-band__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: saturate(0.85) brightness(0.5);
}
.cta-band__veil {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(0, 26, 46, 0.92) 0%, rgba(0, 43, 69, 0.75) 100%);
}
.cta-band__inner { position: relative; z-index: 2; text-align: center; max-width: 640px; margin-inline: auto; }
.cta-band__title {
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.42;
    padding-block: 0.1em 0.14em;
    overflow: visible;
}
.cta-band__title span { color: var(--gold-soft); }
.cta-band__text { color: rgba(255, 255, 255, 0.74); margin-bottom: 1.75rem; font-size: 1.05rem; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* ---------- About page blocks ---------- */
.about-block { margin-bottom: var(--section-y); }
.about-block:last-child { margin-bottom: 0; }

.split-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}
@media (max-width: 800px) { .split-vision { grid-template-columns: 1fr; } }

.vision-card {
    padding: clamp(2rem, 4vw, 2.75rem);
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--mist-dark);
    box-shadow: var(--shadow-soft);
    transition: box-shadow 0.4s ease, border-color 0.35s ease;
}
.vision-card:hover { box-shadow: var(--shadow-lift); border-color: rgba(212, 175, 55, 0.25); }
.vision-card__num {
    font-family: var(--font-en);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    color: var(--gold-deep);
    margin-bottom: 0.85rem;
}
.vision-card h3 {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--navy-deep);
    margin-bottom: 1rem;
    line-height: 1.38;
    padding-block: 0.08em 0.12em;
    overflow: visible;
}
.vision-card p { color: var(--text-muted); line-height: 1.85; margin-bottom: 0.85rem; font-size: 1.02rem; }
.vision-card p:last-child { margin-bottom: 0; }

.expertise-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.35rem;
}
@media (max-width: 768px) { .expertise-cards { grid-template-columns: 1fr; } }

.ex-card {
    padding: 1.85rem 1.65rem;
    background: var(--mist);
    border-radius: var(--radius-md);
    border: 1px solid var(--mist-dark);
    transition: transform 0.35s var(--ease-out), border-color 0.35s ease;
}
.ex-card:hover { transform: translateY(-4px); border-color: rgba(212, 175, 55, 0.3); }
.ex-card h4 {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--navy-deep);
    margin-bottom: 0.5rem;
    line-height: 1.38;
    padding-block: 0.06em 0.1em;
    overflow: visible;
}
.ex-card .en { font-family: var(--font-en); font-size: 0.65rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 0.75rem; }
.ex-card p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.75; }

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
@media (max-width: 900px) { .values-grid { grid-template-columns: 1fr; } }

.value-tile {
    padding: 2rem 1.5rem;
    text-align: center;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--mist-dark);
    box-shadow: var(--shadow-soft);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.value-tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.value-tile__icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1.1rem;
    border-radius: 50%;
    background: linear-gradient(145deg, var(--navy-deep), var(--navy-mid));
    color: var(--gold-soft);
    display: flex;
    align-items: center;
    justify-content: center;
}
.value-tile__icon svg { width: 26px; height: 26px; }
.value-tile h4 {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--navy-deep);
    margin-bottom: 0.5rem;
    line-height: 1.38;
    padding-block: 0.06em 0.1em;
    overflow: visible;
}
.value-tile p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; }

.why-grid-about {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}
@media (max-width: 640px) { .why-grid-about { grid-template-columns: 1fr; } }

.why-row {
    display: flex;
    gap: 1.1rem;
    padding: 1.5rem 1.35rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--radius-md);
    backdrop-filter: blur(8px);
}
.why-row__icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: rgba(212, 175, 55, 0.18);
    color: var(--gold-soft);
    display: flex;
    align-items: center;
    justify-content: center;
}
.why-row__icon svg { width: 22px; height: 22px; }
.why-row h4 {
    font-size: 1.02rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.25rem;
    line-height: 1.4;
    padding-block: 0.05em 0;
    overflow: visible;
}
.why-row p { font-size: 0.88rem; color: rgba(255, 255, 255, 0.68); line-height: 1.65; }

/* ---------- Services page ---------- */
.services-intro { max-width: 720px; margin-bottom: 3rem; }
.services-intro p { font-size: 1.08rem; color: var(--text-muted); line-height: 1.85; }

.service-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 4vw, 3rem);
    align-items: center;
    margin-bottom: clamp(3.5rem, 8vw, 5rem);
    padding-bottom: clamp(3rem, 6vw, 4rem);
    border-bottom: 1px solid var(--mist-dark);
}
.service-block:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.service-block--reverse .service-block__media { order: 2; }
.service-block--reverse .service-block__content { order: 1; }
@media (max-width: 900px) {
    .service-block, .service-block--reverse { grid-template-columns: 1fr; }
    .service-block--reverse .service-block__media,
    .service-block--reverse .service-block__content { order: unset; }
}

.service-block__media {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lift);
    border: 1px solid rgba(212, 175, 55, 0.15);
}
.service-block__media img { width: 100%; aspect-ratio: 16/11; object-fit: cover; transition: transform 0.85s var(--ease-out); }
.service-block:hover .service-block__media img { transform: scale(1.04); }

.service-block__label {
    font-family: var(--font-en);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold-deep);
    margin-bottom: 0.65rem;
}
.service-block__title {
    font-size: clamp(1.35rem, 2.5vw, 1.75rem);
    font-weight: 800;
    color: var(--navy-deep);
    margin-bottom: 1rem;
    line-height: 1.38;
    padding-block: 0.08em 0.14em;
    overflow: visible;
}
.service-block__lead { font-size: 1.02rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 1.15rem; }
.service-block__list { display: flex; flex-direction: column; gap: 0.55rem; }
.service-block__list li {
    font-size: 0.95rem;
    color: var(--text);
    padding-inline-start: 1.2rem;
    position: relative;
    line-height: 1.55;
}
.service-block__list li::before {
    content: "";
    position: absolute;
    inset-inline-start: 0;
    top: 0.55em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gradient-gold);
}

/* ---------- Contact page (luxury layout) ---------- */
.contact-lux-hero {
    position: relative;
    min-height: 46vh;
    display: flex;
    align-items: flex-end;
    margin-top: -28px;
    padding-top: calc(var(--nav-h) + 28px);
    padding-bottom: clamp(3rem, 9vw, 5.5rem);
    overflow: hidden;
    background-color: var(--navy-deep);
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.contact-lux-hero__bg {
    position: absolute;
    inset: 0;
    background: var(--navy-deep) center / cover no-repeat;
}

.contact-lux-hero__veil {
    position: absolute;
    inset: 0;
    background: linear-gradient(168deg, rgba(0, 26, 46, 0.94) 0%, rgba(0, 43, 69, 0.76) 42%, rgba(0, 26, 46, 0.52) 100%);
}

.contact-lux-hero__glow {
    position: absolute;
    inset: auto 0 0 0;
    height: 55%;
    background: radial-gradient(ellipse 75% 90% at 50% 100%, rgba(212, 175, 55, 0.2), transparent 68%);
    pointer-events: none;
}

.contact-lux-hero__inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 720px;
}

.contact-lux-hero__eyebrow {
    font-family: var(--font-en);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--gold-soft);
    margin-bottom: 0.85rem;
}

.contact-lux-hero__title {
    font-size: clamp(2rem, 5vw, 2.85rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.32;
    letter-spacing: 0;
    margin-bottom: 1rem;
    padding-block: 0.12em 0.18em;
    overflow: visible;
}

.contact-lux-hero__lead {
    font-size: 1.08rem;
    color: rgba(255, 255, 255, 0.76);
    line-height: 1.85;
    max-width: 540px;
}

.contact-lux-hero__rule {
    width: 64px;
    height: 3px;
    margin-top: 1.5rem;
    background: var(--gradient-gold);
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.35);
}

.contact-lux-main { padding-block: clamp(4rem, 10vw, 6.5rem); }

.contact-lux-intro {
    text-align: center;
    max-width: 560px;
    margin-inline: auto;
    margin-bottom: clamp(2.5rem, 5vw, 3.75rem);
}

.contact-lux-intro__label {
    font-family: var(--font-en);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold-deep);
    margin-bottom: 0.75rem;
}

.contact-lux-intro__title {
    font-size: clamp(1.65rem, 3vw, 2.1rem);
    font-weight: 800;
    color: var(--navy-deep);
    margin-bottom: 0.85rem;
    line-height: 1.4;
    padding-block: 0.08em 0.14em;
    overflow: visible;
}

.contact-lux-intro__text {
    font-size: 1.02rem;
    color: var(--text-muted);
    line-height: 1.85;
}

.contact-lux-grid {
    display: grid;
    grid-template-columns: 1.12fr 1fr;
    gap: clamp(2rem, 4vw, 3.25rem);
    align-items: start;
}

@media (max-width: 960px) {
    .contact-lux-grid { grid-template-columns: 1fr; }
}

.contact-lux-channels { display: flex; flex-direction: column; gap: 1.5rem; }

.contact-lux-card {
    position: relative;
    padding: 2.1rem 2rem 2rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(212, 175, 55, 0.22);
    box-shadow: var(--shadow-soft), 0 0 0 1px rgba(255, 255, 255, 0.8) inset;
    overflow: hidden;
}

.contact-lux-card__accent {
    position: absolute;
    top: 0;
    inset-inline: 0;
    height: 4px;
    background: var(--gradient-gold);
    opacity: 0.95;
}

.contact-lux-card__title {
    font-size: 1.38rem;
    font-weight: 800;
    color: var(--navy-deep);
    margin-bottom: 0.35rem;
    line-height: 1.38;
    padding-block: 0.06em 0.12em;
    overflow: visible;
}

.contact-lux-card__tagline {
    font-size: 1.02rem;
    font-weight: 700;
    color: var(--gold-deep);
    margin-bottom: 1.85rem;
}

.contact-lux-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.35rem;
}

.contact-lux-list__item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-lux-list__item > div {
    flex: 1;
    min-width: 0;
    text-align: start;
}

.contact-lux-list__icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: linear-gradient(145deg, rgba(0, 26, 46, 0.06), rgba(0, 43, 69, 0.04));
    border: 1px solid rgba(0, 26, 46, 0.08);
    color: var(--navy-mid);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-lux-list__icon svg { width: 21px; height: 21px; }

.contact-lux-list__label {
    display: block;
    font-size: 0.68rem;
    font-family: var(--font-en);
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.contact-lux-list__value {
    font-weight: 600;
    font-size: 1.02rem;
    color: var(--navy-deep);
}

.contact-lux-list__value--muted { color: var(--text-muted); font-weight: 500; }

.contact-lux-note {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.75;
    padding: 1.1rem 1.25rem;
    background: rgba(255, 255, 255, 0.65);
    border-radius: var(--radius-md);
    border: 1px solid var(--mist-dark);
}

.contact-lux-note strong { color: var(--navy-mid); }

.contact-lux-form-panel {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--mist-dark);
    box-shadow: var(--shadow-lift);
    overflow: hidden;
}

.contact-lux-form-panel__head {
    padding: 1.75rem 2rem 1.25rem;
    background: linear-gradient(165deg, var(--navy-deep) 0%, #002f4d 100%);
    color: rgba(255, 255, 255, 0.92);
}

.contact-lux-form-panel__title {
    font-family: var(--font-en);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold-soft);
    margin-bottom: 0.5rem;
}

.contact-lux-form-panel__sub {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.65;
}

.contact-lux-form { padding: 2rem 2rem 2.25rem; }

.contact-lux-presence {
    margin-top: clamp(2.75rem, 6vw, 4.25rem);
}

.contact-lux-presence__frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: linear-gradient(148deg, var(--navy-deep) 0%, #030a14 52%, #061a2e 100%);
    border: 1px solid rgba(212, 175, 55, 0.22);
    box-shadow:
        0 28px 72px rgba(0, 6, 18, 0.42),
        0 2px 0 rgba(255, 255, 255, 0.04) inset;
}

.contact-lux-presence__glow {
    position: absolute;
    top: -45%;
    left: 50%;
    transform: translateX(-50%);
    width: 85%;
    height: 85%;
    background: radial-gradient(ellipse, rgba(212, 175, 55, 0.14) 0%, transparent 68%);
    pointer-events: none;
}

.contact-lux-presence__pattern {
    position: absolute;
    inset: 0;
    opacity: 0.11;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 44px 44px;
    pointer-events: none;
}

.contact-lux-presence__accent-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold-soft), transparent);
    opacity: 0.85;
    pointer-events: none;
}

.contact-lux-presence__body {
    position: relative;
    z-index: 1;
    padding: clamp(2rem, 5vw, 3.35rem);
    color: rgba(255, 255, 255, 0.88);
}

.contact-lux-presence__head {
    max-width: 46rem;
    margin-bottom: clamp(1.75rem, 4vw, 2.5rem);
}

.contact-lux-presence__eyebrow {
    font-family: var(--font-en);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold-soft);
    margin: 0 0 0.85rem;
}

.contact-lux-presence__title {
    font-size: clamp(1.35rem, 2.4vw, 1.85rem);
    font-weight: 800;
    line-height: 1.42;
    color: var(--white);
    margin: 0 0 1rem;
    letter-spacing: 0;
    padding-block: 0.08em 0.14em;
    overflow: visible;
}

.contact-lux-presence__lead {
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.68);
}

.contact-lux-presence__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1rem, 2.5vw, 1.5rem);
}

@media (max-width: 768px) {
    .contact-lux-presence__grid {
        grid-template-columns: 1fr;
    }
}

.contact-lux-presence__card {
    padding: 1.35rem 1.4rem 1.5rem;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: border-color 0.35s ease, background 0.35s ease;
}

.contact-lux-presence__card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(212, 175, 55, 0.25);
}

.contact-lux-presence__card-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    border-radius: 12px;
    color: var(--gold-soft);
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.22);
}

.contact-lux-presence__card-icon svg {
    width: 22px;
    height: 22px;
}

.contact-lux-presence__card-title {
    font-size: 1.02rem;
    font-weight: 700;
    line-height: 1.4;
    padding-block: 0.06em 0;
    color: var(--white);
    margin: 0 0 0.5rem;
    letter-spacing: 0;
}

.contact-lux-presence__card-text {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.62);
}

.form-group { margin-bottom: 1.05rem; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 700; color: var(--navy-mid); margin-bottom: 0.4rem; }
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 1px solid var(--mist-dark);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.96rem;
    background: var(--white);
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.form-submit { width: 100%; margin-top: 0.25rem; }

/* ---------- Footer ---------- */
.footer {
    background: linear-gradient(180deg, #05080e 0%, var(--ink) 38%, #020407 100%);
    color: rgba(255, 255, 255, 0.72);
    padding-block: clamp(3rem, 6vw, 4.75rem);
    border-top: 1px solid rgba(212, 175, 55, 0.14);
    box-shadow: 0 -1px 0 rgba(255, 255, 255, 0.03);
}

.footer__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) repeat(3, minmax(0, 1fr));
    gap: clamp(2rem, 4vw, 3rem);
    margin-bottom: clamp(2rem, 4vw, 2.75rem);
}

@media (max-width: 992px) {
    .footer__grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer__brand-col {
        grid-column: 1 / -1;
    }
}

@media (max-width: 560px) {
    .footer__grid {
        grid-template-columns: 1fr;
    }
}

.footer__brand-col {
    padding-inline-end: clamp(0, 3vw, 1.5rem);
}

.footer__brand-link {
    display: inline-flex;
    margin-bottom: 1.1rem;
    border-radius: 12px;
    transition: opacity 0.25s ease;
}

.footer__brand-link:hover {
    opacity: 0.92;
}

.footer__logo {
    height: 58px;
    width: auto;
    aspect-ratio: 1;
    object-fit: contain;
    filter: brightness(1.08) drop-shadow(0 4px 20px rgba(0, 0, 0, 0.35));
}

.footer__tagline {
    font-size: 0.9rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.58);
    margin: 0 0 1.25rem;
    max-width: 22rem;
}

.footer__copy {
    font-size: 0.84rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.45);
    margin: 0;
}

.footer__copy-en {
    font-family: var(--font-en);
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--gold-soft);
    letter-spacing: 0.02em;
}

.footer__heading {
    font-family: var(--font-en);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold-soft);
    margin: 0 0 1.15rem;
    opacity: 0.95;
}

.footer__nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.65rem;
}

.footer__nav a {
    font-size: 0.88rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.62);
    transition: color 0.25s ease, transform 0.25s var(--ease-out);
}

.footer__nav a:hover {
    color: var(--gold-soft);
}

.footer__list,
.footer__contact {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer__list a,
.footer__contact a {
    font-size: 0.86rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.58);
    transition: color 0.25s ease;
}

.footer__list a:hover,
.footer__contact a:hover {
    color: var(--gold-soft);
}

.footer__hours {
    font-size: 0.78rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.4);
    margin: 1rem 0 0;
    max-width: 16rem;
}

.footer__social {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.1rem;
}

.footer__social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.75);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition:
        color 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s var(--ease-out);
}

.footer__social-btn:hover {
    color: var(--gold-bright);
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.35);
    transform: translateY(-2px);
}

.footer__bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem 2rem;
    padding-top: clamp(1.5rem, 3vw, 2rem);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer__legal {
    margin: 0;
    font-size: 0.76rem;
    color: rgba(255, 255, 255, 0.38);
    max-width: 36rem;
    line-height: 1.55;
}

.footer__strap {
    margin: 0;
    font-family: var(--font-en);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    color: rgba(212, 175, 55, 0.55);
    white-space: nowrap;
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .reveal { opacity: 1; transform: translate3d(0, 0, 0); transition: none; }
    .hero__eyebrow, .hero__line, .hero__title-ar, .hero__title-en, .hero__sub, .hero__actions { animation: none; opacity: 1; transform: none; }
    .hero__parallax { transform: none !important; }
    .preloader__bar span { animation: none; }
    .feature-card--split:hover, .service-block:hover .service-block__media img { transform: none; }
    .nav__brand:hover .nav__brand-orb,
    .nav__brand:hover .nav__brand-orb .nav__logo { transform: none; }
}
