/* ============================================================
   MAKO MOBILE DETAILING — shared styles
   Brand: black / shark red / chrome silver
   Type:  Barlow Condensed (display) + Barlow (body)
   ============================================================ */

:root {
  --ink: #0b0d10;
  --carbon: #14171c;
  --steel: #1c2027;
  --line-dark: rgba(255, 255, 255, 0.09);
  --red: #d90f1e;
  --red-deep: #a50c16;
  --red-glow: rgba(217, 15, 30, 0.35);
  --paper: #f5f6f7;
  --white: #ffffff;
  --text-dark: #3f4750;
  --head-dark: #11151a;
  --text-light: #aab3bd;
  --silver-hi: #e9edf1;
  --line-light: #e2e5e9;
  --radius: 14px;
  --wrap: 1180px;
  --font-display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-body: "Barlow", "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }

a { color: var(--red); text-decoration: none; }

p { margin: 0 0 1em 0; text-wrap: pretty; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.04;
  margin: 0 0 0.4em 0;
  color: var(--head-dark);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  text-wrap: balance;
}

.wrap {
  width: min(var(--wrap), calc(100% - 48px));
  margin-inline: auto;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 8px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}
.btn svg { flex: none; }
.btn-red {
  background: linear-gradient(180deg, #e8202f, var(--red) 55%, var(--red-deep));
  color: var(--white);
  box-shadow: 0 6px 18px -6px var(--red-glow), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}
.btn-red:hover { transform: translateY(-2px); box-shadow: 0 10px 24px -6px var(--red-glow), inset 0 1px 0 rgba(255, 255, 255, 0.25); }
.btn-ghost-light {
  background: rgba(255, 255, 255, 0.04);
  color: var(--silver-hi);
  border-color: rgba(255, 255, 255, 0.25);
}
.btn-ghost-light:hover { border-color: rgba(255, 255, 255, 0.6); background: rgba(255, 255, 255, 0.08); transform: translateY(-2px); }
.btn-ghost-dark {
  background: transparent;
  color: var(--head-dark);
  border-color: #c6ccd2;
}
.btn-ghost-dark:hover { border-color: var(--head-dark); transform: translateY(-2px); }
.btn-lg { font-size: 21px; padding: 17px 34px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(11, 13, 16, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-dark);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: 76px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-line1 {
  font-family: var(--font-display);
  font-size: 27px;
  font-weight: 700;
  letter-spacing: 0.04em;
  background: linear-gradient(180deg, #ffffff 20%, #b9c2cc 60%, #8d97a3);
  background-size: 100% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.brand-line1 em { font-style: normal; margin-left: 0.26em; }
.brand-line2 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 3px;
  font-family: var(--font-body);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.42em;
  color: var(--red);
  text-transform: uppercase;
}
.brand-line2::before, .brand-line2::after {
  content: "";
  height: 1px;
  flex: 1;
  background: currentColor;
  opacity: 0.7;
}
.site-nav { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.site-nav a {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  padding: 8px 14px;
  border-radius: 6px;
  transition: color 0.15s ease, background 0.15s ease;
}
.site-nav a:hover { color: var(--white); background: rgba(255, 255, 255, 0.06); }
.site-nav a[aria-current="page"] { color: var(--white); position: relative; }
.site-nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 2px;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
}
.nav-phone { margin-left: 14px; font-size: 17px; padding: 10px 20px; }
.site-nav a.nav-phone, .site-nav a.nav-phone:hover { color: var(--white); }

.nav-toggle {
  display: none;
  margin-left: auto;
  background: none;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  width: 46px;
  height: 46px;
  cursor: pointer;
  color: var(--silver-hi);
  align-items: center;
  justify-content: center;
}

/* ---------- Sections ---------- */
.section { padding: 92px 0; }
.section-dark { background: var(--ink); color: var(--text-light); }
.section-dark h2, .section-dark h3 { color: var(--silver-hi); }
.section-gray { background: var(--paper); }

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 18px;
}
.kicker::before { content: ""; width: 34px; height: 2px; background: var(--red); }

.section-head { max-width: 720px; margin-bottom: 48px; }
.section-head h2 { font-size: clamp(34px, 4.4vw, 52px); }
.section-head p { font-size: 18px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .kicker { justify-content: center; }
.section-head.center .kicker::before { display: none; }

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(1100px 500px at 85% -10%, rgba(217, 15, 30, 0.16), transparent 60%),
    linear-gradient(160deg, #15181d 0%, var(--ink) 55%, #08090b 100%);
  color: var(--text-light);
  overflow: hidden;
  position: relative;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(115deg, rgba(255, 255, 255, 0.022) 0 2px, transparent 2px 9px);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 64px;
  align-items: center;
  padding: 84px 0 88px;
}
.hero h1 {
  font-size: clamp(46px, 5.6vw, 78px);
  color: var(--white);
  margin-bottom: 20px;
}
.hero h1 .accent { color: var(--red); }
.hero-sub { font-size: 19px; max-width: 54ch; margin-bottom: 32px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 38px; }
.hero-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--silver-hi);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  padding: 8px 16px;
}
.chip svg { color: var(--red); flex: none; }

.hero-media { position: relative; }
.hero-photo {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 40px 80px -30px rgba(0, 0, 0, 0.8);
}
.hero-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  z-index: 2;
  pointer-events: none;
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 4.6; }
.hero-media::before {
  content: "";
  position: absolute;
  top: -22px;
  right: -22px;
  width: 180px;
  height: 180px;
  border-top: 3px solid var(--red);
  border-right: 3px solid var(--red);
  border-radius: 0 18px 0 0;
}
.hero-badge {
  position: absolute;
  left: -26px;
  bottom: 34px;
  z-index: 3;
  background: rgba(11, 13, 16, 0.88);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line-dark);
  border-left: 3px solid var(--red);
  border-radius: 10px;
  padding: 14px 20px;
  box-shadow: 0 18px 40px -18px rgba(0, 0, 0, 0.85);
}
.hero-badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
}
.hero-badge span { font-size: 13.5px; color: var(--text-light); }

/* ---------- Trust bar ---------- */
.trust-bar {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--line-dark);
  padding: 22px 0;
}
.trust-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--silver-hi);
}
.trust-item svg { color: var(--red); flex: none; }

/* ---------- Cards ---------- */
.card-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.card {
  background: var(--white);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 40px -22px rgba(17, 21, 26, 0.25);
  border-color: #d5dade;
}
.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, #1a1e24, var(--ink));
  color: var(--red);
  margin-bottom: 20px;
}
.card h3 { font-size: 24px; margin-bottom: 8px; }
.card p { font-size: 15.5px; margin: 0; }

/* ---------- Service cards ---------- */
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.service-card:hover { transform: translateY(-5px); box-shadow: 0 28px 48px -24px rgba(17, 21, 26, 0.3); }
.service-card-media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.service-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.service-card:hover .service-card-media img { transform: scale(1.045); }
.service-card-media::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), transparent 70%);
}
.service-card-body { padding: 24px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.service-card h3 { font-size: 26px; margin-bottom: 8px; }
.service-card p { font-size: 15.5px; margin-bottom: 18px; }
.text-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
}
.text-link:hover { color: var(--red-deep); }
.service-card-cta {
  background: linear-gradient(160deg, #181c22, var(--ink));
  border: 1px solid var(--line-dark);
  align-items: flex-start;
  justify-content: center;
  padding: 34px 28px;
}
.service-card-cta h3 { color: var(--white); font-size: 30px; }
.service-card-cta p { color: var(--text-light); }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; counter-reset: step; }
.step {
  position: relative;
  background: var(--carbon);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 34px 28px 30px;
}
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  display: block;
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 700;
  line-height: 1;
  color: rgba(217, 15, 30, 0.55);
  margin-bottom: 14px;
}
@supports (-webkit-text-stroke: 1px black) {
  .step::before {
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(217, 15, 30, 0.85);
  }
}
.step h3 { font-size: 25px; }
.step p { font-size: 15.5px; margin: 0; }

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.gallery-item {
  position: relative;
  margin: 0;
  border-radius: 10px;
  overflow: hidden;
  cursor: zoom-in;
  border: none;
  padding: 0;
  background: var(--carbon);
  aspect-ratio: 1 / 1;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 13, 16, 0.55), transparent 45%);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 10px;
  z-index: 2;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
}
.gallery-item:hover figcaption { opacity: 1; transform: translateY(0); }

.filter-bar { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 34px; }
.filter-btn {
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 9px 20px;
  border-radius: 999px;
  border: 1px solid #c9ced4;
  background: var(--white);
  color: var(--text-dark);
  cursor: pointer;
  transition: all 0.15s ease;
}
.filter-btn:hover { border-color: var(--head-dark); color: var(--head-dark); }
.filter-btn.active {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(5, 6, 8, 0.93);
  padding: 4vh 4vw;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 100%;
  max-height: 86vh;
  border-radius: 10px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8);
}
.lightbox-caption {
  position: absolute;
  bottom: 3vh;
  left: 0;
  right: 0;
  text-align: center;
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
}
.lightbox button {
  position: absolute;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  border-radius: 999px;
  width: 52px;
  height: 52px;
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease;
}
.lightbox button:hover { background: rgba(255, 255, 255, 0.18); }
.lightbox .lb-close { top: 24px; right: 24px; }
.lightbox .lb-prev { left: 18px; top: 50%; transform: translateY(-50%); }
.lightbox .lb-next { right: 18px; top: 50%; transform: translateY(-50%); }

/* ---------- Testimonials ---------- */
.testimonial-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.testimonial {
  background: var(--white);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  padding: 32px 30px 28px;
  position: relative;
}
.testimonial::before {
  content: "\201C";
  position: absolute;
  top: 8px;
  right: 22px;
  font-family: var(--font-display);
  font-size: 110px;
  line-height: 1;
  color: rgba(217, 15, 30, 0.14);
}
.stars { display: flex; gap: 3px; color: var(--red); margin-bottom: 16px; }
.testimonial blockquote { margin: 0 0 18px 0; font-size: 16.5px; color: var(--text-dark); }
.testimonial cite {
  font-style: normal;
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--head-dark);
}
.testimonial cite span { display: block; font-family: var(--font-body); font-size: 13px; font-weight: 600; letter-spacing: 0.14em; color: var(--red); margin-top: 2px; }

/* ---------- Service area ---------- */
.area-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.city-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.city-chips .chip { font-size: 15px; }

/* ---------- CTA band ---------- */
.cta-band {
  background:
    radial-gradient(800px 300px at 20% 0%, rgba(255, 255, 255, 0.12), transparent 60%),
    linear-gradient(160deg, #e8202f, var(--red) 45%, #8e0a13);
  color: var(--white);
  padding: 72px 0;
}
.cta-band-inner { display: flex; align-items: center; justify-content: space-between; gap: 36px; flex-wrap: wrap; }
.cta-band h2 { color: var(--white); font-size: clamp(32px, 4vw, 48px); margin-bottom: 6px; }
.cta-band p { margin: 0; font-size: 18px; color: rgba(255, 255, 255, 0.85); }
.cta-band .btn-white {
  background: var(--white);
  color: var(--red-deep);
  box-shadow: 0 14px 30px -12px rgba(0, 0, 0, 0.45);
}
.cta-band .btn-white:hover { transform: translateY(-2px); }
.cta-band .btn-ghost-light { border-color: rgba(255, 255, 255, 0.5); color: var(--white); }
.cta-band-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Page hero (subpages) ---------- */
.page-hero {
  background:
    radial-gradient(900px 360px at 80% -20%, rgba(217, 15, 30, 0.18), transparent 60%),
    linear-gradient(160deg, #15181d, var(--ink));
  color: var(--text-light);
  padding: 72px 0 64px;
  border-bottom: 1px solid var(--line-dark);
}
.page-hero h1 { color: var(--white); font-size: clamp(40px, 5vw, 64px); margin-bottom: 12px; }
.page-hero p { font-size: 18.5px; max-width: 64ch; margin: 0; }

/* ---------- Service detail rows ---------- */
.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 76px 0;
}
.service-row + .service-row { border-top: 1px solid var(--line-light); }
.service-row h2 { font-size: clamp(30px, 3.6vw, 44px); }
.service-row-media { position: relative; }
.service-row-media .photo-main {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 30px 60px -28px rgba(17, 21, 26, 0.45);
}
.service-row-media .photo-main img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.service-row-media .photo-sub {
  position: absolute;
  right: -18px;
  bottom: -34px;
  width: 44%;
  border-radius: 12px;
  overflow: hidden;
  border: 5px solid var(--white);
  box-shadow: 0 24px 48px -20px rgba(17, 21, 26, 0.5);
}
.photo-sub img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.check-list { list-style: none; padding: 0; margin: 0 0 26px 0; display: grid; gap: 11px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 16.5px; }
.check-list svg { flex: none; color: var(--red); margin-top: 4px; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: start; }
.contact-card {
  background: var(--white);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  padding: 38px 36px;
  box-shadow: 0 30px 60px -32px rgba(17, 21, 26, 0.35);
}
.contact-card h2 { font-size: 32px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { display: flex; flex-direction: column; gap: 7px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--head-dark);
}
.form-field label .req { color: var(--red); }
.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--head-dark);
  background: #fbfbfc;
  border: 1px solid #d4d9de;
  border-radius: 9px;
  padding: 13px 14px;
  width: 100%;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.form-field textarea { resize: vertical; min-height: 120px; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(217, 15, 30, 0.14);
}
.contact-info h2 { font-size: clamp(34px, 4vw, 48px); }
.info-block { display: flex; gap: 16px; align-items: flex-start; padding: 18px 0; border-bottom: 1px solid var(--line-light); }
.info-block:last-of-type { border-bottom: none; }
.info-icon {
  width: 46px;
  height: 46px;
  flex: none;
  border-radius: 11px;
  background: linear-gradient(160deg, #1a1e24, var(--ink));
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
}
.info-block h3 { font-size: 20px; margin-bottom: 2px; }
.info-block a.big { font-family: var(--font-display); font-size: 26px; font-weight: 700; letter-spacing: 0.03em; color: var(--head-dark); }
.info-block a.big:hover { color: var(--red); }
.info-block p { margin: 0; font-size: 15.5px; }
.hours-table { width: 100%; border-collapse: collapse; font-size: 15.5px; }
.hours-table td { padding: 4px 0; }
.hours-table td:last-child { text-align: right; font-weight: 600; color: var(--head-dark); }
.hours-table tr.closed td:last-child { color: #9aa3ae; font-weight: 500; }

/* ---------- Footer ---------- */
.site-footer { background: #000; color: #98a0ab; }
.footer-main {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 1fr 1.1fr;
  gap: 44px;
  padding: 70px 0 54px;
}
.footer-logo { width: 168px; margin: -20px 0 6px -14px; }
.footer-main p { font-size: 15px; }
.footer-head {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.footer-links a { color: #98a0ab; font-size: 15px; transition: color 0.15s ease; }
.footer-links a:hover { color: var(--white); }
.footer-contact { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; font-size: 15px; }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; }
.footer-contact svg { color: var(--red); flex: none; margin-top: 3px; }
.footer-contact a { color: var(--silver-hi); }
.footer-contact a[href^="tel"] { white-space: nowrap; }
.footer-contact a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 13.5px;
}
.social-row { display: flex; gap: 10px; }
.social-row a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c3cad2;
  transition: all 0.15s ease;
}
.social-row a:hover { color: var(--white); border-color: var(--red); background: rgba(217, 15, 30, 0.14); }

/* ---------- Client reels (video) ---------- */
.reels { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.reel {
  position: relative;
  margin: 0;
  aspect-ratio: 9 / 16;
  border-radius: 16px;
  overflow: hidden;
  background: var(--carbon);
  border: 1px solid var(--line-light);
  box-shadow: 0 30px 60px -30px rgba(17, 21, 26, 0.5);
}
.reel-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000;
  z-index: 1;
}
.reel-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  margin: 0;
  padding: 0;
  cursor: pointer;
  text-align: left;
  background: linear-gradient(to top, rgba(8, 9, 11, 0.82) 0%, rgba(8, 9, 11, 0.18) 42%, transparent 68%);
  transition: opacity 0.3s ease;
}
.reel.playing .reel-overlay { opacity: 0; pointer-events: none; }
.reel-play {
  position: absolute;
  top: 46%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: linear-gradient(180deg, #e8202f, var(--red) 60%, var(--red-deep));
  box-shadow: 0 12px 30px -8px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.25);
  transition: transform 0.16s ease;
}
.reel-play svg { margin-left: 3px; }
.reel-overlay:hover .reel-play { transform: translate(-50%, -50%) scale(1.09); }
.reel-cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 20px 22px 22px;
}
.reel-cap strong {
  display: block;
  font-family: var(--font-display);
  font-size: 23px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.05;
  text-transform: uppercase;
  color: var(--white);
}
.reel-cap span {
  display: block;
  margin-top: 3px;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
}

/* ---------- Reveal animation ---------- */
@media (prefers-reduced-motion: no-preference) {
  html.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
  html.js .reveal.in { opacity: 1; transform: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1020px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; padding: 64px 0 72px; }
  .hero-photo img { aspect-ratio: 16 / 11; }
  .hero-media { display: flex; flex-direction: column; }
  .hero-badge { position: static; margin-top: 14px; border-left-width: 4px; }
  .trust-row { grid-template-columns: repeat(2, 1fr); }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .area-grid { grid-template-columns: 1fr; gap: 36px; }
  .service-row { grid-template-columns: 1fr; gap: 44px; }
  .service-row-media .photo-sub { bottom: -24px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .site-nav { display: none; }
  .nav-toggle { display: flex; }
  .site-header.nav-open .site-nav {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--ink);
    border-bottom: 1px solid var(--line-dark);
    padding: 12px 24px 20px;
  }
  .site-header.nav-open .site-nav a { padding: 13px 10px; font-size: 21px; }
  .site-header.nav-open .nav-phone {
    margin: 12px 0 0;
    padding: 14px;
    font-size: 19px;
    justify-content: center;
  }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .section { padding: 64px 0; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .card-grid { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .reels { grid-template-columns: 1fr; max-width: 340px; margin-inline: auto; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; gap: 34px; padding: 54px 0 40px; }
  .cta-band-inner { flex-direction: column; align-items: flex-start; }
  .trust-row { grid-template-columns: 1fr; gap: 12px; }
  .hero-ctas .btn { width: 100%; }
}
