:root{
  --blush:#d9b7b5;
  --ivory:#fff8f3;
  --gold:#c9a46b;
  --ink:#1f1a1a;
  --muted:#6b6464;
  --card:#ffffff;
  --border: rgba(201,164,107,.18);
  --shadow: 0 14px 40px rgba(20,10,10,.08);
  --radius: 18px;
  --radius2: 16px;
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:"Tajawal", system-ui, -apple-system, Segoe UI, Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(900px 500px at 20% -10%, rgba(217,183,181,.55), transparent 60%),
    radial-gradient(700px 400px at 90% 10%, rgba(201,164,107,.18), transparent 55%),
    linear-gradient(180deg, var(--ivory), #ffffff 70%);
}
a{color:inherit}
.container{width:min(1120px,92%); margin:0 auto}
/* Top nav */
.topbar{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(255,248,243,.78);
  border-bottom: 1px solid var(--border);
}
.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding: 12px 0;
}
.brand{
  display:flex; align-items:center; gap:12px;
  text-decoration:none;
}
.brand img{
  width:44px; height:44px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 10px 25px rgba(0,0,0,.08);
  border: 1px solid rgba(201,164,107,.25);
  background:#fff;
}
.brand .name{line-height:1.1}
.brand .name b{font-weight:950; letter-spacing:.5px}
.brand .name small{display:block; color:var(--muted); font-weight:800}
.links{
  display:flex; gap:8px; flex-wrap:wrap;
  align-items:center; justify-content:flex-end;
}
.chip{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(201,164,107,.30);
  text-decoration:none;
  font-weight: 900;
}
.chip:hover{filter:brightness(.98)}
/* Hero */
.hero{padding: 44px 0 18px}
.hero-card{
  background: rgba(255,255,255,.72);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  border-radius: calc(var(--radius) + 8px);
  overflow:hidden;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:0;
}
@media (max-width: 920px){
  .hero-grid{grid-template-columns:1fr}
}
.hero-copy{padding: 34px 30px}
.kicker{
  display:inline-flex;
  align-items:center;
  gap:.5rem;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(217,183,181,.22);
  border: 1px solid rgba(217,183,181,.35);
  color:#5e4141;
  font-weight: 900;
  font-size:.95rem;
}
h1{
  margin: 14px 0 10px;
  font-weight: 950;
  font-size: clamp(1.9rem, 2.7vw, 3rem);
  line-height:1.15;
}
.subline{
  margin:0 0 16px;
  color: var(--muted);
  font-weight: 800;
  line-height:1.9;
}
.actions{display:flex; gap:10px; flex-wrap:wrap; margin-top: 14px}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 10px 16px;
  border-radius: 14px;
  font-weight: 950;
  text-decoration:none;
  border: 1px solid rgba(201,164,107,.35);
  background: rgba(255,255,255,.85);
}
.btn:hover{filter:brightness(.98)}
.btn-gold{
  border:0;
  color:#fff;
  background: var(--gold);
  box-shadow: 0 14px 30px rgba(201,164,107,.22);
}
/* Media */
.hero-media{
  background:
    radial-gradient(1000px 500px at 20% 0%, rgba(217,183,181,.35), transparent 55%),
    linear-gradient(135deg, rgba(255,255,255,.65), rgba(255,255,255,.15));
  padding: 16px;
}
.media-grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 12px;
}
.ph{
  border-radius: 18px;
  overflow:hidden;
  border: 1px solid rgba(201,164,107,.18);
  box-shadow: 0 18px 40px rgba(20,10,10,.08);
  background:#fff;
}
.ph img{width:100%; height:100%; object-fit: cover; display:block}
.ph.tall{grid-row: span 2; min-height: 360px}
.ph.small{min-height: 174px}
/* Sections */
section{padding: 48px 0}
.center{text-align:center}
.section-title{margin:0 0 8px; font-weight: 950; letter-spacing:.2px}
.section-desc{margin:0 auto 22px; color:var(--muted); font-weight:800; line-height:1.9; max-width: 760px}
.features{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
@media (max-width: 1000px){ .features{grid-template-columns: repeat(2,1fr)} }
@media (max-width: 520px){ .features{grid-template-columns: 1fr} }
.feature{
  background: rgba(255,255,255,.80);
  border: 1px solid rgba(201,164,107,.16);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 14px 34px rgba(20,10,10,.06);
}
.icon{
  width:44px; height:44px; border-radius: 14px;
  display:grid; place-items:center;
  background: rgba(217,183,181,.22);
  border: 1px solid rgba(217,183,181,.35);
  font-weight: 950;
  margin-bottom: 10px;
}
.feature h3{margin:0 0 6px; font-weight:950; font-size: 1.05rem}
.feature p{margin:0; color:var(--muted); font-weight:800; line-height:1.9}
/* Gallery */
.gallery{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
@media (max-width: 900px){ .gallery{grid-template-columns: repeat(2,1fr)} }
@media (max-width: 520px){ .gallery{grid-template-columns: 1fr} }
.gcard{
  border-radius: var(--radius);
  overflow:hidden;
  border: 1px solid rgba(201,164,107,.16);
  box-shadow: var(--shadow);
  background:#fff;
  cursor:pointer;
  transition: transform .15s ease, box-shadow .15s ease;
}
.gcard:hover{transform: translateY(-3px)}
.gcard img{width:100%; height: 260px; object-fit: cover; display:block}
.gcap{
  display:flex; justify-content:space-between; align-items:center;
  gap:10px;
  padding:10px 12px 12px;
  font-weight:900;
}
.badge{
  font-size:12px;
  padding:4px 10px;
  border-radius:999px;
  background: rgba(201,164,107,.14);
  border: 1px solid rgba(201,164,107,.28);
  white-space:nowrap;
}
/* CTA */
.cta{
  background: linear-gradient(135deg, rgba(217,183,181,.35), rgba(201,164,107,.14));
  border-top: 1px solid rgba(201,164,107,.18);
  border-bottom: 1px solid rgba(201,164,107,.18);
}
.cta-box{
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(201,164,107,.18);
  border-radius: calc(var(--radius) + 8px);
  box-shadow: var(--shadow);
  padding: 26px;
  text-align:center;
}
/* Footer */
footer{padding: 26px 0; color:var(--muted); font-weight:900}
.footer-links{display:flex; gap:14px; justify-content:center; flex-wrap:wrap; margin-bottom: 10px}
/* Lightbox */
.lightbox{
  position: fixed; inset: 0;
  background: rgba(0,0,0,.72);
  display:none;
  align-items:center; justify-content:center;
  padding: 18px;
  z-index: 9999;
}
.lightbox.open{display:flex}
.lightbox img{
  max-width: min(1100px, 96%);
  max-height: 86vh;
  border-radius: 16px;
  border:1px solid rgba(255,255,255,.15);
  box-shadow: 0 20px 70px rgba(0,0,0,.45);
}
.close{
  position:absolute;
  top:14px; left:14px;
  width:44px; height:44px;
  border-radius: 999px;
  border:1px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.12);
  color:#fff;
  font-size: 22px;
  font-weight: 950;
  display:grid; place-items:center;
  cursor:pointer;
  user-select:none;
}
/* Forms */
.form{display:grid; gap:10px; margin-top:12px; text-align:right}
.field{display:grid; gap:6px}
.field label{font-weight:950}
.field input,.field textarea{
  width:100%;
  border-radius: 14px;
  border:1px solid rgba(0,0,0,.12);
  padding: 12px 12px;
  font-family: inherit;
  font-weight:850;
  background: rgba(255,255,255,.9);
}
.field textarea{min-height:140px; resize:vertical}
.hint{color:var(--muted); font-weight:850; font-size:13px; margin-top:6px}
