@import url('https://fonts.googleapis.com/css2?family=Cabin:wght@400;500;600;700&family=Inter:wght@400;600;800;900&display=swap');

@font-face {
  font-family: "Trump Gothic West";
  src: url("/fonts/trump-gothic-west-bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --blue: #027bbb;
  --blue-2: #0087c7;
  --dark: #03354a;
  --lime: #e4fd8f;
  --green: #00a451;
  --red: #ff5363;
  --gold: #f7b42a;
  --ink: #212022;
  --muted: #707070;
  --line: #d7dde2;
  --soft: #f5f7f8;
  --white: #fff;
  --body: "Cabin", Arial, sans-serif;
  --copy: "Inter", Arial, sans-serif;
  --condensed: "Trump Gothic West", Impact, "Arial Narrow", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--muted);
  background: var(--white);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
img, iframe, video { max-width: 100%; }
iframe { border: 0; }
/* Mobile overflow safety net — never allow a sideways scroll on small screens. */
html, body { overflow-x: hidden; max-width: 100%; }
button, input, textarea, select { font: inherit; }
.container { width: min(1280px, calc(100% - 88px)); margin: 0 auto; }
.narrow { width: min(980px, calc(100% - 88px)); margin: 0 auto; }

.family-bar {
  height: 50px;
  background: var(--blue);
  color: var(--white);
  font-family: var(--copy);
  font-weight: 900;
  font-size: 13px;
  text-transform: uppercase;
}
.family-bar .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
}
.family-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.mini-mark {
  width: 23px;
  height: 20px;
  position: relative;
  display: inline-block;
}
.mini-mark::before,
.mini-mark::after {
  content: "";
  position: absolute;
  top: 1px;
  width: 6px;
  height: 19px;
  background: var(--white);
  transform: skew(-13deg);
}
.mini-mark::before { left: 2px; }
.mini-mark::after { left: 12px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,.08);
}
.main-nav {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--dark);
  min-width: 240px;
}

/* brand-logo image (added by brand_assets rollout) */
.brand-logo {
  height: 38px;
  width: auto;
  display: block;
  max-width: 320px;
}
@media (max-width: 768px) {
  .brand-logo {
    height: 30px;
    max-width: 220px;
  }
}
.brand-icon {
  position: relative;
  width: 42px;
  height: 43px;
  display: inline-block;
  overflow: hidden;
}
.brand-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--blue) 0 22%, transparent 22% 35%, var(--blue) 35% 56%, transparent 56% 70%, var(--blue) 70% 100%);
  clip-path: polygon(0 0, 100% 0, 76% 100%, 0 100%);
}
.brand-word {
  display: block;
  color: #414145;
  font-family: var(--copy);
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -.06em;
  line-height: .95;
  text-transform: uppercase;
}
.brand-sub {
  display: block;
  color: var(--blue);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .08em;
  line-height: 1;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 34px;
  flex: 1;
}
.nav-item {
  position: relative;
  color: var(--blue);
  font-family: var(--copy);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}
.nav-item > a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 31px 0;
}
.nav-item.has-panel > a::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}
.nav-item:hover > a,
.nav-item:focus-within > a { color: var(--dark); }
.mega-panel {
  position: absolute;
  top: 100%;
  left: -22px;
  width: 360px;
  padding: 24px;
  background: var(--white);
  box-shadow: 0 18px 45px rgba(0,0,0,.16);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
}
.nav-item:hover .mega-panel,
.nav-item:focus-within .mega-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.mega-panel a {
  display: block;
  color: var(--dark);
  border-bottom: 1px solid var(--line);
  padding: 10px 0;
  font-size: 13px;
}
.search-link {
  border-left: 1px solid var(--line);
  padding-left: 18px;
}
.phone-link a {
  color: var(--dark);
  white-space: nowrap;
}
.mobile-trigger {
  display: none;
  align-items: center;
  gap: 8px;
  border: 0;
  background: transparent;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  min-height: 44px;
  padding: 6px 4px;
  cursor: pointer;
}
.hamburger,
.hamburger::before,
.hamburger::after {
  content: "";
  display: block;
  width: 24px;
  height: 2px;
  background: var(--blue);
}
.hamburger { position: relative; }
.hamburger::before { transform: translateY(-7px); }
.hamburger::after { transform: translateY(5px); }

/* Off-canvas mobile drawer (card sliding in from the right). */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(86vw, 360px);
  max-width: 100%;
  height: 100%;
  z-index: 1200;
  background: var(--white);
  box-shadow: -18px 0 50px rgba(3, 53, 74, .28);
  padding: 76px 0 32px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transform: translateX(100%);
  transition: transform .28s ease;
}
.mobile-menu.is-open {
  display: block;
  transform: translateX(0);
}
.mobile-menu a {
  display: block;
  padding: 16px 28px;
  color: var(--blue);
  font-family: var(--copy);
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
  border-bottom: 1px solid var(--line);
  min-height: 44px;
}
.mobile-menu a:active { background: var(--soft); }
.mobile-menu .mobile-phone {
  margin: 0 28px 18px;
  padding: 14px 18px;
  border: 1px solid var(--blue);
  border-radius: 999px;
  background: var(--blue);
  color: var(--white);
  text-align: center;
  justify-content: center;
}
/* Visible close (X) button, top-right of the drawer. */
.mobile-menu-close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  background: var(--soft);
  color: var(--dark);
  font-size: 30px;
  line-height: 1;
  font-weight: 700;
  cursor: pointer;
}
.mobile-menu-close:active { background: var(--line); }
/* Dim overlay behind the drawer. */
.mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: rgba(3, 53, 74, .5);
  border: 0;
}
.mobile-overlay[hidden] { display: none; }
/* Body scroll-lock when the drawer is open. */
body.menu-open { overflow: hidden; }

.home-hero {
  background: linear-gradient(90deg, var(--dark) 29%, var(--blue) 100%);
  color: var(--white);
  min-height: 675px;
  overflow: hidden;
  position: relative;
}
.home-hero .container {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  align-items: center;
  gap: 58px;
  min-height: 675px;
  padding: 56px 0 76px;
}
.hero-copy h1 {
  margin: 0 0 28px;
  max-width: 555px;
  color: var(--white);
  font-family: var(--copy);
  font-size: 56px;
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -2.2px;
}
.hero-copy h1 strong {
  color: var(--lime);
  font-weight: 900;
}
.hero-copy h1::after {
  content: "";
  display: block;
  width: 175px;
  height: 1px;
  background: var(--lime);
  margin-top: 26px;
}
.hero-copy p {
  max-width: 500px;
  color: #eef9ff;
  font-family: var(--copy);
  font-size: 16px;
  line-height: 1.65;
  margin: 0 0 28px;
}
.hero-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 205px;
  min-height: 48px;
  padding: 0 31px;
  border-radius: 999px;
  border: 1px solid var(--dark);
  background: var(--dark);
  color: var(--white);
  font-family: var(--copy);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .02em;
  text-transform: uppercase;
  transition: all .25s ease;
}
.btn:hover,
.btn:focus { background: var(--lime); color: var(--dark); text-decoration: underline; }
.btn.lime { background: var(--lime); color: var(--dark); border-color: var(--lime); }
.btn.lime:hover { background: var(--dark); color: var(--lime); }
.btn.outline { background: transparent; color: var(--white); border-color: var(--white); }
.btn.outline:hover { background: var(--white); color: var(--dark); }
.btn.light-fill {
  background: var(--white);
  color: var(--blue);
  border-color: var(--white);
}
.btn.light-fill:hover,
.btn.light-fill:focus {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}
.hero-photo {
  position: relative;
  min-height: 435px;
}
.hero-photo img {
  width: min(100%, 525px);
  height: 435px;
  object-fit: cover;
  border-radius: 9px;
  margin-left: auto;
  box-shadow: 0 24px 80px rgba(0,0,0,.22);
}
.hero-photo::after {
  content: "";
  position: absolute;
  right: -28px;
  bottom: -34px;
  width: 270px;
  height: 170px;
  border-top: 15px solid var(--lime);
  border-left: 15px solid var(--lime);
  border-radius: 190px 0 0 0;
}

.news-lift {
  background: linear-gradient(90deg, var(--lime) 72%, var(--dark) 72%);
  padding: 0 0 80px;
  position: relative;
}
.lift-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  transform: translateY(-80px);
  margin-bottom: -20px;
}
.lift-card {
  display: grid;
  grid-template-columns: 40% 1fr;
  min-height: 250px;
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 40px rgba(0,0,0,.13);
}
.lift-card img { width: 100%; height: 100%; object-fit: cover; }
.lift-copy { padding: 38px 40px; }
.lift-copy h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-family: var(--copy);
  font-size: 27px;
  font-weight: 900;
  line-height: 1.12;
}
.lift-copy h3 span {
  background-image: linear-gradient(var(--lime), var(--lime));
  background-size: 100% 8px;
  background-position: left bottom;
  background-repeat: no-repeat;
}
.lift-copy p { margin: 0 0 12px; color: var(--muted); }
.text-link {
  color: var(--blue);
  border-bottom: 1px solid var(--blue);
  font-family: var(--copy);
  font-weight: 900;
}
.about-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 60px;
  align-items: stretch;
}
.about-copy { padding: 30px 0 0; max-width: 620px; }
.eyebrow {
  margin: 0 0 14px;
  color: var(--ink);
  font-family: var(--copy);
  font-size: 18px;
  font-weight: 600;
}
.section-heading {
  margin: 0 0 26px;
  padding-bottom: 24px;
  color: var(--ink);
  border-bottom: 2px solid var(--ink);
  font-family: var(--copy);
  font-size: 46px;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -1.35px;
}
.rock-panel {
  min-height: 410px;
  background: var(--dark);
  background-size: cover;
  background-position: center;
  border-radius: 0;
}
.home-services {
  background: var(--dark);
  padding: 0 0 90px;
}
.service-shell {
  background: var(--white);
  padding: 92px 58px 70px;
  box-shadow: 0 4px 40px rgba(0,0,0,.13);
}
.service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.service-card img {
  width: 100%;
  height: 145px;
  object-fit: cover;
  border-radius: 7px;
  box-shadow: 0 8px 18px rgba(0,0,0,.16);
}
.service-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.service-card h3 {
  margin: 24px 0 18px;
  padding-bottom: 18px;
  border-bottom: 2px solid var(--dark);
  color: var(--dark);
  font-family: var(--copy);
  font-size: 28px;
  font-weight: 900;
  line-height: 1.1;
}
.service-card p { min-height: 126px; margin: 0 0 26px; }
.service-card .btn {
  margin-top: auto;
  align-self: flex-start;
}
.centerline { text-align: center; margin-top: 52px; }
.centerline h2 {
  margin: 0 0 8px;
  color: var(--dark);
  font-family: var(--copy);
  font-size: 26px;
  font-weight: 900;
}
.numbers {
  background: var(--dark);
  color: var(--white);
  padding: 86px 0 105px;
  text-align: center;
}
.numbers h2 {
  margin: 0 0 75px;
  font-family: var(--copy);
  font-size: 26px;
  font-weight: 900;
  text-transform: uppercase;
}
.number-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px;
}
.metric strong {
  display: block;
  color: var(--lime);
  font-family: var(--condensed);
  font-size: 88px;
  line-height: .85;
}
.metric span {
  display: block;
  max-width: 230px;
  margin: 14px auto 0;
  color: var(--white);
  font-family: var(--copy);
  font-weight: 900;
  line-height: 1.2;
}
.career-band {
  padding: 90px 0;
  background: var(--white);
}
.career-band .container {
  display: grid;
  grid-template-columns: .85fr 1fr;
  gap: 70px;
  align-items: center;
}
.career-band img {
  width: 100%;
  height: 390px;
  object-fit: cover;
  border-radius: 8px;
}

.interior-hero {
  min-height: 650px;
  position: relative;
  display: flex;
  align-items: center;
  color: var(--white);
  background: var(--dark);
  overflow: hidden;
}
.interior-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.55)), var(--hero-image);
  background-size: cover;
  background-position: center;
  filter: saturate(.9);
}
.interior-hero .container { position: relative; z-index: 1; }
.breadcrumb {
  margin-bottom: 130px;
  color: #bcecff;
  font-family: var(--copy);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.breadcrumb span { color: var(--white); }
.interior-title-box {
  max-width: 820px;
  padding: 52px 48px 48px;
  border-left: 1px solid rgba(255,255,255,.5);
  border-bottom: 1px solid rgba(255,255,255,.5);
}
.interior-title-box h1 {
  margin: 0 0 24px;
  color: var(--white);
  font-family: var(--condensed);
  font-size: 120px;
  font-weight: 700;
  line-height: .9;
}
.interior-title-box h1::after {
  content: "";
  display: block;
  width: 140px;
  height: 4px;
  margin-top: 20px;
  background: var(--blue);
}
.interior-title-box p {
  margin: 0;
  max-width: 720px;
  color: var(--white);
  font-family: var(--copy);
  font-size: 34px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -1.2px;
}
.category-band {
  background: #e7f6ff;
  background-image: var(--category-image);
  background-size: cover;
  background-position: center;
  padding: 86px 0 112px;
}
.section-title {
  margin: 0 0 55px;
  padding-bottom: 10px;
  color: var(--muted);
  font-family: var(--condensed);
  font-size: 42px;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  position: relative;
}
.section-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 94px;
  height: 4px;
  background: var(--blue);
  transform: translateX(-50%);
}
.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.category-card {
  min-height: 350px;
  padding: 58px 42px;
  background: var(--white);
  text-align: center;
  box-shadow: 0 4px 14px rgba(0,0,0,.06);
  transition: transform .25s ease, box-shadow .25s ease;
}
.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,.14);
}
.category-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 34px;
  border: 6px solid currentColor;
  border-radius: 20px;
  position: relative;
}
.category-icon::after {
  content: "";
  position: absolute;
  left: 18px;
  top: 15px;
  width: 24px;
  height: 36px;
  border-left: 5px solid currentColor;
  border-bottom: 5px solid currentColor;
  transform: rotate(-45deg);
}
.category-card:nth-child(1) { color: var(--blue); }
.category-card:nth-child(2) { color: var(--red); }
.category-card:nth-child(3) { color: var(--green); }
.category-card h3 {
  margin: 0 0 18px;
  font-family: var(--condensed);
  font-size: 36px;
  line-height: 1;
  text-transform: uppercase;
}
.category-card p {
  margin: 0;
  color: var(--muted);
  font-family: var(--copy);
  font-size: 18px;
  font-weight: 600;
}
.listing-section {
  background: var(--white);
  padding: 90px 0 115px;
}
.filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 70px;
  margin: 0 0 58px;
  padding: 0 28px;
  border: 1px solid var(--line);
  background: #f8fafb;
  box-shadow: 0 1px 5px rgba(0,0,0,.08);
}
.filter-left,
.filter-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.filter-label {
  color: var(--blue);
  font-family: var(--copy);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}
.filter-button {
  border: 0;
  border-left: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  padding: 22px 26px;
  cursor: pointer;
  font-family: var(--copy);
  font-weight: 700;
}
.filter-button.is-active,
.filter-button:hover { color: var(--blue); }
.filter-scope { color: var(--blue); }
.filter-repair { color: var(--red); }
.filter-products { color: var(--gold); }
.filter-planning { color: var(--green); }
.filter-button.filter-scope.is-active,
.filter-button.filter-scope:hover { color: var(--blue); }
.filter-button.filter-repair.is-active,
.filter-button.filter-repair:hover { color: var(--red); }
.filter-button.filter-products.is-active,
.filter-button.filter-products:hover { color: var(--gold); }
.filter-button.filter-planning.is-active,
.filter-button.filter-planning:hover { color: var(--green); }
.legend {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin: -34px 0 38px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.legend span::before {
  content: "";
  display: inline-block;
  width: 36px;
  height: 5px;
  margin-right: 8px;
  vertical-align: middle;
  background: currentColor;
}
.legend-scope { color: var(--blue); }
.legend-repair { color: var(--red); }
.legend-products { color: var(--gold); }
.legend-planning { color: var(--green); }
.listing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.listing-card {
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,.13);
  transition: transform .25s ease, box-shadow .25s ease;
}
.listing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 32px rgba(0,0,0,.16);
}
.listing-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}
.listing-copy { padding: 35px 38px 42px; }
.kicker {
  display: block;
  margin: 0 0 22px;
  padding-bottom: 10px;
  border-bottom: 4px solid var(--blue);
  color: var(--muted);
  font-family: var(--copy);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.listing-card[data-card-kind="scope"] .kicker { border-color: var(--blue); }
.listing-card[data-card-kind="repair"] .kicker { border-color: var(--red); }
.listing-card[data-card-kind="products"] .kicker { border-color: var(--gold); }
.listing-card[data-card-kind="planning"] .kicker { border-color: var(--green); }
.listing-card[data-card-kind="scope"] h3 { color: var(--blue); }
.listing-card[data-card-kind="repair"] h3 { color: var(--red); }
.listing-card[data-card-kind="products"] h3 { color: #b56d00; }
.listing-card[data-card-kind="planning"] h3 { color: var(--green); }
.listing-card h3 {
  margin: 0 0 14px;
  color: var(--blue);
  font-family: var(--condensed);
  font-size: 34px;
  line-height: 1;
  text-transform: uppercase;
}
.listing-card p {
  margin: 0;
  color: var(--muted);
  font-family: var(--copy);
  font-size: 17px;
  line-height: 1.45;
}
.pagination {
  display: flex;
  justify-content: center;
  gap: 22px;
  margin-top: 60px;
  color: var(--muted);
  font-family: var(--copy);
  font-weight: 900;
}
.pagination span:first-child {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  color: var(--white);
  background: var(--blue);
}
.detail-section {
  padding: 86px 0 105px;
  background: var(--white);
}
.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 58px;
}
.detail-copy h2,
.detail-copy h3 {
  color: var(--blue);
  font-family: var(--condensed);
  font-size: 58px;
  line-height: .95;
  margin: 0 0 20px;
  text-transform: uppercase;
}
.detail-copy p {
  color: #555;
  font-size: 18px;
  line-height: 1.7;
  margin: 0 0 22px;
}
.detail-image {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 34px;
}
.side-panel {
  align-self: start;
  position: sticky;
  top: 155px;
  padding: 34px;
  background: #f7fafc;
  border-top: 6px solid var(--blue);
  box-shadow: 0 3px 16px rgba(0,0,0,.12);
}
.side-panel h2 {
  margin: 0 0 20px;
  color: var(--dark);
  font-family: var(--copy);
  font-size: 22px;
  font-weight: 900;
}
.side-panel p,
.side-panel a {
  overflow-wrap: anywhere;
}
.side-panel .btn {
  width: 100%;
  min-width: 0;
  margin: 12px 0 24px;
}
.side-panel a:not(.btn) {
  display: block;
  padding: 10px 0;
  color: var(--blue);
  border-bottom: 1px solid var(--line);
  font-family: var(--copy);
  font-weight: 900;
}
.contact-section {
  padding: 78px 0 90px;
  background: var(--white);
}
.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 68px;
}
.contact-section h2 {
  color: var(--blue);
  font-family: var(--condensed);
  font-size: 62px;
  line-height: .95;
  margin: 0 0 22px;
  text-transform: uppercase;
}
.contact-card p,
.contact-card a {
  overflow-wrap: anywhere;
}
.roof-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.roof-form label {
  display: grid;
  gap: 7px;
  color: #626262;
  font-size: 13px;
  font-weight: 700;
}
.roof-form input,
.roof-form textarea,
.roof-form select {
  width: 100%;
  border: 1px solid var(--line);
  padding: 13px 16px;
  color: var(--ink);
  background: var(--white);
  outline-color: var(--blue);
}
.roof-form select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--blue) 50%),
    linear-gradient(135deg, var(--blue) 50%, transparent 50%);
  background-position:
    calc(100% - 22px) 50%,
    calc(100% - 15px) 50%;
  background-size: 7px 7px, 7px 7px;
  background-repeat: no-repeat;
  padding-right: 44px;
}
.roof-form .full { grid-column: 1 / -1; }
.roof-form button {
  width: 200px;
  min-height: 46px;
  border: 0;
  background: var(--blue);
  color: var(--white);
  font-family: var(--copy);
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}
.notice-list {
  margin-top: 50px;
  color: #555;
}
.notice-list h2 { margin-top: 48px; }
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.process-card {
  min-height: 320px;
  padding: 42px 34px;
  background: #f7fbfe;
  border: 1px solid var(--line);
  border-top: 6px solid var(--blue);
  color: var(--blue);
  box-shadow: 0 4px 14px rgba(0,0,0,.06);
}
.process-card:nth-child(2) { color: var(--red); border-top-color: var(--red); }
.process-card:nth-child(3) { color: var(--green); border-top-color: var(--green); }
.process-card svg {
  width: 64px;
  height: 64px;
  margin-bottom: 26px;
}
.process-card h3 {
  margin: 0 0 14px;
  color: var(--dark);
  font-family: var(--condensed);
  font-size: 42px;
  line-height: 1;
  text-transform: uppercase;
}
.process-card p {
  margin: 0;
  color: var(--muted);
  font-family: var(--copy);
  font-size: 17px;
  line-height: 1.55;
}
.about-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 34px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}
.about-columns h3 {
  margin: 0 0 10px;
  color: var(--dark);
  font-family: var(--copy);
  font-size: 20px;
  font-weight: 900;
}
.about-columns p {
  margin: 0;
  color: var(--muted);
}
.footer {
  background: var(--white);
  color: var(--muted);
}
.footer-main {
  padding: 58px 0 42px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.1fr;
  gap: 38px;
  align-items: end;
}
.footer .brand { min-width: 0; }
.footer h3 {
  margin: 0 0 14px;
  color: var(--blue);
  font-family: var(--copy);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}
.footer a,
.footer p {
  display: block;
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 13px;
  overflow-wrap: anywhere;
}
.footer-bottom {
  background: #f6f7f8;
  padding: 20px 0;
  font-size: 12px;
}
.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.socials {
  display: flex;
  gap: 13px;
  color: var(--blue);
  font-family: var(--copy);
  font-weight: 900;
}
.not-found {
  min-height: 65vh;
  display: grid;
  place-items: center;
  text-align: center;
}

@media (max-width: 1100px) {
  .nav-links { gap: 18px; }
  .service-cards,
  .category-grid,
  .listing-grid,
  .number-grid { grid-template-columns: repeat(2, 1fr); }
  .home-hero .container { grid-template-columns: 1fr; }
  .hero-photo img { margin-left: 0; }
  .about-band,
  .career-band .container,
  .detail-layout,
  .contact-grid { grid-template-columns: 1fr; }
  .side-panel { position: static; }
}

@media (max-width: 760px) {
  .container, .narrow { width: min(100% - 40px, 620px); }
  .family-bar { display: none; }
  .main-nav { height: 58px; }
  .brand { min-width: 0; }
  .brand-icon { width: 27px; height: 28px; }
  .brand-word { font-size: 17px; }
  .brand-sub { display: none; }
  .nav-links { display: none; }
  .mobile-trigger { display: inline-flex; }
  .mobile-menu.is-open { display: block; }
  .home-hero { min-height: 0; }
  .home-hero .container { min-height: 0; padding: 42px 0 52px; gap: 34px; }
  .hero-copy h1 { font-size: 40px; letter-spacing: -1.3px; }
  .hero-photo img { height: 300px; }
  .hero-photo::after { width: 160px; height: 100px; right: -14px; border-width: 10px; }
  .lift-grid,
  .service-cards,
  .category-grid,
  .listing-grid,
  .number-grid,
  .process-grid,
  .about-columns,
  .footer-main {
    grid-template-columns: 1fr;
  }
  .news-lift { background: var(--lime); }
  .lift-grid { transform: none; margin: 0; padding-top: 38px; }
  .lift-card { grid-template-columns: 1fr; }
  .lift-card img { height: 190px; }
  .about-band { display: block; }
  .rock-panel { display: none; }
  .service-shell { padding: 48px 24px 40px; }
  .service-card p { min-height: 0; }
  .career-band { padding: 58px 0; }
  .career-band img { height: 270px; }
  .interior-hero { min-height: 330px; }
  .breadcrumb { display: none; }
  .interior-title-box { padding: 0; border: 0; }
  .interior-title-box h1 { font-size: 78px; }
  .interior-title-box p { font-size: 21px; }
  .category-band,
  .listing-section,
  .detail-section,
  .contact-section { padding: 56px 0; }
  .section-title { font-size: 38px; margin-bottom: 35px; }
  .filter-bar { align-items: flex-start; flex-direction: column; padding: 18px; }
  .filter-button { padding: 10px 12px; border-left: 0; border-top: 1px solid var(--line); }
  .legend { align-items: flex-start; flex-direction: column; gap: 8px; margin: -20px 0 25px; }
  .listing-card img { height: 190px; }
  .listing-copy { padding: 27px 25px 32px; }
  .detail-copy h2, .detail-copy h3, .contact-section h2 { font-size: 48px; }
  .roof-form { grid-template-columns: 1fr; }
  .roof-form .full { grid-column: auto; }
  .footer-bottom .container { align-items: flex-start; flex-direction: column; }
}

/* Mobile hardening for small phones (375px) — tap targets, readable type,
   clamp oversized headings, and full-width form fields. */
@media (max-width: 768px) {
  .container, .narrow { width: min(100% - 32px, 620px); }
  /* Scale hero/section headings with the viewport so they never overflow. */
  .hero-copy h1 { font-size: clamp(28px, 8vw, 44px); line-height: 1.08; }
  .interior-title-box h1 { font-size: clamp(38px, 12vw, 78px); line-height: 1; }
  .interior-title-box p { font-size: clamp(16px, 4.6vw, 21px); }
  .section-title { font-size: clamp(26px, 7vw, 40px); }
  .detail-copy h2, .detail-copy h3, .contact-section h2 { font-size: clamp(26px, 7vw, 48px); }
  /* Body readability. */
  body { font-size: 16px; }
  p, li, .mobile-menu a { line-height: 1.6; }
  /* Comfortable tap targets across nav, buttons, and form controls. */
  .nav-links a, .mega-panel a, .footer a { min-height: 44px; display: flex; align-items: center; }
  a.brand { min-height: 0; }
  button, .button, [type="submit"], input, textarea, select { min-height: 44px; }
  .roof-form button[type="submit"] { min-height: 48px; }
  /* Form fields full width with breathing room. */
  .roof-form { grid-template-columns: 1fr; gap: 16px; }
  .roof-form label { display: block; }
  .roof-form input, .roof-form select, .roof-form textarea { width: 100%; }
  .roof-form textarea { min-height: 120px; }
  /* Dense card grids may stay 2-up; keep single-column for the rest already set above. */
  .contact-grid, .detail-layout, .footer-main { grid-template-columns: 1fr; }
  /* Map embeds and any media never push the layout sideways. */
  iframe { width: 100%; max-width: 100%; }
}
