  :root{
    --paper:#FBF6EA;
    --paper-deep:#F3EAD6;
    --ink:#2B2118;
    --emerald:#0F4C36;
    --emerald-deep:#0A3527;
    --gold:#B8912F;
    --gold-soft:#E4CB8C;
    --rose:#D9BFD8;
    --rose-deep:#C79FC6;
    --line:rgba(43,33,24,0.14);
    --radius:18px;
    --shadow:0 10px 30px rgba(15,76,54,0.12);
  }

  *{box-sizing:border-box;}
  html,body{margin:0;padding:0;}
  body{
    background:var(--paper);
    color:var(--ink);
    font-family:'Tajawal',sans-serif;
    line-height:1.7;
    -webkit-font-smoothing:antialiased;
  }
  h1,h2,h3,.brand,.eyebrow{
    font-family:'Amiri','Tajawal',serif;
  }
  a{color:inherit; text-decoration:none;}
  button{font-family:inherit;}

  /* ---------- Top bar ---------- */
  .topbar{
    position:sticky; top:0; z-index:40;
    display:flex; align-items:center; justify-content:space-between;
    padding:16px 20px;
    background:var(--emerald);
    color:var(--paper);
    box-shadow:0 2px 14px rgba(0,0,0,0.15);
  }
  .topbar .brand{
    font-size:22px; font-weight:700; letter-spacing:.3px;
  }
  .menu-btn{
    width:46px;height:46px; border-radius:12px;
    border:1px solid rgba(255,255,255,0.35);
    background:rgba(255,255,255,0.08);
    color:var(--paper);
    display:flex; align-items:center; justify-content:center;
    cursor:pointer;
  }
  .menu-btn svg{width:22px;height:22px;}

  /* ---------- Drawer ---------- */
  .scrim{
    position:fixed; inset:0; background:rgba(10,20,15,0.45);
    opacity:0; pointer-events:none; transition:opacity .25s ease;
    z-index:45;
  }
  .scrim.show{opacity:1; pointer-events:auto;}

  .drawer{
    position:fixed; top:0; right:0; height:100%; width:min(84vw,340px);
    background:var(--paper-deep);
    border-left:1px solid var(--line);
    transform:translateX(100%);
    transition:transform .3s cubic-bezier(.2,.8,.2,1);
    z-index:50;
    padding:22px 22px 26px;
    display:flex; flex-direction:column; gap:4px;
    overflow-y:auto;
  }
  .drawer.open{transform:translateX(0);}
  .drawer-head{
    display:flex; align-items:center; justify-content:space-between;
    padding-bottom:16px; margin-bottom:10px;
    border-bottom:2px solid var(--gold-soft);
  }
  .drawer-head .brand{font-size:19px; color:var(--emerald-deep); font-weight:700;}
  .drawer-close{
    width:36px;height:36px;border-radius:10px;border:none;
    background:transparent; color:var(--ink); cursor:pointer; font-size:20px;
  }
  .drawer nav a{
    display:block; padding:13px 10px; font-size:17px;
    color:var(--ink); border-bottom:1px solid var(--line);
    transition:color .15s ease, padding-right .15s ease;
  }
  .drawer nav a:hover{ color:var(--emerald); padding-right:16px; }
  .drawer .search-row{
    display:flex; gap:8px; margin-top:18px;
  }
  .drawer .search-row input{
    flex:1; border:1px solid var(--line); border-radius:10px;
    padding:11px 12px; font-family:inherit; font-size:15px;
    background:#fff;
  }
  .drawer .search-row button{
    border:none; border-radius:10px; padding:0 16px;
    background:var(--emerald); color:#fff; font-weight:700; cursor:pointer;
  }

  /* ---------- Ornamental frame (signature element) ---------- */
  .ornament-frame{
    --n:20; /* number of star points around border */
    position:relative;
    margin:22px 16px 8px;
    border-radius:var(--radius);
    background:linear-gradient(160deg, var(--rose) 0%, var(--rose-deep) 100%);
    box-shadow:var(--shadow);
    padding:34px 22px 30px;
    overflow:hidden;
    text-align:center;
  }
  .ornament-frame::before,
  .ornament-frame::after{
    content:"";
    position:absolute; width:64px; height:64px;
    border:2px solid rgba(184,145,47,0.55);
    opacity:.65;
  }
  .ornament-frame::before{ top:-16px; right:-16px; transform:rotate(45deg); border-radius:6px; }
  .ornament-frame::after{ bottom:-16px; left:-16px; transform:rotate(45deg); border-radius:6px; }

  .star-corner{
    position:absolute; width:46px; height:46px; opacity:.75;
  }
  .star-corner.tl{top:10px; right:10px;}
  .star-corner.br{bottom:10px; left:10px; transform:rotate(180deg);}

  .ornament-frame .eyebrow{
    display:inline-flex; align-items:center; gap:8px;
    font-size:24px; font-weight:700; color:var(--emerald-deep);
    margin-bottom:14px;
  }
  .ornament-frame p{
    font-size:16.5px; color:var(--ink); max-width:520px; margin:0 auto;
  }
  .ann-nav{
    display:flex; align-items:center; justify-content:space-between;
    margin-top:22px; padding:0 4px;
  }
  .ann-nav button{
    width:38px;height:38px;border-radius:50%;
    border:1px solid rgba(43,33,24,0.25); background:rgba(255,255,255,0.35);
    cursor:pointer; display:flex; align-items:center; justify-content:center;
    color:var(--emerald-deep);
  }
  .dots{display:flex; gap:7px;}
  .dots span{width:7px;height:7px;border-radius:50%; background:rgba(43,33,24,0.3);}
  .dots span.active{background:var(--emerald-deep); width:20px; border-radius:5px;}

  /* ---------- Sections grid ---------- */
  .section-title{
    text-align:center; margin:38px 20px 6px; color:var(--emerald-deep);
    font-size:22px; font-weight:700;
  }
  .section-sub{
    text-align:center; margin:0 20px 22px; color:rgba(43,33,24,0.65); font-size:14.5px;
  }
  .grid{
    display:grid; grid-template-columns:1fr 1fr; gap:14px;
    padding:0 16px 30px;
  }
  @media(min-width:640px){
    .grid{grid-template-columns:repeat(3,1fr); max-width:760px; margin:0 auto;}
  }
  .card{
    background:#fff; border:1px solid var(--line); border-radius:14px;
    padding:20px 14px; text-align:center;
    box-shadow:0 4px 14px rgba(15,76,54,0.06);
    transition:transform .15s ease, box-shadow .15s ease;
  }
  .card:hover{transform:translateY(-3px); box-shadow:0 10px 22px rgba(15,76,54,0.12);}
  .card .ic{
    width:46px; height:46px; margin:0 auto 12px;
    display:flex; align-items:center; justify-content:center;
    border-radius:12px; background:var(--paper-deep); color:var(--emerald);
  }
  .card .ic svg{width:24px;height:24px;}
  .card h3{font-size:15.5px; margin:0 0 4px; color:var(--ink); font-weight:700;}
  .card p{font-size:12.5px; margin:0; color:rgba(43,33,24,0.6);}

  /* ---------- About strip ---------- */
  .about{
    margin:10px 16px 30px; padding:26px 22px;
    background:var(--emerald); color:var(--paper);
    border-radius:var(--radius); position:relative; overflow:hidden;
  }
  .about::before{
    content:""; position:absolute; inset:0;
    background-image:radial-gradient(circle at 15% 20%, rgba(255,255,255,0.06) 0 2px, transparent 3px),
                      radial-gradient(circle at 85% 80%, rgba(255,255,255,0.06) 0 2px, transparent 3px);
    background-size:26px 26px;
  }
  .about h2{position:relative; font-size:20px; margin:0 0 10px;}
  .about p{position:relative; font-size:14.5px; color:rgba(251,246,234,0.88); margin:0 0 14px;}
  .about a.btn{
    position:relative; display:inline-block;
    background:var(--gold); color:var(--emerald-deep); font-weight:700;
    padding:10px 22px; border-radius:999px; font-size:14px;
  }
  .about .emblem{
    position:relative; display:flex; justify-content:center; margin-bottom:16px;
  }
  .about h3{
    position:relative; font-size:16px; margin:22px 0 12px; color:var(--gold-soft);
    text-align:center; letter-spacing:.3px;
  }
  .contact-block{ position:relative; }
  .contact-list{
    list-style:none; margin:0 auto; padding:0; max-width:340px;
    display:flex; flex-direction:column; gap:10px;
  }
  .contact-list li{
    display:flex; align-items:center; justify-content:center; gap:10px;
    background:rgba(255,255,255,0.08); border:1px solid rgba(251,246,234,0.18);
    border-radius:10px; padding:10px 14px; font-size:14.5px;
  }
  .contact-list a{ color:var(--paper); border-bottom:1px dotted rgba(251,246,234,0.5); }
  .c-ic{ font-size:16px; }

  /* ---------- Footer ---------- */
  footer{
    padding:26px 20px 34px; text-align:center;
    color:rgba(43,33,24,0.55); font-size:13px;
    border-top:1px solid var(--line);
  }
  footer .brand-mini{
    font-family:'Amiri',serif; font-size:17px; color:var(--emerald-deep);
    display:block; margin-bottom:6px;
  }

  /* ---------- Page header (sub-pages) ---------- */
  .page-hero{
    position:relative;
    margin:20px 16px 6px;
    padding:30px 22px 26px;
    border-radius:var(--radius);
    background:linear-gradient(160deg, var(--emerald) 0%, var(--emerald-deep) 100%);
    color:var(--paper);
    text-align:center;
    overflow:hidden;
    box-shadow:var(--shadow);
  }
  .page-hero::before{
    content:""; position:absolute; inset:0;
    background-image:radial-gradient(circle at 12% 25%, rgba(255,255,255,0.07) 0 2px, transparent 3px),
                      radial-gradient(circle at 88% 75%, rgba(255,255,255,0.07) 0 2px, transparent 3px);
    background-size:24px 24px;
  }
  .page-hero .ic-wrap{
    position:relative; width:56px;height:56px; margin:0 auto 12px;
    border-radius:14px; background:rgba(255,255,255,0.12);
    display:flex; align-items:center; justify-content:center;
    color:var(--gold-soft);
  }
  .page-hero .ic-wrap svg{width:28px;height:28px;}
  .page-hero h1{ position:relative; font-size:24px; margin:0 0 8px; }
  .page-hero p{ position:relative; font-size:14.5px; color:rgba(251,246,234,0.85); max-width:480px; margin:0 auto; }

  .breadcrumb{
    display:flex; align-items:center; justify-content:center; gap:6px;
    font-size:12.5px; color:rgba(43,33,24,0.5); margin:14px 16px 0;
  }
  .breadcrumb a{ color:var(--emerald); }

  /* ---------- Filter chips ---------- */
  .chip-row{
    display:flex; gap:8px; overflow-x:auto; padding:20px 16px 4px;
    scrollbar-width:none;
  }
  .chip-row::-webkit-scrollbar{display:none;}
  .chip{
    flex:none; padding:8px 16px; border-radius:999px; font-size:13.5px;
    border:1px solid var(--line); background:#fff; color:var(--ink);
    cursor:pointer; white-space:nowrap; transition:all .15s ease;
  }
  .chip.active{ background:var(--emerald); border-color:var(--emerald); color:#fff; }

  /* ---------- Listing cards ---------- */
  .list{
    display:flex; flex-direction:column; gap:14px;
    padding:14px 16px 40px; max-width:720px; margin:0 auto;
  }
  .item-card{
    display:flex; gap:14px; align-items:flex-start;
    background:#fff; border:1px solid var(--line); border-radius:14px;
    padding:16px; box-shadow:0 4px 14px rgba(15,76,54,0.05);
    transition:transform .15s ease, box-shadow .15s ease;
  }
  .item-card:hover{ transform:translateY(-2px); box-shadow:0 10px 22px rgba(15,76,54,0.1); }
  .item-card .item-ic{
    flex:none; width:48px; height:48px; border-radius:12px;
    background:var(--paper-deep); color:var(--emerald);
    display:flex; align-items:center; justify-content:center;
  }
  .item-card .item-ic svg{ width:24px; height:24px; }
  .item-body{ flex:1; min-width:0; }
  .item-top{
    display:flex; align-items:flex-start; justify-content:space-between; gap:8px;
  }
  .item-body h3{
    font-size:16px; margin:0 0 4px; color:var(--ink); font-weight:700;
  }
  .item-meta{
    display:flex; flex-wrap:wrap; gap:8px; margin:6px 0 8px;
    font-size:12px; color:rgba(43,33,24,0.6);
  }
  .item-meta span{ display:inline-flex; align-items:center; gap:4px; }
  .item-body p.desc{
    font-size:13.5px; color:rgba(43,33,24,0.72); margin:0 0 10px;
  }
  .tag{
    display:inline-block; font-size:11.5px; font-weight:700;
    padding:3px 10px; border-radius:999px;
    background:var(--paper-deep); color:var(--emerald-deep);
  }
  .tag.gold{ background:rgba(184,145,47,0.14); color:var(--gold); }
  .item-actions{ display:flex; gap:8px; flex-wrap:wrap; }
  .item-actions a{
    font-size:12.5px; font-weight:700; padding:7px 14px; border-radius:999px;
    border:1px solid var(--emerald); color:var(--emerald);
  }
  .item-actions a.solid{ background:var(--emerald); color:#fff; }

  .note-box{
    max-width:720px; margin:0 auto 30px; padding:14px 18px;
    background:rgba(184,145,47,0.1); border:1px dashed var(--gold);
    border-radius:12px; font-size:13px; color:var(--ink); text-align:center;
  }

  /* ---------- Active nav in drawer ---------- */
  .drawer nav a.current{ color:var(--emerald); font-weight:700; }
