/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
            :root {
                --navy-deep: #0b1520;
                --navy-mid: #0f1f30;
                --navy-light: #1a3248;
                --ocean: #1e4060;
                --gold: #c8963e;
                --gold-light: #e8b96a;
                --gold-pale: #f5dfa0;
                --bronze: #8b5e2e;
                --stone: #c4b49a;
                --stone-light: #e8ddd0;
                --cream: #f7f2ea;
                --white: #ffffff;
                --text-dark: #1a1208;
                --text-mid: #3d2e1a;

                --font-display: "Cinzel Decorative", serif;
                --font-title: "Cinzel", serif;
                --font-title-ar: "Reem Kufi", sans-serif;
                --font-body: "Cormorant Garamond", serif;
                --font-body-ar: "Alyamama", sans-serif;

                --section-pad: 120px 0;
                --radius: 4px;
                --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            }

            /* ============================================================
   RESET & BASE
   ============================================================ */
            *,
            *::before,
            *::after {
                box-sizing: border-box;
                margin: 0;
                padding: 0;
            }
            html {
                scroll-behavior: smooth;
                font-size: 16px;
            }
            body {
                font-family: var(--font-body);
                background: var(--navy-deep);
                color: var(--stone-light);
                line-height: 1.7;
                overflow-x: hidden;
            }
            html[lang="ar"] body {
                font-family: var(--font-body-ar);
            }
            img {
                max-width: 100%;
                display: block;
            }
            a {
                color: inherit;
                text-decoration: none;
            }
            ul {
                list-style: none;
            }
            button {
                cursor: pointer;
                border: none;
                background: none;
                font-family: inherit;
            }

            /* ============================================================
   SCROLLBAR
   ============================================================ */
            ::-webkit-scrollbar {
                width: 6px;
            }
            ::-webkit-scrollbar-track {
                background: var(--navy-deep);
            }
            ::-webkit-scrollbar-thumb {
                background: var(--gold);
                border-radius: 3px;
            }

            /* ============================================================
   TYPOGRAPHY
   ============================================================ */
            h1,
            h2,
            h3,
            h4,
            h5 {
                font-family: var(--font-title);
                line-height: 1.2;
            }
            .display-title {
                font-family: var(--font-display);
                color: var(--gold-light);
                letter-spacing: 0.05em;
            }
            .section-label {
                font-family: var(--font-title);
                font-size: 0.72rem;
                letter-spacing: 0.35em;
                text-transform: uppercase;
                color: var(--gold);
                display: block;
                margin-bottom: 1rem;
            }
            .section-title {
                font-size: clamp(2rem, 4vw, 3.2rem);
                color: var(--gold-light);
                margin-bottom: 1.5rem;
            }
            html[lang="ar"] h1,
            html[lang="ar"] h2,
            html[lang="ar"] h3,
            html[lang="ar"] h4,
            html[lang="ar"] h5,
            html[lang="ar"] .section-label,
            html[lang="ar"] .display-title {
                font-family: var(--font-title-ar);
                letter-spacing: 0;
            }
            .section-subtitle {
                font-size: 1.2rem;
                font-style: italic;
                color: var(--stone);
                max-width: 680px;
            }
            p {
                font-size: 1.1rem;
                color: var(--stone-light);
            }

            /* ============================================================
   UTILITY
   ============================================================ */
            .container {
                max-width: 1240px;
                margin: 0 auto;
                padding: 0 32px;
            }
            .text-center {
                text-align: center;
            }
            .text-gold {
                color: var(--gold);
            }
            .divider {
                width: 60px;
                height: 2px;
                background: linear-gradient(
                    90deg,
                    transparent,
                    var(--gold),
                    transparent
                );
                margin: 1.5rem 0;
            }
            .divider.center {
                margin: 1.5rem auto;
            }

            /* Scroll reveal */
            .reveal {
                opacity: 0;
                transform: translateY(40px);
                transition:
                    opacity 0.8s ease,
                    transform 0.8s ease;
            }
            .reveal.visible {
                opacity: 1;
                transform: translateY(0);
            }
            .reveal-left {
                opacity: 0;
                transform: translateX(-50px);
                transition:
                    opacity 0.8s ease,
                    transform 0.8s ease;
            }
            .reveal-left.visible {
                opacity: 1;
                transform: translateX(0);
            }
            .reveal-right {
                opacity: 0;
                transform: translateX(50px);
                transition:
                    opacity 0.8s ease,
                    transform 0.8s ease;
            }
            .reveal-right.visible {
                opacity: 1;
                transform: translateX(0);
            }
            .delay-1 {
                transition-delay: 0.15s;
            }
            .delay-2 {
                transition-delay: 0.3s;
            }
            .delay-3 {
                transition-delay: 0.45s;
            }
            .delay-4 {
                transition-delay: 0.6s;
            }

            /* ============================================================
   NAVBAR
   ============================================================ */
            #navbar {
                position: fixed;
                top: 0;
                left: 0;
                right: 0;
                z-index: 1000;
                padding: 22px 0;
                transition:
                    padding 0.4s ease,
                    background 0.4s ease,
                    box-shadow 0.4s ease;
            }
            #navbar.scrolled {
                padding: 14px 0;
                background: rgba(11, 21, 32, 0.97);
                backdrop-filter: blur(10px);
                box-shadow: 0 2px 40px rgba(0, 0, 0, 0.5);
                border-bottom: 1px solid rgba(200, 150, 62, 0.2);
            }
            .nav-inner {
                max-width: 1240px;
                margin: 0 auto;
                padding: 0 32px;
                display: flex;
                align-items: center;
                justify-content: space-between;
            }
            .nav-logo {
                display: flex;
                align-items: center;
                gap: 14px;
            }
            .nav-logo-icon {
                width: 42px;
                height: 42px;
                border: 1px solid var(--gold);
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 1.1rem;
                color: var(--gold);
                flex-shrink: 0;
            }
            .nav-logo-text {
                line-height: 1.2;
            }
            .nav-logo-text span:first-child {
                display: block;
                font-family: var(--font-title);
                font-size: 0.75rem;
                letter-spacing: 0.2em;
                color: var(--gold);
                text-transform: uppercase;
            }
            .nav-logo-text span:last-child {
                display: block;
                font-family: var(--font-title);
                font-size: 0.65rem;
                letter-spacing: 0.12em;
                color: var(--stone);
                text-transform: uppercase;
            }
            .nav-links {
                display: flex;
                align-items: center;
                gap: 36px;
            }
            .nav-dropdown {
                position: relative;
            }
            .nav-dropdown-toggle {
                font-family: var(--font-title);
                font-size: 0.68rem;
                letter-spacing: 0.2em;
                text-transform: uppercase;
                color: var(--stone);
                background: none;
                border: none;
                cursor: pointer;
                padding: 0;
                padding-bottom: 4px;
                display: flex;
                align-items: center;
                gap: 6px;
                position: relative;
                transition: color var(--transition);
            }
            .nav-dropdown-toggle::after {
                content: "";
                position: absolute;
                bottom: 0;
                left: 0;
                width: 0;
                height: 1px;
                background: var(--gold);
                transition: width var(--transition);
            }
            .nav-dropdown-toggle:hover,
            .nav-dropdown-toggle[aria-expanded="true"] {
                color: var(--gold-light);
            }
            .nav-dropdown-toggle:hover::after,
            .nav-dropdown-toggle[aria-expanded="true"]::after {
                width: 100%;
            }
            .nav-dropdown-toggle .chevron {
                font-size: 0.55rem;
                transition: transform 0.3s ease;
                color: var(--gold);
            }
            .nav-dropdown-toggle[aria-expanded="true"] .chevron {
                transform: rotate(180deg);
            }
            .nav-dropdown-menu {
                display: none;
                position: absolute;
                top: calc(100% + 18px);
                left: 50%;
                transform: translateX(-50%);
                min-width: 220px;
                background: rgba(11, 21, 32, 0.98);
                backdrop-filter: blur(12px);
                border: 1px solid rgba(200, 150, 62, 0.2);
                border-top: 2px solid var(--gold);
                padding: 8px 0;
                z-index: 200;
                box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
                opacity: 0;
                transform: translateX(-50%) translateY(-8px);
                transition: opacity 0.25s ease, transform 0.25s ease;
                pointer-events: none;
            }
            .nav-dropdown-menu.open {
                display: block;
                opacity: 1;
                transform: translateX(-50%) translateY(0);
                pointer-events: all;
            }
            .nav-dropdown-menu li a {
                display: block;
                padding: 10px 20px;
                font-family: var(--font-title);
                font-size: 0.65rem;
                letter-spacing: 0.18em;
                text-transform: uppercase;
                color: var(--stone);
                transition: all 0.2s ease;
                border-left: 2px solid transparent;
                white-space: nowrap;
            }
            .nav-dropdown-menu li a:hover {
                color: var(--gold-light);
                border-left-color: var(--gold);
                padding-left: 26px;
                background: rgba(200, 150, 62, 0.05);
            }
            .nav-dropdown-menu li a::after {
                display: none;
            }
            .nav-links a {
                font-family: var(--font-title);
                font-size: 0.68rem;
                letter-spacing: 0.2em;
                text-transform: uppercase;
                color: var(--stone);
                transition: color var(--transition);
                position: relative;
                padding-bottom: 4px;
            }
            .nav-links a::after {
                content: "";
                position: absolute;
                bottom: 0;
                left: 0;
                width: 0;
                height: 1px;
                background: var(--gold);
                transition: width var(--transition);
            }
            .nav-links a:hover,
            .nav-links a.active {
                color: var(--gold-light);
            }
            .nav-links a:hover::after,
            .nav-links a.active::after {
                width: 100%;
            }
            html[lang="ar"] .nav-links a,
            html[lang="ar"] .nav-dropdown-toggle,
            html[lang="ar"] .mobile-menu a,
            html[lang="ar"] .mobile-group {
                font-family: var(--font-body-ar);
                font-size: 0.95rem;
                letter-spacing: 0;
                text-transform: none;
            }
            html[lang="ar"] .btn-primary,
            html[lang="ar"] .btn-outline,
            html[lang="ar"] .btn-submit,
            html[lang="ar"] .nav-action .btn-outline {
                font-family: var(--font-body-ar);
                font-size: 0.95rem;
                letter-spacing: 0;
                text-transform: none;
            }
            .nav-cta {
                font-family: var(--font-title);
                font-size: 0.65rem;
                letter-spacing: 0.2em;
                text-transform: uppercase;
                color: var(--gold);
                border: 1px solid var(--gold);
                padding: 8px 20px;
                transition: all var(--transition);
            }
            .nav-cta:hover {
                background: var(--gold);
                color: var(--navy-deep);
            }
            .nav-right {
                display: flex;
                align-items: center;
                gap: 24px;
            }
            .hamburger {
                display: none;
                flex-direction: column;
                gap: 5px;
                padding: 4px;
            }
            .hamburger span {
                display: block;
                width: 26px;
                height: 2px;
                background: var(--gold-light);
                transition: all 0.3s ease;
            }
            .hamburger.open span:nth-child(1) {
                transform: translateY(7px) rotate(45deg);
            }
            .hamburger.open span:nth-child(2) {
                opacity: 0;
            }
            .hamburger.open span:nth-child(3) {
                transform: translateY(-7px) rotate(-45deg);
            }
            .mobile-menu {
                display: none;
                position: fixed;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background: rgba(11, 21, 32, 0.98);
                backdrop-filter: blur(10px);
                z-index: 999;
                overflow-y: auto;
            }
            .mobile-menu.open {
                display: block;
            }
            .mobile-menu-inner {
                min-height: 100vh;
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                padding: 80px 20px;
                gap: 24px;
            }
            .mobile-menu a {
                font-family: var(--font-title);
                font-size: 1.4rem;
                letter-spacing: 0.2em;
                text-transform: uppercase;
                color: var(--stone-light);
                transition: color 0.3s;
            }
            .mobile-accordion {
                display: flex;
                flex-direction: column;
                align-items: center;
                width: 100%;
            }
            .mobile-accordion-toggle {
                font-family: var(--font-title);
                font-size: 1.4rem;
                letter-spacing: 0.2em;
                text-transform: uppercase;
                color: var(--stone-light);
                display: flex;
                align-items: center;
                gap: 12px;
                transition: color 0.3s;
            }
            .mobile-accordion-toggle:hover,
            .mobile-accordion-toggle[aria-expanded="true"] {
                color: var(--gold-light);
            }
            .mobile-accordion-toggle .chevron {
                font-size: 0.85rem;
                transition: transform 0.3s ease;
                color: var(--gold);
            }
            .mobile-accordion-toggle[aria-expanded="true"] .chevron {
                transform: rotate(180deg);
            }
            .mobile-accordion-content {
                display: none;
                flex-direction: column;
                align-items: center;
                gap: 16px;
                margin-top: 20px;
                width: 100%;
            }
            .mobile-accordion-content.open {
                display: flex;
            }
            .mobile-accordion-content .sub-link {
                font-size: 1.1rem;
                color: var(--stone);
            }
            .mobile-group {
                font-family: var(--font-title);
                font-size: 0.65rem;
                letter-spacing: 0.3em;
                text-transform: uppercase;
                color: var(--gold);
                margin-top: 8px;
                opacity: 0.8;
            }
            .mobile-menu a:hover {
                color: var(--gold-light);
            }
            .mobile-menu .mobile-link {
                text-align: center;
            }
            .mobile-lang-row {
                display: flex;
                gap: 32px;
                align-items: center;
                justify-content: center;
                margin-top: 8px;
            }

            /* ============================================================
   HERO
   ============================================================ */
            #hero {
                position: relative;
                min-height: 100vh;
                display: flex;
                align-items: center;
                overflow: hidden;
                background: var(--navy-deep);
            }
            .hero-bg {
                position: absolute;
                inset: 0;
                background:
                    radial-gradient(
                        ellipse 70% 60% at 60% 40%,
                        rgba(30, 64, 96, 0.55) 0%,
                        transparent 70%
                    ),
                    radial-gradient(
                        ellipse 40% 40% at 20% 80%,
                        rgba(200, 150, 62, 0.08) 0%,
                        transparent 60%
                    ),
                    linear-gradient(
                        160deg,
                        #0b1520 0%,
                        #0f1f30 40%,
                        #162840 70%,
                        #0b1520 100%
                    );
            }
            /* Cartographic grid overlay */
            .hero-grid {
                position: absolute;
                inset: 0;
                background-image:
                    linear-gradient(
                        rgba(200, 150, 62, 0.04) 1px,
                        transparent 1px
                    ),
                    linear-gradient(
                        90deg,
                        rgba(200, 150, 62, 0.04) 1px,
                        transparent 1px
                    );
                background-size: 60px 60px;
            }
            /* Compass rose SVG */
            .compass-rose {
                position: absolute;
                right: 5%;
                top: 50%;
                transform: translateY(-50%);
                width: min(45vw, 560px);
                opacity: 0.12;
                pointer-events: none;
                animation: slowSpin 80s linear infinite;
            }
            @keyframes slowSpin {
                to {
                    transform: translateY(-50%) rotate(360deg);
                }
            }

            .hero-content {
                position: relative;
                z-index: 2;
                max-width: 1240px;
                margin: 0 auto;
                padding: 0 32px;
                padding-top: 100px;
            }
            .hero-eyebrow {
                font-family: var(--font-title);
                font-size: 0.7rem;
                letter-spacing: 0.45em;
                text-transform: uppercase;
                color: var(--gold);
                display: flex;
                align-items: center;
                gap: 16px;
                margin-bottom: 2rem;
            }
            .hero-eyebrow::before {
                content: "";
                width: 40px;
                height: 1px;
                background: var(--gold);
            }
            .hero-title {
                font-family: var(--font-display);
                font-size: clamp(2.4rem, 6vw, 5.5rem);
                color: var(--white);
                line-height: 1.05;
                margin-bottom: 0.3em;
                max-width: 700px;
            }
            .hero-title em {
                font-style: normal;
                color: var(--gold-light);
                display: block;
            }
            .hero-subtitle {
                font-size: clamp(1.1rem, 2vw, 1.35rem);
                font-style: italic;
                color: var(--stone);
                max-width: 560px;
                margin-bottom: 3rem;
                line-height: 1.6;
            }
            .hero-actions {
                display: flex;
                gap: 20px;
                flex-wrap: wrap;
            }
            .btn-primary {
                font-family: var(--font-title);
                font-size: 0.7rem;
                letter-spacing: 0.25em;
                text-transform: uppercase;
                padding: 16px 36px;
                background: var(--gold);
                color: var(--navy-deep);
                transition: all var(--transition);
                display: inline-flex;
                align-items: center;
                gap: 10px;
            }
            .btn-primary:hover {
                background: var(--gold-light);
                transform: translateY(-2px);
                box-shadow: 0 12px 40px rgba(200, 150, 62, 0.35);
            }
            .btn-outline {
                font-family: var(--font-title);
                font-size: 0.7rem;
                letter-spacing: 0.25em;
                text-transform: uppercase;
                padding: 16px 36px;
                border: 1px solid rgba(200, 150, 62, 0.5);
                color: var(--gold-light);
                transition: all var(--transition);
                display: inline-flex;
                align-items: center;
                gap: 10px;
            }
            .btn-outline:hover {
                border-color: var(--gold);
                background: rgba(200, 150, 62, 0.08);
                transform: translateY(-2px);
            }
            .hero-stats {
                display: flex;
                gap: 50px;
                margin-top: 5rem;
                padding-top: 3rem;
                border-top: 1px solid rgba(200, 150, 62, 0.15);
                flex-wrap: wrap;
            }
            .hero-stat-num {
                font-family: var(--font-title);
                font-size: 2.2rem;
                color: var(--gold-light);
                display: block;
                line-height: 1;
            }
            .hero-stat-label {
                font-size: 0.75rem;
                letter-spacing: 0.15em;
                text-transform: uppercase;
                color: var(--stone);
                display: block;
                margin-top: 4px;
            }
            .hero-scroll {
                position: absolute;
                bottom: 40px;
                left: 50%;
                transform: translateX(-50%);
                display: flex;
                flex-direction: column;
                align-items: center;
                gap: 8px;
                color: var(--stone);
                font-size: 0.6rem;
                letter-spacing: 0.3em;
                text-transform: uppercase;
                animation: bounce 2.5s ease-in-out infinite;
            }
            .hero-scroll i {
                font-size: 1rem;
                color: var(--gold);
            }
            @keyframes bounce {
                0%,
                100% {
                    transform: translateX(-50%) translateY(0);
                }
                50% {
                    transform: translateX(-50%) translateY(8px);
                }
            }

            /* ============================================================
   ABOUT
   ============================================================ */
            #about {
                padding: var(--section-pad);
                background: var(--navy-mid);
                position: relative;
                overflow: hidden;
            }
            #about::before {
                content: "";
                position: absolute;
                top: -100px;
                right: -100px;
                width: 500px;
                height: 500px;
                border-radius: 50%;
                background: radial-gradient(
                    circle,
                    rgba(200, 150, 62, 0.04) 0%,
                    transparent 70%
                );
                pointer-events: none;
            }
            .about-grid {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 80px;
                align-items: center;
            }
            .about-visual {
                position: relative;
            }
            .about-frame {
                position: relative;
                aspect-ratio: 4/5;
                overflow: hidden;
                border: 1px solid rgba(200, 150, 62, 0.2);
                box-shadow: 0 22px 50px rgba(0, 0, 0, 0.35);
            }
            .about-frame::before {
                content: "";
                position: absolute;
                inset: 0;
                background:
                    linear-gradient(
                        180deg,
                        rgba(11, 21, 32, 0.04) 0%,
                        rgba(11, 21, 32, 0.48) 100%
                    ),
                    repeating-linear-gradient(
                        -45deg,
                        transparent,
                        transparent 20px,
                        rgba(200, 150, 62, 0.04) 20px,
                        rgba(200, 150, 62, 0.04) 21px
                    );
                z-index: 1;
            }
            .about-frame-image {
                width: 100%;
                height: 100%;
                object-fit: cover;
                object-position: center;
                display: block;
                transition: transform 0.7s ease;
            }
            .about-frame:hover .about-frame-image {
                transform: scale(1.03);
            }
            .about-frame-inner {
                position: absolute;
                inset: 20px;
                border: 1px solid rgba(200, 150, 62, 0.35);
                display: flex;
                align-items: flex-end;
                justify-content: flex-start;
                padding: 20px;
                z-index: 2;
            }
            .about-frame-caption {
                font-family: var(--font-title);
                font-size: 0.65rem;
                letter-spacing: 0.25em;
                text-transform: uppercase;
                color: var(--cream);
                text-shadow: 0 4px 18px rgba(0, 0, 0, 0.55);
                line-height: 1.7;
            }
            html[lang="ar"] .about-frame-caption {
                font-family: var(--font-title-ar);
                letter-spacing: 0;
                text-transform: none;
                line-height: 1.8;
                text-align: right;
            }
            .about-badge {
                position: absolute;
                bottom: -20px;
                right: -20px;
                background: var(--gold);
                color: var(--navy-deep);
                width: 110px;
                height: 110px;
                border-radius: 50%;
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                font-family: var(--font-title);
                text-align: center;
            }
            .about-badge strong {
                font-size: 1.6rem;
                font-weight: 700;
                line-height: 1;
            }
            .about-badge span {
                font-size: 0.55rem;
                letter-spacing: 0.12em;
                text-transform: uppercase;
            }
            .about-text h2 {
                margin-bottom: 0.6rem;
            }
            .about-pillars {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 20px;
                margin-top: 2.5rem;
            }
            .about-pillar {
                padding: 20px;
                border: 1px solid rgba(200, 150, 62, 0.15);
                border-left: 3px solid var(--gold);
                background: rgba(200, 150, 62, 0.03);
                transition: background var(--transition);
            }
            .about-pillar:hover {
                background: rgba(200, 150, 62, 0.07);
            }
            .about-pillar i {
                font-size: 1.3rem;
                color: var(--gold);
                margin-bottom: 8px;
            }
            .about-pillar h4 {
                font-size: 0.8rem;
                letter-spacing: 0.15em;
                text-transform: uppercase;
                color: var(--gold-light);
                margin-bottom: 6px;
            }
            .about-pillar p {
                font-size: 0.95rem;
                color: var(--stone);
            }

            /* ============================================================
   DEEP MEMORY
   ============================================================ */
            #deep-memory-page {
                background: var(--navy-mid);
            }
            #deep-memory-page .memory-hero {
                padding: 140px 0 80px;
            }
            #deep-memory-page .memory-section {
                padding: 0 0 80px;
            }
            #deep-memory-page .memory-block {
                max-width: 980px;
                margin: 0 auto;
            }
            #deep-memory-page .memory-figure {
                margin: 32px auto 0;
                max-width: 900px;
            }
            #deep-memory-page .memory-figure img {
                width: 100%;
                height: auto;
                border-radius: 12px;
                border: 1px solid rgba(200, 150, 62, 0.2);
                box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
            }
            #deep-memory-page .memory-inline-media {
                display: flex;
                gap: 24px;
                align-items: flex-start;
                flex-wrap: wrap;
                margin: 30px 0;
            }
            #deep-memory-page .memory-inline-images {
                display: flex;
                gap: 12px;
                align-items: center;
            }
            #deep-memory-page .memory-icon {
                width: 90px;
                height: auto;
            }
            #deep-memory-page .memory-illustration {
                width: 150px;
                height: auto;
            }
            #deep-memory-page .memory-inline-images img {
                border: 1px solid rgba(200, 150, 62, 0.2);
                border-radius: 8px;
                background: rgba(10, 20, 30, 0.4);
                padding: 6px;
            }
            #deep-memory-page .memory-inline-text {
                flex: 1 1 320px;
            }
            #deep-memory-page .memory-list {
                margin: 24px 0 24px 0;
                padding-inline-start: 24px;
                line-height: 1.9;
                list-style: disc;
            }
            #deep-memory-page .memory-gallery {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
                gap: 16px;
                margin: 24px auto 0;
                max-width: 980px;
            }
            #deep-memory-page .memory-gallery img {
                width: 100%;
                height: auto;
                border-radius: 10px;
                border: 1px solid rgba(200, 150, 62, 0.15);
                background: rgba(10, 20, 30, 0.35);
                box-shadow: 0 16px 30px rgba(0, 0, 0, 0.25);
            }
            #deep-memory-page .memory-caption {
                text-align: center;
                font-size: 0.85rem;
                color: var(--sand);
                margin-top: 10px;
            }

            /* ============================================================
   INVENTORY / CONSERVATION
   ============================================================ */
            #inventory-page {
                background: var(--navy-mid);
            }
            #inventory-page .inventory-hero {
                padding: 140px 0 80px;
            }
            #inventory-page .inventory-section {
                padding: 0 0 80px;
            }
            #inventory-page .inventory-block {
                max-width: 980px;
                margin: 0 auto;
            }
            #inventory-page .inventory-gallery {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
                gap: 16px;
                margin: 24px auto 0;
                max-width: 980px;
            }
            #inventory-page .inventory-gallery-wide {
                grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            }
            #inventory-page .inventory-gallery img {
                width: 100%;
                height: auto;
                border-radius: 10px;
                border: 1px solid rgba(200, 150, 62, 0.15);
                background: rgba(10, 20, 30, 0.35);
                box-shadow: 0 16px 30px rgba(0, 0, 0, 0.25);
            }

            /* ============================================================
   COLLECTIONS PAGE
   ============================================================ */
            #collections-page {
                background: var(--navy-mid);
            }
            #collections-page .collections-hero {
                padding: 140px 0 80px;
            }
            #collections-page .collections-section {
                padding: 0 0 80px;
            }
            #collections-page .collections-block {
                max-width: 980px;
                margin: 0 auto;
            }
            #collections-page .collections-list {
                margin: 20px 0 0;
                padding-inline-start: 24px;
                line-height: 1.9;
                list-style: disc;
            }
            #collections-page .collections-figure {
                margin: 32px auto 0;
                max-width: 900px;
            }
            #collections-page .collections-figure img {
                width: 100%;
                height: auto;
                border-radius: 12px;
                border: 1px solid rgba(200, 150, 62, 0.2);
                box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
            }

            /* ============================================================
   HISTORY / IMMERSIVE
   ============================================================ */
            #history {
                padding: var(--section-pad);
                background: linear-gradient(
                    180deg,
                    var(--navy-mid) 0%,
                    var(--navy-deep) 20%,
                    #0a1015 100%
                );
                position: relative;
                overflow: hidden;
            }
            .history-bg-text {
                position: absolute;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
                font-family: var(--font-display);
                font-size: clamp(6rem, 18vw, 18rem);
                color: rgba(200, 150, 62, 0.025);
                white-space: nowrap;
                pointer-events: none;
                user-select: none;
            }
            .history-header {
                text-align: center;
                margin-bottom: 80px;
            }
            .timeline {
                position: relative;
                max-width: 900px;
                margin: 0 auto;
            }
            .timeline::before {
                content: "";
                position: absolute;
                left: 50%;
                top: 0;
                bottom: 0;
                width: 1px;
                background: linear-gradient(
                    180deg,
                    transparent,
                    var(--gold) 10%,
                    var(--gold) 90%,
                    transparent
                );
                transform: translateX(-50%);
            }
            .timeline-item {
                display: grid;
                grid-template-columns: 1fr 60px 1fr;
                gap: 0;
                margin-bottom: 60px;
                position: relative;
            }
            .timeline-item:nth-child(odd) .timeline-content {
                grid-column: 1;
                text-align: right;
                padding-right: 40px;
            }
            .timeline-item:nth-child(odd) .timeline-dot {
                grid-column: 2;
            }
            .timeline-item:nth-child(odd) .timeline-empty {
                grid-column: 3;
            }
            .timeline-item:nth-child(even) .timeline-empty {
                grid-column: 1;
            }
            .timeline-item:nth-child(even) .timeline-dot {
                grid-column: 2;
            }
            .timeline-item:nth-child(even) .timeline-content {
                grid-column: 3;
                padding-left: 40px;
            }
            .timeline-dot {
                display: flex;
                align-items: center;
                justify-content: center;
            }
            .timeline-dot-inner {
                width: 14px;
                height: 14px;
                border-radius: 50%;
                background: var(--gold);
                border: 3px solid var(--navy-deep);
                box-shadow:
                    0 0 0 1px var(--gold),
                    0 0 20px rgba(200, 150, 62, 0.4);
                flex-shrink: 0;
            }
            .timeline-year {
                font-family: var(--font-title);
                font-size: 0.68rem;
                letter-spacing: 0.25em;
                color: var(--gold);
                text-transform: uppercase;
                margin-bottom: 8px;
            }
            .timeline-content h3 {
                font-size: 1.25rem;
                color: var(--gold-light);
                margin-bottom: 10px;
            }
            .timeline-content p {
                font-size: 1rem;
                color: var(--stone);
                line-height: 1.65;
            }

            /* Feature block below timeline */
            .history-feature {
                max-width: 900px;
                margin: 60px auto 0;
                padding: 50px;
                background: linear-gradient(
                    135deg,
                    rgba(30, 64, 96, 0.4) 0%,
                    rgba(11, 21, 32, 0.6) 100%
                );
                border: 1px solid rgba(200, 150, 62, 0.2);
                border-top: 3px solid var(--gold);
                position: relative;
                overflow: hidden;
            }
            .history-feature::before {
                content: "\2693";
                position: absolute;
                right: 30px;
                top: 20px;
                font-size: 5rem;
                color: rgba(200, 150, 62, 0.06);
            }
            .history-feature h3 {
                font-size: 1.5rem;
                color: var(--gold-light);
                margin-bottom: 1rem;
            }
            .history-feature p {
                font-size: 1.05rem;
                color: var(--stone-light);
            }

            /* ============================================================
   COLLECTIONS
   ============================================================ */
            #collections {
                padding: var(--section-pad);
                background: var(--cream);
            }
            #collections .section-label {
                color: var(--bronze);
            }
            #collections .section-title {
                color: var(--text-dark);
            }
            #collections .section-subtitle {
                color: var(--text-mid);
            }
            .collections-grid {
                display: grid;
                grid-template-columns: repeat(3, 1fr);
                gap: 2px;
                margin-top: 60px;
            }
            .collection-card {
                position: relative;
                aspect-ratio: 4/5;
                overflow: hidden;
                cursor: pointer;
                background: var(--navy-light);
            }
            .collection-card:first-child {
                grid-row: span 2;
                aspect-ratio: auto;
            }
            .collection-bg {
                position: absolute;
                inset: 0;
                transition: transform 0.6s ease;
            }
            .collection-card:hover .collection-bg {
                transform: scale(1.05);
            }
            .collection-bg-1 {
                background: linear-gradient(
                    135deg,
                    #1a3248 0%,
                    #0f2030 50%,
                    #1e4060 100%
                );
            }
            .collection-bg-2 {
                background: linear-gradient(135deg, #2d1810 0%, #5c3420 100%);
            }
            .collection-bg-3 {
                background: linear-gradient(135deg, #0a2030 0%, #164060 100%);
            }
            .collection-bg-4 {
                background: linear-gradient(135deg, #1e1808 0%, #3d3010 100%);
            }
            .collection-bg-5 {
                background: linear-gradient(135deg, #0f1a10 0%, #1e3420 100%);
            }
            .collection-bg-6 {
                background: linear-gradient(135deg, #20100a 0%, #4a2010 100%);
            }

            /* Pattern overlay per card */
            .collection-card::before {
                content: "";
                position: absolute;
                inset: 0;
                z-index: 1;
                opacity: 0.15;
                background-image: radial-gradient(
                    circle,
                    rgba(255, 255, 255, 0.1) 1px,
                    transparent 1px
                );
                background-size: 20px 20px;
            }
            .collection-overlay {
                position: absolute;
                inset: 0;
                z-index: 2;
                background: linear-gradient(
                    to top,
                    rgba(0, 0, 0, 0.85) 0%,
                    transparent 60%
                );
                display: flex;
                flex-direction: column;
                justify-content: flex-end;
                padding: 30px;
                transition: background var(--transition);
            }
            .collection-card:hover .collection-overlay {
                background: linear-gradient(
                    to top,
                    rgba(0, 0, 0, 0.9) 0%,
                    rgba(0, 0, 0, 0.2) 100%
                );
            }
            .collection-icon {
                font-size: 2rem;
                color: var(--gold);
                margin-bottom: 10px;
                display: block;
                transition: transform 0.4s ease;
            }
            .collection-card:hover .collection-icon {
                transform: scale(1.2);
            }
            .collection-card h3 {
                font-size: 1.1rem;
                color: var(--white);
                margin-bottom: 6px;
            }
            .collection-card p {
                font-size: 0.9rem;
                color: rgba(255, 255, 255, 0.65);
                display: -webkit-box;
                -webkit-line-clamp: 2;
                -webkit-box-orient: vertical;
                overflow: hidden;
                transform: translateY(10px);
                opacity: 0;
                transition: all 0.4s ease;
            }
            .collection-card:hover p {
                transform: translateY(0);
                opacity: 1;
            }

            /* ============================================================
   FEATURED HIGHLIGHTS
   ============================================================ */
            #highlights {
                padding: var(--section-pad);
                background: var(--navy-mid);
            }
            .highlights-grid {
                display: grid;
                grid-template-columns: repeat(3, 1fr);
                gap: 24px;
                margin-top: 60px;
            }
            .highlight-card {
                position: relative;
                padding: 40px 32px;
                border: 1px solid rgba(200, 150, 62, 0.12);
                background: rgba(255, 255, 255, 0.02);
                transition: all var(--transition);
                overflow: hidden;
                cursor: pointer;
            }
            .highlight-card::before {
                content: "";
                position: absolute;
                bottom: 0;
                left: 0;
                right: 0;
                height: 3px;
                background: linear-gradient(
                    90deg,
                    transparent,
                    var(--gold),
                    transparent
                );
                transform: scaleX(0);
                transition: transform 0.4s ease;
            }
            .highlight-card:hover::before {
                transform: scaleX(1);
            }
            .highlight-card:hover {
                border-color: rgba(200, 150, 62, 0.3);
                background: rgba(200, 150, 62, 0.04);
                transform: translateY(-4px);
                box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            }
            .highlight-num {
                font-family: var(--font-title);
                font-size: 3rem;
                color: rgba(200, 150, 62, 0.12);
                position: absolute;
                top: 20px;
                right: 24px;
                line-height: 1;
                transition: color 0.4s;
            }
            .highlight-card:hover .highlight-num {
                color: rgba(200, 150, 62, 0.2);
            }
            .highlight-tag {
                font-family: var(--font-title);
                font-size: 0.6rem;
                letter-spacing: 0.3em;
                text-transform: uppercase;
                color: var(--gold);
                margin-bottom: 16px;
            }
            .highlight-card h3 {
                font-size: 1.3rem;
                color: var(--gold-light);
                margin-bottom: 12px;
                line-height: 1.3;
            }
            .highlight-card p {
                font-size: 1rem;
                color: var(--stone);
            }
            .highlight-link {
                display: inline-flex;
                align-items: center;
                gap: 8px;
                margin-top: 20px;
                font-family: var(--font-title);
                font-size: 0.65rem;
                letter-spacing: 0.2em;
                text-transform: uppercase;
                color: var(--gold);
                transition: gap 0.3s;
            }
            .highlight-card:hover .highlight-link {
                gap: 14px;
            }

            /* ============================================================
   VISITOR
   ============================================================ */
            #visitor {
                padding: var(--section-pad);
                background: linear-gradient(
                    180deg,
                    var(--stone-light) 0%,
                    var(--cream) 100%
                );
            }
            #visitor .section-label {
                color: var(--bronze);
            }
            #visitor .section-title {
                color: var(--text-dark);
            }
            #visitor .section-subtitle {
                color: var(--text-mid);
            }
            .visitor-grid {
                display: grid;
                grid-template-columns: repeat(4, 1fr);
                gap: 24px;
                margin-top: 60px;
            }
            .visitor-card {
                padding: 36px 24px;
                text-align: center;
                border: 1px solid rgba(139, 94, 46, 0.15);
                background: white;
                transition: all var(--transition);
            }
            .visitor-card:hover {
                border-color: var(--bronze);
                transform: translateY(-4px);
                box-shadow: 0 16px 50px rgba(139, 94, 46, 0.12);
            }
            .visitor-icon {
                width: 64px;
                height: 64px;
                border-radius: 50%;
                background: linear-gradient(135deg, var(--bronze), var(--gold));
                display: flex;
                align-items: center;
                justify-content: center;
                margin: 0 auto 20px;
                font-size: 1.4rem;
                color: white;
            }
            .visitor-card h3 {
                font-size: 1rem;
                color: var(--text-dark);
                margin-bottom: 10px;
                letter-spacing: 0.05em;
            }
            .visitor-card p {
                font-size: 0.95rem;
                color: var(--text-mid);
            }

            /* ============================================================
   BRANCHES
   ============================================================ */
            #branches {
                padding: var(--section-pad);
                background: var(--navy-deep);
                position: relative;
                overflow: hidden;
            }
            .branches-bg {
                position: absolute;
                inset: 0;
                background-image:
                    linear-gradient(
                        rgba(200, 150, 62, 0.03) 1px,
                        transparent 1px
                    ),
                    linear-gradient(
                        90deg,
                        rgba(200, 150, 62, 0.03) 1px,
                        transparent 1px
                    );
                background-size: 80px 80px;
            }
            .branches-header {
                text-align: center;
                margin-bottom: 70px;
            }
            .branches-list {
                display: grid;
                grid-template-columns: repeat(4, 1fr);
                gap: 2px;
                max-width: 1000px;
                margin: 0 auto;
            }
            .branch-item {
                padding: 40px 24px;
                text-align: center;
                background: rgba(255, 255, 255, 0.02);
                border: 1px solid rgba(200, 150, 62, 0.08);
                transition: all var(--transition);
                cursor: pointer;
            }
            .branch-item:hover {
                background: rgba(200, 150, 62, 0.06);
                border-color: rgba(200, 150, 62, 0.25);
                transform: translateY(-3px);
            }
            .branch-dot {
                width: 10px;
                height: 10px;
                border-radius: 50%;
                background: var(--gold);
                margin: 0 auto 16px;
                box-shadow: 0 0 0 3px rgba(200, 150, 62, 0.2);
            }
            .branch-item h3 {
                font-size: 1rem;
                color: var(--gold-light);
                margin-bottom: 6px;
            }
            .branch-item p {
                font-size: 0.85rem;
                color: var(--stone);
            }
            .branch-tag {
                display: inline-block;
                margin-top: 12px;
                font-family: var(--font-title);
                font-size: 0.58rem;
                letter-spacing: 0.2em;
                text-transform: uppercase;
                color: var(--gold);
                border: 1px solid rgba(200, 150, 62, 0.3);
                padding: 3px 10px;
            }

            /* ============================================================
   GALLERY
   ============================================================ */
            #gallery {
                padding: var(--section-pad);
                background: #080e14;
            }
            .gallery-header {
                margin-bottom: 60px;
            }
            .gallery-grid {
                display: grid;
                grid-template-columns: repeat(12, 1fr);
                grid-template-rows: repeat(3, 200px);
                gap: 3px;
            }
            .gallery-item {
                overflow: hidden;
                cursor: pointer;
                position: relative;
            }
            .gallery-item:nth-child(1) {
                grid-column: span 5;
                grid-row: span 2;
            }
            .gallery-item:nth-child(2) {
                grid-column: span 3;
                grid-row: span 1;
            }
            .gallery-item:nth-child(3) {
                grid-column: span 4;
                grid-row: span 1;
            }
            .gallery-item:nth-child(4) {
                grid-column: span 3;
                grid-row: span 1;
            }
            .gallery-item:nth-child(5) {
                grid-column: span 4;
                grid-row: span 1;
            }
            .gallery-item:nth-child(6) {
                grid-column: span 4;
                grid-row: span 1;
            }
            .gallery-item:nth-child(7) {
                grid-column: span 4;
                grid-row: span 1;
            }
            .gallery-item:nth-child(8) {
                grid-column: span 4;
                grid-row: span 1;
            }
            .gallery-bg {
                position: absolute;
                inset: 0;
                transition: transform 0.6s ease;
            }
            .gallery-item:hover .gallery-bg {
                transform: scale(1.08);
            }
            .g1 {
                background: linear-gradient(135deg, #0a2030, #1a5080, #0a1020);
            }
            .g2 {
                background: linear-gradient(135deg, #201005, #704020, #301508);
            }
            .g3 {
                background: linear-gradient(135deg, #050f15, #102030, #1a4060);
            }
            .g4 {
                background: linear-gradient(135deg, #100800, #3d2008, #201005);
            }
            .g5 {
                background: linear-gradient(135deg, #0a1520, #1a3040, #0f2030);
            }
            .g6 {
                background: linear-gradient(135deg, #180e02, #4a2e10, #281408);
            }
            .g7 {
                background: linear-gradient(135deg, #051018, #102040, #0a2030);
            }
            .g8 {
                background: linear-gradient(135deg, #0a1820, #1a3850, #102030);
            }
            .gallery-overlay {
                position: absolute;
                inset: 0;
                background: rgba(0, 0, 0, 0);
                display: flex;
                align-items: center;
                justify-content: center;
                transition: background 0.4s ease;
            }
            .gallery-item:hover .gallery-overlay {
                background: rgba(200, 150, 62, 0.08);
            }
            .gallery-overlay-icon {
                font-size: 1.5rem;
                color: var(--gold-light);
                opacity: 0;
                transition:
                    opacity 0.4s,
                    transform 0.4s;
                transform: scale(0.7);
            }
            .gallery-item:hover .gallery-overlay-icon {
                opacity: 1;
                transform: scale(1);
            }
            .gallery-pattern {
                position: absolute;
                inset: 0;
                z-index: 1;
                opacity: 0.06;
            }
            .gallery-pattern-dots {
                background-image: radial-gradient(
                    circle,
                    rgba(255, 255, 255, 0.8) 1px,
                    transparent 1px
                );
                background-size: 16px 16px;
            }
            .gallery-pattern-lines {
                background-image: repeating-linear-gradient(
                    45deg,
                    transparent,
                    transparent 8px,
                    rgba(255, 255, 255, 0.5) 8px,
                    rgba(255, 255, 255, 0.5) 9px
                );
            }
            .gallery-caption {
                position: absolute;
                bottom: 0;
                left: 0;
                right: 0;
                z-index: 3;
                padding: 16px 20px;
                background: linear-gradient(
                    to top,
                    rgba(0, 0, 0, 0.7) 0%,
                    transparent 100%
                );
                transform: translateY(100%);
                transition: transform 0.4s ease;
            }
            .gallery-item:hover .gallery-caption {
                transform: translateY(0);
            }
            .gallery-caption span {
                font-family: var(--font-title);
                font-size: 0.68rem;
                letter-spacing: 0.2em;
                text-transform: uppercase;
                color: var(--gold-light);
            }

            /* ============================================================
   POSTS
   ============================================================ */
            #posts {
                padding: var(--section-pad);
                background: var(--navy-mid);
            }
            .post-detail {
                min-height: 70vh;
            }
            .post-detail-meta {
                display: flex;
                flex-wrap: wrap;
                gap: 18px;
                font-size: 0.85rem;
                color: var(--stone);
                margin-bottom: 24px;
            }
            .post-detail-tags {
                color: var(--stone-light);
            }
            .post-detail-hero {
                border-radius: 18px;
                overflow: hidden;
                border: 1px solid rgba(200, 150, 62, 0.18);
                background: rgba(0, 0, 0, 0.25);
                box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
                margin: 24px 0 32px;
            }
            .post-detail-hero img {
                width: 100%;
                display: block;
                object-fit: cover;
            }
            .post-detail-body {
                font-size: 1.05rem;
                line-height: 1.8;
                color: var(--stone-light);
                max-width: 860px;
            }
            .posts-grid {
                display: grid;
                grid-template-columns: repeat(3, 1fr);
                gap: 28px;
                margin-top: 60px;
            }
            .post-card {
                border: 1px solid rgba(200, 150, 62, 0.1);
                background: rgba(255, 255, 255, 0.02);
                overflow: hidden;
                transition: all var(--transition);
            }
            .post-card:hover {
                border-color: rgba(200, 150, 62, 0.25);
                transform: translateY(-4px);
                box-shadow: 0 16px 50px rgba(0, 0, 0, 0.3);
            }
            .post-image {
                height: 200px;
                position: relative;
                overflow: hidden;
            }
            .post-img-bg {
                position: absolute;
                inset: 0;
                transition: transform 0.6s ease;
            }
            .post-card:hover .post-img-bg {
                transform: scale(1.05);
            }
            .ni1 {
                background: linear-gradient(135deg, #0a2030, #1a5070);
            }
            .ni2 {
                background: linear-gradient(135deg, #1a1000, #503010);
            }
            .ni3 {
                background: linear-gradient(135deg, #001830, #0a3860);
            }
            .post-img-overlay {
                position: absolute;
                inset: 0;
                background-image: repeating-linear-gradient(
                    -30deg,
                    transparent,
                    transparent 15px,
                    rgba(255, 255, 255, 0.02) 15px,
                    rgba(255, 255, 255, 0.02) 16px
                );
            }
            .post-category {
                position: absolute;
                top: 16px;
                left: 16px;
                font-family: var(--font-title);
                font-size: 0.58rem;
                letter-spacing: 0.25em;
                text-transform: uppercase;
                background: var(--gold);
                color: var(--navy-deep);
                padding: 4px 12px;
            }
            .post-body {
                padding: 28px;
            }
            .post-date {
                font-size: 0.75rem;
                color: var(--stone);
                margin-bottom: 10px;
                display: block;
            }
            .post-card h3 {
                font-size: 1.15rem;
                color: var(--gold-light);
                margin-bottom: 12px;
                line-height: 1.3;
            }
            .post-card p {
                font-size: 0.95rem;
                color: var(--stone);
            }
            .post-read {
                display: inline-flex;
                align-items: center;
                gap: 8px;
                margin-top: 18px;
                font-family: var(--font-title);
                font-size: 0.62rem;
                letter-spacing: 0.2em;
                text-transform: uppercase;
                color: var(--gold);
                transition: gap 0.3s;
            }
            .post-card:hover .post-read {
                gap: 14px;
            }

            /* ============================================================
   CONTACT
   ============================================================ */
            #contact {
                padding: var(--section-pad);
                background: linear-gradient(
                    180deg,
                    var(--cream) 0%,
                    var(--stone-light) 100%
                );
            }
            #contact .section-label {
                color: var(--bronze);
            }
            #contact .section-title {
                color: var(--text-dark);
            }
            #contact.contact-page {
                background: linear-gradient(180deg, var(--navy-deep) 0%, #0f1a24 100%);
            }
            #contact.contact-page .section-label {
                color: var(--gold);
            }
            #contact.contact-page .section-title {
                color: var(--gold-light);
            }
            #contact.contact-page .contact-form-title {
                font-size: 1.5rem;
                color: var(--gold-light);
                margin-bottom: 8px;
            }
            #contact.contact-page .contact-form-subtitle {
                color: var(--stone);
                margin-bottom: 28px;
            }
            #contact.contact-page .contact-block {
                background: rgba(8, 14, 20, 0.7);
                border-color: rgba(200, 150, 62, 0.25);
            }
            #contact.contact-page .contact-block i {
                color: var(--gold);
            }
            #contact.contact-page .contact-block h4 {
                color: var(--gold-light);
            }
            #contact.contact-page .contact-block p,
            #contact.contact-page .contact-block a {
                color: var(--stone);
            }
            #contact.contact-page .contact-block a:hover {
                color: var(--gold-light);
            }
            #contact.contact-page .hours-table td {
                color: var(--stone);
            }
            #contact.contact-page .hours-table td:first-child {
                color: var(--gold-light);
            }
            #contact.contact-page .form-group label {
                color: var(--stone);
            }
            #contact.contact-page .form-group input,
            #contact.contact-page .form-group textarea,
            #contact.contact-page .form-group select {
                background: rgba(255, 255, 255, 0.03);
                border: 1px solid rgba(200, 150, 62, 0.2);
                color: var(--stone);
            }
            #contact.contact-page .form-group input::placeholder,
            #contact.contact-page .form-group textarea::placeholder {
                color: rgba(214, 206, 189, 0.65);
            }
            .contact-grid {
                display: grid;
                grid-template-columns: 1fr 1.2fr;
                gap: 80px;
                margin-top: 60px;
                align-items: start;
            }
            .contact-info-blocks {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 20px;
                margin-bottom: 40px;
            }
            .contact-block {
                padding: 24px;
                border: 1px solid rgba(139, 94, 46, 0.2);
                background: white;
            }
            .contact-block i {
                font-size: 1.2rem;
                color: var(--bronze);
                margin-bottom: 10px;
            }
            .contact-block h4 {
                font-size: 0.72rem;
                letter-spacing: 0.2em;
                text-transform: uppercase;
                color: var(--text-dark);
                margin-bottom: 6px;
            }
            .contact-block p,
            .contact-block a {
                font-size: 0.95rem;
                color: var(--text-mid);
            }
            .contact-block a:hover {
                color: var(--bronze);
            }
            .hours-table {
                width: 100%;
            }
            .hours-table td {
                font-size: 0.9rem;
                color: var(--text-mid);
                padding: 4px 0;
            }
            .hours-table td:first-child {
                color: var(--text-dark);
                font-weight: 500;
            }

            /* Form */
            .contact-form {
                display: flex;
                flex-direction: column;
                gap: 18px;
            }
            .form-row {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 16px;
            }
            .form-group {
                display: flex;
                flex-direction: column;
                gap: 6px;
            }
            .form-group label {
                font-family: var(--font-title);
                font-size: 0.65rem;
                letter-spacing: 0.2em;
                text-transform: uppercase;
                color: var(--text-mid);
            }
            .form-group input,
            .form-group select,
            .form-group textarea {
                padding: 12px 16px;
                border: 1px solid rgba(139, 94, 46, 0.3);
                background: white;
                font-family: var(--font-body);
                font-size: 1rem;
                color: var(--text-dark);
                transition: border-color 0.3s;
                outline: none;
                resize: vertical;
            }
            .form-group input:focus,
            .form-group select:focus,
            .form-group textarea:focus {
                border-color: var(--bronze);
                box-shadow: 0 0 0 2px rgba(139, 94, 46, 0.1);
            }
            .form-group textarea {
                min-height: 130px;
            }
            .btn-submit {
                font-family: var(--font-title);
                font-size: 0.7rem;
                letter-spacing: 0.25em;
                text-transform: uppercase;
                padding: 16px 36px;
                background: var(--navy-deep);
                color: var(--gold-light);
                border: 1px solid var(--navy-deep);
                align-self: flex-start;
                transition: all var(--transition);
                display: inline-flex;
                align-items: center;
                gap: 10px;
                cursor: pointer;
            }
            .btn-submit:hover {
                background: var(--bronze);
                border-color: var(--bronze);
                color: white;
                transform: translateY(-2px);
            }

            /* ============================================================
   FOOTER
   ============================================================ */
            footer {
                background: var(--navy-deep);
                border-top: 1px solid rgba(200, 150, 62, 0.15);
                padding: 70px 0 30px;
            }
            .footer-grid {
                display: grid;
                grid-template-columns: 2fr 1fr 1fr 1fr;
                gap: 50px;
                padding-bottom: 50px;
                border-bottom: 1px solid rgba(200, 150, 62, 0.1);
                margin-bottom: 30px;
            }
            .footer-brand p {
                font-size: 0.95rem;
                color: var(--stone);
                margin: 16px 0 24px;
                line-height: 1.7;
                max-width: 280px;
            }
            .footer-socials {
                display: flex;
                gap: 12px;
            }
            .footer-social {
                width: 38px;
                height: 38px;
                border: 1px solid rgba(200, 150, 62, 0.25);
                display: flex;
                align-items: center;
                justify-content: center;
                color: var(--stone);
                font-size: 0.85rem;
                transition: all 0.3s;
            }
            .footer-social:hover {
                border-color: var(--gold);
                color: var(--gold);
                background: rgba(200, 150, 62, 0.08);
            }
            .footer-col h4 {
                font-family: var(--font-title);
                font-size: 0.68rem;
                letter-spacing: 0.25em;
                text-transform: uppercase;
                color: var(--gold);
                margin-bottom: 20px;
            }
            .footer-col ul {
                display: flex;
                flex-direction: column;
                gap: 10px;
            }
            .footer-col ul li a {
                font-size: 0.95rem;
                color: var(--stone);
                transition: color 0.3s;
                display: flex;
                align-items: center;
                gap: 8px;
            }
            .footer-col ul li a::before {
                content: "";
                width: 16px;
                height: 1px;
                background: var(--gold);
                opacity: 0;
                transition: opacity 0.3s;
                flex-shrink: 0;
            }
            .footer-col ul li a:hover {
                color: var(--gold-light);
            }
            .footer-col ul li a:hover::before {
                opacity: 1;
            }
            .footer-bottom {
                display: flex;
                align-items: center;
                justify-content: space-between;
                flex-wrap: wrap;
                gap: 16px;
            }
            .footer-bottom p {
                font-size: 0.82rem;
                color: var(--stone);
            }
            .footer-bottom a {
                color: var(--gold);
                transition: opacity 0.3s;
            }
            .footer-bottom a:hover {
                opacity: 0.8;
            }
            .footer-logo-bottom {
                font-family: var(--font-title);
                font-size: 0.65rem;
                letter-spacing: 0.2em;
                text-transform: uppercase;
                color: var(--stone);
                display: flex;
                align-items: center;
                gap: 10px;
            }
            .footer-logo-bottom i {
                color: var(--gold);
                font-size: 1rem;
            }

            /* ============================================================
   BACK TO TOP
   ============================================================ */
            #back-top {
                position: fixed;
                bottom: 30px;
                right: 30px;
                width: 44px;
                height: 44px;
                background: var(--gold);
                display: flex;
                align-items: center;
                justify-content: center;
                color: var(--navy-deep);
                font-size: 0.9rem;
                cursor: pointer;
                opacity: 0;
                pointer-events: none;
                transition: all 0.3s;
                z-index: 999;
            }
            #back-top.show {
                opacity: 1;
                pointer-events: all;
            }
            #back-top:hover {
                background: var(--gold-light);
                transform: translateY(-3px);
            }

            /* ============================================================
   RESPONSIVE
   ============================================================ */
            @media (max-width: 1100px) {
                .about-grid {
                    grid-template-columns: 1fr;
                    gap: 50px;
                }
                .about-visual {
                    max-width: 400px;
                    margin: 0 auto;
                }
                .collections-grid {
                    grid-template-columns: repeat(2, 1fr);
                }
                .collections-grid .collection-card:first-child {
                    grid-row: span 1;
                    aspect-ratio: 4/5;
                }
                .highlights-grid {
                    grid-template-columns: 1fr 1fr;
                }
                .visitor-grid {
                    grid-template-columns: 1fr 1fr;
                }
                .branches-list {
                    grid-template-columns: 1fr 1fr;
                }
                .posts-grid {
                    grid-template-columns: 1fr 1fr;
                }
                .footer-grid {
                    grid-template-columns: 1fr 1fr;
                }
            }

            @media (max-width: 768px) {
                :root {
                    --section-pad: 80px 0;
                }
                .nav-links,
                .nav-lang-dropdown,
                .nav-cta {
                    display: none;
                }
                .hamburger {
                    display: flex;
                }
                .hero-stats {
                    gap: 28px;
                }
                .about-pillars {
                    grid-template-columns: 1fr;
                }
                .timeline::before {
                    left: 24px;
                }
                .timeline-item {
                    grid-template-columns: 48px 1fr;
                }
                .timeline-item:nth-child(odd) .timeline-content {
                    grid-column: 2;
                    text-align: left;
                    padding-right: 0;
                    padding-left: 20px;
                }
                .timeline-item:nth-child(odd) .timeline-dot {
                    grid-column: 1;
                }
                .timeline-item:nth-child(odd) .timeline-empty {
                    display: none;
                }
                .timeline-item:nth-child(even) .timeline-empty {
                    display: none;
                }
                .timeline-item:nth-child(even) .timeline-dot {
                    grid-column: 1;
                }
                .timeline-item:nth-child(even) .timeline-content {
                    grid-column: 2;
                    padding-left: 20px;
                }
                .collections-grid {
                    grid-template-columns: 1fr;
                }
                .highlights-grid {
                    grid-template-columns: 1fr;
                }
                .visitor-grid {
                    grid-template-columns: 1fr 1fr;
                }
                .branches-list {
                    grid-template-columns: 1fr 1fr;
                }
                .gallery-grid {
                    grid-template-columns: 1fr 1fr;
                    grid-template-rows: auto;
                }
                .gallery-item {
                    grid-column: span 1 !important;
                    grid-row: span 1 !important;
                    height: 200px;
                }
                .posts-grid {
                    grid-template-columns: 1fr;
                }
                .contact-grid {
                    grid-template-columns: 1fr;
                }
                .contact-info-blocks {
                    grid-template-columns: 1fr;
                }
                .form-row {
                    grid-template-columns: 1fr;
                }
                .footer-grid {
                    grid-template-columns: 1fr;
                    gap: 32px;
                }
                .footer-bottom {
                    flex-direction: column;
                    text-align: center;
                }
                .history-feature {
                    padding: 30px 24px;
                }
            }

            @media (max-width: 480px) {
                .container {
                    padding: 0 20px;
                }
                .hero-content {
                    padding-left: 20px;
                    padding-right: 20px;
                }
                .visitor-grid {
                    grid-template-columns: 1fr;
                }
                .branches-list {
                    grid-template-columns: 1fr;
                    max-width: 300px;
                }
                .hero-actions {
                    flex-direction: column;
                }
                .btn-primary,
                .btn-outline {
                    text-align: center;
                    justify-content: center;
                }
            }


/* Language switcher */
.nav-lang {
    display: flex;
    align-items: center;
    gap: 4px;
}
.nav-lang-dropdown {
    position: relative;
}
.nav-lang-toggle {
    min-width: 72px;
    justify-content: center;
    padding: 8px 12px;
    border: 1px solid rgba(200, 150, 62, 0.35);
    color: var(--gold-light);
}
.nav-lang-toggle::after {
    display: none;
}
.nav-lang-toggle:hover,
.nav-lang-toggle[aria-expanded="true"] {
    background: rgba(200, 150, 62, 0.08);
    border-color: rgba(200, 150, 62, 0.6);
}
.nav-lang-menu {
    left: auto;
    right: 0;
    min-width: 110px;
    transform: translateY(-8px);
}
.nav-lang-menu.open {
    transform: translateY(0);
}
.nav-lang-menu li a {
    text-align: center;
    padding: 10px 16px;
}
.nav-lang a {
    font-family: var(--font-title);
    font-size: 0.62rem;
    letter-spacing: 0.15em;
    color: var(--stone);
    padding: 4px 7px;
    border: 1px solid transparent;
    transition: all var(--transition);
}
.nav-lang a:hover,
.nav-lang a.active-lang {
    color: var(--gold-light);
    border-color: rgba(200, 150, 62, 0.4);
}
html[lang="ar"] .nav-lang-toggle {
    font-family: var(--font-body-ar);
    letter-spacing: 0;
}


/* Pagination */
.pagination {
    margin-top: 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}
.pagination .page {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 10px;
    border: 1px solid rgba(200, 150, 62, 0.4);
    color: var(--gold-light);
    border-radius: 999px;
    transition: var(--transition);
    font-size: 0.95rem;
}
.pagination .page:hover {
    background: rgba(200, 150, 62, 0.15);
}
.pagination .page.active {
    background: var(--gold);
    color: var(--navy-deep);
    border-color: var(--gold);
}
.pagination .page.disabled {
    opacity: 0.5;
    pointer-events: none;
}
.pagination .page.dots {
    border-color: transparent;
}


.nav-logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    display: block;
}
.footer-logo-bottom .nav-logo-img {
    width: 28px;
    height: 28px;
    margin-right: 8px;
}
