:root {
  --ink: #101214;
  --panel: #17191c;
  --panel-2: #252a2f;
  --paper: #f4f1eb;
  --paper-2: #e5e0d8;
  --line: rgba(16, 18, 20, 0.16);
  --muted: #5b6268;
  --accent: #d46f1f;
  --accent-2: #b92323;
  --steel: #ccd2d8;
  --dust: #8b6f4d;
  --white: #ffffff;
  --radius: 8px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.65), rgba(255, 255, 255, 0) 280px),
    var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

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

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

p,
ul,
ol {
  margin: 0;
}

ul {
  padding-left: 1.1rem;
}

li + li {
  margin-top: 0.4rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(12, 14, 16, 0.97);
  color: var(--white);
  backdrop-filter: blur(12px);
}

.header-inner,
.section-inner {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 260px;
}

.brand img {
  width: 252px;
  max-height: 86px;
  height: auto;
  object-fit: contain;
}

.brand-mark {
  display: none;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  line-height: 1;
}

.brand-mark small {
  display: block;
  margin-top: 4px;
  color: #d6cdbf;
  font-size: 0.72rem;
  font-weight: 700;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  background: transparent;
  color: var(--white);
  font-size: 1.25rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.92rem;
  font-weight: 750;
}

.site-nav a {
  padding: 10px 12px;
  border-radius: var(--radius);
  color: #f4f6f7;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 11px 16px;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.btn-primary {
  background: var(--accent);
  color: #111111;
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.18);
}

.btn-primary:hover {
  background: #f18424;
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.24);
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-dark {
  background: var(--ink);
  color: var(--white);
  box-shadow: inset 0 -2px 0 rgba(255, 255, 255, 0.09);
}

.btn-outline {
  border-color: var(--line);
  background: transparent;
  color: var(--ink);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(10, 12, 14, 0.98), rgba(10, 12, 14, 0.88) 44%, rgba(10, 12, 14, 0.58)),
    linear-gradient(135deg, #20252a 0%, #0f1114 46%, #4c3424 100%);
  color: var(--white);
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 10px;
  content: "";
  background: linear-gradient(90deg, #ffffff 0 18%, var(--accent) 18% 68%, var(--accent-2) 68% 100%);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(380px, 0.94fr);
  gap: 48px;
  align-items: center;
  min-height: 660px;
  padding: 86px 0 78px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: #f7c18e;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 3px;
  content: "";
  background: var(--accent);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  font-size: clamp(2.8rem, 6vw, 5.35rem);
  font-weight: 950;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 940;
}

h3 {
  font-size: 1.28rem;
  font-weight: 900;
}

.hero-copy p {
  max-width: 760px;
  margin-top: 22px;
  color: #e9edf0;
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 44px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.16);
}

.trust-strip div {
  min-height: 92px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.075);
}

.trust-strip strong {
  display: block;
  margin-bottom: 4px;
  color: var(--white);
  font-size: 1.04rem;
}

.trust-strip span {
  color: #d7dde1;
  font-size: 0.92rem;
}

.hero-media {
  position: relative;
  min-height: 510px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: #111418;
  box-shadow: var(--shadow);
}

.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(17, 20, 15, 0) 36%, rgba(17, 20, 15, 0.86)),
    linear-gradient(90deg, rgba(17, 20, 15, 0.18), rgba(17, 20, 15, 0));
  pointer-events: none;
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 510px;
  object-fit: cover;
}

.hero-media-badge {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  padding: 18px;
  background: rgba(12, 14, 16, 0.88);
  color: var(--white);
  backdrop-filter: blur(8px);
}

.hero-media-badge strong {
  display: block;
  font-size: 1.08rem;
  font-weight: 900;
}

.hero-media-badge span {
  display: block;
  margin-top: 4px;
  color: #d7dde1;
  font-size: 0.92rem;
}

.photo-slot {
  position: relative;
  display: flex;
  min-height: 360px;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(12, 14, 16, 0.02), rgba(12, 14, 16, 0.86)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0)),
    #20252a;
  box-shadow: var(--shadow);
}

.photo-slot.equipment-photo {
  background:
    linear-gradient(180deg, rgba(12, 14, 16, 0.04), rgba(12, 14, 16, 0.84)),
    url("scott-crew-hero-equipment.png") center / cover no-repeat;
}

.photo-slot.large {
  min-height: 100%;
}

.photo-slot::before {
  position: absolute;
  inset: 0;
  border: 0;
  border-radius: var(--radius);
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.16) 0 1px, transparent 1px) 0 0 / 32px 32px,
    linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px) 0 0 / 32px 32px;
  opacity: 0.18;
}

.photo-slot-content {
  position: relative;
  z-index: 1;
  margin: 24px;
  border-left: 5px solid var(--accent);
  padding: 20px 22px;
  background: rgba(10, 12, 14, 0.82);
  backdrop-filter: blur(8px);
}

.photo-slot-content strong {
  display: block;
  color: var(--white);
  font-size: 1.35rem;
  font-weight: 900;
}

.photo-slot-content span {
  display: block;
  margin-top: 8px;
  color: #d7dde1;
}

.contact-list {
  display: grid;
  gap: 8px;
  padding: 0;
  list-style: none;
}

.contact-list li {
  margin: 0;
}

.contact-list a {
  color: var(--white);
  font-weight: 850;
}

.footer-contact a {
  color: var(--white);
  font-weight: 850;
}

.section {
  padding: 84px 0;
}

.stats-band {
  border-bottom: 1px solid var(--line);
  background: #ffffff;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stats-grid div {
  min-height: 122px;
  border-right: 1px solid var(--line);
  padding: 24px 26px;
  background:
    linear-gradient(180deg, rgba(16, 18, 20, 0.025), rgba(16, 18, 20, 0)),
    #ffffff;
}

.stats-grid div:first-child {
  border-left: 1px solid var(--line);
}

.stats-grid strong {
  display: block;
  color: var(--ink);
  font-size: clamp(1.6rem, 3vw, 2.8rem);
  font-weight: 950;
  line-height: 1;
}

.stats-grid span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-weight: 800;
}

.section.dark {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0)),
    var(--panel);
  color: var(--white);
}

.section.alt {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0)),
    var(--paper-2);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 34px;
}

.section-head p {
  max-width: 560px;
  color: var(--muted);
  font-size: 1.04rem;
  font-weight: 650;
}

.dark .section-head p,
.dark .muted {
  color: #cbc2b4;
}

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

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

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

.service-card,
.info-card,
.form-panel,
.quote-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 34px rgba(16, 18, 20, 0.08);
}

.service-card {
  position: relative;
  display: flex;
  min-height: 350px;
  flex-direction: column;
  padding: 28px;
  overflow: hidden;
}

.service-card::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  content: "";
  background: linear-gradient(180deg, var(--accent), var(--accent-2));
}

.service-card .tag {
  width: fit-content;
  margin-bottom: 18px;
  border-radius: 4px;
  padding: 6px 10px;
  background: rgba(16, 18, 20, 0.08);
  color: #2f3438;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.service-card p,
.info-card p,
.quote-card p {
  margin-top: 13px;
  color: var(--muted);
}

.service-card .card-link {
  margin-top: auto;
  padding-top: 24px;
  color: #973f13;
  font-weight: 900;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.work-card {
  min-height: 250px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(16, 18, 20, 0.06);
}

.work-card span {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border: 1px solid rgba(17, 20, 15, 0.18);
  border-radius: 50%;
  background: #111418;
  color: var(--accent);
  font-weight: 950;
}

.work-card p {
  margin-top: 12px;
  color: var(--muted);
}

.specialty-section {
  background:
    linear-gradient(90deg, rgba(244, 241, 235, 0.94), rgba(244, 241, 235, 0.9)),
    repeating-linear-gradient(135deg, rgba(16, 18, 20, 0.07) 0 2px, transparent 2px 14px);
}

.section-head.compact {
  display: grid;
  margin-bottom: 24px;
}

.specialty-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.specialty-grid div {
  min-height: 150px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 24px rgba(16, 18, 20, 0.05);
}

.specialty-grid strong {
  display: block;
  font-size: 1.04rem;
  font-weight: 900;
}

.specialty-grid span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

.equipment-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.equipment-item {
  min-height: 102px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 18px;
  background: rgba(255, 255, 255, 0.065);
}

.equipment-item strong {
  display: block;
  color: var(--white);
}

.equipment-item span {
  display: block;
  margin-top: 5px;
  color: #cbd2d7;
  font-size: 0.9rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.72fr);
  gap: 34px;
  align-items: start;
}

.info-card,
.quote-card {
  padding: 26px;
}

.quote-card {
  border-top: 6px solid var(--accent);
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  margin: 0;
  padding-left: 28px;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 0.1rem;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  content: "";
  background: #111418;
}

.check-list li::after {
  position: absolute;
  left: 6px;
  top: 0.43rem;
  width: 6px;
  height: 9px;
  border: solid var(--accent);
  border-width: 0 2px 2px 0;
  content: "";
  transform: rotate(45deg);
}

.service-hero {
  background:
    linear-gradient(90deg, rgba(12, 14, 16, 0.98), rgba(12, 14, 16, 0.86)),
    url("scott-crew-hero-equipment.png") center / cover no-repeat;
  color: var(--white);
}

.service-hero .section-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(300px, 0.7fr);
  gap: 38px;
  align-items: stretch;
  padding: 72px 0;
}

.service-hero p {
  max-width: 740px;
  margin-top: 18px;
  color: #e9edf0;
  font-size: 1.16rem;
}

.content-stack {
  display: grid;
  gap: 22px;
}

.service-area-section {
  background:
    linear-gradient(90deg, rgba(244, 241, 235, 0.95), rgba(244, 241, 235, 0.88)),
    repeating-linear-gradient(135deg, rgba(16, 18, 20, 0.08) 0 2px, transparent 2px 14px);
}

.quote-band {
  background:
    linear-gradient(90deg, rgba(12, 14, 16, 0.96), rgba(12, 14, 16, 0.88)),
    url("scott-crew-hero-equipment.png") center / cover no-repeat;
  color: var(--white);
}

.quote-band .section-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.quote-band p {
  margin-top: 10px;
  color: #ddd4c7;
}

form {
  display: grid;
  gap: 16px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

label {
  display: grid;
  gap: 7px;
  color: #2c302b;
  font-size: 0.9rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(16, 18, 20, 0.2);
  border-radius: var(--radius);
  padding: 12px 13px;
  background: #ffffff;
  color: var(--ink);
  font: inherit;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

.full {
  grid-column: 1 / -1;
}

.form-note {
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer {
  background: #0c0e10;
  color: var(--white);
  padding: 46px 0 96px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1.2fr) repeat(3, minmax(0, 0.8fr));
  gap: 26px;
}

.site-footer h3 {
  margin-bottom: 12px;
  font-size: 1rem;
}

.footer-brand img {
  width: min(250px, 100%);
  margin-bottom: 18px;
}

.footer-brand h3 {
  display: none;
}

.site-footer a,
.site-footer p,
.site-footer li {
  color: #cbd2d7;
}

.site-footer ul {
  padding: 0;
  list-style: none;
}

.mobile-action-bar {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 60;
  display: none;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: #0c0e10;
}

.mobile-action-bar a {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 900;
}

.mobile-action-bar a:first-child {
  background: var(--accent);
  color: #111111;
}

@media (max-width: 980px) {
  .header-actions {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: 78px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    background: #11140f;
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }

  .hero-inner,
  .service-hero .section-inner,
  .split,
  .quote-band .section-inner {
    grid-template-columns: 1fr;
  }

  .hero-media {
    min-height: 380px;
  }

  .hero-media img {
    min-height: 380px;
  }

  .quote-band .section-inner {
    display: grid;
  }

  .grid-3,
  .grid-4,
  .grid-2,
  .equipment-grid,
  .stats-grid,
  .work-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .header-inner,
  .section-inner {
    width: min(100% - 24px, 1160px);
  }

  .brand {
    min-width: 188px;
  }

  .brand img {
    width: 192px;
  }

  .site-header {
    position: sticky;
  }

  .header-inner {
    min-height: 70px;
  }

  .brand-mark {
    font-size: 0.9rem;
  }

  .hero-inner {
    min-height: unset;
    padding: 46px 0 52px;
  }

  h1 {
    font-size: clamp(2.35rem, 13vw, 3.3rem);
  }

  h2 {
    font-size: clamp(1.8rem, 8.5vw, 2.45rem);
  }

  .trust-strip div {
    min-height: auto;
  }

  .trust-strip,
  .grid-3,
  .grid-4,
  .grid-2,
  .equipment-grid,
  .stats-grid,
  .work-grid,
  .specialty-grid,
  .footer-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid div,
  .stats-grid div:first-child {
    border-right: 1px solid var(--line);
    border-left: 1px solid var(--line);
  }

  .section {
    padding: 58px 0;
  }

  .section-head {
    display: grid;
  }

  .service-card {
    min-height: auto;
  }

  .photo-slot,
  .photo-slot.large,
  .hero-media,
  .hero-media img {
    min-height: 280px;
  }

  .mobile-action-bar {
    display: grid;
  }
}
