/* ═══════════════════════════════════════════
   DESIGN TOKENS
   ═══════════════════════════════════════════ */
:root {
    --navy:   #301020;
    --navy-2: #4a1629;
    --gold:   #a6aaad;
    --gold-2: #ececeb;
    --sand:   #f2f1ef;
    --paper:  #fffdfb;
    --mist:   #f6f7f9;
    --ink:    #24121b;
    --muted:  #68758a;
    --line:   rgba(16,33,61,.1);
    --shadow: 0 24px 70px rgba(48,16,32,.12);
    --radius: 8px;
    --ease:   cubic-bezier(.25,.46,.45,.94);
}

/* ═══════════════════════════════════════════
   RESET & BASE
   ═══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: "DM Sans", "Noto Kufi Arabic", Arial, sans-serif;
    background: #fff;
    color: var(--ink);
    line-height: 1.75;
    overflow-x: hidden;
}
[dir="rtl"] body { font-family: "Noto Kufi Arabic", "DM Sans", Arial, sans-serif; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.wrap { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.section { padding: 118px 0; }
section[id] { scroll-margin-top: 80px; }
.section-soft { background: var(--sand); }
.eyebrow { color: var(--gold); font-weight: 800; letter-spacing: .06em; text-transform: uppercase; font-size: .82rem; margin: 0 0 14px; }
.section-title { font-size: clamp(2.6rem, 5.5vw, 5.2rem); line-height: 1.05; font-weight: 700; margin: 0 0 22px; }
.lead { color: var(--muted); font-size: 1.1rem; max-width: 780px; }

/* ═══════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════ */
.site-header {
    position: fixed;
    inset-inline: 0;
    top: 0;
    z-index: 20;
    color: #fff;
    background: linear-gradient(to bottom, rgba(48,16,32,.82), transparent);
    transition: background 0.45s var(--ease), box-shadow 0.45s var(--ease),
                backdrop-filter 0.45s var(--ease);
}
.site-header.is-scrolled {
    background: rgba(48,16,32,.97);
    box-shadow: 0 4px 40px rgba(0,0,0,.28);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}
.nav-shell {
    min-height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; font-weight: 700; }
.brand-mark {
    width: 50px; height: 50px;
    border: 1px solid rgba(236,236,235,.72);
    display: grid; place-items: center;
    color: var(--gold-2);
    background: rgba(255,255,255,.92);
    font-size: .85rem; letter-spacing: .05em;
    transition: background 0.25s ease;
    overflow: hidden;
}

/* Simple Ads & Promotions */
.promo-strip {
    width: min(1180px, calc(100% - 40px));
    margin: 26px auto;
}
.promo-card {
    display: grid;
    grid-template-columns: minmax(220px, 36%) 1fr;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}
.promo-card img,
.promo-card video {
    width: 100%;
    height: 100%;
    min-height: 190px;
    object-fit: cover;
}
.promo-card-body {
    padding: 22px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
}
.promo-card-body h3,
.promo-card-body .promo-title {
    margin: 0;
    color: var(--navy);
    font-size: clamp(1.15rem, 2vw, 1.65rem);
}
.promo-card-body p {
    margin: 0;
    color: var(--muted);
}
.promo-popup {
    position: fixed;
    inset: 0;
    z-index: 9000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(15, 10, 18, .52);
}
.promo-popup.is-visible { display: flex; }
.promo-popup-card {
    width: min(560px, 100%);
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 24px 80px rgba(0,0,0,.28);
}
.promo-popup-card img {
    width: 100%;
    max-height: 260px;
    object-fit: cover;
}
.promo-popup-close {
    position: absolute;
    top: 10px;
    inset-inline-end: 10px;
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 8px;
    background: rgba(255,255,255,.92);
    color: var(--navy);
    font-size: 1.4rem;
    cursor: pointer;
}

@media (max-width: 720px) {
    .promo-card { grid-template-columns: 1fr; }
    .promo-card img,
    .promo-card video { min-height: 170px; }
}
.brand-mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.brand:hover .brand-mark { background: rgba(255,255,255,.12); }
.brand-text { line-height: 1.25; font-size: .96rem; }

.nav-links { display: flex; align-items: center; gap: 20px; font-weight: 600; font-size: .94rem; }
.nav-links a { opacity: .9; position: relative; }
.nav-links a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    inset-inline-start: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background: var(--gold-2);
    transition: width 0.3s var(--ease);
}
.nav-links a:not(.nav-cta):hover::after,
.nav-links a:not(.nav-cta).active::after { width: 100%; }
.nav-links a:hover { color: var(--gold-2); opacity: 1; }
.nav-links a.active { color: var(--gold-2); opacity: 1; }

.nav-cta, .btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    min-height: 46px; padding: 12px 22px;
    border-radius: 999px;
    background: var(--gold); color: #111; font-weight: 700; border: 0;
    box-shadow: 0 10px 28px rgba(166,170,173,.28);
    transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease),
                background 0.22s ease;
    cursor: pointer;
}
.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 44px rgba(166,170,173,.38);
}
.btn:active { transform: translateY(-1px); }
.btn-outline {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,.44);
    box-shadow: none;
}
.btn-outline:hover {
    background: rgba(255,255,255,.1);
    box-shadow: 0 0 0 1px rgba(255,255,255,.55);
}

.menu-toggle {
    display: none;
    background: transparent;
    border: 1px solid rgba(255,255,255,.32);
    color: #fff;
    padding: 10px 14px;
    border-radius: var(--radius);
    cursor: pointer;
    z-index: 22;
    position: relative;
    font-size: .9rem;
    font-weight: 700;
    transition: background 0.2s ease;
}
.menu-toggle:hover { background: rgba(255,255,255,.1); }

/* ═══════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════ */
.hero-premium {
    min-height: 100vh;
    color: #fff;
    display: grid;
    align-items: center;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background:
        linear-gradient(180deg, rgba(48,16,32,.52) 0%, rgba(48,16,32,.88) 100%),
        var(--hero-image, linear-gradient(135deg, #301020, #4a1629));
    background-size: 110%;
    background-position: center;
    background-repeat: no-repeat;
    animation: heroBgZoom 22s ease-in-out infinite alternate;
}
@keyframes heroBgZoom {
    from { background-size: 110%; background-position: 50% 50%; }
    to   { background-size: 122%; background-position: 53% 47%; }
}

/* Subtle radial highlight */
.hero-premium::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 60% at 50% 30%, rgba(166,170,173,.1), transparent 70%);
    pointer-events: none;
    z-index: 0;
}
/* Geometric pattern */
.hero-premium::before {
    content: none;
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin-inline: auto;
    text-align: center;
    padding: 130px 0 90px;
}
.hero-kicker {
    color: var(--gold-2);
    font-weight: 700;
    font-size: .88rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.hero-title {
    font-size: clamp(3rem, 7.5vw, 7rem);
    line-height: 1.12;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 20px 60px rgba(0,0,0,.3);
    margin: 0 0 28px;
}
.hero-copy {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    color: rgba(255,255,255,.88);
    max-width: 700px;
    margin: 0 auto;
}
.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 36px;
    justify-content: center;
}
.hero-labels {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 40px;
    justify-content: center;
}
.hero-labels span {
    border: 1px solid rgba(255,255,255,.2);
    color: rgba(255,255,255,.86);
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,.07);
    font-size: .88rem;
    backdrop-filter: blur(6px);
}

/* Scroll indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 38px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}
.scroll-line {
    display: block;
    width: 1px;
    height: 56px;
    background: linear-gradient(to bottom, rgba(255,255,255,.9), transparent);
    transform-origin: top;
    animation: scrollPulse 2.2s ease infinite;
}
@keyframes scrollPulse {
    0%   { transform: scaleY(0); opacity: 0; }
    30%  { opacity: 1; }
    70%  { transform: scaleY(1); opacity: 1; }
    100% { transform: scaleY(1); opacity: 0; }
}

/* ═══════════════════════════════════════════
   HERO AUTO-ANIMATE ON PAGE LOAD
   ═══════════════════════════════════════════ */
[data-anim="hero"] {
    animation: heroIn 0.9s var(--ease) var(--anim-delay, 0ms) both;
}
@keyframes heroIn {
    from { opacity: 0; transform: translateY(46px); }
    to   { opacity: 1; transform: none; }
}

/* ═══════════════════════════════════════════
   SCROLL-REVEAL ANIMATION SYSTEM
   ═══════════════════════════════════════════ */
[data-anim]:not([data-anim="hero"]),
.reveal {
    opacity: 0;
    transform: translateY(38px);
    transition:
        opacity 0.72s var(--ease),
        transform 0.72s var(--ease);
    transition-delay: var(--anim-delay, 0ms);
}
[data-anim="fade-left"] { transform: translateX(-60px) translateY(0); }
[data-anim="fade-right"] { transform: translateX(60px) translateY(0); }
[data-anim="scale"] { transform: scale(0.92); }
[data-anim="fade"] { transform: none; }

[data-anim].is-visible,
.reveal.is-visible {
    opacity: 1;
    transform: none;
}

/* ═══════════════════════════════════════════
   STATS BAND
   ═══════════════════════════════════════════ */
.stats-band {
    position: relative;
    background: var(--navy);
    color: #fff;
    overflow: hidden;
}
.pattern-band::after {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .06;
    background-image:
        linear-gradient(45deg, transparent 45%, #fff 46%, #fff 48%, transparent 49%),
        linear-gradient(-45deg, transparent 45%, #fff 46%, #fff 48%, transparent 49%);
    background-size: 48px 48px;
    pointer-events: none;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
    z-index: 1;
}
.stat-tile {
    padding: 40px 28px;
    border: 1px solid rgba(255,255,255,.1);
    background: rgba(255,255,255,.042);
    border-radius: 26px;
    transition: background 0.3s ease, transform 0.3s ease;
}
.stat-tile:hover {
    background: rgba(255,255,255,.07);
    transform: translateY(-4px);
}
.stat-tile strong {
    display: block;
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    color: var(--gold-2);
    line-height: 1;
    margin-bottom: 8px;
    font-weight: 700;
}
.stat-tile span { color: rgba(255,255,255,.78); font-size: .95rem; }

/* ═══════════════════════════════════════════
   SPLIT LAYOUT
   ═══════════════════════════════════════════ */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}
.image-frame {
    position: relative;
    min-height: 560px;
    overflow: hidden;
    border-radius: 28px;
    box-shadow: 0 40px 100px rgba(6,24,50,.18);
    background: var(--navy);
}
.image-frame img {
    width: 100%; height: 100%;
    object-fit: cover;
    position: absolute; inset: 0;
    transition: transform 0.6s var(--ease);
}
.image-frame:hover img { transform: scale(1.03); }
.image-frame::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(48,16,32,.4));
}
.timeline-chips {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 32px;
}
.chip {
    background: rgba(255,255,255,.72);
    border-radius: 20px;
    padding: 22px;
    box-shadow: 0 16px 44px rgba(48,16,32,.07);
    backdrop-filter: blur(8px);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.chip:hover { transform: translateY(-3px); box-shadow: 0 24px 56px rgba(48,16,32,.12); }
.chip strong { display: block; font-size: 1.9rem; font-weight: 700; color: var(--navy); line-height: 1.1; margin-bottom: 4px; }
.chip span { color: var(--muted); font-size: .9rem; }

/* ═══════════════════════════════════════════
   VISUAL GRID (SECTORS)
   ═══════════════════════════════════════════ */
.visual-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}
.visual-card {
    min-height: 360px;
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    background: var(--navy);
    color: #fff;
    box-shadow: var(--shadow);
    display: block;
    width: 100%;
    border: 0;
    padding: 0;
    text-align: inherit;
    font: inherit;
    transition: transform 0.4s var(--ease);
    cursor: pointer;
}
.visual-card:hover { transform: translateY(-6px); }
.visual-card img {
    width: 100%; height: 100%;
    object-fit: cover;
    position: absolute; inset: 0;
    transition: transform 0.6s var(--ease);
}
.visual-card:hover img { transform: scale(1.08); }
.visual-card::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(48,16,32,.08) 30%, rgba(48,16,32,.88));
    transition: background 0.4s ease;
}
.visual-card:hover::after {
    background: linear-gradient(180deg, rgba(48,16,32,.18) 20%, rgba(48,16,32,.94));
}
.visual-card-body {
    position: absolute;
    inset-inline: 26px;
    bottom: 26px;
    z-index: 1;
}
.visual-card-line {
    width: 0;
    height: 2px;
    background: var(--gold);
    margin-bottom: 16px;
    transition: width 0.5s var(--ease);
}
.visual-card:hover .visual-card-line { width: 52px; }
.visual-card h3 { margin: 0 0 8px; font-size: 1.55rem; line-height: 1.25; }
.visual-card p {
    margin: 0;
    color: rgba(255,255,255,.78);
    font-size: .92rem;
    transition: transform 0.35s var(--ease);
}
.visual-card:hover p { transform: translateY(-4px); }
.visual-card-discover {
    display: block;
    color: var(--gold-2);
    font-weight: 700;
    font-size: .88rem;
    letter-spacing: .03em;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease 0.05s, transform 0.3s ease 0.05s;
    margin-top: 12px;
}
.visual-card:hover .visual-card-discover { opacity: 1; transform: none; }

/* ═══════════════════════════════════════════
   STORY PANELS (VISION/MISSION/VALUES)
   ═══════════════════════════════════════════ */
.story-panel {
    background: #fff;
    border-radius: 28px;
    padding: 38px;
    box-shadow: 0 30px 80px rgba(48,16,32,.09);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.story-panel:hover { transform: translateY(-4px); box-shadow: 0 40px 100px rgba(48,16,32,.14); }
.story-panel h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); margin: 0 0 16px; }
.story-panel h3 { font-size: 1.25rem; margin: 0; }

/* ═══════════════════════════════════════════
   PROJECT CARDS
   ═══════════════════════════════════════════ */
.project-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 26px;
}
.project-card {
    background: #fff;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 28px 80px rgba(48,16,32,.1);
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
    cursor: pointer;
}
.project-card:hover { transform: translateY(-7px); box-shadow: 0 44px 100px rgba(48,16,32,.16); }
.project-card:focus-visible {
    outline: 3px solid rgba(236,236,235,.95);
    outline-offset: 4px;
}
.project-media {
    height: 300px;
    position: relative;
    overflow: hidden;
    background: var(--navy);
}
.project-media > img:not(.project-logo) {
    width: 100%; height: 100%;
    object-fit: contain;
    object-position: center;
    background: radial-gradient(circle at center, rgba(255,255,255,.07), rgba(48,16,32,.96));
    transition: transform 0.5s var(--ease);
}
.project-card:hover .project-media > img:not(.project-logo) { transform: scale(1.04); }
.project-logo {
    position: absolute;
    inset-inline-start: 18px;
    bottom: 18px;
    width: 68px; height: 68px;
    object-fit: contain;
    background: rgba(255,255,255,.94);
    padding: 8px;
    border-radius: var(--radius);
}
.project-body { padding: 28px; }
.sector-pill {
    display: inline-flex;
    background: rgba(166,170,173,.14);
    color: var(--navy);
    padding: 5px 12px;
    border-radius: 999px;
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .03em;
}
.project-body h3, .project-body h2 { margin: 12px 0 10px; line-height: 1.25; }
.project-body p { color: var(--muted); margin: 0 0 20px; line-height: 1.65; }
.activity-grid {
    margin-top: 32px;
}

/* ═══════════════════════════════════════════
   FOUNDER SECTION
   ═══════════════════════════════════════════ */
.founder-story { }
.founder-line {
    width: 64px;
    height: 2px;
    background: linear-gradient(to right, var(--gold), transparent);
    margin: 26px 0;
}
[dir="rtl"] .founder-line { background: linear-gradient(to left, var(--gold), transparent); }
.founder-quote { font-style: italic; font-size: 1.12rem; }
.founder-frame { min-height: 560px; }

/* ═══════════════════════════════════════════
   GALLERY
   ═══════════════════════════════════════════ */
.gallery-masonry {
    columns: 3 260px;
    column-gap: 18px;
}
.gallery-item {
    break-inside: avoid;
    margin: 0 0 18px;
    background: var(--navy);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(48,16,32,.1);
    position: relative;
}
.gallery-trigger {
    display: block;
    border: none;
    padding: 0;
    background: none;
    cursor: pointer;
    width: 100%;
    position: relative;
    overflow: hidden;
}
.gallery-trigger img {
    width: 100%;
    height: auto;
    object-fit: contain;
    background: var(--navy);
    display: block;
    transition: transform 0.5s var(--ease);
}
.gallery-trigger:hover img { transform: scale(1.07); }
.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(48,16,32,.86));
    opacity: 0;
    transition: opacity 0.35s ease;
    display: flex;
    align-items: flex-end;
    padding: 18px;
    pointer-events: none;
}
.gallery-item-overlay span { color: #fff; font-weight: 700; font-size: .92rem; }
.gallery-trigger:hover .gallery-item-overlay { opacity: 1; }
.gallery-item figcaption {
    padding: 12px 16px;
    color: rgba(255,255,255,.7);
    font-size: .85rem;
}

/* ═══════════════════════════════════════════
   LIGHTBOX
   ═══════════════════════════════════════════ */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 100;
    background: rgba(4,10,24,.93);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.38s ease, visibility 0.38s ease;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox-inner {
    max-width: 88vw;
    max-height: 88vh;
    position: relative;
    transform: scale(0.93);
    transition: transform 0.38s var(--ease);
    text-align: center;
}
.lightbox.is-open .lightbox-inner { transform: none; }
.lightbox-inner img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 16px;
    box-shadow: 0 50px 130px rgba(0,0,0,.65);
}
.lightbox-caption {
    color: rgba(255,255,255,.76);
    margin-top: 18px;
    font-size: .94rem;
    text-align: center;
}
.lightbox-close {
    position: fixed;
    top: 22px;
    inset-inline-end: 22px;
    width: 50px; height: 50px;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.2);
    color: #fff;
    border-radius: 999px;
    display: grid;
    place-items: center;
    cursor: pointer;
    font-size: 1.35rem;
    line-height: 1;
    transition: background 0.22s ease;
    z-index: 101;
}
.lightbox-close:hover { background: rgba(255,255,255,.22); }

/* ═══════════════════════════════════════════
   CONTACT SECTION
   ═══════════════════════════════════════════ */
.contact-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 28px;
}
.contact-panel, .form-panel {
    background: #fff;
    border-radius: 28px;
    padding: 40px;
    box-shadow: 0 30px 80px rgba(48,16,32,.09);
}
.contact-panel h2 { margin: 0 0 18px; }
.contact-panel p { margin: 0 0 10px; }
.contact-panel a { color: var(--gold); font-weight: 600; }
.social-link { font-weight: 700; }

.form-field { margin-bottom: 2px; }
.hp-field {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    pointer-events: none !important;
}
label { display: block; margin: 16px 0 6px; font-weight: 700; font-size: .9rem; color: var(--ink); }
input, textarea, select {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid var(--line);
    border-radius: 12px;
    font: inherit;
    background: var(--mist);
    color: var(--ink);
    transition: border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}
input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: var(--gold);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(166,170,173,.16);
}

.form-success {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(37,211,102,.1);
    border: 1px solid rgba(37,211,102,.3);
    border-radius: 12px;
    padding: 18px 20px;
    color: #0f7a3a;
    margin-bottom: 22px;
}
.form-success svg { flex-shrink: 0; }

.whatsapp-btn {
    background: #25d366;
    color: #fff;
    margin-top: 20px;
}
.whatsapp-btn:hover {
    background: #1ebe5d;
    box-shadow: 0 14px 38px rgba(37,211,102,.42);
}

/* ═══════════════════════════════════════════
   CTA BAND
   ═══════════════════════════════════════════ */
.cta-band {
    background: var(--navy);
    color: #fff;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    position: relative;
    z-index: 1;
}
.cta-inner h2 { font-size: clamp(1.8rem, 4vw, 3.2rem); margin: 0; line-height: 1.15; }

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.site-footer {
    background:
        linear-gradient(135deg, #210913 0%, #3a1022 52%, #6f7578 130%);
    color: #fff;
    padding: 0;
    position: relative;
    overflow: hidden;
}
.site-footer .wrap {
    position: relative;
    z-index: 1;
}
.footer-shell {
    padding: 58px 0 42px;
}
.footer-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-bottom: 34px;
    margin-bottom: 34px;
    border-bottom: 1px solid rgba(255,255,255,.16);
}
.footer-cta h2 {
    max-width: 760px;
    margin: 0;
    font-size: clamp(2rem, 4.5vw, 4.2rem);
    line-height: 1.08;
}
.footer-cta .btn {
    flex: 0 0 auto;
}
.footer-grid {
    display: grid;
    grid-template-columns: minmax(280px, .95fr) minmax(320px, 1.05fr);
    gap: clamp(28px, 6vw, 72px);
    align-items: start;
}
.footer-brand {
    max-width: 580px;
}
.footer-logo {
    width: 118px;
    height: 118px;
    object-fit: contain;
    margin-bottom: 16px;
    background: #fff;
}
.footer-grid h3 { margin: 0 0 12px; }
.footer-brand h3 {
    font-size: 1.35rem;
}
.footer-grid p {
    margin: 0 0 8px;
    color: rgba(255,255,255,.72);
    font-size: .95rem;
}
.footer-nav {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 22px;
}
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 9px;
}
.footer-links h3 {
    color: #fff;
    font-size: 1rem;
}
.footer-links a { color: rgba(255,255,255,.68); font-size: .92rem; transition: color 0.2s ease; }
.footer-links a:hover { color: var(--gold-2); }

/* ═══════════════════════════════════════════
   SCROLL TO TOP
   ═══════════════════════════════════════════ */
.scroll-top {
    position: fixed;
    inset-inline-end: 28px;
    bottom: 28px;
    width: 50px; height: 50px;
    background: var(--navy);
    color: #fff;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 999px;
    display: grid;
    place-items: center;
    cursor: pointer;
    z-index: 50;
    opacity: 0;
    transform: translateY(16px);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease, background 0.22s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,.25);
}
.scroll-top.is-visible { opacity: 1; transform: none; pointer-events: auto; }
.scroll-top:hover { background: var(--gold); border-color: var(--gold); }

/* ═══════════════════════════════════════════
   DETAIL / INNER PAGES
   ═══════════════════════════════════════════ */
.page-hero {
    padding: 120px 0 72px;
    background: linear-gradient(100deg, rgba(48,16,32,.95), rgba(74,22,41,.82)), var(--hero-image, linear-gradient(135deg,#301020,#4a1629));
    background-size: cover; background-position: center;
    color: #fff;
}
.page-hero h1 { font-size: clamp(2.4rem, 5vw, 4.6rem); margin: 0 0 16px; line-height: 1.1; }
.filters { display: flex; flex-wrap: wrap; gap: 10px; margin: 28px 0 34px; }
.filter-tab { border: 1px solid var(--line); background: #fff; padding: 10px 16px; border-radius: 999px; color: var(--ink); font-weight: 700; transition: background 0.2s ease, color 0.2s ease; }
.filter-tab:hover, .filter-tab.active { background: var(--navy); color: #fff; }

.detail-hero { background: #fff; padding: 36px 0 72px; }
.news-detail-panel {
    max-width: 900px;
    margin: 28px auto 0;
}
.article-back-link {
    display: flex;
    align-items: center;
    width: fit-content;
    margin: 0 0 18px;
    color: var(--navy);
    font-size: .92rem;
    font-weight: 800;
    line-height: 1.4;
    text-decoration: none;
    transition: color .2s ease, transform .2s ease;
}
.article-back-link:hover {
    color: var(--gold);
}
html[dir="rtl"] .article-back-link:hover {
    transform: translateX(-4px);
}
html[dir="rtl"] .article-back-link {
    margin-inline-start: 0;
    margin-inline-end: auto;
    text-align: right;
}
html[dir="ltr"] .article-back-link:hover {
    transform: translateX(4px);
}
html[dir="ltr"] .article-back-link {
    margin-inline-start: 0;
    margin-inline-end: auto;
    text-align: left;
}
.news-detail-actions {
    margin-top: 24px;
}
.detail-banner {
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: 28px;
    box-shadow: var(--shadow);
    background: var(--navy);
}
.detail-banner img { width: 100%; height: 100%; object-fit: contain; background: var(--navy); }
.detail-layout { display: grid; grid-template-columns: 1.4fr .6fr; gap: 34px; align-items: start; margin-top: 34px; }
.fact-panel { background: var(--navy); color: #fff; padding: 28px; border-radius: 28px; position: sticky; top: 100px; }
.fact-panel img { max-width: 120px; background: #fff; padding: 10px; border-radius: var(--radius); margin-bottom: 18px; }
.fact { border-top: 1px solid rgba(255,255,255,.12); padding: 14px 0; }

.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 18px; }
.gallery-grid figure { margin: 0; background: var(--navy); border-radius: 28px; overflow: hidden; }
.gallery-grid img { width: 100%; max-height: 520px; object-fit: contain; background: var(--navy); }
.gallery-grid figcaption { padding: 12px 16px; color: rgba(255,255,255,.65); font-size: .87rem; }

.project-panel {
    position: fixed; inset: 0; z-index: 50;
    opacity: 0; visibility: hidden; pointer-events: none;
    background: rgba(48,16,32,.72);
    transition: opacity .28s ease, visibility .28s ease;
}
.project-panel:target { opacity: 1; visibility: visible; pointer-events: auto; }
.project-panel-dialog {
    position: absolute;
    inset-block: 20px; inset-inline-end: 20px;
    width: min(760px, calc(100% - 40px));
    overflow: auto;
    background: #fff;
    border-radius: 28px;
    box-shadow: 0 30px 90px rgba(0,0,0,.34);
}
[dir="rtl"] .project-panel-dialog { inset-inline-end: auto; inset-inline-start: 20px; }
.project-panel-cover { height: 290px; background: var(--navy); }
.project-panel-cover img { width: 100%; height: 100%; object-fit: cover; }
.project-panel-body { padding: 28px; }
.panel-close { position: sticky; top: 0; float: inline-end; z-index: 2; margin: 14px; background: var(--navy); color: #fff; border-radius: 999px; padding: 8px 14px; cursor: pointer; border: none; }

/* ═══════════════════════════════════════════
   PREFERS-REDUCED-MOTION
   ═══════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        transition-delay: 0ms !important;
    }
    [data-anim], .reveal {
        opacity: 1 !important;
        transform: none !important;
    }
    .hero-premium { animation: none !important; background-size: cover !important; }
    .scroll-line { animation: none !important; }
}

/* ═══════════════════════════════════════════
   RESPONSIVE — TABLET & MOBILE
   ═══════════════════════════════════════════ */
@media (max-width: 900px) {
    .wrap { width: min(100% - 28px, 1180px); }

    /* Sticky header on mobile */
    .site-header {
        position: sticky;
        background: rgba(48,16,32,.96);
    }
    .site-header.is-scrolled {
        background: rgba(48,16,32,.99);
    }

    /* Full-screen mobile menu */
    .menu-toggle { display: inline-flex; }
    .nav-links {
        display: flex !important;
        flex-direction: column;
        position: fixed;
        inset: 0;
        background: rgba(48,16,32,.98);
        padding: 100px 32px 48px;
        justify-content: flex-start;
        align-items: stretch;
        gap: 0;
        z-index: 19;
        opacity: 0;
        transform: translateX(100%);
        pointer-events: none;
        transition: opacity 0.38s var(--ease), transform 0.38s var(--ease);
    }
    [dir="rtl"] .nav-links { transform: translateX(-100%); }
    .nav-links.is-open {
        opacity: 1;
        transform: none;
        pointer-events: auto;
    }
    .nav-links a {
        padding: 18px 0;
        border-bottom: 1px solid rgba(255,255,255,.08);
        font-size: 1.15rem;
        opacity: 1;
    }
    .nav-links a:not(.nav-cta)::after { display: none; }
    .nav-cta { margin-top: 20px; text-align: center; justify-content: center; }

    /* Hero */
    .hero-premium {
        min-height: 100vh;
        animation: none;
        background-size: cover;
    }
    .hero-content { padding: 110px 0 80px; text-align: center; }
    .hero-title { font-size: clamp(2.2rem, 10vw, 3.2rem); overflow-wrap: anywhere; }
    .hero-copy { font-size: 1rem; }
    .hero-labels { justify-content: center; }
    .hero-labels span { font-size: .82rem; }
    .hero-scroll-indicator { display: none; }
    .hero-actions .btn { min-width: 160px; }

    /* Layouts */
    .split, .detail-layout, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
    .stats-grid, .visual-grid, .project-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-masonry { columns: 2 180px; }

    /* Spacing */
    .section { padding: 76px 0; }
    .image-frame { min-height: 380px; }
    .founder-frame { min-height: 380px; }
    .visual-card, .project-media { height: 320px; min-height: 320px; }
    .timeline-chips { grid-template-columns: 1fr; }
    .cta-inner { flex-direction: column; align-items: stretch; }

    /* Text */
    .brand-text { max-width: 200px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    .section-title { font-size: clamp(2.2rem, 8vw, 3.4rem); }

    /* Sidebar panels */
    .fact-panel { position: static; }
    .scroll-top { inset-inline-end: 18px; bottom: 18px; }

    /* Reduce lateral anims to vertical on mobile */
    [data-anim="fade-left"],
    [data-anim="fade-right"] {
        transform: translateY(38px);
    }
    [data-anim="fade-left"].is-visible,
    [data-anim="fade-right"].is-visible {
        transform: none;
    }
}

@media (max-width: 480px) {
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; }
    .gallery-masonry { columns: 1; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ═══════════════════════════════════════════
   HERO — GOLD PATTERN OVERLAY
   ═══════════════════════════════════════════ */
.hero-gold-line {
    position: absolute;
    inset-inline-start: 0;
    bottom: 0;
    height: 2px;
    width: 0;
    background: linear-gradient(to right, transparent 0%, var(--gold) 30%, var(--gold-2) 70%, transparent 100%);
    animation: goldLineSweep 1.4s var(--ease) 1.6s forwards;
    z-index: 3;
}
[dir="rtl"] .hero-gold-line {
    background: linear-gradient(to left, transparent 0%, var(--gold) 30%, var(--gold-2) 70%, transparent 100%);
}
@keyframes goldLineSweep {
    to { width: 100%; }
}

/* Omani geometric SVG pattern canvas */
.hero-pattern {
    display: none;
}
@keyframes patternDrift {
    from { background-position: 0 0; }
    to   { background-position: 40px 40px; }
}

/* Hero video */
.hero-video {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: -1;
    pointer-events: none;
}
.hero-premium.has-video {
    animation: none !important;
    background-image: linear-gradient(180deg, rgba(48,16,32,.5) 0%, rgba(48,16,32,.85) 100%) !important;
}

/* ═══════════════════════════════════════════
   PROJECT CAROUSEL
   ═══════════════════════════════════════════ */
.project-carousel-wrap {
    position: relative;
    margin: 32px -20px 0;
}
.project-carousel {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 12px 20px 32px;
    cursor: grab;
    user-select: none;
}
.project-carousel::-webkit-scrollbar { display: none; }
.project-carousel.is-dragging { cursor: grabbing; scroll-behavior: auto; }
.project-carousel .project-card {
    flex: 0 0 min(400px, 82vw);
    scroll-snap-align: start;
    margin: 0;
    /* override the grid 3-col sizing */
}
.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    margin-top: 4px;
}
.carousel-dots {
    display: flex;
    gap: 8px;
    align-items: center;
}
.carousel-dot {
    width: 8px; height: 8px;
    border-radius: 999px;
    background: var(--line);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: width 0.3s ease, background 0.3s ease;
}
.carousel-dot.active {
    width: 24px;
    background: var(--gold);
}
.carousel-arrows {
    display: flex;
    gap: 10px;
}
.carousel-arrow {
    width: 46px; height: 46px;
    border-radius: 999px;
    border: 1.5px solid var(--line);
    background: #fff;
    color: var(--navy);
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: background 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
    box-shadow: 0 4px 16px rgba(48,16,32,.08);
}
.carousel-arrow:hover {
    background: var(--navy);
    color: #fff;
    border-color: var(--navy);
    transform: scale(1.06);
}
.carousel-arrow:disabled { opacity: .35; pointer-events: none; }

/* ═══════════════════════════════════════════
   PROJECT SIDE PANEL / MODAL
   ═══════════════════════════════════════════ */
.proj-panel-backdrop {
    position: fixed;
    inset: 0;
    z-index: 60;
    background: rgba(4,10,24,.72);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.38s ease, visibility 0.38s ease;
}
.proj-panel-backdrop.is-open {
    opacity: 1;
    visibility: visible;
}
.proj-panel-drawer {
    position: fixed;
    top: 0; bottom: 0;
    inset-inline-end: 0;
    width: min(720px, 96vw);
    background: #fff;
    z-index: 61;
    overflow-y: auto;
    overscroll-behavior: contain;
    transform: translateX(110%);
    transition: transform 0.42s cubic-bezier(.32,.72,0,1);
    box-shadow: -40px 0 100px rgba(0,0,0,.22);
}
[dir="rtl"] .proj-panel-drawer {
    inset-inline-end: auto;
    inset-inline-start: 0;
    transform: translateX(-110%);
    box-shadow: 40px 0 100px rgba(0,0,0,.22);
}
.proj-panel-backdrop.is-open .proj-panel-drawer {
    transform: none;
}
.proj-panel-cover {
    height: 300px;
    background: var(--navy);
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}
.proj-panel-cover img {
    width: 100%; height: 100%;
    object-fit: contain;
    background: radial-gradient(circle at center, rgba(255,255,255,.07), rgba(48,16,32,.97));
}
.proj-panel-logo {
    position: absolute;
    bottom: 20px;
    inset-inline-start: 24px;
    width: 80px; height: 80px;
    object-fit: contain;
    background: rgba(255,255,255,.96);
    padding: 10px;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0,0,0,.2);
}
.proj-panel-close {
    position: sticky;
    top: 0;
    float: inline-end;
    z-index: 2;
    margin: 16px;
    width: 42px; height: 42px;
    background: rgba(48,16,32,.08);
    border: none;
    border-radius: 999px;
    display: grid;
    place-items: center;
    cursor: pointer;
    font-size: 1.1rem;
    color: var(--navy);
    transition: background 0.2s ease;
    clear: both;
}
.proj-panel-close:hover { background: rgba(48,16,32,.16); }
.proj-panel-body {
    padding: 28px 32px 48px;
    clear: both;
}
.proj-panel-body .eyebrow { margin-bottom: 8px; }
.proj-panel-body h2 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    margin: 0 0 16px;
    line-height: 1.15;
}
.proj-panel-body .lead { margin-bottom: 28px; }
.proj-panel-facts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 24px 0;
}
.proj-panel-fact {
    background: var(--mist);
    border-radius: 14px;
    padding: 16px 18px;
}
.proj-panel-fact strong {
    display: block;
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--gold);
    margin-bottom: 4px;
}
.proj-panel-fact span { color: var(--ink); font-weight: 600; }
.proj-panel-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 12px 0 24px;
}
.proj-panel-chip {
    background: rgba(166,170,173,.12);
    color: var(--navy);
    padding: 6px 14px;
    border-radius: 999px;
    font-size: .85rem;
    font-weight: 700;
}
.proj-panel-detail-list {
    display: grid;
    gap: 14px;
    margin: 12px 0 24px;
}
.proj-panel-detail {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255,255,255,.72);
    padding: 20px;
}
.proj-panel-detail-label {
    color: var(--gold);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .06em;
    margin: 0 0 8px;
    text-transform: uppercase;
}
.proj-panel-detail h3 {
    font-size: 1.16rem;
    line-height: 1.45;
    margin: 0 0 10px;
}
.proj-panel-detail p {
    color: var(--muted);
    margin: 0;
}
.proj-panel-detail ul {
    margin: 12px 0 0;
    padding-inline-start: 22px;
    color: var(--muted);
}
.proj-panel-detail li + li {
    margin-top: 7px;
}
.proj-panel-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin: 14px 0 28px;
}
.proj-panel-gallery-item {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 12px;
    background: var(--navy);
    cursor: pointer;
}
.proj-panel-gallery-item img {
    width: 100%; height: 100%;
    object-fit: contain;
    background: var(--navy);
    transition: transform 0.4s ease;
}
.proj-panel-gallery-item:hover img { transform: scale(1.07); }
.proj-panel-branches {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 12px 0 24px;
}
.proj-panel-branch {
    background: var(--mist);
    border-radius: 14px;
    padding: 14px 18px;
}
.proj-panel-branch strong { display: block; margin-bottom: 4px; }
.proj-panel-branch small { color: var(--muted); font-size: .88rem; }
.proj-panel-social {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 12px 0 28px;
}
.proj-panel-social a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border: 1.5px solid var(--line);
    border-radius: 999px;
    font-size: .88rem;
    font-weight: 700;
    transition: border-color 0.2s ease, color 0.2s ease;
}
.proj-panel-social a:hover { border-color: var(--gold); color: var(--gold); }
.proj-panel-divider {
    height: 1px;
    background: var(--line);
    margin: 24px 0;
}
.proj-panel-section-title {
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--muted);
    margin: 0 0 14px;
}
.proj-panel-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 300px;
    color: var(--muted);
}
.proj-panel-spinner {
    width: 36px; height: 36px;
    border: 3px solid var(--line);
    border-top-color: var(--gold);
    border-radius: 999px;
    animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ═══════════════════════════════════════════
   LIGHTBOX — ARROWS
   ═══════════════════════════════════════════ */
.lightbox-arrow {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 52px; height: 52px;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 999px;
    color: #fff;
    display: grid;
    place-items: center;
    cursor: pointer;
    z-index: 102;
    transition: background 0.22s ease;
    font-size: 1.2rem;
}
.lightbox-arrow:hover { background: rgba(255,255,255,.22); }
.lightbox-arrow-prev { inset-inline-start: 20px; }
.lightbox-arrow-next { inset-inline-end: 20px; }
.lightbox-counter {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,.6);
    font-size: .85rem;
    z-index: 102;
    letter-spacing: .06em;
}

/* ═══════════════════════════════════════════
   WHATSAPP PULSE
   ═══════════════════════════════════════════ */
@keyframes waPulse {
    0%   { box-shadow: 0 0 0 0 rgba(37,211,102,.55), 0 14px 38px rgba(37,211,102,.3); }
    60%  { box-shadow: 0 0 0 14px rgba(37,211,102,0), 0 14px 38px rgba(37,211,102,.3); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0), 0 14px 38px rgba(37,211,102,.3); }
}
.whatsapp-btn {
    animation: waPulse 2.4s ease infinite;
}
.whatsapp-btn:hover { animation: none; }

/* ═══════════════════════════════════════════
   CONTACT — FORM FIELD STAGGER
   ═══════════════════════════════════════════ */
.form-panel .form-field {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.form-panel.fields-revealed .form-field { opacity: 1; transform: none; }
.form-panel.fields-revealed .form-field:nth-child(1) { transition-delay: 0.05s; }
.form-panel.fields-revealed .form-field:nth-child(2) { transition-delay: 0.12s; }
.form-panel.fields-revealed .form-field:nth-child(3) { transition-delay: 0.19s; }
.form-panel.fields-revealed .form-field:nth-child(4) { transition-delay: 0.26s; }
.form-panel.fields-revealed .form-field:nth-child(5) { transition-delay: 0.33s; }
.form-panel.fields-revealed .form-field:nth-child(6) { transition-delay: 0.40s; }
.form-panel.fields-revealed .form-field:nth-child(7) { transition-delay: 0.47s; }
.form-panel.fields-revealed .form-field + button { transition-delay: 0.55s; }

/* Submit button also fades in */
.form-panel > form > button[type=submit],
.form-panel > form > .btn {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.5s var(--ease) 0.55s, transform 0.5s var(--ease) 0.55s,
                box-shadow 0.22s ease, background 0.22s ease;
}
.form-panel.fields-revealed > form > button[type=submit],
.form-panel.fields-revealed > form > .btn {
    opacity: 1;
    transform: none;
}

/* Contact form success animation */
.form-success {
    animation: successPop 0.5s var(--ease) both;
}
@keyframes successPop {
    from { opacity: 0; transform: scale(0.9) translateY(-8px); }
    to   { opacity: 1; transform: none; }
}

/* ═══════════════════════════════════════════
   MOBILE CAROUSEL ADJUSTMENTS
   ═══════════════════════════════════════════ */
@media (max-width: 900px) {
    .proj-panel-drawer { width: 100%; }
    .proj-panel-body { padding: 20px 22px 40px; }
    .proj-panel-facts { grid-template-columns: 1fr; }
    .proj-panel-gallery { grid-template-columns: repeat(2, 1fr); }
    .project-carousel-wrap { margin: 24px -14px 0; }
    .project-carousel { padding: 8px 14px 28px; gap: 16px; }
    .project-carousel .project-card { flex: 0 0 min(320px, 88vw); }
    .carousel-controls { padding: 0 14px; }
    .lightbox-arrow { width: 44px; height: 44px; }
}

@media (prefers-reduced-motion: reduce) {
    .whatsapp-btn { animation: none !important; }
    .proj-panel-drawer { transition: none !important; }
    .proj-panel-backdrop { transition: none !important; }
    .form-panel .form-field { transition: none !important; opacity: 1 !important; transform: none !important; }
    .hero-gold-line { animation: none !important; width: 100% !important; }
    .hero-pattern { animation: none !important; }
    .proj-panel-spinner { animation: spin 0.8s linear infinite; }
}

/* Premium refinement layer */
:root {
    --navy: #301020;
    --navy-2: #4a1629;
    --gold: #a6aaad;
    --gold-2: #ececeb;
    --copper: #6f2337;
    --teal: #6f7578;
    --sand: #f2f1ef;
    --paper: #fffdf8;
    --mist: #f4f6f8;
    --ink: #24121b;
    --muted: #657184;
    --line: rgba(11, 27, 50, .11);
    --shadow: 0 18px 48px rgba(48, 16, 32, .10);
    --shadow-strong: 0 28px 78px rgba(48, 16, 32, .16);
    --radius: 8px;
}

body {
    background:
        linear-gradient(180deg, #fff 0%, #fbfbf8 42%, #fff 100%);
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}
html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

:focus-visible {
    outline: 3px solid rgba(236, 236, 235, .95);
    outline-offset: 4px;
}

.skip-link {
    position: fixed;
    inset-inline-start: 18px;
    top: 14px;
    z-index: 200;
    transform: translateY(-140%);
    background: #fff;
    color: var(--navy);
    padding: 10px 14px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-strong);
    font-weight: 800;
    transition: transform .22s ease;
}
.skip-link:focus { transform: none; }

.wrap { width: min(1220px, calc(100% - 48px)); }
.section { padding: 108px 0; }
.section-soft {
    background:
        linear-gradient(180deg, rgba(247,243,235,.88), rgba(255,255,255,.96));
}
.eyebrow {
    color: var(--copper);
    letter-spacing: .08em;
    font-size: .78rem;
}
.section-title {
    max-width: 980px;
    font-size: clamp(2.1rem, 4.4vw, 4.35rem);
    line-height: 1.08;
}
.lead {
    font-size: clamp(1rem, 1.4vw, 1.16rem);
    line-height: 1.85;
}

.site-header {
    background: linear-gradient(to bottom, rgba(48, 16, 32, .82), rgba(48, 16, 32, .06));
}
.site-header.is-scrolled {
    background: rgba(48, 16, 32, .92);
    border-bottom: 1px solid rgba(255,255,255,.1);
    box-shadow: 0 16px 48px rgba(0,0,0,.22);
}
.nav-shell { min-height: 80px; }
.brand-mark {
    border-radius: 6px;
    background: #fff;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.18), 0 8px 22px rgba(0,0,0,.18);
}
.brand-text {
    max-width: 300px;
    font-weight: 800;
}
.nav-links {
    gap: clamp(12px, 1.4vw, 22px);
    font-size: .9rem;
}
.nav-links a:not(.nav-cta) {
    padding: 8px 0;
}
.nav-links a:not(.nav-cta)::after {
    bottom: 2px;
    height: 1px;
}

.nav-cta,
.btn {
    border-radius: 8px;
    min-height: 48px;
    padding: 12px 20px;
    background: linear-gradient(135deg, var(--gold), var(--gold-2));
    color: #171308;
    box-shadow: 0 13px 30px rgba(166, 170, 173, .25);
}
.nav-cta:hover,
.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 42px rgba(166, 170, 173, .32);
}
.btn-outline {
    background: rgba(255,255,255,.08);
    color: #fff;
    border: 1px solid rgba(255,255,255,.34);
    box-shadow: none;
}
.btn-outline:hover {
    background: rgba(255,255,255,.14);
}

.menu-toggle {
    width: 46px;
    height: 42px;
    padding: 0;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}
.menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
    transition: transform .25s ease, opacity .25s ease;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero-premium {
    min-height: 92vh;
    background:
        linear-gradient(90deg, rgba(96, 42, 58, .74) 0%, rgba(122, 67, 80, .58) 46%, rgba(82, 38, 50, .72) 100%),
        var(--hero-image, linear-gradient(135deg, #301020, #4a1629));
    background-size: cover;
}
.hero-premium::before {
    content: none;
}
.hero-premium::after {
    background:
        linear-gradient(180deg, rgba(86,42,56,.22), rgba(86,42,56,.34)),
        radial-gradient(ellipse 70% 42% at 50% 28%, rgba(236,236,235,.14), transparent 70%);
}
.hero-content {
    max-width: 980px;
    padding: 150px 0 108px;
    width: 100%;
}
.hero-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    border: 1px solid rgba(236,236,235,.34);
    border-radius: 8px;
    background: rgba(255,255,255,.08);
    color: var(--gold-2);
    backdrop-filter: blur(10px);
}
.hero-title {
    font-size: clamp(2.8rem, 6.8vw, 6.6rem);
    text-wrap: balance;
    overflow-wrap: normal;
    line-height: 1.14;
}
.hero-copy {
    max-width: 760px;
    line-height: 1.85;
}
.hero-labels span {
    border-radius: 8px;
    border-color: rgba(255,255,255,.18);
}

.stats-band {
    background:
        linear-gradient(135deg, #301020, #441426 58%, #6f7578);
}
.stats-grid { gap: 16px; }
.stat-tile,
.story-panel,
.chip,
.project-card,
.gallery-item,
.contact-panel,
.form-panel {
    border-radius: 8px;
    border: 1px solid rgba(11, 27, 50, .08);
    box-shadow: var(--shadow);
}
.stat-tile {
    padding: 34px 26px;
    background: rgba(255,255,255,.065);
    border-color: rgba(255,255,255,.12);
}
.stat-tile strong { color: var(--gold-2); }

.split { gap: clamp(34px, 5vw, 70px); }
.image-frame,
.visual-card {
    border-radius: 8px;
    box-shadow: var(--shadow-strong);
}
.image-frame::after,
.visual-card::after {
    background: linear-gradient(180deg, rgba(48,16,32,.06) 28%, rgba(48,16,32,.82));
}
.timeline-chips { gap: 12px; }
.chip {
    padding: 20px;
    background: rgba(255,255,255,.86);
}
.chip strong {
    color: var(--teal);
}
.visual-grid { gap: 18px; }
.visual-card {
    min-height: 340px;
}
.visual-card:hover,
.project-card:hover,
.story-panel:hover,
.chip:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-strong);
}

.project-carousel-wrap { margin-top: 28px; }
.activity-grid { margin-top: 28px; }
.project-card {
    display: flex;
    flex-direction: column;
    background: var(--paper);
}
.project-media {
    height: 280px;
    background: linear-gradient(135deg, #301020, #4a1629);
}
.project-media > img:not(.project-logo) {
    background:
        radial-gradient(circle at 50% 35%, rgba(255,255,255,.12), transparent 42%),
        linear-gradient(135deg, #301020, #4a1629);
}
.project-logo {
    width: 62px;
    height: 62px;
    border-radius: 8px;
    box-shadow: 0 14px 34px rgba(0,0,0,.18);
}
.project-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 24px;
}
.sector-pill,
.proj-panel-chip {
    border-radius: 8px;
    background: rgba(166, 170, 173, .18);
    color: var(--teal);
}
.project-body h3,
.project-body h2 {
    font-size: 1.3rem;
}
.project-body p {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.project-body .btn {
    margin-top: auto;
}
.carousel-arrow {
    border-radius: 8px;
}

.gallery-masonry {
    columns: 3 280px;
    column-gap: 16px;
}
.gallery-item {
    background: #2a0d1b;
}
.gallery-trigger:hover img { transform: scale(1.035); }
.gallery-item-overlay {
    opacity: 1;
    background: linear-gradient(180deg, transparent 56%, rgba(48,16,32,.78));
}
.gallery-item figcaption {
    background: rgba(255,255,255,.03);
}

.contact-grid {
    grid-template-columns: .9fr 1.1fr;
    gap: 22px;
}
.contact-panel,
.form-panel {
    padding: clamp(26px, 4vw, 40px);
    background: rgba(255,255,255,.92);
}
input,
textarea,
select {
    border-radius: 8px;
    background: #fff;
}
input:hover,
textarea:hover,
select:hover {
    border-color: rgba(111,35,55,.35);
}

.cta-band {
    background:
        linear-gradient(135deg, #301020 0%, #4a1629 58%, #6f7578 120%);
}
.cta-inner h2 { max-width: 760px; }
footer {
    background: #210913;
    border-top: 1px solid rgba(255,255,255,.08);
}

.scroll-top,
.lightbox-close,
.lightbox-arrow,
.proj-panel-close {
    border-radius: 8px;
}
.proj-panel-drawer {
    background: var(--paper);
}
.proj-panel-cover {
    height: 280px;
    background: linear-gradient(135deg, #301020, #4a1629);
}
.proj-panel-logo,
.proj-panel-gallery-item,
.proj-panel-fact,
.proj-panel-branch {
    border-radius: 8px;
}

@media (max-width: 1020px) {
    .nav-links {
        background:
            linear-gradient(135deg, rgba(48,16,32,.98), rgba(74,22,41,.98));
    }
}

@media (max-width: 900px) {
    .wrap { width: min(100% - 28px, 1220px); }
    .section { padding: 72px 0; }
    .nav-shell {
        min-height: 68px;
        gap: 10px;
    }
    .brand {
        min-width: 0;
        gap: 8px;
    }
    .brand-mark {
        width: 38px;
        height: 38px;
        flex: 0 0 38px;
        font-size: .76rem;
    }
    .brand-text {
        max-width: min(48vw, 190px);
        font-size: .84rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .hero-premium { min-height: calc(100vh - 68px); }
    .hero-content {
        max-width: 100%;
        width: 100%;
        overflow: hidden;
        padding: 90px 0 74px;
    }
    .hero-kicker { font-size: .72rem; }
    .hero-title {
        max-width: 100%;
        font-size: clamp(2rem, 9.2vw, 3rem);
        line-height: 1.12;
        overflow-wrap: break-word;
    }
    .hero-copy {
        font-size: .98rem;
        line-height: 1.75;
        max-width: min(100%, 34rem);
        margin-inline: auto;
        overflow-wrap: break-word;
    }
    .hero-labels { margin-top: 26px; }
    .section-title {
        font-size: clamp(1.9rem, 8.4vw, 3rem);
        line-height: 1.14;
    }
    .stats-grid { gap: 12px; }
    .stat-tile { padding: 24px 18px; }
    .image-frame,
    .founder-frame {
        min-height: 330px;
    }
    .visual-card,
    .project-media {
        min-height: 300px;
        height: 300px;
    }
    .contact-panel,
    .form-panel,
    .story-panel {
        padding: 24px;
    }
    .news-detail-panel {
        margin-top: 20px;
    }
    .article-back-link {
        margin-bottom: 14px;
        font-size: .88rem;
    }
    .footer-links {
        justify-content: flex-start;
    }
}

@media (max-width: 520px) {
    .wrap { width: min(100% - 22px, 1220px); }
    .site-header .wrap { width: min(100% - 18px, 1220px); }
    .brand-text { max-width: min(40vw, 145px); }
    .brand-mark {
        width: 34px;
        height: 34px;
        flex-basis: 34px;
        font-size: .68rem;
    }
    .menu-toggle {
        width: 42px;
        height: 40px;
        flex: 0 0 42px;
    }
    .hero-content {
        padding-top: 82px;
        padding-bottom: 66px;
    }
    .hero-title {
        font-size: clamp(1.72rem, 7.8vw, 2.25rem);
        margin-bottom: 20px;
    }
    .hero-copy {
        max-width: calc(100vw - 42px);
        font-size: .92rem;
    }
    .hero-labels {
        max-width: 100%;
        overflow: hidden;
    }
    .hero-labels span {
        max-width: 100%;
        overflow-wrap: break-word;
    }
    .hero-actions { gap: 10px; }
    .btn,
    .nav-cta {
        width: 100%;
        min-height: 46px;
    }
    .hero-labels span {
        font-size: .76rem;
        padding: 6px 10px;
    }
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
    .visual-grid,
    .project-grid {
        grid-template-columns: 1fr;
    }
    .project-carousel .project-card {
        flex-basis: min(304px, 88vw);
    }
    .carousel-controls {
        align-items: flex-start;
        gap: 12px;
    }
    .proj-panel-body {
        padding: 20px 18px 34px;
    }
    .lightbox {
        padding: 12px;
    }
}

.site-status-body {
    min-height: 100vh;
    margin: 0;
    color: var(--ink);
    background:
        linear-gradient(135deg, rgba(48, 16, 32, .9), rgba(122, 27, 53, .78)),
        var(--status-bg-image, none),
        radial-gradient(circle at 20% 20%, rgba(200, 155, 60, .18), transparent 32%),
        #301020;
    background-size: cover;
    background-position: center;
}

.site-status-page {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 32px 18px;
}

.site-status-panel {
    width: min(720px, 100%);
    padding: clamp(30px, 6vw, 58px);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 8px;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 28px 80px rgba(0, 0, 0, .24);
    text-align: center;
}

.site-status-logo {
    max-width: 112px;
    max-height: 112px;
    object-fit: contain;
    margin-bottom: 18px;
}

.site-status-brand {
    margin: 0 0 16px;
    color: var(--gold);
    font-weight: 800;
}

.site-status-panel h1 {
    margin: 0;
    font-size: clamp(2.4rem, 8vw, 5rem);
    line-height: 1.1;
    color: var(--burgundy);
}

.site-status-subtitle {
    margin: 18px auto 0;
    max-width: 46rem;
    font-size: clamp(1.05rem, 2.8vw, 1.45rem);
    color: var(--muted);
    line-height: 1.8;
}

.site-status-message {
    margin: 22px auto 28px;
    max-width: 44rem;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.9;
}

.site-status-language {
    display: inline-flex;
    margin-inline-start: 14px;
    color: var(--burgundy);
    font-weight: 800;
    text-decoration: none;
}

.news-card h2 a,
.news-card h3 a {
    color: inherit;
    text-decoration: none;
}

.news-card h2 a:hover,
.news-card h3 a:hover {
    color: var(--gold);
}

.news-filter-bar {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) minmax(160px, .35fr) minmax(150px, .28fr) auto;
    gap: 12px;
    align-items: center;
    margin: 0 0 28px;
}

.news-filter-bar input,
.news-filter-bar select {
    width: 100%;
    min-height: 48px;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 0 14px;
    background: #fff;
    color: var(--ink);
    font: inherit;
}

.section-actions,
.pagination-wrap {
    margin-top: 28px;
    display: flex;
    justify-content: center;
}

.placement-strip {
    padding: 28px 0;
    background: #fff;
}

.placement-strip-middle_banner,
.placement-strip-footer_strip {
    background: var(--soft);
}

.placement-grid {
    display: grid;
    gap: 16px;
}

.placement-card {
    display: grid;
    grid-template-columns: minmax(160px, 280px) 1fr;
    gap: 18px;
    align-items: center;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 14px 36px rgba(48, 16, 32, .08);
}

.placement-card img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 6px;
}

.placement-card h3,
.placement-card .promo-title {
    margin: 10px 0;
    color: var(--burgundy);
    font-size: clamp(1.25rem, 2.4vw, 1.8rem);
}

.promo-card h3 a,
.placement-card h3 a,
.promo-card .promo-title a,
.placement-card .promo-title a {
    color: inherit;
    text-decoration: none;
}

.promo-card h3 a:hover,
.placement-card h3 a:hover,
.promo-card .promo-title a:hover,
.placement-card .promo-title a:hover {
    color: var(--gold);
}

.promo-media-link {
    display: block;
}

.event-detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
    margin: 22px 0;
}

.event-detail-grid div {
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--soft);
}

.event-detail-grid strong,
.event-detail-grid span {
    display: block;
}

.event-detail-grid span {
    margin-top: 6px;
    color: var(--muted);
}

.news-detail-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 14px;
    margin: 28px 0;
}

.news-detail-gallery img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 8px;
}

.news-detail-gallery figcaption {
    margin-top: 6px;
    color: var(--muted);
    font-size: .86rem;
}

.related-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.related-links a {
    padding: 8px 12px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--burgundy);
    text-decoration: none;
    font-weight: 700;
}

.social-feed-section {
    overflow: hidden;
}

.social-feed-navy {
    background: linear-gradient(135deg, #071d3b 0%, #0f2f59 58%, #301020 100%);
    color: #fff;
}

.social-feed-white {
    background: #fff;
}

.social-feed-soft {
    background: var(--soft);
}

.social-feed-navy .eyebrow,
.social-feed-navy .section-title,
.social-feed-navy .section-subtitle {
    color: #fff;
}

.social-feed-head {
    max-width: 760px;
}

.social-feed-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 18px;
}

.social-account-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-width: 0;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 8px;
    background: rgba(255, 255, 255, .96);
    color: var(--ink);
    box-shadow: 0 18px 45px rgba(7, 29, 59, .16);
}

.social-feed-white .social-account-card,
.social-feed-soft .social-account-card {
    border-color: var(--line);
}

.social-account-top {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
}

.social-avatar {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    overflow: hidden;
    background: var(--navy);
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    border: 2px solid var(--gold);
}

.social-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.social-account-top h3 {
    margin: 0 0 4px;
    color: var(--burgundy);
    font-size: 1rem;
}

.social-handle,
.social-view-link {
    color: var(--muted);
    font-weight: 700;
    text-decoration: none;
    font-size: .86rem;
}

.social-handle:hover,
.social-view-link:hover {
    color: var(--gold);
}

.social-follow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 38px;
    padding: 0 12px;
    border: 1px solid var(--gold);
    border-radius: 999px;
    color: var(--burgundy);
    text-decoration: none;
    font-weight: 800;
    white-space: nowrap;
}

.social-follow span {
    display: grid;
    place-items: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--gold);
    color: #fff;
    font-size: .68rem;
}

.social-account-desc {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
    font-size: .92rem;
}

.social-post-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
}

.social-post-card,
.social-post-empty {
    position: relative;
    display: grid;
    place-items: center;
    aspect-ratio: 1;
    min-width: 0;
    overflow: hidden;
    border-radius: 8px;
    background: #edf1f5;
    color: var(--navy);
    text-decoration: none;
}

.social-post-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s ease;
}

.social-post-card:hover img {
    transform: scale(1.05);
}

.social-post-placeholder {
    font-weight: 900;
    color: var(--gold);
}

.social-post-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 4px;
    padding: 10px;
    opacity: 0;
    color: #fff;
    background: linear-gradient(180deg, rgba(7, 29, 59, .12), rgba(7, 29, 59, .84));
    transition: opacity .25s ease;
    font-size: .78rem;
    line-height: 1.4;
}

.social-post-overlay small {
    color: rgba(255, 255, 255, .78);
}

.social-post-card:hover .social-post-overlay,
.social-post-card:focus-visible .social-post-overlay {
    opacity: 1;
}

.social-post-empty {
    grid-column: 1 / -1;
    aspect-ratio: auto;
    min-height: 96px;
    border: 1px dashed var(--line);
    font-weight: 800;
}

@media (max-width: 760px) {
    .social-feed-grid {
        display: flex;
        overflow-x: auto;
        gap: 14px;
        padding-bottom: 12px;
        scroll-snap-type: x mandatory;
    }

    .social-account-card {
        flex: 0 0 min(86vw, 360px);
        scroll-snap-align: start;
    }

    .social-account-top {
        grid-template-columns: 52px minmax(0, 1fr);
    }

    .social-follow {
        grid-column: 1 / -1;
        justify-content: center;
    }
}

@media (max-width: 720px) {
    .placement-card {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .news-filter-bar {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 520px) {
    .site-status-panel {
        padding: 28px 20px;
    }

    .site-status-panel .btn,
    .site-status-language {
        width: 100%;
        justify-content: center;
        margin: 10px 0 0;
    }
}
