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

        :root {
            --dark:      #0e0e0c;
            --dark2:     #161614;
            --cream:     #f0ebe0;
            --cream2:    #e8e2d4;
            --gold:      #b08d52;
            --gold-light:#c9a96b;
            --text-light:#f0ede6;
            --text-muted-light: #9a9080;
            --text-dark: #1a1714;
            --text-muted-dark:  #7a7060;
            --border-dark:  rgba(176,141,82,0.18);
            --border-light: rgba(26,23,20,0.12);
            --serif: 'Playfair Display', Georgia, serif;
            --sans:  'Rubik', sans-serif;
        }

        html { scroll-behavior: smooth; }
        body { font-family: var(--sans); background: var(--dark); color: var(--text-light); line-height: 1.7; }

        /* ── BLUEPRINT TEXTURE ── */
        .blueprint {
            background-color: var(--dark);
            background-image:
                linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
            background-size: 48px 48px;
        }

        /* ══════════════ NAV ══════════════ */
        nav {
            position: fixed;
            top: 0; left: 0; right: 0;
            z-index: 200;
            padding: 0 3rem;
            height: 68px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: var(--cream);
            border-bottom: 1px solid var(--border-light);
        }

        .nav-logo {
            font-family: var(--serif);
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--text-dark);
            letter-spacing: 0.12em;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 2rem;
            list-style: none;
        }

        .nav-links a {
            font-size: 0.95rem;
            font-weight: 500;
            color: var(--text-muted-dark);
            text-decoration: none;
            transition: color 0.2s;
        }

        .nav-links a:hover { color: var(--text-dark); }

        .nav-cta {
            background: #b08d52 !important;
            color: #0e0e0c !important;
            padding: 0.55rem 1.4rem;
            font-weight: 700;
            font-size: 0.9rem;
            letter-spacing: 0.04em;
            transition: background 0.2s !important;
            border-radius: 0;
        }

        .nav-cta:hover { background: #c9a96b !important; }

        /* ══════════════ HERO ══════════════ */
        #hero {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 7rem 4rem 4rem;
            position: relative;
            overflow: hidden;
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            background-image: url('../images/hero-bg.webp');
            background-size: cover;
            background-position: center;
            filter: brightness(0.18) saturate(0.4);
        }

        .hero-blueprint {
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px);
            background-size: 48px 48px;
        }

        .hero-inner {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: 420px 1fr;
            direction: ltr; /* photo left, text right */
            gap: 5rem;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
        }

        /* restore RTL inside content columns */
        .hero-text-col, .hero-photo-col { direction: rtl; }

        /* Photo side */
        .hero-photo-col {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        .hero-photo-frame {
            width: 100%;
            position: relative;
            overflow: hidden;
        }

        .hero-photo-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 1.5rem 1.2rem 1.2rem;
            background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, transparent 100%);
            text-align: center;
            direction: rtl;
        }

        .hero-photo-overlay .name {
            font-family: var(--serif);
            font-size: 1.05rem;
            color: var(--text-light);
            font-weight: 400;
            letter-spacing: 0.08em;
        }

        .hero-photo-overlay .title {
            font-size: 0.7rem;
            color: var(--gold);
            letter-spacing: 0.12em;
            margin-top: 0.2rem;
            font-weight: 400;
        }

        .hero-photo-frame img {
            width: 100%;
            aspect-ratio: 4/5;
            object-fit: cover;
            object-position: center 30%;
            display: block;
            filter: grayscale(100%) contrast(1.1) brightness(0.88);
            transition: filter 0.7s ease;
            cursor: pointer;
        }

        .hero-photo-frame:hover img {
            filter: grayscale(0%) contrast(1) brightness(1);
        }

        .hero-photo-caption {
            margin-top: 1rem;
            text-align: center;
        }

        .hero-photo-caption .name {
            font-family: var(--serif);
            font-size: 1.1rem;
            color: var(--text-light);
            font-weight: 700;
        }

        .hero-photo-caption .title {
            font-size: 0.78rem;
            color: var(--text-muted-light);
            letter-spacing: 0.08em;
            margin-top: 0.2rem;
        }

        /* Text side */
        .hero-text-col {
            display: flex;
            flex-direction: column;
        }

        .hero-brand-block {
            display: flex;
            flex-direction: column;
            align-items: center;
            margin-bottom: 1.6rem;
            text-align: center;
        }

        .hero-tag {
            font-family: var(--sans);
            font-size: 0.66rem;
            font-weight: 400;
            color: var(--gold);
            letter-spacing: 0.3em;
            text-transform: uppercase;
            margin-bottom: 0.6rem;
            direction: ltr;
            text-align: center;
        }

        .hero-brand {
            font-family: var(--serif);
            font-size: clamp(4.5rem, 10vw, 9rem);
            font-weight: 400;
            line-height: 0.88;
            color: var(--text-light);
            letter-spacing: 0.1em;
            text-align: center;
        }

        .hero-tagline {
            font-family: var(--sans);
            font-size: clamp(0.85rem, 1.4vw, 1.05rem);
            font-weight: 300;
            color: var(--text-muted-light);
            line-height: 2;
            margin-bottom: 2.8rem;
            direction: ltr;
            text-align: center;
            letter-spacing: 0.06em;
            text-transform: uppercase;
        }

        .hero-ctas {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            margin-bottom: 3.5rem;
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: var(--gold);
            color: var(--dark);
            padding: 0.85rem 2rem;
            font-family: var(--sans);
            font-size: 0.88rem;
            font-weight: 700;
            text-decoration: none;
            letter-spacing: 0.04em;
            transition: background 0.2s, transform 0.2s;
        }

        .btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }

        .btn-outline {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            border: 1px solid rgba(255,255,255,0.3);
            color: var(--text-light);
            padding: 0.85rem 2rem;
            font-family: var(--sans);
            font-size: 0.88rem;
            font-weight: 500;
            text-decoration: none;
            letter-spacing: 0.04em;
            transition: border-color 0.2s, background 0.2s;
        }

        .btn-outline:hover { border-color: var(--gold); background: rgba(176,141,82,0.08); }

        .hero-stats {
            display: flex;
            gap: 2.5rem;
            padding-top: 2rem;
            border-top: 1px solid var(--border-dark);
        }

        .hero-stat-num {
            font-family: var(--serif);
            font-size: 2rem;
            font-weight: 700;
            color: var(--gold);
            line-height: 1;
        }

        .hero-stat-label {
            font-size: 0.75rem;
            color: var(--text-muted-light);
            margin-top: 0.3rem;
            letter-spacing: 0.04em;
        }

        .scroll-hint {
            position: absolute;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            z-index: 2;
        }

        .scroll-line {
            width: 1px;
            height: 44px;
            background: linear-gradient(to bottom, var(--gold), transparent);
            margin: 0 auto;
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse { 0%,100%{opacity:.3} 50%{opacity:1} }

        /* ══════════════ SHARED ══════════════ */
        .section-dark  { background: var(--dark2); }
        .section-cream { background: var(--cream); color: var(--text-dark); }
        .section-cream2{ background: var(--cream2); color: var(--text-dark); }

        .inner { max-width: 1200px; margin: 0 auto; }

        section, .section-wrap { padding: 7rem 4rem; }

        .section-label-dark {
            font-size: 0.72rem;
            font-weight: 600;
            color: var(--gold);
            letter-spacing: 0.32em;
            text-transform: uppercase;
            margin-bottom: 0.8rem;
        }

        .section-label-light {
            font-size: 0.72rem;
            font-weight: 600;
            color: var(--gold);
            letter-spacing: 0.32em;
            text-transform: uppercase;
            margin-bottom: 0.8rem;
        }

        .section-title-dark {
            font-family: var(--sans);
            font-size: clamp(1.8rem, 3.5vw, 2.6rem);
            font-weight: 700;
            line-height: 1.25;
            color: var(--text-light);
            margin-bottom: 1.5rem;
        }

        .section-title-light {
            font-family: var(--sans);
            font-size: clamp(1.8rem, 3.5vw, 2.6rem);
            font-weight: 700;
            line-height: 1.25;
            color: var(--text-dark);
            margin-bottom: 1.5rem;
        }

        /* ══════════════ STORY ══════════════ */
        #story { background: var(--cream); }

        .story-grid {
            display: grid;
            grid-template-columns: 1fr 1fr 280px;
            gap: 5rem;
            align-items: start;
            max-width: 1200px;
            margin: 0 auto;
        }

        .story-text p {
            font-size: 1rem;
            color: var(--text-muted-dark);
            line-height: 1.95;
            margin-bottom: 1.4rem;
        }

        .story-text p strong { color: var(--text-dark); font-weight: 700; }

        .story-milestones { display: flex; flex-direction: column; }

        .milestone {
            display: grid;
            grid-template-columns: 110px 1fr;
            gap: 1.2rem;
            padding: 1.6rem 0;
            border-bottom: 1px solid var(--border-light);
        }

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

        .milestone-year {
            font-size: 0.73rem;
            color: var(--gold);
            font-weight: 700;
            letter-spacing: 0.04em;
            line-height: 1.4;
            padding-top: 0.15rem;
        }

        .milestone-text { font-size: 0.9rem; color: var(--text-muted-dark); line-height: 1.7; }

        .milestone-text strong {
            color: var(--text-dark);
            font-weight: 700;
            display: block;
            margin-bottom: 0.2rem;
            font-size: 0.93rem;
        }

        .story-portrait {
            position: relative;
            overflow: hidden;
        }

        .portrait-img {
            width: 100%;
            aspect-ratio: 3/4;
            object-fit: cover;
            object-position: top center;
            display: block;
            filter: grayscale(100%) contrast(1.05) brightness(0.88);
            transition: transform 0.6s ease, filter 0.6s ease;
        }

        .story-portrait:hover .portrait-img {
            transform: scale(1.05);
            filter: grayscale(80%) contrast(1.05) brightness(0.95);
        }

        .portrait-secondary-DISABLED {
            position: absolute;
            bottom: -1.5rem;
            left: -1.5rem;
            width: 55%;
            aspect-ratio: 4/3;
            object-fit: cover;
            border: 3px solid var(--cream);
            filter: grayscale(100%) brightness(0.85);
        }

        /* ══════════════ PHOTO STRIP ══════════════ */
        #photo-strip-wrap {
            background: var(--dark2);
            padding: 3.5rem 0 0;
            border-top: 1px solid var(--border-dark);
        }
        .photo-strip-title {
            text-align: center;
            font-family: var(--serif);
            font-size: 2rem;
            color: var(--gold);
            letter-spacing: 0.04em;
            margin-bottom: 0.4rem;
            font-weight: 500;
        }
        .photo-strip-sub {
            text-align: center;
            font-size: 0.72rem;
            color: var(--text-muted-light);
            letter-spacing: 0.32em;
            text-transform: uppercase;
            margin-bottom: 2.8rem;
        }
        #photo-strip {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            height: 340px;
            overflow: hidden;
        }

        .strip-photo {
            overflow: hidden;
            position: relative;
            cursor: pointer;
        }

        .strip-photo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease, filter 0.4s;
            display: block;
        }

        .strip-photo:hover img { transform: scale(1.06); }

        .strip-photo-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.15) 55%, transparent 100%);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 1.4rem 1.2rem;
            pointer-events: none;
        }
        .strip-photo-name {
            font-family: var(--serif);
            font-size: 1.05rem;
            color: #fff;
            line-height: 1.25;
            margin-bottom: 0.3rem;
        }
        .strip-photo-meta {
            font-size: 0.68rem;
            color: var(--gold-light);
            letter-spacing: 0.18em;
            text-transform: uppercase;
        }
        .strip-photo-placeholder {
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 30% 30%, #00ff66 0%, #0a3d1f 40%, #000 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.6s ease;
        }
        .strip-photo:hover .strip-photo-placeholder { transform: scale(1.06); }
        .strip-photo-placeholder-text {
            font-family: var(--serif);
            font-size: 1.4rem;
            font-weight: 700;
            color: #00ff66;
            letter-spacing: 0.05em;
            text-shadow: 0 0 18px rgba(0,255,102,0.5);
        }
        @media (max-width: 1100px) {
            #photo-strip { grid-template-columns: repeat(3, 1fr); height: auto; }
            .strip-photo { aspect-ratio: 4 / 5; }
        }
        @media (max-width: 640px) {
            #photo-strip { grid-template-columns: repeat(2, 1fr); }
        }

        /* ══════════════ SERVICES ══════════════ */
        #services-section { background: var(--dark2); }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1px;
            background: var(--border-dark);
            border: 1px solid var(--border-dark);
            margin-top: 3.5rem;
        }

        .service-card {
            background: var(--dark2);
            padding: 2.5rem;
            transition: background 0.3s;
        }

        .service-card:hover { background: #1e1e1b; }

        .service-line {
            width: 36px;
            height: 2px;
            background: var(--gold);
            margin-bottom: 1.8rem;
        }

        .service-name {
            font-family: var(--serif);
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--text-light);
            margin-bottom: 0.8rem;
        }

        .service-desc {
            font-size: 0.88rem;
            color: var(--text-muted-light);
            line-height: 1.85;
            margin-bottom: 1.4rem;
        }

        .service-items { display: flex; flex-direction: column; gap: 0.5rem; }

        .service-item {
            font-size: 0.8rem;
            color: var(--text-muted-light);
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }

        .service-item::before {
            content: '';
            width: 4px;
            height: 4px;
            background: var(--gold);
            border-radius: 50%;
            flex-shrink: 0;
        }

        /* ══════════════ DOMAINS ══════════════ */
        #domains { background: var(--cream2); }

        .domains-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
            margin-top: 3.5rem;
        }
        @media (max-width: 1100px) { .domains-grid { grid-template-columns: repeat(2, 1fr); } }
        @media (max-width: 600px) { .domains-grid { grid-template-columns: 1fr; } }

        .domain-card {
            background: var(--cream);
            border: 1px solid var(--border-light);
            padding: 2.5rem;
            position: relative;
            overflow: hidden;
            transition: box-shadow 0.3s;
        }

        .domain-card:hover { box-shadow: 0 8px 32px rgba(26,23,20,0.1); }

        .domain-card::before {
            content: '';
            position: absolute;
            top: 0; right: 0;
            width: 3px; height: 0;
            background: var(--gold);
            transition: height 0.4s;
        }

        .domain-card:hover::before { height: 100%; }

        .domain-number {
            font-family: var(--serif);
            font-size: 3rem;
            font-weight: 900;
            color: rgba(176,141,82,0.15);
            line-height: 1;
            margin-bottom: 1rem;
        }

        .domain-name {
            font-family: var(--serif);
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 0.8rem;
        }

        .domain-desc {
            font-size: 0.88rem;
            color: var(--text-muted-dark);
            line-height: 1.85;
        }

        /* ══════════════ WHY ══════════════ */
        #why { background: var(--cream); }

        .why-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            margin-top: 3.5rem;
            align-items: start;
        }

        .why-quote {
            font-family: var(--serif);
            font-size: clamp(1.2rem, 2.2vw, 1.65rem);
            font-style: italic;
            font-weight: 400;
            line-height: 1.72;
            color: var(--text-muted-dark);
            border-right: 3px solid var(--gold);
            padding-right: 2rem;
        }

        .why-quote strong { color: var(--text-dark); font-weight: 700; font-style: normal; }

        .why-points { display: flex; flex-direction: column; gap: 2rem; }

        .why-point { display: flex; gap: 1.2rem; align-items: flex-start; }

        .why-point-num {
            font-family: var(--serif);
            font-size: 0.78rem;
            font-weight: 700;
            color: var(--gold);
            padding-top: 0.15rem;
            min-width: 26px;
        }

        .why-point-text { font-size: 0.93rem; color: var(--text-muted-dark); line-height: 1.8; }

        .why-point-text strong {
            color: var(--text-dark);
            font-weight: 700;
            display: block;
            margin-bottom: 0.2rem;
        }

        /* ══════════════ CLIENTS ══════════════ */
        #clients {
            padding: 3.5rem 0;
            background: var(--dark2);
            border-top: 1px solid var(--border-dark);
            border-bottom: 1px solid var(--border-dark);
            overflow: hidden;
        }

        .clients-label {
            font-size: 0.7rem;
            font-weight: 600;
            color: var(--text-muted-light);
            letter-spacing: 0.32em;
            text-transform: uppercase;
            text-align: center;
            margin-bottom: 2rem;
        }

        .marquee-wrapper {
            position: relative;
            overflow: hidden;
            direction: ltr;
        }

        .marquee-wrapper::before,
        .marquee-wrapper::after {
            content: '';
            position: absolute;
            top: 0;
            width: 120px;
            height: 100%;
            z-index: 2;
            pointer-events: none;
        }

        .marquee-wrapper::before { left: 0; background: linear-gradient(to right, var(--dark2), transparent); }
        .marquee-wrapper::after  { right: 0; background: linear-gradient(to left, var(--dark2), transparent); }

        .marquee-track {
            display: flex;
            width: max-content;
            animation: marquee 28s linear infinite;
        }

        .marquee-track:hover { animation-play-state: paused; }

        @keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

        .client-item {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0 1.8rem;
            white-space: nowrap;
            font-family: var(--serif);
            font-size: 0.95rem;
            color: var(--text-muted-light);
            height: 90px;
            letter-spacing: 0.06em;
            transition: transform 0.25s;
        }

        .client-item:hover { color: var(--gold); transform: scale(1.04); }

        .client-logo-img {
            height: 60px;
            width: auto;
            max-width: 140px;
            object-fit: contain;
            background: #fff;
            padding: 10px 16px;
            border-radius: 8px;
            opacity: 0.9;
            transition: opacity 0.3s;
            display: block;
            vertical-align: middle;
            box-shadow: 0 2px 10px rgba(0,0,0,0.15);
        }

        .client-item:hover .client-logo-img { opacity: 1; }

        .client-item.logo-failed .client-logo-img { display: none; }
        .client-item.logo-failed::after {
            content: attr(data-name);
            font-family: var(--serif);
            font-size: 0.92rem;
            color: var(--text-muted-light);
            letter-spacing: 0.08em;
        }

        /* ══════════════ METHOD ══════════════ */
        #method { background: var(--cream); }

        .method-header { max-width: 600px; margin-bottom: 3.5rem; }

        .method-header p {
            font-size: 1rem;
            color: var(--text-muted-dark);
            line-height: 1.9;
            margin-top: 1rem;
        }

        .method-header p strong { color: var(--text-dark); }

        .modules-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1px;
            background: var(--border-light);
            border: 1px solid var(--border-light);
        }

        .module-card {
            background: var(--cream);
            padding: 1.6rem;
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            transition: background 0.25s;
        }

        .module-card:hover { background: #ede7d8; }

        .module-num {
            font-family: var(--serif);
            font-size: 0.68rem;
            font-weight: 700;
            color: var(--gold);
            letter-spacing: 0.15em;
        }

        .module-name { font-size: 0.92rem; font-weight: 700; color: var(--text-dark); line-height: 1.3; }
        .module-name-en { font-size: 0.72rem; color: var(--text-muted-dark); font-weight: 400; letter-spacing: 0.04em; }

        .module-card.featured {
            grid-column: span 3;
            flex-direction: row;
            align-items: center;
            gap: 2rem;
            background: #e8e1d0;
        }

        .module-card.featured:hover { background: #e2dac8; }
        .module-card.featured .module-name { font-size: 1rem; }

        .module-desc {
            font-size: 0.83rem;
            color: var(--text-muted-dark);
            line-height: 1.7;
            flex: 1;
        }

        /* ══════════════ TRACKS ══════════════ */
        #tracks-section { background: var(--dark2); }

        .tracks-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 3.5rem;
        }

        .track-card {
            border: 1px solid var(--border-dark);
            padding: 2.5rem;
            display: flex;
            flex-direction: column;
            transition: border-color 0.3s, background 0.3s;
        }

        .track-card:hover { border-color: rgba(176,141,82,0.45); background: rgba(176,141,82,0.04); }

        .track-badge {
            display: inline-block;
            font-size: 0.68rem;
            font-weight: 700;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: var(--gold);
            border: 1px solid var(--border-dark);
            padding: 0.28rem 0.75rem;
            margin-bottom: 1.6rem;
            width: fit-content;
        }

        .track-name {
            font-family: var(--serif);
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--text-light);
            margin-bottom: 0.35rem;
        }

        .track-sub {
            font-size: 0.8rem;
            color: var(--gold);
            font-weight: 600;
            margin-bottom: 1.2rem;
            letter-spacing: 0.04em;
        }

        .track-desc {
            font-size: 0.88rem;
            color: var(--text-muted-light);
            line-height: 1.85;
            margin-bottom: 1.8rem;
            flex: 1;
        }

        .track-items {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            padding-top: 1.4rem;
            border-top: 1px solid var(--border-dark);
        }

        .track-item {
            font-size: 0.8rem;
            color: var(--text-muted-light);
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }

        .track-item::before {
            content: '';
            width: 4px; height: 4px;
            background: var(--gold);
            border-radius: 50%;
            flex-shrink: 0;
        }

        /* ══════════════ TESTIMONIALS ══════════════ */
        #testimonials { background: var(--cream2); }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 3.5rem;
        }

        .testimonial-card {
            background: var(--cream);
            border: 1px solid var(--border-light);
            padding: 2.4rem;
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
            transition: box-shadow 0.3s;
        }

        .testimonial-card:hover { box-shadow: 0 6px 28px rgba(26,23,20,0.09); }

        .testimonial-quote-mark {
            font-family: var(--serif);
            font-size: 3rem;
            color: var(--gold);
            line-height: 0.85;
            opacity: 0.5;
        }

        .testimonial-text {
            font-size: 0.92rem;
            color: var(--text-muted-dark);
            line-height: 1.9;
            flex: 1;
            font-style: italic;
        }

        .testimonial-author {
            padding-top: 1.1rem;
            border-top: 1px solid var(--border-light);
        }

        .testimonial-name { font-size: 0.88rem; font-weight: 700; color: var(--text-dark); }
        .testimonial-role { font-size: 0.75rem; color: var(--gold); margin-top: 0.2rem; }

        /* ══════════════ CONTACT ══════════════ */
        #contact {
            background: var(--dark);
            position: relative;
            overflow: hidden;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 7rem;
            align-items: start;
            max-width: 1200px;
            margin: 0 auto;
        }

        /* RIGHT — text side */
        .contact-text { }

        .contact-label {
            font-size: 0.7rem;
            font-weight: 600;
            color: var(--gold);
            letter-spacing: 0.3em;
            text-transform: uppercase;
            margin-bottom: 1.8rem;
        }

        .contact-heading {
            font-family: var(--sans);
            font-size: clamp(2.2rem, 4vw, 3.4rem);
            font-weight: 700;
            color: var(--text-light);
            line-height: 1.15;
            margin-bottom: 1.6rem;
        }

        .contact-heading span { color: var(--gold); }

        .contact-desc {
            font-size: 0.95rem;
            color: var(--text-muted-light);
            line-height: 1.9;
            margin-bottom: 3rem;
            max-width: 400px;
        }

        .contact-info { display: flex; flex-direction: column; gap: 1rem; }

        .contact-info-item {
            display: flex;
            align-items: center;
            gap: 0.9rem;
            font-size: 0.88rem;
            color: var(--text-muted-light);
            direction: ltr;
            justify-content: flex-end;
        }

        .contact-info-item a {
            color: var(--text-muted-light);
            text-decoration: none;
            transition: color 0.2s;
        }

        .contact-info-item a:hover { color: var(--gold); }

        .contact-info-icon {
            width: 28px;
            height: 28px;
            border: 1px solid var(--border-dark);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.75rem;
            color: var(--gold);
            flex-shrink: 0;
        }

        /* LEFT — form side */
        .contact-form { display: flex; flex-direction: column; gap: 0; }

        .form-field {
            position: relative;
            padding-bottom: 2.2rem;
        }

        .form-field label {
            display: block;
            font-size: 0.72rem;
            color: var(--text-muted-light);
            letter-spacing: 0.1em;
            margin-bottom: 0.6rem;
            font-weight: 400;
        }

        .form-field input,
        .form-field select {
            width: 100%;
            background: transparent;
            border: none;
            border-bottom: 1px solid rgba(255,255,255,0.15);
            padding: 0.7rem 0;
            color: var(--text-light);
            font-family: var(--sans);
            font-size: 0.95rem;
            font-weight: 300;
            outline: none;
            transition: border-color 0.2s;
            -webkit-appearance: none;
            direction: rtl;
        }

        .form-field input:focus,
        .form-field select:focus {
            border-bottom-color: var(--gold);
        }

        .form-field select {
            cursor: pointer;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23b08d52' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: left 0 center;
            padding-left: 1.2rem;
        }

        .form-field select option {
            background: var(--dark2);
            color: var(--text-light);
        }

        .form-submit {
            margin-top: 0.5rem;
            display: inline-flex;
            align-items: center;
            gap: 0.7rem;
            background: var(--gold);
            color: var(--dark);
            padding: 1rem 2.2rem;
            font-family: var(--sans);
            font-size: 0.9rem;
            font-weight: 700;
            border: none;
            cursor: pointer;
            letter-spacing: 0.04em;
            text-decoration: none;
            transition: background 0.2s, transform 0.2s;
            width: 100%;
            justify-content: center;
        }

        .form-submit:hover {
            background: var(--gold-light);
            transform: translateY(-1px);
        }

        /* ══════════════ FOOTER ══════════════ */
        footer {
            background: var(--dark);
            border-top: 1px solid var(--border-dark);
            padding: 2rem 4rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .footer-logo {
            font-family: var(--serif);
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--text-light);
            letter-spacing: 0.12em;
        }

        .footer-links { display: flex; gap: 1.8rem; }

        .footer-links a {
            font-size: 0.8rem;
            color: var(--text-muted-light);
            text-decoration: none;
            transition: color 0.2s;
        }

        .footer-links a:hover { color: var(--gold); }

        .footer-copy { font-size: 0.78rem; color: var(--text-muted-light); }

        /* ══════════════ FLOATING CTA ══════════════ */
        .floating-wrap {
            position: fixed;
            bottom: 2rem;
            left: 2rem;
            z-index: 300;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 0.5rem;
        }

        .floating-menu {
            display: flex;
            flex-direction: column;
            gap: 0.4rem;
            opacity: 0;
            transform: translateY(10px);
            pointer-events: none;
            transition: opacity 0.25s, transform 0.25s;
        }

        .floating-wrap.open .floating-menu {
            opacity: 1;
            transform: translateY(0);
            pointer-events: all;
        }

        .floating-menu-item {
            display: flex;
            align-items: center;
            gap: 0.65rem;
            background: var(--dark2);
            border: 1px solid var(--border-dark);
            color: var(--text-light);
            padding: 0.65rem 1.1rem;
            font-family: var(--sans);
            font-size: 0.82rem;
            font-weight: 500;
            text-decoration: none;
            white-space: nowrap;
            transition: background 0.2s, border-color 0.2s;
            direction: rtl;
        }

        .floating-menu-item:hover {
            background: rgba(176,141,82,0.12);
            border-color: rgba(176,141,82,0.4);
            color: var(--gold);
        }

        .floating-menu-icon {
            font-size: 1rem;
            width: 18px;
            text-align: center;
        }

        .floating-cta {
            background: var(--gold);
            color: var(--dark);
            padding: 0.85rem 1.8rem;
            font-family: var(--sans);
            font-size: 0.88rem;
            font-weight: 700;
            border: none;
            cursor: pointer;
            letter-spacing: 0.05em;
            box-shadow: 0 4px 20px rgba(176,141,82,0.45);
            transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
        }

        .floating-cta:hover {
            background: var(--gold-light);
            transform: translateY(-2px);
            box-shadow: 0 8px 28px rgba(176,141,82,0.55);
        }

        /* ══════════════ HAMBURGER ══════════════ */
        .hamburger {
            display: none;
            flex-direction: column;
            justify-content: center;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 4px;
        }

        .hamburger span {
            display: block;
            width: 24px;
            height: 2px;
            background: var(--text-dark);
            transition: transform 0.3s, opacity 0.3s;
        }

        .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: 68px;
            left: 0;
            right: 0;
            background: var(--cream);
            border-bottom: 1px solid var(--border-light);
            z-index: 199;
            flex-direction: column;
            padding: 0.5rem 1.5rem 1.5rem;
        }

        .mobile-menu a {
            font-size: 1rem;
            font-weight: 500;
            color: var(--text-muted-dark);
            text-decoration: none;
            padding: 1rem 0;
            border-bottom: 1px solid var(--border-light);
            transition: color 0.2s;
            direction: rtl;
        }

        .mobile-menu a:last-child { border-bottom: none; }
        .mobile-menu a:hover { color: var(--text-dark); }
        .mobile-menu-cta { color: var(--gold) !important; font-weight: 700 !important; }
        .mobile-menu.open { display: flex; }

        /* ══════════════ RESPONSIVE ══════════════ */
        @media (max-width: 900px) {
            nav { padding: 0 1.5rem; }
            .nav-links { display: none; }
            .hamburger { display: flex; }
            section, .section-wrap { padding: 5rem 1.5rem; }
            .hero-inner { grid-template-columns: 1fr; gap: 3rem; direction: rtl; }
            .hero-photo-col { order: -1; }
            .hero-photo-frame img { aspect-ratio: 4/3; }
            .hero-brand { font-size: 4rem; }
            #hero { padding: 7rem 1.5rem 4rem; }
            .story-grid { grid-template-columns: 1fr; gap: 3rem; }
            .story-portrait { display: none; }
            .services-grid, .domains-grid, .tracks-grid,
            .testimonials-grid { grid-template-columns: 1fr; }
            .modules-grid { grid-template-columns: repeat(2,1fr); }
            .module-card.featured { grid-column: span 1; flex-direction: column; gap: 0.5rem; }
            .module-card.featured .module-desc { display: none; }
            .why-grid { grid-template-columns: 1fr; gap: 3rem; }
            .floating-cta { bottom: 1rem; left: 1rem; padding: 0.7rem 1.4rem; font-size: 0.82rem; }
            footer { flex-direction: column; gap: 1rem; text-align: center; }
            .contact-grid { grid-template-columns: 1fr; gap: 3.5rem; }
            .contact-info-item { justify-content: flex-start; direction: rtl; }
            .contact-info-item .contact-info-icon { order: -1; }
        }