*{ margin: 0; padding: 0; box-sizing: border-box; } 
html { scroll-behavior: smooth; } 
:root { --gold: #C8A84B; --gold-light: #E2C97E; --gold-soft: rgba(200,168,75,0.12); --gold-line: rgba(200,168,75,0.25); --bg: #0C0A08; --surface: #141210; --surface2: #1A1714; --text: #F0E8D6; --text-muted: rgba(240,232,214,0.45); --radius: 18px; --radius-lg: 28px; --radius-xl: 40px; }
body { background: var(--bg); color: var(--text); 
  font-family: 'Tajawal', sans-serif; 
  font-weight: 400; line-height: 2; overflow-x: 
  hidden; -webkit-font-smoothing: antialiased; word-spacing: 2px; }
  /* ── SCROLLBAR ── */
   ::-webkit-scrollbar { width: 4px; }
   ::-webkit-scrollbar-track { background: var(--bg); } 
   ::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 99px; }
  /* ════════════════════════════ NAV ════════════════════════════ */
   nav { position: fixed; top: 0; right: 0; left: 0; z-index: 100; display: flex; align-items: center; justify-content: space-between; padding: 0 48px; height: 70px; background: rgba(12,10,8,0.85); 
    backdrop-filter: blur(16px);
     border-bottom: 1px solid var(--gold-line); }
     .nav-brand { font-family: 'Amiri', serif; font-size: 20px; font-weight: 700; color: var(--gold-light); letter-spacing: 1px; }
     .nav-links { display: flex; gap: 32px; list-style: none; } .nav-links a { font-size: 14px; font-weight: 500; color: var(--text-muted); text-decoration: none; transition: color .25s; }
      .nav-links a:hover { color: var(--gold-light); }.nav-cta { padding: 9px 24px; background: var(--gold-soft); border: 1px solid var(--gold-line); border-radius: 99px; color: var(--gold-light); font-size: 14px; font-weight: 500; text-decoration: none; transition: background .25s, border-color .25s; white-space: nowrap; }
       .nav-cta:hover { background: rgba(200,168,75,0.2); border-color: var(--gold); }
     /* ════════════════════════════ HERO ════════════════════════════ */
      .hero { min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 120px 30px 80px; position: relative; overflow: hidden; 
      }/* subtle radial glow */ 
      .hero::before { content: ''; position: absolute; width: 700px; height: 700px; top: 50%; left: 50%; transform: translate(-50%, -55%); background: radial-gradient(circle, rgba(200,168,75,0.10) 0%, transparent 65%); pointer-events: none; }
      .hero-tag { display: inline-flex; align-items: center; gap: 10px; padding: 7px 20px; border: 1px solid var(--gold-line); border-radius: 99px; font-size: 12px; font-weight: 500; color: var(--gold); letter-spacing: 2px; margin-bottom: 36px; animation: up .8s both; } 
      .hero-tag span { width: 5px; height: 5px; background: var(--gold); border-radius: 50%; }
      .hero h1 { font-family: 'Amiri', serif; font-size: clamp(56px, 9vw, 108px); font-weight: 700; line-height: 1.35; color: var(--text); margin-bottom: 10px; animation: up .8s .1s both; }
      .hero h1 em { font-style: normal; color: var(--gold-light); }
      .hero-sub { font-size: clamp(14px, 1.8vw, 18px); font-weight: 300; color: var(--text-muted); letter-spacing: 3px; margin-bottom: 28px; animation: up .8s .18s both; }
      .hero-line { width: 48px; height: 1px; background: var(--gold); margin: 0 auto 28px; border-radius: 99px; animation: up .8s .24s both; }
      .hero-desc { max-width: 520px; font-size: 17px; font-weight: 300; line-height: 2.2; color: var(--text-muted); margin: 0 auto 48px; animation: up .8s .3s both; }
      .hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; animation: up .8s .38s both; }
      .btn { display: inline-flex; align-items: center; gap: 8px; padding: 15px 36px; border-radius: 99px; font-size: 15px; font-weight: 500; text-decoration: none; transition: transform .25s, box-shadow .25s, background .25s; cursor: pointer; border: none; } 
      .btn:hover { transform: translateY(-2px); }
      .btn-gold { background: linear-gradient(135deg, var(--gold), var(--gold-light)); 
        color: #0C0A08; box-shadow: 0 4px 24px rgba(200,168,75,0.25); }
         .btn-gold:hover { box-shadow: 0 10px 40px rgba(200,168,75,0.4); }
         .btn-outline { background: transparent; border: 1px solid var(--gold-line) !important; color: var(--text-muted); }
          .btn-outline:hover { border-color: var(--gold) !important; color: var(--gold-light); background: var(--gold-soft); }
        /* scroll indicator */ 
        .hero-scroll { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 6px; animation: up .8s .8s both; } 
        .hero-scroll-dot { width: 1px; height: 44px; background: linear-gradient(180deg, var(--gold), transparent); border-radius: 99px; animation: scroll-pulse 2s ease-in-out infinite; } @keyframes scroll-pulse { 50% { opacity: .3; transform: scaleY(.7); } }@keyframes up { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
        /* ════════════════════════════ BAND / TICKER ════════════════════════════ */ 

        .band { overflow: hidden; border-top: 1px solid var(--gold-line); border-bottom: 1px solid var(--gold-line); background: var(--surface); padding: 14px 0; } 
        .band-track { display: flex; animation: ticker 25s linear infinite; white-space: nowrap; } @keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
         .band-item { padding: 0 32px; font-size: 12px; font-weight: 500; letter-spacing: 3px; color: var(--text-muted); flex-shrink: 0; }
          .band-dot { color: var(--gold); font-size: 6px; }
          /* ════════════════════════════ SHARED LAYOUT ════════════════════════════ */ 
        .wrap { max-width: 1100px; margin: 0 auto; padding: 0 40px; }
        section { padding: 100px 0; }
        .label { display: inline-block; font-size: 11px; font-weight: 500; letter-spacing: 4px; color: var(--gold); text-transform: uppercase; margin-bottom: 16px; } 
        .heading { font-family: 'Amiri', serif; font-size: clamp(28px, 4vw, 50px); font-weight: 700; line-height: 1.65; color: var(--text); margin-bottom: 18px; } 
        .heading em { font-style: normal; color: var(--gold-light); }
         .body-text { font-size: 16px; font-weight: 300; line-height: 2.2; color: var(--text-muted); max-width: 540px; }/* reveal */ .rv { opacity: 0; transform: translateY(24px); transition: opacity .7s, transform .7s; }
          .rv.in { opacity: 1; transform: none; } 
          .rv.d1 { transition-delay: .08s; }
           .rv.d2 { transition-delay: .16s; }
            .rv.d3 { transition-delay: .24s; }
        /* ════════════════════════════ SERVICES ════════════════════════════ */ 
        #services { background: var(--bg); }
        .svc-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 56px; gap: 30px; flex-wrap: wrap; }
        .svc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 16px; }
        .svc-card { background: var(--surface); border: 1px solid var(--gold-line); border-radius: var(--radius-lg); padding: 44px 36px; transition: border-color .3s, transform .3s, .3s; position: relative; overflow: hidden; } 
        .svc-card::before { content: ''; position: absolute; top: 0; right: 0; left: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--gold), transparent); border-radius: 99px; opacity: 0; transition: opacity .3s; }
         .svc-card:hover { border-color: rgba(200,168,75,0.4); transform: translateY(-4px); background: var(--surface2); } 
         .svc-card:hover::before { opacity: 1; }.svc-num { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border: 1px solid var(--gold-line); border-radius: 12px; font-size: 13px; font-weight: 700; color: var(--gold); margin-bottom: 28px; background: var(--gold-soft); }
         .svc-title { font-family: 'Amiri', serif; font-size: 22px; font-weight: 700; line-height: 1.7; color: var(--text); margin-bottom: 14px; } 
         .svc-desc { font-size: 15px; font-weight: 300; line-height: 2.1; color: var(--text-muted); }
        /* ════════════════════════════ ABOUT / FEATURES ════════════════════════════ */ 
        #about { background: var(--surface); }
        .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; } 
        @media (max-width: 760px) { .about-grid { grid-template-columns: 1fr; gap: 50px; } }
        /* visual panel */
         .about-visual { background: var(--surface2); border: 1px solid var(--gold-line); border-radius: var(--radius-xl); aspect-ratio: 1; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; } 
         .about-visual::before { content: ''; position: absolute; width: 70%; height: 70%; border-radius: 50%; border: 1px solid var(--gold-line); } 
         .about-visual::after { content: ''; position: absolute; width: 45%; height: 45%; border-radius: 50%; background: radial-gradient(circle, rgba(200,168,75,0.15), transparent 70%); } 
         .about-monogram { position: relative; z-index: 1; font-family: 'Amiri', serif; font-size: 72px; font-weight: 700; color: var(--gold-light); opacity: 0.85; }/* feature items */ 
         .feat-list { display: flex; flex-direction: column; gap: 16px; margin-top: 40px; }
          .feat-item { display: flex; gap: 18px; align-items: flex-start; padding: 22px 24px; background: var(--bg); border: 1px solid var(--gold-line); border-radius: var(--radius); transition: border-color .3s; }
          .feat-item:hover { border-color: rgba(200,168,75,0.4); }
           .feat-dot { width: 8px; height: 8px; background: var(--gold); border-radius: 50%; flex-shrink: 0; margin-top: 7px; } 
          .feat-title { font-size: 16px; font-weight: 700; line-height: 1.8; color: var(--text); margin-bottom: 8px; } 
          .feat-body { font-size: 14px; font-weight: 300; color: var(--text-muted); line-height: 2.1; }
        /* ════════════════════════════ STATS ════════════════════════════ */
         #stats { background: var(--bg); padding: 70px 0; } 
         .stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; } 
         @media (max-width: 700px)
          { .stats-grid { grid-template-columns: repeat(2, 1fr); } } 
          .stat-card { background: var(--surface); border: 1px solid var(--gold-line); border-radius: var(--radius-lg); padding: 40px 28px; text-align: center; transition: transform .3s, border-color .3s; } 
          .stat-card:hover { transform: translateY(-3px); border-color: rgba(200,168,75,0.4); } 
          .stat-num { font-family: 'Amiri', serif; font-size: clamp(34px, 4vw, 50px); font-weight: 700; color: var(--gold-light); display: block; margin-bottom: 8px; line-height: 1; }
           .stat-label { font-size: 13px; font-weight: 500; letter-spacing: 1px; line-height: 1.8; color: var(--text-muted); }
           /* ════════════════════════════ CONTACT ════════════════════════════ */ 
           #contact { background: var(--surface); } .contact-inner { max-width: 640px; margin: 0 auto; text-align: center; } 
           .contact-card { background: var(--bg); border: 1px solid var(--gold-line); border-radius: var(--radius-xl); padding: 64px 52px; margin-top: 48px; position: relative; overflow: hidden; }
            .contact-card::before { content: ''; position: absolute; top: 0; right: 0; left: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
             .phone-number { display: block; font-family: 'Tajawal', sans-serif; font-size: clamp(28px, 5vw, 46px); font-weight: 700; letter-spacing: 4px; color: var(--gold-light); direction: ltr; text-decoration: none; margin: 28px 0; transition: color .25s; } 
             .phone-number:hover { color: var(--g1); } .contact-divider { width: 40px; height: 1px; background: var(--gold-line); margin: 24px auto; border-radius: 99px; } .contact-note { font-size: 15px; font-weight: 300; color: var(--text-muted); line-height: 2.2; margin-bottom: 36px; }
             /* ════════════════════════════ FOOTER ════════════════════════════ */ 
             footer { background: var(--surface2); border-top: 1px solid var(--gold-line); padding: 36px 40px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; } 
             .footer-brand { font-family: 'Amiri', serif; font-size: 18px; font-weight: 700; line-height: 1.8; color: var(--gold-light); } 
             .footer-copy { font-size: 13px; font-weight: 300; line-height: 1.8; color: var(--text-muted); }
        /* ════════════════════════════ RESPONSIVE ════════════════════════════ */
         @media (max-width: 900px) { nav { padding: 0 24px; } 
        
        .wrap { padding: 0 24px; }
         .contact-card { padding: 44px 28px; }
          footer { flex-direction: column; text-align: center; padding: 28px 24px; } }
         @media (max-width: 560px) { 
          .hero-actions { flex-direction: column; align-items: center; } .btn { width: 100%; justify-content: center; } }
    /* ════════════════════════════
 /* ════════════════════════════
   HAMBURGER MENU
════════════════════════════ */

/* ════════════════════════════
   HAMBURGER MENU
════════════════════════════ */

.hamburger{
  display:none;
  flex-direction:column;
  gap:6px;
  cursor:pointer;
  z-index:1001;
}

.hamburger span{
  width:28px;
  height:2px;
  background:var(--gold-light);
  border-radius:99px;
  transition:.3s;
}

/* MOBILE NAV */

@media (max-width:900px){

  .hamburger{
    display:flex;
  }

  .nav-links{
    position:fixed;
    top:70px;
    right:-100%;

    width:100%;
    height:calc(100vh - 70px);

    background:rgba(12,10,8,0.97);
    backdrop-filter:blur(18px);

    flex-direction:column;
    justify-content:center;
    align-items:center;

    gap:34px;

    transition:right .4s ease;
  }

  .nav-links.active{
    right:0;
  }

}
