/* =========================================================
   MODPROS Elevator Inc. — Shared Stylesheet
   High Touch, High Tech
   ========================================================= */

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

:root {
  --red:    #B01505;
  --red-dk: #8e1004;
  --black:  #111111;
  --grey:   #f7f7f7;
  --mid:    #888888;
  --border: #e8e8e8;
  --white:  #ffffff;
  --green:  #1f7a4a;
  --font:   'Poppins', sans-serif;
  --ease:   cubic-bezier(0.22, 1, 0.36, 1);
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  font-weight: 400;
  background: var(--white);
  color: var(--black);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 40px; }
@media (max-width: 640px) { .wrap { padding: 0 22px; } }

/* ── TYPOGRAPHY ─────────────────────────────────────── */
.label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 500; letter-spacing: .22em;
  text-transform: uppercase; color: var(--red);
  margin-bottom: 16px;
}
.label::before {
  content: ''; flex-shrink: 0;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--red);
}
.label--light         { color: rgba(255,255,255,.5); }
.label--light::before { background: rgba(255,255,255,.5); }

h1, h2, h3 { font-weight: 500; line-height: 1.1; letter-spacing: -.02em; }
.display  { font-size: clamp(40px, 5.5vw, 72px); font-weight: 500; line-height: 1.04; }
.title-lg { font-size: clamp(30px, 4vw, 50px); font-weight: 500; }
.title-md { font-size: clamp(24px, 2.6vw, 32px); font-weight: 500; }
.body-text { font-size: 15px; line-height: 1.78; font-weight: 300; color: var(--mid); }
.red { color: var(--red); }

/* ── BUTTONS ─────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font); font-size: 12px; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase;
  padding: 15px 28px; cursor: pointer;
  border: 1.5px solid transparent; transition: all .3s var(--ease);
}
.btn-red       { background: var(--red);   color: var(--white); border-color: var(--red); }
.btn-red:hover { background: var(--red-dk); border-color: var(--red-dk); }
.btn-outline-w       { background: transparent; color: var(--white); border-color: rgba(255,255,255,.4); }
.btn-outline-w:hover { background: var(--white); color: var(--black); border-color: var(--white); }
.btn-outline       { background: transparent; color: var(--black); border-color: var(--black); }
.btn-outline:hover { background: var(--black); color: var(--white); }
.btn svg { width: 14px; height: 14px; flex-shrink: 0; transition: transform .22s ease; }
.btn:hover svg { transform: translateX(3px); }
.btn-full { width: 100%; padding: 18px 28px; font-size: 13px; }

/* ── NAVIGATION ─────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 999;
  background: rgba(17,17,17,.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.nav-logo img { height: 42px; width: auto; display: block; }

.nav-links {
  display: flex; align-items: center; gap: 4px;
  list-style: none;
}
.nav-links > li { position: relative; }
.nav-links > li > a,
.nav-links > li > button {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font);
  font-size: 11px; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255,255,255,.78);
  padding: 12px 18px;
  background: none; border: none; cursor: pointer;
  transition: color .2s ease;
  position: relative;
}
.nav-links > li > a:hover,
.nav-links > li > button:hover { color: var(--white); }
.nav-links > li > a.active::after {
  content: ''; position: absolute; left: 18px; right: 18px; bottom: 4px;
  height: 2px; background: var(--red);
}
.nav-links > li > button .caret {
  width: 8px; height: 8px; flex-shrink: 0;
  transition: transform .25s ease;
}
.nav-links > li.open > button .caret { transform: rotate(180deg); }

.nav-dropdown {
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 320px;
  background: var(--white);
  border-top: 3px solid var(--red);
  box-shadow: 0 24px 48px rgba(0,0,0,.18);
  padding: 14px 0;
  opacity: 0; pointer-events: none;
  transition: opacity .22s ease, transform .22s ease;
}
.nav-dropdown::before {
  /* Invisible bridge so the dropdown stays open when the cursor moves
     from the button down into the menu. */
  content: '';
  position: absolute;
  top: -12px; left: 0; right: 0;
  height: 12px;
}
.nav-links > li:hover .nav-dropdown,
.nav-links > li.open .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown a {
  display: block;
  padding: 12px 26px;
  font-size: 13px; font-weight: 400;
  color: var(--black);
  letter-spacing: 0; text-transform: none;
  border-left: 2px solid transparent;
  transition: background .18s ease, border-color .18s ease, color .18s ease;
}
.nav-dropdown a:hover {
  background: var(--grey);
  border-left-color: var(--red);
  color: var(--red);
}
.nav-dropdown a .dd-num {
  display: inline-block;
  font-size: 10px; font-weight: 500;
  letter-spacing: .2em; color: var(--red);
  margin-right: 12px; min-width: 26px;
}

.nav-cta-wrap { display: inline-flex; }
.nav-cta {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font); font-size: 11px; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  padding: 11px 22px;
  background: var(--red); color: var(--white);
  border: 1.5px solid var(--red);
  margin-left: 14px;
  transition: background .25s var(--ease);
}
.nav-cta:hover { background: var(--red-dk); border-color: var(--red-dk); }
.nav-cta svg { width: 13px; height: 13px; }

/* Mobile hamburger */
.nav-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  width: 32px; height: 32px;
  position: relative;
}
.nav-toggle span {
  position: absolute; left: 4px; right: 4px;
  height: 2px; background: var(--white);
  transition: transform .3s var(--ease), opacity .2s ease;
}
.nav-toggle span:nth-child(1) { top: 10px; }
.nav-toggle span:nth-child(2) { top: 15px; }
.nav-toggle span:nth-child(3) { top: 20px; }
.nav-toggle.open span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

@media (max-width: 940px) {
  /* On mobile, drop backdrop-filter on .nav — it creates a containing block
     that traps the position:fixed mobile menu inside the 72px nav height. */
  .nav {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(17,17,17,.98);
  }
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
    background: var(--black);
    flex-direction: column;
    align-items: stretch;
    padding: 24px 24px 100px;
    overflow-y: auto;
    gap: 0;
    transform: translateX(100%);
    transition: transform .35s var(--ease);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links > li > a,
  .nav-links > li > button {
    width: 100%;
    padding: 18px 8px;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255,255,255,.07);
    font-size: 13px;
  }
  .nav-dropdown,
  .nav-links > li:hover .nav-dropdown,
  .nav-links > li.open .nav-dropdown {
    position: static;
    transform: none; opacity: 1; pointer-events: auto;
    background: rgba(255,255,255,.04);
    box-shadow: none;
    border-top: none;
    padding: 4px 0;
    min-width: 0;
    max-height: 0; overflow: hidden;
    transition: max-height .3s var(--ease);
  }
  .nav-dropdown::before { display: none; }
  .nav-links > li.open .nav-dropdown { max-height: 600px; }
  .nav-dropdown a {
    color: rgba(255,255,255,.7);
    padding: 12px 8px 12px 24px;
  }
  .nav-dropdown a:hover { background: rgba(255,255,255,.06); color: var(--white); }
  .nav-cta-wrap { margin: 24px 0 0; align-self: flex-start; }
  .nav-cta { margin: 0; }
}

/* ── HERO (HOME) ─────────────────────────────────────── */
.hero {
  position: relative; overflow: hidden;
  padding: 110px 0 130px;
  background: var(--black);
}
.hero-bg-video,
.hero-bg-image {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.45) 0%, rgba(0,0,0,.55) 60%, rgba(0,0,0,.78) 100%);
  z-index: 1;
  pointer-events: none;
}

/* Video-only hero (no text overlay): show the footage clean,
   with only a faint vignette to give the trust strip below a soft edge. */
.hero.hero--video {
  padding: 0;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 82vh;
  min-height: 0;
  line-height: 0; /* kill the inline descender gap under the video */
}
.hero.hero--video .hero-bg-video,
.hero.hero--video .hero-bg-image { display: block; }
.hero.hero--video::before {
  background:
    linear-gradient(180deg, rgba(0,0,0,.10) 0%, rgba(0,0,0,0) 35%, rgba(0,0,0,0) 75%, rgba(0,0,0,.20) 100%);
}
@media (max-width: 640px) {
  .hero.hero--video {
    aspect-ratio: 4 / 5;
    max-height: 80vh;
  }
}

/* ── INTRO SECTION (HOME) ─────────────────────── */
.intro-section { padding: 96px 0; }
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 880px) {
  .intro-grid { grid-template-columns: 1fr; gap: 36px; }
}
.intro-lead {
  font-size: 18px; font-weight: 300; line-height: 1.78;
  color: var(--mid); margin-bottom: 32px;
}
.intro-lead strong { color: var(--black); font-weight: 500; }
.intro-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-inner {
  position: relative; z-index: 2;
  max-width: 820px;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 500; letter-spacing: .2em;
  text-transform: uppercase; color: rgba(255,255,255,.65);
  margin-bottom: 30px;
  padding: 7px 14px;
  background: rgba(176,21,5,.18);
  border: 1px solid rgba(255,255,255,.12);
}
.hero-eyebrow::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--red); flex-shrink: 0;
}
.hero h1 { color: var(--white); margin-bottom: 28px; }
.hero h1 .accent { color: rgba(255,255,255,.55); }
.hero-sub {
  font-size: 17px; font-weight: 300; line-height: 1.78;
  color: rgba(255,255,255,.82); max-width: 580px; margin-bottom: 42px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

/* ── PAGE HEADER (interior pages) ─────────────── */
.page-header {
  background: var(--black);
  position: relative; overflow: hidden;
  padding: 88px 0 96px;
}
.page-header::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 85% 20%, rgba(176,21,5,.18) 0%, transparent 55%),
    radial-gradient(circle at 5% 95%, rgba(176,21,5,.10) 0%, transparent 50%);
  pointer-events: none;
}
.page-header-inner { position: relative; z-index: 1; max-width: 820px; }
.page-header .label { color: rgba(255,255,255,.5); }
.page-header .label::before { background: rgba(255,255,255,.5); }
.page-header h1 {
  color: var(--white);
  font-size: clamp(38px, 5vw, 62px);
  margin-bottom: 22px;
}
.page-header h1 .accent { color: rgba(255,255,255,.5); }
.page-header p {
  font-size: 16px; font-weight: 300; line-height: 1.78;
  color: rgba(255,255,255,.7); max-width: 620px;
}

/* ── TRUST STRIP ─────────────────────────────────────── */
.trust-strip {
  background: var(--black);
  border-bottom: 1px solid rgba(255,255,255,.07);
  padding: 0 40px;
}
.trust-strip-inner {
  max-width: 1180px; margin: 0 auto;
  display: flex; flex-wrap: wrap;
}
.trust-item {
  padding: 22px 32px 22px 0;
  font-size: 12px; font-weight: 600; letter-spacing: .18em;
  text-transform: uppercase; color: var(--white);
  display: flex; align-items: center; gap: 11px;
  border-right: 1px solid rgba(255,255,255,.12);
  margin-right: 32px;
}
.trust-item:last-child { border-right: none; margin-right: 0; }
.trust-item::before {
  content: ''; width: 7px; height: 7px;
  background: var(--red); border-radius: 50%; flex-shrink: 0;
}

/* ── SECTIONS ─────────────────────────────────────── */
.section { padding: 96px 0; }
.section--grey { background: var(--grey); }
.section--dark { background: var(--black); color: var(--white); }
.section--dark .body-text { color: rgba(255,255,255,.65); }
.section-head {
  max-width: 720px; margin-bottom: 56px;
}
.section-head h2 { margin-bottom: 18px; }

/* ── SERVICES GRID (HOME) ─────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px; background: var(--border);
  border: 1px solid var(--border);
}
.service-card {
  background: var(--white);
  padding: 0 0 40px;
  transition: background .25s, transform .25s var(--ease);
  position: relative;
  display: flex; flex-direction: column;
  min-height: 280px;
  overflow: hidden;
}
.service-card:hover { background: #fafafa; }
.service-card-img {
  width: 100%; aspect-ratio: 3 / 2;
  overflow: hidden; margin-bottom: 28px;
  background: var(--black);
}
.service-card-img img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .5s var(--ease);
}
.service-card:hover .service-card-img img { transform: scale(1.04); }
.service-card h3, .service-card p, .service-card .service-link { margin-left: 34px; margin-right: 34px; }
.service-card h3 {
  font-size: 19px; font-weight: 500; letter-spacing: -.01em;
  margin-bottom: 14px;
}
.service-card p {
  font-size: 14px; font-weight: 300; line-height: 1.74; color: var(--mid);
  margin-bottom: 22px; flex-grow: 1;
}
.service-card .service-link {
  font-size: 11px; font-weight: 500; letter-spacing: .18em;
  text-transform: uppercase; color: var(--black);
  display: inline-flex; align-items: center; gap: 8px;
  transition: color .2s ease, gap .2s ease;
}
.service-card .service-link svg { width: 12px; height: 12px; transition: transform .22s ease; }
.service-card:hover .service-link { color: var(--red); gap: 12px; }
.service-card:hover .service-link svg { transform: translateX(3px); }

/* ── VALUES (ABOUT) ─────────────────────────────── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border);
}
@media (max-width: 720px) { .values-grid { grid-template-columns: 1fr; } }
.value-card {
  background: var(--white);
  padding: 44px 38px;
}
.value-num {
  font-size: 36px; font-weight: 300; color: var(--red);
  line-height: 1; margin-bottom: 22px;
  font-feature-settings: "tnum";
}
.value-card h3 { font-size: 22px; margin-bottom: 14px; }
.value-card p { font-size: 14px; font-weight: 300; line-height: 1.78; color: var(--mid); }

/* ── ABOUT INTRO ───────────────────────────────── */
.about-intro {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center;
}
@media (max-width: 880px) { .about-intro { grid-template-columns: 1fr; gap: 40px; } }
.about-intro-img {
  aspect-ratio: 4/5;
  background: var(--black);
  overflow: hidden; position: relative;
}
.about-intro-img img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.about-intro-img:not(:has(img))::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(176,21,5,.0) 0%, rgba(176,21,5,.18) 100%),
    repeating-linear-gradient(45deg, rgba(255,255,255,.02) 0 2px, transparent 2px 8px);
}
.about-intro-img:has(img)::after {
  content: none;
}
.about-intro-img-label {
  position: absolute; bottom: 24px; left: 24px;
  z-index: 2;
  color: var(--white);
  font-size: 11px; font-weight: 500; letter-spacing: .2em;
  text-transform: uppercase;
}
.about-intro-img-label::before {
  content: ''; display: inline-block;
  width: 18px; height: 1px; background: var(--red);
  vertical-align: middle; margin-right: 10px;
}
.about-intro h2 { margin-bottom: 22px; }
.about-intro p {
  font-size: 15px; font-weight: 300; line-height: 1.85; color: var(--mid);
  margin-bottom: 18px;
}
.about-intro p strong { color: var(--black); font-weight: 500; }

/* ── PHILOSOPHY (ABOUT) ───────────────────────── */
.philosophy {
  background: var(--black);
  color: var(--white);
  padding: 96px 0;
  position: relative;
}
.philosophy::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 70% 50%, rgba(176,21,5,.12) 0%, transparent 60%);
  pointer-events: none;
}
.philosophy-inner {
  position: relative; z-index: 1;
  max-width: 820px;
}
.philosophy h2 { color: var(--white); margin-bottom: 28px; }
.philosophy p {
  font-size: 16px; font-weight: 300; line-height: 1.85;
  color: rgba(255,255,255,.72); margin-bottom: 22px;
}
.philosophy blockquote {
  border-left: 3px solid var(--red);
  padding: 6px 0 6px 26px;
  margin: 30px 0;
  font-size: 20px; font-weight: 300; line-height: 1.55;
  color: var(--white); font-style: italic;
  letter-spacing: -.005em;
}

/* ── TEAM ─────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 36px;
}
.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  transition: border-color .25s ease, transform .25s var(--ease);
}
.team-card:hover { border-color: var(--red); transform: translateY(-4px); }
.team-img {
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, #2a2a2a 0%, #161616 100%);
  position: relative; overflow: hidden;
}
.team-img img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  filter: grayscale(0.05);
  transition: transform .6s var(--ease);
}
.team-card:hover .team-img img { transform: scale(1.03); }
/* Diagonal stripe overlay only shows on placeholder cards (no <img>) */
.team-img:not(:has(img))::after {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(0deg, transparent 0 6px, rgba(255,255,255,.015) 6px 7px);
}
.team-img .team-initials {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 64px; font-weight: 300; letter-spacing: -.04em;
  color: rgba(255,255,255,.18);
}
.team-info { padding: 26px 26px 30px; }
.team-name { font-size: 19px; font-weight: 500; margin-bottom: 4px; letter-spacing: -.01em; }
.team-role {
  font-size: 10px; font-weight: 500; letter-spacing: .2em;
  text-transform: uppercase; color: var(--red);
  margin-bottom: 18px;
  display: flex; align-items: center; gap: 10px;
}
.team-role::before {
  content: ''; width: 18px; height: 1px; background: var(--red);
}
.team-bio { font-size: 13px; font-weight: 300; line-height: 1.76; color: var(--mid); }

/* ── LEADERSHIP (principals) ────────────────────── */
.leadership-list { display: flex; flex-direction: column; gap: 1px; background: var(--border); border: 1px solid var(--border); }
.leader-row {
  display: grid; grid-template-columns: 300px 1fr; gap: 0;
  background: var(--white);
}
@media (max-width: 760px) { .leader-row { grid-template-columns: 1fr; } }
.leader-img {
  position: relative;
  overflow: hidden;
  min-height: 340px;
  background: linear-gradient(135deg, #2a2a2a 0%, #161616 100%);
}
@media (max-width: 760px) { .leader-img { aspect-ratio: 16/10; min-height: 0; } }
.leader-img img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center; display: block;
}
.leader-info { padding: 40px 40px 42px; }
@media (max-width: 760px) { .leader-info { padding: 30px 26px 34px; } }
.leader-name { font-size: 24px; font-weight: 500; letter-spacing: -.01em; margin-bottom: 6px; }
.leader-role {
  font-size: 11px; font-weight: 500; letter-spacing: .2em;
  text-transform: uppercase; color: var(--red);
  margin-bottom: 22px;
  display: flex; align-items: center; gap: 10px;
}
.leader-role::before { content: ''; width: 18px; height: 1px; background: var(--red); }
.leader-bio { font-size: 14px; font-weight: 300; line-height: 1.78; color: var(--mid); margin-bottom: 16px; }
.leader-bio:last-child { margin-bottom: 0; }
.leader-points {
  list-style: none; margin: 4px 0 0; padding: 0;
  display: flex; flex-direction: column; gap: 12px;
}
.leader-points li {
  position: relative; padding-left: 22px;
  font-size: 14px; font-weight: 300; line-height: 1.7; color: var(--mid);
}
.leader-points li::before {
  content: ''; position: absolute; left: 0; top: 9px;
  width: 7px; height: 7px; background: var(--red); border-radius: 50%;
}
.leadership-closing {
  margin-top: 36px; font-size: 16px; font-weight: 300; line-height: 1.8;
  color: var(--black); max-width: 860px;
}

/* ── SERVICE DETAIL PAGE ────────────────────────── */
.service-detail {
  padding: 96px 0;
}
.service-detail-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: start;
}
@media (max-width: 880px) {
  .service-detail-inner { grid-template-columns: 1fr; gap: 48px; }
}
.service-visual {
  aspect-ratio: 5/6;
  position: relative; overflow: hidden;
  background: var(--black);
  border: 1px solid var(--border);
}
.service-visual::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, transparent 0%, rgba(0,0,0,.5) 100%),
    repeating-linear-gradient(0deg, transparent 0 12px, rgba(255,255,255,.025) 12px 13px);
}
.service-visual-label {
  position: absolute; bottom: 28px; left: 28px;
  z-index: 1;
  color: var(--white);
  font-size: 11px; font-weight: 500; letter-spacing: .2em;
  text-transform: uppercase;
}
.service-visual-num {
  position: absolute; top: 28px; right: 28px;
  z-index: 1;
  font-size: 80px; font-weight: 300; line-height: 1;
  color: rgba(255,255,255,.12);
  letter-spacing: -.04em;
}
.service-detail h1 { font-size: clamp(34px, 4.5vw, 52px); margin-bottom: 24px; }
.service-detail .lead {
  font-size: 16px; font-weight: 300; line-height: 1.85;
  color: var(--mid); margin-bottom: 36px;
}
.feature-list { list-style: none; margin-bottom: 36px; }
.feature-list li {
  display: flex; gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px; font-weight: 400; line-height: 1.7;
  color: var(--black);
}
.feature-list li:last-child { border-bottom: none; }
.feature-list li::before {
  content: '';
  flex-shrink: 0; width: 22px; height: 22px;
  background: var(--red);
  display: inline-block;
  position: relative;
  margin-top: 1px;
}
.feature-list li::after {
  content: '';
  position: absolute;
  width: 10px; height: 5px;
  border-left: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  transform: rotate(-45deg);
  margin-left: 6px; margin-top: 7px;
}
.feature-list li {
  position: relative;
}
.feature-list li > span {
  flex: 1;
}

/* Other services strip */
.other-services {
  background: var(--grey);
  padding: 80px 0;
}
.other-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1px; background: var(--border);
  border: 1px solid var(--border);
  margin-top: 40px;
}
.other-service-link {
  background: var(--white);
  padding: 26px 24px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px;
  transition: background .22s, color .22s;
}
.other-service-link:hover { background: var(--black); color: var(--white); }
.other-service-link:hover .osl-arrow { color: var(--white); }
.osl-text { font-size: 14px; font-weight: 500; letter-spacing: -.005em; }
.osl-arrow { font-size: 18px; color: var(--red); transition: transform .22s ease, color .22s; }
.other-service-link:hover .osl-arrow { transform: translateX(4px); }

/* ── CONTACT FORM ─────────────────────────────────── */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 72px; align-items: start;
}
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; gap: 48px; } }
.contact-info h2 { margin-bottom: 22px; }
.contact-info p {
  font-size: 15px; font-weight: 300; line-height: 1.78;
  color: var(--mid); margin-bottom: 36px;
}
.contact-block { margin-bottom: 30px; }
.contact-block-label {
  font-size: 10px; font-weight: 500; letter-spacing: .22em;
  text-transform: uppercase; color: var(--red);
  margin-bottom: 8px;
  display: flex; align-items: center; gap: 10px;
}
.contact-block-label::before {
  content: ''; width: 18px; height: 1px; background: var(--red);
}
.contact-block-value {
  font-size: 22px; font-weight: 500; letter-spacing: -.01em;
  color: var(--black); display: block;
  transition: color .2s;
}
a.contact-block-value:hover { color: var(--red); }
.contact-areas {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-top: 8px;
}
.contact-area-pill {
  font-size: 11px; font-weight: 500; letter-spacing: .14em;
  text-transform: uppercase;
  padding: 8px 14px;
  border: 1px solid var(--border);
  color: var(--black);
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 40px 36px 36px;
  position: relative;
}
.contact-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 100%; height: 4px; background: var(--red);
}
.form-title {
  font-size: 22px; font-weight: 500; letter-spacing: -.01em;
  margin-bottom: 8px; color: var(--black);
}
.form-sub {
  font-size: 13px; font-weight: 300; color: var(--mid);
  margin-bottom: 26px; line-height: 1.65;
}
.form-row { margin-bottom: 16px; }
.form-row label {
  display: block;
  font-size: 10px; font-weight: 500; letter-spacing: .14em;
  text-transform: uppercase; color: var(--mid);
  margin-bottom: 8px;
}
.form-row input, .form-row select, .form-row textarea {
  width: 100%; padding: 13px 15px;
  font-family: var(--font); font-size: 14px; font-weight: 400;
  color: var(--black); background: var(--grey);
  border: 1px solid transparent;
  transition: all .2s ease;
  resize: vertical;
}
.form-row textarea { min-height: 110px; }
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  outline: none; border-color: var(--red);
  background: var(--white);
}
.form-row.invalid input,
.form-row.invalid select,
.form-row.invalid textarea {
  border-color: var(--red);
}
.form-error { font-size: 11px; color: var(--red); margin-top: 4px; display: none; }
.form-row.invalid .form-error { display: block; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 540px) { .form-row-2 { grid-template-columns: 1fr; } }
.form-footnote {
  font-size: 11px; font-weight: 300; color: var(--mid);
  text-align: center; margin-top: 16px; line-height: 1.6;
}
.form-success {
  display: none; text-align: center; padding: 24px 0;
}
.form-success.active { display: block; }
.form-success .check {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--green); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
}
.form-success .check svg { width: 28px; height: 28px; }
.form-success h3 { font-size: 22px; font-weight: 500; margin-bottom: 8px; }
.form-success p {
  font-size: 14px; font-weight: 300; color: var(--mid);
  line-height: 1.7; max-width: 320px; margin: 0 auto;
}

/* ── TESTIMONIALS ─────────────────────────────── */
.testimonials-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px; background: var(--border);
  border: 1px solid var(--border);
  margin-top: 52px;
}
.testimonial { padding: 40px 34px; background: var(--white); }
.t-quote {
  font-size: 44px; font-weight: 300; color: var(--red);
  line-height: 1; margin-bottom: 16px;
}
.testimonial p {
  font-size: 14px; font-weight: 300; line-height: 1.78;
  color: var(--mid); margin-bottom: 22px;
}
.t-author {
  font-size: 10px; font-weight: 500; letter-spacing: .2em;
  text-transform: uppercase; color: var(--black);
  display: flex; align-items: center; gap: 10px;
}
.t-author::before { content: ''; width: 20px; height: 1px; background: var(--red); }

/* ── CTA ─────────────────────────────────────── */
.cta-section {
  background: var(--red); padding: 96px 0;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: none;
}
/* Remove the small circle element before the CTA eyebrow label */
.cta-section .label::before { content: none; }
.cta-section .label { gap: 0; }
.cta-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
@media (max-width: 720px) { .cta-inner { grid-template-columns: 1fr; gap: 36px; } }
.cta-section h2 { color: var(--white); margin-bottom: 16px; }
.cta-section p {
  font-size: 15px; font-weight: 300; line-height: 1.78;
  color: var(--white);
}
.cta-right { display: flex; flex-direction: column; gap: 20px; }
.cta-phone {
  display: grid; grid-template-columns: auto auto; align-items: baseline;
  width: max-content; max-width: 100%; align-self: flex-start;
  color: var(--white); line-height: 1.08; transition: opacity .2s;
  font-size: clamp(28px, 4vw, 46px);
}
.cta-phone:hover { opacity: .8; }
.cta-phone .cta-prefix,
.cta-phone .cta-mp { font-weight: 400; letter-spacing: .04em; }
.cta-phone .cta-mp b { font-weight: 700; }
.cta-phone .cta-prefix { grid-column: 1; grid-row: 1; }
.cta-phone .cta-mp { grid-column: 2; grid-row: 1; }
.cta-phone .cta-local {
  grid-column: 2; grid-row: 2; display: flex; justify-content: space-between;
  font-weight: 400; color: rgba(255,255,255,.85); margin-top: 6px;
  font-size: 0.82em;
}
.cta-phone .cta-local span { display: inline-block; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.cta-hours {
  font-size: 11px; font-weight: 300; letter-spacing: .16em;
  text-transform: uppercase; color: rgba(255,255,255,.55);
}

/* ── COMPANY HIGHLIGHTS ─────────────────────────── */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border);
  margin-top: 52px;
}
@media (max-width: 1000px) { .highlights-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 680px) { .highlights-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .highlights-grid { grid-template-columns: 1fr; } }
.highlight-card {
  background: var(--white);
  padding: 48px 28px 40px;
  min-height: 200px;
  display: flex; flex-direction: column; justify-content: flex-end; gap: 10px;
  transition: background .25s;
}
.highlight-card:hover { background: #fafafa; }
.highlight-value {
  font-size: clamp(30px, 3.4vw, 42px); font-weight: 600;
  letter-spacing: -.02em; color: var(--red); line-height: 1;
}
.highlight-label {
  font-size: 11px; font-weight: 500; letter-spacing: .14em;
  text-transform: uppercase; color: var(--black);
}
.highlights-photo {
  margin-top: 28px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--black);
}
/* Full-width image band */
.image-band { display: block; line-height: 0; background: var(--black); }
.image-band img {
  width: 100%; height: clamp(320px, 44vw, 540px);
  object-fit: cover; object-position: center; display: block;
}
.highlights-photo img {
  display: block; width: 100%; height: 440px;
  object-fit: cover; object-position: center bottom;
}
@media (max-width: 880px) { .highlights-photo img { height: 320px; } }
@media (max-width: 520px) { .highlights-photo img { height: 220px; } }

/* ── FOOTER ─────────────────────────────────────── */
footer {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 64px 0 36px;
  color: var(--white);
}
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 52px;
}
@media (max-width: 880px) { .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; } }
@media (max-width: 540px) { .footer-top { grid-template-columns: 1fr; gap: 32px; } }
.f-logo {
  font-size: 15px; font-weight: 500; letter-spacing: .04em;
  color: var(--white); display: flex; align-items: center; gap: 10px;
  margin-bottom: 18px;
}
.f-logo-dot { width: 8px; height: 8px; background: var(--red); border-radius: 50%; }
.f-desc {
  font-size: 13px; font-weight: 300; line-height: 1.74;
  color: rgba(255,255,255,.42); max-width: 320px;
  margin-bottom: 20px;
}
.f-social { display: flex; gap: 10px; }
.f-social a {
  width: 34px; height: 34px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.55);
  transition: all .22s ease;
}
.f-social a:hover {
  background: var(--red); border-color: var(--red); color: var(--white);
}
.f-social svg { width: 15px; height: 15px; }
.f-col-title {
  font-size: 10px; font-weight: 500; letter-spacing: .22em;
  text-transform: uppercase; color: rgba(255,255,255,.45);
  margin-bottom: 18px;
}
.f-links { display: flex; flex-direction: column; gap: 11px; list-style: none; }
.f-links a {
  font-size: 13px; font-weight: 300; color: rgba(255,255,255,.55);
  transition: color .2s;
}
.f-links a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding-top: 26px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.f-copy, .f-cert {
  font-size: 11px; font-weight: 300; letter-spacing: .06em;
  color: rgba(255,255,255,.3);
}

/* ── MOBILE STICKY CALL ─────────────────────────── */
.mobile-call-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 998;
  background: var(--red);
  padding: 14px 20px;
  box-shadow: 0 -8px 24px rgba(0,0,0,.18);
}
.mobile-call-bar a {
  display: flex; align-items: center; justify-content: center;
  gap: 10px;
  font-size: 14px; font-weight: 500; letter-spacing: .08em;
  text-transform: uppercase; color: var(--white);
}
.mobile-call-bar svg { width: 18px; height: 18px; }
@media (max-width: 640px) {
  .mobile-call-bar { display: block; }
  body { padding-bottom: 60px; }
}

/* ── ANIMATIONS ─────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp .8s var(--ease) both; }
.fade-up.d1 { animation-delay: .1s; }
.fade-up.d2 { animation-delay: .2s; }
.fade-up.d3 { animation-delay: .3s; }
.fade-up.d4 { animation-delay: .4s; }
.fade-up.d5 { animation-delay: .5s; }

/* ── BRAND: "MOD" inside MODPROS gets bold + brand red ── */
.brand-mod {
  font-weight: 700;
  color: var(--red);
  /* `display: contents` keeps it from becoming a flex item when its parent
     is display:flex (like .label), so it sits seamlessly inside the word
     instead of getting flex gap on either side. */
  display: contents;
}
/* The full MODPROS wordmark. On a white/light background the whole word is
   red (with MOD bold). `display: contents` keeps it from breaking the word
   apart inside flex parents while still passing its color down to "PROS". */
.brand-name { display: contents; color: var(--red); }
.brand-name .brand-mod { color: var(--red); }

/* On dark backgrounds the whole MODPROS wordmark is red (MOD stays bold). */
footer .brand-name,
.page-header .brand-name,
.philosophy .brand-name,
.hero .brand-name,
.trust-strip .brand-name,
.section--dark .brand-name,
footer .brand-name .brand-mod,
.page-header .brand-name .brand-mod,
.philosophy .brand-name .brand-mod,
.hero .brand-name .brand-mod,
.trust-strip .brand-name .brand-mod,
.section--dark .brand-name .brand-mod { color: var(--red); }

/* When inside the red CTA section, the whole wordmark turns white
   (MOD stays bold) so it stays readable against the red background. */
.cta-section .brand-mod,
.cta-section .brand-name,
.cta-section .brand-name .brand-mod { color: var(--white); }
