/* KC MIGHTY AUTO SALES — red / black / white luxury */

:root {
  --black: #0a0a0a;
  --black-soft: #111112;
  --black-card: #161617;
  --red: #c8102e;
  --red-deep: #8f0b20;
  --red-glow: rgba(200, 16, 46, 0.35);
  --white: #ffffff;
  --cream: #f5f2ee;
  --grey: #9a9a9a;
  --grey-dark: #2a2a2c;
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ---------- top bar ---------- */
.topbar {
  background: var(--red);
  color: var(--white);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-align: center;
  padding: 8px 16px;
  font-weight: 500;
}
.topbar a { font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }

/* ---------- nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--grey-dark);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-mark {
  width: 38px;
  height: 44px;
  display: block;
  flex-shrink: 0;
}
.brand-name {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.brand-name span { color: var(--red); }
.brand-tag {
  display: block;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.34em;
  color: var(--grey);
  text-transform: uppercase;
  margin-top: 1px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none;
}
.nav-links a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream);
  transition: color 0.2s;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}
.nav-links a:hover { color: var(--red); }
.nav-links a.active { color: var(--red); border-bottom-color: var(--red); }

.nav-call {
  background: var(--red);
  color: var(--white) !important;
  padding: 12px 22px !important;
  font-weight: 700 !important;
  border-bottom: none !important;
  transition: background 0.2s !important;
}
.nav-call:hover { background: var(--red-deep); color: var(--white) !important; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  margin: 6px 0;
  transition: 0.3s;
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse 900px 500px at 85% 110%, var(--red-glow), transparent 60%),
    radial-gradient(ellipse 700px 400px at -10% -20%, rgba(200, 16, 46, 0.14), transparent 60%),
    linear-gradient(180deg, #0c0c0d 0%, var(--black) 100%);
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.8) contrast(1.06) brightness(0.75);
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.84) 38%, rgba(10, 10, 10, 0.5) 72%, rgba(10, 10, 10, 0.68) 100%),
    linear-gradient(180deg, rgba(10, 10, 10, 0.65) 0%, transparent 30%, transparent 62%, var(--black) 100%),
    radial-gradient(ellipse 900px 500px at 85% 110%, var(--red-glow), transparent 60%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    90deg,
    transparent 0,
    transparent 118px,
    rgba(255, 255, 255, 0.025) 118px,
    rgba(255, 255, 255, 0.025) 119px
  );
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 2; padding: 90px 0; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 28px;
}
.eyebrow::before {
  content: "";
  width: 44px;
  height: 1px;
  background: var(--red);
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(44px, 7vw, 88px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.01em;
  max-width: 850px;
}
.hero h1 em {
  font-style: italic;
  color: var(--red);
}
.hero p.lead {
  margin-top: 28px;
  font-size: 19px;
  color: var(--grey);
  max-width: 540px;
  font-weight: 300;
}
.hero-ctas { display: flex; gap: 18px; margin-top: 44px; flex-wrap: wrap; }
.hero-fax {
  margin-top: 24px;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.02em;
  color: var(--grey);
}
.hero-fax span { color: var(--cream); font-weight: 600; letter-spacing: 0.04em; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 17px 34px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: all 0.25s;
  cursor: pointer;
  border: none;
}
.btn-red {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 8px 30px var(--red-glow);
}
.btn-red:hover { background: var(--red-deep); transform: translateY(-2px); }
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.28);
}
.btn-ghost:hover { border-color: var(--red); color: var(--red); }

.hero-est {
  position: absolute;
  right: 40px;
  bottom: 40px;
  z-index: 2;
  text-align: right;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--grey);
}
.hero-est strong { display: block; color: var(--cream); font-size: 13px; letter-spacing: 0.3em; }

/* ---------- stats / counters ---------- */
.stats {
  border-top: 1px solid var(--grey-dark);
  border-bottom: 1px solid var(--grey-dark);
  background: var(--black-soft);
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
}
.stat {
  padding: 54px 20px;
  border-left: 1px solid var(--grey-dark);
}
.stat:first-child { border-left: none; }
.stat-num {
  font-family: var(--serif);
  font-size: clamp(44px, 5vw, 64px);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.stat-num .plus { color: var(--red); }
.stat-label {
  margin-top: 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--grey);
}

/* ---------- sections ---------- */
.section { padding: 110px 0; }
.section-dark { background: var(--black); }
.section-soft { background: var(--black-soft); border-top: 1px solid var(--grey-dark); border-bottom: 1px solid var(--grey-dark); }
.section-white { background: var(--cream); color: var(--black); }

.section-head { max-width: 700px; margin-bottom: 64px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head.center .eyebrow::before { display: none; }
.section-head h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 4.4vw, 52px);
  font-weight: 800;
  line-height: 1.12;
}
.section-white .section-head h2 { color: var(--black); }
.section-head p {
  margin-top: 18px;
  color: var(--grey);
  font-size: 17px;
  font-weight: 300;
}
.section-white .section-head p { color: #5a5651; }

/* ---------- service cards ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--grey-dark);
  border: 1px solid var(--grey-dark);
}
.service-card {
  background: var(--black-card);
  padding: 46px 38px;
  position: relative;
  transition: background 0.3s;
}
.service-card:hover { background: #1c1c1e; }
.service-card:hover .service-num { color: var(--red); }
.service-num {
  font-family: var(--serif);
  font-size: 15px;
  font-style: italic;
  color: var(--grey);
  transition: color 0.3s;
}
.service-card h3 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 700;
  margin: 16px 0 12px;
}
.service-card p { color: var(--grey); font-size: 15px; font-weight: 300; }
.service-rule {
  width: 34px;
  height: 2px;
  background: var(--red);
  margin-top: 26px;
}

/* ---------- reviews ---------- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.review-card {
  background: var(--white);
  color: var(--black);
  padding: 44px 38px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.review-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--red);
}
.review-stars {
  color: var(--red);
  font-size: 16px;
  letter-spacing: 4px;
  margin-bottom: 20px;
}
.review-text {
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
  line-height: 1.6;
  flex: 1;
}
.review-name {
  margin-top: 26px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.review-src { font-size: 11px; color: #8a8580; letter-spacing: 0.08em; margin-top: 4px; }

/* ---------- family band ---------- */
.family-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.family-band h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.15;
}
.family-band h2 em { font-style: italic; color: var(--red); }
.family-band p { color: var(--grey); margin-top: 22px; font-weight: 300; font-size: 17px; }
.family-names {
  margin-top: 34px;
  padding-left: 24px;
  border-left: 2px solid var(--red);
}
.family-names strong {
  display: block;
  font-family: var(--serif);
  font-size: 20px;
  letter-spacing: 0.02em;
}
.family-names span { font-size: 13px; color: var(--grey); letter-spacing: 0.18em; text-transform: uppercase; }

.monogram {
  aspect-ratio: 4 / 5;
  background:
    radial-gradient(ellipse 400px 300px at 50% 110%, var(--red-glow), transparent 65%),
    var(--black-card);
  border: 1px solid var(--grey-dark);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}
.monogram-inner { text-align: center; padding: 30px; }
.monogram-letters {
  font-family: var(--serif);
  font-size: clamp(90px, 10vw, 150px);
  font-weight: 800;
  line-height: 1;
  color: var(--white);
}
.monogram-letters span { color: var(--red); }
.monogram-shield {
  width: clamp(120px, 13vw, 170px);
  height: auto;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 18px 44px rgba(200, 16, 46, 0.4));
}
.monogram-sub {
  margin-top: 18px;
  font-size: 11px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--grey);
}
.monogram-rule { width: 60px; height: 1px; background: var(--red); margin: 22px auto 0; }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--red);
  color: var(--white);
  text-align: center;
  padding: 96px 24px;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 800px 400px at 50% 130%, rgba(0,0,0,0.28), transparent 60%);
}
.cta-band > * { position: relative; }
.cta-band h2 {
  font-family: var(--serif);
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 800;
  line-height: 1.1;
  max-width: 760px;
  margin: 0 auto;
}
.cta-band p { margin: 20px auto 0; max-width: 520px; font-size: 17px; opacity: 0.92; }
.cta-band .btn-white {
  background: var(--white);
  color: var(--black);
  margin-top: 40px;
}
.cta-band .btn-white:hover { background: var(--black); color: var(--white); transform: translateY(-2px); }
.cta-phone {
  display: block;
  margin-top: 26px;
  font-family: var(--serif);
  font-size: clamp(26px, 3.6vw, 40px);
  font-weight: 800;
  letter-spacing: 0.03em;
}

/* ---------- page hero (inner pages) ---------- */
.page-hero {
  padding: 110px 0 80px;
  background:
    radial-gradient(ellipse 700px 380px at 90% 130%, var(--red-glow), transparent 60%),
    var(--black-soft);
  border-bottom: 1px solid var(--grey-dark);
}
.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.06;
}
.page-hero h1 em { font-style: italic; color: var(--red); }
.page-hero p { margin-top: 20px; color: var(--grey); font-size: 18px; max-width: 620px; font-weight: 300; }

/* ---------- inventory ---------- */
.inventory-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.car-card {
  background: var(--black-card);
  border: 1px solid var(--grey-dark);
  transition: border-color 0.3s, transform 0.3s;
}
.car-card:hover { border-color: var(--red); transform: translateY(-4px); }
.car-photo {
  aspect-ratio: 16 / 10;
  background:
    radial-gradient(ellipse 300px 180px at 50% 120%, rgba(200, 16, 46, 0.18), transparent 65%),
    #101011;
  display: grid;
  place-items: center;
  border-bottom: 1px solid var(--grey-dark);
}
.car-photo svg { width: 84px; opacity: 0.5; }
.car-body { padding: 28px; }
.car-body h3 { font-family: var(--serif); font-size: 21px; font-weight: 700; }
.car-body p { color: var(--grey); font-size: 14px; margin-top: 8px; font-weight: 300; }
.car-cta {
  display: inline-block;
  margin-top: 18px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
}

.inventory-note {
  margin-top: 56px;
  border: 1px dashed rgba(200, 16, 46, 0.5);
  background: rgba(200, 16, 46, 0.06);
  padding: 40px;
  text-align: center;
}
.inventory-note h3 { font-family: var(--serif); font-size: 24px; }
.inventory-note p { color: var(--grey); margin-top: 10px; }

/* ---------- about page ---------- */
.about-body { max-width: 760px; }
.about-body p { font-size: 18px; color: #c9c5c0; font-weight: 300; margin-bottom: 26px; }
.about-body p strong { color: var(--white); font-weight: 600; }
.drop-cap::first-letter {
  font-family: var(--serif);
  font-size: 74px;
  font-weight: 800;
  float: left;
  line-height: 0.85;
  margin: 6px 14px 0 0;
  color: var(--red);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--grey-dark);
  border: 1px solid var(--grey-dark);
  margin-top: 70px;
}
.value-card { background: var(--black-card); padding: 40px 34px; }
.value-card h3 { font-family: var(--serif); font-size: 21px; margin-bottom: 10px; }
.value-card h3 span { color: var(--red); margin-right: 10px; font-style: italic; }
.value-card p { color: var(--grey); font-size: 15px; font-weight: 300; }

/* ---------- page hero with video ---------- */
.page-hero.has-video { position: relative; overflow: hidden; }
.page-hero.has-video .container { position: relative; z-index: 2; }

/* ---------- service video cards ---------- */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.svc-card {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border: 1px solid var(--grey-dark);
  background: var(--black-card);
  transition: border-color 0.3s, transform 0.3s;
}
.svc-card:hover { border-color: var(--red); transform: translateY(-5px); }
.svc-card video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85) contrast(1.05) brightness(0.8);
  transition: transform 0.8s ease;
}
.svc-card:hover video { transform: scale(1.06); }
.svc-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.32) 0%, rgba(10, 10, 10, 0.05) 38%, rgba(10, 10, 10, 0.9) 82%);
}
.svc-num {
  position: absolute;
  top: 22px;
  left: 26px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  color: rgba(255, 255, 255, 0.85);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}
.svc-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 26px;
}
.svc-body h3 {
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 700;
  line-height: 1.15;
}
.svc-body p {
  color: #cfcbc6;
  font-size: 14px;
  font-weight: 300;
  margin-top: 8px;
  line-height: 1.55;
}
.svc-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
}
.svc-card:hover .svc-cta { color: var(--white); }

@media (max-width: 900px) {
  .svc-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .svc-card { aspect-ratio: 4 / 5; }
  .svc-body { padding: 20px; }
  .svc-body h3 { font-size: 20px; }
  .svc-body p { display: none; }
}
@media (max-width: 540px) {
  .svc-grid { grid-template-columns: 1fr; }
  .svc-card { aspect-ratio: 16 / 11; }
  .svc-body p { display: block; }
}

/* ---------- services page ---------- */
.service-rows { display: grid; gap: 2px; background: var(--grey-dark); border: 1px solid var(--grey-dark); }
.service-row {
  background: var(--black-card);
  display: grid;
  grid-template-columns: 90px 1fr auto;
  align-items: center;
  gap: 30px;
  padding: 40px 44px;
  transition: background 0.3s;
}
.service-row:hover { background: #1c1c1e; }
.service-row-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 30px;
  color: var(--red);
}
.service-row h3 { font-family: var(--serif); font-size: 26px; font-weight: 700; }
.service-row p { color: var(--grey); font-size: 15px; margin-top: 6px; font-weight: 300; max-width: 560px; }
.service-row .btn { padding: 13px 24px; font-size: 11px; }

/* ---------- contact page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-block { margin-bottom: 42px; }
.contact-block h3 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}
.contact-big {
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 800;
  line-height: 1.25;
}
a.contact-big:hover { color: var(--red); }
.contact-block p.sub { color: var(--grey); margin-top: 8px; font-size: 15px; }

.map-btns { display: flex; gap: 14px; margin-top: 20px; flex-wrap: wrap; }
.map-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 13px 22px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: all 0.25s;
}
.map-btn:hover { border-color: var(--red); color: var(--red); }
.map-btn svg { width: 15px; height: 15px; }

.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td {
  padding: 15px 0;
  border-bottom: 1px solid var(--grey-dark);
  font-size: 15px;
}
.hours-table td:last-child { text-align: right; font-weight: 600; }
.hours-table .closed td:last-child { color: var(--red); }

.map-frame {
  border: 1px solid var(--grey-dark);
  filter: grayscale(1) contrast(1.05);
  transition: filter 0.4s;
  width: 100%;
  height: 100%;
  min-height: 480px;
}
.map-frame:hover { filter: grayscale(0); }
.map-wrap { position: sticky; top: 110px; }

/* ---------- footer ---------- */
.footer {
  background: var(--black-soft);
  border-top: 1px solid var(--grey-dark);
  padding: 70px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 50px;
}
.footer h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 20px;
}
.footer-brand p { color: var(--grey); font-size: 14px; margin-top: 16px; max-width: 300px; font-weight: 300; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 12px; }
.footer ul a { font-size: 14px; color: #c9c5c0; transition: color 0.2s; }
.footer ul a:hover { color: var(--red); }
.footer-hours li { font-size: 14px; color: #c9c5c0; display: flex; justify-content: space-between; gap: 18px; }
.footer-hours li span:last-child { color: var(--grey); }
.footer-bottom {
  margin-top: 60px;
  padding-top: 26px;
  border-top: 1px solid var(--grey-dark);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 12px;
  color: var(--grey);
  letter-spacing: 0.06em;
}

/* ---------- homepage services strip ---------- */
.svc-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.strip-tile {
  position: relative;
  display: block;
  aspect-ratio: 9 / 14;
  overflow: hidden;
  border: 1px solid var(--grey-dark);
  background: var(--black-card);
  transition: border-color 0.3s, transform 0.3s;
}
.strip-tile:hover { border-color: var(--red); transform: translateY(-6px); }
.strip-tile video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.8) contrast(1.05) brightness(0.62);
  transition: filter 0.4s, transform 0.8s ease;
}
.strip-tile:hover video { filter: saturate(0.95) contrast(1.05) brightness(0.85); transform: scale(1.07); }
.strip-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.45) 0%, transparent 40%, rgba(10, 10, 10, 0.92) 88%);
}
.strip-num {
  position: absolute;
  top: 14px;
  left: 16px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--red);
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.7);
}
.strip-title {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 16px;
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--white);
}
.strip-title::after {
  content: "";
  display: block;
  width: 24px;
  height: 2px;
  background: var(--red);
  margin-top: 10px;
  transition: width 0.3s;
}
.strip-tile:hover .strip-title::after { width: 44px; }

@media (max-width: 1000px) {
  .svc-strip { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 540px) {
  .svc-strip { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .strip-title { font-size: 15px; padding: 12px; }
}

/* ---------- reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in { opacity: 1; transform: none; }

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    inset: 76px 0 auto 0;
    background: var(--black);
    border-bottom: 1px solid var(--grey-dark);
    flex-direction: column;
    gap: 0;
    padding: 10px 0 24px;
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; text-align: center; }
  .nav-links a { display: block; padding: 15px 0; }
  .nav-links .nav-call { margin: 14px 24px 0; }
  .nav-toggle { display: block; }

  .stats-inner { grid-template-columns: 1fr; }
  .stat { border-left: none; border-top: 1px solid var(--grey-dark); padding: 38px 20px; }
  .stat:first-child { border-top: none; }

  .services-grid, .reviews-grid, .inventory-grid, .values-grid { grid-template-columns: 1fr; }
  .family-band, .contact-grid { grid-template-columns: 1fr; gap: 50px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .service-row { grid-template-columns: 1fr; gap: 14px; padding: 32px 26px; }
  .section { padding: 76px 0; }
  .hero-est { display: none; }
  .map-wrap { position: static; }
}

@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
}
