/* =========================================================
   NEFERTI GLASS — Timeless Luxury
   Dark luxury · gold-on-black · glassmorphism · bilingual
   ========================================================= */

:root {
  /* Palette */
  --black: #0a0a0a;
  --black-2: #0f0e0c;
  --panel: #141210;
  --panel-2: #1b1815;
  --line: rgba(212, 175, 55, 0.16);
  --line-soft: rgba(212, 175, 55, 0.09);

  --gold-1: #f7d774;
  --gold-2: #d4af37;
  --gold-3: #a67c00;
  --gold-grad: linear-gradient(135deg, #f7d774 0%, #e6c15a 35%, #d4af37 60%, #a67c00 100%);
  --gold-grad-soft: linear-gradient(135deg, rgba(247,215,116,.16), rgba(166,124,0,.06));

  --ink: #f4efe4;
  --muted: #b9b1a0;
  --muted-2: #8b8474;

  --maxw: 1220px;
  --radius: 18px;
  --radius-lg: 26px;
  --ease: cubic-bezier(.22, .61, .36, 1);

  --font-en-head: 'Cormorant', Georgia, serif;
  --font-en-body: 'Montserrat', system-ui, sans-serif;
  --font-ar-head: 'El Messiri', 'Cairo', system-ui, sans-serif;
  --font-ar-body: 'Cairo', system-ui, sans-serif;

  --f-head: var(--font-en-head);
  --f-body: var(--font-en-body);
}

html[lang="ar"] {
  --f-head: var(--font-ar-head);
  --f-body: var(--font-ar-body);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--black);
  color: var(--ink);
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
  position: relative;
}

/* Site-wide luxury leather/stone texture background */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(rgba(9,9,9,.78), rgba(9,9,9,.86)),
    url("../assets/bg-texture.webp") center/cover no-repeat;
  background-attachment: fixed, fixed;
}
/* Gold glow wash on top of the texture */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(1100px 700px at 80% -10%, rgba(212,175,55,.12), transparent 60%),
    radial-gradient(900px 600px at -10% 110%, rgba(166,124,0,.09), transparent 55%);
}

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

::selection { background: rgba(212,175,55,.3); color: #fff; }

/* ---------- Utilities ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }

.gold-text {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--f-body);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 18px;
}
html[lang="ar"] .eyebrow { letter-spacing: .06em; font-weight: 700; }
.eyebrow::before {
  content: ""; width: 34px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-2));
}

.section { padding: clamp(72px, 10vw, 130px) 0; position: relative; }

.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow::before { display: none; }

h1, h2, h3 { font-family: var(--f-head); font-weight: 600; line-height: 1.08; letter-spacing: -.01em; }
html[lang="ar"] h1, html[lang="ar"] h2, html[lang="ar"] h3 { letter-spacing: 0; line-height: 1.3; }

h2.title { font-size: clamp(2.1rem, 5vw, 3.6rem); }
.title .thin { font-weight: 300; font-style: italic; }
html[lang="ar"] .title .thin { font-style: normal; }

.lead { color: var(--muted); font-size: 1.06rem; margin-top: 18px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 30px; border-radius: 100px;
  font-family: var(--f-body); font-weight: 600; font-size: .92rem;
  letter-spacing: .02em; border: 1px solid transparent;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s, color .3s;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-gold {
  background: var(--gold-grad); color: #241a02;
  box-shadow: 0 10px 30px -10px rgba(212,175,55,.55);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -12px rgba(212,175,55,.7); }
.btn-ghost {
  background: rgba(255,255,255,.02); color: var(--ink);
  border-color: var(--line);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { border-color: var(--gold-2); color: var(--gold-1); transform: translateY(-3px); }

/* Glass card base */
.glass {
  background: linear-gradient(160deg, rgba(255,255,255,.045), rgba(255,255,255,.01));
  border: 1px solid var(--line);
  backdrop-filter: blur(14px);
  border-radius: var(--radius);
}

/* =========================================================
   HEADER
   ========================================================= */
.header {
  position: fixed; inset-inline: 0; top: 0; z-index: 60;
  transition: background .4s, backdrop-filter .4s, border-color .4s, padding .4s;
  border-bottom: 1px solid transparent;
  padding: 18px 0;
}
.header.scrolled {
  background: rgba(10,10,10,.72);
  backdrop-filter: blur(16px) saturate(1.2);
  border-bottom-color: var(--line);
  padding: 12px 0;
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 56px; width: auto; transition: height .4s; filter: drop-shadow(0 4px 14px rgba(0,0,0,.6)); }
.header.scrolled .brand img { height: 46px; }
.brand-word { display: flex; flex-direction: column; line-height: 1; }
.brand-word b { font-family: var(--f-head); font-size: 1.25rem; letter-spacing: .18em; }
.brand-word span { font-size: .58rem; letter-spacing: .34em; color: var(--gold-2); text-transform: uppercase; margin-top: 3px; }
html[lang="ar"] .brand-word b { letter-spacing: .04em; }
html[lang="ar"] .brand-word span { letter-spacing: .1em; }

.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-size: .9rem; font-weight: 500; color: var(--muted);
  position: relative; transition: color .25s; padding: 4px 0;
}
.nav-links a::after {
  content: ""; position: absolute; inset-inline-start: 0; bottom: -2px;
  width: 0; height: 1.5px; background: var(--gold-grad); transition: width .3s var(--ease);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: 14px; }
.lang-toggle {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.03); border: 1px solid var(--line);
  color: var(--ink); padding: 9px 16px; border-radius: 100px;
  font-size: .82rem; font-weight: 600; letter-spacing: .05em; transition: .25s;
}
.lang-toggle:hover { border-color: var(--gold-2); color: var(--gold-1); }
.lang-toggle svg { width: 15px; height: 15px; }

.burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; padding: 8px; }
.burger span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: .3s; }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 70;
  background: rgba(8,8,8,.96); backdrop-filter: blur(20px);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  opacity: 0; visibility: hidden; transition: .35s;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu a { font-family: var(--f-head); font-size: 2rem; color: var(--muted); transition: .25s; }
.mobile-menu a:hover { color: var(--gold-1); }
.mobile-menu .close { position: absolute; top: 24px; inset-inline-end: 24px; background: none; border: 0; color: var(--ink); font-size: 2rem; }

/* =========================================================
   HERO
   ========================================================= */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; padding: 150px 0 90px; overflow: hidden; }
.hero-glow {
  position: absolute; z-index: 0; inset-inline-end: -8%; top: 2%;
  width: 640px; height: 640px; border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,55,.24), transparent 62%);
  filter: blur(30px); pointer-events: none;
}
.hero-glow.two { inset-inline-end: auto; inset-inline-start: -12%; top: auto; bottom: -10%; width: 520px; height: 520px; background: radial-gradient(circle, rgba(166,124,0,.18), transparent 60%); }

.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; gap: 60px; align-items: center; width: 100%; }
.hero-inner { max-width: 640px; }
.hero-logo { height: 120px; width: auto; margin-bottom: 8px; filter: drop-shadow(0 10px 40px rgba(212,175,55,.35)); animation: floatlogo 6s ease-in-out infinite; }
@keyframes floatlogo { 0%,100%{ transform: translateY(0) } 50%{ transform: translateY(-8px) } }
.hero h1 { font-size: clamp(2.6rem, 6vw, 5rem); font-weight: 500; margin-top: 4px; }
.hero h1 .line { display: block; }
.hero-tag {
  font-family: var(--f-head); font-style: italic;
  font-size: clamp(1.15rem, 2.4vw, 1.7rem); color: var(--gold-1);
  letter-spacing: .02em; margin-top: 14px;
}
html[lang="ar"] .hero-tag { font-style: normal; }
.hero-sub { max-width: 560px; color: var(--muted); font-size: 1.05rem; margin-top: 20px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 34px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 32px; padding-top: 26px; border-top: 1px solid var(--line-soft); }
.hero-badges span { display: inline-flex; align-items: center; gap: 9px; color: var(--muted); font-size: .88rem; }
.hero-badges svg { width: 20px; height: 20px; color: var(--gold-2); flex: none; }
.hero-badges b { color: var(--ink); font-weight: 600; }

/* Hero media collage */
.hero-media { position: relative; }
.hero-frame {
  position: relative; border-radius: 24px; overflow: hidden;
  border: 1px solid rgba(212,175,55,.35); aspect-ratio: 4/5;
  box-shadow: 0 40px 90px -30px rgba(0,0,0,.8), 0 0 0 6px rgba(255,255,255,.02);
}
.hero-frame::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(10,10,10,.5)); }
.hero-frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-mini {
  position: absolute; inset-inline-start: -34px; bottom: 36px; width: 160px; aspect-ratio: 3/4;
  border-radius: 16px; overflow: hidden; border: 1px solid rgba(212,175,55,.4);
  box-shadow: 0 24px 50px -18px rgba(0,0,0,.85); display: none;
}
.hero-mini img { width: 100%; height: 100%; object-fit: cover; }
.hero-chip {
  position: absolute; inset-inline-end: -22px; top: 30px; padding: 16px 22px; border-radius: 16px; text-align: center;
  box-shadow: 0 20px 50px -18px rgba(0,0,0,.7);
}
.hero-chip .num { font-family: var(--f-head); font-size: 1.9rem; font-weight: 600; line-height: 1; }
.hero-chip .lbl { font-size: .72rem; color: var(--muted); letter-spacing: .04em; margin-top: 4px; }

@media (min-width: 1100px) { .hero-mini { display: block; } }
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .hero-media { max-width: 460px; margin-inline: auto; width: 100%; }
  .hero-logo { height: 100px; }
}

.hero-scroll {
  position: absolute; bottom: 30px; inset-inline-start: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--muted-2); font-size: .72rem; letter-spacing: .25em; text-transform: uppercase;
}
.hero-scroll .mouse { width: 22px; height: 36px; border: 1.5px solid var(--line); border-radius: 12px; position: relative; }
.hero-scroll .mouse::after {
  content: ""; position: absolute; top: 7px; left: 50%; transform: translateX(-50%);
  width: 3px; height: 7px; border-radius: 3px; background: var(--gold-2);
  animation: scrolldot 1.6s infinite;
}
@keyframes scrolldot { 0%{opacity:1;top:7px} 70%{opacity:0;top:18px} 100%{opacity:0} }

/* Marquee / stats bar */
.statbar { border-block: 1px solid var(--line); background: rgba(255,255,255,.015); }
.statbar .container { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: 34px 20px; text-align: center; position: relative; }
.stat + .stat::before { content: ""; position: absolute; inset-inline-start: 0; top: 22px; bottom: 22px; width: 1px; background: var(--line-soft); }
.stat .num { font-family: var(--f-head); font-size: clamp(2rem, 4vw, 3rem); font-weight: 600; }
.stat .lbl { font-size: .82rem; color: var(--muted); letter-spacing: .08em; margin-top: 4px; }

/* =========================================================
   PRODUCTS
   ========================================================= */
.prod-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 22px; }
.prod-card {
  position: relative; overflow: hidden; border-radius: var(--radius-lg);
  border: 1px solid var(--line); min-height: 300px;
  display: flex; align-items: flex-end;
  isolation: isolate; transition: transform .5s var(--ease), border-color .4s;
}
.prod-card:hover { transform: translateY(-6px); border-color: rgba(212,175,55,.4); }
.prod-card img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2;
  transition: transform .8s var(--ease); filter: saturate(.92) brightness(.82);
}
.prod-card:hover img { transform: scale(1.07); }
.prod-card::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(10,10,10,.05) 0%, rgba(10,10,10,.35) 45%, rgba(10,10,10,.92) 100%);
}
.prod-card .body { padding: 28px; width: 100%; }
.prod-card .tag { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-1); font-weight: 600; }
.prod-card h3 { font-size: 1.55rem; margin-top: 8px; }
.prod-card p { color: var(--muted); font-size: .92rem; margin-top: 8px; max-width: 42ch; }
.prod-card .more { display: inline-flex; align-items: center; gap: 8px; margin-top: 16px; color: var(--gold-1); font-size: .85rem; font-weight: 600; opacity: 0; transform: translateY(8px); transition: .35s; }
.prod-card:hover .more { opacity: 1; transform: translateY(0); }
html[dir="rtl"] .prod-card .more svg { transform: scaleX(-1); }

/* placeholder (no-photo) cards */
.prod-card.ph { background: var(--gold-grad-soft); display: flex; align-items: center; justify-content: center; text-align: center; }
.prod-card.ph::after { display: none; }
.prod-card.ph .body { text-align: center; }
.prod-card.ph .ph-icon { width: 46px; height: 46px; margin: 0 auto 14px; color: var(--gold-2); }
.prod-card.ph .ph-icon svg { width: 100%; height: 100%; }

.col-6 { grid-column: span 6; }
.col-4 { grid-column: span 4; }
.col-8 { grid-column: span 8; }
.tall { min-height: 420px; }

/* =========================================================
   PROCESS
   ========================================================= */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.step { padding: 30px 26px; border-radius: var(--radius); position: relative; }
.step .n { font-family: var(--f-head); font-size: 3rem; font-weight: 600; line-height: 1; }
.step h3 { font-size: 1.2rem; margin: 14px 0 8px; font-family: var(--f-body); font-weight: 700; }
html[lang="ar"] .step h3 { font-family: var(--f-ar-body, var(--font-ar-body)); }
.step p { color: var(--muted); font-size: .9rem; }

/* =========================================================
   WHY / FEATURES
   ========================================================= */
.why { position: relative; }
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feat { padding: 34px 28px; border-radius: var(--radius); transition: transform .4s var(--ease), border-color .4s; }
.feat:hover { transform: translateY(-6px); border-color: rgba(212,175,55,.35); }
.feat .ic { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; background: var(--gold-grad-soft); border: 1px solid var(--line); color: var(--gold-1); margin-bottom: 20px; }
.feat .ic svg { width: 26px; height: 26px; }
.feat h3 { font-size: 1.25rem; margin-bottom: 8px; }
.feat p { color: var(--muted); font-size: .93rem; }

/* =========================================================
   PROJECTS GALLERY
   ========================================================= */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 240px; gap: 16px; }
.gitem { position: relative; overflow: hidden; border-radius: var(--radius); border: 1px solid var(--line); cursor: pointer; }
.gitem img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); filter: saturate(.9) brightness(.85); }
.gitem:hover img { transform: scale(1.08); filter: saturate(1) brightness(1); }
.gitem .cap { position: absolute; inset-inline: 0; bottom: 0; padding: 18px; font-size: .85rem; color: var(--ink); background: linear-gradient(transparent, rgba(10,10,10,.85)); opacity: 0; transform: translateY(10px); transition: .4s; }
.gitem:hover .cap { opacity: 1; transform: translateY(0); }
.g-wide { grid-column: span 2; }
.g-tall { grid-row: span 2; }

.video-showcase { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.video-showcase video {
  width: 100%; aspect-ratio: 16/10; object-fit: cover; background: #000;
  border-radius: var(--radius); border: 1px solid var(--line);
}
@media (max-width: 760px) { .video-showcase { grid-template-columns: 1fr; } }

/* =========================================================
   ABOUT
   ========================================================= */
.about { display: grid; grid-template-columns: 1.05fr .95fr; gap: 60px; align-items: center; }
.about-media { position: relative; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); aspect-ratio: 4/5; }
.about-media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.95) brightness(.88); }
.about-media .badge {
  position: absolute; inset-inline-end: 20px; bottom: 20px;
  background: rgba(10,10,10,.7); backdrop-filter: blur(10px);
  border: 1px solid var(--line); border-radius: 16px; padding: 16px 22px; text-align: center;
}
.about-media .badge .num { font-family: var(--f-head); font-size: 2rem; font-weight: 600; }
.about-media .badge .lbl { font-size: .72rem; color: var(--muted); letter-spacing: .06em; }
.about ul.checks { margin-top: 26px; display: grid; gap: 14px; }
.about ul.checks li { display: flex; gap: 12px; align-items: flex-start; color: var(--muted); }
.about ul.checks svg { width: 22px; height: 22px; color: var(--gold-2); flex: none; margin-top: 2px; }
.about ul.checks b { color: var(--ink); font-weight: 600; }

/* =========================================================
   CONTACT
   ========================================================= */
.contact-wrap { display: grid; grid-template-columns: 1fr 1.05fr; gap: 42px; }
.contact-info { display: grid; gap: 22px; align-content: start; }
.info-row { display: flex; gap: 16px; align-items: flex-start; padding: 22px; border-radius: var(--radius); }
.info-row .ic { width: 46px; height: 46px; flex: none; border-radius: 12px; display: grid; place-items: center; background: var(--gold-grad-soft); border: 1px solid var(--line); color: var(--gold-1); }
.info-row .ic svg { width: 22px; height: 22px; }
.info-row h4 { font-family: var(--f-body); font-weight: 700; font-size: 1rem; margin-bottom: 3px; }
html[lang="ar"] .info-row h4 { font-family: var(--font-ar-body); }
.info-row p, .info-row a { color: var(--muted); font-size: .92rem; }
.info-row a:hover { color: var(--gold-1); }

.form { padding: 34px; border-radius: var(--radius-lg); }
.form .grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: .82rem; color: var(--muted); margin-bottom: 8px; font-weight: 500; }
.field input, .field select, .field textarea {
  width: 100%; background: rgba(255,255,255,.03); border: 1px solid var(--line);
  border-radius: 12px; padding: 13px 16px; color: var(--ink); font-family: var(--f-body); font-size: .95rem;
  transition: border-color .25s, box-shadow .25s;
}
html[lang="ar"] .field input, html[lang="ar"] .field select, html[lang="ar"] .field textarea { font-family: var(--font-ar-body); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold-2); box-shadow: 0 0 0 3px rgba(212,175,55,.14);
}
.field textarea { resize: vertical; min-height: 120px; }
.field select option { background: var(--panel); }
.form .btn { width: 100%; justify-content: center; margin-top: 6px; }
.form-note { text-align: center; color: var(--muted-2); font-size: .8rem; margin-top: 14px; }
.form-success { display: none; text-align: center; padding: 20px; color: var(--gold-1); }
.form.sent .form-body { display: none; }
.form.sent .form-success { display: block; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer { border-top: 1px solid var(--line); padding: 70px 0 30px; background: rgba(0,0,0,.3); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.footer h5 { font-family: var(--f-body); font-size: .8rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-2); margin-bottom: 18px; }
html[lang="ar"] .footer h5 { letter-spacing: .06em; font-family: var(--font-ar-body); }
.footer-links { display: grid; gap: 11px; }
.footer-links a { color: var(--muted); font-size: .9rem; transition: .2s; }
.footer-links a:hover { color: var(--gold-1); }
.footer-brand p { color: var(--muted); font-size: .92rem; margin-top: 16px; max-width: 34ch; }
.footer-brand img { height: 60px; }
.socials { display: flex; gap: 12px; margin-top: 20px; }
.socials a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; color: var(--muted); transition: .25s; }
.socials a:hover { border-color: var(--gold-2); color: var(--gold-1); transform: translateY(-3px); }
.socials svg { width: 18px; height: 18px; }
.footer-bottom { border-top: 1px solid var(--line-soft); margin-top: 50px; padding-top: 24px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; color: var(--muted-2); font-size: .82rem; }

/* Floating WhatsApp */
.wa {
  position: fixed; inset-inline-end: 22px; bottom: 22px; z-index: 55;
  width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center;
  background: linear-gradient(135deg, #25d366, #128c4a); color: #fff;
  box-shadow: 0 12px 30px -8px rgba(37,211,102,.6); transition: transform .3s;
}
.wa:hover { transform: scale(1.08); }
.wa svg { width: 30px; height: 30px; }

/* =========================================================
   REVEAL ANIMATION
   ========================================================= */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .about { grid-template-columns: 1fr; gap: 40px; }
  .contact-wrap { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .col-8, .col-6, .col-4 { grid-column: span 6; }
}
@media (max-width: 760px) {
  .nav-links { display: none; }
  .lang-toggle { padding: 8px 12px; }
  .burger { display: flex; }
  .statbar .container { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(3)::before, .stat:nth-child(odd)::before { display: none; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .feat-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 200px; }
  .prod-grid { gap: 16px; }
  .col-8, .col-6, .col-4 { grid-column: span 12; }
  .form .grid2 { grid-template-columns: 1fr; }
  .g-wide { grid-column: span 2; }
}
@media (max-width: 460px) {
  .gallery { grid-template-columns: 1fr; }
  .g-wide, .g-tall { grid-column: span 1; grid-row: span 1; }
  .process-grid { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; justify-content: center; }
}

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