:root {
  --color-brogav-blue: #25aec8;
  --color-brogav-blue-deep: #007f92;
  --color-ink: #101820;
  --color-ink-soft: #26343d;
  --color-slate: #53636d;
  --color-line: #d6e1e6;
  --color-panel: #ffffff;
  --color-surface: #f5f9fb;
  --color-surface-strong: #eaf4f7;
  --color-glass: rgba(255, 255, 255, 0.76);
  --color-black: #000000;
  --color-white: #ffffff;
  --color-warning-orange: #f28c28;
  --color-system-blue: #159bd3;
  --container-wide: 1200px;
  --container-standard: 1080px;
  --container-narrow: 760px;
  --radius: 8px;
  --shadow-soft: 0 18px 50px rgba(16, 24, 32, 0.12);
  --font-body: Lato, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-heading: "Canva Sans", Lato, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-ink);
  font-family: var(--font-body);
  background: var(--color-white);
  line-height: 1.5;
}

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

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(37, 174, 200, 0.36);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 12px;
  z-index: 20;
  transform: translateY(-140%);
  border-radius: var(--radius);
  padding: 10px 14px;
  color: var(--color-white);
  background: var(--color-ink);
  transition: transform 160ms ease;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-top: 1px solid rgba(214, 225, 230, 0.75);
  border-bottom: 1px solid rgba(214, 225, 230, 0.9);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  min-height: 82px;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  width: 178px;
}

.brand-logo {
  width: 178px;
  height: auto;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 0;
}

.site-nav a {
  border-radius: var(--radius);
  padding: 10px 10px;
  color: var(--color-ink-soft);
  font-size: 0.9rem;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.site-nav a:hover {
  color: var(--color-ink);
  background: var(--color-surface);
}

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

.hero-actions,
.inline-actions {
  flex-wrap: wrap;
}

.header-actions {
  flex-wrap: nowrap;
}

.text-action {
  color: var(--color-ink);
  font-size: 0.9rem;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.header-actions .button {
  min-height: 38px;
  border-radius: 10px;
  padding: 9px 14px;
  font-size: 0.94rem;
}

.header-actions .button-primary {
  border-color: var(--color-brogav-blue-deep);
  background: var(--color-brogav-blue-deep);
  box-shadow: none;
}

.header-actions .button-primary:hover {
  border-color: #006f81;
  background: #006f81;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  padding: 11px 16px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
}

.button-primary {
  border-color: var(--color-ink);
  color: var(--color-white);
  background: var(--color-ink);
  box-shadow: 0 10px 24px rgba(16, 24, 32, 0.16);
}

.button-primary:hover {
  border-color: #000000;
  background: #000000;
}

.button-secondary {
  color: var(--color-ink);
  background: rgba(255, 255, 255, 0.9);
}

.button-secondary:hover {
  border-color: var(--color-brogav-blue);
}

.nav-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  padding: 9px 12px;
  color: var(--color-ink);
  font: inherit;
  font-weight: 900;
  background: var(--color-white);
}

.nav-toggle-icon {
  display: grid;
  gap: 3px;
}

.nav-toggle-icon span {
  display: block;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.hero-section {
  position: relative;
  min-height: min(780px, 88vh);
  overflow: hidden;
  display: grid;
  align-items: center;
  border-bottom: 1px solid var(--color-line);
  background:
    radial-gradient(circle at 76% 34%, rgba(37, 174, 200, 0.16), transparent 28%),
    linear-gradient(135deg, #f8fcfd 0%, #edf6f8 42%, #dcebf0 100%);
}

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

.hero-motion-slot {
  background: var(--color-surface);
}

.hero-motion-slot[data-motion-state="video"] .hero-motion-poster {
  opacity: 0;
}

.hero-motion-slot[data-motion-state="video-complete"] .hero-motion-poster {
  opacity: 0;
}

.hero-motion-slot[data-motion-state="settling"] .hero-motion-poster {
  opacity: 1;
}

.hero-motion-slot[data-motion-state="video"] .hero-faker-clip {
  display: none;
}

.hero-motion-slot[data-motion-state="video-complete"] .hero-faker-clip {
  display: none;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(248, 252, 253, 0.98) 0%, rgba(248, 252, 253, 0.91) 38%, rgba(248, 252, 253, 0.36) 70%, rgba(248, 252, 253, 0.08) 100%),
    linear-gradient(180deg, rgba(16, 24, 32, 0.04), rgba(16, 24, 32, 0.14));
  content: "";
  opacity: 1;
  transition: opacity 1120ms ease;
}

.hero-motion-video,
.hero-motion-poster,
.hero-motion-poster img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-motion-video,
.hero-motion-poster img {
  object-fit: cover;
  object-position: 62% center;
}

.hero-motion-poster {
  opacity: 1;
  transition: opacity 520ms ease;
}

.hero-faker-clip {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-faker-grid,
.hero-faker-routes,
.hero-faker-frames {
  position: absolute;
  inset: 0;
}

.hero-faker-grid {
  opacity: 0.28;
  background:
    linear-gradient(rgba(37, 174, 200, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 174, 200, 0.14) 1px, transparent 1px);
  background-position: 52% 50%;
  background-size: 42px 42px;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 52%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 52%, #000 100%);
  animation: hero-faker-grid 12s ease-in-out infinite;
}

.hero-faker-route {
  position: absolute;
  right: 6%;
  height: 3px;
  border-radius: 999px;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left center;
  animation: hero-faker-route 12s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.hero-faker-route--primary {
  top: 30%;
  width: 40%;
  background: linear-gradient(90deg, rgba(21, 155, 211, 0), rgba(21, 155, 211, 0.8), rgba(37, 174, 200, 0.3));
  animation-delay: 0.25s;
}

.hero-faker-route--secondary {
  top: 48%;
  width: 32%;
  background: linear-gradient(90deg, rgba(242, 140, 40, 0), rgba(242, 140, 40, 0.82), rgba(242, 140, 40, 0.2));
  animation-delay: 0.55s;
}

.hero-faker-route--tertiary {
  top: 63%;
  width: 36%;
  background: linear-gradient(90deg, rgba(83, 99, 109, 0), rgba(83, 99, 109, 0.5), rgba(83, 99, 109, 0.12));
  animation-delay: 0.85s;
}

.hero-faker-frame {
  position: absolute;
  display: block;
  width: min(19vw, 250px);
  max-width: 34%;
  aspect-ratio: 3 / 4;
  border: 1px solid rgba(214, 225, 230, 0.8);
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(16, 24, 32, 0.16);
  object-fit: cover;
  opacity: 0;
  transform: translate3d(20px, 14px, 0) scale(0.96);
  animation: hero-faker-frame 12s ease-in-out infinite;
  animation-delay: calc(var(--frame-index) * 0.34s + 0.35s);
}

.hero-faker-frame--floor {
  right: 34%;
  bottom: 11%;
}

.hero-faker-frame--underfloor {
  right: 22%;
  bottom: 17%;
}

.hero-faker-frame--abovefloor {
  right: 12%;
  top: 13%;
}

.hero-faker-frame--rack {
  right: 20%;
  top: 19%;
  width: min(21vw, 280px);
}

.hero-faker-frame--panel {
  right: 5%;
  bottom: 14%;
}

@keyframes hero-faker-grid {
  0%,
  4% {
    opacity: 0.06;
    transform: translateY(18px) scale(1.04);
  }
  12%,
  100% {
    opacity: 0.28;
    transform: translateY(0) scale(1);
  }
}

@keyframes hero-faker-route {
  0%,
  4% {
    opacity: 0;
    transform: scaleX(0);
  }
  14%,
  100% {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes hero-faker-frame {
  0%,
  6% {
    opacity: 0;
    transform: translate3d(20px, 14px, 0) scale(0.96);
  }
  14%,
  100% {
    opacity: 0.78;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-faker-clip {
    display: none;
  }

  .hero-motion-poster,
  .hero-faker-grid,
  .hero-faker-route,
  .hero-faker-frame {
    transition: none;
    animation: none;
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
  padding-block: clamp(76px, 12vw, 132px);
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 980ms ease,
    transform 980ms ease,
    visibility 0s linear 980ms;
}

.hero-section .eyebrow,
.equipment-hero .eyebrow {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(16, 24, 32, 0.16);
  border-radius: 999px;
  padding: 7px 12px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(8px);
}

.hero-section[data-hero-copy-state="hidden"] .hero-content {
  visibility: hidden;
  pointer-events: none;
  opacity: 0;
  transform: translateY(18px);
}

.hero-section[data-hero-copy-state="hidden"] .hero-media::after {
  opacity: 0;
}

.hero-section[data-hero-copy-state="visible"] .hero-content {
  transition-delay: 260ms, 260ms, 0s;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--color-brogav-blue-deep);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

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

h1 {
  max-width: 730px;
  margin-bottom: 22px;
  font-size: clamp(3.35rem, 7.6vw, 7.15rem);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2.15rem, 4vw, 4.2rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
  line-height: 1.15;
}

.hero-copy,
.section-heading p,
.two-column p,
.action-panel p,
.contact-section p,
.site-footer p {
  color: var(--color-slate);
  font-size: 1.08rem;
}

.hero-copy {
  max-width: 650px;
  margin-bottom: 28px;
  color: #31434d;
  font-size: clamp(1.08rem, 1.8vw, 1.28rem);
  line-height: 1.5;
}

.hero-actions {
  margin-bottom: 30px;
}

.hero-actions .button {
  border-radius: 999px;
  padding-inline: 20px;
}

.hero-signal-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 760px;
  margin: 0;
  border: 1px solid rgba(16, 24, 32, 0.1);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(16, 24, 32, 0.1);
  box-shadow: 0 24px 70px rgba(16, 24, 32, 0.12);
}

.hero-signal-list div {
  min-height: 132px;
  padding: 18px;
  background: var(--color-glass);
  backdrop-filter: blur(14px);
}

.hero-signal-list dt {
  margin-bottom: 8px;
  color: var(--color-ink);
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-signal-list dd {
  margin: 0;
  color: var(--color-slate);
  font-size: 0.92rem;
  line-height: 1.35;
}

.proof-strip {
  padding-block: 30px 40px;
  background:
    linear-gradient(90deg, #101820 0%, #142b34 54%, #101820 100%);
}

.proof-strip-header {
  margin-bottom: 14px;
}

.proof-strip-header .eyebrow {
  color: rgba(255, 255, 255, 0.9);
}

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

.proof-grid div {
  min-height: 92px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border-radius: 10px;
  color: var(--color-white);
  font-weight: 900;
  line-height: 1.15;
  background: rgba(255, 255, 255, 0.05);
}

.proof-grid span {
  color: var(--color-brogav-blue);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
}

.equipment-hero {
  display: grid;
  align-items: center;
  min-height: min(560px, 70vh);
  border-bottom: 1px solid var(--color-line);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.82)),
    var(--color-surface-strong);
}

.equipment-hero h1 {
  max-width: 900px;
  margin-bottom: 18px;
  font-size: clamp(2.2rem, 5.2vw, 4.35rem);
  line-height: 0.96;
}

.equipment-hero .hero-copy {
  max-width: 780px;
}

.equipment-hero-visual {
  max-width: 820px;
  margin-bottom: 22px;
}

.equipment-hero-visual img {
  display: block;
  width: 100%;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.equipment-hero .hero-actions .button {
  border-radius: 999px;
}

.equipment-category-grid,
.equipment-listing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

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

.equipment-card,
.equipment-empty {
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  padding: 22px;
  background: var(--color-panel);
}

.equipment-card {
  transition:
    transform 170ms ease,
    box-shadow 170ms ease,
    border-color 170ms ease;
}

.equipment-card:hover {
  transform: translateY(-2px);
  border-color: #c3d3db;
  box-shadow: 0 14px 34px rgba(16, 24, 32, 0.08);
}

.equipment-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  margin-bottom: 14px;
  border-radius: calc(var(--radius) - 2px);
  background: var(--color-surface);
}

.equipment-card h2 {
  margin-bottom: 12px;
  font-size: 1.35rem;
  line-height: 1.12;
}

.equipment-card a {
  text-decoration: none;
}

.equipment-card p,
.equipment-empty p {
  margin-bottom: 0;
  color: var(--color-slate);
}

.equipment-empty {
  grid-column: 1 / -1;
}

.equipment-empty p {
  margin-bottom: 18px;
}

.status-badge {
  display: inline-flex;
  margin-bottom: 12px;
  border: 1px solid rgba(37, 174, 200, 0.36);
  border-radius: var(--radius);
  padding: 6px 9px;
  color: #007f92;
  background: rgba(37, 174, 200, 0.08);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.status-badge--available {
  border-color: rgba(21, 128, 61, 0.32);
  color: #166534;
  background: rgba(34, 197, 94, 0.1);
}

.status-badge--under-offer {
  border-color: rgba(180, 83, 9, 0.36);
  color: #92400e;
  background: rgba(245, 158, 11, 0.13);
}

.status-badge--sold {
  border-color: rgba(71, 85, 105, 0.36);
  color: #334155;
  background: rgba(100, 116, 139, 0.12);
}

.status-badge--recently-available {
  border-color: rgba(21, 101, 192, 0.32);
  color: #155e95;
  background: rgba(21, 101, 192, 0.1);
}

.status-badge--request-similar {
  border-color: rgba(37, 174, 200, 0.4);
  color: #007f92;
  background: rgba(37, 174, 200, 0.11);
}

.listing-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.36fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}

.equipment-fact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  border: 1px solid var(--color-line);
  background: var(--color-line);
}

.equipment-fact-grid div {
  min-height: 88px;
  padding: 16px;
  background: var(--color-white);
  transition: background 160ms ease;
}

.equipment-fact-grid div:hover {
  background: #f8fcfd;
}

.equipment-fact-grid dt {
  margin-bottom: 7px;
  color: var(--color-slate);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.equipment-fact-grid dd {
  margin: 0;
  color: var(--color-ink);
  font-weight: 900;
}

.equipment-side-panel {
  position: sticky;
  top: 110px;
  border: 1px solid var(--color-line);
  border-top: 5px solid var(--color-brogav-blue);
  border-radius: var(--radius);
  padding: 22px;
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
}

.equipment-side-panel .button {
  border-radius: 999px;
}

.status-panel--available {
  border-top-color: #15803d;
}

.status-panel--under-offer {
  border-top-color: #b45309;
}

.status-panel--sold {
  border-top-color: #475569;
}

.status-panel--recently-available {
  border-top-color: #1565c0;
}

.status-panel--request-similar {
  border-top-color: var(--color-brogav-blue);
}

.equipment-side-panel h2 {
  font-size: 1.45rem;
  line-height: 1.08;
}

.equipment-side-panel p,
.equipment-note {
  color: var(--color-slate);
}

.status-note {
  border-left: 3px solid var(--color-brogav-blue);
  padding-left: 12px;
}

.status-note--available {
  border-left-color: #15803d;
}

.status-note--under-offer {
  border-left-color: #b45309;
}

.status-note--sold {
  border-left-color: #475569;
}

.status-note--recently-available {
  border-left-color: #1565c0;
}

.status-note--request-similar {
  border-left-color: var(--color-brogav-blue);
}

.equipment-inquiry-form {
  display: grid;
  gap: 12px;
}

.equipment-inquiry-form label,
.equipment-inquiry-form span {
  display: grid;
  gap: 8px;
}

.equipment-inquiry-form span {
  color: var(--color-slate);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.equipment-inquiry-form textarea {
  width: 100%;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  padding: 12px;
  color: var(--color-ink);
  font: inherit;
  resize: vertical;
}

.equipment-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
  color: var(--color-slate);
}

.equipment-list li::marker {
  color: var(--color-brogav-blue);
}

.equipment-list a {
  font-weight: 900;
  text-decoration: none;
}

.catalog-group + .catalog-group {
  margin-top: clamp(34px, 6vw, 66px);
}

.section {
  padding-block: clamp(68px, 9vw, 118px);
}

.section:nth-of-type(even) {
  background: var(--color-surface);
}

.section-heading {
  max-width: var(--container-standard);
  margin-bottom: 34px;
}

.section-heading p {
  max-width: 760px;
}

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

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

.feature-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 210px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  padding: 22px;
  background: var(--color-panel);
  transition:
    transform 170ms ease,
    box-shadow 170ms ease,
    border-color 170ms ease;
}

.feature-card p {
  margin-bottom: 18px;
  color: var(--color-slate);
}

.feature-card:hover {
  transform: translateY(-2px);
  border-color: #c3d3db;
  box-shadow: 0 14px 34px rgba(16, 24, 32, 0.08);
}

.card-action {
  margin-top: auto;
  color: var(--color-brogav-blue-deep);
  font-weight: 900;
  text-decoration: none;
}

.card-action:hover {
  color: var(--color-ink);
}

.card-mark {
  display: block;
  width: 46px;
  height: 5px;
  margin-bottom: 24px;
  border-radius: 999px;
  background: var(--color-brogav-blue);
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: start;
}

.process-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: process;
}

.process-list li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  border-top: 1px solid var(--color-line);
  padding-top: 18px;
  counter-increment: process;
}

.process-list li::before {
  grid-row: 1 / span 2;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--color-white);
  font-weight: 900;
  background: var(--color-ink);
  content: counter(process);
}

.process-list strong,
.process-list span {
  display: block;
}

.process-list span {
  grid-column: 2;
  color: var(--color-slate);
}

.image-panel {
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  padding: clamp(10px, 2vw, 18px);
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
}

.image-panel img {
  border-radius: calc(var(--radius) - 2px);
}

.action-panel,
.contact-card {
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  padding: clamp(22px, 3vw, 32px);
  background: var(--color-white);
}

.product-paths {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.product-paths a {
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  padding: 8px 10px;
  color: var(--color-brogav-blue-deep);
  font-size: 0.86rem;
  font-weight: 900;
  text-decoration: none;
  background: var(--color-white);
}

.product-paths a:hover {
  border-color: var(--color-brogav-blue);
  color: var(--color-ink);
}

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

.audience-grid div {
  border-left: 5px solid var(--color-brogav-blue);
  padding: 16px 18px;
  font-size: 1.08rem;
  font-weight: 900;
  background: var(--color-white);
}

.values-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.48fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: end;
  margin-bottom: 28px;
}

.values-copy {
  max-width: 820px;
}

.service-promise {
  border: 1px solid var(--color-line);
  border-top: 5px solid var(--color-brogav-blue);
  border-radius: var(--radius);
  padding: clamp(22px, 3vw, 32px);
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
}

.service-promise span {
  display: block;
  margin-bottom: 12px;
  color: var(--color-brogav-blue-deep);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.service-promise strong {
  display: block;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 0.96;
}

.service-promise p {
  margin-bottom: 0;
}

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

.value-card {
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  padding: 22px;
  background: var(--color-white);
  transition:
    transform 170ms ease,
    box-shadow 170ms ease,
    border-color 170ms ease;
}

.value-card p {
  margin-bottom: 0;
  color: var(--color-slate);
}

.value-card:hover {
  transform: translateY(-2px);
  border-color: #c3d3db;
  box-shadow: 0 14px 34px rgba(16, 24, 32, 0.08);
}

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

.contact-section .eyebrow {
  color: var(--color-brogav-blue);
}

.contact-section p {
  color: rgba(255, 255, 255, 0.74);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.48fr);
  gap: 36px;
  align-items: center;
}

.contact-card {
  display: grid;
  gap: 14px;
  color: var(--color-ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(234, 244, 247, 0.9));
}

.contact-card a:not(.button),
.site-footer a {
  font-weight: 900;
  text-decoration: none;
}

.site-footer {
  padding-block: 44px;
  color: var(--color-ink);
  border-top: 1px solid rgba(214, 225, 230, 0.9);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(245, 249, 251, 0.84));
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.3fr) repeat(3, minmax(150px, 0.55fr));
  gap: 32px;
}

.footer-brand {
  max-width: 460px;
}

.footer-logo {
  width: 190px;
  margin-bottom: 18px;
}

.site-footer h2 {
  margin-bottom: 14px;
  color: var(--color-ink-soft);
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer a {
  display: block;
  margin-bottom: 9px;
  color: var(--color-ink);
}

.footer-privacy-link {
  width: fit-content;
  margin-top: 18px;
  color: var(--color-slate);
  font-size: 0.9rem;
}

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

  .nav-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .site-nav {
    grid-column: 1 / -1;
    display: none;
    justify-content: start;
    flex-wrap: wrap;
    border-top: 1px solid var(--color-line);
    padding-top: 14px;
  }

  .site-nav[data-open="true"] {
    display: flex;
  }

  .header-actions {
    grid-column: 1 / -1;
  }

  .hero-content {
    max-width: 720px;
  }

  .hero-signal-list {
    grid-template-columns: 1fr;
    max-width: 560px;
  }

  .hero-signal-list div {
    min-height: 0;
  }

  .proof-grid,
  .six-up,
  .audience-grid,
  .equipment-category-grid,
  .equipment-listing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .two-column,
  .contact-layout,
  .values-layout,
  .listing-detail-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .equipment-side-panel {
    position: static;
  }
}

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

  .brand-link,
  .brand-logo,
  .footer-logo {
    width: 156px;
  }

  .header-inner {
    gap: 14px;
    min-height: 72px;
  }

  .header-actions .button,
  .hero-actions .button,
  .inline-actions .button {
    width: 100%;
  }

  .header-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
    gap: 8px;
  }

  .header-actions .text-action,
  .header-actions .button {
    min-height: 40px;
    padding: 10px 12px;
    font-size: 0.88rem;
    white-space: nowrap;
  }

  .header-actions .text-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-line);
    border-radius: var(--radius);
    background: var(--color-white);
  }

  .hero-section {
    min-height: 760px;
    align-items: end;
  }

  .hero-media::after {
    background:
      linear-gradient(180deg, rgba(248, 252, 253, 0.68) 0%, rgba(248, 252, 253, 0.96) 45%, rgba(248, 252, 253, 0.98) 100%);
  }

  .hero-motion-video,
  .hero-motion-poster img {
    object-position: 72% center;
  }

  .hero-content {
    padding-block: 72px 46px;
  }

  .hero-faker-clip {
    opacity: 0.48;
  }

  .hero-faker-grid {
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 36%, #000 100%);
    mask-image: linear-gradient(180deg, transparent 0%, #000 36%, #000 100%);
  }

  .hero-faker-route {
    right: 8%;
    width: 46%;
  }

  .hero-faker-frame {
    width: 96px;
    max-width: 28%;
  }

  .hero-faker-frame--floor {
    right: 48%;
    bottom: 10%;
  }

  .hero-faker-frame--underfloor {
    right: 34%;
    bottom: 15%;
  }

  .hero-faker-frame--abovefloor {
    right: 18%;
    top: 16%;
  }

  .hero-faker-frame--rack {
    right: 25%;
    top: 24%;
    width: 108px;
  }

  .hero-faker-frame--panel {
    right: 6%;
    bottom: 14%;
  }

  h1 {
    font-size: clamp(2.95rem, 14vw, 4.35rem);
  }

  .hero-signal-list {
    box-shadow: 0 16px 42px rgba(16, 24, 32, 0.1);
  }

  .hero-signal-list div {
    padding: 15px;
    background: rgba(255, 255, 255, 0.86);
  }

  .proof-grid,
  .six-up,
  .audience-grid,
  .equipment-category-grid,
  .equipment-listing-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .equipment-fact-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: 0;
  }
}
