/* ============================================================
   Ewan Printing — design system
   Palette keyed to the logo: deep-gold lead + bright amber
   highlight + red-dot accent, on a clean paper-white canvas.
   ============================================================ */

:root {
  --bg: #FFFFFF;
  --surface: #FBF6EC;      /* warm cream cards / alt sections */
  --surface-2: #F5ECDA;    /* deeper cream */
  --ink: #1A1710;          /* warm near-black */
  --ink-soft: #3A3326;
  --muted: #6B6354;        /* secondary text */
  --primary: #9A6610;      /* deep gold/bronze — CTAs, links, gold text */
  --primary-d: #7C5108;    /* darker gold for hover */
  --secondary: #E8B23A;    /* bright amber — fills, chips, highlights */
  --secondary-l: #F4CF77;
  --accent: #E8112D;       /* the logo red dot — small emphasis only */
  --accent-d: #C20E26;
  --border: #EADFC6;       /* warm hairline */
  --border-2: #E0D2B2;
  --dark: #211A0E;         /* dramatic dark warm band / footer */
  --dark-2: #2E2412;
  --wa: #25D366;           /* whatsapp green */
  --wa-d: #1da851;

  --gold-grad: linear-gradient(135deg, #C8881D 0%, #E8B23A 45%, #B9760F 100%);
  --gold-grad-soft: linear-gradient(135deg, #F4CF77 0%, #E8B23A 100%);

  --shadow-sm: 0 1px 2px rgba(33,26,14,.05), 0 1px 3px rgba(33,26,14,.06);
  --shadow-md: 0 8px 24px -8px rgba(33,26,14,.16), 0 2px 6px rgba(33,26,14,.06);
  --shadow-lg: 0 24px 60px -18px rgba(33,26,14,.28), 0 8px 20px -10px rgba(33,26,14,.12);
  --shadow-gold: 0 14px 34px -12px rgba(154,102,16,.45);

  --r-sm: 10px;
  --r: 16px;
  --r-lg: 22px;
  --r-xl: 30px;

  --maxw: 1200px;
  --pad: clamp(18px, 5vw, 40px);
  --sec-y: clamp(64px, 9vw, 116px);

  --ff-display: "Figtree", system-ui, sans-serif;
  --ff-body: "Inter", system-ui, sans-serif;
  --ff-ar: "IBM Plex Sans Arabic", "Figtree", sans-serif;

  --ease: cubic-bezier(.4, 0, .15, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--ff-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

[dir="rtl"] body, [dir="rtl"] { font-family: var(--ff-ar); }
[dir="rtl"] .num { font-family: var(--ff-body); }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

h1, h2, h3, h4 { font-family: var(--ff-display); line-height: 1.08; letter-spacing: -.02em; color: var(--ink); font-weight: 700; }
[dir="rtl"] h1, [dir="rtl"] h2, [dir="rtl"] h3, [dir="rtl"] h4 { font-family: var(--ff-ar); letter-spacing: 0; line-height: 1.25; }

:focus-visible { outline: 3px solid var(--primary); outline-offset: 2px; border-radius: 4px; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad); }

/* ---------- reusable bits ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--ff-display); font-weight: 700; font-size: 13px;
  letter-spacing: .14em; text-transform: uppercase; color: var(--primary);
}
[dir="rtl"] .eyebrow { letter-spacing: 0; text-transform: none; font-family: var(--ff-ar); }
.eyebrow::before {
  content: ""; width: 9px; height: 9px; border-radius: 50%;
  background: var(--accent); box-shadow: 0 0 0 4px rgba(232,17,45,.13);
}

.sec-head { max-width: 680px; margin-bottom: clamp(34px, 5vw, 56px); }
.sec-head.center { margin-inline: auto; text-align: center; }
.sec-head.center .eyebrow { justify-content: center; }
.sec-head h2 { font-size: clamp(30px, 5vw, 48px); margin: 16px 0 0; }
.sec-head p { color: var(--muted); font-size: clamp(16px, 2vw, 18px); margin-top: 16px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--ff-display); font-weight: 600; font-size: 15px;
  padding: 13px 22px; border-radius: 999px; transition: all .22s var(--ease);
  white-space: nowrap; cursor: pointer; line-height: 1;
}
[dir="rtl"] .btn { font-family: var(--ff-ar); }
.btn svg { width: 18px; height: 18px; flex: none; }
.btn-primary { background: var(--gold-grad); color: #fff; box-shadow: var(--shadow-gold); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -12px rgba(154,102,16,.6); }
.btn-wa { background: var(--wa); color: #fff; box-shadow: 0 12px 28px -10px rgba(37,211,102,.6); }
.btn-wa:hover { background: var(--wa-d); transform: translateY(-2px); }
.btn-ghost { background: #fff; color: var(--ink); border: 1.5px solid var(--border-2); }
.btn-ghost:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-2px); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: var(--primary); transform: translateY(-2px); }
.btn-lg { padding: 16px 30px; font-size: 16.5px; }
.btn-sm { padding: 10px 16px; font-size: 13.5px; }

.tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12.5px; font-weight: 600; font-family: var(--ff-display);
  padding: 5px 11px; border-radius: 999px; background: var(--surface-2);
  color: var(--primary-d); border: 1px solid var(--border-2);
}
[dir="rtl"] .tag { font-family: var(--ff-ar); }

/* ============================================================
   NAVBAR
   ============================================================ */
.nav {
  position: fixed; inset-block-start: 0; inset-inline: 0; z-index: 100;
  transition: background .3s var(--ease), box-shadow .3s var(--ease), padding .3s var(--ease);
  padding: 16px 0;
}
.nav.scrolled {
  background: rgba(255,255,255,.88); backdrop-filter: saturate(1.4) blur(14px);
  box-shadow: 0 1px 0 var(--border), 0 6px 24px -16px rgba(33,26,14,.3);
  padding: 9px 0;
}
.nav-inner { display: flex; align-items: center; gap: 18px; }
.nav-logo { display: flex; align-items: center; flex: none; }
.nav-logo img { height: 58px; width: auto; transition: height .3s var(--ease); }
.nav.scrolled .nav-logo img { height: 50px; }
.nav-links { display: flex; align-items: center; gap: 4px; margin-inline-start: auto; }
.nav-link {
  font-family: var(--ff-display); font-weight: 600; font-size: 15px; color: var(--ink-soft);
  padding: 9px 14px; border-radius: 10px; transition: all .18s var(--ease); position: relative;
}
[dir="rtl"] .nav-link { font-family: var(--ff-ar); }
.nav-link:hover { color: var(--primary); background: var(--surface); }
.nav-actions { display: flex; align-items: center; gap: 10px; margin-inline-start: 6px; }
.lang-toggle {
  display: inline-flex; align-items: center; gap: 7px; font-family: var(--ff-display);
  font-weight: 700; font-size: 13.5px; color: var(--ink); padding: 9px 14px;
  border: 1.5px solid var(--border-2); border-radius: 999px; transition: all .18s var(--ease);
}
.lang-toggle:hover { border-color: var(--primary); color: var(--primary); }
.lang-toggle svg { width: 16px; height: 16px; }

.nav-burger { display: none; width: 46px; height: 46px; border-radius: 12px; border: 1.5px solid var(--border-2);
  background: #fff; align-items: center; justify-content: center; margin-inline-start: auto; }
.nav-burger span { display: block; width: 20px; height: 2px; background: var(--ink); border-radius: 2px; position: relative; }
.nav-burger span::before, .nav-burger span::after { content: ""; position: absolute; inset-inline: 0; height: 2px; background: var(--ink); border-radius: 2px; transition: .25s var(--ease); }
.nav-burger span::before { top: -6px; }
.nav-burger span::after { top: 6px; }

/* mobile drawer */
.drawer { position: fixed; inset: 0; z-index: 120; pointer-events: none; }
.drawer-scrim { position: absolute; inset: 0; background: rgba(20,16,8,.5); opacity: 0; transition: opacity .3s; backdrop-filter: blur(2px); }
.drawer-panel {
  position: absolute; inset-block: 0; inset-inline-end: 0; width: min(86vw, 360px);
  background: var(--bg); box-shadow: var(--shadow-lg); padding: 22px;
  transform: translateX(110%); transition: transform .35s var(--ease);
  display: flex; flex-direction: column; gap: 6px; overflow-y: auto;
}
[dir="rtl"] .drawer-panel { transform: translateX(-110%); }
.drawer.open { pointer-events: auto; }
.drawer.open .drawer-scrim { opacity: 1; }
.drawer.open .drawer-panel { transform: translateX(0); }
.drawer-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.drawer-top img { height: 48px; }
.drawer-close { width: 42px; height: 42px; border-radius: 10px; background: var(--surface); display: flex; align-items: center; justify-content: center; font-size: 22px; color: var(--ink); }
.drawer-link { font-family: var(--ff-display); font-weight: 600; font-size: 18px; padding: 13px 12px; border-radius: 12px; color: var(--ink); }
[dir="rtl"] .drawer-link { font-family: var(--ff-ar); }
.drawer-link:hover { background: var(--surface); color: var(--primary); }
.drawer-actions { margin-top: auto; padding-top: 18px; display: grid; gap: 10px; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; padding-top: clamp(112px, 16vw, 168px); padding-bottom: var(--sec-y); overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: -2; background:
  radial-gradient(1100px 560px at 88% -8%, rgba(232,178,58,.22), transparent 60%),
  radial-gradient(800px 480px at 4% 8%, rgba(232,178,58,.12), transparent 55%),
  var(--bg); }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(30px, 5vw, 64px); align-items: center; }
.hero-copy { max-width: 600px; }
.hero h1 { font-size: clamp(38px, 6.4vw, 70px); font-weight: 800; margin: 22px 0 0; }
.hero h1 .grad { background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero .lead { font-size: clamp(17px, 2.2vw, 20px); color: var(--muted); margin-top: 22px; max-width: 520px; }
[dir="rtl"] .hero .lead { margin-inline: 0; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 30px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 22px 30px; margin-top: 34px; padding-top: 28px; border-top: 1px solid var(--border); }
.hero-trust-item { display: flex; align-items: center; gap: 11px; }
.hero-trust-item .ic { width: 38px; height: 38px; border-radius: 11px; background: var(--surface); border: 1px solid var(--border); display: grid; place-items: center; color: var(--primary); flex: none; }
.hero-trust-item .ic svg { width: 19px; height: 19px; }
.hero-trust-item b { font-family: var(--ff-display); font-size: 14.5px; display: block; }
.hero-trust-item span { font-size: 12.5px; color: var(--muted); }

/* hero visual collage */
.hero-visual { position: relative; }
.hero-stack { position: relative; border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--border); aspect-ratio: 4/3.4; background: var(--surface); }
.hero-stack img { width: 100%; height: 100%; object-fit: cover; }
.hero-chip {
  position: absolute; background: rgba(255,255,255,.94); backdrop-filter: blur(8px);
  border: 1px solid var(--border); border-radius: 14px; padding: 11px 15px; box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 10px; font-family: var(--ff-display); font-weight: 600; font-size: 14px;
}
.hero-chip .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--accent); flex: none; }
.hero-chip.tl { inset-block-start: 18px; inset-inline-start: -14px; }
.hero-chip.br { inset-block-end: 20px; inset-inline-end: -12px; }
.hero-chip small { display: block; font-size: 11.5px; color: var(--muted); font-weight: 500; }

/* marquee strip of capabilities */
.marquee { border-block: 1px solid var(--border); background: var(--surface); overflow: hidden; padding: 16px 0; }
.marquee-track { display: flex; gap: 44px; white-space: nowrap; width: max-content; animation: marquee 34s linear infinite; }
[dir="rtl"] .marquee-track { animation-direction: reverse; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item { display: inline-flex; align-items: center; gap: 11px; font-family: var(--ff-display); font-weight: 600; font-size: 16px; color: var(--ink-soft); }
.marquee-item .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--secondary); }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; flex-wrap: wrap; white-space: normal; justify-content: center; } }

/* ============================================================
   SERVICES
   ============================================================ */
.services { padding-block: var(--sec-y); }
.svc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.svc-card {
  position: relative; background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 30px; overflow: hidden; transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  display: flex; flex-direction: column; min-height: 100%;
}
.svc-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--border-2); }
.svc-card .num { position: absolute; inset-block-start: 24px; inset-inline-end: 28px; font-family: var(--ff-display); font-weight: 800; font-size: 40px; color: var(--surface-2); line-height: 1; }
.svc-ic { width: 58px; height: 58px; border-radius: 16px; background: var(--gold-grad-soft); display: grid; place-items: center; color: var(--ink); margin-bottom: 20px; box-shadow: inset 0 1px 1px rgba(255,255,255,.5); }
.svc-ic svg { width: 28px; height: 28px; }
.svc-card h3 { font-size: 22px; }
.svc-card p { color: var(--muted); font-size: 15px; margin-top: 10px; }
.svc-list { margin-top: 16px; display: flex; flex-wrap: wrap; gap: 7px; }
.svc-list .tag { background: var(--surface); }
.svc-foot { margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--border); display: flex; gap: 10px; align-items: center; }
.svc-link { font-family: var(--ff-display); font-weight: 600; font-size: 14.5px; color: var(--primary); display: inline-flex; align-items: center; gap: 7px; }
.svc-link svg { width: 16px; height: 16px; transition: transform .2s var(--ease); }
[dir="rtl"] .svc-link svg { transform: scaleX(-1); }
.svc-card:hover .svc-link svg { transform: translateX(4px); }
[dir="rtl"] .svc-card:hover .svc-link svg { transform: scaleX(-1) translateX(4px); }

/* ============================================================
   PORTFOLIO / GALLERY
   ============================================================ */
.gallery { padding-block: var(--sec-y); background: var(--surface); }
.gal-head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 30px; }
.gal-filter { display: flex; flex-wrap: wrap; gap: 8px; }
.gal-chip {
  font-family: var(--ff-display); font-weight: 600; font-size: 14px; padding: 9px 16px; border-radius: 999px;
  background: #fff; border: 1.5px solid var(--border-2); color: var(--ink-soft); transition: all .2s var(--ease);
}
[dir="rtl"] .gal-chip { font-family: var(--ff-ar); }
.gal-chip:hover { border-color: var(--primary); color: var(--primary); }
.gal-chip.active { background: var(--ink); border-color: var(--ink); color: #fff; }
.gal-grid { columns: 3; column-gap: 18px; }
.gal-item {
  position: relative; break-inside: avoid; margin-bottom: 18px; border-radius: var(--r); overflow: hidden;
  cursor: pointer; background: #fff; border: 1px solid var(--border); box-shadow: var(--shadow-sm);
  transition: box-shadow .3s var(--ease), transform .3s var(--ease);
}
.gal-item:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.gal-item img { width: 100%; height: auto; transition: transform .5s var(--ease); }
.gal-item:hover img { transform: scale(1.06); }
.gal-overlay {
  position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end;
  padding: 16px; background: linear-gradient(to top, rgba(20,16,8,.82) 0%, rgba(20,16,8,.1) 55%, transparent 100%);
  opacity: 0; transition: opacity .3s var(--ease);
}
.gal-item:hover .gal-overlay { opacity: 1; }
.gal-overlay h4 { color: #fff; font-size: 17px; }
.gal-overlay span { color: rgba(255,255,255,.8); font-size: 12.5px; font-weight: 600; }
.gal-overlay .mini-cta { margin-top: 9px; display: inline-flex; align-items: center; gap: 6px; font-family: var(--ff-display); font-weight: 600; font-size: 13px; color: var(--secondary-l); }
.gal-note { margin-top: 24px; font-size: 13.5px; color: var(--muted); display: flex; gap: 9px; align-items: flex-start; max-width: 720px; }
.gal-note svg { width: 17px; height: 17px; flex: none; margin-top: 2px; color: var(--primary); }

/* lightbox */
.lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(15,12,6,.92); display: flex; align-items: center; justify-content: center; padding: 4vw; opacity: 0; pointer-events: none; transition: opacity .3s; }
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox-inner { max-width: 860px; width: 100%; background: var(--bg); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); max-height: 92vh; display: flex; flex-direction: column; }
.lightbox-img { background: var(--surface); display: grid; place-items: center; overflow: hidden; }
.lightbox-img img { max-height: 64vh; width: auto; object-fit: contain; }
.lightbox-foot { padding: 20px 24px; display: flex; flex-wrap: wrap; align-items: center; gap: 14px; justify-content: space-between; }
.lightbox-foot h4 { font-size: 20px; }
.lightbox-foot span { font-size: 13px; color: var(--muted); }
.lightbox-close { position: absolute; inset-block-start: 18px; inset-inline-end: 18px; width: 46px; height: 46px; border-radius: 50%; background: rgba(255,255,255,.15); color: #fff; font-size: 24px; display: grid; place-items: center; transition: background .2s; }
.lightbox-close:hover { background: rgba(255,255,255,.3); }
.lightbox-nav { position: absolute; inset-block-start: 50%; transform: translateY(-50%); width: 50px; height: 50px; border-radius: 50%; background: rgba(255,255,255,.14); color: #fff; font-size: 24px; display: grid; place-items: center; transition: background .2s; }
.lightbox-nav:hover { background: rgba(255,255,255,.3); }
.lightbox-nav.prev { inset-inline-start: 14px; }
.lightbox-nav.next { inset-inline-end: 14px; }

/* ============================================================
   WHY EWAN
   ============================================================ */
.why { padding-block: var(--sec-y); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.why-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 26px; }
.why-card .ic { width: 52px; height: 52px; border-radius: 14px; background: #fff; border: 1px solid var(--border); display: grid; place-items: center; color: var(--primary); margin-bottom: 18px; }
.why-card .ic svg { width: 25px; height: 25px; }
.why-card h3 { font-size: 19px; }
.why-card p { color: var(--muted); font-size: 14.5px; margin-top: 9px; }

/* ============================================================
   SHOP (thin) — quote-based, no prices
   ============================================================ */
.shop { padding-block: var(--sec-y); background: var(--surface); }
.shop-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.shop-card { background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; display: flex; flex-direction: column; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.shop-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.shop-thumb { aspect-ratio: 4/3; overflow: hidden; background: var(--surface); position: relative; }
.shop-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.shop-card:hover .shop-thumb img { transform: scale(1.05); }
.shop-thumb .tag { position: absolute; inset-block-start: 12px; inset-inline-start: 12px; background: rgba(255,255,255,.94); }
.shop-body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.shop-body h3 { font-size: 18px; }
.shop-body p { color: var(--muted); font-size: 13.5px; margin-top: 7px; flex: 1; }
.shop-price { font-family: var(--ff-display); font-weight: 700; font-size: 15px; color: var(--primary); margin-top: 14px; }
.shop-price small { color: var(--muted); font-weight: 500; font-size: 12.5px; }
.shop-actions { display: flex; gap: 9px; margin-top: 16px; }
.shop-actions .btn { flex: 1; padding-inline: 8px; }

/* ============================================================
   ABOUT
   ============================================================ */
.about { padding-block: var(--sec-y); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(34px, 6vw, 76px); align-items: center; }
.about-imgs { position: relative; }
.about-imgs .main { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--border); }
.about-imgs .main img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.about-imgs .float { position: absolute; inset-block-end: -26px; inset-inline-end: -22px; width: 52%; border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow-lg); border: 4px solid #fff; }
.about-imgs .float img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.about-copy h2 { font-size: clamp(28px, 4.4vw, 44px); margin-top: 16px; }
.about-copy > p { color: var(--muted); font-size: 16.5px; margin-top: 18px; }
.about-pillars { margin-top: 28px; display: grid; gap: 14px; }
.about-pillar { display: flex; gap: 15px; align-items: flex-start; }
.about-pillar .ic { width: 44px; height: 44px; border-radius: 12px; background: var(--surface); border: 1px solid var(--border); display: grid; place-items: center; color: var(--primary); flex: none; }
.about-pillar .ic svg { width: 22px; height: 22px; }
.about-pillar h4 { font-size: 16.5px; }
.about-pillar p { color: var(--muted); font-size: 14px; margin-top: 3px; }
.about-langs { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 9px; align-items: center; }
.about-langs span { font-size: 13.5px; color: var(--muted); }

/* ============================================================
   QUOTE BAND
   ============================================================ */
.qband { position: relative; overflow: hidden; background: var(--dark); color: #fff; padding-block: clamp(54px, 8vw, 92px); }
.qband::before { content: ""; position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(700px 360px at 84% 120%, rgba(232,178,58,.26), transparent 60%),
              radial-gradient(540px 340px at 6% -20%, rgba(232,17,45,.14), transparent 60%); }
.qband .wrap { position: relative; z-index: 1; display: grid; grid-template-columns: 1.3fr .9fr; gap: 40px; align-items: center; }
.qband .eyebrow { color: var(--secondary-l); }
.qband .eyebrow::before { box-shadow: 0 0 0 4px rgba(232,17,45,.25); }
.qband h2 { color: #fff; font-size: clamp(28px, 4.6vw, 46px); margin-top: 14px; }
.qband p { color: rgba(255,255,255,.72); margin-top: 14px; font-size: 17px; max-width: 480px; }
.qband-cta { display: flex; flex-direction: column; gap: 12px; }
.qband-cta .btn { width: 100%; }
.qband-cta .row { display: flex; gap: 12px; }
.qband-cta .row .btn { flex: 1; }
.cmyk-rule { display: flex; height: 5px; border-radius: 3px; overflow: hidden; margin-bottom: 26px; width: 120px; }
.cmyk-rule i { flex: 1; }
.cmyk-rule i:nth-child(1){background:#00AEEF}.cmyk-rule i:nth-child(2){background:#EC008C}.cmyk-rule i:nth-child(3){background:#FFF200}.cmyk-rule i:nth-child(4){background:#1A1710}

/* ============================================================
   CONTACT
   ============================================================ */
.contact { padding-block: var(--sec-y); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(30px, 5vw, 56px); align-items: start; }
.contact-cards { display: grid; gap: 14px; }
.cinfo { display: flex; gap: 15px; align-items: flex-start; background: var(--surface); border: 1px solid var(--border); border-radius: var(--r); padding: 18px 20px; transition: border-color .2s, transform .2s; }
.cinfo:hover { border-color: var(--border-2); }
.cinfo .ic { width: 46px; height: 46px; border-radius: 12px; background: #fff; border: 1px solid var(--border); display: grid; place-items: center; color: var(--primary); flex: none; }
.cinfo .ic svg { width: 22px; height: 22px; }
.cinfo h4 { font-size: 15px; }
.cinfo p, .cinfo a { color: var(--muted); font-size: 14.5px; margin-top: 3px; display: block; }
.cinfo a:hover { color: var(--primary); }
.cinfo .lines a { margin-top: 5px; }
.cinfo .lbl { font-size: 11.5px; font-weight: 600; color: var(--primary); }

.map-ph { margin-top: 14px; border-radius: var(--r); overflow: hidden; border: 1px dashed var(--border-2); background:
  repeating-linear-gradient(45deg, var(--surface), var(--surface) 12px, var(--surface-2) 12px, var(--surface-2) 24px);
  aspect-ratio: 16/7; display: grid; place-items: center; text-align: center; padding: 20px; }
.map-ph .ic { width: 50px; height: 50px; border-radius: 14px; background: #fff; border: 1px solid var(--border); display: grid; place-items: center; color: var(--primary); margin: 0 auto 12px; }
.map-ph h4 { font-size: 16px; }
.map-ph p { font-size: 13px; color: var(--muted); margin-top: 5px; max-width: 340px; }

/* form */
.qform { background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg); padding: clamp(22px, 4vw, 36px); box-shadow: var(--shadow-md); }
.qform h3 { font-size: 24px; }
.qform .sub { color: var(--muted); font-size: 14.5px; margin-top: 7px; margin-bottom: 22px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-family: var(--ff-display); font-weight: 600; font-size: 13.5px; margin-bottom: 7px; }
[dir="rtl"] .field label { font-family: var(--ff-ar); }
.field label .req { color: var(--accent); }
.field input, .field select, .field textarea {
  width: 100%; font-family: inherit; font-size: 15px; padding: 12px 14px; border: 1.5px solid var(--border-2);
  border-radius: 11px; background: var(--bg); color: var(--ink); transition: border-color .18s, box-shadow .18s;
}
.field textarea { resize: vertical; min-height: 96px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 4px rgba(154,102,16,.13); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.file-drop { border: 1.5px dashed var(--border-2); border-radius: 11px; padding: 18px; text-align: center; color: var(--muted); font-size: 13.5px; cursor: pointer; transition: border-color .2s, background .2s; }
.file-drop:hover { border-color: var(--primary); background: var(--surface); }
.file-drop svg { width: 22px; height: 22px; color: var(--primary); margin: 0 auto 7px; }
.file-drop b { color: var(--primary); }
.form-actions { display: flex; flex-wrap: wrap; gap: 11px; margin-top: 8px; }
.form-actions .btn { flex: 1; min-width: 150px; }
.form-note { font-size: 12px; color: var(--muted); margin-top: 14px; text-align: center; }
.form-ok { text-align: center; padding: 28px 10px; }
.form-ok .ic { width: 64px; height: 64px; border-radius: 50%; background: var(--gold-grad-soft); display: grid; place-items: center; margin: 0 auto 18px; color: var(--ink); }
.form-ok .ic svg { width: 32px; height: 32px; }
.form-ok h3 { font-size: 23px; }
.form-ok p { color: var(--muted); margin-top: 9px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--dark); color: rgba(255,255,255,.7); padding-block: clamp(48px, 7vw, 76px) 30px; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 36px; }
.footer-brand img { height: 72px; width: auto; margin-bottom: 18px; }
.footer-brand p { font-size: 14.5px; max-width: 290px; }
.footer-tagline { color: var(--secondary-l); font-family: var(--ff-display); font-weight: 600; font-size: 15px; margin-top: 14px; }
.footer h4 { color: #fff; font-size: 15px; margin-bottom: 16px; letter-spacing: .02em; }
.footer-links { display: grid; gap: 10px; }
.footer-links a { font-size: 14px; transition: color .18s; }
.footer-links a:hover { color: var(--secondary-l); }
.footer-contact { display: grid; gap: 11px; font-size: 14px; }
.footer-contact a:hover { color: var(--secondary-l); }
.footer-social { display: flex; gap: 11px; margin-top: 16px; }
.footer-social a { width: 42px; height: 42px; border-radius: 12px; background: rgba(255,255,255,.08); display: grid; place-items: center; color: #fff; transition: background .2s, transform .2s; }
.footer-social a:hover { background: var(--primary); transform: translateY(-2px); }
.footer-social svg { width: 19px; height: 19px; }
.footer-bottom { margin-top: 40px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; font-size: 13px; }

/* ============================================================
   FLOATING ACTIONS
   ============================================================ */
.wa-fab { position: fixed; inset-block-end: 24px; inset-inline-end: 24px; z-index: 90; width: 60px; height: 60px; border-radius: 50%;
  background: var(--wa); color: #fff; display: grid; place-items: center; box-shadow: 0 14px 30px -8px rgba(37,211,102,.6);
  transition: transform .25s var(--ease); }
.wa-fab:hover { transform: scale(1.08); }
.wa-fab svg { width: 30px; height: 30px; }
.wa-fab::after { content: ""; position: absolute; inset: 0; border-radius: 50%; border: 2px solid var(--wa); animation: pulse 2.4s ease-out infinite; }
@keyframes pulse { 0% { transform: scale(1); opacity: .7; } 100% { transform: scale(1.7); opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .wa-fab::after { animation: none; } }

.mbar { display: none; position: fixed; inset-block-end: 0; inset-inline: 0; z-index: 95; background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px); border-top: 1px solid var(--border); padding: 9px 10px calc(9px + env(safe-area-inset-bottom));
  grid-template-columns: repeat(3, 1fr); gap: 8px; box-shadow: 0 -4px 20px -8px rgba(33,26,14,.18); }
.mbar a { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px; padding: 8px 4px; border-radius: 12px;
  font-family: var(--ff-display); font-weight: 600; font-size: 12px; min-height: 48px; }
[dir="rtl"] .mbar a { font-family: var(--ff-ar); }
.mbar a svg { width: 21px; height: 21px; }
.mbar .m-call { background: var(--surface); color: var(--primary); }
.mbar .m-wa { background: var(--wa); color: #fff; }
.mbar .m-quote { background: var(--gold-grad); color: #fff; }

/* ============================================================
   MODAL (quote)
   ============================================================ */
.modal { position: fixed; inset: 0; z-index: 210; display: flex; align-items: flex-start; justify-content: center; padding: 5vh 16px; overflow-y: auto;
  background: rgba(20,16,8,.55); backdrop-filter: blur(3px); opacity: 0; pointer-events: none; transition: opacity .3s; }
.modal.open { opacity: 1; pointer-events: auto; }
.modal-card { width: 100%; max-width: 560px; background: var(--bg); border-radius: var(--r-lg); box-shadow: var(--shadow-lg);
  transform: translateY(20px) scale(.98); transition: transform .3s var(--ease); position: relative; margin: auto 0; }
.modal.open .modal-card { transform: none; }
.modal-close { position: absolute; inset-block-start: 16px; inset-inline-end: 16px; width: 40px; height: 40px; border-radius: 50%; background: var(--surface); color: var(--ink); font-size: 22px; display: grid; place-items: center; z-index: 2; }
.modal-close:hover { background: var(--surface-2); }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1000px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 520px; margin-inline: auto; order: -1; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 30px 24px; }
  .qband .wrap { grid-template-columns: 1fr; }
  .gal-grid { columns: 2; }
}
@media (max-width: 820px) {
  .nav-links, .nav-actions { display: none; }
  .nav-burger { display: flex; }
  .nav.scrolled, .nav { padding: 12px 0; }
  .svc-grid { grid-template-columns: 1fr; }
  .shop-grid { grid-template-columns: 1fr 1fr; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-imgs { max-width: 440px; margin-inline: auto; }
  .mbar { display: grid; }
  .wa-fab { inset-block-end: 84px; width: 54px; height: 54px; }
  .wa-fab svg { width: 27px; height: 27px; }
  body { padding-bottom: 0; }
}
@media (max-width: 560px) {
  .why-grid { grid-template-columns: 1fr; }
  .shop-grid { grid-template-columns: 1fr; }
  .gal-grid { columns: 1; }
  .field-row { grid-template-columns: 1fr; }
  .hero-chip.tl { inset-inline-start: 4px; }
  .hero-chip.br { inset-inline-end: 4px; }
  .hero-trust { gap: 16px 20px; }
  .about-imgs .float { inset-inline-end: 0; width: 46%; }
  .lightbox-foot { padding: 16px; }
}
