:root{
  --bg:#f4f0ea;
  --surface:#ffffff;
  --surface-soft:#f8f5f0;
  --text:#1e1e1e;
  --muted:#66625a;
  --gold:#b7905d;
  --gold-dark:#9c784b;
  --border:rgba(17,17,17,0.08);
  --dark:#151515;
  --dark-2:#202020;
  --radius:28px;
  --shadow:0 25px 80px rgba(0,0,0,0.08);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:linear-gradient(180deg,#f7f4ef 0%, var(--bg) 100%);
  color:var(--text);
  font-family:'Cairo','Inter',system-ui,sans-serif;
  line-height:1.7;
}
img{display:block;max-width:100%}
a{text-decoration:none;color:inherit}
button,input,textarea{font:inherit}
button{cursor:pointer}

.container{width:min(1180px,calc(100% - 32px));margin-inline:auto}
.site-shell{overflow:hidden}

.top-nav{
  position:sticky;top:0;z-index:50;
  background:rgba(247,243,238,0.92);
  backdrop-filter:blur(18px);
  border-bottom:1px solid var(--border);
}
.nav-row{
  display:flex;align-items:center;justify-content:space-between;
  gap:20px;padding:16px 0;
}
.brand{
  display:flex;align-items:center;gap:14px;min-width:max-content;
}
.brand-mark{
  width:54px;height:54px;display:grid;place-items:center;flex:0 0 auto;
}
.brand-mark img{width:100%;height:100%;display:block}
.brand-copy{display:flex;flex-direction:column;align-items:flex-start;gap:12px;line-height:1.2;min-width:0;min-height:74px;justify-content:center}
.brand-line{display:flex;align-items:center;gap:10px;flex-wrap:nowrap}
.brand-ar{
  display:block;font-family:'Aref Ruqaa','Amiri','Cairo',serif;font-size:38px;font-weight:700;color:#222;
  letter-spacing:0;line-height:1.28;white-space:nowrap;transform:none;
  margin:0;padding-bottom:2px;
}
.brand-en{
  display:block;font-family:'Inter',sans-serif;font-size:11px;font-weight:700;letter-spacing:.18em;
  color:var(--gold);padding-inline-start:34px;white-space:nowrap;line-height:1.2;
  margin-top:0;
}
.flag-inline{flex:0 0 auto;transform:none}
.nav-links{display:flex;align-items:center;gap:34px;font-size:16px;color:rgba(0,0,0,.72)}
.nav-links a{position:relative}
.nav-links a::after{
  content:'';position:absolute;inset-inline-start:0;bottom:-8px;width:0;height:2px;background:var(--gold);
  transition:width .25s ease;
}
.nav-links a:hover::after{width:100%}
.nav-actions{display:flex;align-items:center;gap:12px}
.lang-toggle{
  min-width:50px;height:44px;border-radius:14px;border:1px solid var(--border);
  background:#fff;color:#111;font-weight:800;
}
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:10px;
  border-radius:14px;padding:14px 24px;font-weight:800;transition:.25s ease;border:1px solid transparent
}
.btn-gold{background:var(--gold);color:#fff;box-shadow:0 14px 30px rgba(183,144,93,.2)}
.btn-gold:hover{background:var(--gold-dark);transform:translateY(-1px)}
.btn-light{background:rgba(255,255,255,.92);color:#111}
.btn-light:hover{background:#fff}
.btn-outline{background:transparent;border-color:rgba(255,255,255,.25);color:#fff}
body:not(.hero-context) .btn-outline{border-color:var(--border);color:var(--text)}
.full{width:100%}
.desktop-only{display:inline-flex}

.hero-wrap{padding:26px 0 10px}
.hero-card{
  position:relative;min-height:650px;border-radius:32px;overflow:hidden;
  background:#d9d4cd;box-shadow:var(--shadow);border:1px solid var(--border)
}
.hero-bg{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;object-position:center center}
.hero-overlay{
  position:absolute;inset:0;
  background:
    linear-gradient(90deg,rgba(14,14,14,.64) 0%,rgba(14,14,14,.48) 38%,rgba(14,14,14,.18) 62%,rgba(14,14,14,.02) 100%),
    radial-gradient(circle at top left, rgba(183,144,93,.35), transparent 32%);
}
.hero-content{
  position:relative;z-index:1;display:flex;flex-direction:column;justify-content:center;
  min-height:650px;max-width:560px;padding:72px 56px;color:#fff
}
.hero-badge{
  display:inline-flex;align-items:center;gap:10px;align-self:flex-start;
  background:rgba(255,255,255,.12);border:1px solid rgba(255,255,255,.16);
  border-radius:999px;padding:10px 16px;font-size:14px;margin-bottom:24px;
  backdrop-filter:blur(10px)
}
.flag{
  width:20px;height:14px;border-radius:2px;
  background:linear-gradient(180deg,#e53935 0 33.3%, #111 33.3% 66.6%, #25a55a 66.6% 100%);
  box-shadow:0 0 0 1px rgba(255,255,255,.2) inset
}
.flag-inline{box-shadow:0 0 0 1px rgba(0,0,0,.08) inset}
.hero-content h1{
  margin:0 0 14px;font-size:70px;line-height:1.02;font-weight:900;letter-spacing:-.04em
}
.hero-subtitle{
  margin:0;max-width:500px;font-size:26px;line-height:1.8;color:rgba(255,255,255,.92)
}
.hero-actions{display:flex;flex-wrap:wrap;gap:14px;margin-top:34px}

.stats-bar{
  background:#fbfaf7;border:1px solid var(--border);border-top:none;box-shadow:0 18px 45px rgba(0,0,0,.04);
  display:grid;grid-template-columns:repeat(3,1fr);gap:0;border-radius:0 0 28px 28px;overflow:hidden;
  width:min(1020px, calc(100% - 24px));margin-inline:auto;transform:translateY(-1px)
}
.stat-item{
  padding:20px 24px;text-align:center;position:relative
}
.stat-item:not(:last-child)::after{
  content:'';position:absolute;inset-inline-end:0;top:22px;bottom:22px;width:1px;background:var(--border)
}
.stat-item strong{display:block;color:var(--gold);font-size:34px;line-height:1.1;font-family:'Inter',sans-serif}
.stat-item span{display:block;margin-top:8px;color:#514c44;font-size:16px;font-weight:700}

.section{padding:92px 0}
.section-dark{background:var(--dark);color:#fff}
.section-dark .section-head p{color:rgba(255,255,255,.72)}
.section-dark .btn-outline{border-color:rgba(255,255,255,.18);color:#fff}
.eyebrow{
  display:inline-block;font-size:14px;font-weight:800;letter-spacing:.18em;text-transform:uppercase;color:var(--gold)
}
.gold{color:#d3b286}
.section-head{max-width:720px;margin-bottom:34px}
.section-head h2{margin:12px 0 10px;font-size:48px;line-height:1.12}
.section-head p{margin:0;color:var(--muted);font-size:18px}
.split-head{display:flex;align-items:end;justify-content:space-between;gap:20px;max-width:none}

.split-grid{
  display:grid;grid-template-columns:1.05fr .95fr;gap:54px;align-items:center
}
.about-copy h2{margin:12px 0 18px;font-size:48px;line-height:1.12}
.about-copy p{margin:0 0 14px;color:var(--muted);font-size:19px}
.pill-row{display:flex;flex-wrap:wrap;gap:10px;margin-top:28px}
.pill-row span{
  background:#fff;border:1px solid var(--border);border-radius:999px;padding:12px 18px;font-weight:800;color:#4f4a43
}
.about-visual{display:grid;grid-template-columns:1.1fr .9fr;gap:18px;align-items:end}
.frame{
  background:#fff;border:1px solid var(--border);border-radius:28px;padding:14px;box-shadow:0 18px 45px rgba(0,0,0,.05)
}
.frame img{width:100%;height:100%;object-fit:cover;border-radius:22px}
.frame-large{height:600px}
.frame-small{height:340px;transform:translateY(56px)}

.service-grid{
  display:grid;grid-template-columns:repeat(3,1fr);gap:18px
}
.service-card{
  background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.08);border-radius:26px;padding:28px
}
.service-card h3{margin:0 0 12px;font-size:24px}
.service-card p{margin:0;color:rgba(255,255,255,.72);font-size:17px}
.service-accent{
  background:linear-gradient(180deg,rgba(183,144,93,.18),rgba(183,144,93,.08));
  border-color:rgba(183,144,93,.26)
}

.project-grid{
  display:grid;grid-template-columns:repeat(2,1fr);gap:22px
}
.project-card{
  background:#fff;border:1px solid var(--border);border-radius:28px;overflow:hidden;box-shadow:0 18px 45px rgba(0,0,0,.05)
}
.project-card img{width:100%;height:320px;object-fit:cover}
.project-copy{padding:24px}
.project-type{display:block;font-family:'Inter',sans-serif;font-size:12px;letter-spacing:.22em;text-transform:uppercase;color:var(--gold);margin-bottom:8px}
.project-copy h3{margin:0 0 8px;font-size:28px}
.project-copy p{margin:0;color:var(--muted);font-size:17px}

.gallery-section{background:linear-gradient(180deg,#f7f3ee 0%, #f1ece4 100%)}
.gallery-grid{
  display:grid;grid-template-columns:repeat(4,1fr);gap:14px
}
.gallery-item{
  border:none;padding:0;background:#fff;border-radius:22px;overflow:hidden;box-shadow:0 16px 35px rgba(0,0,0,.05)
}
.gallery-item img{
  width:100%;height:250px;object-fit:cover;transition:transform .3s ease
}
.gallery-item:hover img{transform:scale(1.04)}

.process-grid{
  display:grid;grid-template-columns:repeat(4,1fr);gap:18px
}
.process-card{
  background:#fff;border:1px solid var(--border);border-radius:24px;padding:24px;box-shadow:0 16px 35px rgba(0,0,0,.04)
}
.process-card strong{display:block;font-family:'Inter',sans-serif;font-size:30px;color:var(--gold)}
.process-card h3{margin:12px 0 8px;font-size:24px}
.process-card p{margin:0;color:var(--muted)}

.quote-grid{
  display:grid;grid-template-columns:.95fr 1.05fr;gap:28px;align-items:start
}
.quote-copy h2{margin:12px 0 14px;font-size:46px;line-height:1.15}
.quote-copy p{margin:0;color:rgba(255,255,255,.76);font-size:18px}
.quote-list{list-style:none;padding:0;margin:24px 0 0;display:grid;gap:12px}
.quote-list li{position:relative;padding-inline-start:22px;color:rgba(255,255,255,.82)}
.quote-list li::before{
  content:'•';position:absolute;inset-inline-start:0;top:0;color:#d3b286;font-size:24px;line-height:1
}
.quote-form{
  background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.08);border-radius:28px;padding:26px;
  display:grid;grid-template-columns:repeat(2,1fr);gap:14px
}
.quote-form input,.quote-form textarea{
  width:100%;padding:15px 16px;border-radius:16px;border:1px solid rgba(255,255,255,.1);background:rgba(0,0,0,.18);
  color:#fff;outline:none
}
.quote-form textarea{min-height:144px;grid-column:1/-1;resize:vertical}
.quote-form input::placeholder,.quote-form textarea::placeholder{color:rgba(255,255,255,.45)}
.quote-form .full{grid-column:1/-1}

.contact-grid{
  display:grid;grid-template-columns:1fr .95fr;gap:32px;align-items:start
}
.contact-copy h2{margin:12px 0 14px;font-size:46px;line-height:1.15}
.contact-copy p{margin:0;color:var(--muted);font-size:19px}
.contact-cards{display:grid;gap:16px}
.info-card{
  background:#fff;border:1px solid var(--border);border-radius:22px;padding:24px;box-shadow:0 16px 35px rgba(0,0,0,.04)
}
.info-card span{display:block;color:var(--muted);margin-bottom:8px}
.info-card strong{font-size:24px;line-height:1.5}
.map-card{padding:20px}
.map-card-head{display:flex;align-items:center;justify-content:space-between;gap:12px;margin-bottom:14px}
.map-link{font-size:14px;font-weight:800;color:var(--gold)}
.map-embed-wrap{overflow:hidden;border-radius:18px;border:1px solid var(--border);background:#f3efe7}
.map-embed{display:block;width:100%;height:280px;border:0;filter:grayscale(.08) saturate(.92)}

.footer{
  background:#101010;color:#fff;padding:54px 0;border-top:1px solid rgba(255,255,255,.08)
}
.footer-grid{
  display:grid;grid-template-columns:1.2fr .8fr 1fr;gap:28px
}
.footer-brand{font-size:34px}
.footer-copy{max-width:460px;color:rgba(255,255,255,.68)}
.footer h3{margin:0 0 12px}
.footer-links{display:grid;gap:10px;color:rgba(255,255,255,.72)}

.lightbox{
  position:fixed;inset:0;background:rgba(0,0,0,.86);display:grid;place-items:center;z-index:100;padding:24px
}
.lightbox[hidden]{display:none !important}
.lightbox img{max-width:min(1100px,100%);max-height:88vh;border-radius:20px}
.lightbox-close{
  position:absolute;top:18px;inset-inline-end:18px;width:48px;height:48px;border:none;border-radius:50%;
  background:#fff;color:#111;font-size:30px;line-height:1
}

html[dir="ltr"] body{font-family:'Inter','Cairo',system-ui,sans-serif}
html[dir="ltr"] .brand-ar{font-family:'Cairo',sans-serif;font-weight:900;font-size:30px;line-height:1.15;transform:none}
html[dir="ltr"] .nav-links{font-family:'Inter',sans-serif}
html[dir="ltr"] .project-type, html[dir="ltr"] .brand-en{letter-spacing:.18em}
html[dir="ltr"] .quote-list li{padding-inline-start:22px}
html[dir="ltr"] .hero-content{text-align:left}
html[dir="ltr"] .eyebrow{text-transform:uppercase}
html[dir="ltr"] .hero-content h1{font-size:64px}
html[dir="ltr"] .hero-subtitle{font-size:22px;max-width:540px}

@media (max-width: 1100px){
  .nav-links{display:none}
  .desktop-only{display:none}
  .hero-content h1{font-size:56px}
  .split-grid,.quote-grid,.contact-grid{grid-template-columns:1fr}
  .frame-small{transform:none}
  .service-grid,.process-grid{grid-template-columns:repeat(2,1fr)}
  .gallery-grid{grid-template-columns:repeat(3,1fr)}
  .footer-grid{grid-template-columns:1fr 1fr}
}

@media (max-width: 760px){
  .container{width:min(100% - 20px, 1180px)}
  .brand-ar{font-size:28px;line-height:1.24}
  .brand-en{font-size:9px;letter-spacing:.12em;padding-inline-start:28px;line-height:1.2}
  .brand-mark{width:42px;height:42px}
  .hero-card{min-height:560px}
  .hero-content{min-height:560px;padding:34px 22px 28px;max-width:100%}
  .hero-content h1{font-size:44px}
  .hero-subtitle{font-size:18px;line-height:1.8}
  .stats-bar{grid-template-columns:repeat(2,1fr)}
  .section{padding:68px 0}
  .section-head h2,.about-copy h2,.quote-copy h2,.contact-copy h2{font-size:34px}
  .about-visual,.service-grid,.project-grid,.gallery-grid,.process-grid,.footer-grid,.quote-form{grid-template-columns:1fr}
  .frame-large,.frame-small{height:auto}
  .project-card img,.gallery-item img{height:220px}
  .quote-form input,.quote-form textarea{grid-column:auto}
}

@media (max-width: 480px){
  .nav-row{gap:12px}
  .lang-toggle{min-width:44px;height:42px}
  .btn{padding:13px 18px}
  .hero-content h1{font-size:38px}
  .stats-bar{grid-template-columns:1fr}
  .stat-item:not(:last-child)::after{display:none}
}


@media (max-width: 640px){
  .brand{gap:8px}
  .brand-copy{gap:8px}
  .brand-ar{font-size:24px;line-height:1.2}
  .brand-en{font-size:7px;letter-spacing:.08em;padding-inline-start:22px;line-height:1.2}
  .flag-inline{transform:scale(.88) translateY(-1px)}
}


.mobile-sticky-actions{display:none}

@media (max-width: 1100px){
  .top-nav{position:sticky;top:0}
  .nav-row{flex-wrap:wrap;align-items:flex-start;padding:14px 0 12px}
  .brand{min-width:0;flex:1 1 auto;align-items:center}
  .brand-copy{min-height:auto;gap:6px}
  .nav-actions{flex:0 0 auto;align-self:flex-start}
  .nav-links{
    display:flex;order:3;width:100%;gap:10px;overflow-x:auto;white-space:nowrap;
    padding:4px 2px 2px;scrollbar-width:none;-ms-overflow-style:none
  }
  .nav-links::-webkit-scrollbar{display:none}
  .nav-links a{
    flex:0 0 auto;background:#fff;border:1px solid var(--border);border-radius:999px;
    padding:10px 16px;font-size:14px;font-weight:700;box-shadow:0 8px 18px rgba(0,0,0,.04)
  }
  .nav-links a::after{display:none}
  .hero-wrap{padding:18px 0 8px}
  .hero-card{min-height:620px;border-radius:28px}
  .hero-content{min-height:620px;padding:44px 28px 30px;justify-content:flex-end}
  .hero-overlay{background:linear-gradient(180deg,rgba(14,14,14,.20) 0%,rgba(14,14,14,.48) 38%,rgba(14,14,14,.78) 100%),radial-gradient(circle at top left, rgba(183,144,93,.30), transparent 38%)}
  .hero-badge{font-size:13px;margin-bottom:18px}
  .hero-actions{gap:12px}
  .hero-actions .btn{min-width:170px}
  .stats-bar{width:100%;border-radius:20px;overflow:hidden;margin-top:16px;box-shadow:0 12px 28px rgba(0,0,0,.05)}
  .section{padding:74px 0}
  .section-head,.split-head{margin-bottom:24px}
  .split-head{flex-direction:column;align-items:flex-start}
  .about-visual{order:-1}
  .frame{padding:10px;border-radius:22px}
  .frame img{border-radius:16px}
  .frame-large{height:460px}
  .frame-small{height:240px}
  .service-card,.process-card,.info-card{padding:22px}
  .project-card img{height:280px}
  .project-copy{padding:20px}
  .gallery-item img{height:210px}
  .quote-form{padding:20px}
  .map-embed{height:240px}
}

@media (max-width: 760px){
  body{padding-bottom:88px}
  .container{width:min(100% - 18px, 1180px)}
  .top-nav{backdrop-filter:blur(14px)}
  .nav-row{gap:10px;padding:12px 0 10px}
  .brand{gap:8px}
  .brand-mark{width:38px;height:38px}
  .brand-copy{gap:4px}
  .brand-line{gap:8px}
  .brand-ar{font-size:22px;line-height:1.12}
  .brand-en{font-size:8px;letter-spacing:.16em;padding-inline-start:22px}
  .lang-toggle{min-width:42px;height:40px;border-radius:12px}
  .nav-links{gap:8px;padding-bottom:0}
  .nav-links a{padding:9px 14px;font-size:13px}
  .hero-card{min-height:540px;border-radius:24px}
  .hero-bg{object-position:center right}
  .hero-content{min-height:540px;padding:28px 18px 22px}
  .hero-badge{max-width:100%;font-size:12px;padding:8px 12px;line-height:1.5;flex-wrap:wrap}
  .hero-content h1{font-size:36px;line-height:1.06;margin-bottom:10px}
  .hero-subtitle{font-size:16px;line-height:1.75}
  .hero-actions{display:grid;grid-template-columns:1fr 1fr;width:100%;margin-top:24px}
  .hero-actions .btn{width:100%;padding:13px 14px;font-size:14px;min-width:0}
  .stats-bar{grid-template-columns:1fr;gap:0;border-radius:18px}
  .stat-item{padding:16px 18px}
  .stat-item:not(:last-child)::after{display:none}
  .stat-item strong{font-size:28px}
  .stat-item span{font-size:14px}
  .section{padding:60px 0}
  .section-head h2,.about-copy h2,.quote-copy h2,.contact-copy h2{font-size:28px;line-height:1.18}
  .section-head p,.about-copy p,.contact-copy p,.quote-copy p{font-size:16px;line-height:1.85}
  .pill-row{gap:8px;margin-top:18px}
  .pill-row span{padding:10px 14px;font-size:13px}
  .about-visual{grid-template-columns:1fr;gap:12px}
  .frame-large{height:320px}
  .frame-small{height:220px}
  .service-grid,.project-grid,.gallery-grid,.process-grid,.footer-grid,.quote-form{grid-template-columns:1fr}
  .service-card h3,.process-card h3,.project-copy h3{font-size:22px}
  .service-card p,.project-copy p,.process-card p{font-size:15px;line-height:1.8}
  .project-card img,.gallery-item img{height:210px}
  .gallery-grid{gap:12px}
  .quote-list{gap:10px;margin-top:18px}
  .quote-list li{font-size:15px;line-height:1.8}
  .quote-form input,.quote-form textarea{padding:14px 15px;border-radius:14px}
  .quote-form textarea{min-height:120px}
  .contact-grid{gap:22px}
  .contact-cards{gap:12px}
  .info-card strong{font-size:20px}
  .map-card-head{flex-direction:column;align-items:flex-start}
  .map-embed{height:220px}
  .footer{padding:44px 0 28px}
  .footer-brand{font-size:28px}
  .footer-copy,.footer-links{font-size:15px}
  .mobile-sticky-actions{
    position:fixed;inset-inline:10px;bottom:10px;z-index:90;display:grid;grid-template-columns:1fr 1fr 1fr;
    gap:8px;padding:8px;border-radius:20px;background:rgba(255,255,255,.94);backdrop-filter:blur(14px);
    border:1px solid rgba(17,17,17,.08);box-shadow:0 18px 40px rgba(0,0,0,.15)
  }
  .mobile-sticky-btn{
    display:flex;align-items:center;justify-content:center;min-height:46px;border-radius:14px;font-weight:800;font-size:13px
  }
  .mobile-sticky-btn.call{background:#111;color:#fff}
  .mobile-sticky-btn.whatsapp{background:#1fa855;color:#fff}
  .mobile-sticky-btn.quote{background:var(--gold);color:#fff}
}

@media (max-width: 480px){
  .brand-ar{font-size:20px}
  .brand-en{font-size:7px;letter-spacing:.14em;padding-inline-start:20px}
  .hero-actions{grid-template-columns:1fr}
  .hero-card{min-height:520px}
  .hero-content{min-height:520px}
  .hero-content h1{font-size:33px}
  .section-head h2,.about-copy h2,.quote-copy h2,.contact-copy h2{font-size:25px}
  .project-card img,.gallery-item img{height:195px}
  .mobile-sticky-actions{inset-inline:8px;bottom:8px;padding:7px;gap:7px}
}

html[dir="ltr"] .mobile-sticky-actions{direction:ltr}
