/*
Theme Name: Tom Car
Author: BitBracia
Version: 1.0.4
Text Domain: tom-car
*/

:root {
  --blue: #0b8ee8;
  --blue-dark: #006cc3;
  --ink: #06142b;
  --muted: #526174;
  --line: #dbe6f1;
  --soft: #f4f8fc;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(7, 31, 60, 0.13);
  --page-bg:
    linear-gradient(180deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 255, 255, 0.88) 52%, #f7fbff 100%),
    #fff;
  --surface-glass: rgba(255, 255, 255, 0.84);
  --surface-soft: rgba(255, 255, 255, 0.76);
  --surface-card: #fbfdff;
  --surface-card-strong: #f8fbff;
  --surface-note: #eef7ff;
  --field-bg: #fbfdff;
  --alert-error-bg: #fff0f0;
  --alert-success-bg: #e8f8ef;
}

html[data-theme="dark"] {
  --blue: #45b2ff;
  --blue-dark: #8fd0ff;
  --ink: #edf5ff;
  --muted: #9fb1c6;
  --line: #24364a;
  --soft: #101c29;
  --white: #0f1824;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
  --page-bg:
    radial-gradient(circle at top, rgba(37, 93, 149, 0.2), transparent 34%),
    linear-gradient(180deg, #08111b 0%, #0d1723 52%, #111d2a 100%);
  --surface-glass: transparent;
  --surface-soft: rgba(16, 27, 41, 0.8);
  --surface-card: #132131;
  --surface-card-strong: #162638;
  --surface-note: #142536;
  --field-bg: #162434;
  --alert-error-bg: #381d25;
  --alert-success-bg: #163126;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Montserrat", "Inter", Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--page-bg);
  overflow-x: hidden;
}

body,
button,
input,
select,
textarea {
  font: 16px/1.5 "Montserrat", "Inter", Arial, Helvetica, sans-serif;
}

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

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

.site {
  min-height: 100vh;
  overflow: hidden;
}

.site-footer {
  margin-top: 56px;
  border-top: 1px solid rgba(196, 214, 228, 0.9);
  background: var(--surface-glass);
}

.site-footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  width: min(100% - 64px, 1544px);
  margin: 0 auto;
  padding: 22px 0 28px;
  color: var(--muted);
  font-size: 14px;
}

.site-footer__inner p {
  margin: 0;
}

.site-footer__inner a {
  color: var(--blue-dark);
  font-weight: 800;
}

.not-found-page {
  width: min(100% - 64px, 1544px);
  margin: 0 auto;
  padding: 32px 0 0;
}

.not-found-shell {
  position: relative;
  overflow: hidden;
  display: grid;
  min-height: min(820px, calc(100vh - 64px));
  border-radius: 28px;
  color: #fff;
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.18), transparent 29%),
    linear-gradient(135deg, #087fce 0%, #006cc3 48%, #04518f 100%);
  box-shadow: 0 30px 90px rgba(0, 63, 120, 0.24);
}

.not-found-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, transparent 5%, #000 55%, #000 100%);
}

.not-found-topbar,
.not-found-grid,
.not-found-shortcuts {
  position: relative;
  z-index: 1;
}

.not-found-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 28px clamp(28px, 4vw, 64px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.not-found-brand img {
  width: clamp(210px, 18vw, 280px);
  height: auto;
}

.not-found-home-link {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.not-found-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  padding: clamp(48px, 7vw, 108px) clamp(28px, 4vw, 64px) clamp(50px, 6vw, 88px);
}

.not-found-copy {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.not-found-kicker {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.not-found-copy h1,
.not-found-copy > p {
  margin: 0;
}

.not-found-copy h1 {
  max-width: 13ch;
  font-size: clamp(46px, 5.6vw, 88px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.not-found-copy > p {
  max-width: 650px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

.not-found-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.not-found-button-primary {
  color: #07528e;
  background: #fff;
  border-color: #fff;
}

.not-found-button-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
}

.not-found-button-primary:hover,
.not-found-button-secondary:hover {
  transform: translateY(-2px);
}

.not-found-shortcuts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.not-found-shortcuts a {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 18px;
  min-height: 108px;
  padding: 24px clamp(22px, 3vw, 44px);
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  transition: background-color 180ms ease;
}

.not-found-shortcuts a:last-child {
  border-right: 0;
}

.not-found-shortcuts a:hover,
.not-found-shortcuts a:focus-visible {
  background: rgba(255, 255, 255, 0.1);
}

.not-found-shortcuts span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 800;
}

.not-found-shortcuts strong {
  font-size: clamp(15px, 1.3vw, 19px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(230px, auto) minmax(280px, 1fr) auto;
  align-items: center;
  gap: clamp(30px, 2.8vw, 46px);
  width: min(100% - 32px, 1544px);
  margin: 0 auto;
  padding: 20px 18px 14px;
  border-radius: 22px;
  border: 1px solid rgba(214, 228, 240, 0.9);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 251, 255, 0.92));
  box-shadow:
    0 14px 34px rgba(8, 28, 52, 0.08),
    0 1px 0 rgba(255, 255, 255, 0.72) inset;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand-logo {
  display: block;
  width: clamp(220px, 21vw, 300px);
  height: auto;
  max-width: 100%;
}

.brand-logo--dark {
  display: none;
}

html[data-theme="dark"] .brand-logo--light {
  display: none;
}

html[data-theme="dark"] .brand-logo--dark {
  display: block;
}

.main-nav {
  position: static;
  display: flex;
  justify-content: flex-end;
  gap: clamp(22px, 3.1vw, 50px);
  font-weight: 800;
}

.main-nav a,
.nav-catalog__toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 0;
  border: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  white-space: nowrap;
  cursor: pointer;
}

.main-nav a::after,
.nav-catalog__toggle::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  border-radius: 999px;
  background: var(--blue);
  content: "";
  opacity: 0;
  transform: scaleX(0.35);
  transition: opacity 180ms ease, transform 180ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after,
.nav-catalog:hover .nav-catalog__toggle::after,
.nav-catalog:focus-within .nav-catalog__toggle::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-catalog {
  position: static;
}

.nav-catalog::after {
  content: none;
}

.nav-catalog__toggle::before {
  position: absolute;
  top: 100%;
  left: -14px;
  z-index: 29;
  width: calc(100% + 28px);
  height: 40px;
  content: "";
}

.nav-catalog__toggle:focus-visible {
  outline: 3px solid rgba(11, 142, 232, 0.22);
  outline-offset: 7px;
  border-radius: 999px;
}

.nav-catalog__expand {
  display: none;
}

.nav-catalog__expand span {
  transition: transform 180ms ease;
}

.nav-catalog.is-open .nav-catalog__expand span {
  transform: rotate(180deg);
}

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

.catalog-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 30;
  width: min(1280px, calc(100vw - 48px));
  padding: 18px;
  border: 1px solid rgba(219, 230, 241, 0.82);
  border-radius: 28px;
  background: var(--page-bg);
  background-attachment: fixed;
  background-position: center top;
  box-shadow: 0 34px 90px rgba(7, 31, 60, 0.18);
  visibility: hidden;
  opacity: 0;
  pointer-events: auto;
  transform: translateX(-50%) translateY(14px) scale(0.98);
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    visibility 0s linear 240ms;
}

.catalog-menu::before {
  position: absolute;
  right: 0;
  bottom: 100%;
  left: 0;
  height: 22px;
  content: "";
}

.nav-catalog:hover .catalog-menu,
.nav-catalog:focus-within .catalog-menu,
.nav-catalog.is-open .catalog-menu {
  visibility: visible;
  opacity: 1;
  transform: translateX(-50%) translateY(0) scale(1);
  transition-delay: 0s;
}

.catalog-menu__intro {
  display: grid;
  gap: 5px;
  margin-bottom: 14px;
}

.catalog-menu__intro span {
  color: var(--blue-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.catalog-menu__intro p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.catalog-menu__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.main-nav .catalog-card {
  --catalog-image-position: center center;
  --catalog-image-scale: 1;
  --catalog-image-hover-scale: 1.045;
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 12px;
  min-height: 186px;
  overflow: hidden;
  padding: 10px;
  border: 1px solid rgba(197, 216, 232, 0.78);
  border-radius: 20px;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(235, 245, 255, 0.74)),
    var(--white);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  transition: opacity 300ms ease, transform 300ms ease, border-color 180ms ease, box-shadow 180ms ease;
  white-space: normal;
  cursor: pointer;
}

.main-nav .catalog-card *,
.main-nav .catalog-card img {
  cursor: pointer;
}

.main-nav .catalog-card::before {
  position: absolute;
  inset: auto -26px -42px auto;
  width: 126px;
  height: 126px;
  border-radius: 999px;
  background: rgba(18, 169, 232, 0.12);
  content: "";
  transition: transform 220ms ease, background 220ms ease;
}

.main-nav .catalog-card::after {
  content: none;
}

.catalog-card__media {
  position: relative;
  z-index: 1;
  display: block;
  aspect-ratio: 45 / 28;
  min-height: 0;
  overflow: hidden;
  border-radius: 15px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(218, 239, 255, 0.74)),
    radial-gradient(circle at 82% 18%, rgba(18, 169, 232, 0.24), transparent 34%),
    #edf6fc;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.78),
    inset 0 -18px 38px rgba(11, 142, 232, 0.1);
}

.catalog-card__media::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(4, 18, 34, 0.2)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.42), transparent 38%),
    radial-gradient(circle at 84% 12%, rgba(11, 142, 232, 0.24), transparent 34%);
  mix-blend-mode: screen;
  opacity: 0.48;
  content: "";
  pointer-events: none;
}

.catalog-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--catalog-image-position);
  filter: saturate(0.92) contrast(1.04) brightness(1.06);
  transform: scale(var(--catalog-image-scale));
  transition: transform 260ms ease, filter 260ms ease;
}

.catalog-card__image {
  object-fit: contain;
}

.catalog-card__image--dark {
  display: none;
}

html[data-theme="dark"] .catalog-card__image--light {
  display: none;
}

html[data-theme="dark"] .catalog-card__image--dark {
  display: block;
}

.main-nav .catalog-card__body {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 7px;
  padding: 0 7px 8px;
}

.main-nav .catalog-card__body strong {
  font-size: 16px;
  line-height: 1.15;
}

.main-nav .catalog-card__body span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.catalog-card--sprinter {
  --catalog-image-position: center center;
}

.catalog-card--vario {
  --catalog-image-position: center center;
}

.catalog-card--land-cruiser {
  --catalog-image-position: center center;
}

.catalog-card--acid-land-cruiser {
  --catalog-image-position: center center;
}

.catalog-card--classic-land-cruiser {
  --catalog-image-position: center center;
}

.catalog-card--terrain-land-cruiser {
  --catalog-image-position: center center;
}

.catalog-card--defender {
  --catalog-image-position: center center;
}

.catalog-card--steyr {
  --catalog-image-position: center center;
}

.main-nav .catalog-card--text {
  grid-template-rows: 1fr;
  align-content: center;
  min-height: 186px;
  padding: 20px;
  background:
    radial-gradient(circle at 84% 16%, rgba(18, 169, 232, 0.22), transparent 36%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(230, 244, 255, 0.82));
}

.main-nav .catalog-card--text .catalog-card__body {
  align-content: center;
  min-height: 100%;
  padding: 0;
}

.main-nav .catalog-card--text .catalog-card__body::before {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 4px;
  border: 1px solid rgba(11, 142, 232, 0.22);
  border-radius: 999px;
  color: var(--blue);
  background: rgba(255, 255, 255, 0.72);
  content: "+";
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
}

.main-nav .catalog-card:nth-child(5n+1),
.main-nav .catalog-card:nth-child(5n+2) {
  transform: translate3d(-18px, 18px, 0);
}

.main-nav .catalog-card:nth-child(5n+3) {
  transform: translate3d(0, 22px, 0);
}

.main-nav .catalog-card:nth-child(5n+4),
.main-nav .catalog-card:nth-child(5n) {
  transform: translate3d(18px, 18px, 0);
}

.main-nav .nav-catalog:hover .catalog-card,
.main-nav .nav-catalog:focus-within .catalog-card {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.nav-catalog:hover .catalog-card:nth-child(1),
.nav-catalog:focus-within .catalog-card:nth-child(1) {
  transition-delay: 40ms;
}

.nav-catalog:hover .catalog-card:nth-child(2),
.nav-catalog:focus-within .catalog-card:nth-child(2) {
  transition-delay: 80ms;
}

.nav-catalog:hover .catalog-card:nth-child(3),
.nav-catalog:focus-within .catalog-card:nth-child(3) {
  transition-delay: 120ms;
}

.nav-catalog:hover .catalog-card:nth-child(4),
.nav-catalog:focus-within .catalog-card:nth-child(4) {
  transition-delay: 160ms;
}

.nav-catalog:hover .catalog-card:nth-child(5),
.nav-catalog:focus-within .catalog-card:nth-child(5) {
  transition-delay: 200ms;
}

.nav-catalog:hover .catalog-card:nth-child(6),
.nav-catalog:focus-within .catalog-card:nth-child(6) {
  transition-delay: 240ms;
}

.nav-catalog:hover .catalog-card:nth-child(7),
.nav-catalog:focus-within .catalog-card:nth-child(7) {
  transition-delay: 280ms;
}

.nav-catalog:hover .catalog-card:nth-child(8),
.nav-catalog:focus-within .catalog-card:nth-child(8) {
  transition-delay: 320ms;
}

.nav-catalog:hover .catalog-card:nth-child(9),
.nav-catalog:focus-within .catalog-card:nth-child(9) {
  transition-delay: 360ms;
}

.main-nav .catalog-card:hover,
.main-nav .catalog-card:focus-visible {
  border-color: rgba(11, 142, 232, 0.42);
  box-shadow: 0 18px 36px rgba(11, 142, 232, 0.14);
}

.main-nav .catalog-card:hover .catalog-card__media img,
.main-nav .catalog-card:focus-visible .catalog-card__media img {
  filter: saturate(1) contrast(1.06) brightness(1.08);
  transform: scale(var(--catalog-image-hover-scale));
}

.main-nav .catalog-card:hover::before,
.main-nav .catalog-card:focus-visible::before {
  background: rgba(18, 169, 232, 0.2);
  transform: scale(1.18);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  min-width: 0;
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 42px;
  min-width: 116px;
  padding: 0 14px 0 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.theme-toggle:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(7, 31, 60, 0.12);
}

.theme-toggle:focus-visible {
  outline: 3px solid rgba(11, 142, 232, 0.24);
  outline-offset: 3px;
}

.theme-toggle__icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  color: var(--blue-dark);
  background: rgba(11, 142, 232, 0.1);
}

.theme-toggle__icon svg {
  position: absolute;
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: opacity 180ms ease, transform 180ms ease;
}

.theme-toggle__moon {
  opacity: 0;
  transform: scale(0.72);
}

.theme-toggle [data-theme-toggle-label] {
  min-width: 5ch;
  text-align: left;
}

html[data-theme="dark"] .theme-toggle__sun {
  opacity: 0;
  transform: scale(0.72);
}

html[data-theme="dark"] .theme-toggle__moon {
  opacity: 1;
  transform: scale(1);
}

.language-switcher {
  display: inline-flex;
  margin-left: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
}

.language-switcher a {
  display: inline-grid;
  place-items: center;
  min-width: 42px;
  min-height: 34px;
  border: 0;
  border-radius: 999px;
  color: var(--muted);
  background: transparent;
  font-weight: 900;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.language-switcher a.is-active {
  color: var(--white);
  background: var(--blue);
}

.language-switcher a:hover,
.language-switcher a:focus-visible {
  transform: translateY(-1px) scale(1.04);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 56px;
  padding: 0 26px;
  border: 2px solid var(--blue);
  border-radius: 10px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button span {
  min-width: 0;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(11, 142, 232, 0.22);
}

.button-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
}

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

.button-outline {
  min-width: 224px;
}

.header-actions .button-outline {
  margin-left: 4px;
}

.hero-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(0, 1.24fr);
  align-items: start;
  width: min(100% - 64px, 1544px);
  min-height: calc(100svh - 86px);
  margin: 0 auto;
  padding: clamp(30px, 5.2vh, 58px) 0 22px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 665px;
  min-width: 0;
  padding-top: 0;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--blue-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-copy .eyebrow {
  display: none;
}

.hero-copy h1 {
  margin: 0;
  max-width: 650px;
  font-size: clamp(54px, 5.35vw, 84px);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-copy h1 span,
.hero-copy h1 strong {
  display: block;
}

.hero-copy h1 strong {
  color: var(--blue);
}

.hero-lead {
  max-width: 585px;
  margin: 24px 0 24px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.5;
}

@media (min-width: 921px) {
  html[lang^="en"] .hero-copy h1 {
    max-width: 590px;
  }

  html[lang^="en"] .hero-lead {
    max-width: 520px;
  }
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 36px;
}

.hero-visual {
  position: absolute;
  inset: 8px calc((1544px - min(100vw - 64px, 1544px)) / -2) 0 37.4%;
  isolation: isolate;
  pointer-events: none;
}

.hero-plane,
.hero-visual::before,
.hero-visual::after {
  position: absolute;
  z-index: 0;
}

.hero-plane {
  opacity: 0.96;
}

.hero-plane-one {
  right: -2.7vw;
  top: 78px;
  width: min(960px, 58vw);
  height: 486px;
  clip-path: polygon(39% 0, 100% 0, 74% 44%, 43% 44%, 0 70%, 20% 28%);
  background: linear-gradient(132deg, rgba(214, 232, 248, 0.72), rgba(228, 240, 250, 0.18) 74%);
}

.hero-plane-two {
  right: -6.8vw;
  top: 270px;
  width: min(1040px, 63vw);
  height: 372px;
  clip-path: polygon(27% 16%, 100% 0, 78% 84%, 0 100%);
  background: linear-gradient(126deg, rgba(214, 232, 248, 0.7), rgba(6, 126, 212, 0.26) 52%, rgba(6, 126, 212, 0.08));
}

.hero-plane-three {
  right: -1.7vw;
  top: 250px;
  width: min(610px, 37vw);
  height: 348px;
  clip-path: polygon(36% 0, 100% 0, 72% 100%, 0 100%);
  background: linear-gradient(126deg, rgba(91, 182, 242, 0.36), rgba(0, 129, 219, 0.96));
}

.hero-visual::before,
.hero-visual::after {
  position: absolute;
  display: block;
  content: "";
}

.hero-visual::before {
  left: 4.4%;
  bottom: 118px;
  width: min(550px, 34vw);
  height: 118px;
  clip-path: polygon(20% 0, 100% 0, 74% 100%, 0 100%);
  background: linear-gradient(126deg, rgba(0, 126, 218, 0.26), rgba(0, 142, 232, 1));
}

.hero-visual::after {
  left: 16.7%;
  top: 300px;
  width: min(455px, 27vw);
  height: 182px;
  clip-path: polygon(24% 0, 100% 0, 72% 100%, 0 100%);
  background: linear-gradient(130deg, rgba(207, 229, 249, 0.42), rgba(207, 229, 249, 0.08));
}

.hero-showcase {
  position: absolute;
  right: 0.8vw;
  bottom: 24px;
  z-index: 1;
  width: clamp(760px, 60vw, 1000px);
  aspect-ratio: 1672 / 941;
  max-height: min(578px, calc(100svh - 180px));
  filter: drop-shadow(0 28px 18px rgba(2, 13, 30, 0.18));
}

.hero-showcase::before {
  position: absolute;
  left: 18%;
  right: 4%;
  bottom: -14px;
  z-index: 0;
  height: 92px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(0, 109, 195, 0.2), rgba(0, 109, 195, 0) 68%);
  content: "";
  animation: heroShowcaseGlow 15s infinite ease-in-out;
}

.hero-vehicle {
  --vehicle-scale: 1;
  --vehicle-x: 0px;
  position: absolute;
  right: 0;
  z-index: 1;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  opacity: 0;
  transform: translate3d(var(--vehicle-x), 0, 0) scale(var(--vehicle-scale));
  transform-origin: right bottom;
  filter: saturate(1) contrast(1);
  animation: heroVehicleShowcase 15s infinite cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity;
}

.hero-vehicle-one {
  animation-delay: 0s;
}

.hero-vehicle-two {
  animation-delay: 5s;
}

.hero-vehicle-three {
  animation-delay: 10s;
}

@keyframes heroVehicleShowcase {
  0% {
    opacity: 0;
  }

  4%,
  31% {
    opacity: 1;
  }

  35%,
  100% {
    opacity: 0;
  }
}

@keyframes heroShowcaseGlow {
  0%,
  35%,
  100% {
    opacity: 0.5;
    transform: scaleX(0.98);
  }

  4%,
  31% {
    opacity: 0.68;
    transform: scaleX(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-vehicle {
    animation: none;
  }

  .hero-vehicle-one {
    opacity: 1;
    transform: none;
    filter: none;
  }

  .hero-showcase::before {
    animation: none;
  }

  .catalog-menu,
  .main-nav .catalog-card {
    transition: none;
  }

  .main-nav .catalog-card,
  .main-nav .catalog-card:nth-child(n) {
    transform: none;
  }
}

.section {
  width: min(100% - 64px, 1280px);
  margin: 0 auto;
  padding: 92px 0;
}

.legal-page {
  width: min(100% - 64px, 1180px);
  margin: 0 auto;
  padding: 42px 0 0;
}

.legal-hero {
  display: grid;
  gap: 16px;
  max-width: 860px;
  margin-bottom: 30px;
}

.legal-hero h1 {
  margin: 0;
  font-size: clamp(42px, 5vw, 74px);
  line-height: 0.98;
}

.legal-hero p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.legal-updated {
  color: var(--blue-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-page {
  width: min(calc(100% - 64px), 1560px);
  margin: 0 auto;
  padding: 42px 0 0;
}

.contact-page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
  gap: 22px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 54px 0 18px;
  text-align: center;
}

.contact-page-hero h1 {
  max-width: 14ch;
  margin: 8px 0 0;
  font-size: clamp(42px, 5vw, 74px);
  line-height: 0.98;
}

.contact-page-hero p:not(.section-kicker) {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.contact-section--standalone {
  display: block;
  width: 100%;
  max-width: 1440px;
  padding-top: 52px;
  padding-bottom: 42px;
}

.contact-page-details {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 28px;
  align-items: stretch;
  max-width: 1440px;
  margin: 0 auto;
}

.contact-page-details > * {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.contact-page-card {
  grid-template-columns: minmax(0, 1fr);
  align-items: stretch;
  gap: 18px;
  padding: 38px 34px;
}

.contact-page-card .contact-card-eyebrow,
.contact-page-card .contact-card-title {
  grid-column: 1 / -1;
}

.contact-page-card .contact-card-phone {
  width: 100%;
  min-height: 100%;
}

.contact-page-aside {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: minmax(0, 1fr);
  gap: 28px;
}

.contact-card-phone__number {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.contact-card-phone__number > span {
  flex: 0 0 auto;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1;
}

.contact-page-visit {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 18px;
  padding: 34px;
  border-radius: 14px;
  text-align: center;
}

.contact-page-visit strong,
.contact-page-visit p {
  margin: 0;
}

.contact-page-visit strong {
  font-size: clamp(24px, 2.4vw, 36px);
  line-height: 1.08;
}

.contact-page-socials {
  display: grid;
  gap: 16px;
  padding: 28px 30px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface-card-strong);
  text-align: center;
}

.contact-page-socials > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.contact-page-socials .social-badge {
  color: var(--blue-dark);
  border-color: rgba(11, 142, 232, 0.24);
  background: rgba(11, 142, 232, 0.08);
}

.contact-page-form-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 34px;
  align-items: start;
  width: min(100%, 1280px);
  margin-right: auto;
  margin-left: auto;
  padding-top: 56px;
}

.contact-page-form-section .contact-heading {
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
  gap: 16px;
  margin-bottom: 8px;
  text-align: center;
}

.contact-page-form-section .contact-heading > p {
  max-width: 720px;
}

.contact-page-inquiry-form {
  grid-column: 1;
  width: 100%;
  box-sizing: border-box;
  padding: 36px;
}

.legal-shell {
  display: grid;
  gap: 14px;
}

.legal-card {
  padding: 28px 30px;
  border: 1px solid rgba(198, 216, 231, 0.92);
  border-radius: 14px;
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.96), rgba(244, 248, 252, 0.88)),
    var(--white);
  box-shadow: 0 18px 42px rgba(7, 31, 60, 0.08);
}

.legal-card h2 {
  margin: 0 0 14px;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.08;
}

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

.legal-card p + p {
  margin-top: 12px;
}

.intro-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.86fr) minmax(520px, 1.14fr);
  gap: 54px;
  align-items: stretch;
  border-top: 1px solid rgba(219, 230, 241, 0.8);
}

.section h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.03;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.intro-copy p,
.craft-panel p,
.section-heading p,
.contact-copy > p {
  margin: 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.65;
  overflow-wrap: anywhere;
}

.intro-copy {
  display: grid;
  align-content: start;
  gap: 24px;
}

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

.capability-grid article {
  display: grid;
  align-content: space-between;
  min-height: 170px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 38px rgba(7, 31, 60, 0.07);
}

.capability-grid span,
.process-rail span {
  color: var(--blue);
  font-weight: 900;
  letter-spacing: 0;
}

.capability-grid span {
  font-size: 13px;
}

.process-rail span {
  font-size: 17px;
}

.capability-grid strong {
  max-width: none;
  font-size: 21px;
  line-height: 1.18;
  overflow-wrap: anywhere;
}

.craft-section {
  padding-top: 28px;
}

.craft-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(420px, 0.78fr);
  gap: 70px;
  align-items: end;
  padding: 38px 42px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(128deg, rgba(245, 250, 255, 0.98), rgba(255, 255, 255, 0.88) 55%),
    var(--white);
  box-shadow: 0 20px 55px rgba(7, 31, 60, 0.08);
}

.craft-panel::after {
  position: absolute;
  right: -90px;
  top: -68px;
  width: 420px;
  height: 240px;
  clip-path: polygon(28% 0, 100% 0, 70% 100%, 0 100%);
  background: linear-gradient(125deg, rgba(11, 142, 232, 0.16), rgba(11, 142, 232, 0.02));
  content: "";
}

.process-rail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.process-rail article {
  display: grid;
  gap: 24px;
  min-height: 136px;
  padding: 18px;
  background: #fbfdff;
}

.process-rail strong {
  font-size: 16px;
  line-height: 1.28;
  overflow-wrap: anywhere;
}

.panels-section {
  position: relative;
  isolation: isolate;
  padding-top: 34px;
}

.panels-section::before {
  position: absolute;
  inset: 0 50% auto auto;
  z-index: -1;
  width: 52vw;
  height: 360px;
  border-radius: 0 0 80px 0;
  background: linear-gradient(135deg, rgba(11, 142, 232, 0.08), rgba(11, 142, 232, 0));
  content: "";
}

.panels-heading {
  display: grid;
  grid-template-columns: minmax(320px, 0.86fr) minmax(420px, 0.78fr);
  gap: 70px;
  align-items: end;
  margin-bottom: 30px;
}

.panels-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.panels-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.76fr) minmax(520px, 1fr);
  gap: 18px;
  align-items: stretch;
}

.panels-material {
  position: relative;
  display: grid;
  gap: 22px;
  min-height: 0;
  overflow: hidden;
  padding: 18px;
  border: 1px solid rgba(197, 216, 232, 0.9);
  border-radius: 8px;
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.94), rgba(244, 248, 252, 0.88)),
    var(--white);
  box-shadow: 0 22px 58px rgba(7, 31, 60, 0.09);
}

.panels-material-visual {
  position: static;
  width: 100%;
  height: clamp(230px, 24vw, 320px);
  border-radius: 10px;
  object-fit: cover;
  object-position: center;
  box-shadow:
    0 20px 42px rgba(11, 142, 232, 0.14);
}

.panels-material strong,
.panels-material p,
.panels-material .button {
  margin-left: 14px;
  margin-right: 14px;
}

.panels-material strong {
  max-width: 420px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.05;
}

.panels-material p {
  max-width: 520px;
  margin: 16px 0 24px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.62;
}

.panels-material .button {
  margin-bottom: 14px;
  width: fit-content;
}

.panels-benefits {
  display: grid;
  align-content: stretch;
  gap: 10px;
  padding: 12px;
  border: 1px solid rgba(197, 216, 232, 0.9);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(244, 248, 252, 0.82)),
    var(--white);
  box-shadow: 0 18px 42px rgba(7, 31, 60, 0.07);
}

.panels-benefits article {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  min-height: 78px;
  padding: 14px 18px;
  border: 1px solid rgba(219, 230, 241, 0.92);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
}

.panels-benefits span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(11, 142, 232, 0.1);
}

.panels-benefits span::before {
  width: 15px;
  height: 9px;
  border-left: 3px solid var(--blue);
  border-bottom: 3px solid var(--blue);
  content: "";
  transform: rotate(-45deg) translate(1px, -1px);
}

.panels-benefits strong {
  font-size: 19px;
  line-height: 1.2;
}

.panels-use-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.panels-use-strip span {
  display: grid;
  place-items: center;
  min-height: 76px;
  padding: 16px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 900;
  text-align: center;
}

.offer-teaser-section {
  position: relative;
  padding-top: 86px;
  padding-bottom: 86px;
}

.offer-teaser-heading {
  grid-template-columns: minmax(320px, 0.9fr) minmax(280px, 0.65fr);
  margin-bottom: 46px;
}

.offer-teaser-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(36px, 6vw, 90px);
}

.offer-teaser-card {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 100%;
  padding: 14px 14px 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-card-strong);
  box-shadow: 0 12px 30px rgba(7, 31, 60, 0.06);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.offer-teaser-card:hover,
.offer-teaser-card:focus-visible {
  border-color: rgba(11, 142, 232, 0.4);
  box-shadow: 0 18px 36px rgba(7, 31, 60, 0.11);
  transform: translateY(-2px);
}

.offer-teaser-card img {
  width: 100%;
  height: clamp(260px, 27vw, 380px);
  border-radius: 2px;
  object-fit: cover;
  transition: filter 180ms ease;
}

.offer-teaser-card:hover img,
.offer-teaser-card:focus-visible img {
  filter: saturate(1.08) contrast(1.02);
}

.offer-teaser-card span {
  color: var(--blue-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.offer-teaser-card strong {
  color: var(--ink);
  font-size: clamp(24px, 2.35vw, 32px);
  line-height: 1.05;
}

.offer-teaser-card p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.62;
}

.offer-teaser-card em {
  color: var(--blue-dark);
  font-style: normal;
  font-weight: 900;
}

.offer-page {
  background:
    radial-gradient(circle at 82% 0%, rgba(11, 142, 232, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 250, 255, 1) 50%, #ffffff 100%);
}

.offer-hero {
  width: min(100% - 64px, 1280px);
  margin: 0 auto;
  padding: 52px 0 76px;
}

.offer-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(380px, 0.72fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
}

.offer-hero-copy {
  display: grid;
  align-content: center;
  gap: 20px;
  max-width: 720px;
  padding: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-card);
  box-shadow: 0 22px 60px rgba(7, 31, 60, 0.1);
}

.offer-hero-copy h1 {
  margin: 0;
  font-size: clamp(46px, 5.2vw, 76px);
  line-height: 0.96;
  overflow-wrap: anywhere;
  white-space: normal;
}

.offer-hero-copy p,
.offer-copy-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.offer-hero-copy > p:not(.section-kicker) {
  max-width: 820px;
}

.offer-hero-copy .button {
  width: fit-content;
}

.offer-hero-media {
  position: relative;
  min-height: 300px;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 8px;
  background: #071326;
  box-shadow: 0 30px 70px rgba(7, 31, 60, 0.16);
}

.offer-hero-media img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
}

.offer-page--panels .offer-hero-grid {
  grid-template-columns: minmax(0, 0.96fr) minmax(380px, 0.72fr);
}

.offer-page--panels .offer-hero-media {
  display: block;
  min-height: 300px;
  padding: 0;
  border: 1px solid var(--line);
  background: transparent;
  box-shadow: 0 22px 58px rgba(7, 31, 60, 0.12);
  isolation: isolate;
}

.offer-page--panels .offer-hero-media::before {
  position: absolute;
  inset: 18px;
  z-index: 0;
  border: 1px solid rgba(219, 230, 241, 0.2);
  border-radius: 6px;
  background:
    linear-gradient(128deg, transparent 0 46%, rgba(143, 208, 255, 0.16) 46.2% 46.8%, transparent 47%),
    linear-gradient(150deg, transparent 0 62%, rgba(255, 255, 255, 0.12) 62.2% 62.7%, transparent 63%);
  content: "";
  pointer-events: none;
}

.offer-page--panels .offer-hero-media::after {
  position: absolute;
  right: 10%;
  bottom: 8%;
  z-index: 0;
  width: 72%;
  height: 18px;
  border-radius: 999px;
  background: rgba(7, 20, 36, 0.24);
  filter: blur(12px);
  content: "";
}

.offer-page--panels .offer-hero-media img {
  position: relative;
  z-index: 1;
  min-height: 300px;
  border-radius: 6px;
  box-shadow: 0 22px 58px rgba(0, 12, 28, 0.28);
}

.offer-page--food-trailers .offer-hero-media {
  min-height: 0;
  aspect-ratio: 1586 / 992;
  padding: 0;
  border: 1px solid var(--line);
  background: transparent;
  box-shadow: 0 22px 58px rgba(7, 31, 60, 0.12);
  isolation: isolate;
}

.offer-page--food-trailers .offer-hero-grid {
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.6fr);
}

.offer-page--food-trailers .offer-hero-copy {
  max-width: 820px;
}

.offer-page--food-trailers .offer-hero-copy h1 {
  font-size: clamp(42px, 4.7vw, 68px);
}

.offer-page--food-trailers .offer-hero-media::before {
  position: absolute;
  inset: 18px;
  z-index: 0;
  border: 1px solid rgba(219, 230, 241, 0.2);
  border-radius: 6px;
  background:
    linear-gradient(128deg, transparent 0 46%, rgba(143, 208, 255, 0.16) 46.2% 46.8%, transparent 47%),
    linear-gradient(150deg, transparent 0 62%, rgba(255, 255, 255, 0.12) 62.2% 62.7%, transparent 63%);
  content: "";
  pointer-events: none;
}

.offer-page--food-trailers .offer-hero-media img {
  position: relative;
  z-index: 1;
  min-height: 0;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 22px 58px rgba(0, 12, 28, 0.28);
}

.offer-page--panels .offer-hero-media::before,
.offer-page--panels .offer-hero-media::after,
.offer-page--food-trailers .offer-hero-media::before,
.catalog-hero__media::before {
  display: none;
}

.offer-detail-section {
  display: grid;
  gap: 26px;
  padding-top: 20px;
}

.offer-copy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.offer-copy-grid article {
  display: grid;
  gap: 18px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 42px rgba(7, 31, 60, 0.07);
}

.offer-page--panels .offer-detail-section {
  gap: 0;
  padding-top: 72px;
  padding-bottom: 26px;
}

.offer-page--panels .offer-copy-grid {
  grid-template-columns: minmax(0, 1fr);
}

.offer-page--panels .offer-copy-grid article {
  position: relative;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: auto 1fr;
  gap: 34px clamp(36px, 5vw, 72px);
  min-height: 360px;
  padding: clamp(44px, 5vw, 72px);
  overflow: hidden;
  border-color: var(--line);
  background:
    linear-gradient(128deg, rgba(245, 250, 255, 0.98), rgba(255, 255, 255, 0.9) 55%),
    var(--white);
  box-shadow: 0 20px 55px rgba(7, 31, 60, 0.08);
  color: var(--ink);
}

.offer-page--panels .offer-copy-grid article::before {
  display: none;
}

.offer-page--panels .offer-copy-grid article::after {
  position: absolute;
  z-index: 0;
  right: -112px;
  top: -162px;
  width: 470px;
  height: 470px;
  border-radius: 50%;
  background: rgba(11, 142, 232, 0.08);
  content: "";
  pointer-events: none;
}

.offer-page--panels .offer-copy-grid h2 {
  position: relative;
  z-index: 1;
  grid-column: 1 / -1;
  grid-row: 1;
  max-width: 620px;
  font-size: clamp(34px, 3.6vw, 50px);
  overflow-wrap: normal;
  word-break: normal;
  color: var(--ink);
}

.offer-copy-body {
  display: grid;
  gap: 16px;
}

.offer-page--panels .offer-copy-body {
  position: relative;
  z-index: 1;
  display: contents;
}

.offer-page--panels .offer-copy-body p {
  position: relative;
  z-index: 1;
  max-width: none;
  margin: 0;
  font-size: 19px;
  line-height: 1.65;
  color: var(--muted);
}

.offer-page--panels .offer-copy-body p:first-child {
  grid-column: 1;
  grid-row: 2;
  align-self: start;
  max-width: none;
}

.offer-page--panels .offer-copy-body p:last-child {
  grid-column: 2;
  grid-row: 2;
  align-self: start;
  max-width: none;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.offer-page--panels .offer-gallery-section {
  padding-top: 58px;
}

@media (max-width: 920px) {
  .inquiry-path-card span {
    min-height: 112px;
    padding: 20px;
  }

  .offer-teaser-section {
    padding: 58px 0;
  }

  .offer-page--panels .offer-detail-section {
    padding-top: 48px;
    padding-bottom: 12px;
  }

  .offer-page--panels .offer-copy-grid article {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 18px;
    min-height: 0;
    padding: 30px 24px;
  }

  .offer-page--panels .offer-gallery-section {
    padding-top: 42px;
  }

  .offer-page--panels .offer-copy-grid h2 {
    grid-column: auto;
    font-size: clamp(32px, 10vw, 44px);
  }

  .offer-page--panels .offer-copy-body {
    display: grid;
    gap: 16px;
  }

  .offer-page--panels .offer-copy-body p {
    grid-column: auto;
    grid-row: auto;
    align-self: auto;
    max-width: none;
    padding: 0;
    border: 0;
    font-size: 16px;
  }
}

.offer-copy-grid h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(24px, 2.35vw, 34px);
  line-height: 1.08;
}

.offer-feature-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.offer-feature-strip span {
  display: grid;
  place-items: center;
  min-height: 76px;
  padding: 16px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 900;
  text-align: center;
}

.offer-gallery-section {
  padding-top: 36px;
}

.offer-gallery-section .section-kicker {
  font-size: 16px;
  letter-spacing: 0.02em;
}

.offer-gallery-section .photo-browser-meta {
  padding-inline: 18px;
}

.offer-sale-notice {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 32px;
  width: min(100% - 64px, 1280px);
  margin: 24px auto 0;
  padding: 32px;
  border: 1px solid var(--line);
  border-left: 5px solid var(--blue);
  border-radius: 8px;
  background: var(--surface-note);
}

.offer-sale-notice h2,
.offer-sale-notice p {
  margin: 0;
}

.offer-sale-notice h2 {
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.15;
}

.offer-sale-notice > div > p:not(.section-kicker) {
  max-width: 720px;
  margin-top: 12px;
  color: var(--muted);
}

.offer-sale-notice__actions {
  display: grid;
  justify-items: end;
  gap: 16px;
}

.offer-sale-notice__price {
  display: grid;
  justify-items: end;
  gap: 1px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.offer-sale-notice__price strong {
  color: var(--ink);
  font-size: clamp(30px, 3.2vw, 46px);
  line-height: 1;
  letter-spacing: -0.04em;
  text-transform: none;
}

.offer-trailer-listings {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  margin-top: 8px;
}

.offer-trailer-card {
  display: grid;
  grid-template-columns: minmax(360px, 1.15fr) minmax(0, 1fr);
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface-card);
  box-shadow: 0 16px 42px rgba(7, 31, 60, 0.08);
  color: var(--ink);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.offer-trailer-card:hover,
.offer-trailer-card:focus-visible {
  border-color: rgba(11, 142, 232, 0.48);
  outline: none;
  box-shadow: 0 22px 48px rgba(7, 31, 60, 0.15);
  transform: translateY(-3px);
}

.offer-trailer-card__media {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  background: #dfeaf3;
}

.offer-trailer-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 320ms ease;
}

.offer-trailer-card:hover .offer-trailer-card__media img {
  transform: none;
}

.offer-trailer-card__media small {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(5, 31, 56, 0.86);
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.offer-trailer-card__body {
  display: grid;
  align-content: center;
  gap: 12px;
  min-width: 0;
  padding: clamp(20px, 2.2vw, 30px);
}

.offer-trailer-card__body strong {
  font-size: clamp(21px, 2vw, 29px);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.offer-trailer-card__body > span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.offer-trailer-card__body em {
  color: var(--blue-dark);
  font-size: 13px;
  font-style: normal;
  font-weight: 900;
}

@media (max-width: 720px) {
  .offer-sale-notice {
    grid-template-columns: 1fr;
    align-items: start;
    width: min(100% - 40px, 1280px);
    gap: 22px;
    padding: 24px;
  }

  .offer-sale-notice__actions,
  .offer-sale-notice__price {
    justify-items: start;
  }

  .offer-trailer-listings {
    grid-template-columns: 1fr;
  }

  .offer-trailer-card {
    grid-template-columns: 1fr;
  }

  .offer-trailer-card__media {
    min-height: 230px;
    aspect-ratio: 16 / 10;
  }
}

.portfolio-section {
  width: 100%;
  max-width: none;
  padding: 102px max(32px, calc((100vw - 1280px) / 2));
  background:
    radial-gradient(circle at 82% 6%, rgba(11, 142, 232, 0.22), transparent 30%),
    linear-gradient(180deg, #071326 0%, #081a31 58%, #f6faff 58%, #f6faff 100%);
  color: var(--white);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(360px, 0.68fr);
  align-items: end;
  gap: 80px;
  margin-bottom: 42px;
}

.section-heading > div {
  min-width: 0;
}

.section-heading > *,
.intro-section > *,
.craft-panel > *,
.contact-section > *,
.portfolio-cta > *,
.project-hero-grid > *,
.project-detail-section > * {
  min-width: 0;
}

.portfolio-section .section-kicker,
.portfolio-section h2 {
  color: #ffffff;
}

.portfolio-section .section-heading p {
  color: #afbed0;
}

.portfolio-label {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 3px;
  margin: 0 0 12px;
  color: #78c9ff;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.portfolio-label::after {
  display: block;
  width: 92px;
  height: 2px;
  background: #148fe0;
  content: "";
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: clamp(220px, 14vw, 258px);
  gap: 18px;
}

.project-card {
  position: relative;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  border-radius: 8px;
  grid-column: span 2;
  color: #ffffff;
  background: #0b2039;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
}

.project-card-wide {
  grid-column: span 4;
}

.project-card-mirror-wide {
  grid-column: 3 / span 4;
}

.project-card-tall {
  grid-row: span 2;
}

.project-card img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  opacity: 0.94;
  filter: saturate(0.98) contrast(1.04);
  transition: transform 280ms ease, opacity 280ms ease;
}

.project-card-wide img,
.project-card-mirror-wide img {
  object-position: center 56%;
}

.project-card-tall img {
  object-position: center;
}

.project-card:nth-child(3) img,
.project-card:nth-child(5) img {
  object-position: center 58%;
}

.project-card:nth-child(4) img,
.project-card:nth-child(6) img {
  object-position: center 46%;
}

.project-card::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 12, 24, 0.03) 8%, rgba(4, 12, 24, 0.86) 100%),
    linear-gradient(90deg, rgba(4, 12, 24, 0.48), transparent 62%);
  content: "";
}

.project-card:hover img {
  transform: scale(1.04);
  opacity: 1;
}

.project-card div {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 20px;
  display: grid;
  gap: 2px;
  z-index: 1;
  min-width: 0;
}

.project-card span {
  display: inline-block;
  margin-bottom: 0;
  color: #78c9ff;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.project-card h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.16;
  overflow-wrap: anywhere;
}

.project-card p {
  max-width: 560px;
  margin: 0;
  color: #d7e4f1;
  font-size: 14px;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.project-card em {
  display: inline-flex;
  margin-top: 0;
  color: #ffffff;
  font-style: normal;
  font-weight: 900;
}

.project-card-wide h3,
.project-card-mirror-wide h3 {
  max-width: 520px;
  font-size: 32px;
}

.portfolio-label-gallery {
  margin-top: 38px;
  color: #095f9f;
}

.portfolio-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
  margin-top: 28px;
  padding: 28px 32px;
  border: 1px solid #d7e4ef;
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 22px 60px rgba(7, 31, 60, 0.11);
}

.portfolio-cta strong {
  display: block;
  font-size: 24px;
  line-height: 1.18;
  overflow-wrap: anywhere;
}

.portfolio-cta p {
  max-width: 780px;
  margin: 8px 0 0;
  color: var(--muted);
  overflow-wrap: anywhere;
}

.photo-browser {
  display: grid;
  gap: 16px;
  color: var(--ink);
}

.portfolio-section .photo-browser {
  padding: 18px;
  border: 1px solid #d7e4ef;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 22px 60px rgba(7, 31, 60, 0.11);
}

.photo-browser-main {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #071326;
}

.photo-browser-stage {
  display: block;
  width: 100%;
  height: clamp(320px, 42vw, 620px);
  padding: 0;
  border: 0;
  background: #071326;
  cursor: zoom-in;
}

.project-detail-section .photo-browser-stage {
  height: clamp(390px, 48vw, 700px);
}

.photo-browser-stage img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.photo-browser-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: #f7fbff;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.08)),
    rgba(6, 18, 33, 0.56);
  box-shadow:
    0 16px 34px rgba(2, 10, 20, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(14px);
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  transform: translateY(-50%);
  cursor: pointer;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.photo-browser-arrow:hover {
  border-color: rgba(143, 208, 255, 0.56);
  background:
    linear-gradient(145deg, rgba(104, 194, 255, 0.28), rgba(255, 255, 255, 0.1)),
    rgba(5, 21, 38, 0.72);
  box-shadow:
    0 20px 38px rgba(2, 10, 20, 0.24),
    0 0 0 6px rgba(69, 178, 255, 0.08);
  transform: translateY(-50%) scale(1.04);
}

.photo-browser-arrow:focus-visible {
  outline: 3px solid rgba(69, 178, 255, 0.34);
  outline-offset: 3px;
}

.photo-browser-prev {
  left: 14px;
}

.photo-browser-next {
  right: 14px;
}

.photo-browser-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
}

.photo-browser-meta span {
  color: var(--blue-dark);
}

.photo-browser-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(92px, 1fr));
  gap: 10px;
}

.photo-browser-thumbs button {
  height: 82px;
  padding: 0;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 8px;
  background: #dfeaf5;
  cursor: pointer;
}

.photo-browser-thumbs button.is-active {
  border-color: var(--blue);
}

.photo-browser-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  place-items: center;
  padding: 30px;
  background: rgba(3, 10, 22, 0.92);
}

.photo-lightbox.is-open {
  display: grid;
}

.photo-lightbox img {
  max-width: min(100%, 1500px);
  max-height: 88vh;
  object-fit: contain;
}

.photo-lightbox-close {
  position: fixed;
  right: 24px;
  top: 18px;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  font-size: 30px;
  cursor: pointer;
}

.project-page {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 250, 255, 1) 48%, #ffffff 100%);
}

.project-hero {
  width: min(100% - 64px, 1280px);
  margin: 0 auto;
  padding: 52px 0 76px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  color: var(--blue-dark);
  font-weight: 900;
}

.project-hero-grid {
  display: grid;
  grid-template-columns: minmax(330px, 0.72fr) minmax(520px, 1fr);
  gap: 42px;
  align-items: stretch;
}

.project-hero-copy {
  display: grid;
  align-content: center;
  gap: 24px;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 22px 60px rgba(7, 31, 60, 0.1);
}

.project-hero-copy h1 {
  margin: 0;
  font-size: clamp(44px, 5vw, 74px);
  line-height: 0.98;
  overflow-wrap: anywhere;
}

.project-page--food-trailer-yellow .project-hero-copy h1 {
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.04;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.project-page--food-trailer-yellow .project-description h2 {
  font-size: clamp(28px, 2.8vw, 36px);
  line-height: 1.08;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.project-hero-copy p,
.project-description p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
  overflow-wrap: anywhere;
}

.catalog-page {
  background:
    radial-gradient(circle at 82% 0%, rgba(11, 142, 232, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 250, 255, 1) 50%, #ffffff 100%);
}

.catalog-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(380px, 0.72fr);
  column-gap: clamp(34px, 5vw, 72px);
  row-gap: 24px;
  align-items: center;
  width: min(100% - 64px, 1280px);
  min-height: 0;
  margin: 0 auto;
  padding: 52px 0 76px;
}

.catalog-hero__copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 20px;
  max-width: 720px;
  padding: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-card);
  box-shadow: 0 22px 60px rgba(7, 31, 60, 0.1);
}

.catalog-hero > .back-link {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.catalog-hero__copy h1 {
  max-width: none;
  margin: 0;
  font-size: clamp(46px, 5.2vw, 76px);
  line-height: 0.96;
  letter-spacing: 0;
  overflow-wrap: anywhere;
  white-space: normal;
}

.catalog-hero__copy > p:not(.section-kicker) {
  max-width: 820px;
  margin: 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.7;
}

.catalog-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}

.catalog-hero__media {
  position: relative;
  min-height: 0;
  aspect-ratio: auto;
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: transparent;
  box-shadow: 0 22px 58px rgba(7, 31, 60, 0.12);
  isolation: isolate;
}

.catalog-hero__media::before {
  position: absolute;
  inset: 16px;
  z-index: 0;
  border: 1px solid rgba(219, 230, 241, 0.2);
  border-radius: 6px;
  background:
    linear-gradient(128deg, transparent 0 46%, rgba(143, 208, 255, 0.16) 46.2% 46.8%, transparent 47%),
    linear-gradient(150deg, transparent 0 62%, rgba(255, 255, 255, 0.12) 62.2% 62.7%, transparent 63%);
  content: "";
  pointer-events: none;
}

.catalog-hero__media img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  min-height: 0;
  padding: 0;
  border-radius: 6px;
  box-shadow: 0 22px 58px rgba(0, 12, 28, 0.28);
  object-fit: contain;
  object-position: center;
}

.catalog-page-section {
  padding-top: 36px;
}

.catalog-hero .section-kicker,
.catalog-page-heading .section-kicker {
  font-size: 16px;
  letter-spacing: 0.02em;
}

.catalog-page-heading {
  display: grid;
  grid-template-columns: minmax(280px, 0.76fr) minmax(360px, 0.62fr);
  gap: 60px;
  align-items: end;
  margin-bottom: 32px;
}

.catalog-page-heading h2 {
  margin: 0;
}

.catalog-page-heading p:not(.section-kicker) {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

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

.catalog-page-card {
  position: relative;
  display: grid;
  grid-template-rows: 230px minmax(330px, 1fr);
  min-height: 100%;
  overflow: hidden;
  border: 1px solid rgba(198, 216, 231, 0.94);
  border-radius: 8px;
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 252, 0.92)),
    var(--white);
  box-shadow: 0 20px 52px rgba(7, 31, 60, 0.08);
  transition: border-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}

.catalog-page-card:hover,
.catalog-page-card:focus-visible {
  border-color: rgba(11, 142, 232, 0.42);
  box-shadow: 0 28px 74px rgba(7, 31, 60, 0.14);
  transform: translateY(-3px);
}

.catalog-page-card:focus-visible {
  outline: 3px solid rgba(11, 142, 232, 0.18);
  outline-offset: 4px;
}

.catalog-page-card__media {
  position: relative;
  display: block;
  min-height: 230px;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 12%, rgba(11, 142, 232, 0.18), transparent 32%),
    linear-gradient(145deg, #edf6ff, #ffffff);
}

.catalog-page-card__media::after {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  height: 34%;
  background: linear-gradient(180deg, transparent, rgba(5, 18, 34, 0.26));
  content: "";
  pointer-events: none;
}

.catalog-page-card__media img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: var(--catalog-image-position);
  transform: scale(var(--catalog-image-scale));
  transition: transform 260ms ease;
}

.catalog-page-card:hover .catalog-page-card__media img,
.catalog-page-card:focus-visible .catalog-page-card__media img {
  transform: scale(var(--catalog-image-hover-scale));
}

.catalog-page-card__body {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  align-content: start;
  gap: 12px;
  padding: 24px;
}

.catalog-page-card__meta {
  color: var(--blue-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.catalog-page-card__body strong {
  color: var(--ink);
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.04;
  overflow-wrap: anywhere;
}

.catalog-page-card__copy {
  color: var(--muted);
  line-height: 1.58;
}

.catalog-page-card__link {
  display: inline-flex;
  align-self: end;
  justify-self: start;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  color: var(--blue-dark);
  font-weight: 900;
}

.catalog-page-card.catalog-card--text {
  grid-template-rows: 1fr;
  min-height: 560px;
  background:
    radial-gradient(circle at 90% 8%, rgba(11, 142, 232, 0.16), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(236, 247, 255, 0.92));
}

.catalog-page-card.catalog-card--text::before {
  position: absolute;
  right: 26px;
  top: 24px;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(11, 142, 232, 0.22);
  border-radius: 999px;
  color: var(--blue-dark);
  background: rgba(255, 255, 255, 0.72);
  content: "+";
  font-size: 30px;
  font-weight: 700;
}

.catalog-page-card.catalog-card--text .catalog-page-card__body {
  align-content: end;
  min-height: 560px;
}

.catalog-form-section {
  padding-top: 40px;
}

.catalog-form-section .contact-heading {
  margin-bottom: 36px;
}

.catalog-form-section > .inquiry-form {
  width: min(100%, 980px);
  margin-inline: auto;
}

.project-hero-media {
  overflow: hidden;
  border-radius: 8px;
  background: #071326;
  box-shadow: 0 30px 70px rgba(7, 31, 60, 0.16);
}

.project-hero-media img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.project-detail-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.48fr) minmax(560px, 1fr);
  gap: 46px;
  align-items: start;
  padding-top: 20px;
}

.project-description {
  position: sticky;
  top: 140px;
  display: grid;
  gap: 20px;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.58fr) minmax(520px, 1fr);
  gap: 22px 64px;
  align-items: start;
}

.contact-heading {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: minmax(280px, 0.72fr) minmax(360px, 0.68fr);
  align-items: end;
  gap: 80px;
}

.contact-heading > * {
  min-width: 0;
}

.contact-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.65;
  overflow-wrap: anywhere;
}

.contact-copy {
  position: static;
  display: grid;
  gap: 18px;
  align-content: start;
}

.contact-card {
  position: relative;
  display: grid;
  gap: 20px;
  justify-items: center;
  padding: 30px 28px;
  overflow: hidden;
  border: 1px solid rgba(188, 210, 228, 0.95);
  border-radius: 14px;
  background:
    linear-gradient(145deg, rgba(8, 48, 91, 0.96), rgba(17, 91, 155, 0.9) 62%, rgba(230, 242, 252, 0.92) 180%);
  box-shadow: 0 24px 60px rgba(7, 31, 60, 0.16);
  color: var(--white);
  text-align: center;
}

.contact-card::after {
  position: absolute;
  right: -70px;
  top: -90px;
  width: 240px;
  height: 240px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  content: "";
}

.contact-card > * {
  position: relative;
  z-index: 1;
}

.contact-card-eyebrow {
  margin: 0;
  color: rgba(232, 243, 252, 0.76);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-card-title {
  max-width: 10ch;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 0.98;
}

.contact-card-address {
  display: grid;
  gap: 4px;
  justify-items: center;
}

.contact-card-address span {
  font-size: clamp(17px, 1.6vw, 23px);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.03em;
  text-align: center;
}

.contact-card-meta,
.contact-card-socials {
  display: grid;
  gap: 10px;
}

.contact-card-meta span,
.contact-card-socials > span,
.contact-card-phone small {
  color: rgba(232, 243, 252, 0.76);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-card-meta a {
  width: fit-content;
  justify-self: center;
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.32);
}

.contact-card-phone {
  display: grid;
  width: min(100%, 360px);
  box-sizing: border-box;
  gap: 8px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
}

.contact-card-phone b {
  color: var(--white);
  font-size: clamp(24px, 2.3vw, 34px);
  line-height: 1;
  letter-spacing: -0.03em;
}

.contact-card-email b {
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  overflow-wrap: anywhere;
}

.contact-card-social-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.contact-note {
  padding: 26px;
  border-left: 5px solid var(--blue);
  background: var(--surface-note);
  text-align: center;
}

.contact-note strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
  overflow-wrap: anywhere;
}

.contact-note p {
  margin: 0;
  color: var(--muted);
  overflow-wrap: anywhere;
}

.social-badge,
.contact-card-phone,
.contact-card-meta a {
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

.social-badge:hover,
.contact-card-phone:hover,
.contact-card-meta a:hover {
  transform: translateY(-1px);
}

.social-badge > span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  border-radius: 8px;
  color: var(--blue-dark);
  background: #eaf6ff;
}

.social-badge svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  min-height: 42px;
  padding: 7px 12px 7px 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: var(--white);
  font-size: 14px;
  font-weight: 900;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 28px rgba(7, 31, 60, 0.12);
}

.social-badge-facebook {
  border-color: rgba(120, 201, 255, 0.52);
}

.social-badge-instagram {
  border-color: rgba(255, 255, 255, 0.28);
}

.social-badge > span {
  color: currentColor;
  background: rgba(255, 255, 255, 0.16);
}

.social-badge-facebook > span {
  font-family: Arial, sans-serif;
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
}

.social-badge-facebook > span,
.social-badge-instagram > span {
  background: rgba(11, 142, 232, 0.24);
}

.social-badge:hover,
.social-badge:focus-visible {
  border-color: rgba(120, 201, 255, 0.78);
  background: rgba(120, 201, 255, 0.14);
  box-shadow: 0 14px 30px rgba(7, 31, 60, 0.2);
}

.social-badge b {
  min-width: 0;
  overflow-wrap: anywhere;
}

.inquiry-form {
  display: grid;
  gap: 14px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.inquiry-picker {
  display: grid;
  align-content: center;
  gap: 20px;
  min-height: 100%;
  min-height: 420px;
}

.inquiry-picker[hidden] {
  display: none;
}

.inquiry-picker__intro {
  display: grid;
  gap: 10px;
  text-align: center;
}

.inquiry-picker__eyebrow {
  margin: 0;
  color: var(--blue-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.inquiry-picker__intro strong {
  color: var(--ink);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.04;
}

.inquiry-picker__intro p:last-child {
  max-width: 560px;
  margin: 0 auto;
  color: var(--muted);
  line-height: 1.6;
}

.inquiry-paths {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  width: min(100%, 500px);
  margin: 0 auto;
  padding: 0;
  border: 0;
}

.inquiry-paths legend {
  margin-bottom: 6px;
  color: var(--ink);
  font-weight: 900;
}

.inquiry-path-card {
  display: block;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: center;
  cursor: pointer;
}

.inquiry-path-card span {
  display: grid;
  align-content: center;
  gap: 6px;
  min-height: 132px;
  padding: 24px 22px;
  border: 1px solid #d7e3ee;
  border-radius: 12px;
  background: var(--surface-card-strong);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.inquiry-path-card strong {
  margin-inline: auto;
  max-width: 9ch;
  text-align: center;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.2;
  text-wrap: balance;
}

.inquiry-path-card small {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.inquiry-path-card:hover span,
.inquiry-path-card:focus-visible span,
.inquiry-path-card.is-active span {
  border-color: rgba(11, 142, 232, 0.45);
  box-shadow: 0 0 0 4px rgba(11, 142, 232, 0.1);
  transform: translateY(-1px);
}

.inquiry-path-card:focus-visible {
  outline: none;
}

.inquiry-form-body {
  display: grid;
  gap: 16px;
}

.inquiry-form-body[hidden] {
  display: none;
}

.inquiry-form-body__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}

.inquiry-form-body__selection {
  min-width: 0;
}

.inquiry-back {
  border: 0;
  padding: 0;
  color: var(--blue-dark);
  background: transparent;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.form-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 18px;
}

.form-row-vehicle {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(120px, 0.54fr);
}

.inquiry-variant {
  display: grid;
  gap: 16px;
  padding: 18px;
  border: 1px solid #d7e3ee;
  border-radius: 12px;
  background: rgba(247, 251, 255, 0.8);
}

.inquiry-variant[hidden] {
  display: none;
}

.inquiry-variant-title {
  margin: 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.inquiry-form label {
  display: grid;
  gap: 6px;
  color: var(--ink);
  font-weight: 900;
  min-width: 0;
}

.inquiry-form label:has(input[required], select[required], textarea[required]) > span::after {
  margin-left: 4px;
  color: var(--blue);
  content: "*";
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  min-width: 0;
  width: 100%;
  border: 1px solid #cbd9e6;
  border-radius: 10px;
  padding: 12px 14px;
  color: var(--ink);
  background: var(--field-bg);
  outline: none;
}

.inquiry-form textarea {
  resize: vertical;
}

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(11, 142, 232, 0.12);
}

.privacy-consent {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 12px;
  margin-top: 12px;
  padding: 14px 16px;
  border: 1px solid #d7e3ee;
  border-top-width: 3px;
  border-radius: 10px;
  background: var(--surface-card-strong);
}

.privacy-consent::before {
  position: absolute;
  left: 0;
  right: 0;
  top: -18px;
  height: 1px;
  background: rgba(215, 227, 238, 0.86);
  content: "";
}

.privacy-consent input[type="checkbox"] {
  justify-self: start;
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  padding: 0;
  accent-color: var(--blue);
  box-shadow: none;
}

.privacy-consent span {
  display: block;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.55;
}

.privacy-consent a {
  color: var(--blue-dark);
  text-decoration: underline;
  text-underline-offset: 0.14em;
}

.hidden-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

.form-submit {
  width: fit-content;
  margin-top: 10px;
}

.form-alert {
  margin: 0;
  padding: 14px 16px;
  border-radius: 10px;
  font-weight: 800;
}

.form-alert-success {
  color: #11613b;
  background: var(--alert-success-bg);
}

.form-alert-error {
  color: #8c1f1f;
  background: var(--alert-error-bg);
}

@media (min-width: 1181px) {
  #contact > .inquiry-form {
    padding: 36px;
  }

  #contact > .inquiry-form .inquiry-picker {
    align-content: space-evenly;
    min-height: 480px;
  }

  #contact > .inquiry-form .inquiry-picker__intro {
    gap: 12px;
  }

  #contact > .inquiry-form .inquiry-picker__intro strong {
    font-size: clamp(32px, 3vw, 44px);
  }

  #contact > .inquiry-form .inquiry-path-card span {
    padding: 24px 22px 22px;
  }

  #contact > .inquiry-form .inquiry-path-card strong {
    font-size: 18px;
  }
}

html[data-theme="dark"] body {
  color-scheme: dark;
}

html[data-theme="dark"] .catalog-menu__intro p,
html[data-theme="dark"] .hero-lead {
  color: var(--muted);
}

html[data-theme="dark"] .catalog-menu,
html[data-theme="dark"] .main-nav .catalog-card,
html[data-theme="dark"] .catalog-page-card,
html[data-theme="dark"] .project-hero-copy,
html[data-theme="dark"] .photo-browser,
html[data-theme="dark"] .craft-panel,
html[data-theme="dark"] .panels-material,
html[data-theme="dark"] .panels-benefits,
html[data-theme="dark"] .panels-benefits article,
html[data-theme="dark"] .portfolio-cta,
html[data-theme="dark"] .contact-card,
html[data-theme="dark"] .contact-note,
html[data-theme="dark"] .inquiry-form,
html[data-theme="dark"] .legal-card,
html[data-theme="dark"] .catalog-menu,
html[data-theme="dark"] .main-nav .catalog-card,
html[data-theme="dark"] .catalog-page-card,
html[data-theme="dark"] .project-hero-copy,
html[data-theme="dark"] .photo-browser,
html[data-theme="dark"] .craft-panel,
html[data-theme="dark"] .panels-material,
html[data-theme="dark"] .panels-benefits,
html[data-theme="dark"] .panels-benefits article,
html[data-theme="dark"] .portfolio-cta,
html[data-theme="dark"] .inquiry-form,
html[data-theme="dark"] .legal-card {
  background: var(--surface-card);
}

html[data-theme="dark"] .site-header,
html[data-theme="dark"] .site-footer {
  background: linear-gradient(180deg, rgba(10, 19, 30, 0.94), rgba(15, 26, 39, 0.9));
}

html[data-theme="dark"] .site-header {
  border-color: transparent;
  background: transparent;
  box-shadow: none;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

html[data-theme="dark"] .button-outline,
html[data-theme="dark"] .button-secondary,
html[data-theme="dark"] .language-switcher,
html[data-theme="dark"] .theme-toggle {
  background: transparent;
  border-color: var(--line);
  box-shadow: none;
}

html[data-theme="dark"] .button-outline,
html[data-theme="dark"] .button-secondary,
html[data-theme="dark"] .language-switcher a,
html[data-theme="dark"] .theme-toggle,
html[data-theme="dark"] .main-nav a,
html[data-theme="dark"] .nav-catalog__toggle {
  color: var(--ink);
}

html[data-theme="dark"] .language-switcher a:hover,
html[data-theme="dark"] .language-switcher a:focus-visible {
  background:
    radial-gradient(circle at 18% 22%, rgba(143, 208, 255, 0.22), transparent 34%),
    linear-gradient(135deg, rgba(29, 125, 196, 0.86), rgba(69, 178, 255, 0.66));
  box-shadow:
    0 0 0 1px rgba(143, 208, 255, 0.18),
    0 0 18px rgba(69, 178, 255, 0.24);
}

html[data-theme="dark"] .language-switcher a.is-active:hover,
html[data-theme="dark"] .language-switcher a.is-active:focus-visible {
  background:
    radial-gradient(circle at 18% 22%, rgba(143, 208, 255, 0.2), transparent 34%),
    linear-gradient(135deg, rgba(35, 136, 212, 0.96), rgba(69, 178, 255, 0.82));
}

html[data-theme="dark"] .theme-toggle:hover,
html[data-theme="dark"] .button-secondary:hover,
html[data-theme="dark"] .button-outline:hover {
  border-color: rgba(143, 208, 255, 0.5);
  background:
    radial-gradient(circle at 18% 22%, rgba(143, 208, 255, 0.24), transparent 34%),
    linear-gradient(135deg, rgba(29, 125, 196, 0.9), rgba(69, 178, 255, 0.72));
  box-shadow:
    0 16px 34px rgba(0, 0, 0, 0.24),
    0 0 0 1px rgba(143, 208, 255, 0.18),
    0 0 22px rgba(69, 178, 255, 0.28);
}

html[data-theme="dark"] .theme-toggle__icon {
  background: rgba(143, 208, 255, 0.08);
}

html[data-theme="dark"] .catalog-menu {
  top: calc(100% - 14px);
  padding-top: 28px;
  border-color: rgba(69, 178, 255, 0.2);
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(28, 49, 71, 0.98), rgba(20, 37, 55, 0.96));
  background-attachment: scroll;
  box-shadow: none;
}

html[data-theme="dark"] .catalog-menu::before {
  height: 18px;
  background: transparent;
}

html[data-theme="dark"] .main-nav .catalog-card {
  background:
    linear-gradient(135deg, rgba(18, 31, 46, 0.92), rgba(23, 39, 57, 0.82)),
    var(--surface-card);
}

html[data-theme="dark"] .catalog-card__media {
  background:
    linear-gradient(145deg, rgba(28, 45, 64, 0.92), rgba(18, 34, 49, 0.8)),
    radial-gradient(circle at 82% 18%, rgba(69, 178, 255, 0.2), transparent 34%),
    #112030;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    inset 0 -18px 38px rgba(69, 178, 255, 0.1);
}

html[data-theme="dark"] .catalog-card__media::after {
  background: transparent;
  opacity: 0;
}

html[data-theme="dark"] .main-nav .catalog-card--text {
  background:
    radial-gradient(circle at 84% 16%, rgba(69, 178, 255, 0.18), transparent 36%),
    linear-gradient(145deg, rgba(18, 31, 46, 0.96), rgba(24, 41, 60, 0.84));
}

html[data-theme="dark"] .main-nav .catalog-card--text .catalog-card__body::before {
  border-color: rgba(143, 208, 255, 0.22);
  background: rgba(255, 255, 255, 0.05);
}

html[data-theme="dark"] .catalog-page {
  background: var(--page-bg);
}

html[data-theme="dark"] .catalog-hero {
  background: transparent;
}

html[data-theme="dark"] .catalog-hero__media {
  border-color: var(--line);
  background: transparent;
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.3);
}

html[data-theme="dark"] .catalog-hero__media::before,
html[data-theme="dark"] .offer-page--panels .offer-hero-media::before {
  border-color: rgba(143, 208, 255, 0.22);
  background:
    linear-gradient(128deg, transparent 0 46%, rgba(143, 208, 255, 0.18) 46.2% 46.8%, transparent 47%),
    linear-gradient(150deg, transparent 0 62%, rgba(255, 255, 255, 0.08) 62.2% 62.7%, transparent 63%);
}

html[data-theme="dark"] .offer-page--panels .offer-hero-media {
  border-color: var(--line);
  background: transparent;
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.3);
}

html[data-theme="dark"] .offer-page--food-trailers .offer-hero-media {
  border-color: var(--line);
  background: transparent;
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.3);
}

html[data-theme="dark"] .offer-page--food-trailers .offer-hero-media::before {
  border-color: rgba(143, 208, 255, 0.22);
  background:
    linear-gradient(128deg, transparent 0 46%, rgba(143, 208, 255, 0.18) 46.2% 46.8%, transparent 47%),
    linear-gradient(150deg, transparent 0 62%, rgba(255, 255, 255, 0.08) 62.2% 62.7%, transparent 63%);
}

html[data-theme="dark"] .offer-page--food-trailers .offer-hero-media img {
  box-shadow: 0 22px 62px rgba(0, 0, 0, 0.42);
}

html[data-theme="dark"] .offer-page--panels .offer-hero-media::after {
  background: rgba(69, 178, 255, 0.16);
}

html[data-theme="dark"] .offer-page--panels .offer-hero-media img {
  box-shadow: 0 22px 62px rgba(0, 0, 0, 0.42);
}

html[data-theme="dark"] .catalog-hero__media img {
  box-shadow: 0 22px 62px rgba(0, 0, 0, 0.42);
}

html[data-theme="dark"] .catalog-page-card {
  border-color: rgba(36, 54, 74, 0.72);
  background:
    linear-gradient(135deg, rgba(18, 31, 46, 0.92), rgba(23, 39, 57, 0.82)),
    var(--surface-card);
}

html[data-theme="dark"] .catalog-page-card__media {
  background:
    linear-gradient(145deg, rgba(28, 45, 64, 0.92), rgba(18, 34, 49, 0.8)),
    radial-gradient(circle at 82% 18%, rgba(69, 178, 255, 0.2), transparent 34%),
    #112030;
}

html[data-theme="dark"] .catalog-page-card__media::after {
  height: 28%;
  background: transparent;
}

html[data-theme="dark"] .catalog-page-card.catalog-card--text {
  background:
    radial-gradient(circle at 90% 8%, rgba(69, 178, 255, 0.16), transparent 34%),
    linear-gradient(145deg, rgba(18, 31, 46, 0.96), rgba(24, 41, 60, 0.84));
}

html[data-theme="dark"] .catalog-page-card.catalog-card--text::before {
  border-color: rgba(143, 208, 255, 0.22);
  color: var(--blue-dark);
  background: rgba(255, 255, 255, 0.05);
}

html[data-theme="dark"] .section-kicker,
html[data-theme="dark"] .eyebrow,
html[data-theme="dark"] .legal-updated,
html[data-theme="dark"] .site-footer__inner a,
html[data-theme="dark"] .privacy-consent a,
html[data-theme="dark"] .contact-card-meta a,
html[data-theme="dark"] .portfolio-label {
  color: var(--blue-dark);
}

html[data-theme="dark"] .process-rail,
html[data-theme="dark"] .panels-use-strip,
html[data-theme="dark"] .contact-section,
html[data-theme="dark"] .section,
html[data-theme="dark"] .intro-section {
  border-color: var(--line);
}

html[data-theme="dark"] .process-rail article,
html[data-theme="dark"] .panels-use-strip span,
html[data-theme="dark"] .capability-grid article {
  background: var(--surface-card-strong);
}

html[data-theme="dark"] .photo-browser-thumbs button {
  border-color: var(--line);
}

html[data-theme="dark"] .intro-copy p,
html[data-theme="dark"] .craft-panel p,
html[data-theme="dark"] .section-heading p,
html[data-theme="dark"] .catalog-page-heading p:not(.section-kicker),
html[data-theme="dark"] .contact-copy > p,
html[data-theme="dark"] .contact-heading p,
html[data-theme="dark"] .contact-note p,
html[data-theme="dark"] .portfolio-cta p,
html[data-theme="dark"] .project-hero-copy p,
html[data-theme="dark"] .project-description p,
html[data-theme="dark"] .legal-card p,
html[data-theme="dark"] .main-nav .catalog-card__body span,
html[data-theme="dark"] .catalog-page-card__copy,
html[data-theme="dark"] .hero-lead {
  color: var(--muted);
}

html[data-theme="dark"] .panels-benefits strong,
html[data-theme="dark"] .capability-grid strong,
html[data-theme="dark"] .process-rail strong,
html[data-theme="dark"] .portfolio-cta strong,
html[data-theme="dark"] .photo-browser,
html[data-theme="dark"] .photo-browser-meta,
html[data-theme="dark"] .project-hero-copy h1,
html[data-theme="dark"] .catalog-page-card__body strong,
html[data-theme="dark"] .legal-card h2,
html[data-theme="dark"] .section h2,
html[data-theme="dark"] .inquiry-form label,
html[data-theme="dark"] .contact-note strong,
html[data-theme="dark"] .contact-card-title,
html[data-theme="dark"] .contact-card-address span,
html[data-theme="dark"] .contact-card-phone b,
html[data-theme="dark"] .contact-card-phone small,
html[data-theme="dark"] .contact-card-socials > span,
html[data-theme="dark"] .contact-card-meta span,
html[data-theme="dark"] .panels-use-strip span {
  color: var(--ink);
}

html[data-theme="dark"] .contact-card,
html[data-theme="dark"] .contact-card-meta a,
html[data-theme="dark"] .contact-card-phone,
html[data-theme="dark"] .contact-card-phone b,
html[data-theme="dark"] .contact-card-phone small,
html[data-theme="dark"] .social-badge,
html[data-theme="dark"] .social-badge b {
  color: #f3f8ff;
}

/* Keep the contact callout in its brand treatment in both color modes. */
html[data-theme="dark"] .contact-card {
  border-color: rgba(188, 210, 228, 0.95);
  background:
    linear-gradient(145deg, rgba(8, 48, 91, 0.96), rgba(17, 91, 155, 0.9) 62%, rgba(230, 242, 252, 0.92) 180%);
  box-shadow: 0 24px 60px rgba(7, 31, 60, 0.16);
  color: #ffffff;
}

html[data-theme="dark"] .contact-card-title,
html[data-theme="dark"] .contact-card-address span,
html[data-theme="dark"] .contact-card-meta a,
html[data-theme="dark"] .contact-card-phone b,
html[data-theme="dark"] .social-badge,
html[data-theme="dark"] .social-badge b {
  color: #ffffff;
}

html[data-theme="dark"] .contact-card-eyebrow,
html[data-theme="dark"] .contact-card-meta span,
html[data-theme="dark"] .contact-card-socials > span,
html[data-theme="dark"] .contact-card-phone small {
  color: rgba(232, 243, 252, 0.76);
}

html[data-theme="dark"] .contact-card-meta a {
  border-bottom-color: rgba(255, 255, 255, 0.32);
}

html[data-theme="dark"] .contact-card-phone {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
}

html[data-theme="dark"] .contact-note {
  color: var(--ink);
}

html[data-theme="dark"] .privacy-consent,
html[data-theme="dark"] .inquiry-form input,
html[data-theme="dark"] .inquiry-form select,
html[data-theme="dark"] .inquiry-form textarea {
  border-color: var(--line);
}

html[data-theme="dark"] .privacy-consent::before {
  background: rgba(36, 54, 74, 0.88);
}

html[data-theme="dark"] .inquiry-path-card span,
html[data-theme="dark"] .inquiry-variant {
  border-color: var(--line);
  background: rgba(15, 28, 42, 0.72);
}

html[data-theme="dark"] .inquiry-back {
  color: var(--blue-dark);
}

html[data-theme="dark"] .main-nav .catalog-card:hover,
html[data-theme="dark"] .main-nav .catalog-card:focus-visible,
html[data-theme="dark"] .catalog-page-card:hover,
html[data-theme="dark"] .catalog-page-card:focus-visible,
html[data-theme="dark"] .inquiry-path-card:hover span,
html[data-theme="dark"] .inquiry-path-card:focus-visible span,
html[data-theme="dark"] .inquiry-path-card.is-active span {
  border-color: rgba(143, 208, 255, 0.42);
  background:
    radial-gradient(circle at 14% 18%, rgba(143, 208, 255, 0.22), transparent 32%),
    linear-gradient(135deg, rgba(22, 96, 154, 0.86), rgba(69, 178, 255, 0.38));
  box-shadow:
    0 18px 36px rgba(0, 0, 0, 0.24),
    0 0 0 4px rgba(69, 178, 255, 0.08);
}

html[data-theme="dark"] .main-nav .catalog-card:hover::before,
html[data-theme="dark"] .main-nav .catalog-card:focus-visible::before {
  background: rgba(69, 178, 255, 0.18);
}

html[data-theme="dark"] .form-alert-success,
html[data-theme="dark"] .form-alert-error {
  color: var(--ink);
}

html[data-theme="dark"] .portfolio-section {
  background:
    radial-gradient(circle at 82% 6%, rgba(69, 178, 255, 0.18), transparent 30%),
    linear-gradient(180deg, #07111b 0%, #0a1521 58%, #0d1723 58%, #0d1723 100%);
}

html[data-theme="dark"] .offer-page {
  background: var(--page-bg);
}

html[data-theme="dark"] .offer-teaser-section {
  border: 0;
  background: transparent;
}

html[data-theme="dark"] .offer-teaser-card {
  border-color: var(--line);
  background: var(--surface-card);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
}

html[data-theme="dark"] .offer-hero-copy,
html[data-theme="dark"] .offer-copy-grid article {
  border-color: var(--line);
  background: var(--surface-card);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

html[data-theme="dark"] .offer-page--panels .offer-copy-grid article {
  border-color: var(--line);
  background: var(--surface-card);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.22);
}

html[data-theme="dark"] .offer-page--panels .offer-copy-grid article::after {
  background: rgba(69, 178, 255, 0.1);
}

html[data-theme="dark"] .offer-teaser-card:hover,
html[data-theme="dark"] .offer-teaser-card:focus-visible {
  border-color: rgba(143, 208, 255, 0.42);
  background: var(--surface-card);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.22);
}

html[data-theme="dark"] .offer-teaser-card strong,
html[data-theme="dark"] .offer-hero-copy h1,
html[data-theme="dark"] .offer-copy-grid h2,
html[data-theme="dark"] .offer-feature-strip span {
  color: var(--ink);
}

html[data-theme="dark"] .offer-teaser-card p,
html[data-theme="dark"] .offer-hero-copy p,
html[data-theme="dark"] .offer-copy-grid p {
  color: var(--muted);
}

html[data-theme="dark"] .offer-feature-strip {
  border-color: var(--line);
  background: var(--line);
}

html[data-theme="dark"] .offer-feature-strip span {
  background: var(--surface-card-strong);
}

html[data-theme="dark"] .portfolio-label-gallery {
  color: var(--blue-dark);
}

html[data-theme="dark"] .photo-browser-stage,
html[data-theme="dark"] .photo-browser-thumbs button,
html[data-theme="dark"] .project-hero-media img {
  background: #0c1622;
}

html[data-theme="dark"] .project-page {
  background:
    radial-gradient(circle at top, rgba(69, 178, 255, 0.14), transparent 24%),
    linear-gradient(180deg, #08111b 0%, #0d1723 54%, #101b28 100%);
}

html[data-theme="dark"] .back-link,
html[data-theme="dark"] .photo-browser-meta span,
html[data-theme="dark"] .project-card span {
  color: var(--blue-dark);
}

html[data-theme="dark"] .portfolio-label::after {
  background: var(--blue-dark);
}

html[data-theme="dark"] .portfolio-section .section-heading p,
html[data-theme="dark"] .project-card p {
  color: #b9cbde;
}

html[data-theme="dark"] .project-card,
html[data-theme="dark"] .project-hero-media,
html[data-theme="dark"] .photo-browser-main,
html[data-theme="dark"] .photo-browser-stage {
  background: #0b1623;
}

html[data-theme="dark"] .project-card::after {
  background:
    linear-gradient(180deg, rgba(4, 12, 24, 0.04) 8%, rgba(3, 9, 18, 0.88) 100%),
    linear-gradient(90deg, rgba(4, 12, 24, 0.56), transparent 62%);
}

html[data-theme="dark"] .portfolio-section .photo-browser,
html[data-theme="dark"] .portfolio-cta,
html[data-theme="dark"] .project-hero-copy {
  border-color: rgba(143, 208, 255, 0.12);
}

html[data-theme="dark"] .photo-browser-arrow {
  border-color: rgba(143, 208, 255, 0.22);
  background:
    linear-gradient(145deg, rgba(143, 208, 255, 0.14), rgba(255, 255, 255, 0.04)),
    rgba(8, 17, 27, 0.72);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

html[data-theme="dark"] .photo-browser-arrow:hover {
  border-color: rgba(143, 208, 255, 0.52);
  background:
    linear-gradient(145deg, rgba(143, 208, 255, 0.22), rgba(255, 255, 255, 0.06)),
    rgba(9, 22, 36, 0.84);
  box-shadow:
    0 22px 42px rgba(0, 0, 0, 0.38),
    0 0 0 6px rgba(69, 178, 255, 0.1);
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: 1fr;
    gap: 18px;
    position: relative;
  }

  .main-nav,
  .header-actions {
    justify-content: flex-start;
  }

  .hero-section {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 28px;
    padding-bottom: 0;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-visual {
    position: relative;
    inset: auto;
    height: clamp(390px, 48vw, 520px);
    margin-top: 10px;
    overflow: hidden;
  }

  .hero-showcase {
    left: 50%;
    right: auto;
    bottom: 0;
    width: min(880px, 100%);
    max-height: none;
    height: 100%;
    aspect-ratio: auto;
    transform: translateX(-50%);
  }

  .hero-plane-one {
    right: -16vw;
    top: 22px;
    width: min(760px, 90vw);
    height: 330px;
  }

  .hero-plane-two {
    right: -22vw;
    top: 150px;
    width: min(820px, 104vw);
    height: 270px;
  }

  .hero-plane-three {
    right: -16vw;
    top: 176px;
    width: min(470px, 62vw);
    height: 230px;
  }

  .hero-visual::before {
    left: 6%;
    bottom: 42px;
    width: min(520px, 70vw);
  }

  .hero-visual::after {
    left: 24%;
    top: 128px;
    width: min(360px, 52vw);
    height: 145px;
  }

  .intro-section,
  .craft-panel,
  .panels-heading,
  .panels-layout,
  .offer-teaser-grid,
  .offer-hero-grid,
  .offer-copy-grid,
  .catalog-hero,
  .catalog-page-heading,
  .section-heading,
  .contact-heading,
  .project-hero-grid,
  .project-detail-section {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .offer-page--panels .offer-hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .offer-page--food-trailers .offer-hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .site-footer__inner {
    display: grid;
    justify-content: flex-start;
  }

  .contact-section {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .contact-page-hero,
  .contact-page-form-section {
    grid-template-columns: 1fr;
  }

  .contact-page-inquiry-form {
    grid-column: 1;
  }

  .social-badge {
    justify-content: flex-start;
  }

  .process-rail,
  .panels-use-strip,
  .offer-feature-strip,
  .portfolio-cta {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: auto;
  }

  .project-card,
  .project-card-wide,
  .project-card-tall {
    grid-column: auto;
    grid-row: auto;
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .project-card:first-child {
    grid-column: span 2;
    aspect-ratio: 16 / 7.8;
  }

  .project-description {
    position: static;
  }

  .catalog-hero {
    min-height: 0;
    padding-bottom: 46px;
  }

  .catalog-page-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .site-header,
  .hero-section,
  .offer-hero,
  .catalog-hero,
  .contact-page,
  .section {
    width: min(100% - 36px, 1280px);
  }

  .contact-page-details {
    grid-template-columns: 1fr;
  }

  .site-header {
    gap: 14px;
    padding: 16px 0 10px;
  }

  .brand {
    gap: 10px;
  }

  .main-nav {
    position: relative;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 18px;
    width: 100%;
    overflow: visible;
    padding-bottom: 4px;
    font-size: 14px;
    scrollbar-width: none;
  }

  .nav-catalog {
    position: static;
    display: flex;
    align-items: center;
  }

  .nav-catalog__expand {
    display: inline-grid;
    place-items: center;
    width: 32px;
    min-height: 44px;
    padding: 0;
    border: 0;
    color: inherit;
    background: transparent;
    font: inherit;
    font-size: 18px;
    cursor: pointer;
  }

  .nav-catalog__expand:focus-visible {
    outline: 3px solid rgba(11, 142, 232, 0.28);
    outline-offset: 2px;
    border-radius: 6px;
  }

  .catalog-menu {
    top: calc(100% + 10px);
    left: 0;
    width: min(100%, calc(100vw - 36px));
    max-height: min(520px, calc(100svh - 190px));
    overflow: auto;
    padding: 14px;
    border-radius: 22px;
    transform: translateY(12px) scale(0.98);
  }

  html[data-theme="dark"] .catalog-menu {
    top: calc(100% + 10px);
    padding: 14px;
  }

  .nav-catalog:hover .catalog-menu,
  .nav-catalog:focus-within .catalog-menu {
    visibility: hidden;
    opacity: 0;
    transform: translateY(12px) scale(0.98);
  }

  .nav-catalog.is-open .catalog-menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: 0s;
  }

  .catalog-menu__grid {
    grid-template-columns: 1fr;
  }

  .main-nav .catalog-card {
    grid-template-columns: minmax(132px, 38%) minmax(0, 1fr);
    grid-template-rows: minmax(112px, 1fr);
    align-items: stretch;
    min-height: 132px;
    gap: 12px;
    padding: 9px;
  }

  .main-nav .catalog-card--text {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    min-height: 132px;
    padding: 18px;
  }

  .catalog-card__media {
    width: 100%;
    min-width: 0;
    min-height: 112px;
    aspect-ratio: auto;
  }

  .main-nav .catalog-card__body {
    min-width: 0;
    padding: 4px 6px 4px 0;
  }

  .catalog-page-card {
    isolation: isolate;
  }

  .catalog-page-card__media {
    z-index: 0;
    isolation: isolate;
  }

  .catalog-page-card__body {
    position: relative;
    z-index: 1;
    background: var(--surface-card);
  }

  .main-nav::-webkit-scrollbar {
    display: none;
  }

  .header-actions {
    width: 100%;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
  }

  .button-outline {
    min-width: 0;
  }

  .header-actions .button-outline {
    min-height: 44px;
    padding: 0 16px;
    font-size: 14px;
  }

  .hero-copy h1 {
    max-width: 620px;
    font-size: clamp(44px, 9vw, 58px);
  }

  .hero-lead {
    max-width: 640px;
    margin: 18px 0 20px;
    font-size: 18px;
  }

  .hero-buttons {
    gap: 12px;
    margin-bottom: 22px;
  }

  .capability-grid,
  .process-rail,
  .panels-use-strip,
  .portfolio-grid,
  .portfolio-cta,
  .inquiry-paths,
  .form-row {
    grid-template-columns: 1fr;
  }

  .capability-grid article,
  .process-rail article {
    min-height: 128px;
  }

  .portfolio-section {
    padding: 72px 18px;
    background:
      radial-gradient(circle at 82% 6%, rgba(11, 142, 232, 0.18), transparent 32%),
      linear-gradient(180deg, #071326 0%, #081a31 100%);
  }

  .project-card:first-child {
    grid-column: auto;
    aspect-ratio: 16 / 10;
  }

  .project-card {
    min-height: 0;
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .project-card p {
    display: none;
  }

  .project-hero {
    width: min(100% - 36px, 1280px);
  }

  .project-hero-media img {
    min-height: 360px;
  }

  .photo-browser-stage,
  .project-detail-section .photo-browser-stage {
    height: clamp(300px, 56vw, 420px);
  }

  .photo-browser-thumbs {
    grid-template-columns: repeat(4, 1fr);
  }

  .project-card-wide h3 {
    font-size: 26px;
  }

  .portfolio-cta .button {
    width: 100%;
  }

}

@media (min-width: 561px) and (max-width: 860px) {
  .catalog-page-grid {
    grid-template-columns: 1fr;
  }

  .catalog-page-card {
    grid-template-rows: 260px auto;
    min-height: 0;
  }

  .catalog-hero,
  .offer-hero {
    gap: 28px;
    padding: 32px 0 48px;
    overflow: hidden;
  }

  .catalog-hero__copy,
  .offer-hero-copy {
    min-width: 0;
    padding: 28px;
    border-radius: 8px;
  }

  .catalog-hero__copy h1,
  .offer-hero-copy h1 {
    font-size: clamp(40px, 7vw, 52px);
    line-height: 1.04;
    overflow-wrap: anywhere;
  }

  .catalog-hero__media,
  .offer-hero-media,
  .offer-page--panels .offer-hero-media,
  .offer-page--food-trailers .offer-hero-media {
    width: 100%;
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .catalog-hero__media {
    aspect-ratio: auto;
  }

  .catalog-hero__media img,
  .offer-hero-media img,
  .offer-page--panels .offer-hero-media img,
  .offer-page--food-trailers .offer-hero-media img {
    height: 100%;
    min-height: 0;
  }

  .catalog-hero__media img {
    height: auto;
  }

  .catalog-page-card__body {
    padding: 24px;
  }

  .not-found-page {
    width: min(100% - 36px, 1280px);
    padding: 56px 0;
  }
}

@media (max-width: 560px) {
  .offer-page--food-trailers #offer-title {
    max-width: 15ch;
    letter-spacing: -0.04em;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
    white-space: normal;
  }

  .catalog-hero,
  .offer-hero {
    padding-top: 22px;
    padding-bottom: 36px;
  }

  .catalog-hero__actions .button,
  .offer-hero-copy .button {
    width: 100%;
    justify-content: center;
  }

  .catalog-hero__media,
  .offer-hero-media,
  .offer-page--panels .offer-hero-media,
  .offer-page--food-trailers .offer-hero-media {
    aspect-ratio: 4 / 3;
  }

  body,
  button,
  input,
  select,
  textarea {
    font-size: 15px;
  }

  .site-header {
    width: min(100% - 28px, 1280px);
    padding-top: 14px;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
  }

  .not-found-page {
    width: min(100% - 28px, 1280px);
    min-height: 58vh;
    padding: 42px 0;
  }

  .not-found-card {
    gap: 16px;
    padding: 24px;
  }

  .brand-logo {
    width: min(250px, 58vw);
  }

  .mobile-nav-toggle {
    display: grid;
    grid-template-rows: repeat(3, 2px);
    align-content: center;
    gap: 5px;
    width: 48px;
    height: 48px;
    padding: 0 13px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface-card);
    cursor: pointer;
  }

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

  .main-nav {
    display: none;
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
    padding: 8px 0;
    border-top: 1px solid var(--line);
    font-size: 16px;
    letter-spacing: 0;
  }

  .main-nav.is-open {
    display: flex;
  }

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

  .main-nav a,
  .nav-catalog__toggle {
    justify-content: space-between;
    min-height: 48px;
    padding: 0;
  }

  .nav-catalog {
    width: 100%;
  }

  .nav-catalog__toggle > span[aria-hidden="true"] {
    display: none;
  }

  .nav-catalog__expand {
    width: 48px;
    min-height: 48px;
    font-size: 18px;
  }

  .language-switcher a {
    min-width: 36px;
    min-height: 30px;
    font-size: 13px;
  }

  .header-actions .button-outline {
    flex: 1 1 150px;
  }

  .catalog-menu {
    width: min(100%, calc(100vw - 28px));
  }

  .catalog-hero__media {
    display: none;
  }

  .catalog-menu__grid {
    grid-template-columns: 1fr;
  }

  .main-nav .catalog-card {
    grid-template-columns: minmax(144px, 56%) minmax(0, 1fr);
    grid-template-rows: 1fr;
    align-items: center;
    min-height: 128px;
    gap: 10px;
    padding: 8px;
  }

  .main-nav .catalog-card--text {
    grid-template-columns: 1fr;
    min-height: 106px;
    padding: 18px;
  }

  .catalog-card__media {
    height: 100%;
    min-width: 0;
    min-height: 110px;
    aspect-ratio: auto;
  }

  .main-nav .catalog-card__body {
    padding: 0 5px 0 0;
  }

  .hero-section {
    width: min(100% - 28px, 1280px);
    padding-top: 18px;
  }

  .hero-copy h1 {
    font-size: clamp(36px, 11vw, 44px);
    line-height: 1;
  }

  .hero-lead {
    font-size: 16px;
    line-height: 1.55;
  }

  .hero-buttons,
  .button {
    width: 100%;
  }

  .button {
    min-height: 50px;
    padding: 0 18px;
  }

  .hero-visual {
    height: clamp(255px, 62vw, 320px);
    margin: 8px auto 0;
    width: 100%;
  }

  .hero-showcase {
    width: min(100%, 520px);
    height: 100%;
    filter: drop-shadow(0 18px 12px rgba(2, 13, 30, 0.16));
  }

  .hero-showcase::before {
    left: 18%;
    right: 8%;
    bottom: 8px;
    height: 56px;
  }

  .hero-plane-one {
    right: -34vw;
    top: 22px;
    width: 116vw;
    height: 180px;
    opacity: 0.65;
  }

  .hero-plane-two {
    right: -48vw;
    top: 112px;
    width: 132vw;
    height: 160px;
    opacity: 0.7;
  }

  .hero-plane-three {
    right: -31vw;
    top: 130px;
    width: 78vw;
    height: 140px;
    opacity: 0.82;
  }

  .hero-visual::before {
    left: 2%;
    bottom: 28px;
    width: 86vw;
    height: 74px;
  }

  .hero-visual::after {
    display: none;
  }

  .section {
    width: min(100% - 28px, 1280px);
    padding: 56px 0;
  }

  .legal-page,
  .offer-hero,
  .site-footer__inner {
    width: min(100% - 28px, 1280px);
  }

  .section h2 {
    font-size: 31px;
    line-height: 1.08;
  }

  .intro-copy p,
  .craft-panel p,
  .panels-heading p,
  .panels-material p,
  .offer-teaser-card p,
  .offer-hero-copy p,
  .offer-copy-grid p,
  .section-heading p,
  .contact-copy > p,
  .project-hero-copy p,
  .project-description p {
    font-size: 16px;
    line-height: 1.62;
  }

  .capability-grid article,
  .process-rail article {
    min-height: auto;
    gap: 18px;
    padding: 18px;
  }

  .panels-benefits {
    padding: 10px;
  }

  .panels-benefits article {
    min-height: 68px;
    padding: 12px 14px;
  }

  .panels-section {
    padding-top: 20px;
  }

  .panels-heading {
    margin-bottom: 20px;
  }

  .panels-material {
    padding: 14px;
  }

  .panels-material-visual {
    height: 220px;
  }

  .panels-material strong,
  .panels-material p,
  .panels-material .button {
    margin-left: 6px;
    margin-right: 6px;
  }

  .craft-panel,
  .portfolio-cta,
  .inquiry-form,
  .contact-card,
  .contact-note,
  .offer-hero-copy,
  .offer-copy-grid article,
  .project-hero-copy,
  .legal-card {
    padding: 20px;
    border-radius: 8px;
  }

  .offer-teaser-grid,
  .offer-copy-grid,
  .offer-feature-strip,
  .catalog-page-grid,
  .inquiry-paths {
    grid-template-columns: 1fr;
  }

  .catalog-hero {
    gap: 26px;
    padding: 32px 0 42px;
  }

  .catalog-hero__copy h1 {
    font-size: 38px;
    line-height: 1.02;
    white-space: normal;
  }

  .catalog-hero__copy > p:not(.section-kicker) {
    font-size: 16px;
    line-height: 1.62;
  }

  .catalog-page-heading {
    margin-bottom: 22px;
  }

  .catalog-page-card {
    grid-template-rows: minmax(0, 220px) auto;
    min-height: 0;
  }

  .catalog-page-card__media,
  .catalog-page-card__media img {
    min-height: 0;
    height: 100%;
  }

  .catalog-page-card__body {
    padding: 20px;
  }

  .offer-teaser-card img,
  .offer-hero-media img {
    min-height: 0;
    height: clamp(240px, 64vw, 340px);
  }

  .catalog-hero__media {
    min-height: 280px;
  }

  .catalog-hero__media img {
    min-height: 280px;
    padding: 10px;
  }

  .offer-hero-copy h1 {
    font-size: 38px;
    line-height: 1.02;
    white-space: normal;
  }

  .offer-hero-copy {
    padding: 24px;
    border-radius: 8px;
  }

  .offer-hero-media,
  .offer-page--panels .offer-hero-media {
    min-height: 0;
  }

  .offer-page--panels .offer-hero-media {
    padding: 0;
  }

  .offer-page--food-trailers .offer-hero-media {
    padding: 0;
  }

  .offer-page--panels .offer-hero-media img {
    min-height: 0;
    height: clamp(260px, 68vw, 360px);
  }

  .offer-hero {
    padding: 32px 0 44px;
  }

  .catalog-page,
  .offer-page {
    overflow: hidden;
  }

  .catalog-hero,
  .offer-hero {
    gap: 24px;
    padding: 28px 0 44px;
  }

  .catalog-hero__copy,
  .offer-hero-copy {
    min-width: 0;
    gap: 16px;
  }

  .catalog-hero__copy {
    padding: 24px;
    border-radius: 8px;
  }

  .catalog-hero__copy h1,
  .offer-hero-copy h1 {
    font-size: clamp(34px, 10vw, 44px);
    line-height: 1.02;
    overflow-wrap: anywhere;
  }

  .offer-page--food-trailers .offer-hero-copy h1 {
    font-size: clamp(34px, 10vw, 44px);
  }

  .catalog-hero__actions {
    gap: 8px;
  }

  .catalog-hero__media,
  .offer-hero-media,
  .offer-page--panels .offer-hero-media,
  .offer-page--food-trailers .offer-hero-media {
    width: 100%;
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .catalog-hero__media {
    aspect-ratio: auto;
  }

  .catalog-hero__media {
    padding: 0;
  }

  .catalog-hero__media img,
  .offer-hero-media img,
  .offer-page--panels .offer-hero-media img,
  .offer-page--food-trailers .offer-hero-media img {
    height: 100%;
    min-height: 0;
  }

  .catalog-hero__media img {
    height: auto;
  }

  .catalog-hero__media img {
    padding: 0;
  }

  .offer-gallery-section .photo-browser-meta {
    padding-inline: 12px;
  }

  .portfolio-section {
    padding: 58px 14px;
  }

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

  .project-card {
    aspect-ratio: 4 / 3;
  }

  .project-card h3 {
    font-size: 22px;
  }

  .project-card-wide h3 {
    font-size: 24px;
  }

  .project-hero-copy h1 {
    font-size: 36px;
  }

  .project-hero {
    width: min(100% - 28px, 1280px);
    padding: 32px 0 44px;
  }

  .project-hero-media img {
    min-height: 280px;
  }

  .photo-browser-stage,
  .project-detail-section .photo-browser-stage {
    height: clamp(238px, 64vw, 320px);
  }

  .portfolio-section .photo-browser {
    padding: 12px;
  }

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

  .photo-browser-thumbs button {
    height: 68px;
  }

  .photo-browser-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 28px;
  }

  .photo-browser-prev {
    left: 8px;
  }

  .photo-browser-next {
    right: 8px;
  }

  .inquiry-form {
    gap: 14px;
  }
}

@media (max-width: 390px) {
  .hero-copy h1 {
    font-size: 35px;
  }

  .hero-visual {
    height: 238px;
  }

  .hero-showcase {
    width: 100%;
  }

  .photo-browser-stage,
  .project-detail-section .photo-browser-stage {
    height: 232px;
  }
}

/* Contact hub: intentionally isolated from the homepage contact layout. */
.contact-hub-page {
  position: relative;
  isolation: isolate;
  padding-bottom: 32px;
}

.contact-hub-page::before {
  position: absolute;
  z-index: -1;
  top: 80px;
  right: -180px;
  width: 560px;
  height: 560px;
  border: 1px solid rgba(11, 142, 232, 0.12);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.contact-hub-hero {
  width: min(calc(100% - 64px), 1280px);
  margin-inline: auto;
}

.contact-hub {
  width: min(calc(100% - 64px), 1280px);
  margin-inline: auto;
}

.contact-hub-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.72fr);
  align-items: end;
  gap: clamp(40px, 7vw, 120px);
  padding: clamp(62px, 7vw, 112px) 0 clamp(42px, 5vw, 72px);
}

.contact-hub-hero__copy h1 {
  max-width: 900px;
  margin: 12px 0 0;
  font-size: clamp(52px, 6.2vw, 96px);
  line-height: 0.94;
  letter-spacing: -0.055em;
}

.contact-hub-hero__lead {
  display: grid;
  gap: 28px;
  padding-bottom: 8px;
}

.contact-hub-hero__lead p {
  max-width: 590px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 1.25vw, 21px);
  line-height: 1.72;
}

.contact-hub__channels {
  position: relative;
  display: grid;
  grid-template-columns: minmax(390px, 0.88fr) minmax(0, 1.12fr);
  grid-template-rows: repeat(2, minmax(260px, 1fr));
  min-height: 610px;
  overflow: hidden;
  border: 1px solid rgba(129, 200, 250, 0.45);
  border-radius: 10px;
  background:
    linear-gradient(115deg, rgba(5, 47, 91, 0.96), rgba(9, 112, 188, 0.94) 54%, rgba(69, 160, 223, 0.88)),
    #07538f;
  box-shadow: 0 30px 80px rgba(5, 49, 88, 0.22);
  color: #fff;
}

.contact-hub__channels::before {
  position: absolute;
  top: -205px;
  left: 22%;
  width: 470px;
  height: 470px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.09);
  content: "";
  pointer-events: none;
}

.contact-hub__channels-heading,
.contact-hub__channel {
  position: relative;
  z-index: 1;
  min-width: 0;
  padding: clamp(30px, 3.2vw, 52px);
}

.contact-hub__channels-heading {
  display: grid;
  grid-template-columns: 1fr;
  align-content: space-between;
  gap: clamp(34px, 4vw, 58px);
  grid-row: 1 / 3;
  min-height: 100%;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.contact-hub__channels-heading p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.contact-hub__channels-heading h2 {
  max-width: 680px;
  margin: 28px 0 0;
  font-size: clamp(36px, 3.4vw, 58px);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.contact-hub__quick-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  align-self: stretch;
}

.contact-hub__quick-info > div,
.contact-hub__quick-info > a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  min-width: 0;
  padding: clamp(18px, 2vw, 26px);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-left: 3px solid rgba(151, 216, 255, 0.86);
  border-radius: 8px;
  background: transparent;
}

.contact-hub__quick-info small {
  color: rgba(255, 255, 255, 0.66);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-hub__quick-info strong {
  color: #fff;
  font-size: clamp(16px, 1.3vw, 20px);
  font-weight: 900;
  line-height: 1.55;
}

.contact-hub__quick-info--contacts > a {
  position: relative;
  min-height: 112px;
  color: #fff;
  transition: background 180ms ease, border-color 180ms ease;
}

.contact-hub__quick-info--contacts > a:hover,
.contact-hub__quick-info--contacts > a:focus-visible {
  border-color: rgba(255, 255, 255, 0.52);
  border-left-color: #b7e3ff;
  outline: none;
  background: rgba(255, 255, 255, 0.06);
}

.contact-hub__quick-info--contacts .contact-hub__quick-email {
  grid-column: 1 / -1;
  min-height: 86px;
}

.contact-hub__quick-info--contacts strong {
  align-self: flex-start;
  padding-right: 18px;
  font-size: clamp(18px, 1.5vw, 23px);
  font-weight: 900;
  text-align: left;
  overflow-wrap: anywhere;
}

.contact-hub__quick-info--contacts > a:not(.contact-hub__quick-email) strong {
  position: relative;
  left: -5px;
  font-size: clamp(17px, 1.3vw, 21px);
  overflow-wrap: normal;
  white-space: nowrap;
}

.contact-hub__channel {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  grid-column: 2;
  align-content: center;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  transition: background 180ms ease, transform 180ms ease;
}

.contact-hub__channel:last-child {
  border-bottom: 0;
}

.contact-hub__channel:hover,
.contact-hub__channel:focus-visible {
  z-index: 2;
  outline: none;
  background: rgba(255, 255, 255, 0.12);
}

.contact-hub__flag {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(4, 37, 69, 0.26);
  font-size: 23px;
  font-style: normal;
  font-weight: 900;
}

.contact-hub__flag svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-hub__channel > span:nth-child(2) {
  display: grid;
  gap: 9px;
  min-width: 0;
}

.contact-hub__channel small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1.45;
  text-transform: uppercase;
}

.contact-hub__channel > span:nth-child(2) > b {
  font-size: clamp(22px, 2vw, 32px);
  line-height: 1.22;
  letter-spacing: -0.035em;
  white-space: nowrap;
}

.contact-hub__channel--email b {
  overflow-wrap: anywhere;
  font-size: clamp(20px, 1.7vw, 27px);
  white-space: normal;
}

.contact-hub__channel--location b {
  white-space: normal;
}

.contact-hub__channel--location .contact-hub__flag {
  position: static;
  grid-row: 1 / -1;
  align-self: center;
}

.contact-hub__channel i {
  align-self: center;
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 7px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(3, 38, 70, 0.18);
  font-size: 11px;
  font-weight: 900;
  font-style: normal;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.contact-hub__channel--location {
  grid-row: 1;
  grid-template-columns: auto minmax(0, 1fr);
  grid-template-rows: minmax(0, 1fr) auto;
  align-content: start;
  align-items: start;
  align-self: center;
  justify-self: center;
  width: min(calc(100% - 40px), 560px);
  min-height: 0;
  box-sizing: border-box;
  margin: 0;
  padding: clamp(18px, 2vw, 26px);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-left: 3px solid rgba(151, 216, 255, 0.86);
  border-radius: 8px;
  background: transparent;
}

.contact-hub__channel--location b {
  max-width: 520px;
  font-size: clamp(25px, 2.4vw, 36px);
  line-height: 1.12;
}

.contact-hub__channel--location i {
  grid-column: 2;
  justify-self: start;
  margin-top: 24px;
}

.contact-hub__channel--socials {
  grid-row: 2;
  grid-template-columns: auto minmax(0, 1fr);
  align-content: center;
  align-self: center;
  justify-self: center;
  width: min(calc(100% - 40px), 560px);
  min-height: 0;
  margin: 0;
  padding: clamp(18px, 2vw, 26px);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-left: 3px solid rgba(151, 216, 255, 0.86);
  border-radius: 8px;
  background: transparent;
}

.contact-hub__channel--socials:hover {
  background: transparent;
}

.contact-hub__channel--location .contact-hub__flag,
.contact-hub__channel--socials .contact-hub__flag {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
}

.contact-hub__channel--location i {
  border-color: rgba(255, 255, 255, 0.32);
  background: transparent;
}

.contact-hub__channel--location:hover {
  border-color: rgba(255, 255, 255, 0.48);
  border-left-color: #b7e3ff;
  background: rgba(255, 255, 255, 0.06);
}

.contact-hub__social-content > b {
  font-size: clamp(22px, 2vw, 30px);
}

.contact-hub__channel-social-list {
  justify-content: flex-start;
  margin-top: 12px;
}

.contact-hub__channel-social-list .social-badge {
  color: #fff;
}

.contact-hub__secondary {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 24px;
}

.contact-hub__location,
.contact-hub__socials {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  align-content: start;
  gap: 18px;
  min-height: 300px;
  overflow: hidden;
  padding: clamp(30px, 3.4vw, 52px);
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface-card);
  box-shadow: 0 18px 52px rgba(7, 31, 60, 0.08);
}

.contact-hub__socials {
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  min-height: 230px;
}

.contact-hub__location::after,
.contact-hub__socials::after {
  position: absolute;
  right: -74px;
  bottom: -120px;
  width: 270px;
  height: 270px;
  border: 1px solid rgba(11, 142, 232, 0.15);
  border-radius: 50%;
  content: "";
}

.contact-hub__index {
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.contact-hub__location h3,
.contact-hub__socials h3 {
  margin: 9px 0 14px;
  font-size: clamp(26px, 2.35vw, 38px);
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.contact-hub__location p:not(.section-kicker),
.contact-hub__socials p:not(.section-kicker) {
  max-width: 610px;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.contact-hub__location > .button {
  z-index: 1;
  grid-column: 1;
  justify-self: start;
  align-self: start;
  margin-top: auto;
}

.contact-hub__social-links {
  z-index: 1;
  grid-column: 3;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-self: start;
  justify-content: flex-start;
  margin-top: auto;
  padding: 18px;
  border-radius: 8px;
  background: linear-gradient(115deg, #064575, #0a7ac8);
}

.contact-hub__social-links a {
  display: flex;
  min-height: 42px;
  padding: 7px 12px 7px 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.contact-hub__social-links a:hover,
.contact-hub__social-links a:focus-visible {
  border-color: rgba(120, 201, 255, 0.78);
  outline: none;
  background: rgba(120, 201, 255, 0.14);
  transform: translateY(-1px);
}

.contact-hub__social-links a > span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 8px;
  background: rgba(11, 142, 232, 0.24);
  color: #fff;
}

.contact-hub-form {
  width: min(calc(100% - 64px), 980px);
  margin: clamp(72px, 8vw, 120px) auto 0;
  scroll-margin-top: 130px;
}

.contact-hub-form__heading {
  display: grid;
  grid-template-columns: 1fr;
  align-items: end;
  gap: 18px;
  margin-bottom: 34px;
}

.contact-hub-form__heading h2 {
  margin: 10px 0 0;
  font-size: clamp(38px, 4.5vw, 68px);
  line-height: 1;
  letter-spacing: -0.045em;
}

.contact-hub-form__heading > p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.contact-hub-form .contact-hub-form__form {
  width: 100%;
  max-width: none;
  padding: clamp(24px, 3vw, 42px);
  border-radius: 10px;
}

.contact-hub-form .inquiry-picker {
  min-height: 480px;
}

.contact-hub-form .inquiry-paths {
  display: flex;
  flex-direction: row;
  width: min(100%, 500px);
  margin-inline: auto;
}

.contact-hub-form .inquiry-path-card {
  flex: 1 1 0;
  min-width: 0;
}

.contact-hub-form .inquiry-path-card span {
  min-height: 150px;
  align-content: center;
  padding: 24px;
}

html[data-theme="dark"] .contact-hub__location,
html[data-theme="dark"] .contact-hub__socials,
html[data-theme="dark"] .contact-hub-form__form {
  background: var(--surface-card);
}

@media (max-width: 1320px) {
  .contact-hub__secondary {
    grid-template-columns: 1fr;
  }

  .contact-hub__location,
  .contact-hub__socials {
    min-height: 270px;
  }
}

@media (max-width: 1120px) {
  .contact-hub__channels {
    grid-template-columns: 1fr;
    grid-template-rows: auto repeat(2, minmax(150px, auto));
  }

  .contact-hub__channels-heading {
    grid-template-columns: minmax(230px, 0.7fr) minmax(0, 1.3fr);
    align-items: center;
    grid-row: auto;
    min-height: 310px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .contact-hub__channel {
    grid-column: 1;
  }

  .contact-hub__channel--location,
  .contact-hub__channel--socials {
    grid-row: auto;
  }
}

@media (max-width: 820px) {
  .contact-hub-hero,
  .contact-hub-form__heading {
    grid-template-columns: 1fr;
  }

  .contact-hub-hero {
    gap: 24px;
  }

  .contact-hub-hero__lead {
    gap: 20px;
  }

  .contact-hub__channels {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .contact-hub__channels-heading {
    grid-template-columns: 1fr;
    grid-row: auto;
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .contact-hub__channel,
  .contact-hub__channel--email {
    grid-column: 1;
    min-height: 150px;
  }

  .contact-hub__channel--email {
    border-top: 0;
  }

  .contact-hub-form__heading {
    gap: 18px;
  }

  .contact-hub__socials {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .contact-hub__social-links {
    grid-column: 1;
  }
}

@media (max-width: 600px) {
  .contact-hub-hero,
  .contact-hub,
  .contact-hub-form {
    width: min(calc(100% - 28px), 1544px);
  }

  .contact-hub-hero {
    padding: 42px 0 32px;
  }

  .contact-hub-hero__copy h1 {
    font-size: clamp(42px, 14vw, 62px);
  }

  .contact-hub__channels,
  .contact-hub__channels-heading {
    grid-template-columns: 1fr;
  }

  .contact-hub__channels-heading {
    min-height: 190px;
  }

  .contact-hub__quick-info {
    grid-template-columns: 1fr;
  }

  .contact-hub__quick-info > a {
    grid-column: 1;
  }

  .contact-hub__channels-heading h2 {
    justify-self: start;
    text-align: left;
  }

  .contact-hub__channel {
    min-height: 150px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .contact-hub__channel:last-child {
    border-bottom: 0;
  }

  .contact-hub__location,
  .contact-hub__socials {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .contact-hub__channel--location,
  .contact-hub__channel--socials {
    grid-template-columns: 46px minmax(0, 1fr);
    grid-template-rows: auto auto;
    align-content: center;
    align-items: center;
    align-self: stretch;
    justify-self: stretch;
    width: 100%;
    min-height: 168px;
    padding: 22px;
  }

  .contact-hub__channel--location .contact-hub__flag {
    grid-row: 1 / -1;
  }

  .contact-hub__channel--location b {
    transform: none;
  }

  .contact-hub__channel--location i {
    grid-column: 2;
    margin-top: 14px;
  }

  .contact-hub__location > .button,
  .contact-hub__social-links {
    grid-column: 1;
  }

  .contact-hub__social-links {
    display: flex;
  }

  .contact-hub-form {
    margin-top: 68px;
  }

  .contact-hub-form .contact-hub-form__form {
    padding: 18px;
  }

  .contact-hub-form .inquiry-paths {
    flex-direction: column;
  }
}

@media (max-width: 980px) {
  .not-found-shell {
    min-height: 0;
  }

  .not-found-grid {
    grid-template-columns: 1fr;
    padding-bottom: 28px;
  }

  .not-found-copy h1 {
    max-width: 14ch;
  }

  .not-found-shortcuts {
    grid-template-columns: 1fr;
  }

  .not-found-shortcuts a {
    min-height: 84px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .not-found-shortcuts a:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 560px) {
  .not-found-page {
    width: min(100% - 20px, 1280px);
    padding-top: 10px;
  }

  .not-found-shell {
    border-radius: 20px;
  }

  .not-found-topbar {
    padding: 20px;
  }

  .not-found-brand img {
    width: 188px;
  }

  .not-found-grid {
    gap: 16px;
    padding: 44px 20px 14px;
  }

  .not-found-copy h1 {
    font-size: clamp(42px, 13vw, 62px);
  }

  .not-found-actions {
    display: grid;
  }

  .not-found-actions .button {
    justify-content: center;
    width: 100%;
  }

  .not-found-shortcuts a {
    padding: 20px;
  }
}
