:root {
  --black: #070706;
  --coal: #12100d;
  --charcoal: #1f1c17;
  --steel: #4f5558;
  --gold: #c9a13b;
  --gold-bright: #f3d06a;
  --gold-soft: #f7edcf;
  --red: #9f2f24;
  --paper: #ffffff;
  --mist: #f4f4f1;
  --line: #ded7c8;
  --ink: #12110f;
  --muted: #68645b;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
  --radius: 8px;
  --max: 1200px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.22, 0.61, 0.36, 1);
  --dur-fast: 180ms;
  --dur-med: 560ms;
  --dur-slow: 860ms;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

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

img {
  display: block;
}

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

button,
input,
textarea {
  font: inherit;
}

main {
  overflow: hidden;
}

::selection {
  color: var(--black);
  background: var(--gold-bright);
}

.scroll-progress {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 80;
  height: 3px;
  pointer-events: none;
  background: linear-gradient(90deg, var(--gold-bright), var(--gold), var(--red));
  transform: scaleX(0);
  transform-origin: left center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 82px;
  padding: 10px clamp(18px, 4vw, 56px);
  color: #fff;
  background: rgba(7, 7, 6, 0.96);
  border-bottom: 1px solid rgba(243, 208, 106, 0.28);
  backdrop-filter: blur(14px);
  transition: background-color var(--dur-fast) ease, border-color var(--dur-fast) ease, box-shadow var(--dur-fast) ease;
}

.site-header.is-scrolled {
  background: rgba(7, 7, 6, 0.985);
  border-bottom-color: rgba(243, 208, 106, 0.42);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.24);
}

.brand {
  display: grid;
  grid-template-columns: 54px auto;
  align-items: center;
  gap: 12px;
  min-width: 180px;
  transition: transform var(--dur-fast) var(--ease-smooth);
}

.brand:hover,
.brand:focus-visible {
  transform: translateY(-1px);
}

.brand img {
  width: 54px;
  height: 58px;
  object-fit: contain;
  transition: transform var(--dur-med) var(--ease-smooth);
}

.brand:hover img,
.brand:focus-visible img {
  transform: scale(1.035);
}

.brand span {
  display: grid;
  color: #fff;
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 0.95;
  text-transform: uppercase;
}

.brand small {
  color: var(--gold-bright);
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 1.8vw, 26px);
}

.site-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--gold-bright);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--dur-fast) var(--ease-out);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #fff;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-call {
  position: relative;
  overflow: hidden;
  display: grid;
  min-width: 188px;
  padding: 12px 16px;
  color: var(--black);
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
  transition: transform var(--dur-fast) var(--ease-smooth), box-shadow var(--dur-fast) ease;
}

.header-call::before,
.button::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.38) 45%, transparent 72%);
  transform: translateX(-130%) skewX(-18deg);
  transition: transform 620ms var(--ease-out);
}

.header-call:hover,
.header-call:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(201, 161, 59, 0.24);
}

.header-call:hover::before,
.header-call:focus-visible::before,
.button:hover::before,
.button:focus-visible::before {
  transform: translateX(130%) skewX(-18deg);
}

.header-call span {
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.1;
}

.header-call small {
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.65fr);
  grid-template-rows: 1fr auto auto;
  align-items: end;
  min-height: min(720px, calc(100svh - 96px));
  padding: clamp(44px, 6vw, 86px) clamp(18px, 5vw, 70px) 0;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(7, 7, 6, 0.96) 0%, rgba(7, 7, 6, 0.78) 38%, rgba(7, 7, 6, 0.22) 67%, rgba(7, 7, 6, 0.05) 100%),
    linear-gradient(0deg, rgba(7, 7, 6, 0.72), rgba(7, 7, 6, 0.02) 48%),
    url("/assets/cylinder-01.jpg") 60% 42% / cover no-repeat;
}

.hero::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(180deg, rgba(7, 7, 6, 0.28), transparent 28%),
    radial-gradient(circle at 72% 36%, rgba(243, 208, 106, 0.16), transparent 26%);
}

.hero-copy,
.dispatch-card,
.hero-brand-plate,
.trust-row,
.brand-proof-row {
  position: relative;
  z-index: 1;
}

.hero-copy {
  grid-column: 1;
  grid-row: 1 / 3;
  align-self: end;
  max-width: 820px;
  padding-bottom: clamp(34px, 5vw, 72px);
}

.hero h1 {
  max-width: 780px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.2rem, 5.8vw, 6.5rem);
  font-weight: 700;
  line-height: 0.86;
  text-transform: uppercase;
}

.hero h1 span {
  display: block;
  color: var(--gold-bright);
}

.hero-copy p {
  max-width: 610px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  line-height: 1.55;
}

.hero-actions,
.action-pair {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 20px;
  border: 1px solid transparent;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.09em;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
  transition: transform var(--dur-fast) var(--ease-smooth), border-color var(--dur-fast) ease, background var(--dur-fast) ease, color var(--dur-fast) ease, box-shadow var(--dur-fast) ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-3px);
}

.button.gold {
  color: var(--black);
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  border-color: rgba(7, 7, 6, 0.14);
  box-shadow: 0 18px 36px rgba(201, 161, 59, 0.22);
}

.button.gold:hover,
.button.gold:focus-visible {
  box-shadow: 0 24px 48px rgba(201, 161, 59, 0.3);
}

.button.ghost {
  color: var(--ink);
  background: transparent;
  border-color: rgba(18, 17, 15, 0.28);
}

.button.ghost:hover,
.button.ghost:focus-visible {
  border-color: var(--gold);
  background: rgba(201, 161, 59, 0.08);
}

.hero .button.ghost,
.locations-page-hero .button.ghost,
.contact-band .button.ghost,
.equipment-hero .button.ghost,
.pump-hero .button.ghost,
.equipment-band .button.ghost,
.service-coverage-section .button.ghost,
.site-footer .button.ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.36);
}

.button.full {
  width: 100%;
}

.hero-brand-plate {
  grid-column: 2;
  grid-row: 1;
  align-self: start;
  justify-self: end;
  display: grid;
  place-items: center;
  width: min(210px, 18vw);
  min-width: 150px;
  margin-top: 22px;
  padding: 18px;
  color: var(--gold-bright);
  background: rgba(7, 7, 6, 0.78);
  border: 1px solid rgba(243, 208, 106, 0.3);
  box-shadow: var(--shadow);
  transition: transform var(--dur-med) var(--ease-smooth), border-color var(--dur-fast) ease;
}

.hero-brand-plate:hover {
  transform: translateY(-4px);
  border-color: rgba(243, 208, 106, 0.58);
}

.hero-brand-plate img {
  width: 118px;
  height: 122px;
  object-fit: contain;
}

.hero-brand-plate span {
  margin-top: 10px;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-align: center;
  text-transform: uppercase;
}

.dispatch-card {
  grid-column: 2;
  grid-row: 2;
  justify-self: end;
  align-self: end;
  width: min(360px, 100%);
  margin-bottom: clamp(34px, 5vw, 72px);
  padding: 24px;
  color: #fff;
  background: rgba(7, 7, 6, 0.82);
  border: 1px solid rgba(243, 208, 106, 0.34);
  box-shadow: var(--shadow);
  transition: transform var(--dur-med) var(--ease-smooth), border-color var(--dur-fast) ease;
}

.dispatch-card:hover {
  transform: translateY(-4px);
  border-color: rgba(243, 208, 106, 0.58);
}

.dispatch-card strong {
  display: block;
  color: var(--gold-bright);
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1;
}

.dispatch-card span,
.dispatch-card small {
  display: block;
}

.dispatch-card span {
  margin-top: 12px;
  font-weight: 850;
}

.dispatch-card small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.66);
}

.trust-row,
.brand-proof-row {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(var(--max), 100%);
  margin: 0 auto;
  color: #fff;
}

.trust-row {
  background: #111;
  border-top: 1px solid rgba(243, 208, 106, 0.22);
}

.brand-proof-row {
  margin-top: 0;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: var(--black);
}

.trust-row span,
.brand-proof-row span {
  min-height: 88px;
  padding: 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  transition: background-color var(--dur-fast) ease, transform var(--dur-fast) var(--ease-smooth);
}

.trust-row span:hover,
.brand-proof-row span:hover {
  transform: translateY(-2px);
}

.trust-row span:hover {
  background: rgba(255, 255, 255, 0.04);
}

.brand-proof-row span:hover {
  background: rgba(255, 255, 255, 0.18);
}

.brand-proof-row span {
  display: grid;
  grid-template-columns: 30px 1fr;
  align-items: center;
  column-gap: 12px;
  border-right-color: rgba(7, 7, 6, 0.16);
}

.brand-proof-row i {
  grid-row: span 2;
  font-style: normal;
  font-size: 1.35rem;
}

.trust-row strong,
.brand-proof-row strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 950;
  letter-spacing: 0.05em;
  line-height: 1.2;
  text-transform: uppercase;
}

.trust-row small,
.brand-proof-row small {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  line-height: 1.35;
}

.brand-proof-row small {
  color: rgba(7, 7, 6, 0.68);
}

.section {
  padding: clamp(72px, 8vw, 116px) clamp(18px, 5vw, 70px);
}

.section > * {
  max-width: var(--max);
  margin-right: auto;
  margin-left: auto;
}

.section-kicker {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section h2,
.section-heading h2,
.contact-info h2,
.equipment-band h2,
.page-hero h1,
.split-hero h1 {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(2.35rem, 4.2vw, 5rem);
  font-weight: 700;
  line-height: 0.96;
  text-transform: uppercase;
}

.section-lede,
.section-heading p {
  max-width: 720px;
  margin: 20px auto 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.services-section {
  color: var(--ink);
  background:
    linear-gradient(180deg, #fff 0%, #fff 70%, var(--mist) 100%);
  text-align: center;
}

.services-section > .section-kicker {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto 14px;
}

.services-section > h2 {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
}

.card-grid {
  display: grid;
  gap: 20px;
  margin-top: 42px;
}

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

.service-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-align: left;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 18px 40px rgba(18, 17, 15, 0.08);
  transform: perspective(1000px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translateY(0);
  transition: transform var(--dur-fast) var(--ease-out), border-color var(--dur-fast) ease, box-shadow var(--dur-fast) ease;
}

.service-card::before,
.location-cards article::before,
.photo-strip figure::before,
.contact-band > *::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  content: "";
  background: radial-gradient(circle at var(--spot-x, 50%) var(--spot-y, 50%), rgba(243, 208, 106, 0.16), transparent 34%);
  opacity: 0;
  transition: opacity var(--dur-fast) ease;
}

.service-card::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  content: "";
  border: 1px solid rgba(243, 208, 106, 0);
  box-shadow: inset 0 0 0 0 rgba(243, 208, 106, 0);
  transition: border-color var(--dur-fast) ease, box-shadow var(--dur-fast) ease;
}

.service-card:hover,
.service-card:focus-within {
  border-color: rgba(201, 161, 59, 0.48);
  box-shadow: 0 28px 64px rgba(18, 17, 15, 0.15);
  transform: perspective(1000px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translateY(-5px);
}

.service-card:hover::before,
.service-card:focus-within::before,
.location-cards article:hover::before,
.location-cards article:focus-within::before,
.photo-strip figure:hover::before,
.contact-band > *:hover::before,
.contact-band > *:focus-within::before {
  opacity: 1;
}

.service-card:hover::after,
.service-card:focus-within::after {
  border-color: rgba(243, 208, 106, 0.46);
  box-shadow: inset 0 0 0 4px rgba(243, 208, 106, 0.055);
}

.service-media {
  position: relative;
  aspect-ratio: 1.35 / 1;
  overflow: hidden;
  background: var(--coal);
}

.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 42%;
  transition: transform 700ms var(--ease-smooth), filter var(--dur-fast) ease;
}

.service-card:hover .service-media img,
.service-card:focus-within .service-media img {
  filter: contrast(1.04) saturate(1.05);
  transform: scale(1.06);
}

.service-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.service-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--red);
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-card h3 {
  margin: 16px 0 10px;
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1;
  text-transform: uppercase;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.service-card ul,
.check-list {
  display: grid;
  gap: 9px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.service-card li,
.check-list li {
  position: relative;
  padding-left: 20px;
  color: var(--ink);
  font-size: 0.95rem;
}

.service-card li::before,
.check-list li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 8px;
  height: 8px;
  content: "";
  background: var(--gold);
}

.service-actions {
  display: flex;
  gap: 14px;
  margin-top: auto;
  padding-top: 24px;
}

.service-actions a {
  position: relative;
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  border-bottom: 0;
  transition: color var(--dur-fast) ease;
}

.service-actions a::after {
  position: absolute;
  right: 0;
  bottom: -3px;
  left: 0;
  height: 2px;
  content: "";
  background: currentColor;
  transform: scaleX(0.85);
  transform-origin: left center;
  transition: transform var(--dur-fast) var(--ease-out);
}

.service-actions a:hover,
.service-actions a:focus-visible {
  color: var(--red);
}

.service-actions a:hover::after,
.service-actions a:focus-visible::after {
  transform: scaleX(1);
}

.center {
  text-align: center;
}

.center.action-pair,
.center .button {
  justify-content: center;
}

.emergency-band {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(22px, 4vw, 46px);
  padding: clamp(44px, 6vw, 78px) clamp(18px, 5vw, 70px);
  color: #fff;
  background:
    linear-gradient(90deg, rgba(7, 7, 6, 0.94), rgba(7, 7, 6, 0.72)),
    url("/assets/cylinder-06.jpg") center 44% / cover no-repeat;
}

.emergency-band > * {
  max-width: var(--max);
}

.emergency-mark {
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  width: clamp(108px, 12vw, 160px);
  aspect-ratio: 1;
  color: var(--black);
  background: var(--gold-bright);
  font-family: var(--serif);
  font-size: clamp(2.35rem, 4.5vw, 4.35rem);
  font-weight: 800;
  line-height: 1;
}

.emergency-mark::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.42) 44%, transparent 70%);
  transform: translateX(-130%) skewX(-16deg);
}

.emergency-mark.is-visible::after {
  animation: gold-glint 900ms var(--ease-out) 220ms both;
}

.emergency-band p {
  margin: 0 0 8px;
  color: var(--gold-bright);
  font-size: 0.8rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.emergency-band h2 {
  max-width: 760px;
  margin: 0;
  color: #fff;
  font-family: var(--serif);
  font-size: clamp(2.3rem, 4vw, 4.8rem);
  line-height: 0.98;
  text-transform: uppercase;
}

.emergency-band span {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.72);
}

.locations-band {
  padding: clamp(72px, 8vw, 116px) clamp(18px, 5vw, 70px);
  background: var(--mist);
}

.section-heading {
  max-width: var(--max);
  margin: 0 auto 38px;
  text-align: center;
}

.location-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  max-width: var(--max);
  margin: 0 auto;
}

.location-cards article {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(210px, 0.95fr) 1fr;
  min-height: 320px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 18px 40px rgba(18, 17, 15, 0.08);
  transform: perspective(1000px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translateY(0);
  transition: transform var(--dur-fast) var(--ease-out), border-color var(--dur-fast) ease, box-shadow var(--dur-fast) ease;
}

.location-cards article:hover,
.location-cards article:focus-within {
  border-color: rgba(201, 161, 59, 0.48);
  box-shadow: 0 28px 64px rgba(18, 17, 15, 0.15);
  transform: perspective(1000px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translateY(-5px);
}

.location-cards img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  transition: transform 720ms var(--ease-smooth), filter var(--dur-fast) ease;
}

.location-cards article:hover img,
.location-cards article:focus-within img {
  filter: contrast(1.04) saturate(1.04);
  transform: scale(1.045);
}

.location-cards div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(24px, 3vw, 36px);
}

.location-cards h3 {
  margin: 0 0 14px;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 2.6vw, 3rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.location-cards p {
  margin: 0 0 14px;
  color: var(--muted);
}

.location-cards p:first-of-type {
  color: var(--ink);
  font-weight: 850;
  line-height: 1.35;
}

.process {
  background: #fff;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 42px;
  background: var(--line);
  border: 1px solid var(--line);
}

.process-grid article {
  position: relative;
  min-height: 250px;
  padding: 28px;
  background: #fff;
  transition: transform var(--dur-fast) var(--ease-smooth), background-color var(--dur-fast) ease;
}

.process-grid article:hover {
  background: #fffdf7;
  transform: translateY(-3px);
}

.process-grid span {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
}

.process-grid h3 {
  margin: 22px 0 10px;
  font-family: var(--serif);
  font-size: 1.7rem;
  text-transform: uppercase;
}

.process-grid p {
  margin: 0;
  color: var(--muted);
}

.equipment-band {
  display: grid;
  grid-template-columns: minmax(260px, 0.55fr) 1fr;
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
  padding: clamp(72px, 8vw, 116px) clamp(18px, 5vw, 70px);
  color: #fff;
  background:
    linear-gradient(90deg, rgba(7, 7, 6, 0.96), rgba(31, 28, 23, 0.88)),
    url("/assets/cylinder-04.jpg") right center / cover no-repeat;
}

.equipment-band > * {
  max-width: var(--max);
}

.equipment-band .section-kicker {
  color: var(--gold-bright);
}

.equipment-band h2 {
  color: #fff;
}

.equipment-panel {
  display: grid;
  gap: 22px;
  max-width: 690px;
  padding: clamp(24px, 3vw, 36px);
  background: rgba(7, 7, 6, 0.48);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.22);
}

.equipment-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.02rem, 1.45vw, 1.24rem);
  line-height: 1.65;
}

.equipment-panel span {
  color: var(--gold-bright);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  line-height: 1.7;
  text-transform: uppercase;
}

.equipment-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.75fr);
  align-items: center;
  gap: clamp(28px, 6vw, 84px);
  min-height: 720px;
  padding: clamp(150px, 14vw, 190px) clamp(18px, 5vw, 70px) 84px;
  color: #fff;
  background:
    linear-gradient(100deg, rgba(7, 7, 6, 0.98) 0%, rgba(7, 7, 6, 0.86) 48%, rgba(7, 7, 6, 0.48) 100%),
    url("/assets/cylinder-01.jpg") center / cover no-repeat;
}

.equipment-hero > * {
  position: relative;
  z-index: 1;
  max-width: var(--max);
}

.equipment-hero h1 {
  max-width: 820px;
  margin: 0;
  color: #fff;
  font-family: var(--serif);
  font-size: clamp(3rem, 5.8vw, 6.8rem);
  font-weight: 700;
  line-height: 0.9;
  text-transform: uppercase;
}

.equipment-hero p:not(.section-kicker) {
  max-width: 660px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.65;
}

.equipment-hero img {
  width: 100%;
  min-height: 440px;
  object-fit: cover;
  border: 1px solid rgba(201, 161, 59, 0.42);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.38);
}

.equipment-overview {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.7fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: start;
}

.equipment-overview p:not(.section-kicker) {
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.75;
}

.equipment-service-rail {
  display: grid;
  border: 1px solid var(--line);
  box-shadow: 0 24px 60px rgba(18, 17, 15, 0.1);
}

.equipment-service-rail a {
  display: grid;
  gap: 7px;
  padding: 20px;
  color: var(--ink);
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.equipment-service-rail a:last-child {
  border-bottom: 0;
}

.equipment-service-rail strong {
  font-size: 0.84rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.equipment-service-rail span {
  color: var(--muted);
  line-height: 1.45;
}

.machine-hub {
  background: #fff;
}

.machine-list {
  display: grid;
  gap: 18px;
  margin-top: 44px;
}

.machine-panel {
  scroll-margin-top: 110px;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.72fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  box-shadow: 0 22px 60px rgba(18, 17, 15, 0.08);
}

.machine-panel > div,
.machine-panel figure {
  margin: 0;
  background: #fff;
}

.machine-panel > div {
  padding: clamp(26px, 4vw, 52px);
}

.machine-count {
  display: block;
  margin-bottom: 18px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  font-weight: 700;
  line-height: 0.8;
}

.machine-panel h3 {
  margin: 0 0 16px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(2rem, 3.8vw, 4.4rem);
  line-height: 0.92;
  text-transform: uppercase;
}

.machine-panel p {
  max-width: 660px;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.65;
}

.machine-panel figure {
  position: relative;
  overflow: hidden;
  min-height: 360px;
}

.machine-panel img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.problem-matrix {
  color: #fff;
  background:
    linear-gradient(90deg, rgba(7, 7, 6, 0.96), rgba(7, 7, 6, 0.82)),
    url("/assets/cylinder-04.jpg") center / cover no-repeat;
}

.problem-matrix h2 {
  color: #fff;
}

.problem-matrix > div {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 38px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.problem-matrix article {
  min-height: 230px;
  padding: 24px;
  background: rgba(7, 7, 6, 0.58);
}

.problem-matrix h3 {
  margin: 0 0 14px;
  color: var(--gold-bright);
  font-size: 0.9rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.problem-matrix p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.6;
}

.pump-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.48fr);
  align-items: end;
  gap: clamp(32px, 7vw, 96px);
  min-height: 720px;
  padding: clamp(146px, 13vw, 190px) clamp(18px, 5vw, 70px) clamp(64px, 7vw, 96px);
  color: #fff;
  background:
    radial-gradient(circle at 78% 34%, rgba(243, 208, 106, 0.13), transparent 28%),
    linear-gradient(100deg, rgba(7, 7, 6, 0.98) 0%, rgba(7, 7, 6, 0.86) 48%, rgba(7, 7, 6, 0.5) 100%),
    url("/assets/gallery/kings-hydraulics-repair-04.jpg") center / cover no-repeat;
}

.pump-hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 8px;
  content: "";
  background: linear-gradient(90deg, var(--gold-bright), var(--red), var(--gold));
}

.pump-hero > * {
  position: relative;
  z-index: 1;
}

.pump-hero h1 {
  max-width: 980px;
  margin: 0;
  color: #fff;
  font-family: var(--serif);
  font-size: clamp(3rem, 5.8vw, 7rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.pump-hero p {
  max-width: 760px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 1.55vw, 1.24rem);
  line-height: 1.62;
}

.pump-pressure-plate {
  display: grid;
  gap: 20px;
  min-height: 330px;
  align-content: end;
  padding: clamp(26px, 4vw, 42px);
  background: rgba(7, 7, 6, 0.82);
  border: 1px solid rgba(243, 208, 106, 0.44);
  box-shadow: 0 32px 86px rgba(0, 0, 0, 0.38);
}

.pump-pressure-plate strong {
  color: var(--gold-bright);
  font-family: var(--serif);
  font-size: clamp(4.5rem, 9vw, 8rem);
  line-height: 0.82;
}

.pump-pressure-plate span {
  max-width: 300px;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  line-height: 1.55;
  text-transform: uppercase;
}

.pump-triage-strip {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  color: var(--black);
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  border-bottom: 1px solid rgba(7, 7, 6, 0.18);
}

.pump-triage-strip span {
  display: grid;
  place-items: center;
  min-height: 84px;
  padding: 16px 12px;
  border-right: 1px solid rgba(7, 7, 6, 0.18);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-align: center;
  text-transform: uppercase;
}

.pump-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(280px, 0.48fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: start;
  background: #fff;
}

.pump-intro p {
  max-width: 830px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.72;
}

.pump-callout {
  padding: clamp(26px, 4vw, 42px);
  color: #fff;
  background: var(--black);
  border-left: 6px solid var(--red);
  box-shadow: 0 24px 70px rgba(18, 17, 15, 0.16);
}

.pump-callout strong {
  display: block;
  margin-bottom: 18px;
  color: var(--gold-bright);
  font-family: var(--serif);
  font-size: clamp(2.2rem, 3.5vw, 3.7rem);
  line-height: 0.96;
  text-transform: uppercase;
}

.pump-callout p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.pump-flow-section {
  display: grid;
  grid-template-columns: minmax(0, 0.55fr) minmax(0, 0.9fr);
  gap: clamp(28px, 6vw, 78px);
  padding: clamp(74px, 8vw, 118px) clamp(18px, 5vw, 70px);
  color: #fff;
  background:
    linear-gradient(90deg, rgba(7, 7, 6, 0.98), rgba(7, 7, 6, 0.88)),
    url("/assets/gallery/kings-hydraulics-repair-13.jpg") center / cover no-repeat;
}

.pump-flow-section h2,
.pump-failure-matrix h2 {
  color: #fff;
}

.pump-flow-section p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.06rem;
  line-height: 1.7;
}

.pump-flow-rail {
  display: grid;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.pump-flow-rail article {
  position: relative;
  display: grid;
  grid-template-columns: minmax(130px, 0.34fr) minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  min-height: 112px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.pump-flow-rail article:last-child {
  border-bottom: 0;
}

.pump-flow-rail article::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 5px;
  content: "";
  background: var(--gold-bright);
}

.pump-flow-rail strong {
  color: var(--gold-bright);
  font-size: 0.86rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pump-flow-rail span {
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.55;
}

.pump-types-section {
  background: var(--mist);
}

.pump-type-panels {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 42px;
  background: var(--line);
  border: 1px solid var(--line);
}

.pump-type-panels article {
  min-height: 360px;
  padding: clamp(28px, 4vw, 48px);
  background: #fff;
}

.pump-type-panels span {
  display: block;
  color: var(--gold);
  font-family: var(--serif);
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 0.82;
}

.pump-type-panels h3 {
  margin: 34px 0 18px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(2.15rem, 3.5vw, 4rem);
  line-height: 0.92;
  text-transform: uppercase;
}

.pump-type-panels p {
  color: var(--muted);
  line-height: 1.68;
}

.pump-test-band {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  padding: clamp(54px, 7vw, 92px) clamp(18px, 5vw, 70px);
  color: #fff;
  background: var(--black);
  border-top: 1px solid rgba(243, 208, 106, 0.22);
  border-bottom: 1px solid rgba(243, 208, 106, 0.22);
}

.pump-test-mark {
  display: grid;
  place-items: center;
  width: clamp(110px, 13vw, 170px);
  aspect-ratio: 1;
  color: var(--black);
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  font-family: var(--serif);
  font-size: clamp(2.1rem, 3.8vw, 4rem);
  font-weight: 800;
  line-height: 0.9;
}

.pump-test-band p {
  margin: 0 0 8px;
  color: var(--gold-bright);
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.pump-test-band h2 {
  max-width: 820px;
  margin: 0;
  color: #fff;
  font-family: var(--serif);
  font-size: clamp(2.6rem, 5vw, 5.8rem);
  line-height: 0.92;
  text-transform: uppercase;
}

.pump-test-band span {
  display: block;
  max-width: 830px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.04rem;
  line-height: 1.62;
}

.pump-failure-matrix {
  color: #fff;
  background:
    linear-gradient(90deg, rgba(7, 7, 6, 0.96), rgba(7, 7, 6, 0.84)),
    url("/assets/cylinder-05.jpg") center / cover no-repeat;
}

.pump-failure-matrix > div {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 38px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.pump-failure-matrix article {
  min-height: 240px;
  padding: 24px;
  background: rgba(7, 7, 6, 0.62);
}

.pump-failure-matrix article > span {
  display: block;
  margin-bottom: 18px;
  color: var(--red);
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.pump-failure-matrix h3 {
  margin: 0 0 14px;
  color: var(--gold-bright);
  font-size: 0.9rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pump-failure-matrix p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.6;
}

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

.equipment-list a,
.link-grid a {
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: center;
  min-height: 88px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1.25;
  text-transform: uppercase;
  transition: transform var(--dur-fast) var(--ease-out), border-color var(--dur-fast) ease, box-shadow var(--dur-fast) ease, background-color var(--dur-fast) ease;
}

.equipment-list a::before,
.link-grid a::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  content: "";
  background: var(--gold-bright);
  transform: scaleY(0);
  transform-origin: bottom center;
  transition: transform var(--dur-fast) var(--ease-out);
}

.equipment-list a:hover,
.equipment-list a:focus-visible,
.link-grid a:hover,
.link-grid a:focus-visible {
  border-color: rgba(201, 161, 59, 0.52);
  box-shadow: 0 18px 42px rgba(18, 17, 15, 0.14);
  transform: translateY(-3px);
}

.equipment-list a:hover::before,
.equipment-list a:focus-visible::before,
.link-grid a:hover::before,
.link-grid a:focus-visible::before {
  transform: scaleY(1);
}

.link-grid a {
  color: var(--ink);
  background: #fff;
  border-color: var(--line);
  box-shadow: 0 14px 32px rgba(18, 17, 15, 0.07);
}

.link-grid a span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.45;
  text-transform: none;
}

.photo-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  margin-top: 38px;
}

.photo-strip + .center {
  margin-top: clamp(28px, 3vw, 44px);
}

.photo-strip figure {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 260px;
  margin: 0;
  background: var(--coal);
  transform: perspective(1000px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transition: transform var(--dur-fast) var(--ease-out);
}

.photo-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 720ms var(--ease-smooth), filter var(--dur-fast) ease;
}

.photo-strip figure::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  content: "";
  background: linear-gradient(180deg, transparent 42%, rgba(7, 7, 6, 0.34));
  opacity: 0;
  transition: opacity var(--dur-fast) ease;
}

.photo-strip figure:hover {
  transform: perspective(1000px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translateY(-3px);
}

.photo-strip figure:hover img {
  filter: contrast(1.06) saturate(1.04);
  transform: scale(1.055);
}

.photo-strip figure:hover::after {
  opacity: 1;
}

.contact-band {
  display: grid;
  grid-template-columns: minmax(250px, 0.85fr) minmax(250px, 1fr) minmax(280px, 0.8fr);
  gap: 1px;
  padding: clamp(72px, 8vw, 116px) clamp(18px, 5vw, 70px);
  color: #fff;
  background: var(--black);
}

.contact-band > * {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 480px;
  padding: clamp(28px, 4vw, 44px);
  background: #11100e;
  border: 1px solid rgba(243, 208, 106, 0.18);
  transform: perspective(1000px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transition: transform var(--dur-fast) var(--ease-out), border-color var(--dur-fast) ease;
}

.contact-band > *:hover,
.contact-band > *:focus-within {
  border-color: rgba(243, 208, 106, 0.36);
}

.contact-info img {
  width: 76px;
  height: 84px;
  object-fit: contain;
  margin-bottom: 26px;
}

.contact-info h2 {
  color: #fff;
  font-size: clamp(2.35rem, 3.35vw, 4.15rem);
  line-height: 0.92;
  overflow-wrap: anywhere;
}

.contact-info p,
.contact-info a {
  color: rgba(255, 255, 255, 0.76);
}

.contact-info strong,
.contact-info a:hover {
  color: var(--gold-bright);
}

.contact-map {
  display: grid;
  place-items: end start;
  transition: background-size var(--dur-slow) var(--ease-smooth);
  background:
    linear-gradient(180deg, rgba(7, 7, 6, 0.08), rgba(7, 7, 6, 0.88)),
    url("/assets/shop-exterior.jpg") center / cover no-repeat;
}

.contact-map span {
  max-width: 420px;
  padding: 18px;
  color: #fff;
  background: rgba(7, 7, 6, 0.82);
  border-left: 4px solid var(--gold-bright);
  font-weight: 800;
  line-height: 1.5;
}

.service-form {
  display: grid;
  align-content: start;
  gap: 14px;
}

.service-form label {
  display: grid;
  gap: 6px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  transition: color var(--dur-fast) ease;
}

.service-form label:focus-within {
  color: var(--gold-bright);
}

.service-form input,
.service-form textarea {
  width: 100%;
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0;
  outline: none;
  padding: 13px 12px;
  transition: background-color var(--dur-fast) ease, border-color var(--dur-fast) ease, box-shadow var(--dur-fast) ease;
}

.service-form input:focus,
.service-form textarea:focus {
  background: rgba(255, 255, 255, 0.09);
  border-color: var(--gold-bright);
  box-shadow: 0 0 0 3px rgba(243, 208, 106, 0.12);
}

.service-form button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.form-status {
  min-height: 1.5em;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  line-height: 1.45;
}

.form-status.is-success {
  color: var(--gold-bright);
}

.form-status.is-error {
  color: #ffb7ad;
}

.page-hero,
.split-hero {
  padding: clamp(72px, 8vw, 118px) clamp(18px, 5vw, 70px);
  color: #fff;
  background:
    linear-gradient(90deg, rgba(7, 7, 6, 0.96), rgba(31, 28, 23, 0.76)),
    url("/assets/cylinder-01.jpg") center 42% / cover no-repeat;
}

.page-hero h1,
.page-hero p,
.split-hero h1,
.split-hero p {
  max-width: var(--max);
  margin-right: auto;
  margin-left: auto;
}

.page-hero h1,
.split-hero h1 {
  color: #fff;
}

.page-hero p,
.split-hero p {
  max-width: 760px;
  margin-top: 22px;
  margin-left: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.12rem;
}

.locations-page-hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.58fr);
  gap: clamp(34px, 6vw, 92px);
  align-items: end;
  min-height: 620px;
  padding: clamp(82px, 9vw, 132px) clamp(18px, 5vw, 70px);
  color: #fff;
  background:
    linear-gradient(90deg, rgba(7, 7, 6, 0.96) 0%, rgba(7, 7, 6, 0.8) 48%, rgba(7, 7, 6, 0.4) 100%),
    url("/assets/gallery/kings-hydraulics-repair-15.jpg") center / cover no-repeat;
}

.locations-page-hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 8px;
  content: "";
  background: linear-gradient(90deg, var(--gold-bright), var(--red), var(--gold));
}

.locations-page-hero > * {
  position: relative;
  z-index: 1;
}

.locations-page-hero h1 {
  max-width: 980px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.2rem, 6vw, 7rem);
  line-height: 0.88;
  text-transform: uppercase;
}

.locations-page-hero p {
  max-width: 720px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 1.5vw, 1.24rem);
  line-height: 1.55;
}

.shop-routing-panel {
  display: grid;
  gap: 1px;
  background: rgba(201, 161, 59, 0.42);
  border: 1px solid rgba(243, 208, 106, 0.32);
  box-shadow: 0 32px 82px rgba(0, 0, 0, 0.36);
}

.shop-routing-panel a {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 136px;
  padding: clamp(20px, 3vw, 30px);
  color: #fff;
  background: rgba(7, 7, 6, 0.84);
  transition: background-color var(--dur-fast) ease, transform var(--dur-fast) var(--ease-out);
}

.shop-routing-panel a:hover,
.shop-routing-panel a:focus-visible {
  background: rgba(7, 7, 6, 0.94);
  transform: translateX(-4px);
}

.shop-routing-panel span {
  color: var(--gold-bright);
  font-family: var(--serif);
  font-size: 2.8rem;
  line-height: 1;
}

.shop-routing-panel strong,
.shop-routing-panel small {
  display: block;
}

.shop-routing-panel strong {
  font-weight: 950;
  letter-spacing: 0.09em;
  line-height: 1.1;
  text-transform: uppercase;
}

.shop-routing-panel small {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.5;
}

.shop-focus-section {
  scroll-margin-top: 92px;
  padding: clamp(74px, 8vw, 120px) clamp(18px, 5vw, 70px);
  background: #fff;
}

.shop-section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(280px, 0.5fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: end;
  max-width: var(--max);
  margin: 0 auto clamp(36px, 5vw, 64px);
}

.shop-section-head h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(2.65rem, 5vw, 5.8rem);
  line-height: 0.92;
  text-transform: uppercase;
}

.shop-section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.6;
}

.shop-profile-grid {
  display: grid;
  gap: 22px;
  max-width: var(--max);
  margin: 0 auto;
}

.shop-profile {
  display: grid;
  grid-template-columns: minmax(320px, 0.68fr) minmax(0, 0.72fr);
  min-height: 420px;
  background: var(--mist);
  border: 1px solid var(--line);
  box-shadow: 0 26px 70px rgba(18, 17, 15, 0.1);
}

.shop-profile:nth-child(even) {
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 0.68fr);
}

.shop-profile:nth-child(even) figure {
  order: 2;
}

.shop-profile figure {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  margin: 0;
  background: var(--black);
}

.shop-profile img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.shop-profile > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(30px, 5vw, 64px);
}

.shop-profile > div > span {
  color: var(--gold);
  font-family: var(--serif);
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 0.85;
}

.shop-profile h3 {
  margin: 18px 0 16px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(2.3rem, 4vw, 4.8rem);
  line-height: 0.92;
  text-transform: uppercase;
}

.shop-profile p {
  max-width: 540px;
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.58;
}

.shop-profile .shop-address {
  margin-bottom: 18px;
  color: var(--ink);
  font-weight: 850;
  line-height: 1.45;
}

.shop-profile-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
  align-items: center;
  margin-top: 28px;
}

.shop-profile-actions > a:not(.button) {
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
  text-transform: uppercase;
}

.service-coverage-section {
  scroll-margin-top: 92px;
  padding: clamp(74px, 8vw, 124px) clamp(18px, 5vw, 70px);
  color: #fff;
  background:
    linear-gradient(90deg, rgba(7, 7, 6, 0.98), rgba(7, 7, 6, 0.88)),
    url("/assets/gallery/kings-hydraulics-repair-13.jpg") center / cover no-repeat;
}

.coverage-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) auto;
  gap: 28px;
  align-items: end;
  max-width: var(--max);
  margin: 0 auto clamp(34px, 5vw, 62px);
}

.coverage-heading h2 {
  max-width: 900px;
  margin: 0;
  color: #fff;
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 5.7rem);
  line-height: 0.92;
  text-transform: uppercase;
}

.coverage-heading p {
  max-width: 790px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.06rem;
  line-height: 1.62;
}

.coverage-groups {
  display: grid;
  gap: 18px;
  max-width: var(--max);
  margin: 0 auto;
}

.coverage-group {
  display: grid;
  grid-template-columns: minmax(220px, 0.28fr) minmax(0, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
}

.coverage-shop {
  padding: clamp(22px, 3vw, 34px);
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(201, 161, 59, 0.12);
}

.coverage-shop span,
.coverage-shop strong,
.coverage-shop small {
  display: block;
}

.coverage-shop span {
  color: var(--gold-bright);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.coverage-shop strong {
  margin-top: 14px;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 3.2rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.coverage-shop small {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.64);
}

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

.coverage-links a {
  min-height: 112px;
  padding: 20px;
  color: #fff;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: background-color var(--dur-fast) ease, transform var(--dur-fast) var(--ease-out);
}

.coverage-links a:hover,
.coverage-links a:focus-visible {
  background: rgba(243, 208, 106, 0.12);
  transform: translateY(-2px);
}

.coverage-links strong,
.coverage-links span {
  display: block;
}

.coverage-links strong {
  font-size: 0.86rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.coverage-links span {
  margin-top: 9px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
  line-height: 1.4;
}

.split-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.72fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
}

.split-hero > div,
.split-hero > img {
  max-width: var(--max);
}

.split-hero img {
  width: 100%;
  aspect-ratio: 1.1 / 1;
  object-fit: cover;
  border: 1px solid rgba(243, 208, 106, 0.32);
  box-shadow: var(--shadow);
  transition: transform var(--dur-slow) var(--ease-smooth), filter var(--dur-fast) ease;
}

.split-hero img:hover {
  filter: contrast(1.04) saturate(1.04);
  transform: scale(1.018);
}

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

.two-col > div {
  padding: clamp(24px, 3vw, 36px);
  background: #fff;
  border: 1px solid var(--line);
  transition: transform var(--dur-fast) var(--ease-out), border-color var(--dur-fast) ease, box-shadow var(--dur-fast) ease;
}

.two-col > div:hover {
  border-color: rgba(201, 161, 59, 0.45);
  box-shadow: 0 18px 42px rgba(18, 17, 15, 0.08);
  transform: translateY(-3px);
}

.two-col h2 {
  font-size: clamp(1.8rem, 2.8vw, 3rem);
}

.faq-block {
  background: var(--mist);
}

.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 32px;
}

.faq-list details {
  background: #fff;
  border: 1px solid var(--line);
  transition: border-color var(--dur-fast) ease, box-shadow var(--dur-fast) ease, transform var(--dur-fast) var(--ease-out);
}

.faq-list details:hover,
.faq-list details[open] {
  border-color: rgba(201, 161, 59, 0.48);
  box-shadow: 0 12px 30px rgba(18, 17, 15, 0.06);
}

.faq-list summary {
  position: relative;
  cursor: pointer;
  padding: 20px 22px;
  padding-right: 52px;
  color: var(--ink);
  font-weight: 900;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 22px;
  width: 11px;
  height: 11px;
  content: "";
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: translateY(-65%) rotate(45deg);
  transition: transform var(--dur-fast) var(--ease-out);
}

.faq-list details[open] summary::after {
  transform: translateY(-35%) rotate(225deg);
}

.faq-list summary:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: -6px;
}

.faq-list p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
}

.map-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.45fr) 1fr;
  gap: 24px;
  padding: clamp(72px, 8vw, 116px) clamp(18px, 5vw, 70px);
  background: var(--mist);
}

.map-section > * {
  max-width: var(--max);
}

.map-section > div {
  padding: 34px;
  background: #fff;
  border: 1px solid var(--line);
}

.map-section h2 {
  margin: 0 0 18px;
  font-family: var(--serif);
  font-size: 2.5rem;
  line-height: 1;
  text-transform: uppercase;
}

.map-section iframe {
  width: 100%;
  min-height: 420px;
  border: 0;
  filter: grayscale(0.15);
}

.site-footer {
  padding: 56px clamp(18px, 5vw, 70px) 28px;
  color: rgba(255, 255, 255, 0.74);
  background: #070706;
  border-top: 1px solid rgba(243, 208, 106, 0.22);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 34px;
  max-width: var(--max);
  margin: 0 auto;
}

.footer-logo {
  width: 78px;
  height: 86px;
  object-fit: contain;
  margin-bottom: 18px;
}

.site-footer h2 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer a {
  display: block;
  margin: 8px 0;
  color: rgba(255, 255, 255, 0.74);
  transition: color var(--dur-fast) ease, transform var(--dur-fast) var(--ease-out);
}

.site-footer strong,
.site-footer a:hover {
  color: var(--gold-bright);
}

.site-footer a:hover,
.site-footer a:focus-visible {
  transform: translateX(3px);
}

@keyframes reveal-in {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-settle {
  from {
    background-position: 60% 48%;
  }
  to {
    background-position: 60% 42%;
  }
}

@keyframes gold-glint {
  from {
    transform: translateX(-130%) skewX(-16deg);
  }
  to {
    transform: translateX(130%) skewX(-16deg);
  }
}

.motion-ready .reveal-item {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity var(--dur-med) var(--ease-out),
    transform var(--dur-med) var(--ease-out);
  transition-delay: calc(var(--reveal-index, 0) * 48ms);
  will-change: opacity, transform;
}

.motion-ready .reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0);
  will-change: auto;
}

.motion-ready .hero .reveal-item {
  transition-duration: var(--dur-slow);
}

.motion-ready .service-card.reveal-item,
.motion-ready .location-cards article.reveal-item,
.motion-ready .process-grid article.reveal-item,
.motion-ready .photo-strip figure.reveal-item {
  transform: translateY(22px);
}

.motion-ready .service-card.reveal-item.is-visible,
.motion-ready .location-cards article.reveal-item.is-visible,
.motion-ready .process-grid article.reveal-item.is-visible,
.motion-ready .photo-strip figure.reveal-item.is-visible {
  transform: perspective(1000px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translateY(0);
}

.motion-ready .equipment-service-rail a.reveal-item,
.motion-ready .machine-panel.reveal-item,
.motion-ready .problem-matrix article.reveal-item,
.motion-ready .link-grid a.reveal-item {
  transform: translateY(12px);
}

.motion-ready .equipment-service-rail a.reveal-item.is-visible,
.motion-ready .machine-panel.reveal-item.is-visible,
.motion-ready .problem-matrix article.reveal-item.is-visible,
.motion-ready .link-grid a.reveal-item.is-visible {
  transform: translateY(0);
}

@media (min-width: 761px) {
  .motion-ready .hero {
    animation: hero-settle 1200ms var(--ease-out) both;
  }
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  max-width: var(--max);
  margin: 42px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.82rem;
}

.footer-bottom a {
  display: inline;
  margin: 0;
  color: var(--gold-bright);
}

.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  transform: none;
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav-toggle {
    justify-self: end;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 14px;
    color: #fff;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.28);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: background-color var(--dur-fast) ease, border-color var(--dur-fast) ease, color var(--dur-fast) ease, transform var(--dur-fast) var(--ease-out);
  }

  .nav-toggle:hover,
  .nav-toggle:focus-visible,
  .nav-toggle[aria-expanded="true"] {
    color: var(--black);
    background: var(--gold-bright);
    border-color: var(--gold-bright);
  }

  .nav-toggle:active {
    transform: scale(0.985);
  }

  .site-nav {
    grid-column: 1 / -1;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    max-height: 0;
    padding: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    transform: translateY(-6px);
    transition: max-height 280ms var(--ease-out), opacity var(--dur-fast) ease, padding var(--dur-fast) ease, transform var(--dur-fast) var(--ease-out);
  }

  .site-nav.is-open {
    max-height: min(360px, calc(100svh - 160px));
    padding: 10px 0 16px;
    opacity: 1;
    overflow-y: auto;
    pointer-events: auto;
    transform: translateY(0);
  }

  .header-call {
    display: none;
  }

  .hero,
  .locations-page-hero,
  .shop-section-head,
  .shop-profile,
  .shop-profile:nth-child(even),
  .coverage-heading,
  .coverage-group,
  .split-hero,
  .equipment-hero,
  .pump-hero,
  .pump-intro,
  .pump-flow-section,
  .pump-test-band,
  .equipment-band,
  .equipment-overview,
  .machine-panel,
  .contact-band,
  .map-section {
    grid-template-columns: 1fr;
  }

  .hero-brand-plate {
    display: none;
  }

  .dispatch-card {
    justify-self: start;
  }

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

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

  .problem-matrix > div,
  .pump-failure-matrix > div,
  .coverage-links,
  .link-grid,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-band > * {
    min-height: auto;
  }
}

@media (max-width: 760px) {
  body {
    padding-bottom: calc(76px + env(safe-area-inset-bottom));
  }

  .site-header {
    min-height: 72px;
    padding: 8px 14px;
  }

  .brand {
    grid-template-columns: 46px auto;
    min-width: 0;
  }

  .brand img {
    width: 46px;
    height: 50px;
  }

  .brand span {
    font-size: 0.98rem;
  }

  .site-nav {
    gap: 10px 16px;
  }

  .site-nav a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    font-size: 0.72rem;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 62px 16px 0;
    background:
      linear-gradient(180deg, rgba(7, 7, 6, 0.96), rgba(7, 7, 6, 0.72) 58%, rgba(7, 7, 6, 0.42)),
      url("/assets/cylinder-01.jpg") 58% 34% / cover no-repeat;
  }

  .hero h1 {
    font-size: clamp(2.6rem, 13.2vw, 3.65rem);
    line-height: 0.9;
  }

  .hero-copy {
    grid-column: auto;
    grid-row: auto;
    padding-bottom: 30px;
  }

  .dispatch-card {
    grid-column: auto;
    grid-row: auto;
    width: 100%;
    margin-bottom: 0;
  }

  .trust-row,
  .brand-proof-row,
  .services-grid,
  .location-cards,
  .process-grid,
  .problem-matrix > div,
  .coverage-links,
  .link-grid,
  .photo-strip,
  .two-col,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .trust-row span,
  .brand-proof-row span {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .brand-proof-row span {
    border-bottom-color: rgba(7, 7, 6, 0.16);
  }

  .section,
  .locations-band,
  .locations-page-hero,
  .shop-focus-section,
  .service-coverage-section,
  .pump-hero,
  .pump-flow-section,
  .pump-test-band,
  .emergency-band,
  .equipment-hero,
  .equipment-band,
  .contact-band,
  .page-hero,
  .split-hero,
  .map-section {
    padding-right: 16px;
    padding-left: 16px;
  }

  .section h2,
  .section-heading h2,
  .contact-info h2,
  .locations-page-hero h1,
  .shop-section-head h2,
  .shop-profile h3,
  .coverage-heading h2,
  .equipment-band h2,
  .equipment-hero h1,
  .pump-hero h1,
  .pump-intro h2,
  .pump-flow-section h2,
  .pump-test-band h2,
  .pump-failure-matrix h2,
  .page-hero h1,
  .split-hero h1 {
    font-size: clamp(2.25rem, 12vw, 3.7rem);
  }

  .pump-hero {
    min-height: auto;
    padding-top: 112px;
    padding-bottom: 52px;
    background-position: 58% 38%;
  }

  .pump-hero h1 {
    font-size: clamp(2.32rem, 10.5vw, 3.45rem);
    line-height: 0.96;
  }

  .pump-hero p {
    margin-top: 20px;
    font-size: 1rem;
  }

  .pump-pressure-plate {
    min-height: auto;
  }

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

  .pump-triage-strip span {
    min-height: 58px;
  }

  .pump-flow-rail article,
  .pump-type-panels,
  .pump-test-band {
    grid-template-columns: 1fr;
  }

  .pump-type-panels article,
  .pump-failure-matrix article {
    min-height: auto;
  }

  .equipment-hero {
    min-height: auto;
    padding-top: 124px;
  }

  .equipment-hero img,
  .machine-panel img,
  .machine-panel figure {
    min-height: 260px;
  }

  .equipment-panel {
    padding-bottom: 86px;
  }

  .emergency-band {
    grid-template-columns: 1fr;
  }

  .emergency-mark {
    width: 108px;
    font-size: 2.35rem;
  }

  .location-cards article {
    grid-template-columns: 1fr;
  }

  .locations-page-hero {
    min-height: auto;
    align-items: start;
    padding-top: 112px;
    padding-bottom: 52px;
    background-position: 58% 36%;
  }

  .locations-page-hero h1 {
    font-size: clamp(2.45rem, 11.2vw, 3.42rem);
    line-height: 0.9;
  }

  .locations-page-hero p {
    margin-top: 20px;
    font-size: 1rem;
  }

  .shop-routing-panel a {
    min-height: auto;
    padding: 20px;
  }

  .shop-profile:nth-child(even) figure {
    order: 0;
  }

  .shop-profile figure,
  .shop-profile img {
    min-height: 270px;
  }

  .shop-profile > div {
    padding: 24px;
  }

  .coverage-shop {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .coverage-links a {
    min-height: auto;
  }

  .location-cards img {
    min-height: 260px;
  }

  .service-body {
    padding: 22px;
  }

  .motion-ready .reveal-item,
  .motion-ready .service-card.reveal-item,
  .motion-ready .location-cards article.reveal-item,
  .motion-ready .process-grid article.reveal-item,
  .motion-ready .photo-strip figure.reveal-item {
    transform: translateY(8px);
    transition-duration: 340ms;
    transition-delay: calc(var(--reveal-index, 0) * 28ms);
  }

  .motion-ready .reveal-item.is-visible,
  .motion-ready .service-card.reveal-item.is-visible,
  .motion-ready .location-cards article.reveal-item.is-visible,
  .motion-ready .process-grid article.reveal-item.is-visible,
  .motion-ready .photo-strip figure.reveal-item.is-visible {
    transform: translateY(0);
  }

  .service-card:active,
  .location-cards article:active,
  .link-grid a:active,
  .photo-strip figure:active {
    transform: scale(0.992);
  }

  .service-form input,
  .service-form textarea {
    min-height: 48px;
    scroll-margin-bottom: 96px;
  }

  .service-actions,
  .hero-actions,
  .action-pair,
  .footer-bottom {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .photo-strip figure {
    min-height: 300px;
  }

  .map-section iframe {
    min-height: 340px;
  }

  .mobile-call {
    position: fixed;
    right: 12px;
    bottom: max(12px, env(safe-area-inset-bottom));
    left: 12px;
    z-index: 60;
    display: flex;
    justify-content: center;
    padding: 14px;
    color: var(--black);
    background: linear-gradient(135deg, var(--gold-bright), var(--gold));
    border: 1px solid rgba(7, 7, 6, 0.2);
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.25);
    font-size: 0.82rem;
    font-weight: 950;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0;
    pointer-events: none;
    transform: translateY(120%);
    transition: opacity var(--dur-fast) ease, transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) ease;
  }

  .mobile-call.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-call:active {
    transform: translateY(0) scale(0.985);
  }

  .mobile-call:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 3px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-progress {
    display: none;
  }

  .reveal-item {
    opacity: 1 !important;
    transform: none !important;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
