:root {
    --ink: #1a0b3a;          /* deep purple */
    --ink-2: #2a1759;        /* slightly lighter deep purple */
    --ink-3: #3a2370;        /* mid purple */
    --plum: #5e2b8a;         /* royal purple */
    --orchid: #b576a8;       /* mauve/pink */
    --rose: #d99cc8;         /* light pink */
    --blush: #f5e6f0;        /* very light pink wash */
    --gold: #d9b46c;         /* warm accent for hajj/heritage */
    --cream: #fbf7f4;
    --paper: #fffdfb;
    --line: rgba(26, 11, 58, 0.10);
  }
  * { box-sizing: border-box; margin: 0; padding: 0; }
  html, body { background: var(--paper); color: var(--ink); font-family: 'Inter', system-ui, sans-serif; -webkit-font-smoothing: antialiased; scroll-behavior: smooth; }
  body { overflow-x: hidden; }
  a { color: inherit; text-decoration: none; }
  img { display: block; max-width: 100%; }
  .serif { font-family: 'Cormorant Garamond', 'Times New Roman', serif; font-weight: 500; letter-spacing: -0.01em; }
  .arabic { font-family: 'Amiri', serif; }

  /* ---------- TOP BAR ---------- */
  .topbar {
    background: var(--ink);
    color: rgba(255,255,255,0.78);
    font-size: 12.5px;
    letter-spacing: 0.04em;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  .topbar .row { display: flex; justify-content: space-between; align-items: center; max-width: 1320px; margin: 0 auto; padding: 0 32px; gap: 24px; }
  .topbar .lic { display: flex; gap: 18px; }
  .topbar .lic span b { color: var(--rose); font-weight: 600; margin-right: 4px; letter-spacing: 0.1em; font-size: 11px; }
  .topbar .contact { display: flex; gap: 22px; align-items: center; }
  .topbar .contact a { display: inline-flex; align-items: center; gap: 7px; }
  .topbar .contact a:hover { color: var(--rose); }
  .topbar svg { width: 13px; height: 13px; stroke: currentColor; fill: none; stroke-width: 1.6; }

  /* ---------- NAV ---------- */
  nav.main {
    position: sticky; top: 0; z-index: 50;
    background: rgba(255,253,251,0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
  }
  nav.main .row { display: grid; grid-template-columns: auto 1fr auto; align-items: center; max-width: 1320px; margin: 0 auto; padding: 14px 32px; gap: 40px; }
  .brand-lockup { display: flex; align-items: center; gap: 14px; }
  .brand-lockup .a-mark {
    width: 48px; height: 48px;
    display: grid; place-items: center;
    background: linear-gradient(135deg, #fff, var(--blush));
    border-radius: 50%;
    border: 1px solid var(--line);
    flex-shrink: 0;
  }
  .brand-lockup .a-mark img { width: 28px; height: 28px; object-fit: contain; }
  .brand-lockup .a-text { display: flex; flex-direction: column; line-height: 1.1; }
  .brand-lockup .a-text .a-name { font-family: 'Cormorant Garamond', serif; font-weight: 600; font-size: 22px; color: var(--ink); letter-spacing: -0.01em; }
  .brand-lockup .a-text .a-tag { font-size: 10.5px; letter-spacing: 0.22em; color: var(--plum); text-transform: uppercase; margin-top: 3px; }

  .nav-links { display: flex; justify-content: center; gap: 36px; }
  .nav-links a { font-size: 14px; font-weight: 500; color: var(--ink-2); position: relative; padding: 8px 0; }
  .nav-links a:hover { color: var(--plum); }
  .nav-links a.has-menu::after { content: ""; display: inline-block; width: 6px; height: 6px; border-right: 1.4px solid currentColor; border-bottom: 1.4px solid currentColor; transform: rotate(45deg) translateY(-2px); margin-left: 7px; opacity: 0.55; }

  .nav-cta { display: flex; align-items: center; gap: 14px; }

  /* Hamburger button (hidden on desktop) */
  .hamburger { display: none; width: 44px; height: 44px; background: transparent; border: 1px solid var(--line); border-radius: 10px;
    cursor: pointer; padding: 0; flex-direction: column; align-items: center; justify-content: center; gap: 5px; }
  .hamburger span { display: block; width: 20px; height: 1.6px; background: var(--ink); border-radius: 2px; transition: transform .25s ease, opacity .2s ease; }
  .hamburger.open span:nth-child(1) { transform: translateY(6.6px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: translateY(-6.6px) rotate(-45deg); }

  /* Mobile drawer */
  .mobile-drawer { display: none; position: absolute; left: 0; right: 0; top: 100%; background: var(--paper);
    border-top: 1px solid var(--line); padding: 16px 24px 24px; flex-direction: column; gap: 4px;
    box-shadow: 0 20px 40px rgba(38,18,57,0.08); z-index: 50; }
  .mobile-drawer.open { display: flex; }
  .mobile-drawer a { padding: 14px 8px; font-size: 15px; font-weight: 500; color: var(--ink-2);
    border-bottom: 1px solid var(--line); }
  .mobile-drawer a:last-of-type { border-bottom: 0; }
  .mobile-drawer .drawer-cta { margin-top: 12px; }
  nav.main { position: relative; }
  .btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 12px 22px;
    border-radius: 999px;
    font-size: 13.5px; font-weight: 600; letter-spacing: 0.01em;
    border: 1px solid transparent;
    cursor: pointer; transition: all 0.2s ease;
    white-space: nowrap;
  }
  .btn.primary { background: var(--ink); color: var(--rose); }
  .btn.primary:hover { background: var(--plum); color: #fff; transform: translateY(-1px); box-shadow: 0 12px 24px -14px rgba(94,43,138,0.7); }
  .btn.ghost { background: transparent; color: var(--ink); border-color: var(--line); }
  .btn.ghost:hover { background: var(--blush); border-color: var(--rose); color: var(--plum); }
  .btn svg { width: 14px; height: 14px; }

  /* ---------- HERO ---------- */
  .hero {
    position: relative;
    background: radial-gradient(120% 90% at 80% 10%, #4a2080 0%, #2a1759 35%, #1a0b3a 75%, #110625 100%);
    color: #fff;
    overflow: hidden;
    padding: 90px 0 110px;
  }
  .hero::before {
    content: ""; position: absolute; inset: 0;
    background:
      radial-gradient(circle at 12% 80%, rgba(217,156,200,0.18), transparent 40%),
      radial-gradient(circle at 90% 95%, rgba(181,118,168,0.18), transparent 45%);
    pointer-events: none;
  }
  /* moroccan/islamic geometric tile pattern */
  .hero .tile {
    position: absolute; inset: 0;
    background-image:
      repeating-linear-gradient(60deg, transparent 0, transparent 80px, rgba(255,255,255,0.025) 80px, rgba(255,255,255,0.025) 81px),
      repeating-linear-gradient(-60deg, transparent 0, transparent 80px, rgba(255,255,255,0.025) 80px, rgba(255,255,255,0.025) 81px),
      repeating-linear-gradient(0deg, transparent 0, transparent 80px, rgba(255,255,255,0.02) 80px, rgba(255,255,255,0.02) 81px);
    mask-image: radial-gradient(ellipse 70% 60% at 80% 70%, black, transparent);
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 80% 70%, black, transparent);
  }
  .hero .row { position: relative; max-width: 1320px; margin: 0 auto; padding: 0 32px; display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr); gap: 60px; align-items: center; }
  .hero .row > * { min-width: 0; }

  .eyebrow { display: inline-flex; align-items: center; gap: 12px; font-size: 12px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--rose); margin-bottom: 28px; }
  .eyebrow .dot { width: 26px; height: 1px; background: var(--rose); display: inline-block; }
  .eyebrow .ar { font-family: 'Amiri', serif; font-size: 14px; letter-spacing: normal; color: var(--rose); opacity: 0.9; }

  .hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: clamp(40px, 4.6vw, 84px);
    line-height: 1.02;
    letter-spacing: -0.02em;
    margin-bottom: 28px;
    text-wrap: balance;
    overflow-wrap: break-word;
  }
  .hero h1 .accent {
    color: var(--rose); font-style: italic; font-weight: 500;
  }
  .hero h1 .accent::after {
    content: "";
    display: inline-block; width: 12px; height: 12px;
    background: var(--rose); border-radius: 50%;
    margin-left: 8px; transform: translateY(-22px);
    box-shadow: 0 0 0 6px rgba(217,156,200,0.18);
  }
  .hero .sub {
    font-size: 17px; line-height: 1.65; color: rgba(255,255,255,0.78);
    max-width: 540px; margin-bottom: 38px;
  }

  .hero .cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 56px; }
  .hero .btn.primary { background: var(--rose); color: var(--ink); }
  .hero .btn.primary:hover { background: #fff; color: var(--ink); box-shadow: 0 16px 32px -16px rgba(217,156,200,0.8); }
  .hero .btn.ghost { background: rgba(255,255,255,0.04); color: #fff; border-color: rgba(255,255,255,0.18); }
  .hero .btn.ghost:hover { background: rgba(255,255,255,0.08); border-color: var(--rose); color: var(--rose); }

  .hero .stats { display: grid; grid-template-columns: repeat(3, auto); gap: 56px; padding-top: 38px; border-top: 1px solid rgba(255,255,255,0.12); }
  .hero .stats .s b { display: block; font-family: 'Cormorant Garamond', serif; font-weight: 600; font-size: 40px; color: var(--rose); line-height: 1; letter-spacing: -0.02em; }
  .hero .stats .s span { display: block; font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.62); margin-top: 8px; }

  /* hero visual side: brand lockup card with both logos */
  .hero-visual { position: relative; aspect-ratio: 1 / 1.05; width: 100%; max-width: 460px; margin-left: auto; }
  .lockup-card {
    position: absolute; inset: 0;
    background: linear-gradient(155deg, #fbf7f4 0%, #f5e6f0 55%, #e8c5dc 100%);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 40px 80px -40px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.06);
  }
  .lockup-card::before {
    content: ""; position: absolute; inset: 0;
    background-image:
      radial-gradient(circle at 50% 0%, rgba(94,43,138,0.10), transparent 60%),
      radial-gradient(circle at 0% 100%, rgba(181,118,168,0.20), transparent 50%);
  }
  .lockup-inner {
    position: relative; z-index: 1;
    height: 100%; padding: 36px;
    display: flex; flex-direction: column;
  }
  .lockup-tag {
    font-size: 10px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--plum);
    display: flex; align-items: center; gap: 10px;
  }
  .lockup-tag .dot { width: 18px; height: 1px; background: var(--plum); }
  .lockup-stack {
    flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 24px;
  }
  /* Alabrar logo (actual calligraphic mark) */
  .alabrar-mark { display: flex; flex-direction: column; align-items: center; gap: 12px; }
  .alabrar-mark img { width: 92px; height: auto; object-fit: contain; filter: drop-shadow(0 4px 10px rgba(26,11,58,0.15)); }
  .alabrar-mark .name { font-family: 'Cormorant Garamond', serif; font-weight: 600; font-size: 22px; color: var(--ink); letter-spacing: -0.005em; }
  .alabrar-mark .sub { font-size: 9.5px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--plum); }

  .lockup-divider { display: flex; align-items: center; gap: 16px; width: 100%; }
  .lockup-divider .line { flex: 1; height: 1px; background: linear-gradient(90deg, transparent, var(--plum), transparent); opacity: 0.45; }
  .lockup-divider .ampersand { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 22px; color: var(--plum); }

  .hajj-mark { display: flex; flex-direction: column; align-items: center; gap: 10px; width: 100%; }
  .hajj-mark img { width: 240px; height: auto; max-width: 100%; }
  .hajj-mark .label { font-family: 'Cormorant Garamond', serif; font-size: 14px; color: var(--ink-2); letter-spacing: 0.04em; }

  .lockup-foot {
    display: flex; justify-content: space-between; align-items: center;
    font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-2); opacity: 0.7;
  }
  .lockup-foot .badge { padding: 5px 10px; border: 1px solid var(--plum); border-radius: 999px; color: var(--plum); }

  /* floating ornaments around the card */
  .ornament { position: absolute; pointer-events: none; }
  .ornament.o1 { top: -28px; left: -28px; width: 96px; height: 96px;
    border: 1px solid rgba(217,156,200,0.35); border-radius: 50%;
  }
  .ornament.o2 { bottom: -16px; right: -32px; width: 140px; height: 140px;
    background: conic-gradient(from 0deg, var(--rose) 0deg, transparent 30deg, transparent 60deg, var(--rose) 90deg, transparent 120deg, transparent 150deg, var(--rose) 180deg, transparent 210deg, transparent 240deg, var(--rose) 270deg, transparent 300deg, transparent 330deg);
    border-radius: 50%; opacity: 0.18;
    mask: radial-gradient(circle, transparent 38%, black 39%, black 49%, transparent 50%);
    -webkit-mask: radial-gradient(circle, transparent 38%, black 39%, black 49%, transparent 50%);
  }
  .ornament.o3 { top: 38%; right: -54px; width: 88px; height: 88px;
    background: linear-gradient(135deg, transparent 48%, var(--rose) 49%, var(--rose) 51%, transparent 52%),
                linear-gradient(45deg, transparent 48%, var(--rose) 49%, var(--rose) 51%, transparent 52%);
    opacity: 0.4;
  }

  /* ---------- SCROLLING MARQUEE ---------- */
  .marquee {
    background: var(--ink);
    color: rgba(255,255,255,0.78);
    border-top: 1px solid rgba(255,255,255,0.06);
    overflow: hidden;
    padding: 22px 0;
  }
  .marquee-track {
    display: flex; gap: 56px; white-space: nowrap;
    animation: scroll 38s linear infinite;
    width: max-content;
  }
  .marquee-item {
    display: inline-flex; align-items: center; gap: 18px;
    font-family: 'Cormorant Garamond', serif; font-size: 24px; font-style: italic;
    color: rgba(255,255,255,0.85);
  }
  .marquee-item .sym { color: var(--rose); font-size: 16px; }
  .marquee-item .ar { font-family: 'Amiri', serif; font-style: normal; font-size: 22px; }
  @keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

  /* ---------- SECTION SCAFFOLD ---------- */
  section { padding: 120px 0; position: relative; }
  .container { max-width: 1320px; margin: 0 auto; padding: 0 32px; }
  .section-head { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: end; margin-bottom: 64px; }
  .section-head > * { min-width: 0; }
  .section-head .left .eyebrow { color: var(--plum); }
  .section-head .left .eyebrow .dot { background: var(--plum); }
  .section-head h2 {
    font-family: 'Cormorant Garamond', serif; font-weight: 500;
    font-size: clamp(36px, 4vw, 60px); line-height: 1.05;
    color: var(--ink); letter-spacing: -0.02em; text-wrap: balance;
  }
  .section-head h2 em { color: var(--plum); font-style: italic; }
  .section-head .right p { font-size: 16px; line-height: 1.7; color: rgba(26,11,58,0.7); }

  /* ---------- VIDEO BAND ---------- */
  .video-band {
    position: relative; width: 100%; height: clamp(360px, 50vw, 520px);
    overflow: hidden;
    background: var(--ink);
  }
  .video-band video {
    position: absolute; inset: 0;
    width: 100%; height: 100%; object-fit: cover;
    display: block;
  }
  .video-band::before {
    content: ""; position: absolute; inset: 0; z-index: 1;
    background:
      linear-gradient(180deg, rgba(26,11,58,0.45) 0%, rgba(26,11,58,0.1) 30%, rgba(26,11,58,0.6) 100%),
      linear-gradient(90deg, rgba(26,11,58,0.55) 0%, transparent 40%, transparent 60%, rgba(94,43,138,0.5) 100%);
    pointer-events: none;
  }
  .video-band::after {
    content: ""; position: absolute; inset: 0; z-index: 1;
    background-image:
      repeating-linear-gradient(60deg, transparent 0, transparent 80px, rgba(255,255,255,0.025) 80px, rgba(255,255,255,0.025) 81px),
      repeating-linear-gradient(-60deg, transparent 0, transparent 80px, rgba(255,255,255,0.025) 80px, rgba(255,255,255,0.025) 81px);
    mix-blend-mode: overlay; opacity: 0.6;
    pointer-events: none;
  }
  .video-band .wrap {
    position: absolute; inset: 0; z-index: 2;
    max-width: 1320px; margin: 0 auto; padding: 0 32px;
    display: flex; flex-direction: column; justify-content: space-between;
    padding-top: 36px; padding-bottom: 36px;
  }
  .video-band .top-row {
    display: flex; justify-content: space-between; align-items: flex-start; gap: 32px;
  }
  .video-band .tag {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
    color: var(--rose);
    background: rgba(26,11,58,0.4); backdrop-filter: blur(10px);
    padding: 10px 16px; border-radius: 999px;
    border: 1px solid rgba(217,156,200,0.3);
  }
  .video-band .tag .pulse {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--rose);
    animation: pulse 2s ease-in-out infinite;
  }
  @keyframes pulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(217,156,200,0.7); } 50% { box-shadow: 0 0 0 10px rgba(217,156,200,0); } }
  .video-band .arabic-caption {
    font-family: 'Amiri', serif; color: rgba(255,255,255,0.7); font-size: 22px;
    text-align: right; line-height: 1.4;
  }
  .video-band .arabic-caption small {
    display: block; font-family: 'Cormorant Garamond', serif; font-style: italic;
    font-size: 14px; letter-spacing: 0.04em; color: var(--rose); margin-top: 4px;
  }
  .video-band .bottom-block {
    color: #fff; max-width: 720px;
  }
  .video-band h3 {
    font-family: 'Cormorant Garamond', serif; font-weight: 500;
    font-size: clamp(36px, 4.4vw, 64px); line-height: 1.02; letter-spacing: -0.02em;
    text-wrap: balance;
  }
  .video-band h3 em {
    font-style: italic; color: var(--rose);
  }
  .video-band .credit {
    margin-top: 16px; font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    display: flex; align-items: center; gap: 12px;
  }
  .video-band .credit .line { width: 32px; height: 1px; background: rgba(255,255,255,0.4); }

  /* ---------- PACKAGES ---------- */
  .packages { background: linear-gradient(180deg, var(--paper) 0%, #fbf3f7 100%); padding-top: 0; }
  .packages > .container { padding-top: 110px; }
  .pkg-tabs { display: inline-flex; gap: 4px; background: #fff; padding: 5px; border-radius: 999px; border: 1px solid var(--line); margin-bottom: 40px; }
  .pkg-tab { padding: 10px 22px; font-size: 13px; font-weight: 600; color: var(--ink-2); border-radius: 999px; cursor: pointer; transition: all 0.2s; letter-spacing: 0.02em; }
  .pkg-tab.active { background: var(--ink); color: var(--rose); }
  .pkg-tab:not(.active):hover { background: var(--blush); }

  .pkg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .pkg {
    background: #fff; border-radius: 24px; padding: 36px;
    border: 1px solid var(--line);
    position: relative; overflow: hidden;
    transition: all 0.3s ease;
    display: flex; flex-direction: column;
  }
  .pkg::before {
    content: ""; position: absolute; left: 0; top: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, var(--plum), var(--rose));
    transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease;
  }
  .pkg:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -30px rgba(26,11,58,0.18); border-color: transparent; }
  .pkg:hover::before { transform: scaleX(1); }
  .pkg.featured { background: linear-gradient(165deg, var(--ink) 0%, var(--ink-2) 60%, #4a2080 100%); color: #fff; border-color: transparent; }
  .pkg.featured::before { background: var(--rose); transform: scaleX(1); }

  .pkg .duration { font-family: 'Cormorant Garamond', serif; font-size: 76px; font-weight: 600; line-height: 0.9; letter-spacing: -0.04em; color: var(--ink); display: flex; align-items: baseline; gap: 8px; }
  .pkg.featured .duration { color: var(--rose); }
  .pkg .duration small { font-size: 14px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--plum); font-family: 'Inter', sans-serif; }
  .pkg.featured .duration small { color: rgba(217,156,200,0.85); }
  .pkg h3 { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 600; margin: 18px 0 8px; }
  .pkg .blurb { font-size: 14px; line-height: 1.6; color: rgba(26,11,58,0.65); margin-bottom: 24px; }
  .pkg.featured .blurb { color: rgba(255,255,255,0.72); }
  .pkg .feats { list-style: none; padding: 0; margin: 0 0 32px 0; display: flex; flex-direction: column; gap: 12px; flex: 1; }
  .pkg .feats li { display: flex; gap: 10px; font-size: 13.5px; align-items: flex-start; line-height: 1.45; }
  .pkg .feats li svg { width: 14px; height: 14px; flex: 0 0 14px; margin-top: 3px; stroke: var(--plum); fill: none; stroke-width: 2; }
  .pkg.featured .feats li svg { stroke: var(--rose); }
  .pkg .price { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; border-top: 1px dashed var(--line); }
  .pkg.featured .price { border-top-color: rgba(255,255,255,0.15); }
  .pkg .price .amt { font-family: 'Cormorant Garamond', serif; font-size: 30px; font-weight: 600; letter-spacing: -0.01em; }
  .pkg .price .amt small { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; opacity: 0.5; display: block; font-family: 'Inter', sans-serif; font-weight: 500; margin-bottom: 2px; }
  .pkg .price .more { font-size: 13px; font-weight: 600; color: var(--plum); display: inline-flex; align-items: center; gap: 6px; }
  .pkg.featured .price .more { color: var(--rose); }
  .pkg .badge { position: absolute; top: 24px; right: 24px; font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--rose); padding: 5px 10px; border: 1px solid rgba(217,156,200,0.4); border-radius: 999px; }

  /* ---------- ABOUT / HERITAGE ---------- */
  .heritage { background: var(--paper); }
  .heritage-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 80px; align-items: center; }
  .heritage-grid > * { min-width: 0; }
  .heritage-visual {
    position: relative; aspect-ratio: 0.85;
    background: linear-gradient(160deg, var(--ink) 0%, #2a1759 60%, #4a2080 100%);
    border-radius: 26px; overflow: hidden;
    display: grid; place-items: center;
    color: #fff;
  }
  .heritage-visual .placeholder-stripes {
    position: absolute; inset: 0;
    background: repeating-linear-gradient(135deg, transparent 0, transparent 14px, rgba(217,156,200,0.04) 14px, rgba(217,156,200,0.04) 16px);
  }
  /* Photo variant — used when a real image fills the heritage-visual */
  .heritage-visual .heritage-photo {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; z-index: 1;
  }
  .heritage-visual .heritage-photo-overlay {
    position: absolute; inset: 0; z-index: 2;
    background: linear-gradient(180deg, rgba(26,11,58,0.15) 0%, rgba(26,11,58,0.0) 30%, rgba(26,11,58,0.0) 60%, rgba(26,11,58,0.55) 100%);
    pointer-events: none;
  }
  .heritage-visual .place-tag {
    position: absolute; bottom: 24px; left: 24px;
    font-family: 'Inter', monospace; font-size: 10.5px; letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--rose);
    background: rgba(0,0,0,0.3); padding: 7px 12px; border-radius: 999px; backdrop-filter: blur(6px);
  }
  .heritage-visual .arabic-mark {
    font-family: 'Amiri', serif; font-size: 84px; color: var(--rose);
    text-shadow: 0 0 40px rgba(217,156,200,0.4);
    line-height: 1; text-align: center;
  }
  .heritage-visual .arabic-mark small {
    display: block; font-family: 'Cormorant Garamond', serif; font-size: 18px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.7); margin-top: 16px; font-style: normal;
  }
  .heritage-visual .frame { position: absolute; inset: 18px; border: 1px solid rgba(255,255,255,0.12); border-radius: 18px; }
  .heritage-visual .stamp {
    position: absolute; top: 24px; right: 24px;
    width: 90px; height: 90px; border-radius: 50%;
    background: var(--rose); color: var(--ink);
    display: grid; place-items: center;
    font-family: 'Cormorant Garamond', serif; font-weight: 600;
    text-align: center; line-height: 1.1;
    transform: rotate(-8deg);
  }
  .heritage-visual .stamp b { font-size: 24px; display: block; }
  .heritage-visual .stamp span { font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; display: block; margin-top: 2px; }

  .heritage-content .eyebrow { color: var(--plum); }
  .heritage-content .eyebrow .dot { background: var(--plum); }
  .heritage-content h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(40px, 4.4vw, 60px); font-weight: 500; line-height: 1.05; letter-spacing: -0.02em; margin-bottom: 28px; }
  .heritage-content h2 em { color: var(--plum); font-style: italic; }
  .heritage-content p { font-size: 16px; line-height: 1.75; color: rgba(26,11,58,0.72); margin-bottom: 18px; }

  .heritage-pills { display: flex; gap: 10px; margin-top: 28px; flex-wrap: wrap; }
  .heritage-pills span { padding: 8px 16px; border: 1px solid var(--line); border-radius: 999px; font-size: 12.5px; color: var(--ink-2); }
  .heritage-pills span b { color: var(--plum); font-weight: 600; }

  /* ---------- WHY CHOOSE US ---------- */
  .why { background: linear-gradient(180deg, #fbf3f7 0%, var(--paper) 100%); }
  .why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border-radius: 24px; overflow: hidden; border: 1px solid var(--line); }
  .why-card { background: #fff; padding: 40px 32px; display: flex; flex-direction: column; gap: 18px; min-height: 280px; transition: background 0.3s; cursor: default; }
  .why-card:hover { background: var(--blush); }
  .why-card .icon {
    width: 52px; height: 52px; border-radius: 14px;
    background: var(--ink); color: var(--rose);
    display: grid; place-items: center;
  }
  .why-card .icon svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
  .why-card h4 { font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 600; line-height: 1.15; letter-spacing: -0.005em; }
  .why-card p { font-size: 14px; line-height: 1.6; color: rgba(26,11,58,0.65); }
  .why-card .num { margin-top: auto; font-family: 'Cormorant Garamond', serif; font-size: 14px; color: var(--plum); font-style: italic; }

  /* ---------- JOURNEY ---------- */
  .journey { background: var(--ink); color: #fff; }
  .journey .section-head h2 { color: #fff; }
  .journey .section-head h2 em { color: var(--rose); }
  .journey .section-head .right p { color: rgba(255,255,255,0.7); }
  .journey .section-head .eyebrow { color: var(--rose); }
  .journey .section-head .eyebrow .dot { background: var(--rose); }

  .journey-rail {
    position: relative;
    display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px;
  }
  .journey-rail::before {
    content: ""; position: absolute; top: 28px; left: 28px; right: 28px;
    height: 1px; background: linear-gradient(90deg, transparent, var(--rose), transparent);
  }
  .step { position: relative; padding-top: 60px; }
  .step .dot {
    position: absolute; top: 14px; left: 0;
    width: 28px; height: 28px; border-radius: 50%;
    background: var(--rose); color: var(--ink);
    display: grid; place-items: center; font-weight: 600; font-size: 12px;
    border: 4px solid var(--ink);
  }
  .step h5 { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 600; margin-bottom: 10px; letter-spacing: -0.005em; }
  .step p { font-size: 13px; line-height: 1.6; color: rgba(255,255,255,0.65); }

  /* ---------- GALLERY ---------- */
  .gallery { background: var(--paper); }
  .gal-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 16px; }
  .gal-item {
    border-radius: 18px; overflow: hidden; position: relative;
    background: linear-gradient(160deg, var(--ink), #2a1759 60%, var(--plum));
    color: #fff;
    cursor: pointer; transition: all 0.3s;
    display: grid; place-items: center;
    text-align: center;
  }
  .gal-item:hover { transform: translateY(-4px) scale(1.01); box-shadow: 0 30px 50px -30px rgba(26,11,58,0.4); }
  .gal-item img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; z-index: 0; }
  .gal-item:hover img { transform: scale(1.05); }
  .gal-item .corner, .gal-item .meta, .gal-item .arrow { z-index: 2; }
  .gal-item::before {
    content: ""; position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(180deg, rgba(26,11,58,0.15) 0%, rgba(26,11,58,0.85) 100%);
  }
  .gal-item::after {
    z-index: 1;
  }
  .gal-item .meta { position: relative; padding: 22px; }
  .gal-item .meta .yr { font-family: 'Cormorant Garamond', serif; font-size: 56px; font-weight: 600; line-height: 1; color: var(--rose); }
  .gal-item .meta .lbl { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; margin-top: 8px; opacity: 0.7; }
  .gal-item.tall { grid-row: span 2; }
  .gal-item.wide { grid-column: span 2; }
  .gal-item .corner { position: absolute; top: 16px; left: 16px; font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--rose); opacity: 0.8; }
  .gal-item .arrow { position: absolute; bottom: 16px; right: 16px; opacity: 0; transition: all 0.3s; transform: translate(-6px, 6px); }
  .gal-item:hover .arrow { opacity: 1; transform: translate(0, 0); }
  .gal-item .arrow svg { width: 18px; height: 18px; stroke: var(--rose); fill: none; stroke-width: 2; }
  .gal-item.cta { background: var(--rose); color: var(--ink); }
  .gal-item.cta::before { display: none; }
  .gal-item.cta .meta .yr { color: var(--ink); font-style: italic; font-size: 36px; }
  .gal-item.cta .meta .lbl { color: var(--ink); opacity: 1; font-weight: 600; }
  .gal-item.cta .arrow svg { stroke: var(--ink); }

  /* ---------- TESTIMONIALS ---------- */
  .testimonials { background: linear-gradient(180deg, var(--paper) 0%, #fbf3f7 100%); }
  .testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .testi {
    background: #fff; border-radius: 22px; padding: 36px; border: 1px solid var(--line);
    display: flex; flex-direction: column; gap: 20px;
    position: relative;
  }
  .testi .quote-mark {
    font-family: 'Cormorant Garamond', serif; font-size: 80px; line-height: 0.7; color: var(--rose);
    height: 30px;
  }
  .testi blockquote { font-family: 'Cormorant Garamond', serif; font-size: 22px; line-height: 1.35; color: var(--ink); font-weight: 500; letter-spacing: -0.005em; flex: 1; }
  .testi .person { display: flex; align-items: center; gap: 14px; padding-top: 20px; border-top: 1px solid var(--line); }
  .testi .avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--ink); color: var(--rose); display: grid; place-items: center; font-family: 'Cormorant Garamond', serif; font-weight: 600; font-size: 18px; }
  .testi .who { display: flex; flex-direction: column; line-height: 1.2; }
  .testi .who b { font-weight: 600; font-size: 14px; }
  .testi .who span { font-size: 12px; color: var(--plum); margin-top: 2px; }
  .testi .stars { display: flex; gap: 3px; color: var(--gold); font-size: 14px; }

  /* ---------- CONTACT CTA ---------- */
  .cta-band { background: var(--paper); padding: 60px 0 120px; }
  .cta-card {
    max-width: 1320px; margin: 0 auto;
    background: linear-gradient(135deg, var(--ink) 0%, #2a1759 50%, #4a2080 100%);
    border-radius: 32px; padding: 80px 72px;
    color: #fff;
    position: relative; overflow: hidden;
    display: grid; grid-template-columns: 1.4fr 1fr; gap: 60px; align-items: center;
  }
  .cta-card > * { min-width: 0; }
  .cta-card::before {
    content: ""; position: absolute; inset: 0;
    background:
      radial-gradient(circle at 100% 0%, rgba(217,156,200,0.22), transparent 50%),
      radial-gradient(circle at 0% 100%, rgba(181,118,168,0.16), transparent 60%);
  }
  .cta-card > * { position: relative; z-index: 1; }
  .cta-card h3 { font-family: 'Cormorant Garamond', serif; font-size: clamp(36px, 3.8vw, 52px); font-weight: 500; line-height: 1.05; letter-spacing: -0.02em; margin-bottom: 18px; }
  .cta-card h3 em { color: var(--rose); font-style: italic; }
  .cta-card p { font-size: 16px; line-height: 1.65; color: rgba(255,255,255,0.78); margin-bottom: 28px; max-width: 520px; }
  .cta-card .phones { display: flex; flex-direction: column; gap: 14px; }
  .cta-card .phone {
    display: flex; align-items: center; gap: 14px;
    padding: 16px 22px; border-radius: 14px;
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.2s;
  }
  .cta-card .phone:hover { background: rgba(217,156,200,0.12); border-color: var(--rose); }
  .cta-card .phone .icon { width: 36px; height: 36px; border-radius: 50%; background: var(--rose); color: var(--ink); display: grid; place-items: center; }
  .cta-card .phone .icon svg { width: 16px; height: 16px; fill: currentColor; }
  .cta-card .phone .info b { display: block; font-size: 15px; font-weight: 600; letter-spacing: 0.01em; }
  .cta-card .phone .info span { display: block; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-top: 2px; }

  /* ---------- FOOTER ---------- */
  footer { background: var(--ink); color: rgba(255,255,255,0.65); padding: 80px 0 30px; }
  .foot-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 56px; padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,0.08); }
  footer h6 { font-family: 'Cormorant Garamond', serif; font-size: 18px; font-weight: 600; color: #fff; margin-bottom: 22px; letter-spacing: 0; }
  footer .col p { font-size: 14px; line-height: 1.65; margin-bottom: 14px; }
  footer ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
  footer ul a { font-size: 14px; color: rgba(255,255,255,0.65); }
  footer ul a:hover { color: var(--rose); }
  footer .brand-foot { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
  footer .brand-foot .a-mark { width: 52px; height: 52px; border-radius: 50%; background: rgba(255,255,255,0.95); display: grid; place-items: center; flex-shrink: 0; }
  footer .brand-foot .a-mark img { width: 32px; height: 32px; object-fit: contain; }
  footer .brand-foot .a-name { font-family: 'Cormorant Garamond', serif; font-size: 22px; color: #fff; font-weight: 600; letter-spacing: -0.01em; line-height: 1.1; }
  footer .brand-foot .a-name span { display: block; font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--rose); font-family: 'Inter', sans-serif; font-weight: 500; margin-top: 2px; }
  footer .lic-row { display: flex; gap: 14px; margin-top: 18px; }
  footer .lic-row span { padding: 6px 12px; border: 1px solid rgba(255,255,255,0.12); border-radius: 8px; font-size: 11px; letter-spacing: 0.12em; }
  footer .lic-row span b { color: var(--rose); font-weight: 600; margin-right: 6px; }
  .foot-bottom {
    display: flex; justify-content: space-between; align-items: center;
    padding-top: 28px; font-size: 12px; letter-spacing: 0.04em;
  }
  .foot-bottom .arabic { font-family: 'Amiri', serif; font-size: 16px; color: var(--rose); }

  /* ---------- REVIEWS (YouTube) ---------- */
  .reviews { background: linear-gradient(180deg, var(--paper) 0%, #fbf3f7 100%); position: relative; overflow: hidden; }
  .reviews::before {
    content: ""; position: absolute; top: -120px; right: -120px;
    width: 400px; height: 400px; border-radius: 50%;
    background: radial-gradient(circle, rgba(217,156,200,0.18), transparent 70%);
    pointer-events: none;
  }
  .reviews .container { position: relative; }
  .review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .review-card {
    background: #fff; border-radius: 22px; overflow: hidden;
    border: 1px solid var(--line);
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex; flex-direction: column;
  }
  .review-card:hover { transform: translateY(-4px); box-shadow: 0 30px 50px -30px rgba(26,11,58,0.25); border-color: var(--rose); }
  .review-thumb {
    position: relative; aspect-ratio: 16/9; background: var(--ink);
    overflow: hidden;
  }
  .review-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
  .review-card:hover .review-thumb img { transform: scale(1.05); }
  .review-thumb::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(26,11,58,0.6));
    pointer-events: none;
  }
  .review-thumb .play {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 68px; height: 68px; border-radius: 50%;
    background: var(--rose); color: var(--ink);
    display: grid; place-items: center;
    z-index: 2; transition: all 0.3s;
    box-shadow: 0 14px 30px -10px rgba(217,156,200,0.7);
  }
  .review-card:hover .review-thumb .play { background: #fff; transform: translate(-50%, -50%) scale(1.08); }
  .review-thumb .play svg { width: 26px; height: 26px; fill: currentColor; margin-left: 3px; }
  .review-thumb .corner {
    position: absolute; top: 16px; left: 16px;
    background: rgba(26,11,58,0.7); backdrop-filter: blur(6px);
    color: var(--rose); font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
    padding: 6px 12px; border-radius: 999px; z-index: 2;
  }
  .review-thumb .ytlogo {
    position: absolute; bottom: 16px; right: 16px;
    background: rgba(255,0,0,0.95); color: #fff;
    font-size: 10px; font-weight: 700; letter-spacing: 0.1em;
    padding: 4px 8px; border-radius: 4px; z-index: 2;
  }
  .review-body { padding: 24px 28px 28px; flex: 1; display: flex; flex-direction: column; gap: 12px; }
  .review-body h4 { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 600; line-height: 1.2; color: var(--ink); letter-spacing: -0.005em; }
  .review-body .meta { display: flex; justify-content: space-between; align-items: center; padding-top: 16px; border-top: 1px solid var(--line); margin-top: auto; }
  .review-body .meta .who { font-size: 13px; color: var(--plum); font-weight: 500; }
  .review-body .meta .stars { color: var(--gold); font-size: 13px; letter-spacing: 0.05em; }
  .review-card iframe { width: 100%; aspect-ratio: 16/9; border: 0; display: block; }
  .review-card.playing .review-thumb { display: none; }

  .reviews-foot {
    margin-top: 48px; display: flex; justify-content: center; align-items: center; gap: 14px;
    font-size: 14px; color: rgba(26,11,58,0.6);
  }
  .reviews-foot a {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--plum); font-weight: 600;
  }
  .reviews-foot a:hover { color: var(--ink); }

  /* ---------- IMAGE TREATMENTS ---------- */
  .photo-frame { position: relative; overflow: hidden; background: var(--ink); }
  .photo-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .photo-frame::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(26,11,58,0.55));
    pointer-events: none;
  }

  /* medium screens — keep 2-col layouts, tighten spacing */
  @media (max-width: 1180px) {
    nav.main .row { gap: 20px; padding: 14px 24px; }
    .nav-links { gap: 18px; }
    .nav-links a { font-size: 13px; }
    .nav-links a.has-menu::after { display: none; }
    .nav-cta .btn.ghost { display: none; }
    .nav-cta .btn { padding: 10px 16px; font-size: 12.5px; }
    .topbar .row { padding: 0 24px; }
    .topbar .lic { gap: 12px; }
    .topbar .contact { gap: 14px; font-size: 12px; }
    .hero { padding: 64px 0 80px; }
    .hero .row { gap: 40px; padding: 0 24px; }
    .container { padding: 0 24px; }
    .pkg-grid { gap: 16px; }
    .pkg { padding: 28px; }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .review-grid { grid-template-columns: repeat(2, 1fr); }
    .gal-grid { grid-template-columns: repeat(3, 1fr); }
    .section-head { gap: 40px; }
    .lockup-inner { padding: 26px; }
    .alabrar-mark img { width: 76px; }
    .alabrar-mark .name { font-size: 20px; }
    .hajj-mark img { width: 200px; }
    .lockup-stack { gap: 14px; }
    section { padding: 90px 0; }
  }

  /* small screens — collapse to single column */
  @media (max-width: 860px) {
    .video-band { height: 360px; }
    .video-band .arabic-caption { display: none; }
    .video-band h3 { font-size: 28px; }
    nav.main .nav-links { display: none; }
    .nav-cta .btn.ghost { display: none; }
    .nav-cta .btn.primary { display: none; }
    .hamburger { display: flex; }
    .hero { padding: 56px 0 72px; }
    .hero .row, .heritage-grid, .cta-card { grid-template-columns: 1fr; }
    .hero-visual { width: 100%; max-width: 480px; margin: 0 auto; aspect-ratio: 1 / 1.1; }
    .hero .stats { gap: 28px; }
    .pkg-grid, .testi-grid { grid-template-columns: 1fr; }
    .review-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .gal-grid { grid-template-columns: repeat(2, 1fr); }
    .journey-rail { grid-template-columns: 1fr; gap: 24px; }
    .journey-rail::before { display: none; }
    .foot-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
    .section-head { grid-template-columns: 1fr; gap: 24px; }
    .cta-card { padding: 48px 32px; }
    section { padding: 80px 0; }
    .topbar .row { flex-direction: column; align-items: flex-start; gap: 8px; }
  }
