:root {
  --orange: #ff650b;
  --orange-hover: #e95400;
  --ink: #202224;
  --dark: #191c1e;
  --muted: #666a6d;
  --light: #f5f5f3;
  --line: #e5e6e3;
  --heading: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  --body: 'Inter', Arial, sans-serif;
  --radius: 6px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 105px;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.7;
  background: white;
  -webkit-font-smoothing: antialiased;
}

body.modal-open {
  overflow: hidden;
}

button, a {
  -webkit-tap-highlight-color: transparent;
}

button, input {
  font: inherit;
}

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

button {
  cursor: pointer;
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

button:focus-visible, a:focus-visible {
  outline: 3px solid #ff9a60;
  outline-offset: 5px;
}

button:disabled {
  opacity: 0.4;
  cursor: default;
}

[hidden] {
  display: none !important;
}

h1, h2, h3, p, figure {
  margin: 0;
}

h1, h2, h3 {
  font-family: var(--heading);
  line-height: 1.08;
}

p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

h2 {
  font-size: 46px;
  font-weight: 700;
  letter-spacing: -0.3px;
}

h2 span {
  color: var(--orange);
}

h3 {
  font-size: 26px;
  font-weight: 600;
}

svg.icon {
  height: 23px;
  width: 23px;
  display: inline-block;
  flex-shrink: 0;
  vertical-align: middle;
  stroke-width: 1.7;
}

i[data-icon] {
  display: inline-block;
  width: 23px;
  height: 23px;
}

.container {
  width: min(1180px, calc(100% - 80px));
  margin-inline: auto;
}

.section {
  padding: 90px 0;
}

.eyebrow {
  color: var(--orange);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  line-height: 1.5;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.short-line {
  width: 28px;
  height: 2.5px;
  background: var(--orange);
  display: inline-block;
  border-radius: 2px;
}

.orange {
  color: var(--orange);
}

.section-heading {
  margin-bottom: 38px;
}

.section-heading > p:last-child:not(.eyebrow) {
  margin-top: 15px;
  font-size: 17px;
  line-height: 1.6;
}

.centered {
  text-align: center;
}

.centered .eyebrow {
  justify-content: center;
}

.heading-split {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 40px;
}

.heading-split > p, .gallery-heading-copy {
  max-width: 380px;
  font-size: 16px;
  line-height: 1.6;
  padding-bottom: 5px;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 11px;
  border: 1px solid var(--orange);
  padding: 16px 26px;
  color: white;
  background: var(--orange);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.3px;
  line-height: 1.4;
  border-radius: var(--radius);
  min-height: 54px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}

.button:hover {
  background: var(--orange-hover);
  border-color: var(--orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 7px 20px #ff650b20;
}

.button svg {
  width: 20px;
  height: 20px;
}

.button svg:last-child:not(:first-child) {
  width: 17px;
  margin-left: 5px;
}

.button-small {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3px;
  min-height: 44px;
  padding: 11px 18px;
  gap: 8px;
}

.button-dark {
  background: var(--ink);
  border-color: var(--ink);
}

.button-dark:hover {
  background: #353a3e;
  border-color: #353a3e;
}

.button-outline {
  background: transparent;
  border-color: #4b4d4e;
}

.button-outline:hover {
  border-color: var(--orange);
}

.text-link {
  color: var(--orange);
  font-size: 14px;
  font-weight: 700;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  letter-spacing: 0.3px;
}

.text-link:hover {
  color: #ff964f;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: #9be481;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 4px #9be48113;
  flex-shrink: 0;
}

.skip-link {
  position: fixed;
  top: -100px;
  left: 20px;
  background: white;
  padding: 10px;
  z-index: 200;
}

.skip-link:focus {
  top: 10px;
}

.utility-bar {
  background: var(--ink);
  color: #e4e5e4;
  font-size: 13px;
  letter-spacing: 0.4px;
  min-height: 38px;
  padding: 6px 0;
}

.utility-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 20px;
}

.utility-inner > span, .utility-inner > a {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 500;
}

.utility-inner .icon {
  height: 14px;
  width: 14px;
  color: var(--orange);
}

.utility-inner > a {
  letter-spacing: 0;
  font-size: 13px;
}

.utility-inner > a > span {
  margin-left: 8px;
  color: var(--orange);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fffffff5;
  backdrop-filter: blur(15px);
  border-bottom: 1px solid #eaece7;
  transition: background 0.3s, box-shadow 0.3s;
}

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

.brand {
  width: 183px;
  flex-shrink: 0;
  display: block;
}

.brand img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  gap: 24px;
  height: 100%;
  align-items: center;
}

.desktop-nav a {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.2px;
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  transition: color 0.2s;
  padding: 0 2px;
}

.desktop-nav a:after {
  content: '';
  position: absolute;
  bottom: 21px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width 0.2s;
}

.desktop-nav a:hover, .desktop-nav a.active {
  color: var(--orange);
}

.desktop-nav a:hover:after, .desktop-nav a.active:after {
  width: 100%;
}

.site-header.scrolled {
  background: #191c1ef5;
  box-shadow: 0 5px 24px #0002;
  border-bottom-color: #323536;
  color: white;
}

.site-header.scrolled .brand {
  background: white;
  border-radius: 4px;
  padding: 3px 7px;
  width: 183px;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 10px;
}

.mobile-menu {
  display: none;
}

.hero-banner-top {
  width: 100%;
  margin: 0;
  padding: 0;
  background-color: #022052;
  line-height: 0;
  display: block;
}

.hero-banner-top picture {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  line-height: 0;
}

.hero-banner-top img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  margin: 0 auto;
}

.hero {
  position: relative;
  background: #fafaf8;
  overflow: hidden;
}

.hero-inner {
  position: relative;
  z-index: 2;
  pointer-events: none;
}

.hero-copy {
  padding: 58px 0 44px;
  width: 51%;
  pointer-events: auto;
}

.hero-copy .eyebrow {
  font-size: 13px;
  letter-spacing: 1.3px;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: 74px;
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.01;
  max-width: 540px;
}

.hero h1 > span {
  color: var(--orange);
}

.hero h2 {
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 0.3px;
  margin-top: 22px;
}

.hero-description {
  font-size: 18px;
  line-height: 1.7;
  max-width: 440px;
  margin-top: 14px;
  color: #55595c;
}

.hero-actions {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.hero-actions .button {
  padding-inline: 24px;
  font-size: 15px;
}

.hero-phone {
  display: flex;
  gap: 12px;
  align-items: center;
  line-height: 1.3;
}

.hero-phone > svg {
  color: var(--orange);
  width: 22px;
  height: 22px;
}

.hero-phone small {
  font-size: 12px;
  letter-spacing: 0.8px;
  display: block;
  font-weight: 600;
  color: #6c7072;
  margin-bottom: 4px;
}

.hero-phone strong {
  font-size: 18px;
  font-weight: 700;
}

.hero-indicators {
  display: flex;
  gap: 0;
  border-top: 1px solid #dedfda;
  margin-top: 32px;
  padding-top: 24px;
  max-width: 500px;
}

.hero-indicators > div {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 0 20px;
  border-right: 1px solid #dfe1dc;
}

.hero-indicators > div:first-child {
  padding-left: 0;
}

.hero-indicators > div:last-child {
  border: 0;
  padding-right: 0;
}

.hero-indicators svg {
  color: var(--orange);
  width: 26px;
  height: 26px;
}

.hero-indicators p {
  display: flex;
  flex-direction: column;
  line-height: 1.45;
}

.hero-indicators strong {
  font-size: 15px;
  color: var(--ink);
  font-weight: 800;
}

.hero-indicators p span {
  font-size: 12px;
  letter-spacing: 0.8px;
  color: #6a6f72;
}

.hero-photo {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 48%;
  background: #a5b2b4;
  overflow: hidden;
  clip-path: polygon(5% 0, 100% 0, 100% 100%, 0 100%);
}

.hero-photo > img {
  width: 100%;
  height: 100%;
  object-position: 49% 52%;
}

.hero-photo:after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #0002, transparent 30%, #0001 65%, #0008);
}

.photo-top-label {
  position: absolute;
  top: 26px;
  right: 26px;
  z-index: 1;
  color: white;
  background: #1b2228b0;
  backdrop-filter: blur(10px);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border: 1px solid #ffffff40;
  border-radius: 4px;
}

.hero-photo-card {
  position: absolute;
  bottom: 63px;
  left: 45px;
  right: 38px;
  color: white;
  background: #171e26bd;
  backdrop-filter: blur(13px);
  border: 1px solid #ffffff3d;
  padding: 22px;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 16px;
  border-left: 4px solid var(--orange);
  border-radius: 4px;
  font-size: 13px;
  letter-spacing: 0.4px;
  line-height: 1.6;
}

.hero-photo-card strong {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.shield-outline {
  color: var(--orange);
  padding: 10px;
  border: 1px solid #ff650b60;
  border-radius: 50%;
  line-height: 1;
}

.shield-outline svg {
  width: 26px;
  height: 26px;
}

.card-arrow {
  margin-left: auto;
  color: var(--orange);
  font-size: 27px;
}

.photo-index {
  position: absolute;
  bottom: 26px;
  left: 46px;
  font-size: 11px;
  color: #fffd;
  letter-spacing: 1.5px;
  z-index: 1;
}

.emergency-strip {
  background: var(--ink);
  color: white;
  border-bottom: 3px solid var(--orange);
  padding: 24px 0;
}

.emergency-inner {
  display: flex;
  gap: 20px;
  align-items: center;
}

.emergency-icon {
  display: grid;
  place-items: center;
  border: 1px solid #ff650b50;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  flex-shrink: 0;
  color: var(--orange);
}

.emergency-icon svg {
  width: 24px;
  height: 24px;
}

.emergency-inner h2 {
  font-size: 30px;
  letter-spacing: 0.2px;
}

.emergency-inner p {
  font-size: 15px;
  color: #cbd0d3;
  margin-top: 5px;
}

.emergency-inner .button {
  margin-left: auto;
}

.strip-phone {
  margin-left: auto;
  font-family: var(--heading);
  font-size: 28px;
  font-weight: 700;
  white-space: nowrap;
}

.difference-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 45px;
}

.difference-grid article {
  text-align: center;
  padding: 0 20px;
  border-right: 1px solid var(--line);
}

.difference-grid article:last-child {
  border: 0;
}

.difference-grid .icon {
  color: var(--orange);
  height: 34px;
  width: 34px;
  margin-bottom: 18px;
}

.difference-grid h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}

.difference-grid p {
  font-size: 14px;
  line-height: 1.7;
}

.services-section {
  background: var(--light);
  border-top: 1px solid #eeefeb;
}

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

.service-card {
  background: #fff;
  border: 1px solid #e7e8e4;
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 30px #19212b0c;
}

.service-photo {
  position: relative;
  height: 205px;
}

.service-photo > img {
  height: 100%;
  width: 100%;
  object-position: center 57%;
  transition: transform 0.4s;
}

.service-photo:after {
  content: '';
  inset: 0;
  position: absolute;
  background: linear-gradient(180deg, #0002, transparent 50%);
  pointer-events: none;
}

.service-number {
  position: absolute;
  top: 14px;
  left: 18px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  z-index: 1;
}

.service-icon {
  position: absolute;
  bottom: -21px;
  right: 24px;
  z-index: 2;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: var(--orange);
  color: white;
  border-radius: 4px;
  box-shadow: 0 4px 15px #ff650b30;
}

.service-content {
  padding: 30px 24px 23px;
}

.service-content h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 12px;
}

.service-content p {
  font-size: 15px;
  line-height: 1.7;
  min-height: 48px;
}

.service-content > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--line);
  padding-top: 18px;
  margin-top: 20px;
  color: var(--orange);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.service-content > a svg {
  width: 18px;
  height: 18px;
}

.motorcycle-art {
  background: radial-gradient(ellipse at center, #343b3d, #202628);
  color: #ff8039;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  isolation: isolate;
}

.motorcycle-art:before {
  content: '';
  position: absolute;
  inset: 22px;
  border: 1px solid #ffffff12;
  z-index: -1;
}

.motorcycle-art > svg {
  height: 85px;
  width: 130px;
  stroke-width: 1.1;
}

.art-label {
  font-size: 12px;
  letter-spacing: 2px;
  color: #ccd0cf;
  font-weight: 600;
}

.service-help {
  position: relative;
  background: var(--ink);
  border-radius: var(--radius);
  padding: 36px 28px;
  color: white;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
}

.outline-number {
  position: absolute;
  right: 5px;
  top: -15px;
  font-family: var(--heading);
  font-weight: 800;
  font-size: 150px;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px #ffffff0e;
  pointer-events: none;
}

.outline-number span {
  font-size: 80px;
}

.service-help h3 {
  font-size: 36px;
  line-height: 1.1;
  position: relative;
  margin: 12px 0 20px;
}

.service-help p {
  font-size: 15px;
  line-height: 1.7;
  color: #c0c5c7;
  max-width: 270px;
  margin-bottom: 27px;
}

.service-help .button {
  font-size: 14px;
  padding-inline: 20px;
}

.help-footnote {
  font-size: 13px;
  color: #9ea5a8;
  margin-top: 19px;
}

.dark-section {
  background: var(--dark);
  color: white;
}

.dark-section p {
  color: #b0b6b9;
}

.dark-section .eyebrow {
  color: var(--orange);
}

.machines-section {
  padding: 76px 0;
  background: #1c2022;
  position: relative;
  overflow: hidden;
}

.machines-section:before {
  content: '';
  position: absolute;
  width: 700px;
  height: 700px;
  border: 1px solid #ffffff05;
  transform: rotate(-25deg);
  top: 50px;
  left: -450px;
  pointer-events: none;
}

.machines-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 76px;
  align-items: center;
}

.machines-copy h2 {
  font-size: 52px;
  line-height: 1.05;
}

.machines-copy .machine-subtitle {
  font-family: var(--heading);
  font-size: 24px;
  letter-spacing: 2.5px;
  color: #f6f6f4;
  margin: 15px 0 22px;
}

.machines-copy > p:not(.eyebrow):not(.machine-subtitle) {
  font-size: 16px;
  line-height: 1.75;
  max-width: 480px;
}

.machine-tags {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 16px;
  margin: 25px 0 28px;
  color: #e0e2e3;
  font-size: 15px;
  font-weight: 500;
}

.machine-tags .icon {
  color: var(--orange);
  width: 17px;
  height: 17px;
  margin-right: 6px;
}

.machines-copy small {
  display: block;
  font-size: 13px;
  color: #9aa4a8;
  margin-top: 14px;
}

.machines-photo {
  height: 480px;
  position: relative;
  border-radius: 5px;
}

.machines-photo:before {
  content: '';
  position: absolute;
  right: -12px;
  top: -12px;
  width: 100px;
  height: 100px;
  border-top: 3px solid var(--orange);
  border-right: 3px solid var(--orange);
}

.machines-photo > img {
  width: 100%;
  height: 100%;
  border-radius: 5px;
  object-position: 60% center;
}

.machine-photo-tag {
  position: absolute;
  bottom: 22px;
  left: 22px;
  right: 22px;
  background: #1b2024e8;
  backdrop-filter: blur(10px);
  border-left: 4px solid var(--orange);
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 13px;
  letter-spacing: 0.3px;
  line-height: 1.6;
}

.machine-photo-tag .icon {
  color: var(--orange);
  width: 31px;
  height: 31px;
}

.machine-photo-tag strong {
  font-size: 15px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}

.about-photo {
  height: 485px;
  position: relative;
  margin-bottom: 20px;
}

.about-photo > img {
  width: 100%;
  height: 100%;
  border-radius: 5px;
  object-position: center 32%;
}

.about-stamp {
  position: absolute;
  bottom: 32px;
  right: -32px;
  display: flex;
  gap: 17px;
  align-items: center;
  background: var(--orange);
  color: white;
  padding: 20px 24px;
  border: 6px solid white;
  border-radius: 6px;
}

.about-stamp strong {
  font-family: var(--heading);
  font-size: 56px;
  line-height: 1;
}

.about-stamp strong span {
  font-size: 38px;
}

.about-stamp > span {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.5px;
}

.image-caption {
  display: block;
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--muted);
  margin-top: 14px;
  font-weight: 600;
}

.about-copy h3 {
  font-size: 26px;
  line-height: 1.25;
  letter-spacing: 0.3px;
  margin: 22px 0;
}

.about-copy > p:not(.eyebrow) {
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 15px;
}

.about-values {
  display: flex;
  gap: 20px;
  margin: 25px 0;
  font-size: 15px;
  font-weight: 600;
}

.about-values svg {
  color: var(--orange);
  width: 18px;
  height: 18px;
}

.gallery-heading-copy .text-link {
  margin-top: 20px;
  font-size: 14px;
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 33px 0 25px;
}

.gallery-filters button {
  border: 1px solid #414648;
  border-radius: 4px;
  background: transparent;
  color: #d0d5d7;
  font-size: 14px;
  font-weight: 600;
  padding: 11px 20px;
  min-height: 44px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.gallery-filters button.is-active, .gallery-filters button:hover {
  color: white;
  background: var(--orange);
  border-color: var(--orange);
}

.photo-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 220px;
  gap: 15px;
  grid-auto-flow: dense;
}

.gallery-item {
  position: relative;
  border: 0;
  padding: 0;
  overflow: hidden;
  border-radius: 5px;
  text-align: left;
  background: #2a2f32;
}

.gallery-tall {
  grid-row: span 2;
}

.gallery-wide {
  grid-column: span 2;
}

.gallery-item > img {
  height: 100%;
  width: 100%;
  transition: transform 0.65s;
  object-position: center 55%;
}

.gallery-item:after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, #000b);
  pointer-events: none;
}

.gallery-item:hover > img {
  transform: scale(1.055);
}

.gallery-caption {
  position: absolute;
  bottom: 22px;
  left: 22px;
  right: 22px;
  z-index: 1;
  display: flex;
  align-items: end;
  justify-content: space-between;
  color: white;
  font-family: var(--heading);
  font-size: 24px;
  line-height: 1.2;
}

.gallery-caption small {
  display: block;
  font-family: var(--body);
  font-size: 12px;
  letter-spacing: 1px;
  margin-bottom: 6px;
  color: #e8e8e8;
  font-weight: 600;
}

.gallery-caption svg {
  width: 32px;
  height: 32px;
  padding: 7px;
  background: #ffffff25;
  border: 1px solid #ffffff40;
  border-radius: 50%;
}

.photo-gallery.filtered {
  grid-auto-rows: 300px;
}

.photo-gallery.filtered .gallery-item {
  grid-column: auto;
  grid-row: auto;
}

.gallery-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 25px;
  font-size: 14px;
  color: #aeb4b7;
  gap: 20px;
}

.gallery-bottom svg {
  height: 17px;
  width: 17px;
  margin: 0 4px;
}

.gallery-bottom > a {
  color: #f0f0f0;
}

.empty-state {
  text-align: center;
  padding: 65px 15px;
  background: #ffffff05;
  border: 1px dashed #ffffff30;
  border-radius: 4px;
  font-size: 16px;
}

.empty-state > a {
  color: var(--orange);
  display: inline-block;
  margin-top: 15px;
  font-weight: 700;
}

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

.documentary-grid article {
  border-radius: 5px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.documentary-grid img {
  height: 240px;
  width: 100%;
  object-position: center 55%;
  border-radius: 5px;
}

.documentary-grid article > div {
  padding: 20px 0;
}

.documentary-grid span {
  font-size: 13px;
  letter-spacing: 1.2px;
  font-weight: 700;
  color: var(--orange);
}

.documentary-grid h3 {
  font-size: 26px;
  font-weight: 700;
  margin: 10px 0 8px;
}

.documentary-grid p {
  font-size: 15px;
  line-height: 1.6;
}

.mid-cta {
  background: var(--orange);
  padding: 44px 0;
  position: relative;
  overflow: hidden;
}

.mid-cta:after {
  content: '';
  position: absolute;
  right: 30%;
  top: -80px;
  width: 160px;
  height: 350px;
  transform: skew(-22deg);
  border-left: 1px solid #ffffff26;
  border-right: 1px solid #ffffff26;
  pointer-events: none;
}

.mid-cta .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  position: relative;
  z-index: 1;
}

.mid-cta h2 {
  color: #fff;
  font-size: 38px;
}

.mid-cta .eyebrow {
  color: #3b1d0c;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 800;
}

.mid-cta p:not(.eyebrow) {
  color: #fffde7;
  font-size: 17px;
  margin-top: 9px;
}

.mid-cta .container > div:last-child {
  text-align: center;
}

.mid-phone {
  display: block;
  margin-top: 10px;
  color: white;
  font-family: var(--heading);
  font-size: 26px;
  font-weight: 700;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 23px;
}

.video-card {
  min-width: 0;
}

.video-cover {
  height: 237px;
  position: relative;
  border: 0;
  padding: 0;
  width: 100%;
  display: block;
  overflow: hidden;
  background: #323536;
  border-radius: 5px;
}

.video-cover > img {
  width: 100%;
  height: 100%;
  opacity: 0.65;
  object-position: center 54%;
  transition: transform 0.5s, opacity 0.5s;
}

.video-cover:hover > img {
  transform: scale(1.04);
  opacity: 0.8;
}

.video-cover:after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent, #0004);
}

.play-icon {
  display: grid;
  place-items: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--orange);
  color: white;
  border-radius: 50%;
  width: 58px;
  height: 58px;
  z-index: 1;
  box-shadow: 0 0 0 9px #ffffff17;
  transition: box-shadow 0.3s;
}

.play-icon svg {
  width: 22px;
  height: 22px;
  margin-left: 3px;
  fill: currentColor;
  stroke-width: 0;
}

.video-cover:hover .play-icon {
  box-shadow: 0 0 0 14px #ffffff20;
}

.video-index {
  position: absolute;
  left: 16px;
  top: 13px;
  font-size: 12px;
  font-weight: 600;
  color: white;
  letter-spacing: 0.8px;
  z-index: 1;
  background: #10171985;
  padding: 4px 10px;
  border-radius: 3px;
}

.video-label {
  position: absolute;
  bottom: 14px;
  left: 16px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  color: white;
  z-index: 1;
}

.video-card h3 {
  font-size: 26px;
  font-weight: 700;
  margin: 17px 0 9px;
}

.video-card p {
  font-size: 15px;
  line-height: 1.65;
  max-width: 320px;
}

.videos-section #more-videos {
  display: flex;
  margin: 38px auto 0;
  font-size: 14px;
  font-weight: 700;
}

.video-note {
  text-align: center;
  font-size: 14px !important;
  line-height: 1.7;
  margin-top: 18px;
  color: #a4abb0;
}

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

.help-grid article {
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 27px 22px;
  display: flex;
  flex-direction: column;
  align-items: start;
  transition: border-color 0.2s;
}

.help-grid article:hover {
  border-color: var(--orange);
}

.help-grid article > svg {
  height: 34px;
  width: 34px;
  color: var(--orange);
  margin-bottom: 22px;
}

.help-grid h3 {
  font-size: 24px;
  line-height: 1.15;
  font-weight: 700;
}

.help-grid p {
  font-size: 15px;
  line-height: 1.65;
  margin: 15px 0 23px;
}

.help-grid a {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--orange);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.help-grid a svg {
  width: 17px;
  height: 17px;
}

.regions-section {
  background: var(--light);
  border-block: 1px solid var(--line);
}

.regions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 110px;
  align-items: center;
}

.regions-grid h2 {
  margin-bottom: 25px;
}

.regions-grid > div > p:not(.eyebrow) {
  font-size: 16px;
  margin-bottom: 20px;
  line-height: 1.75;
}

.regions-grid .button {
  margin-top: 8px;
}

.coverage-card {
  background: white;
  border: 1px solid var(--line);
  box-shadow: 0 14px 40px #282a3007;
  padding: 35px 30px;
  text-align: center;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
}

.coverage-card:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 4px;
  background: var(--orange);
}

.coverage-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #fff0e5;
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
  color: var(--orange);
}

.coverage-icon svg {
  width: 32px;
  height: 32px;
}

.coverage-card .eyebrow {
  justify-content: center;
  font-size: 13px;
  letter-spacing: 1.3px;
  color: #6f7376;
  margin-bottom: 10px;
}

.coverage-card h3 {
  font-size: 42px;
  font-weight: 700;
}

.coverage-card h3 > span {
  color: #9ca0a1;
  font-size: 28px;
}

.coverage-divider {
  height: 1px;
  background: var(--line);
  max-width: 210px;
  margin: 23px auto;
}

.coverage-card > strong {
  font-family: var(--heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--orange);
  line-height: 1.2;
}

.coverage-card > p {
  font-size: 15px !important;
  line-height: 1.6;
  margin-top: 10px;
  margin-bottom: 18px !important;
}

.coverage-card .coverage-note {
  font-size: 14px !important;
  color: #7b8084;
}

.coverage-status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 13px;
  letter-spacing: 0.5px;
  font-weight: 700;
  padding-top: 19px;
  border-top: 1px solid var(--line);
}

.coverage-status .status-dot {
  background: var(--orange);
  box-shadow: 0 0 0 4px #ff650b13;
}

.city-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  text-align: left;
  margin: 20px 0;
}

.city-list h4 {
  font-size: 14px;
  margin: 0;
}

.city-list p {
  font-size: 13px;
}

.location-section {
  padding: 0 0 85px;
  background: var(--light);
}

.location-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  background: white;
  border: 1px solid var(--line);
  border-radius: 5px;
  overflow: hidden;
}

.map-art {
  position: relative;
  overflow: hidden;
  min-height: 340px;
  background-color: #e8ede7;
  background-image: linear-gradient(30deg, transparent 46%, #d5e0d5 46%, #d5e0d5 58%, transparent 58%), linear-gradient(130deg, transparent 40%, #dfe8db 40%, #dfe8db 70%, transparent 70%);
}

.map-art:before {
  content: '';
  position: absolute;
  width: 80px;
  height: 500px;
  background: #c3dce0;
  transform: rotate(30deg);
  right: 35px;
  top: -50px;
  border-inline: 9px solid #d8e7e7;
}

.map-road {
  position: absolute;
  background: #fff;
  border: 1px solid #dde0d9;
  transform: rotate(-27deg);
  height: 14px;
  width: 900px;
  top: 55%;
  left: -100px;
}

.road-two {
  transform: rotate(55deg);
  top: 50%;
  left: -180px;
  height: 10px;
}

.road-three {
  transform: rotate(-27deg);
  top: 15%;
  height: 7px;
}

.road-four {
  transform: rotate(55deg);
  left: 25%;
  height: 7px;
}

.map-ring {
  position: absolute;
  border: 1px solid #ff650b35;
  background: #ff650b06;
  border-radius: 50%;
  left: 47%;
  top: 44%;
  transform: translate(-50%, -50%);
  width: 140px;
  height: 140px;
}

.ring-two {
  width: 250px;
  height: 250px;
}

.map-marker {
  position: absolute;
  left: 47%;
  top: 39%;
  transform: translate(-50%, -50%);
  color: white;
  background: var(--orange);
  border: 5px solid white;
  box-shadow: 0 5px 15px #392c2322;
  border-radius: 50%;
  height: 54px;
  width: 54px;
  display: grid;
  place-items: center;
}

.map-city {
  position: absolute;
  top: 54%;
  left: 47%;
  transform: translateX(-50%);
  text-align: center;
  font-size: 17px;
  font-weight: 800;
  background: #fffef6e8;
  padding: 8px 20px;
  border-radius: 4px;
  line-height: 1.4;
  box-shadow: 0 4px 12px #00000008;
}

.map-city small {
  display: block;
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--muted);
  margin-top: 3px;
  font-weight: 600;
}

.map-label {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 12px;
  letter-spacing: 1px;
  color: #5d6e61;
  font-weight: 700;
}

.map-disclaimer {
  position: absolute;
  bottom: 12px;
  left: 15px;
  font-size: 11px;
  color: #647268;
  background: #eff4ecbd;
  padding: 3px 9px;
  border-radius: 3px;
}

.location-copy {
  padding: 40px;
}

.location-copy h2 {
  font-size: 32px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.location-copy p:not(.eyebrow) {
  font-size: 15px;
  margin-bottom: 14px;
  line-height: 1.75;
}

.location-copy .button {
  margin-top: 12px;
}

.location-copy .eyebrow {
  font-size: 13px;
}

.location-copy .eyebrow svg {
  height: 16px;
  width: 16px;
}

.reviews-section {
  padding-top: 15px;
}

.reviews-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  align-items: center;
  gap: 90px;
}

.reviews-inner > div > p:last-child {
  font-size: 16px;
  line-height: 1.7;
  margin-top: 22px;
}

.google-review-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  border: 1px solid var(--line);
  padding: 30px;
  border-radius: 6px;
  transition: border-color 0.2s;
}

.google-review-card:hover {
  border-color: var(--orange);
}

.google-word {
  font-size: 28px;
  letter-spacing: -1px;
  color: #54575a;
  font-weight: 600;
}

.review-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: var(--light);
  border-radius: 50%;
  color: var(--orange);
}

.google-review-card > strong {
  width: 100%;
  font-family: var(--heading);
  font-size: 28px;
  line-height: 1.15;
  font-weight: 700;
}

.google-review-card .text-link {
  padding-top: 20px;
  border-top: 1px solid var(--line);
  width: 100%;
  justify-content: space-between;
  font-size: 14px;
}

.final-cta {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 74px 0 80px;
  background: radial-gradient(ellipse at 100% 60%, #452b20 0%, #202326 42%, #191c1e 75%);
}

.final-cta:before, .final-cta:after {
  content: '';
  position: absolute;
  right: 0;
  top: -60px;
  width: 230px;
  height: 700px;
  border-left: 1px solid #ff650b22;
  transform: rotate(28deg);
  pointer-events: none;
}

.final-cta:after {
  right: 70px;
}

.final-cta .container {
  position: relative;
  z-index: 1;
}

.final-cta .eyebrow {
  justify-content: center;
  font-size: 14px;
  letter-spacing: 1px;
}

.final-cta h2 {
  font-size: 72px;
  line-height: 1.02;
}

.final-cta h3 {
  font-size: 26px;
  letter-spacing: 0.5px;
  margin-top: 18px;
}

.final-cta p:not(.eyebrow) {
  font-size: 18px;
  line-height: 1.6;
  margin-top: 15px;
}

.final-phone {
  display: block;
  font-family: var(--heading);
  font-size: 52px;
  font-weight: 700;
  line-height: 1.2;
  margin: 24px auto 28px;
  width: fit-content;
}

.final-cta .button {
  padding: 18px 34px;
  font-size: 16px;
}

.contact-section {
  padding: 70px 0;
}

.contact-section h2 {
  font-size: 44px;
}

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

.contact-grid > a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-right: 1px solid var(--line);
  padding: 8px 15px;
  transition: color 0.2s;
}

.contact-grid > a:last-child {
  border: 0;
}

.contact-grid > a:hover {
  color: var(--orange);
}

.contact-grid > a > svg {
  height: 30px;
  width: 30px;
  color: var(--orange);
  margin-bottom: 18px;
}

.contact-grid small {
  font-size: 13px;
  letter-spacing: 0.8px;
  color: var(--muted);
  font-weight: 600;
}

.contact-grid strong {
  font-size: 22px;
  font-weight: 700;
  margin: 8px 0 16px;
}

.contact-grid span {
  font-size: 14px;
  letter-spacing: 0.4px;
  color: var(--orange);
  font-weight: 700;
}

.site-footer {
  background: #151819;
  color: white;
  padding: 54px 0 0;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.1fr 0.7fr 1.1fr 1.15fr;
  gap: 65px;
  padding-bottom: 44px;
}

.footer-brand img {
  width: 186px;
  height: auto;
  background: white;
  border-radius: 4px;
  padding: 8px;
}

.footer-brand p {
  font-size: 15px;
  color: #adb5b8;
  line-height: 1.7;
  margin-top: 16px;
}

.footer-main h3 {
  font-family: var(--body);
  font-size: 14px;
  letter-spacing: 1px;
  font-weight: 700;
  margin: 10px 0 22px;
  color: #fff;
}

.footer-main nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 18px;
  font-size: 15px;
  color: #adb5b8;
}

.footer-main nav a:hover {
  color: var(--orange);
}

.footer-main > div:nth-child(3) > p {
  font-size: 14px;
  line-height: 2.1;
  color: #adb5b8;
}

.footer-phone {
  font-family: var(--heading);
  font-size: 30px;
  font-weight: 700;
}

.footer-main p svg {
  color: var(--orange);
  height: 16px;
  width: 16px;
  margin-right: 6px;
}

.footer-main > div:last-child > p {
  font-size: 14px;
  margin-top: 7px;
  color: #adb5b8;
}

.footer-main .text-link {
  font-size: 14px;
  margin-top: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.footer-social a {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid #3a3e40;
  border-radius: 4px;
  color: #b3b8ba;
}

.footer-social svg {
  width: 16px;
  height: 16px;
}

.footer-bottom {
  display: flex;
  gap: 25px;
  align-items: center;
  border-top: 1px solid #2b3031;
  min-height: 64px;
  padding-block: 20px;
  color: #8c9599;
  font-size: 13px;
}

.footer-bottom > p {
  color: inherit;
}

.footer-bottom > span {
  margin-left: auto;
  font-size: 12px;
  letter-spacing: 1px;
  font-weight: 600;
}

.footer-bottom > a {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid #3d4345;
  border-radius: 4px;
  font-size: 16px;
}

.floating-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 23px;
  z-index: 45;
  background: var(--orange);
  border: 1px solid #ffa76f;
  color: white;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3px;
  border-radius: 50px;
  box-shadow: 0 6px 25px #74310730;
  animation: pulse 4s infinite;
}

.floating-whatsapp svg {
  height: 24px;
  width: 24px;
}

.mobile-contact-bar, .mobile-text {
  display: none;
}

.media-dialog {
  position: fixed;
  inset: 0;
  border: 0;
  padding: 60px 70px 55px;
  max-width: 100vw;
  max-height: 100dvh;
  width: 100vw;
  height: 100dvh;
  background: #111519f7;
  color: white;
  margin: 0;
}

.media-dialog::backdrop {
  background: #000d;
}

.media-dialog[open] {
  display: flex;
  align-items: center;
  justify-content: center;
}

.media-dialog figure {
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.media-dialog figure > img {
  max-width: 100%;
  max-height: calc(100dvh - 160px);
  width: auto;
  height: auto;
  object-fit: contain;
}

.media-dialog figcaption {
  display: flex;
  gap: 30px;
  justify-content: space-between;
  width: 100%;
  font-size: 15px;
  color: #cbd0d2;
}

.dialog-close, .dialog-prev, .dialog-next, .fullscreen-button {
  position: absolute;
  color: white;
  border: 1px solid #ffffff40;
  background: #ffffff0d;
  border-radius: 50%;
  height: 44px;
  width: 44px;
  display: grid;
  place-items: center;
  z-index: 2;
}

.dialog-close {
  right: 22px;
  top: 18px;
}

.dialog-prev {
  left: 15px;
  top: calc(50% - 22px);
}

.dialog-next {
  right: 15px;
  top: calc(50% - 22px);
}

.fullscreen-button {
  bottom: 12px;
  right: 22px;
  border-radius: 4px;
  width: auto;
  height: 36px;
  padding: 6px 12px;
  display: flex;
  gap: 6px;
  font-size: 13px;
}

.fullscreen-button svg {
  width: 16px;
  height: 16px;
}

.video-dialog[open] {
  flex-direction: column;
  gap: 20px;
}

.video-dialog h2 {
  font-size: 28px;
}

.video-dialog video {
  max-height: calc(100dvh - 170px);
  max-width: 100%;
  background: black;
  width: auto;
  height: 100%;
}

.video-dialog > p {
  font-size: 15px;
  text-align: center;
  color: white;
}

.video-dialog a {
  color: var(--orange);
  text-decoration: underline;
}

@keyframes pulse {
  0%, 70%, 100% {
    box-shadow: 0 0 0 0 #ff650b25, 0 6px 25px #74310730;
  }
  85% {
    box-shadow: 0 0 0 10px #ff650b00, 0 6px 25px #74310730;
  }
}

@media (min-width: 1500px) {
  .hero-photo {
    width: 49%;
  }
  .hero-copy {
    padding-block: 75px 55px;
  }
  .hero h1 {
    font-size: 84px;
  }
  .hero-photo-card {
    max-width: 480px;
  }
}

@media (max-width: 1150px) {
  .container {
    width: calc(100% - 56px);
  }
  .header-inner {
    gap: 16px;
  }
  .brand, .site-header.scrolled .brand {
    width: 158px;
  }
  .desktop-nav {
    gap: 16px;
  }
  .desktop-nav a {
    font-size: 14px;
  }
  .header-whatsapp {
    font-size: 12px;
    padding: 10px 14px;
  }
  .hero h1 {
    font-size: 64px;
  }
  .hero-copy .eyebrow {
    font-size: 12px;
    letter-spacing: 1px;
  }
  .hero-actions {
    gap: 15px;
  }
  .hero-actions .button {
    font-size: 14px;
    padding-inline: 18px;
  }
  .hero-phone strong {
    font-size: 16px;
  }
  .hero-indicators > div {
    padding-inline: 13px;
    gap: 9px;
  }
  .hero-photo-card {
    left: 30px;
    right: 22px;
    padding: 18px;
  }
  .hero-photo-card strong {
    font-size: 15px;
  }
  .emergency-inner {
    gap: 15px;
  }
  .emergency-inner p {
    max-width: 270px;
    font-size: 14px;
  }
  .strip-phone {
    font-size: 24px;
  }
  .emergency-inner .button {
    font-size: 14px;
    padding-inline: 18px;
  }
  .machines-grid {
    gap: 45px;
  }
  .about-grid {
    gap: 65px;
  }
  .regions-grid {
    gap: 60px;
  }
  .help-grid {
    gap: 14px;
  }
  .help-grid article {
    padding: 23px 15px;
  }
  .help-grid a {
    font-size: 13px;
  }
  .footer-main {
    gap: 30px;
  }
  .service-content h3 {
    font-size: 24px;
  }
  .service-help h3 {
    font-size: 33px;
  }
  .gallery-caption {
    font-size: 23px;
  }
}

@media (max-width: 950px) {
  .floating-whatsapp {
    display: none;
  }
  .desktop-nav {
    display: none;
  }
  .header-inner {
    justify-content: initial;
    height: 83px;
  }
  .brand, .site-header.scrolled .brand {
    width: 172px;
    margin-right: auto;
  }
  .menu-toggle {
    display: block;
    order: 2;
  }
  .header-whatsapp {
    order: 3;
    font-size: 13px;
  }
  .mobile-menu {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--dark);
    color: white;
    padding: 18px 28px 28px;
    box-shadow: 0 16px 30px #0003;
    max-height: calc(100dvh - 90px);
    overflow: auto;
    border-top: 1px solid #ffffff15;
  }
  .mobile-menu:not([hidden]) {
    display: flex;
  }
  .mobile-menu > a:not(.button) {
    padding: 13px 5px;
    border-bottom: 1px solid #ffffff10;
    font-size: 16px;
    font-weight: 500;
  }
  .mobile-menu .button {
    margin-top: 16px;
    font-size: 15px;
  }
  .hero h1 {
    font-size: 54px;
  }
  .hero-copy {
    padding-top: 42px;
    width: 53%;
  }
  .hero h2 {
    font-size: 24px;
  }
  .hero-photo {
    width: 46%;
  }
  .hero-description {
    max-width: 340px;
    font-size: 16px;
  }
  .hero-actions {
    align-items: start;
    flex-direction: column;
    gap: 17px;
  }
  .hero-actions .button {
    font-size: 14px;
    padding: 15px 22px;
  }
  .hero-phone strong {
    font-size: 17px;
  }
  .hero-phone small {
    font-size: 12px;
  }
  .hero-phone {
    gap: 12px;
  }
  .hero-indicators {
    max-width: 370px;
    margin-top: 25px;
  }
  .hero-indicators strong {
    font-size: 14px;
  }
  .hero-indicators p span {
    font-size: 11px;
  }
  .hero-indicators > div {
    padding-inline: 12px;
    gap: 8px;
  }
  .hero-indicators svg {
    width: 24px;
    height: 24px;
  }
  .hero-photo-card {
    bottom: 70px;
    left: 26px;
    right: 18px;
    gap: 12px;
    padding: 16px;
    font-size: 12px;
  }
  .hero-photo-card strong {
    font-size: 14px;
  }
  .hero-photo-card .shield-outline {
    padding: 8px;
  }
  .hero-photo-card .card-arrow {
    display: none;
  }
  .photo-top-label {
    right: 15px;
    font-size: 11px;
    letter-spacing: 0.8px;
    padding: 9px 12px;
  }
  .photo-index {
    left: 28px;
    font-size: 10px;
  }
  .emergency-inner h2 {
    font-size: 26px;
  }
  .strip-phone {
    display: none;
  }
  .emergency-inner p {
    max-width: 100%;
    font-size: 14px;
  }
  .emergency-inner .button {
    margin-left: auto;
    font-size: 14px;
  }
  .section {
    padding: 68px 0;
  }
  h2 {
    font-size: 40px;
  }
  .difference-grid article {
    padding-inline: 13px;
  }
  .difference-grid h3 {
    font-size: 20px;
  }
  .difference-grid p {
    font-size: 14px;
  }
  .services-grid {
    gap: 18px;
    grid-template-columns: repeat(2, 1fr);
  }
  .service-photo {
    height: 210px;
  }
  .service-content h3 {
    font-size: 25px;
  }
  .machines-grid {
    gap: 35px;
  }
  .machines-copy h2 {
    font-size: 46px;
  }
  .machines-copy .machine-subtitle {
    font-size: 21px;
    letter-spacing: 2px;
  }
  .machines-photo {
    height: 475px;
  }
  .machine-tags {
    grid-template-columns: 1fr;
    gap: 10px;
    margin: 20px 0;
    font-size: 14px;
  }
  .machine-photo-tag {
    left: 15px;
    right: 15px;
    padding: 14px;
    gap: 12px;
    font-size: 12px;
  }
  .machine-photo-tag strong {
    font-size: 14px;
  }
  .machine-photo-tag .icon {
    width: 26px;
    height: 26px;
  }
  .about-grid {
    gap: 55px;
  }
  .about-photo {
    height: 475px;
  }
  .about-copy > p:not(.eyebrow) {
    font-size: 15px;
  }
  .about-copy h3 {
    font-size: 24px;
  }
  .about-values {
    gap: 14px;
    font-size: 14px;
  }
  .about-values svg {
    width: 16px;
  }
  .about-stamp {
    right: -25px;
    padding: 16px;
  }
  .about-stamp strong {
    font-size: 48px;
  }
  .about-stamp > span {
    font-size: 12px;
  }
  .photo-gallery {
    grid-auto-rows: 175px;
    gap: 12px;
  }
  .gallery-caption {
    bottom: 16px;
    left: 16px;
    right: 16px;
    font-size: 21px;
  }
  .gallery-caption small {
    font-size: 11px;
    letter-spacing: 0.8px;
  }
  .gallery-heading-copy {
    font-size: 15px;
  }
  .gallery-heading-copy .text-link {
    font-size: 13px;
  }
  .gallery-filters {
    gap: 8px;
  }
  .gallery-filters button {
    padding: 10px 15px;
    font-size: 13px;
  }
  .documentary-grid {
    gap: 20px;
  }
  .documentary-grid img {
    height: 180px;
  }
  .documentary-grid h3 {
    font-size: 24px;
  }
  .mid-cta h2 {
    font-size: 32px;
  }
  .mid-cta .button {
    font-size: 14px;
    padding: 15px 20px;
  }
  .video-cover {
    height: 190px;
  }
  .video-card h3 {
    font-size: 24px;
  }
  .video-grid {
    gap: 23px 18px;
  }
  .help-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
  .help-grid article {
    padding: 27px;
  }
  .help-grid a {
    font-size: 13px;
  }
  .help-grid p {
    font-size: 14px;
  }
  .help-grid h3 {
    font-size: 24px;
  }
  .regions-grid {
    gap: 35px;
  }
  .regions-grid > div > p:not(.eyebrow) {
    font-size: 15px;
  }
  .regions-grid .eyebrow {
    font-size: 12px;
  }
  .coverage-card {
    padding: 30px 20px;
  }
  .coverage-card > strong {
    font-size: 26px;
  }
  .location-copy {
    padding: 30px;
  }
  .location-copy h2 {
    font-size: 28px;
  }
  .location-copy .button {
    font-size: 14px;
    padding-inline: 16px;
  }
  .reviews-inner {
    gap: 40px;
  }
  .google-review-card {
    padding: 25px;
  }
  .google-review-card > strong {
    font-size: 26px;
  }
  .final-cta h2 {
    font-size: 60px;
  }
  .final-cta h3 {
    font-size: 22px;
  }
  .contact-grid strong {
    font-size: 20px;
  }
  .contact-grid small {
    font-size: 12px;
  }
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 25px 80px;
  }
  .footer-main > div:nth-child(2) {
    padding-top: 10px;
  }
  .footer-main nav {
    max-width: 200px;
    font-size: 14px;
  }
  .footer-bottom > span {
    display: none;
  }
  .footer-bottom > a {
    margin-left: auto;
  }
  .floating-whatsapp {
    right: 18px;
    bottom: 20px;
    padding: 13px 18px;
    font-size: 13px;
  }
}

@media (max-width: 650px) {
  html {
    scroll-padding-top: 82px;
  }
  .container {
    width: calc(100% - 36px);
  }
  .section {
    padding: 57px 0;
  }
  .utility-bar {
    height: 32px;
    font-size: 12px;
    letter-spacing: 0.5px;
  }
  .utility-inner {
    gap: 10px;
    justify-content: center;
  }
  .utility-location, .utility-inner > a {
    display: none !important;
  }
  .utility-inner .status-dot {
    width: 6px;
    height: 6px;
  }
  .header-inner {
    height: 74px;
    gap: 9px;
  }
  .brand, .site-header.scrolled .brand {
    width: 145px;
  }
  .site-header.scrolled .brand {
    padding: 4px 6px;
  }
  .header-whatsapp {
    min-height: 42px;
    width: 44px;
    height: 42px;
    padding: 9px;
    flex-shrink: 0;
  }
  .header-whatsapp > span {
    display: none;
  }
  .header-whatsapp .icon {
    width: 22px;
    height: 22px;
  }
  .menu-toggle {
    padding: 9px;
  }
  .mobile-menu {
    padding-inline: 20px;
  }
  .hero {
    display: flex;
    flex-direction: column;
  }
  .hero-inner {
    order: 1;
  }
  .hero-copy {
    width: 100%;
    padding: 29px 0 27px;
  }
  .hero-copy .eyebrow {
    font-size: 12px;
    letter-spacing: 1px;
    gap: 8px;
    margin-bottom: 14px;
  }
  .short-line {
    width: 22px;
  }
  .hero h1 {
    font-size: 46px;
    letter-spacing: -0.4px;
    max-width: 100%;
    line-height: 1.05;
  }
  .hero h2 {
    font-size: 22px;
    margin-top: 16px;
    letter-spacing: 0.2px;
  }
  .hero-description {
    font-size: 16px;
    line-height: 1.65;
    max-width: 350px;
    margin-top: 11px;
  }
  .hero-actions {
    margin-top: 23px;
    gap: 15px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .hero-actions .button {
    padding: 15px 18px;
    gap: 8px;
    font-size: 14px;
    min-height: 50px;
  }
  .hero-actions .button > svg:first-child {
    width: 19px;
  }
  .hero-actions .button > svg:last-child {
    width: 14px;
    margin-left: 0;
  }
  .hero-phone {
    gap: 8px;
  }
  .hero-phone > svg {
    width: 18px;
    height: 18px;
  }
  .hero-phone small {
    font-size: 11px;
    letter-spacing: 0.6px;
  }
  .hero-phone strong {
    font-size: 15px;
  }
  .hero-indicators {
    max-width: 100%;
    margin-top: 23px;
    padding-top: 20px;
    justify-content: space-between;
  }
  .hero-indicators > div {
    padding: 0 10px;
    gap: 8px;
  }
  .hero-indicators svg {
    width: 22px;
    height: 22px;
  }
  .hero-indicators strong {
    font-size: 13px;
  }
  .hero-indicators p span {
    font-size: 11px;
    letter-spacing: 0.5px;
  }
  .hero-photo {
    order: 2;
    position: relative;
    inset: auto;
    width: 100%;
    height: 340px;
    clip-path: none;
  }
  .hero-photo > img {
    object-position: center 53%;
  }
  .photo-top-label {
    top: 16px;
    right: 18px;
    font-size: 11px;
    padding: 8px 12px;
  }
  .hero-photo-card {
    left: 18px;
    right: 18px;
    bottom: 43px;
    padding: 14px 18px;
    gap: 13px;
    font-size: 12px;
    max-width: 360px;
  }
  .hero-photo-card strong {
    font-size: 14px;
  }
  .hero-photo-card .shield-outline svg {
    height: 22px;
    width: 22px;
  }
  .hero-photo-card .card-arrow {
    display: block;
    font-size: 22px;
  }
  .photo-index {
    left: 22px;
    bottom: 16px;
    font-size: 10px;
    letter-spacing: 1.2px;
  }
  .emergency-strip {
    padding: 23px 0;
  }
  .emergency-inner {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 12px;
  }
  .emergency-icon {
    width: 42px;
    height: 42px;
  }
  .emergency-icon svg {
    width: 20px;
    height: 20px;
  }
  .emergency-inner h2 {
    font-size: 24px;
  }
  .emergency-inner p {
    font-size: 14px;
    line-height: 1.6;
    max-width: 285px;
  }
  .emergency-inner .button {
    grid-column: 1 / -1;
    width: 100%;
    margin: 8px 0 0;
    font-size: 14px;
    min-height: 50px;
    padding: 14px;
  }
  h2 {
    font-size: 34px;
    line-height: 1.05;
    letter-spacing: -0.2px;
  }
  .eyebrow {
    font-size: 12px;
    letter-spacing: 1px;
    margin-bottom: 12px;
  }
  .section-heading {
    margin-bottom: 28px;
  }
  .section-heading > p:last-child:not(.eyebrow) {
    font-size: 15px;
    line-height: 1.65;
    max-width: 320px;
    margin-inline: auto;
  }
  .heading-split {
    display: block;
  }
  .heading-split > p, .gallery-heading-copy {
    margin-top: 15px;
    font-size: 15px;
    line-height: 1.65;
  }
  .heading-split > p br {
    display: none;
  }
  .difference-grid {
    grid-template-columns: 1fr 1fr;
    gap: 27px 15px;
    margin-top: 34px;
  }
  .difference-grid article {
    padding: 0 12px;
    border: 0;
  }
  .difference-grid article:last-child {
    grid-column: 1 / -1;
    max-width: 240px;
    justify-self: center;
  }
  .difference-grid h3 {
    font-size: 20px;
    margin-bottom: 8px;
  }
  .difference-grid p {
    font-size: 14px;
  }
  .difference-grid .icon {
    width: 30px;
    height: 30px;
    margin-bottom: 14px;
  }
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .service-photo {
    height: 218px;
  }
  .service-content {
    padding: 28px 22px 22px;
  }
  .service-content h3 {
    font-size: 26px;
  }
  .service-content p {
    font-size: 14px;
    min-height: 0;
  }
  .service-content > a {
    font-size: 13px;
  }
  .service-help {
    padding: 28px;
    min-height: 330px;
  }
  .service-help h3 {
    font-size: 34px;
  }
  .service-help p {
    max-width: 280px;
    font-size: 14px;
  }
  .outline-number {
    font-size: 160px;
    right: 12px;
    top: 8px;
  }
  .machines-section {
    padding: 53px 0;
  }
  .machines-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .machines-copy h2 {
    font-size: 42px;
  }
  .machines-copy .machine-subtitle {
    font-size: 20px;
    letter-spacing: 2px;
    margin: 16px 0;
  }
  .machines-copy > p:not(.eyebrow):not(.machine-subtitle) {
    font-size: 15px;
    line-height: 1.7;
  }
  .machine-tags {
    grid-template-columns: 1fr 1fr;
    gap: 12px 8px;
    font-size: 13px;
    margin: 22px 0;
  }
  .machine-tags svg {
    width: 15px;
    height: 15px;
    margin-right: 4px;
  }
  .machines-copy .button {
    font-size: 14px;
    padding: 15px 20px;
  }
  .machines-copy small {
    font-size: 12px;
  }
  .machines-photo {
    height: 355px;
    margin-right: 8px;
  }
  .machines-photo:before {
    right: -8px;
    top: -8px;
    width: 75px;
    height: 75px;
  }
  .machine-photo-tag {
    left: 15px;
    right: 15px;
    bottom: 17px;
    padding: 14px;
    font-size: 12px;
  }
  .machine-photo-tag strong {
    font-size: 13px;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .about-photo {
    height: 365px;
    margin-right: 12px;
    margin-bottom: 20px;
  }
  .about-stamp {
    right: -13px;
    bottom: 22px;
    padding: 15px 18px;
    border-width: 5px;
  }
  .about-stamp strong {
    font-size: 48px;
  }
  .about-stamp > span {
    font-size: 12px;
  }
  .image-caption {
    font-size: 11px;
    letter-spacing: 1px;
  }
  .about-copy h2 {
    font-size: 38px;
  }
  .about-copy h3 {
    font-size: 24px;
    margin: 18px 0;
  }
  .about-copy > p:not(.eyebrow) {
    font-size: 15px;
  }
  .about-values {
    font-size: 14px;
    gap: 14px;
    margin: 22px 0;
  }
  .about-values svg {
    width: 15px;
  }
  .about-copy .button {
    font-size: 14px;
  }
  .gallery-section .section-heading {
    margin-bottom: 23px;
  }
  .gallery-heading-copy .text-link {
    font-size: 13px;
    margin-top: 14px;
  }
  .gallery-filters {
    gap: 8px;
    margin: 24px 0 20px;
  }
  .gallery-filters button {
    font-size: 13px;
    padding: 10px 14px;
    min-height: 40px;
  }
  .photo-gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 150px;
    gap: 10px;
  }
  .gallery-tall {
    grid-row: span 2;
  }
  .gallery-wide {
    grid-column: span 2;
  }
  .gallery-item:nth-child(5) {
    grid-row: span 1;
  }
  .gallery-item:nth-child(6) {
    grid-column: span 2;
    grid-row: span 1;
  }
  .gallery-caption {
    left: 11px;
    right: 11px;
    bottom: 12px;
    font-size: 19px;
  }
  .gallery-caption small {
    font-size: 11px;
    letter-spacing: 0.6px;
    margin-bottom: 4px;
  }
  .gallery-caption svg {
    width: 24px;
    height: 24px;
    padding: 5px;
    flex-shrink: 0;
    margin-left: 4px;
  }
  .photo-gallery.filtered {
    grid-auto-rows: 215px;
  }
  .photo-gallery.filtered .gallery-item {
    grid-column: auto;
    grid-row: auto;
  }
  .gallery-bottom {
    flex-direction: column;
    gap: 14px;
    font-size: 13px;
    margin-top: 20px;
  }
  .gallery-bottom > a {
    align-self: flex-end;
  }
  .empty-state {
    font-size: 14px;
    padding: 45px 18px;
  }
  .documentary-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .documentary-grid img {
    height: 240px;
  }
  .documentary-grid h3 {
    font-size: 26px;
  }
  .documentary-grid article > div {
    padding: 17px 0;
  }
  .mid-cta {
    padding: 34px 0;
  }
  .mid-cta .container {
    flex-direction: column;
    align-items: start;
    gap: 22px;
  }
  .mid-cta h2 {
    font-size: 32px;
    max-width: 330px;
    line-height: 1.08;
  }
  .mid-cta .eyebrow {
    font-size: 12px;
  }
  .mid-cta .container > div:last-child {
    width: 100%;
  }
  .mid-cta .button {
    width: 100%;
    font-size: 14px;
  }
  .mid-phone {
    font-size: 22px;
  }
  .video-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .video-cover {
    height: 235px;
  }
  .video-card h3 {
    font-size: 25px;
  }
  .video-card p {
    font-size: 14px;
    max-width: 100%;
  }
  .video-label {
    font-size: 12px;
  }
  .video-note {
    font-size: 13px !important;
  }
  .videos-section #more-videos {
    font-size: 14px;
    margin-top: 30px;
    width: 100%;
  }
  .help-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .help-grid article {
    padding: 25px;
    position: relative;
  }
  .help-grid article > svg {
    position: absolute;
    top: 26px;
    right: 23px;
    width: 30px;
    height: 30px;
  }
  .help-grid h3 {
    font-size: 24px;
    max-width: 230px;
  }
  .help-grid p {
    margin: 13px 0 20px;
    max-width: 260px;
    font-size: 14px;
  }
  .help-grid a {
    font-size: 13px;
  }
  .regions-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .regions-grid h2 {
    font-size: 38px;
    margin-bottom: 20px;
  }
  .regions-grid .eyebrow {
    font-size: 12px;
  }
  .regions-grid .button {
    font-size: 14px;
    padding-inline: 18px;
  }
  .coverage-card {
    padding: 30px 24px;
  }
  .coverage-card h3 {
    font-size: 38px;
  }
  .coverage-card > strong {
    font-size: 26px;
  }
  .coverage-card .eyebrow {
    font-size: 12px;
  }
  .location-section {
    padding: 0 0 56px;
  }
  .location-grid {
    grid-template-columns: 1fr;
  }
  .map-art {
    min-height: 270px;
  }
  .location-copy {
    padding: 28px 23px;
  }
  .location-copy h2 {
    font-size: 28px;
  }
  .location-copy .button {
    font-size: 14px;
    width: 100%;
  }
  .reviews-section {
    padding-top: 0;
  }
  .reviews-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .reviews-inner h2 {
    font-size: 36px;
  }
  .reviews-inner > div > p:last-child {
    font-size: 15px;
    margin-top: 17px;
  }
  .reviews-inner > div > p:last-child br {
    display: none;
  }
  .google-review-card {
    padding: 25px;
    gap: 20px;
  }
  .google-review-card > strong {
    font-size: 26px;
  }
  .google-review-card .text-link {
    font-size: 13px;
  }
  .final-cta {
    padding: 53px 0 56px;
  }
  .final-cta .eyebrow {
    font-size: 12px;
    letter-spacing: 0.8px;
  }
  .final-cta h2 {
    font-size: 50px;
    line-height: 1.02;
  }
  .final-cta h3 {
    font-size: 22px;
    line-height: 1.3;
    max-width: 320px;
    margin: 18px auto 0;
  }
  .final-cta p:not(.eyebrow) {
    font-size: 16px;
    max-width: 290px;
    margin-inline: auto;
  }
  .final-phone {
    font-size: 40px;
    margin: 22px auto;
  }
  .final-cta .button {
    width: 100%;
    font-size: 15px;
    padding-inline: 18px;
  }
  .contact-section h2 {
    font-size: 36px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .contact-grid > a {
    border: 0;
    border-bottom: 1px solid var(--line);
    padding: 24px 10px;
  }
  .contact-grid small {
    font-size: 12px;
  }
  .contact-grid strong {
    font-size: 20px;
  }
  .contact-grid span {
    font-size: 13px;
  }
  .site-footer {
    padding-top: 39px;
    padding-bottom: 74px;
  }
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 31px 25px;
  }
  .footer-brand {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 22px;
    align-items: center;
  }
  .footer-brand img {
    width: 165px;
    padding: 8px;
  }
  .footer-brand p {
    margin-top: 0;
    font-size: 14px;
  }
  .footer-social {
    margin-top: 0;
  }
  .footer-main > div:nth-child(2) {
    padding-top: 0;
  }
  .footer-main > div:nth-child(4) {
    grid-column: 1 / -1;
    border-top: 1px solid #313536;
    padding-top: 20px;
  }
  .footer-main h3 {
    font-size: 13px;
    letter-spacing: 0.8px;
    margin-bottom: 14px;
  }
  .footer-main p {
    font-size: 14px;
  }
  .footer-main nav {
    font-size: 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .footer-main > div:nth-child(3) > p {
    margin-top: 0;
    line-height: 2;
  }
  .footer-phone {
    font-size: 30px;
  }
  .footer-main > div:last-child > p {
    display: inline-flex;
    margin-right: 14px;
    align-items: center;
    font-size: 14px;
  }
  .footer-main > div:last-child > .text-link {
    display: flex;
    width: fit-content;
  }
  .footer-bottom {
    font-size: 12px;
    gap: 10px;
  }
  .floating-whatsapp {
    bottom: 78px;
    right: 13px;
    padding: 12px 18px;
    font-size: 13px;
    gap: 7px;
    box-shadow: 0 4px 15px #74310730;
  }
  .floating-whatsapp svg {
    height: 22px;
    width: 22px;
  }
  .desktop-text {
    display: none;
  }
  .mobile-text {
    display: inline;
  }
  .mobile-contact-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: grid;
    grid-template-columns: 1fr 1.35fr;
    background: var(--dark);
    padding-bottom: env(safe-area-inset-bottom);
    z-index: 49;
    box-shadow: 0 -3px 18px #0002;
  }
  .mobile-contact-bar > a {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    min-height: 59px;
    color: white;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
  }
  .mobile-contact-bar > a:first-child svg {
    color: var(--orange);
  }
  .mobile-contact-bar > a:last-child {
    background: var(--orange);
  }
  .mobile-contact-bar svg {
    width: 22px;
    height: 22px;
  }
  .media-dialog {
    padding: 60px 16px 65px;
  }
  .media-dialog figure > img {
    max-height: calc(100dvh - 195px);
  }
  .media-dialog figcaption {
    font-size: 13px;
    gap: 15px;
  }
  .dialog-prev, .dialog-next {
    top: auto;
    bottom: 14px;
    width: 38px;
    height: 38px;
  }
  .dialog-prev {
    left: 18px;
  }
  .dialog-next {
    left: 65px;
    right: auto;
  }
  .dialog-close {
    width: 38px;
    height: 38px;
    top: 15px;
    right: 15px;
  }
  .fullscreen-button {
    right: 16px;
    bottom: 15px;
  }
  .video-dialog h2 {
    font-size: 24px;
    text-align: center;
    padding-inline: 10px;
  }
  .video-dialog video {
    max-height: calc(100dvh - 170px);
  }
}

@media (max-width: 370px) {
  .container {
    width: calc(100% - 30px);
  }
  .hero h1 {
    font-size: 40px;
  }
  .hero-copy .eyebrow {
    font-size: 11px;
  }
  .hero-actions {
    gap: 13px;
  }
  .hero-actions .button {
    font-size: 13px;
    padding-inline: 14px;
    gap: 6px;
  }
  .hero-phone strong {
    font-size: 14px;
  }
  .hero-indicators > div {
    padding-inline: 8px;
    gap: 6px;
  }
  .hero-indicators strong {
    font-size: 12px;
  }
  .hero-indicators svg {
    width: 20px;
  }
  .machine-tags {
    font-size: 12px;
  }
  .about-values {
    gap: 9px;
  }
  .gallery-filters button {
    padding-inline: 10px;
  }
  .final-cta h2 {
    font-size: 44px;
  }
}

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