:root {
  --orange: #f36f21;
  --orange-dark: #c94f08;
  --ink: #171717;
  --charcoal: #252525;
  --muted: #6b6b6b;
  --line: #dedede;
  --paper: #ffffff;
  --soft: #f4f3f0;
  --max: 1180px;
  --shadow: 0 14px 40px rgba(0, 0, 0, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.skip-link { position: fixed; left: 12px; top: -80px; z-index: 999; background: #fff; padding: 10px 14px; }
.skip-link:focus { top: 12px; }

.topbar { background: #111; color: #fff; font-size: .9rem; }
.topbar__inner { min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.topbar__links { display: flex; gap: 20px; flex-wrap: wrap; }
.topbar a { text-decoration: none; }
.topbar a:hover { color: var(--orange); }

.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.97); border-bottom: 1px solid var(--line); backdrop-filter: blur(10px); }
.site-header__inner { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.logo { width: 220px; height: auto; }
.nav { display: flex; align-items: center; gap: 6px; }
.nav a { padding: 12px 13px; color: #242424; font-size: .92rem; font-weight: 800; text-decoration: none; text-transform: uppercase; letter-spacing: .035em; }
.nav a:hover, .nav a[aria-current="page"] { color: var(--orange-dark); }
.nav .nav__cta { background: var(--orange); color: #111; padding-inline: 18px; }
.nav .nav__cta:hover { background: #111; color: #fff; }
.nav-toggle { display: none; border: 0; background: #111; color: #fff; width: 46px; height: 42px; cursor: pointer; }

.hero { position: relative; min-height: 520px; display: grid; align-items: end; overflow: hidden; background: #222; }
.hero__image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; filter: saturate(.8) contrast(1.05); }
.hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.8) 0%, rgba(0,0,0,.46) 55%, rgba(0,0,0,.12) 100%); }
.hero__content { position: relative; z-index: 1; padding: 76px 0; color: #fff; }
.hero__panel { max-width: 720px; border-left: 7px solid var(--orange); padding-left: 28px; }
.eyebrow { margin: 0 0 10px; color: var(--orange); font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }
h1, h2, h3 { margin-top: 0; line-height: 1.08; }
h1 { max-width: 690px; margin-bottom: 18px; font-size: clamp(2.7rem, 6vw, 5.4rem); letter-spacing: -.045em; text-transform: uppercase; }
.hero__lead { max-width: 650px; margin: 0 0 26px; font-size: clamp(1.05rem, 2vw, 1.35rem); }
.actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; padding: 12px 20px; border: 2px solid var(--orange); background: var(--orange); color: #111; font-weight: 900; text-decoration: none; text-transform: uppercase; letter-spacing: .04em; cursor: pointer; }
.button:hover { background: #fff; border-color: #fff; }
.button--dark { background: #111; border-color: #111; color: #fff; }
.button--outline { background: transparent; color: #fff; }

.section { padding: 78px 0; }
.section--soft { background: var(--soft); }
.section--dark { background: #181818; color: #fff; }
.section-title { max-width: 780px; margin-bottom: 38px; }
.section-title h2 { margin-bottom: 12px; font-size: clamp(2rem, 4vw, 3.5rem); letter-spacing: -.035em; text-transform: uppercase; }
.section-title p { margin: 0; color: var(--muted); font-size: 1.08rem; }
.section--dark .section-title p { color: #c8c8c8; }

.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card { position: relative; min-height: 275px; overflow: hidden; background: #222; color: #fff; box-shadow: var(--shadow); }
.service-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.service-card:hover img { transform: scale(1.035); }
.service-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,.86), rgba(0,0,0,.04) 68%); }
.service-card__content { position: absolute; z-index: 1; left: 0; right: 0; bottom: 0; padding: 24px; }
.service-card h3 { margin: 0 0 4px; font-size: 1.4rem; text-transform: uppercase; }
.service-card p { margin: 0; color: #ddd; }

.split { display: grid; grid-template-columns: 1.15fr .85fr; gap: 55px; align-items: center; }
.split h2 { font-size: clamp(2rem, 4vw, 3.4rem); text-transform: uppercase; }
.feature-list { display: grid; gap: 13px; padding: 0; list-style: none; }
.feature-list li { position: relative; padding-left: 31px; font-weight: 700; }
.feature-list li::before { content: "✓"; position: absolute; left: 0; color: var(--orange); font-weight: 900; }
.feature-panel { padding: 32px; background: #111; color: #fff; border-top: 6px solid var(--orange); box-shadow: var(--shadow); }
.feature-panel h3 { font-size: 1.65rem; }

.page-hero { background: #202020; color: #fff; padding: 70px 0; border-bottom: 8px solid var(--orange); }
.page-hero h1 { margin: 0 0 10px; font-size: clamp(2.5rem, 5vw, 4.5rem); }
.page-hero p { max-width: 720px; margin: 0; font-size: 1.15rem; color: #ddd; }

.equipment-toolbar { position: sticky; top: 82px; z-index: 20; padding: 16px 0; background: rgba(244,243,240,.97); border-bottom: 1px solid var(--line); backdrop-filter: blur(8px); }
.equipment-toolbar__inner { display: grid; grid-template-columns: minmax(230px, 360px) 1fr; gap: 18px; align-items: center; }
.search-box { width: 100%; min-height: 46px; border: 2px solid #999; background: #fff; padding: 10px 13px; }
.category-links { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 4px; scrollbar-width: thin; }
.category-links a { flex: 0 0 auto; padding: 8px 11px; background: #fff; border: 1px solid var(--line); font-size: .78rem; font-weight: 800; text-decoration: none; text-transform: uppercase; }
.category-links a:hover { background: var(--orange); border-color: var(--orange); }
.pricing-notice { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; padding: 18px 20px; margin-bottom: 25px; background: #fff0e5; border-left: 5px solid var(--orange); font-weight: 800; }
.equipment-sections { display: grid; gap: 40px; }
.equipment-section { scroll-margin-top: 175px; }
.equipment-section__head { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; margin-bottom: 12px; }
.equipment-section h2 { margin: 0; font-size: clamp(1.6rem, 3vw, 2.35rem); text-transform: uppercase; }
.back-top { color: var(--orange-dark); font-size: .85rem; font-weight: 900; text-decoration: none; text-transform: uppercase; }
.table-wrap { overflow-x: auto; border: 1px solid var(--line); box-shadow: 0 7px 24px rgba(0,0,0,.06); }
.pricing-table { width: 100%; min-width: 580px; border-collapse: collapse; background: #fff; }
.pricing-table th { background: #202020; color: #fff; padding: 13px 16px; text-align: left; font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; }
.pricing-table th:nth-child(n+2), .pricing-table td:nth-child(n+2) { width: 18%; text-align: center; }
.pricing-table td { padding: 11px 16px; border-bottom: 1px solid #e7e7e7; font-weight: 650; }
.pricing-table tr:nth-child(even) td { background: #f7f7f5; }
.pricing-table tr:last-child td { border-bottom: 0; }
.no-results { display: none; padding: 30px; background: #fff0e5; border: 1px solid #f3c5a7; text-align: center; font-weight: 800; }

.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 48px; }
.contact-card { padding: 30px; background: #202020; color: #fff; border-top: 6px solid var(--orange); }
.contact-card a { color: #fff; }
.contact-card h2 { font-size: 2rem; text-transform: uppercase; }
.hours { display: grid; grid-template-columns: 1fr auto; gap: 8px 20px; margin-top: 25px; }
.hours span { border-bottom: 1px solid #444; padding-bottom: 7px; }
.form-card { padding: 32px; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 7px; }
.field--full { grid-column: 1 / -1; }
.field label { font-weight: 800; }
.field input, .field textarea, .field select { width: 100%; border: 1px solid #aaa; background: #fff; padding: 12px; }
.field textarea { min-height: 145px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { outline: 3px solid rgba(243,111,33,.3); border-color: var(--orange-dark); }
.honeypot { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.form-status { display: none; padding: 14px 16px; margin-bottom: 18px; font-weight: 800; }
.form-status--success { display: block; background: #e8f7eb; border: 1px solid #7bc48a; }
.form-status--error { display: block; background: #fff0ed; border: 1px solid #e59a8d; }
.form-note { color: var(--muted); font-size: .82rem; }

.about-copy { max-width: 850px; font-size: 1.2rem; }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.why-card { padding: 26px; background: #fff; border: 1px solid var(--line); border-top: 5px solid var(--orange); }
.why-card h3 { text-transform: uppercase; }

.site-footer { background: #0f0f0f; color: #fff; padding: 55px 0 22px; }
.footer-grid { display: grid; grid-template-columns: 1.1fr .75fr 1fr; gap: 46px; }
.site-footer h2, .site-footer h3 { text-transform: uppercase; }
.site-footer p, .site-footer li { color: #ccc; }
.site-footer ul { padding: 0; list-style: none; }
.site-footer li { margin-bottom: 7px; }
.site-footer a:hover { color: var(--orange); }
.accreditations { display: flex; align-items: center; gap: 18px; margin-top: 20px; }
.accreditations img { max-height: 68px; max-width: 120px; object-fit: contain; background: #fff; padding: 5px; }
.copyright { margin-top: 38px; padding-top: 20px; border-top: 1px solid #383838; color: #999; font-size: .86rem; text-align: center; }

@media (max-width: 900px) {
  .nav-toggle { display: inline-grid; place-items: center; }
  .nav { display: none; position: absolute; left: 0; right: 0; top: 82px; padding: 16px 20px 22px; background: #fff; border-bottom: 1px solid var(--line); box-shadow: var(--shadow); }
  .nav.is-open { display: grid; }
  .nav a { padding: 11px 8px; }
  .service-grid, .why-grid { grid-template-columns: repeat(2, 1fr); }
  .split, .contact-grid { grid-template-columns: 1fr; }
  .equipment-toolbar__inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 620px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .topbar__inner { padding-block: 9px; align-items: flex-start; }
  .topbar__inner > span { display: none; }
  .topbar__links { gap: 12px; }
  .site-header__inner { min-height: 72px; }
  .logo { width: 185px; }
  .nav { top: 72px; }
  .hero { min-height: 550px; }
  .hero__content { padding: 54px 0; }
  .hero__panel { padding-left: 18px; }
  .section { padding: 58px 0; }
  .service-grid, .why-grid, .footer-grid, .form-grid { grid-template-columns: 1fr; }
  .field--full { grid-column: auto; }
  .equipment-toolbar { top: 72px; }
  .equipment-section { scroll-margin-top: 205px; }
  .form-card, .contact-card { padding: 24px 20px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
