/* ═══════════════════════════════════════════════════════════════════════════
   ACE GARAGE PROS — GLOBAL STYLESHEET
   Brand: Dark + Orange (#E8761A) | Barlow Condensed + Barlow
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── VARIABLES ──────────────────────────────────────────────────────────── */
:root {
  --orange: #E8711A;
  --orange-light: #F28C3A;
  --orange-dark: #C45C10;
  --orange-glow: rgba(232, 113, 26, 0.15);
  --black: #0A0A0A;
  --dark: #111111;
  --dark2: #161616;
  --card: #1A1A1A;
  --card2: #1F1F1F;
  --border: #2A2A2A;
  --border-light: #333;
  --text: #D4D4D4;
  --text-light: #E8E8E8;
  --muted: #777;
  --white: #FFFFFF;
  --green: #4caf7d;
  --red: #e05555;
  --header-h: 70px;
  --mobile-cta-h: 64px;
  --max-w: 1200px;
  --section-pad: 80px 24px;
  --section-pad-mobile: 56px 16px;
}

/* ── RESET ──────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  background: var(--black);
  color: var(--text);
  font-family: 'Barlow', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--orange); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--orange-light); }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ── TYPOGRAPHY ─────────────────────────────────────────────────────────── */
.heading-xl {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(38px, 5.5vw, 64px);
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: -0.5px;
  color: var(--white);
}
.heading-lg {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(30px, 4vw, 44px);
  text-transform: uppercase;
  line-height: 1.1;
  color: var(--white);
}
.heading-md {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(22px, 3vw, 30px);
  text-transform: uppercase;
  line-height: 1.15;
  color: var(--white);
}
.heading-sm {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--white);
}
.eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
}
.accent { color: var(--orange); }
.body-lg { font-size: 18px; line-height: 1.65; color: var(--text); }
.body-sm { font-size: 14px; color: var(--muted); }

/* ── LAYOUT ─────────────────────────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section { padding: var(--section-pad); }
.section--dark { background: var(--dark); }
.section--dark2 { background: var(--dark2); }
.section--card { background: var(--card); }
.section-divider { border: none; border-top: 1px solid var(--border); margin: 0; }

/* ── HEADER ─────────────────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(232, 113, 26, 0.2);
  height: var(--header-h);
  transition: all 0.3s;
}

.site-header.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
  border-bottom-color: rgba(232, 113, 26, 0.35);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  width: 100%;
  height: 100%;
  max-width: none;
  margin: 0;
  padding: 0 2rem;
  overflow: hidden;
}

.logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.logo img {
  height: 44px;
  width: auto;
  object-fit: contain;
  display: block;
}

.nav-menu {
  margin-left: auto;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
}

.nav-links li {
  display: flex;
}

.nav-links a {
  display: block;
  padding: 0.5rem 0.65rem;
  color: #ccc;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--orange);
}

.nav-actions {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.site-header .nav-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  padding: 0.4rem 0.75rem;
  border: 1px solid rgba(232, 113, 26, 0.35);
  border-right: none;
  border-radius: 2px 0 0 2px;
  background: transparent;
  color: var(--orange);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: all 0.2s;
}

.site-header .nav-phone:hover {
  background: rgba(232, 113, 26, 0.1);
  border-color: var(--orange);
  color: var(--orange);
}

.site-header .nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.1rem;
  border-radius: 0 2px 2px 0;
  margin-left: 0;
  background: var(--orange);
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background 0.2s;
}

.site-header .nav-btn:hover {
  background: var(--orange-dark);
  color: #fff;
  transform: none;
}

/* Hamburger */
.hamburger {
  display: none;
  background: none;
  border: none;
  width: 40px;
  height: 40px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-left: 12px;
  padding: 0;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(20px);
  z-index: 800;
  flex-direction: column;
  padding: 24px;
  overflow-y: auto;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-light);
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  display: block;
}

.mobile-nav a:hover,
.mobile-nav a.active {
  color: var(--orange);
}

@media (max-width: 1440px) {
  .nav-links a {
    padding: 0.5rem 0.5rem;
    font-size: 0.78rem;
  }

  .site-header .nav-phone,
  .site-header .nav-btn {
    font-size: 0.78rem;
    padding-left: 8px;
    padding-right: 8px;
  }
}

@media (max-width: 1300px) {
  .nav-links a {
    padding: 0.5rem 0.35rem;
    font-size: 0.72rem;
    letter-spacing: 0.04em;
  }

  .site-header .nav-phone,
  .site-header .nav-btn {
    font-size: 0.72rem;
    padding-left: 6px;
    padding-right: 6px;
  }

  .site-header .nav-phone {
    gap: 0.2rem;
  }
}

@media (max-width: 1200px) {
  .nav-menu {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}

@media (max-width: 768px) {
  .header-container {
    padding: 0 1rem;
  }
}


/* ── BUTTONS ────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-size: 16px;
  text-transform: uppercase; letter-spacing: 1.5px;
  padding: 15px 32px; border-radius: 8px;
  border: none; cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.btn--primary { background: var(--orange); color: #fff; }
.btn--primary:hover { background: var(--orange-light); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(232,118,26,0.3); color: #fff; }
.btn--outline { background: transparent; color: var(--orange); border: 2px solid var(--orange); }
.btn--outline:hover { background: rgba(232,118,26,0.08); transform: translateY(-2px); color: var(--orange); }
.btn--outline-light { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.4); }
.btn--outline-light:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.6); transform: translateY(-2px); color: #fff; }
.btn--white { background: #fff; color: var(--black); }
.btn--white:hover { background: #eee; transform: translateY(-2px); }
.btn--lg { font-size: 18px; padding: 18px 40px; }
.btn--sm { font-size: 14px; padding: 10px 20px; letter-spacing: 1px; }
.btn--full { width: 100%; }
.btn--call { background: var(--orange); color: #fff; }
.btn--text-msg { background: transparent; color: var(--white); border: 2px solid var(--border-light); }
.btn--text-msg:hover { border-color: var(--orange); color: var(--orange); }
.btn--quote { border-color: var(--orange); }

/* ── TRUST STRIP ────────────────────────────────────────────────────────── */
.trust-strip {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 20px 36px;
  padding: 14px 24px;
  background: var(--dark2);
  border-bottom: 1px solid var(--border);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--muted);
}
.trust-strip .trust-item {
  display: flex; align-items: center; gap: 8px;
}
.trust-strip .trust-icon { color: var(--orange); font-size: 16px; }

/* ── HERO ───────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 140px 24px 100px;
  overflow: hidden;
  margin-top: var(--header-h);
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center 40%;
  z-index: 0;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,10,10,0.92) 0%,
    rgba(10,10,10,0.75) 50%,
    rgba(10,10,10,0.88) 100%
  );
}
.hero-content {
  position: relative; z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
}
.hero-content .eyebrow { margin-bottom: 16px; }
.hero-content .heading-xl { margin-bottom: 20px; max-width: 700px; }
.hero-content .hero-sub {
  font-size: 18px; color: var(--text); line-height: 1.6;
  max-width: 560px; margin-bottom: 36px;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-phone-inline {
  display: flex; align-items: center; gap: 8px;
  margin-top: 20px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px; font-weight: 600; color: var(--muted);
}
.hero-phone-inline a { color: var(--orange); font-weight: 700; font-size: 18px; }

/* ── SERVICE CARDS ──────────────────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
  color: inherit;
  display: flex; flex-direction: column;
}
.service-card:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(232,118,26,0.1);
  color: inherit;
}
.service-card-img {
  height: 180px;
  background-size: cover; background-position: center;
  position: relative;
}
.service-card-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,26,26,0.9) 0%, transparent 60%);
}
.service-card-body { padding: 20px 22px 24px; flex: 1; display: flex; flex-direction: column; }
.service-card-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 20px;
  text-transform: uppercase; letter-spacing: 0.5px;
  color: var(--white);
  margin-bottom: 8px;
}
.service-card-desc { font-size: 14px; color: var(--muted); line-height: 1.55; flex: 1; }
.service-card-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 14px;
  text-transform: uppercase; letter-spacing: 1px;
  color: var(--orange);
  margin-top: 14px;
  transition: gap 0.2s;
}
.service-card:hover .service-card-link { gap: 10px; }

/* ── TRUST / WHY US SECTION ─────────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.why-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 24px;
  text-align: center;
  transition: border-color 0.3s;
}
.why-card:hover { border-color: var(--orange); }
.why-card-icon {
  font-size: 36px; margin-bottom: 16px;
  display: flex; align-items: center; justify-content: center;
  width: 64px; height: 64px;
  background: var(--orange-glow);
  border-radius: 50%;
  margin: 0 auto 16px;
}
.why-card-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 18px;
  text-transform: uppercase; letter-spacing: 0.5px;
  color: var(--white);
  margin-bottom: 8px;
}
.why-card-text { font-size: 14px; color: var(--muted); line-height: 1.55; }

/* ── GALLERY ────────────────────────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}
.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 12px 16px;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600; font-size: 13px;
  text-transform: uppercase; letter-spacing: 0.5px;
  color: rgba(255,255,255,0.85);
}

/* ── PROCESS STEPS ──────────────────────────────────────────────────────── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  counter-reset: step;
}
.process-step {
  text-align: center; padding: 24px 16px;
  position: relative;
  counter-increment: step;
}
.process-step::before {
  content: counter(step);
  display: flex; align-items: center; justify-content: center;
  width: 48px; height: 48px;
  background: var(--orange);
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-size: 22px;
  border-radius: 50%;
  margin: 0 auto 16px;
}
.process-step-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 17px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 8px;
}
.process-step-text { font-size: 14px; color: var(--muted); line-height: 1.5; }

/* ── OWNER SECTION ──────────────────────────────────────────────────────── */
.owner-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: center;
}
.owner-img {
  width: 220px; height: 220px;
  border-radius: 50%;
  border: 4px solid var(--orange);
  object-fit: cover;
  flex-shrink: 0;
}
.owner-content .heading-md { margin-bottom: 16px; }
.owner-content p { font-size: 16px; color: var(--text); line-height: 1.65; margin-bottom: 12px; }
@media (max-width: 640px) {
  .owner-grid { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .owner-img { width: 160px; height: 160px; }
}

/* ── SERVICE AREAS ──────────────────────────────────────────────────────── */
.area-tags {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
}
.area-tag {
  display: inline-block;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 8px 18px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600; font-size: 15px;
  color: var(--text);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.area-tag:hover { border-color: var(--orange); color: var(--orange); background: var(--orange-glow); }

/* ── FAQ ACCORDION ──────────────────────────────────────────────────────── */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  background: none; border: none; color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 18px;
  text-transform: uppercase; letter-spacing: 0.5px;
  text-align: left;
  padding: 20px 0;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--orange); }
.faq-icon {
  width: 24px; height: 24px; flex-shrink: 0;
  transition: transform 0.3s;
  color: var(--orange);
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-answer-inner {
  padding: 0 0 20px;
  font-size: 15px; color: var(--muted); line-height: 1.6;
}

/* ── FOOTER ─────────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--dark);
  border-top: 3px solid var(--orange);
  padding: 56px 24px 24px;
}
.footer-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-brand img { height: 44px; margin-bottom: 16px; }
.footer-brand p { font-size: 14px; color: var(--muted); line-height: 1.55; max-width: 300px; }
.footer-col-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 15px;
  text-transform: uppercase; letter-spacing: 1px;
  color: var(--orange);
  margin-bottom: 16px;
}
.footer-links a {
  display: block; color: var(--muted); font-size: 14px;
  padding: 4px 0; transition: color 0.2s;
}
.footer-links a:hover { color: var(--orange); }
.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.footer-social a {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--muted);
  transition: all 0.2s;
}
.footer-social a:hover { border-color: var(--orange); color: var(--orange); }
.footer-hours-label { color: var(--text); }
.footer-hours {
  margin-top: 16px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}
.footer-bottom {
  max-width: var(--max-w); margin: 40px auto 0;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
  font-size: 13px; color: var(--muted);
}
@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; }
}

/* ── MOBILE STICKY CTA BAR ──────────────────────────────────────────────── */
.mobile-cta-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 999;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(12px);
  border-top: 2px solid var(--orange);
  padding: 10px 16px;
  gap: 10px;
}
.mobile-cta-bar .btn { flex: 1; font-size: 15px; padding: 14px 12px; }
@media (max-width: 960px) {
  .mobile-cta-bar { display: flex; }
  body { padding-bottom: var(--mobile-cta-h); }
}

/* ── CTA BANNER (inline) ───────────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--orange-dark) 0%, var(--orange) 50%, var(--orange-dark) 100%);
  padding: 56px 24px;
  text-align: center;
}
.cta-banner .heading-lg { color: #fff; margin-bottom: 12px; }
.cta-banner-sub { opacity: 0.85; }
.cta-banner p { color: rgba(255,255,255,0.85); font-size: 17px; margin-bottom: 28px; }
.cta-banner .btn--white { margin: 0 8px; }
.cta-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 8px;
}

/* ── UTILITY ────────────────────────────────────────────────────────────── */
.text-center { text-align: center; }
.mb-12 { margin-bottom: 12px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.mt-12 { margin-top: 12px; }
.mt-20 { margin-top: 20px; }
.mt-48 { margin-top: 48px; }
.mx-auto { margin-left: auto; margin-right: auto; }
.max-w-600 { max-width: 600px; }
.max-w-700 { max-width: 700px; }
.hidden { display: none !important; }

/* ── ANIMATIONS ─────────────────────────────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-in {
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

/* Scroll-reveal (JS applies .reveal-ready, removes on intersect) */
.reveal-ready {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-ready.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ── REDUCED MOTION ────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .animate-in { opacity: 1; }
  .reveal-ready { opacity: 1; transform: none; }
}

/* ── RESPONSIVE ADJUSTMENTS ─────────────────────────────────────────────── */
@media (max-width: 768px) {
  .section { padding: var(--section-pad-mobile); }
  .hero { padding: 110px 16px 64px; }
  .hero-content .hero-sub { font-size: 16px; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
}

/* ── SVC HERO & CITY LAYOUTS (service/city pages) ──────────────────────── */
.svc-hero, .city-hero { position: relative; overflow: hidden; margin-top: var(--header-h); display: flex; align-items: flex-end; }
.svc-hero { padding: 120px 24px 80px; min-height: 560px; }
.city-hero-media { position: absolute; inset: 0; z-index: 0; }
.city-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.city-hero-overlay { content: ''; position: absolute; inset: 0; z-index: 1; background: linear-gradient(135deg, rgba(10,10,10,0.94) 0%, rgba(10,10,10,0.7) 100%); }
