*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --black: #000;
  --white: #fff;
  --accent: #5ec8f2;
  --accent-dim: rgba(94, 200, 242, 0.15);
  --gray: rgba(255, 255, 255, 0.65);
  --gray-dim: rgba(255, 255, 255, 0.45);
  --border: rgba(255, 255, 255, 0.12);
  --surface: rgba(255, 255, 255, 0.04);
  --font: "Montserrat", system-ui, sans-serif;
  --header-h: 72px;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  min-height: 100dvh;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
}

/* Background effect */
.bg-effect {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.bg-effect__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.bg-effect__mist {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 82%, rgba(255, 255, 255, 0.015) 94%, rgba(94, 200, 242, 0.03) 100%);
}

.bg-effect__vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 70% at 50% 45%, transparent 30%, rgba(0, 0, 0, 0.4) 100%);
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding-top: env(safe-area-inset-top);
}

.site-header__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.75rem max(1.25rem, env(safe-area-inset-right)) 0.75rem max(1.25rem, env(safe-area-inset-left));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
}

.site-logo img {
  display: block;
  height: auto;
  background: transparent;
}

.site-logos {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
  min-width: 0;
}

.site-logos__divider {
  width: 1px;
  height: 28px;
  background: var(--border);
  flex-shrink: 0;
}

.site-logo--parent img,
.site-logo--brand img {
  width: min(120px, 32vw);
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  -webkit-tap-highlight-color: transparent;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 1px;
  transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-nav {
  position: fixed;
  inset: 0;
  top: calc(var(--header-h) + env(safe-area-inset-top));
  background: rgba(0, 0, 0, 0.97);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  transform: translateX(100%);
  transition: transform 0.35s ease;
  z-index: 99;
}

.site-nav--open {
  transform: translateX(0);
}

.site-nav__link {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--gray);
  padding: 0.5rem 1rem;
  transition: color 0.2s;
}

.site-nav__link:hover,
.site-nav__link--active {
  color: var(--accent);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.live-fab {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right));
  bottom: max(1rem, env(safe-area-inset-bottom));
  z-index: 150;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 52px;
  padding: 0.85rem 1.1rem;
  border: 1px solid rgba(94, 200, 242, 0.45);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(94, 200, 242, 0.95), rgba(56, 160, 210, 0.95));
  color: #001018;
  font: inherit;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.live-fab:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.5);
}

.live-fab[aria-expanded="true"] {
  background: #111;
  color: var(--accent);
  border-color: var(--accent);
}

.live-fab__icon {
  width: 1.15rem;
  height: 1.15rem;
  flex-shrink: 0;
}

body.live-panel-open {
  overflow: hidden;
}

.live-panel[hidden] {
  display: none !important;
}

.live-panel {
  position: fixed;
  inset: 0;
  z-index: 160;
}

.live-panel__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
}

.live-panel__sheet {
  position: absolute;
  right: max(0.75rem, env(safe-area-inset-right));
  bottom: calc(max(0.75rem, env(safe-area-inset-bottom)) + 4.25rem);
  width: min(calc(100vw - 1.5rem), 420px);
  max-height: min(calc(88dvh - 4.5rem), 680px);
  display: flex;
  flex-direction: column;
  background: #0a0a0a;
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.55);
  overflow: hidden;
  animation: live-panel-in 0.25s ease;
}

@keyframes live-panel-in {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.live-panel__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.1rem 0.85rem;
  border-bottom: 1px solid var(--border);
}

.live-panel__eyebrow {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.25rem;
}

.live-panel__title {
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.2;
}

.live-panel__close {
  appearance: none;
  background: none;
  border: 0;
  color: var(--gray);
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.15rem 0.35rem;
}

.live-panel__body {
  overflow-y: auto;
  padding: 0.85rem 1rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.live-panel__section-title {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 0.65rem;
}

.live-panel__meta {
  font-size: 0.75rem;
  color: var(--gray-dim);
  margin-bottom: 0.75rem;
}

.live-panel__empty {
  grid-column: 1 / -1;
  font-size: 0.85rem;
  color: var(--gray);
}

.live-status-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.live-status-grid--compact {
  max-width: none;
  margin: 0;
  padding: 0;
}

.live-status-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 0.85rem;
  padding: 0.85rem 0.65rem;
  text-align: center;
}

.live-status-card--compact .live-status-card__dot {
  margin-bottom: 0.45rem;
}

.live-status-card--compact .live-status-card__count {
  font-size: 1.35rem;
  margin-bottom: 0.25rem;
}

.live-status-card--compact .live-status-card__label {
  font-size: 0.62rem;
  margin-bottom: 0;
  line-height: 1.25;
}

.live-status-card__dot {
  display: inline-block;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
}

.live-status-card__label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray);
}

.live-status-card__count {
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: 800;
  line-height: 1;
}

.live-bot--panel {
  max-width: none;
  margin: 0;
  padding: 0;
}

.live-bot__messages {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 0.85rem 0.85rem 0 0;
  min-height: 140px;
  max-height: 220px;
  overflow-y: auto;
  padding: 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.live-bot__bubble {
  max-width: 85%;
  padding: 0.65rem 0.85rem;
  border-radius: 0.85rem;
  font-size: 0.82rem;
  line-height: 1.45;
}

.live-bot__bubble--bot {
  align-self: flex-start;
  background: rgba(94, 200, 242, 0.12);
  border: 1px solid rgba(94, 200, 242, 0.25);
  color: var(--white);
  border-bottom-left-radius: 0.25rem;
}

.live-bot__bubble--user {
  align-self: flex-end;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--border);
  color: var(--white);
  border-bottom-right-radius: 0.25rem;
}

.live-bot__form {
  display: flex;
  gap: 0.5rem;
  padding: 0.65rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-top: 0;
  border-radius: 0 0 0.85rem 0.85rem;
}

.live-bot__input {
  flex: 1;
  min-width: 0;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--border);
  border-radius: 0.65rem;
  color: var(--white);
  font: inherit;
  font-size: 0.88rem;
  padding: 0.65rem 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.live-bot__input:focus {
  outline: none;
  border-color: var(--accent);
}

.live-bot__input::placeholder {
  text-transform: none;
  letter-spacing: 0;
  color: var(--gray-dim);
}

.live-bot__submit {
  flex-shrink: 0;
  white-space: nowrap;
  min-height: 44px;
  padding-inline: 1rem;
}

.live-result {
  margin-top: 0.85rem;
  padding: 1rem;
  border-radius: 0.85rem;
  background: var(--accent-dim);
  border: 1px solid rgba(94, 200, 242, 0.25);
  text-align: center;
}

.live-result[hidden] {
  display: none !important;
}

.live-result__eyebrow {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.35rem;
}

.live-result__plate {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  margin-bottom: 0.25rem;
}

.live-result__service {
  color: var(--gray);
  font-size: 0.82rem;
  margin-bottom: 0.75rem;
}

.live-result__status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.live-result__dot {
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 999px;
  background: var(--accent);
  flex-shrink: 0;
}

.live-result__meta {
  font-size: 0.75rem;
  color: var(--gray-dim);
}

/* Main */
main {
  position: relative;
  z-index: 1;
  padding-top: calc(var(--header-h) + env(safe-area-inset-top) + 1rem);
}

/* Hero */
.hero {
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(2rem, 8vw, 5rem) max(1.25rem, env(safe-area-inset-right)) clamp(3rem, 6vw, 4rem) max(1.25rem, env(safe-area-inset-left));
  text-align: center;
}

.hero__eyebrow,
.page-hero__eyebrow,
.section__eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.hero__title {
  font-size: clamp(1.75rem, 5.5vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.hero__lead,
.page-hero__lead {
  font-size: clamp(0.9rem, 2.5vw, 1.05rem);
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.75;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.page-hero {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(2rem, 6vw, 3.5rem) max(1.25rem, env(safe-area-inset-right)) clamp(2rem, 5vw, 3rem) max(1.25rem, env(safe-area-inset-left));
  text-align: center;
}

.page-hero__title {
  font-size: clamp(1.5rem, 4.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.75rem 1.75rem;
  font-family: var(--font);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
  -webkit-tap-highlight-color: transparent;
}

.btn--primary {
  background: var(--accent);
  color: var(--black);
  border: 1px solid var(--accent);
}

.btn--primary:hover {
  background: #7dd4f7;
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--border);
}

.btn--ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* Sections */
.section {
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 4rem) max(1.25rem, env(safe-area-inset-right)) clamp(2.5rem, 6vw, 4rem) max(1.25rem, env(safe-area-inset-left));
}

.section--alt {
  background: var(--surface);
  max-width: 100%;
}

.section--alt > * {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.section__header {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

.section__title {
  font-size: clamp(1.25rem, 3.5vw, 1.75rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.section__subtitle {
  font-size: 0.9rem;
  color: var(--gray-dim);
}

/* Cards */
.cards {
  display: grid;
  gap: 1.25rem;
}

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

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 1.5rem;
  border-radius: 2px;
}

.card__title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--accent);
}

.card__text {
  font-size: 0.875rem;
  color: var(--gray);
  line-height: 1.7;
}

/* Service grid */
.service-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

.service-card {
  display: block;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 1.75rem;
  text-decoration: none;
  border-radius: 2px;
  transition: border-color 0.25s, transform 0.25s;
}

.service-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.service-card--accent {
  border-color: rgba(94, 200, 242, 0.3);
}

.service-card__tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}

.service-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0.75rem 0;
}

.service-card__text {
  font-size: 0.875rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.service-card__link {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
}

/* Split layout */
.split {
  display: grid;
  gap: 2rem;
}

.prose {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.check-list li {
  font-size: 0.875rem;
  color: var(--gray);
  padding-left: 1.5rem;
  position: relative;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.info-box {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 1.5rem;
  border-radius: 2px;
}

.info-box--accent {
  border-color: rgba(94, 200, 242, 0.25);
}

.info-box__title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--accent);
}

.info-box__text {
  font-size: 0.875rem;
  color: var(--gray);
  line-height: 1.7;
}

.info-box__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.info-box__list li {
  font-size: 0.875rem;
  color: var(--gray);
}

.info-box__list--ordered {
  list-style: decimal;
  padding-left: 1.25rem;
}

.info-box__list--ordered li {
  padding-left: 0.25rem;
}

/* Product cards */
.product-cards {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

.product-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 1.75rem;
  border-radius: 2px;
  position: relative;
}

.product-card--featured {
  border-color: rgba(94, 200, 242, 0.35);
}

.product-card__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--accent);
  color: var(--black);
  padding: 0.25rem 0.6rem;
  border-radius: 2px;
}

.product-card__name {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.product-card__desc {
  font-size: 0.875rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.product-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.product-card__features li {
  font-size: 0.8rem;
  color: var(--gray);
}

.product-card__features strong {
  color: var(--white);
}

.product-card__price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent);
  margin-top: 0.5rem;
}

/* Tables */
.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--border);
  border-radius: 2px;
}

.price-table,
.spec-table {
  width: 100%;
  min-width: 480px;
  border-collapse: collapse;
  font-size: 0.8rem;
}

.price-table th,
.price-table td,
.spec-table th,
.spec-table td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.price-table thead th,
.spec-table thead th {
  background: rgba(94, 200, 242, 0.08);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--accent);
  white-space: nowrap;
}

.price-table tbody tr:last-child td,
.spec-table tbody tr:last-child td {
  border-bottom: none;
}

.price-table tbody tr:hover,
.spec-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.02);
}

.text-center {
  text-align: center;
}

.table-note {
  font-size: 0.75rem;
  color: var(--gray-dim);
  margin-top: 1rem;
  line-height: 1.6;
}

.table-note a {
  color: var(--accent);
  text-decoration: underline;
}

.point-guide {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 4vw, 2rem);
  max-width: 720px;
  margin: 0 auto;
}

.point-guide__block {
  padding: clamp(1.25rem, 3vw, 1.75rem);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 2px;
}

.point-guide__heading {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--accent);
  letter-spacing: 0.02em;
}

.point-guide__list {
  margin: 0;
  padding-left: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.point-guide__list li {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.65;
}

.point-guide__list a {
  color: var(--accent);
  text-decoration: underline;
  word-break: break-all;
}

.variant-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.variant-tags span {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: 2px;
  color: var(--gray);
}

/* CTA */
.cta-box {
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: clamp(2rem, 5vw, 3rem);
  border-radius: 2px;
}

.cta-box__title {
  font-size: clamp(1.15rem, 3vw, 1.5rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.cta-box__text {
  font-size: 0.9rem;
  color: var(--gray);
  max-width: 520px;
  margin: 0 auto 1.5rem;
  line-height: 1.7;
}

.cta-box__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.cta-box__address {
  font-style: normal;
  font-size: 0.8rem;
  color: var(--gray-dim);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* Footer */
.site-footer {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2rem max(1.25rem, env(safe-area-inset-right)) max(2rem, env(safe-area-inset-bottom)) max(1.25rem, env(safe-area-inset-left));
  border-top: 1px solid var(--border);
  font-size: 0.75rem;
  color: var(--gray-dim);
  letter-spacing: 0.05em;
}

/* Desktop */
@media (min-width: 768px) {
  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    flex-direction: row;
    background: none;
    transform: none;
    gap: 0.25rem;
    inset: auto;
  }

  .site-nav__link {
    font-size: 0.7rem;
    padding: 0.5rem 0.75rem;
  }

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

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

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

  .split {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: start;
  }

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

  .product-cards:has(.product-card:nth-child(3):last-child) {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .site-logo--parent img,
  .site-logo--brand img {
    width: 140px;
  }
}

/* Hero banner images */
.hero-banner {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  height: clamp(180px, 28vw, 320px);
  overflow: hidden;
  border-radius: 2px;
  border: 1px solid var(--border);
}

.hero-banner__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 20%, rgba(0, 0, 0, 0.75) 100%);
}

.hero-banner--inset {
  margin: 0 auto clamp(1.5rem, 4vw, 2.5rem);
  padding: 0 max(1.25rem, env(safe-area-inset-right)) 0 max(1.25rem, env(safe-area-inset-left));
  max-width: calc(1100px + 2.5rem);
}

.page-hero--tight {
  padding-top: clamp(1rem, 3vw, 1.5rem);
}
