/* Detail Guys — Dubai. Dark garage-premium brochure site.
   Palette keyed to media/logo.webp: charcoal base, white badge, teal arc = primary, amber dot = secondary.
   See CLAUDE-DESIGN.md. */

:root {
  --bg:        #0E1113;
  --bg-2:      #0A0C0D;
  --surface:   #181C1F;
  --surface-2: #1E2327;
  --text:      #F2F4F5;
  --muted:     #9AA3A8;
  --muted-2:   #6E767B;
  --primary:   #1CA9C4;
  --primary-d: #178FA6;
  --secondary: #F2A33C;
  --accent:    #2BD6BE;
  --border:    #2A3034;
  --border-2:  #20262A;
  --focus:     #5BD0E6;

  --ff-display: "Sora", system-ui, sans-serif;
  --ff-body: "Inter", system-ui, sans-serif;

  --container: 1200px;
  --radius: 14px;
  --radius-lg: 20px;
  --ease: cubic-bezier(.22, 1, .36, 1);

  --shadow: 0 1px 2px rgba(0,0,0,.4), 0 8px 30px rgba(0,0,0,.35);
  --shadow-lg: 0 30px 80px rgba(0,0,0,.55);
  --glow: 0 0 0 1px rgba(28,169,196,.25), 0 10px 40px rgba(28,169,196,.18);
}

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

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

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

::selection { background: var(--primary); color: #00181d; }

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

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(20px, 5vw, 48px); }

section { position: relative; }
.section-pad { padding-block: clamp(64px, 9vw, 132px); }
.section--surface { background: var(--surface); }
.section--deep { background: var(--bg-2); }

/* ---------- Type ---------- */
h1, h2, h3, h4 { font-family: var(--ff-display); font-weight: 700; line-height: 1.08; letter-spacing: -.02em; margin: 0; text-wrap: balance; }
.display { font-size: clamp(2.5rem, 7.5vw, 5rem); font-weight: 800; }
.h2 { font-size: clamp(1.9rem, 4.2vw, 3.15rem); }
.h3 { font-size: clamp(1.25rem, 2.2vw, 1.6rem); }
p { margin: 0; text-wrap: pretty; }
.lead { font-size: clamp(1.05rem, 1.7vw, 1.3rem); color: var(--muted); line-height: 1.6; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--ff-display); font-weight: 600;
  font-size: .8rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--primary);
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--primary); opacity: .7; }

.section-head { max-width: 720px; margin-bottom: clamp(40px, 5vw, 64px); }
.section-head .h2 { margin-top: 16px; }
.section-head p { margin-top: 18px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 0 26px;
  font-family: var(--ff-display); font-weight: 600; font-size: 1rem; letter-spacing: -.01em;
  border-radius: 999px; border: 1px solid transparent;
  transition: transform .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 19px; height: 19px; flex: none; }
.btn:active { transform: translateY(1px) scale(.99); }

.btn--primary { background: var(--primary); color: #042026; box-shadow: var(--glow); }
.btn--primary:hover { background: var(--accent); transform: translateY(-2px); }

.btn--wa { background: #25D366; color: #07270f; }
.btn--wa:hover { background: #2be673; transform: translateY(-2px); box-shadow: 0 10px 36px rgba(37,211,102,.28); }

.btn--ghost { background: transparent; color: var(--text); border-color: var(--border); }
.btn--ghost:hover { border-color: var(--primary); color: var(--accent); transform: translateY(-2px); }

.btn--block { width: 100%; }
.btn--lg { min-height: 58px; padding: 0 34px; font-size: 1.05rem; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .35s var(--ease), border-color .35s var(--ease), backdrop-filter .35s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: color-mix(in srgb, var(--bg-2) 82%, transparent);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--border-2);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 78px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 52px; width: auto; }
.brand-name { font-family: var(--ff-display); font-weight: 700; font-size: 1.02rem; letter-spacing: .02em; line-height: 1; }
.brand-name span { display: block; font-weight: 400; font-size: .62rem; letter-spacing: .42em; color: var(--muted); margin-top: 5px; }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  font-family: var(--ff-display); font-weight: 500; font-size: .95rem; color: var(--muted);
  padding: 10px 16px; border-radius: 999px; transition: color .2s, background .2s;
}
.nav-links a:hover { color: var(--text); background: rgba(255,255,255,.04); }
.nav-actions { display: flex; align-items: center; gap: 12px; }

.burger { display: none; width: 46px; height: 46px; border-radius: 12px; border: 1px solid var(--border); background: rgba(255,255,255,.03); align-items: center; justify-content: center; }
.burger svg { width: 22px; height: 22px; stroke: var(--text); }

/* mobile menu */
.mobile-menu { position: fixed; inset: 0; z-index: 99; background: var(--bg-2); padding: 96px clamp(20px,5vw,48px) 40px; display: flex; flex-direction: column; gap: 6px; transform: translateY(-12px); opacity: 0; pointer-events: none; transition: opacity .3s var(--ease), transform .3s var(--ease); }
.mobile-menu.open { opacity: 1; transform: none; pointer-events: auto; }
.mobile-menu a { font-family: var(--ff-display); font-weight: 600; font-size: 1.5rem; padding: 14px 4px; border-bottom: 1px solid var(--border-2); color: var(--text); }
.mobile-menu .menu-cta { margin-top: 24px; display: grid; gap: 12px; }

/* ---------- Hero ---------- */
.hero { position: relative; padding-top: 130px; padding-bottom: 40px; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(900px 520px at 72% 22%, rgba(28,169,196,.16), transparent 60%),
    radial-gradient(700px 500px at 12% 90%, rgba(43,214,190,.07), transparent 55%);
  pointer-events: none;
}
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center; min-height: min(78vh, 760px); }
.hero-copy { max-width: 620px; }
.hero h1 { margin-top: 22px; }
.hero h1 .accent { color: var(--primary); }
.hero-sub { margin-top: 24px; max-width: 520px; }
.hero-cta { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 14px; }

.hero-trust { margin-top: 40px; display: flex; flex-wrap: wrap; gap: 12px; }
.trust-pill {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 9px 16px 9px 13px; border-radius: 999px;
  background: rgba(255,255,255,.035); border: 1px solid var(--border);
  font-size: .82rem; color: var(--text); font-weight: 500;
}
.trust-pill svg { width: 17px; height: 17px; color: var(--primary); flex: none; }
.trust-pill b { font-family: var(--ff-display); font-weight: 700; }

.hero-visual { position: relative; }
.hero-car { width: 100%; filter: drop-shadow(0 40px 50px rgba(0,0,0,.65)); animation: floatcar 7s var(--ease) infinite; }
.hero-stage { position: relative; }
.hero-stage::after { /* ground reflection */ content: ""; position: absolute; left: 8%; right: 8%; bottom: 4%; height: 26px; background: radial-gradient(ellipse at center, rgba(28,169,196,.28), transparent 70%); filter: blur(8px); }
@keyframes floatcar { 0%,100%{ transform: translateY(0); } 50%{ transform: translateY(-12px); } }
@media (prefers-reduced-motion: reduce){ .hero-car{ animation: none; } }

/* ---------- Brand strip ---------- */
.brandstrip { border-block: 1px solid var(--border-2); background: var(--bg-2); }
.brandstrip-inner { padding-block: 30px; }
.brandstrip-label { text-align: center; font-size: .74rem; letter-spacing: .26em; text-transform: uppercase; color: var(--muted-2); font-family: var(--ff-display); font-weight: 600; margin-bottom: 24px; }
.brand-logos { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: clamp(28px, 5vw, 64px); }
.brand-logos img { height: 30px; width: auto; filter: brightness(0) invert(1); opacity: .55; transition: opacity .3s var(--ease); }
.brand-logos img:hover { opacity: 1; }

/* ---------- Services ---------- */
.services-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 22px; }
.svc {
  position: relative; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 32px; overflow: hidden; transition: border-color .3s var(--ease), transform .3s var(--ease), background .3s;
  display: flex; flex-direction: column;
}
.svc:hover { border-color: color-mix(in srgb, var(--primary) 55%, var(--border)); transform: translateY(-4px); }
.svc::after { content: ""; position: absolute; inset: 0; border-radius: inherit; background: radial-gradient(420px 200px at 85% -10%, rgba(28,169,196,.12), transparent 60%); opacity: 0; transition: opacity .35s; pointer-events: none; }
.svc:hover::after { opacity: 1; }
.svc--feature { grid-column: span 6; }
.svc--half { grid-column: span 6; }
.svc--third { grid-column: span 4; }

.svc-num { font-family: var(--ff-display); font-weight: 700; font-size: .8rem; color: var(--primary); letter-spacing: .08em; }
.svc-title { margin-top: 14px; }
.svc-brand { display: inline-block; margin-top: 8px; font-size: .76rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); font-family: var(--ff-display); font-weight: 600; }
.svc-desc { margin-top: 14px; color: var(--muted); font-size: .97rem; }

.svc-warranty {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 18px;
  padding: 7px 14px; border-radius: 999px; background: rgba(43,214,190,.1);
  border: 1px solid rgba(43,214,190,.28); color: var(--accent);
  font-size: .8rem; font-weight: 600; font-family: var(--ff-display);
}
.svc-warranty svg { width: 15px; height: 15px; }

.svc-list { list-style: none; margin: 20px 0 0; padding: 0; display: grid; gap: 11px; }
.svc-list li { display: flex; gap: 11px; font-size: .92rem; color: var(--text); }
.svc-list li::before { content: ""; flex: none; width: 7px; height: 7px; margin-top: 8px; border-radius: 2px; background: var(--primary); transform: rotate(45deg); }
.svc-list .tier { color: var(--muted); }
.svc-list .tier b { color: var(--text); font-family: var(--ff-display); }

.svc-foot { margin-top: auto; padding-top: 24px; }
.svc-quote { display: inline-flex; align-items: center; gap: 8px; font-family: var(--ff-display); font-weight: 600; font-size: .95rem; color: var(--primary); transition: gap .25s var(--ease), color .25s; }
.svc-quote svg { width: 16px; height: 16px; transition: transform .25s var(--ease); }
.svc-quote:hover { color: var(--accent); }
.svc-quote:hover svg { transform: translateX(4px); }

.svc-feature-media { margin: -32px -32px 24px; aspect-ratio: 16/10; overflow: hidden; }
.svc-feature-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.svc--feature:hover .svc-feature-media img { transform: scale(1.05); }

/* ---------- Why us ---------- */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; background: var(--surface); }
.why-cell { padding: 36px 30px; border-right: 1px solid var(--border); }
.why-cell:last-child { border-right: none; }
.why-ico { width: 50px; height: 50px; border-radius: 13px; display: grid; place-items: center; background: rgba(28,169,196,.1); border: 1px solid rgba(28,169,196,.25); color: var(--primary); margin-bottom: 20px; }
.why-ico svg { width: 24px; height: 24px; }
.why-cell h3 { font-size: 1.12rem; }
.why-cell p { margin-top: 10px; color: var(--muted); font-size: .92rem; }

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 16px; }
.gal { position: relative; overflow: hidden; border-radius: var(--radius); border: 1px solid var(--border); cursor: pointer; background: var(--surface); }
.gal img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.gal::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.55), transparent 55%); opacity: 0; transition: opacity .35s; }
.gal:hover img { transform: scale(1.07); }
.gal:hover::after { opacity: 1; }
.gal-cap { position: absolute; left: 16px; bottom: 14px; z-index: 1; font-family: var(--ff-display); font-weight: 600; font-size: .9rem; opacity: 0; transform: translateY(6px); transition: opacity .35s, transform .35s; }
.gal:hover .gal-cap { opacity: 1; transform: none; }
.gal--wide { grid-column: span 2; }
.gal--tall { grid-row: span 2; }
.gal--big { grid-column: span 2; grid-row: span 2; }

/* lightbox */
.lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(6,8,9,.92); display: grid; place-items: center; padding: 24px; opacity: 0; pointer-events: none; transition: opacity .3s; backdrop-filter: blur(6px); }
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox img { max-width: min(1100px, 92vw); max-height: 86vh; border-radius: 12px; box-shadow: var(--shadow-lg); }
.lightbox-close { position: absolute; top: 22px; right: 22px; width: 50px; height: 50px; border-radius: 50%; border: 1px solid var(--border); background: rgba(255,255,255,.06); color: var(--text); font-size: 1.6rem; line-height: 1; display: grid; place-items: center; }
.lightbox-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 54px; height: 54px; border-radius: 50%; border: 1px solid var(--border); background: rgba(255,255,255,.06); color: var(--text); display: grid; place-items: center; }
.lightbox-nav svg { width: 24px; height: 24px; }
.lightbox-nav.prev { left: 20px; } .lightbox-nav.next { right: 20px; }

/* ---------- About / values ---------- */
.about-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(36px, 6vw, 80px); align-items: center; }
.about-media { position: relative; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); }
.about-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 3/4; }
.about-badge { position: absolute; left: 22px; bottom: 22px; right: 22px; padding: 18px 22px; border-radius: 14px; background: color-mix(in srgb, var(--bg-2) 78%, transparent); backdrop-filter: blur(10px); border: 1px solid var(--border); }
.about-badge img { height: 40px; width: auto; margin-bottom: 10px; }
.about-badge p { font-size: .82rem; color: var(--muted); }

.values { list-style: none; margin: 30px 0 0; padding: 0; display: grid; gap: 2px; }
.value { display: grid; grid-template-columns: auto 1fr; gap: 18px; padding: 22px 0; border-top: 1px solid var(--border); }
.value:last-child { border-bottom: 1px solid var(--border); }
.value-ico { width: 44px; height: 44px; border-radius: 11px; display: grid; place-items: center; background: var(--surface); border: 1px solid var(--border); color: var(--primary); }
.value-ico svg { width: 22px; height: 22px; }
.value h3 { font-size: 1.1rem; }
.value p { margin-top: 6px; color: var(--muted); font-size: .92rem; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { width: 100%; background: none; border: none; color: var(--text); text-align: left; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 26px 0; font-family: var(--ff-display); font-weight: 600; font-size: clamp(1.02rem, 2vw, 1.18rem); }
.faq-q .pm { flex: none; width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--border); display: grid; place-items: center; position: relative; transition: border-color .3s, background .3s; }
.faq-q .pm::before, .faq-q .pm::after { content: ""; position: absolute; background: var(--primary); transition: transform .3s var(--ease); }
.faq-q .pm::before { width: 12px; height: 2px; } .faq-q .pm::after { width: 2px; height: 12px; }
.faq-item.open .faq-q .pm { background: var(--primary); border-color: var(--primary); }
.faq-item.open .faq-q .pm::before, .faq-item.open .faq-q .pm::after { background: #042026; }
.faq-item.open .faq-q .pm::after { transform: scaleY(0); }
.faq-a { overflow: hidden; max-height: 0; transition: max-height .4s var(--ease); }
.faq-a-inner { padding: 0 0 26px; color: var(--muted); font-size: .98rem; max-width: 680px; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(36px, 5vw, 64px); align-items: start; }
.contact-cards { display: grid; gap: 14px; }
.cc { display: grid; grid-template-columns: auto 1fr; gap: 16px; align-items: start; padding: 22px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); transition: border-color .25s, transform .25s; }
a.cc:hover { border-color: var(--primary); transform: translateY(-2px); }
.cc-ico { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; background: rgba(28,169,196,.1); border: 1px solid rgba(28,169,196,.25); color: var(--primary); }
.cc-ico svg { width: 22px; height: 22px; }
.cc-label { font-size: .76rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted-2); font-family: var(--ff-display); font-weight: 600; }
.cc-val { font-family: var(--ff-display); font-weight: 600; font-size: 1.05rem; margin-top: 4px; }
.cc-sub { font-size: .86rem; color: var(--muted); margin-top: 3px; }

.hours-note { display: inline-flex; align-items: center; gap: 8px; margin-top: 4px; padding: 6px 12px; border-radius: 8px; background: rgba(242,163,60,.1); border: 1px solid rgba(242,163,60,.28); color: var(--secondary); font-size: .8rem; font-weight: 500; }

/* form */
.quote-form { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: clamp(26px, 4vw, 40px); }
.quote-form h3 { font-size: 1.4rem; }
.quote-form > p { color: var(--muted); margin-top: 8px; font-size: .92rem; }
.field { margin-top: 18px; }
.field label { display: block; font-size: .82rem; font-weight: 600; color: var(--muted); margin-bottom: 8px; font-family: var(--ff-display); letter-spacing: .02em; }
.field label .req { color: var(--primary); }
.field input, .field select, .field textarea {
  width: 100%; background: var(--bg-2); border: 1px solid var(--border); color: var(--text);
  border-radius: 11px; padding: 14px 16px; font-family: var(--ff-body); font-size: 1rem; min-height: 52px;
  transition: border-color .2s, box-shadow .2s;
}
.field textarea { min-height: 110px; resize: vertical; line-height: 1.5; }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%239AA3A8' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 44px; }
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(28,169,196,.2); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-foot { margin-top: 24px; }
.form-note { margin-top: 14px; font-size: .8rem; color: var(--muted-2); text-align: center; }

/* map */
.map-wrap { margin-top: 14px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); position: relative; }
.map-wrap iframe { width: 100%; height: 320px; border: 0; display: block; filter: grayscale(.3) invert(.92) hue-rotate(180deg) contrast(.9); }
.map-bar { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 14px 18px; background: var(--surface); border-top: 1px solid var(--border); flex-wrap: wrap; }
.map-bar span { font-size: .88rem; color: var(--muted); }

/* ---------- Final CTA ---------- */
.cta-band { position: relative; overflow: hidden; border-radius: clamp(20px, 3vw, 28px); padding: clamp(44px, 7vw, 84px); background: linear-gradient(135deg, #10262b, #0c1518); border: 1px solid var(--border); }
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(600px 400px at 85% 20%, rgba(28,169,196,.22), transparent 60%); }
.cta-band-inner { position: relative; z-index: 1; max-width: 640px; }
.cta-band .hero-cta { margin-top: 30px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--bg-2); border-top: 1px solid var(--border-2); padding-block: 64px 120px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; }
.footer-brand img { height: 64px; margin-bottom: 18px; }
.footer-brand p { color: var(--muted); font-size: .92rem; max-width: 280px; }
.footer-col h4 { font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted-2); font-family: var(--ff-display); margin-bottom: 16px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.footer-col a { color: var(--muted); font-size: .92rem; transition: color .2s; }
.footer-col a:hover { color: var(--primary); }
.footer-social { display: flex; gap: 12px; margin-top: 18px; }
.footer-social a { width: 42px; height: 42px; border-radius: 11px; border: 1px solid var(--border); display: grid; place-items: center; color: var(--muted); transition: all .25s; }
.footer-social a:hover { color: var(--primary); border-color: var(--primary); transform: translateY(-2px); }
.footer-social svg { width: 20px; height: 20px; }
.footer-bottom { margin-top: 48px; padding-top: 26px; border-top: 1px solid var(--border-2); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; color: var(--muted-2); font-size: .82rem; }

/* ---------- Mobile sticky action bar ---------- */
.action-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; display: none; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--border); border-top: 1px solid var(--border); padding-bottom: env(safe-area-inset-bottom); }
.action-bar a { display: flex; align-items: center; justify-content: center; gap: 9px; min-height: 56px; font-family: var(--ff-display); font-weight: 600; font-size: .98rem; background: var(--bg-2); color: var(--text); }
.action-bar a svg { width: 19px; height: 19px; }
.action-bar .ab-wa { background: #25D366; color: #07270f; }
.action-bar .ab-call { color: var(--primary); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ============ Responsive ============ */
@media (max-width: 1080px) {
  .why-grid { grid-template-columns: 1fr 1fr; }
  .why-cell:nth-child(2) { border-right: none; }
  .why-cell:nth-child(1), .why-cell:nth-child(2) { border-bottom: 1px solid var(--border); }
}

@media (max-width: 920px) {
  .nav-links { display: none; }
  .nav-actions .btn--ghost { display: none; }
  .burger { display: inline-flex; }
  .hero-grid { grid-template-columns: 1fr; gap: 12px; min-height: 0; }
  .hero-visual { order: -1; margin-bottom: 8px; }
  .hero-car { max-width: 480px; margin-inline: auto; }
  .about-grid { grid-template-columns: 1fr; }
  .about-media { max-width: 460px; }
  .contact-grid { grid-template-columns: 1fr; }
  .svc--feature, .svc--half, .svc--third { grid-column: span 6; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .action-bar { display: grid; }
  .site-footer { padding-bottom: 120px; }
  .services-grid { grid-template-columns: 1fr; }
  .svc--feature, .svc--half, .svc--third { grid-column: auto; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 150px; }
  .gal--big { grid-column: span 2; grid-row: span 2; }
  .gal--wide { grid-column: span 2; }
  .gal--tall { grid-row: span 1; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: span 2; }
  .form-row { grid-template-columns: 1fr; }
  .hero-cta .btn { flex: 1 1 auto; }
}

@media (max-width: 460px) {
  .why-grid { grid-template-columns: 1fr; }
  .why-cell { border-right: none; border-bottom: 1px solid var(--border); }
  .why-cell:last-child { border-bottom: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .brand-name { display: none; }
  .gallery-grid { grid-auto-rows: 130px; }
}
