/* ============================================================
   the gearbox — auto services · design system
   Palette keyed to the brand: graphite + facade-teal + amber action
   ============================================================ */

:root {
  --bg: #0F1417;          /* near-black graphite */
  --bg-2: #161C20;        /* lifted graphite panel */
  --surface: #FFFFFF;     /* light cards/sections */
  --surface-2: #F6F8F8;   /* soft light section */
  --text: #14181B;        /* primary on light */
  --text-inv: #EEF2F3;    /* primary on dark */
  --muted: #5B6770;       /* secondary on light */
  --muted-inv: #97A4AC;   /* secondary on dark */
  --primary: #2E3338;     /* brand charcoal */
  --teal: #16AEA2;        /* the gearbox teal */
  --teal-dim: #0F8A80;
  --amber: #F2A23A;       /* warm signal accent (CTA only) */
  --amber-dim: #DE8E26;
  --border: #E4E8EB;      /* hairline on light */
  --border-dark: #283036; /* hairline on dark */
  --focus: #16AEA2;

  --radius-s: 8px;
  --radius: 14px;
  --radius-l: 22px;
  --shadow-s: 0 1px 2px rgba(15,20,23,.05), 0 2px 8px rgba(15,20,23,.04);
  --shadow-m: 0 4px 14px rgba(15,20,23,.08), 0 18px 40px rgba(15,20,23,.07);
  --shadow-l: 0 24px 60px rgba(15,20,23,.18);

  --maxw: 1240px;
  --gutter: clamp(20px, 5vw, 64px);

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

  --ease: cubic-bezier(.2, .7, .2, 1);
}

/* ---- reset ---- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--ff-body);
  color: var(--text);
  background: var(--surface);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 2px solid var(--focus); outline-offset: 3px; border-radius: 4px; }

/* RTL */
html[dir="rtl"] body { font-family: var(--ff-ar); }
html[dir="rtl"] .display, html[dir="rtl"] h1, html[dir="rtl"] h2, html[dir="rtl"] h3 { font-family: var(--ff-ar); }

/* ---- layout helpers ---- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(56px, 9vw, 120px); }
.display { font-family: var(--ff-display); font-weight: 600; line-height: 1.04; letter-spacing: -0.02em; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--ff-display); font-weight: 600;
  font-size: 13px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--teal);
}
.eyebrow.on-dark { color: var(--teal); }
.eyebrow .gate { width: 20px; height: 16px; flex: 0 0 auto; }
.eyebrow .gate line { stroke: var(--teal); stroke-width: 1.6; stroke-linecap: round; }
.eyebrow .gate circle { fill: var(--amber); }

.section-head { max-width: 720px; }
.section-head h2 { font-size: clamp(28px, 4.4vw, 46px); margin-top: 16px; color: var(--text); }
.section-head p { color: var(--muted); margin-top: 16px; font-size: clamp(16px, 1.4vw, 18px); }
.section-head.center { margin-inline: auto; text-align: center; }

/* ---- buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--ff-display); font-weight: 600; font-size: 15px;
  padding: 14px 22px; border-radius: 999px;
  min-height: 48px; white-space: nowrap;
  transition: transform .25s var(--ease), background .2s var(--ease), box-shadow .25s var(--ease), color .2s var(--ease);
}
.btn svg { width: 18px; height: 18px; }
.btn-amber { background: var(--amber); color: #2A1B05; box-shadow: 0 6px 18px rgba(242,162,58,.32); }
.btn-amber:hover { background: var(--amber-dim); transform: translateY(-2px); box-shadow: 0 10px 26px rgba(242,162,58,.4); }
.btn-wa { background: #1FAF54; color: #fff; }
.btn-wa:hover { background: #1a974a; transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--text); border: 1.5px solid var(--border); }
.btn-ghost:hover { border-color: var(--primary); transform: translateY(-2px); }
.btn-ghost.on-dark { color: var(--text-inv); border-color: rgba(255,255,255,.22); }
.btn-ghost.on-dark:hover { border-color: rgba(255,255,255,.6); background: rgba(255,255,255,.05); }
.btn-dark { background: var(--primary); color: #fff; }
.btn-dark:hover { background: #1d2125; transform: translateY(-2px); }
.btn-block { width: 100%; }

/* ============================================================
   NAVBAR
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.86);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s var(--ease);
}
.nav.scrolled { box-shadow: var(--shadow-s); }
.nav-inner { display: flex; align-items: center; gap: 24px; height: 76px; }
.nav-logo img { height: 38px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 28px; margin-inline-start: auto; }
.nav-links a { font-weight: 500; font-size: 15px; color: var(--text); position: relative; padding-block: 6px; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px;
  background: var(--teal); transform: scaleX(0); transform-origin: left; transition: transform .25s var(--ease);
}
.nav-links a:hover::after { transform: scaleX(1); }
.nav-actions { display: flex; align-items: center; gap: 14px; }
.lang-toggle {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--ff-display); font-weight: 600; font-size: 13px;
  border: 1.5px solid var(--border); border-radius: 999px; padding: 8px 14px; min-height: 40px;
  color: var(--primary); transition: border-color .2s, background .2s;
}
.lang-toggle:hover { border-color: var(--teal); }
.nav-burger { display: none; width: 44px; height: 44px; border-radius: 10px; align-items: center; justify-content: center; }
.nav-burger span { display: block; width: 22px; height: 2px; background: var(--primary); position: relative; transition: .3s var(--ease); }
.nav-burger span::before, .nav-burger span::after { content: ""; position: absolute; left: 0; width: 22px; height: 2px; background: var(--primary); transition: .3s var(--ease); }
.nav-burger span::before { top: -7px; }
.nav-burger span::after { top: 7px; }
body.menu-open .nav-burger span { background: transparent; }
body.menu-open .nav-burger span::before { top: 0; transform: rotate(45deg); }
body.menu-open .nav-burger span::after { top: 0; transform: rotate(-45deg); }

/* mobile menu sheet */
.mobile-menu {
  position: fixed; inset: 76px 0 0; z-index: 55;
  background: var(--surface); padding: 28px var(--gutter) 40px;
  transform: translateX(100%); transition: transform .35s var(--ease);
  display: flex; flex-direction: column; gap: 8px; overflow-y: auto;
}
html[dir="rtl"] .mobile-menu { transform: translateX(-100%); }
body.menu-open .mobile-menu { transform: translateX(0); }
.mobile-menu a { font-family: var(--ff-display); font-weight: 600; font-size: 22px; padding: 16px 4px; border-bottom: 1px solid var(--border); color: var(--text); }
.mobile-menu .mm-cta { margin-top: 22px; display: grid; gap: 12px; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; background: var(--bg); color: var(--text-inv); overflow: hidden; }
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .55; }
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(15,20,23,.55) 0%, rgba(15,20,23,.35) 35%, rgba(15,20,23,.86) 100%),
    linear-gradient(90deg, rgba(15,20,23,.9) 0%, rgba(15,20,23,.45) 55%, rgba(15,20,23,.2) 100%);
}
html[dir="rtl"] .hero-bg::after { background:
    linear-gradient(180deg, rgba(15,20,23,.55) 0%, rgba(15,20,23,.35) 35%, rgba(15,20,23,.86) 100%),
    linear-gradient(270deg, rgba(15,20,23,.9) 0%, rgba(15,20,23,.45) 55%, rgba(15,20,23,.2) 100%);
}
.hero-inner { position: relative; z-index: 2; padding-block: clamp(64px, 11vw, 150px); max-width: 760px; }
.hero h1 { font-size: clamp(36px, 6.6vw, 70px); color: #fff; }
.hero h1 .tl { color: var(--teal); }
.hero-sub { margin-top: 22px; font-size: clamp(16px, 1.8vw, 20px); color: var(--text-inv); max-width: 600px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-tags { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 38px; }
.hero-tags li { display: flex; align-items: center; gap: 9px; font-size: 14px; color: var(--muted-inv); }
.hero-tags li::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--teal); flex: 0 0 auto; }

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust { background: var(--primary); color: #fff; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { padding: 28px var(--gutter); text-align: center; border-inline-end: 1px solid var(--border-dark); }
.trust-item:last-child { border-inline-end: none; }
.trust-item .n { font-family: var(--ff-display); font-weight: 700; font-size: clamp(26px, 3vw, 36px); color: #fff; line-height: 1; }
.trust-item .n .u { color: var(--teal); }
.trust-item .l { display: block; margin-top: 8px; font-size: 13.5px; color: var(--muted-inv); letter-spacing: .01em; }

/* ============================================================
   SERVICES
   ============================================================ */
.svc-group { margin-top: 56px; }
.svc-group + .svc-group { margin-top: 64px; }
.svc-group-head { display: flex; align-items: baseline; gap: 16px; margin-bottom: 26px; padding-bottom: 16px; border-bottom: 1px solid var(--border); }
.svc-group-head h3 { font-family: var(--ff-display); font-weight: 600; font-size: clamp(20px, 2.4vw, 26px); letter-spacing: -.01em; }
.svc-group-head .count { font-family: var(--ff-display); font-size: 14px; color: var(--teal); font-weight: 600; }
.svc-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(255px, 1fr)); gap: 16px; }
.svc-card {
  display: flex; flex-direction: column; gap: 8px;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 22px 22px 20px; position: relative; overflow: hidden;
  transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.svc-card::before {
  content: ""; position: absolute; inset-inline-start: 0; top: 0; bottom: 0; width: 3px;
  background: var(--teal); transform: scaleY(0); transform-origin: top; transition: transform .3s var(--ease);
}
.svc-card:hover { transform: translateY(-4px); border-color: #cdd6da; box-shadow: var(--shadow-m); }
.svc-card:hover::before { transform: scaleY(1); }
.svc-card .ic { width: 34px; height: 34px; color: var(--primary); }
.svc-card h4 { font-family: var(--ff-display); font-weight: 600; font-size: 18px; margin-top: 4px; }
.svc-card p { font-size: 14.5px; color: var(--muted); line-height: 1.5; }
.svc-card .more { margin-top: auto; padding-top: 12px; font-family: var(--ff-display); font-weight: 600; font-size: 13.5px; color: var(--teal); display: inline-flex; align-items: center; gap: 7px; }
.svc-card .more svg { width: 15px; height: 15px; transition: transform .25s var(--ease); }
html[dir="rtl"] .svc-card .more svg { transform: scaleX(-1); }
.svc-card:hover .more svg { transform: translateX(4px); }
html[dir="rtl"] .svc-card:hover .more svg { transform: scaleX(-1) translateX(4px); }

/* ============================================================
   BRANDS
   ============================================================ */
.brands { background: var(--surface-2); }
.brand-grid { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 40px; }
.brand-chip {
  font-family: var(--ff-display); font-weight: 600; font-size: 15px;
  padding: 12px 20px; border-radius: 999px; background: var(--surface);
  border: 1px solid var(--border); color: var(--primary);
  transition: transform .2s var(--ease), border-color .2s, color .2s, background .2s;
}
.brand-chip.lux { border-color: #d7dde0; }
.brand-chip:hover { transform: translateY(-2px); border-color: var(--teal); color: var(--teal-dim); }
.brand-note { margin-top: 26px; font-size: 14.5px; color: var(--muted); max-width: 640px; }

/* ============================================================
   WHY US
   ============================================================ */
.why { background: var(--bg); color: var(--text-inv); }
.why-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.why-list { display: grid; gap: 14px; margin-top: 36px; }
.why-item { display: flex; gap: 18px; padding: 22px; background: var(--bg-2); border: 1px solid var(--border-dark); border-radius: var(--radius); transition: border-color .3s var(--ease); }
.why-item:hover { border-color: var(--teal-dim); }
.why-item .ic { flex: 0 0 auto; width: 46px; height: 46px; border-radius: 12px; background: rgba(22,174,162,.12); color: var(--teal); display: grid; place-items: center; }
.why-item .ic svg { width: 24px; height: 24px; }
.why-item h4 { font-family: var(--ff-display); font-weight: 600; font-size: 18px; color: #fff; }
.why-item p { font-size: 14.5px; color: var(--muted-inv); margin-top: 4px; }
.why-media { border-radius: var(--radius-l); overflow: hidden; position: relative; box-shadow: var(--shadow-l); }
.why-media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.why-media .cap {
  position: absolute; inset-inline: 16px; bottom: 16px; padding: 12px 16px;
  background: rgba(15,20,23,.72); backdrop-filter: blur(6px); border-radius: 12px;
  font-size: 13px; color: var(--text-inv); border: 1px solid var(--border-dark);
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery { background: var(--surface); }
.gal-grid {
  margin-top: 44px; display: grid; gap: 14px;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
}
.gal-item { position: relative; overflow: hidden; border-radius: var(--radius); cursor: pointer; background: var(--surface-2); }
.gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.gal-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(15,20,23,.5)); opacity: 0; transition: opacity .3s; }
.gal-item:hover img { transform: scale(1.06); }
.gal-item:hover::after { opacity: 1; }
.gal-item .tag { position: absolute; inset-inline-start: 14px; bottom: 12px; z-index: 2; font-size: 13px; font-weight: 600; color: #fff; opacity: 0; transform: translateY(6px); transition: .3s var(--ease); font-family: var(--ff-display); }
.gal-item:hover .tag { opacity: 1; transform: translateY(0); }
.gal-tall { grid-row: span 2; }
.gal-wide { grid-column: span 2; }

/* lightbox */
.lightbox { position: fixed; inset: 0; z-index: 100; background: rgba(8,11,13,.94); display: none; align-items: center; justify-content: center; padding: 24px; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 86vh; border-radius: 10px; box-shadow: var(--shadow-l); }
.lightbox-close { position: absolute; top: 20px; inset-inline-end: 24px; width: 48px; height: 48px; border-radius: 50%; background: rgba(255,255,255,.1); color: #fff; font-size: 26px; display: grid; place-items: center; }
.lightbox-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 52px; height: 52px; border-radius: 50%; background: rgba(255,255,255,.1); color: #fff; display: grid; place-items: center; font-size: 24px; transition: background .2s; }
.lightbox-nav:hover { background: rgba(255,255,255,.22); }
.lightbox-prev { inset-inline-start: 18px; }
.lightbox-next { inset-inline-end: 18px; }

/* ============================================================
   PROOF BAND
   ============================================================ */
.proof { background: var(--surface-2); }
.proof-inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 56px); align-items: center; }
.proof-imgs { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.proof-imgs figure { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-s); }
.proof-imgs img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 1; }
.proof-imgs .span2 { grid-column: span 2; aspect-ratio: auto; }
.proof-imgs .span2 img { aspect-ratio: 16/9; }
.esma-card { display: flex; gap: 18px; align-items: center; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 18px 22px; margin-top: 26px; box-shadow: var(--shadow-s); }
.esma-card img { width: 92px; height: auto; flex: 0 0 auto; }
.esma-card .t { font-family: var(--ff-display); font-weight: 600; font-size: 16px; }
.esma-card .d { font-size: 13.5px; color: var(--muted); margin-top: 3px; }

/* ============================================================
   CONTACT / LOCATION
   ============================================================ */
.contact { background: var(--bg); color: var(--text-inv); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 64px); }
.contact-info h3 { font-family: var(--ff-display); font-weight: 600; font-size: 20px; color: #fff; margin-bottom: 6px; }
.info-block + .info-block { margin-top: 26px; }
.info-row { display: flex; gap: 14px; align-items: flex-start; padding: 11px 0; border-bottom: 1px solid var(--border-dark); }
.info-row .ic { flex: 0 0 auto; width: 22px; height: 22px; color: var(--teal); margin-top: 3px; }
.info-row .k { font-size: 13px; color: var(--muted-inv); }
.info-row .v { color: var(--text-inv); font-weight: 500; }
.info-row a.v:hover { color: var(--teal); }
.direct-lines { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 20px; margin-top: 12px; }
.direct-lines div { font-size: 14px; color: var(--muted-inv); }
.direct-lines a { color: var(--text-inv); font-weight: 500; }
.direct-lines a:hover { color: var(--teal); }

.map-embed { margin-top: 22px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border-dark); height: 230px; }
.map-embed iframe { width: 100%; height: 100%; border: 0; filter: grayscale(.3) contrast(1.05); }

/* form */
.form-card { background: var(--surface); color: var(--text); border-radius: var(--radius-l); padding: clamp(24px, 3vw, 38px); box-shadow: var(--shadow-l); }
.form-card h3 { font-family: var(--ff-display); font-weight: 600; font-size: clamp(22px, 2.6vw, 28px); }
.form-card .sub { color: var(--muted); font-size: 15px; margin-top: 6px; margin-bottom: 22px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 13px; font-weight: 600; color: var(--primary); margin-bottom: 7px; font-family: var(--ff-display); }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; font-size: 15px; padding: 13px 15px;
  border: 1.5px solid var(--border); border-radius: 11px; background: var(--surface-2);
  color: var(--text); transition: border-color .2s, background .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--teal); background: #fff; }
.field textarea { resize: vertical; min-height: 84px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { font-size: 12.5px; color: var(--muted); margin-top: 14px; text-align: center; }
.form-actions { display: grid; gap: 10px; margin-top: 8px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: #0A0E10; color: var(--muted-inv); padding-block: clamp(48px, 7vw, 80px) 28px; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 36px; }
.footer-logo img { height: 40px; }
.footer-brand p { font-size: 14px; margin-top: 16px; max-width: 300px; line-height: 1.6; }
.footer-socials { display: flex; gap: 12px; margin-top: 20px; }
.footer-socials a { width: 42px; height: 42px; border-radius: 11px; border: 1px solid var(--border-dark); display: grid; place-items: center; color: var(--muted-inv); transition: .2s var(--ease); }
.footer-socials a:hover { color: #fff; border-color: var(--teal); background: rgba(22,174,162,.1); }
.footer-socials svg { width: 19px; height: 19px; }
.footer-col h5 { font-family: var(--ff-display); font-weight: 600; font-size: 14px; color: #fff; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col a, .footer-col li { display: block; font-size: 14px; padding: 5px 0; color: var(--muted-inv); }
.footer-col a:hover { color: var(--teal); }
.footer-bottom { display: flex; flex-wrap: wrap; gap: 12px 24px; justify-content: space-between; align-items: center; margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--border-dark); font-size: 13px; }
.footer-bottom .legal { display: flex; gap: 18px; flex-wrap: wrap; }

/* ============================================================
   STICKY MOBILE ACTION BAR + WA FAB
   ============================================================ */
.action-bar { position: fixed; inset-inline: 0; bottom: 0; z-index: 70; display: none; grid-template-columns: 1fr 1fr 1fr; gap: 1px; background: var(--border-dark); border-top: 1px solid var(--border-dark); box-shadow: 0 -8px 24px rgba(0,0,0,.18); }
.action-bar a { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px; padding: 10px 4px calc(10px + env(safe-area-inset-bottom)); background: var(--primary); color: #fff; font-family: var(--ff-display); font-weight: 600; font-size: 12px; min-height: 60px; }
.action-bar a svg { width: 21px; height: 21px; }
.action-bar a.wa { background: #1FAF54; }
.action-bar a.book { background: var(--amber); color: #2A1B05; }

.wa-fab { position: fixed; inset-inline-end: 26px; bottom: 26px; z-index: 65; width: 60px; height: 60px; border-radius: 50%; background: #1FAF54; color: #fff; display: grid; place-items: center; box-shadow: 0 10px 30px rgba(31,175,84,.4); transition: transform .25s var(--ease); }
.wa-fab:hover { transform: scale(1.08); }
.wa-fab svg { width: 30px; height: 30px; }
.wa-fab .pulse { position: absolute; inset: 0; border-radius: 50%; border: 2px solid #1FAF54; animation: pulse 2.4s var(--ease) infinite; }
@keyframes pulse { 0% { transform: scale(1); opacity: .7; } 100% { transform: scale(1.7); opacity: 0; } }

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

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-inline-end: none; }
  .trust-item:nth-child(1), .trust-item:nth-child(2) { border-bottom: 1px solid var(--border-dark); }
  .why-grid { grid-template-columns: 1fr; }
  .why-media { max-width: 460px; }
  .gal-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-actions .btn-amber { display: none; }
  .nav-burger { display: flex; }
  .contact-grid { grid-template-columns: 1fr; }
  .proof-inner { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: span 2; }
}
@media (max-width: 680px) {
  body { font-size: 16px; padding-bottom: 60px; }
  .action-bar { display: grid; }
  .wa-fab { display: none; }
  .gal-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .gal-wide { grid-column: span 2; }
  .gal-tall { grid-row: span 1; }
  .field-row { grid-template-columns: 1fr; }
  .direct-lines { grid-template-columns: 1fr; }
  .hero-cta .btn { flex: 1 1 auto; }
  .trust-item { padding: 22px 14px; }
}
@media (max-width: 420px) {
  .footer-top { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .gal-grid { grid-auto-rows: 130px; }
}
