:root{
  /* تدرّجات ذهبية/بنية (عدّلها لتطابق هوية شعارك تماماً) */
  --gold:#e3b767;
  --gold-deep:#c28e33;
  --brown:#a9712a;
  --ink:#2a2a2a;

  --bg:#faf8f4;
  --card:#ffffff;
  --muted:#686868;
  --line:#ece6da;
}

*{box-sizing:border-box;margin:0;padding:0}
html,body{height:100%}
html{scroll-behavior:smooth}
body{
  font-family:"Cairo", system-ui, -apple-system, "Segoe UI", Tahoma, sans-serif;
  background:var(--bg);
  color:var(--ink);
  line-height:1.85;
}

img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}
.container{max-width:1120px;margin:0 auto;padding:0 1rem}

/* ------------ Header ------------- */
.site-header{
  position:sticky;top:0;z-index:40;
  background:rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
  border-bottom:1px solid var(--line);
}
.header-band{position:relative;height:10px}
.band{position:absolute;inset:auto 0 0 0}
.band--gold{height:6px;background:linear-gradient(90deg,var(--gold),var(--gold-deep))}
.band--brown{height:4px;background:var(--brown);bottom:6px}

.header-inner{
  display:flex;align-items:center;justify-content:space-between;gap:1rem;padding:.7rem 0;
}
.brand{display:flex;align-items:center;gap:.8rem}
.brand-text{display:flex;flex-direction:column;gap:0}
.brand-title{font-weight:800;font: size 1.9em;rem;line-height:1.1;background:linear-gradient(90deg,var(--gold-deep),var(--gold));-webkit-background-clip:text;background-clip:text;color:transparent}
.brand-sub{font-size:.82rem;line-height:1.1;color:var(--brown)}
.brand-logo {
  height: 52px;      /* عدّل الارتفاع اللي يريحك */
  width: auto;
  object-fit: contain;
}

.nav ul{list-style:none;display:flex;gap:.6rem;flex-wrap:wrap}
.nav a{
  padding:.42rem .95rem;border-radius:999px;border:1px solid transparent;
  transition:.2s ease;color:#3a3a3a;font-size:.95rem
}
.nav a:hover{border-color:var(--gold-deep);background:rgba(226,183,102,.12)}

/* ------------ HERO ------------- */
.hero{
  position:relative;overflow:hidden;background:#fff;padding:2.4rem 0 3rem;
  background-image: url("https://images.unsplash.com/photo-1516637090014-cb1ab0d08fc7?q=80&w=1400&auto=format&fit=crop");
  background-size:cover;background-position:center;
}
.hero::before{
  content:"";position:absolute;inset:0;background:linear-gradient(180deg,rgba(255,255,255,.95),rgba(255,255,255,.88))
}
.hero > *{position:relative;z-index:1}

/* زخرفة ألماس */
.diamond-deco{position:absolute;inset:auto 0 0 auto;width:min(680px,55vw);opacity:.08;z-index:0}
.facet polygon{fill:var(--gold-deep);stroke:#fff;stroke-width:2}

.hero-grid{
  display:grid;grid-template-columns:minmax(0,2.2fr) minmax(0,1.8fr);
  gap:1.6rem;align-items:center
}
@media (max-width:900px){.hero-grid{grid-template-columns:1fr}}

.hero-copy h1{font-size:1.9rem;font-weight:900;margin-bottom:.6rem;color:#3b3327}
.lead{font-size:1rem;color:#3d3d3d;margin-bottom:1.1rem}
.hero-cta{display:flex;gap:.8rem;flex-wrap:wrap;margin-bottom:.9rem}
.btn{
  display:inline-block;padding:.65rem 1.4rem;border-radius:999px;font-weight:800;font-size:.9rem;transition:.2s ease
}
.btn--primary{
  color:#fff;background:linear-gradient(135deg,var(--gold-deep),var(--gold));
  box-shadow:0 12px 30px rgba(194,142,51,.35)
}
.btn--primary:hover{transform:translateY(-2px);box-shadow:0 16px 36px rgba(194,142,51,.45)}
.btn--ghost{border:1px solid var(--gold-deep);color:var(--gold-deep);background:#fff}
.btn--ghost:hover{background:rgba(226,183,102,.12)}

.quick-points{list-style:none;display:flex;flex-wrap:wrap;gap:.5rem}
.quick-points li{
  background:#fff;border:1px solid var(--line);border-radius:999px;padding:.4rem .8rem;
  box-shadow:0 8px 20px rgba(0,0,0,.04);font-size:.88rem
}

.hero-card{
  background:#fff;border:1px solid var(--line);border-radius:18px;overflow:hidden;
  box-shadow:0 12px 30px rgba(0,0,0,.07)
}
.hero-card img{width:100%;height:100%;object-fit:cover}

/* ------------ Highlight Strip ------------- */
.highlight-strip{padding:1.2rem 0;background:linear-gradient(90deg,rgba(226,183,102,.08),rgba(169,113,42,.08))}
.strip-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:1rem}
@media (max-width:1000px){.strip-grid{grid-template-columns:repeat(2,1fr)}}
@media (max-width:560px){.strip-grid{grid-template-columns:1fr}}
.strip-card{
  background:#fff;border:1px solid var(--line);border-radius:14px;padding:.9rem 1rem;text-align:center;
  box-shadow:0 10px 24px rgba(0,0,0,.05)
}
.strip-card .k{display:block;font-weight:900;color:var(--gold-deep);letter-spacing:.5px}
.strip-card p{color:var(--muted);font-size:.9rem}

/* ------------ About ------------- */
.section{padding:3rem 0}
.section-head{margin-bottom:1.1rem}
.section-head h2{
  font-size:1.35rem;font-weight:900;color:#3b3327;
  border-right:6px solid var(--gold-deep);padding-right:.6rem
}
.tag{font-size:.86rem;color:var(--muted);margin-top:.3rem}

.about-wrap{position:relative}
.about-grid{
  display:grid;grid-template-columns:minmax(0,2fr) minmax(0,2.2fr);
  gap:1.4rem;align-items:start
}
@media (max-width:900px){.about-grid{grid-template-columns:1fr}}
.about-card{
  background:var(--card);border:1px solid var(--line);border-radius:16px;padding:1.1rem;
  box-shadow:0 12px 28px rgba(0,0,0,.05)
}
.about-list{
  list-style:none;background:linear-gradient(180deg,#fff 0%, #fcf7ee 100%);
  border:1px solid var(--line);border-radius:16px;padding:1rem 1.1rem;box-shadow:0 12px 28px rgba(0,0,0,.04)
}
.about-list li{position:relative;padding-right:1.2rem;margin:.35rem 0}
.about-list li::before{
  content:"";position:absolute;right:0;top:.6rem;width:9px;height:9px;border-radius:50%;
  background: radial-gradient(circle at 30% 30%, #fff, var(--gold-deep));
  box-shadow:0 0 0 2px rgba(194,142,51,.25);transform:translateY(-50%)
}

/* ------------ Services ------------- */
.services{background:linear-gradient(180deg,#fff 0%, #f7f2e7 100%)}
.cards-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:1rem}
@media (max-width:1100px){.cards-grid{grid-template-columns:repeat(2,1fr)}}
@media (max-width:620px){.cards-grid{grid-template-columns:1fr}}

.svc-card{
  background:#fff;border:1px solid var(--line);border-radius:18px;overflow:hidden;
  box-shadow:0 12px 30px rgba(0,0,0,.06);
  display:flex;flex-direction:column;gap:.5rem
}
.svc-card h3{font-size:1rem;color:#3b3327;margin:.9rem .9rem .2rem}
.svc-card p{color:#3f3f3f;font-size:.95rem;margin:0 .9rem .6rem}
.svc-card img{width:100%;height:160px;object-fit:cover}

/* ------------ Why ------------- */
.why{background:#fff}
.chips{list-style:none;display:flex;flex-wrap:wrap;gap:.6rem}
.chips li{
  background:#fff;border:1px solid var(--line);border-radius:999px;padding:.55rem .95rem;
  box-shadow:0 10px 22px rgba(0,0,0,.04)
}

/* ------------ Location ------------- */
.location{background:linear-gradient(180deg,#fff 0%, #f8f5ee 100%)}
.loc-grid{display:grid;grid-template-columns:minmax(0,1.6fr) minmax(0,2fr);gap:1rem}
@media (max-width:900px){.loc-grid{grid-template-columns:1fr}}
.loc-card{
  background:#fff;border:1px solid var(--line);border-radius:16px;padding:1rem;
  box-shadow:0 10px 24px rgba(0,0,0,.04)
}
.map-hint{
  border:1px dashed var(--line);border-radius:16px;padding:1rem;background:#fff;color:var(--muted);
  display:flex;align-items:center;justify-content:center
}

/* ------------ Contact ------------- */
.contact{background:#fff}
.contact-grid{display:grid;grid-template-columns:minmax(0,2fr) minmax(0,1.6fr);gap:1rem;align-items:flex-start}
@media (max-width:900px){.contact-grid{grid-template-columns:1fr}}
.contact-list{list-style:none;margin:.2rem 0 .8rem}
.contact-list li{margin:.35rem 0}
.lbl{color:var(--muted);margin-left:.35rem}
.contact-list a{border-bottom:1px dashed transparent}
.contact-list a:hover{color:var(--gold-deep);border-color:var(--gold-deep)}
.contact-note{
  background:#fff;border:1px solid var(--line);border-radius:16px;padding:1rem;color:#3d3d3d;
  box-shadow:0 10px 24px rgba(0,0,0,.04)
}

/* ------------ Footer ------------- */
.site-footer{
  padding:1.5rem 0 2rem;text-align:center;font-size:.86rem;color:var(--muted);
  background:#fff;border-top:1px solid var(--line)
}

/* ------------ Back to Top ------------- */
#toTop{
  position:fixed;left:16px;bottom:16px;z-index:60;
  width:42px;height:42px;border:none;border-radius:50%;
  background:linear-gradient(135deg,var(--gold-deep),var(--gold));color:#fff;
  box-shadow:0 12px 30px rgba(194,142,51,.38);
  cursor:pointer;opacity:0;visibility:hidden;transform:translateY(8px);
  transition:.22s ease
}
#toTop.show{opacity:1;visibility:visible;transform:translateY(0)}
#toTop:hover{transform:translateY(-2px);box-shadow:0 16px 36px rgba(194,142,51,.48)}
