:root {
  --red: #ed1b24;
  --red-dark: #9f050e;
  --red-deep: #6f0107;
  --black: #070909;
  --carbon: #0b0d0e;
  --carbon-soft: #1c2223;
  --silver: #d8dade;
  --ink: #171717;
  --muted: #575a60;
  --line: #d8dade;
  --surface: #f3f4f6;
  --white: #ffffff;
  --carbon-texture: url("/assets/images/lakeshore-concrete-lifting-carbon-fiber-background.webp");
  --shadow: 0 18px 55px rgba(7, 9, 9, 0.16);
  --max: 1180px;
}

* { box-sizing: border-box; }

html {
  color: var(--ink);
  font-family: "Manrope", "Segoe UI Variable", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.5;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, #f8f9fa 0%, #eceef1 42%, #f7f8fa 100%);
  color: var(--ink);
}

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

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

p { margin: 0 0 1rem; color: var(--muted); }

h1, h2, h3 {
  margin: 0;
  color: var(--ink);
  line-height: 1.08;
  letter-spacing: 0;
  font-weight: 600;
  text-wrap: balance;
}

h1 { font-size: 4.05rem; }
h2 { font-size: 2.45rem; }
h3 { font-size: 1.08rem; }

.container {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
}

.narrow { max-width: 860px; }

.section {
  padding: 86px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-heading.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-heading p {
  font-size: 1.08rem;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 12px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow.light { color: #fff; }

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 10000;
  padding: 10px 14px;
  background: var(--red);
  color: #fff;
  transform: translateY(-140%);
}

.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 999;
  background:
    linear-gradient(90deg, rgba(7, 9, 9, 0.94), rgba(13, 18, 19, 0.86)),
    var(--carbon-texture);
  background-size: auto, 282px 200px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.site-header.scrolled {
  background:
    linear-gradient(90deg, rgba(5, 6, 7, 0.98), rgba(12, 15, 16, 0.94)),
    var(--carbon-texture);
  background-size: auto, 282px 200px;
}

.nav-shell {
  height: 92px;
  display: flex;
  align-items: center;
  gap: 22px;
}

.brand {
  display: flex;
  align-items: center;
  min-width: 224px;
}

.brand img {
  width: 224px;
  height: auto;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 3px;
  margin-left: auto;
}

.desktop-nav > a,
.nav-dropdown > button {
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.88);
  font: inherit;
  font-size: 0.94rem;
  font-weight: 700;
  padding: 12px 10px;
  cursor: pointer;
}

.desktop-nav > a:hover,
.desktop-nav > a.active,
.nav-dropdown > button:hover {
  color: #fff;
}

.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 250px;
  padding: 8px;
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow);
  border: 1px solid rgba(216, 218, 222, 0.9);
  border-top: 3px solid var(--red);
  border-radius: 8px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 700;
}

.dropdown-menu a:hover {
  background: var(--surface);
  color: var(--red);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: 8px;
}

.phone-link {
  color: #fff;
  font-weight: 700;
  white-space: nowrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 13px 20px;
  border: 2px solid transparent;
  border-radius: 8px;
  font-weight: 700;
  text-align: center;
  transition: transform 160ms ease, background-color 160ms ease, color 160ms ease, border-color 160ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-small {
  min-height: 40px;
  padding: 9px 14px;
  font-size: 0.9rem;
}

.btn-red {
  background: linear-gradient(135deg, #ff3138 0%, var(--red) 42%, var(--red-dark) 100%);
  color: #fff;
  border-color: var(--red);
  box-shadow: 0 10px 24px rgba(237, 27, 36, 0.24);
}

.btn-red:hover {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 64%, var(--red-deep) 100%);
  border-color: var(--red-dark);
}

.btn-light {
  background: #fff;
  color: var(--red);
  border-color: #fff;
}

.btn-outline-light {
  color: #fff;
  border-color: #fff;
}

.btn-outline-light:hover {
  background: #fff;
  color: var(--black);
}

.btn-outline-dark {
  color: var(--black);
  border-color: var(--black);
}

.btn-outline-dark:hover {
  background: var(--black);
  color: #fff;
}

.mobile-toggle,
.mobile-nav {
  display: none;
}

.hero,
.subhero {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 18%, rgba(237, 27, 36, 0.22), transparent 28%),
    linear-gradient(135deg, #050606 0%, var(--carbon) 48%, #151a1b 100%);
}

.subhero {
  min-height: 460px;
  padding-top: 92px;
}

.hero-media,
.hero-img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 6, 7, 0.9), rgba(10, 13, 14, 0.58) 48%, rgba(112, 1, 7, 0.28)),
    var(--carbon-texture);
  background-size: auto, 282px 200px;
  background-blend-mode: normal, multiply;
}

.hero-overlay.gradient {
  background:
    linear-gradient(90deg, rgba(5, 6, 7, 0.88), rgba(16, 22, 23, 0.72), rgba(112, 1, 7, 0.22)),
    var(--carbon-texture);
  background-size: auto, 282px 200px;
  background-blend-mode: normal, multiply;
}

.hero-content,
.subhero-content {
  position: relative;
  z-index: 1;
  padding-top: 132px;
}

.subhero-content {
  padding-top: 0;
}

.hero-content h1,
.subhero-content h1 {
  max-width: 920px;
  color: #fff;
}

.hero-content p:not(.eyebrow),
.subhero-content p:not(.eyebrow) {
  max-width: 760px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.22rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-actions.inline {
  margin-top: 24px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  font-weight: 700;
}

.breadcrumbs span:last-child {
  color: #fff;
}

.info-strip {
  background:
    linear-gradient(135deg, var(--black) 0%, var(--red-deep) 22%, var(--red) 58%, #ff343a 100%);
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(7, 9, 9, 0.34);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 18px 0;
}

.info-grid div,
.info-grid a {
  display: grid;
  gap: 2px;
}

.info-grid strong,
.info-grid span {
  color: #fff;
}

.info-grid span {
  font-size: 0.9rem;
  opacity: 0.9;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.9fr);
  gap: 54px;
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(340px, 0.9fr) minmax(0, 1fr);
}

.split p {
  font-size: 1.05rem;
}

.image-panel {
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid rgba(216, 218, 222, 0.95);
  box-shadow: var(--shadow);
}

.image-panel img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.image-panel figcaption {
  padding: 12px 14px;
  color: var(--muted);
  font-size: 0.88rem;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 24px 0;
}

.check-list p {
  margin: 0;
  padding-left: 18px;
  border-left: 4px solid var(--red);
}

.services-overview,
.faq-section,
.photo-library,
.quote-section {
  background:
    linear-gradient(180deg, rgba(248, 249, 250, 0.96), rgba(235, 237, 241, 0.96)),
    var(--carbon-texture);
  background-size: auto, 282px 200px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-card {
  display: grid;
  grid-template-columns: 42% 1fr;
  gap: 22px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #fff, #f8f9fb);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.service-card img {
  height: 100%;
  min-height: 230px;
  object-fit: cover;
  border-radius: 6px;
}

.text-link {
  color: var(--red);
  font-weight: 700;
}

.text-link:hover {
  color: var(--red-dark);
}

.card-grid {
  display: grid;
  gap: 18px;
}

.card-grid.four {
  grid-template-columns: repeat(4, 1fr);
}

.card-grid.two {
  grid-template-columns: repeat(2, 1fr);
}

.card,
.process-card,
.contact-card,
.quote-form-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #fff, #f8f9fb);
}

.card,
.process-card {
  padding: 24px;
}

.card h3,
.card h2,
.process-card h3 {
  margin-bottom: 10px;
}

.process-section {
  background:
    radial-gradient(circle at 12% 8%, rgba(237, 27, 36, 0.2), transparent 30%),
    linear-gradient(135deg, rgba(4, 5, 6, 0.96), rgba(14, 17, 18, 0.94)),
    var(--carbon-texture);
  background-size: auto, auto, 282px 200px;
}

.process-section h2,
.process-section h3 {
  color: #fff;
}

.process-section .section-heading p:not(.eyebrow),
.process-card p {
  color: rgba(255, 255, 255, 0.72);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.process-card {
  background: rgba(255, 255, 255, 0.075);
  border-color: rgba(216, 218, 222, 0.2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.process-card span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff3138, var(--red-dark));
  color: #fff;
  font-weight: 700;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gallery-card,
.photo-tile {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #fff, #f8f9fb);
}

.gallery-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.gallery-card figcaption,
.photo-tile figcaption {
  padding: 12px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.area-section {
  background:
    radial-gradient(circle at 82% 16%, rgba(237, 27, 36, 0.22), transparent 32%),
    linear-gradient(135deg, rgba(4, 5, 6, 0.96), rgba(15, 20, 21, 0.94)),
    var(--carbon-texture);
  background-size: auto, auto, 282px 200px;
}

.area-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(360px, 1.22fr);
  gap: 28px 36px;
  align-items: start;
}

.related-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 36px;
}

.area-section h2,
.area-section p {
  color: #fff;
}

.area-list,
.related-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.area-list {
  grid-column: 1 / -1;
  grid-template-columns: repeat(4, 1fr);
}

.service-map-card {
  overflow: hidden;
  border: 1px solid rgba(216, 218, 222, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.085);
  box-shadow: var(--shadow);
}

.service-map-card p {
  margin: 0;
  padding: 14px 16px;
  font-size: 0.92rem;
}

.service-map-card a {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.google-map-shell {
  position: relative;
  min-height: 390px;
  background: #e5e7eb;
}

.google-map-shell iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.area-list button,
.related-list a {
  display: block;
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.095);
  color: #fff;
  font: inherit;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.area-list button:hover,
.area-list button:focus-visible,
.area-list button.active {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  border-color: var(--red);
  color: #fff;
  transform: translateY(-1px);
}

.related-list a {
  border: 0;
  background: var(--surface);
  color: var(--ink);
}

.related-list a:hover {
  background: var(--red);
  color: #fff;
}

.faq-list {
  display: grid;
  gap: 10px;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--ink);
  font-weight: 700;
}

details p {
  padding: 0 20px 18px;
}

.cta-band {
  padding: 42px 0;
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.18), transparent 24%),
    linear-gradient(135deg, var(--black) 0%, var(--red-deep) 18%, var(--red) 60%, #ff343a 100%);
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(7, 9, 9, 0.24);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.cta-band h2,
.cta-band p {
  color: #fff;
}

.cta-band p {
  margin-bottom: 0;
  opacity: 0.92;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  flex: 0 0 auto;
}

.quote-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(320px, 0.7fr);
  gap: 28px;
  align-items: start;
}

.quote-form-card {
  min-height: 760px;
  padding: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.form-fallback {
  margin: 0 0 8px;
  text-align: center;
  font-size: 0.92rem;
}

.form-fallback a {
  color: var(--red);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-frame {
  width: 100%;
  height: 728px;
}

.contact-card {
  padding: 28px;
  position: sticky;
  top: 98px;
}

.contact-row {
  display: grid;
  gap: 3px;
  padding: 15px 0;
  border-top: 1px solid var(--line);
}

.quote-backup {
  width: 100%;
  margin: 8px 0 14px;
}

.contact-row strong {
  color: var(--red);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-row span {
  color: var(--ink);
  font-weight: 700;
}

.stats-band {
  padding: 34px 0;
  background:
    linear-gradient(135deg, var(--black) 0%, var(--red-deep) 26%, var(--red) 100%);
  color: #fff;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

.stats-grid strong {
  display: block;
  color: #fff;
  font-size: 1.8rem;
  line-height: 1;
}

.stats-grid span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.photo-tile img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.contact-panels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.big-link {
  display: block;
  margin-top: 14px;
  color: var(--red);
  font-size: 1.25rem;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.site-footer {
  background:
    linear-gradient(180deg, rgba(5, 6, 7, 0.95), rgba(11, 13, 14, 0.98)),
    var(--carbon-texture);
  background-size: auto, 282px 200px;
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
  gap: 36px;
  padding: 58px 0;
}

.footer-logo {
  width: 260px;
  margin-bottom: 16px;
  background: #fff;
  border-radius: 6px;
}

.site-footer h2 {
  margin-bottom: 14px;
  color: #fff;
  font-size: 0.95rem;
  text-transform: uppercase;
}

.site-footer p,
.site-footer li,
.site-footer a {
  color: rgba(255, 255, 255, 0.74);
}

.site-footer ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-footer a:hover {
  color: #fff;
}

.small {
  font-size: 0.86rem;
}

.footer-bottom {
  padding: 20px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.86rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 1100px) {
  h1 {
    font-size: 3.25rem;
  }

  h2 {
    font-size: 2.15rem;
  }

  .desktop-nav,
  .nav-actions {
    display: none;
  }

  .mobile-toggle {
    display: grid;
    gap: 5px;
    margin-left: auto;
    padding: 10px;
    border: 0;
    background: transparent;
  }

  .mobile-toggle span:not(.sr-only) {
    display: block;
    width: 26px;
    height: 2px;
    background: #fff;
  }

  .mobile-nav {
    display: none;
    width: min(100% - 32px, var(--max));
    margin: 0 auto 16px;
    padding: 14px;
    border-radius: 8px;
    background: #fff;
  }

  .mobile-nav.open {
    display: grid;
    gap: 6px;
  }

  .mobile-nav a {
    padding: 12px;
    border-radius: 6px;
    color: var(--ink);
    font-weight: 700;
  }

  .mobile-nav .btn {
    color: #fff;
  }

  .service-grid,
  .gallery-grid,
  .process-grid,
  .card-grid.four,
  .footer-grid,
  .photo-grid,
  .contact-panels {
    grid-template-columns: repeat(2, 1fr);
  }

  .quote-layout,
  .split,
  .split.reverse,
  .area-layout,
  .related-layout {
    grid-template-columns: 1fr;
  }

  .area-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-card {
    position: static;
  }
}

@media (max-width: 720px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 1.85rem;
  }

  h3 {
    font-size: 1.04rem;
  }

  .container {
    width: min(100% - 24px, var(--max));
  }

  .section {
    padding: 62px 0;
  }

  .brand img {
    width: 190px;
  }

  .hero {
    min-height: 700px;
  }

  .subhero {
    min-height: 520px;
  }

  .hero-content,
  .subhero-content {
    padding-top: 110px;
  }

  .hero-actions,
  .cta-inner,
  .cta-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .info-grid,
  .service-grid,
  .service-card,
  .gallery-grid,
  .process-grid,
  .card-grid.two,
  .card-grid.four,
  .stats-grid,
  .footer-grid,
  .photo-grid,
  .area-list,
  .related-list,
  .contact-panels {
    grid-template-columns: 1fr;
  }

  .service-card img {
    min-height: 220px;
  }

  .quote-form-card,
  .form-frame {
    min-height: 760px;
  }
}
