:root {
    --ink: #121212;
    --ink-2: #1b1b1b;
    --paper: #f7f4ee;
    --white: #ffffff;
    --muted: #6b6b67;
    --line: rgba(18,18,18,.12);
    --yellow: #f5aa00;
    --yellow-2: #ffc132;
    --green: #128c53;
    --radius: 28px;
    --shadow: 0 24px 70px rgba(0,0,0,.14);
    --shell: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--paper); }
body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: "Segoe UI", Tahoma, Arial, sans-serif;
    line-height: 1.75;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
svg { width: 1.2em; height: 1.2em; fill: currentColor; flex: 0 0 auto; }
.shell { width: min(calc(100% - 36px), var(--shell)); margin-inline: auto; }
.skip-link { position: fixed; inset-inline-start: 12px; top: -100px; z-index: 1000; background: #fff; padding: 10px 16px; border-radius: 10px; }
.skip-link:focus { top: 12px; }

.site-header {
    position: absolute;
    inset: 0 0 auto 0;
    z-index: 20;
    padding-top: 18px;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.brand { display: inline-flex; align-items: center; gap: 11px; color: #fff; text-decoration: none; }
.brand-mark {
    display: grid; place-items: center; width: 46px; height: 46px; border-radius: 14px;
    background: var(--yellow); color: #0a0a0a; font-weight: 900; letter-spacing: -.06em; direction: ltr;
    box-shadow: 0 12px 30px rgba(245,170,0,.22);
}
.brand-copy { display: grid; line-height: 1.2; }
.brand-copy strong { font-size: 1rem; }
.brand-copy small { margin-top: 5px; color: rgba(255,255,255,.64); font-size: .72rem; }
.header-call {
    display: inline-flex; align-items: center; gap: 12px; padding: 8px 8px 8px 14px;
    background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); backdrop-filter: blur(12px);
    color: #fff; text-decoration: none; border-radius: 999px;
}
.header-call span { font-size: .78rem; color: rgba(255,255,255,.7); }
.header-call b { background: #fff; color: var(--ink); border-radius: 999px; padding: 5px 12px; font-size: .92rem; }

.hero {
    position: relative;
    overflow: hidden;
    min-height: 760px;
    padding: 118px 0 58px;
    color: #fff;
    background:
      radial-gradient(circle at 12% 12%, rgba(245,170,0,.14), transparent 34%),
      linear-gradient(135deg, #0c0c0c 0%, #171717 62%, #101010 100%);
}
.hero::before {
    content: ""; position: absolute; width: 460px; height: 460px; border: 1px solid rgba(255,255,255,.05);
    border-radius: 50%; inset-inline-end: -180px; top: 40px; box-shadow: 0 0 0 90px rgba(255,255,255,.018), 0 0 0 180px rgba(255,255,255,.012);
}
.hero-grid { position: relative; display: grid; grid-template-columns: 1.12fr .88fr; align-items: center; gap: clamp(34px,6vw,88px); }
.hero-copy { padding-block: 28px; }
.eyebrow, .section-kicker { display: inline-flex; align-items: center; gap: 10px; font-size: .82rem; font-weight: 800; letter-spacing: .02em; }
.eyebrow { color: #f6c65d; }
.eyebrow span { width: 34px; height: 3px; border-radius: 9px; background: var(--yellow); }
.hero h1 { margin: 18px 0 18px; max-width: 760px; font-size: clamp(2.35rem,5.6vw,5.2rem); line-height: 1.07; letter-spacing: -.035em; font-weight: 900; }
.hero h1 em { color: var(--yellow); font-style: normal; }
.hero-lead { max-width: 680px; margin: 0; color: rgba(255,255,255,.72); font-size: clamp(1rem,1.7vw,1.18rem); }
.phone-block { margin-top: 30px; display: grid; width: fit-content; }
.phone-label { color: rgba(255,255,255,.58); font-size: .82rem; }
.hero-phone { margin-block: 0 2px; color: #fff; text-decoration: none; font-size: clamp(2.65rem,6vw,5.3rem); font-weight: 900; line-height: 1.05; letter-spacing: .015em; font-variant-numeric: tabular-nums; }
.hero-phone:hover { color: var(--yellow-2); }
.phone-note { color: rgba(255,255,255,.46); font-size: .73rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.btn { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; padding: 11px 18px; border-radius: 15px; text-decoration: none; font-weight: 800; transition: .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--yellow); color: #111; box-shadow: 0 12px 32px rgba(245,170,0,.18); }
.btn-primary:hover { background: var(--yellow-2); }
.btn-whatsapp { background: #1c9b61; color: #fff; }
.quick-nav { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.quick-nav a { padding: 7px 12px; border-radius: 999px; color: rgba(255,255,255,.75); text-decoration: none; border: 1px solid rgba(255,255,255,.12); font-size: .8rem; }
.quick-nav a:hover { border-color: var(--yellow); color: #fff; }
.hero-visual { min-width: 0; }
.hero-photo-wrap { position: relative; width: min(100%, 470px); margin-inline-start: auto; border-radius: 34px; overflow: hidden; background: #222; box-shadow: 0 38px 90px rgba(0,0,0,.42); transform: rotate(-1deg); }
.hero-photo-wrap::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.08), transparent 40%, rgba(0,0,0,.2)); pointer-events: none; }
.hero-photo-wrap img { width: 100%; height: 590px; object-fit: cover; object-position: 72% center; }
.hero-stamp { position: absolute; z-index: 2; inset-inline-start: 20px; bottom: 20px; display: flex; align-items: center; gap: 12px; padding: 11px 14px; background: rgba(10,10,10,.82); color: #fff; border: 1px solid rgba(255,255,255,.14); backdrop-filter: blur(12px); border-radius: 18px; }
.hero-stamp strong { color: var(--yellow); font-size: 2rem; line-height: 1; }
.hero-stamp span { font-size: .72rem; line-height: 1.4; color: rgba(255,255,255,.72); }

.trust-strip { background: var(--yellow); }
.trust-grid { min-height: 92px; display: grid; grid-template-columns: repeat(3,1fr); align-items: center; }
.trust-grid > div { display: grid; text-align: center; padding: 10px 18px; border-inline-start: 1px solid rgba(18,18,18,.18); }
.trust-grid > div:last-child { border-inline-start: 0; }
.trust-grid b { font-size: 1.03rem; }
.trust-grid span { color: rgba(18,18,18,.7); font-size: .8rem; }

.services-intro { padding: 88px 0 54px; max-width: 820px; text-align: center; }
.section-kicker { color: #9b6c00; }
.services-intro h2, .service-copy h2, .final-cta h2 { margin: 9px 0 12px; font-size: clamp(2rem,4vw,3.7rem); line-height: 1.15; letter-spacing: -.03em; }
.services-intro p { max-width: 680px; margin: 0 auto; color: var(--muted); }

.service { padding: 66px 0; }
.service-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(34px,6vw,84px); }
.service-grid-reverse .service-media { order: 2; }
.service-grid-reverse .service-copy { order: 1; }
.service-media { position: relative; min-width: 0; }
.service-media img { width: 100%; height: 500px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); background: #dedbd4; }
.service-index { position: absolute; inset-inline-end: -14px; top: -26px; font-size: clamp(4rem,8vw,7.5rem); line-height: 1; font-weight: 900; color: var(--yellow); text-shadow: 0 14px 28px rgba(0,0,0,.12); letter-spacing: -.08em; }
.service-copy { max-width: 560px; }
.service-copy > p { color: var(--muted); margin: 0 0 22px; font-size: 1.03rem; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 20px 0 26px; }
.chips span { padding: 8px 12px; background: rgba(18,18,18,.055); border: 1px solid rgba(18,18,18,.08); border-radius: 999px; font-size: .82rem; font-weight: 700; }
.text-cta { display: inline-flex; gap: 10px; align-items: center; color: var(--ink); font-weight: 900; text-decoration: none; border-bottom: 2px solid var(--yellow); padding-bottom: 4px; }
.text-cta span { color: #9b6c00; transition: transform .2s ease; }
.text-cta:hover span { transform: translateX(-5px); }
.service-dark { background: var(--ink); color: #fff; }
.service-dark .service-copy > p { color: rgba(255,255,255,.64); }
.service-dark .section-kicker { color: var(--yellow-2); }
.service-dark .chips span { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.1); }
.service-dark .text-cta { color: #fff; }
.service-soft { background: #ece8df; }
.service-kitchen { padding-bottom: 92px; }
.service-kitchen .service-media img { object-position: center; }
.image-fallback { min-height: 420px; border-radius: var(--radius); background: linear-gradient(135deg,#232323,#3b3b3b); }
.image-fallback img { display: none; }
.image-fallback::before { content: "مطابخ ألمنيوم"; position: absolute; inset: 0; display: grid; place-items: center; color: #fff; font-weight: 900; font-size: 2.2rem; }

.final-cta { padding: 82px 0 100px; color: #fff; background: linear-gradient(125deg,#171717,#090909); }
.final-grid { display: grid; grid-template-columns: 1fr .72fr; align-items: end; gap: 52px; }
.final-cta .section-kicker { color: var(--yellow-2); }
.final-cta p { margin: 0; color: rgba(255,255,255,.62); }
.final-contact { display: grid; gap: 16px; justify-items: start; }
.final-phone { color: #fff; text-decoration: none; font-size: clamp(2.8rem,6vw,4.7rem); font-weight: 900; line-height: 1; }
.footer { background: #070707; color: rgba(255,255,255,.62); padding: 24px 0 98px; }
.footer-inner { display: flex; justify-content: space-between; gap: 24px; align-items: center; font-size: .78rem; }
.footer-inner > div:first-child { display: grid; }
.footer strong { color: #fff; font-size: .9rem; }

.mobile-dock { display: none; }
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 900px) {
    .hero { min-height: auto; padding-top: 108px; }
    .hero-grid { grid-template-columns: 1fr; gap: 38px; }
    .hero-copy { padding-bottom: 0; }
    .hero-visual { width: 100%; }
    .hero-photo-wrap { width: 100%; max-width: none; margin: 0; transform: none; }
    .hero-photo-wrap img { height: min(72vw,520px); object-position: 70% 52%; }
    .service-grid, .final-grid { grid-template-columns: 1fr; }
    .service-grid-reverse .service-media, .service-grid-reverse .service-copy { order: initial; }
    .service-media img { height: min(76vw,500px); }
    .service-copy { max-width: none; }
    .final-contact { padding-top: 4px; }
}

@media (max-width: 640px) {
    :root { --radius: 22px; }
    .shell { width: min(calc(100% - 24px), var(--shell)); }
    .site-header { padding-top: 12px; }
    .brand-mark { width: 40px; height: 40px; border-radius: 12px; font-size: .88rem; }
    .brand-copy small { display: none; }
    .brand-copy strong { font-size: .9rem; }
    .header-call { padding: 5px; }
    .header-call span { display: none; }
    .header-call b { padding: 6px 10px; font-size: .78rem; }
    .hero { padding: 88px 0 34px; }
    .hero h1 { font-size: clamp(2.25rem,11vw,3.55rem); margin-top: 13px; }
    .hero-lead { font-size: .97rem; }
    .phone-block { margin-top: 24px; }
    .hero-phone { font-size: clamp(2.65rem,14.2vw,4rem); }
    .phone-note { display: none; }
    .hero-actions .btn { flex: 1 1 45%; padding-inline: 12px; font-size: .84rem; }
    .quick-nav { overflow-x: auto; flex-wrap: nowrap; padding-bottom: 3px; scrollbar-width: none; }
    .quick-nav::-webkit-scrollbar { display: none; }
    .quick-nav a { flex: 0 0 auto; }
    .hero-photo-wrap img { height: 430px; }
    .hero-stamp { bottom: 12px; inset-inline-start: 12px; }
    .trust-grid { grid-template-columns: 1fr; padding-block: 8px; }
    .trust-grid > div { min-height: 66px; place-content: center; border-inline-start: 0; border-bottom: 1px solid rgba(18,18,18,.16); }
    .trust-grid > div:last-child { border-bottom: 0; }
    .services-intro { padding: 62px 0 34px; text-align: start; }
    .services-intro p { margin: 0; }
    .service { padding: 44px 0; }
    .service-grid { gap: 30px; }
    .service-media img { height: 320px; }
    .service-copy h2, .services-intro h2, .final-cta h2 { font-size: clamp(1.9rem,9vw,2.65rem); }
    .service-index { inset-inline-end: 6px; top: -20px; }
    .chips { margin-block: 16px 20px; }
    .chips span { font-size: .76rem; padding: 7px 10px; }
    .final-cta { padding: 58px 0 70px; }
    .final-grid { gap: 26px; }
    .final-phone { font-size: clamp(2.7rem,13.5vw,4rem); }
    .footer { padding-bottom: 92px; }
    .footer-inner { align-items: start; flex-direction: column; gap: 10px; }
    .mobile-dock {
        position: fixed; display: grid; grid-template-columns: 1fr 94px; z-index: 100;
        inset-inline: 10px; bottom: max(10px, env(safe-area-inset-bottom));
        background: #111; border: 1px solid rgba(255,255,255,.12); border-radius: 18px; padding: 6px;
        box-shadow: 0 18px 46px rgba(0,0,0,.34);
    }
    .mobile-dock a { min-height: 52px; border-radius: 13px; text-decoration: none; display: flex; align-items: center; justify-content: center; font-weight: 900; }
    .dock-call { gap: 7px; background: var(--yellow); color: #111; }
    .dock-call span { font-size: .74rem; }
    .dock-call b { font-size: 1.1rem; }
    .dock-wa { color: #fff; background: var(--green); margin-inline-start: 6px; font-size: .8rem; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
    .reveal { opacity: 1; transform: none; }
}
