:root {
  color-scheme: light;
  --ink: #12233a;
  --muted: #586473;
  --line: #d7dde4;
  --paper: #f8f6f0;
  --panel: #ffffff;
  --green: #174676;
  --green-dark: #0b3767;
  --accent: #f2aa21;
  --blue: #0b3767;
  --cream: #fffaf0;
  --brand-gold: #f2aa21;
  --brand-sky: #e7f0f7;
  --shadow: 0 18px 44px rgba(13, 42, 82, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Work Sans", Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
  letter-spacing: 0;
}

a {
  color: inherit;
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  min-height: 64px;
  background: #fff;
  border-bottom: 1px solid #e4e4e4;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1200px;
  min-height: 64px;
  margin: 0 auto;
  padding: 0 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: var(--green-dark);
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
}

.brand-name {
  white-space: nowrap;
}

nav {
  display: flex;
  gap: 32px;
  color: #606765;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

nav a {
  padding: 6px 0;
  text-decoration: none;
}

nav a.active {
  color: var(--green-dark);
  border-bottom: 2px solid var(--green-dark);
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.topbar-phone {
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.topbar-cta {
  padding: 10px 16px;
  color: #fff;
  background: #012d1d;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 600px;
  margin-top: 64px;
  padding: 72px 24px;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(90deg, rgba(1, 45, 29, 0.56), rgba(1, 45, 29, 0.38)),
    url("/assets/aidas-hero-stitch.png") center / cover no-repeat;
}

.hero::after {
  content: none;
}

.hero-copy {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  color: #fff;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(44px, 5vw, 72px);
  font-weight: 400;
  line-height: 1.08;
  overflow-wrap: normal;
}

h2 {
  margin: 0 0 18px;
  font-size: 30px;
}

h3 {
  margin: 0 0 10px;
  font-size: 18px;
}

.lead {
  max-width: 610px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 20px;
  line-height: 1.5;
}

.quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 28px;
  border: 1px solid #012d1d;
  border-radius: 0;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  color: #fff;
  background: var(--green-dark);
}

.hero .button.primary {
  min-height: 58px;
  background: #012d1d;
  border-color: #012d1d;
  color: #fff;
}

.button.secondary {
  color: var(--green-dark);
  background: transparent;
}

.button.secondary.dark {
  color: var(--green-dark);
  background: #fff;
}

.hero .button.secondary {
  min-height: 58px;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.12);
}

.scroll-cue {
  display: inline-flex;
  margin-top: 34px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.section {
  padding: 78px 24px;
  border-top: 0;
}

.section-heading {
  display: grid;
  justify-items: center;
  gap: 14px;
  margin-bottom: 46px;
  text-align: center;
}

.section-heading span {
  width: 72px;
  height: 3px;
  background: var(--accent);
}

.section-action {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-grid article {
  min-height: 220px;
  padding: 34px;
  background: #f9f9f9;
  border: 1px solid #dedede;
  border-radius: 0;
  box-shadow: none;
}

.service-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  color: #fff;
  background: var(--green-dark);
  border-radius: 0;
  font-size: 18px;
  font-weight: 800;
}

.service-grid p,
.rules-grid p,
.section-copy,
.facts dd,
.contact-band p {
  color: var(--muted);
  line-height: 1.5;
}

.rules-section {
  background: #fff;
}

.rules-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 1200px;
  margin: 0 auto;
}

.rules-grid article {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 230px;
  padding: 26px;
  background: var(--paper);
  border: 1px solid #dedede;
}

.rules-grid strong {
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
}

.rules-grid h3,
.rules-grid p {
  margin: 0;
}

.info-band {
  display: grid;
  grid-template-columns: minmax(260px, 2fr) minmax(180px, 1fr) minmax(180px, 1fr);
  gap: 32px;
  align-items: center;
  padding: 42px max(24px, calc((100vw - 1200px) / 2 + 24px));
  color: #fff;
  background: #003f2a;
}

.info-band h2,
.info-band p {
  margin: 0;
}

.info-band h2 {
  font-size: 20px;
}

.info-band p,
.info-band span {
  color: rgba(255, 255, 255, 0.78);
}

.info-item {
  display: grid;
  gap: 4px;
  font-size: 14px;
}

.request-layout {
  display: grid;
  gap: 28px;
  justify-items: center;
  background: var(--paper);
}

.request-layout > div {
  width: min(100%, 1000px);
}

.lead-form {
  display: grid;
  gap: 18px;
  width: min(100%, 1000px);
  padding: clamp(26px, 5vw, 54px);
  background: #fff;
  border: 1px solid #dedede;
  border-radius: 0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.10);
}

.catalog-picker {
  display: grid;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.catalog-picker summary {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 14px;
  color: var(--green-dark);
  font-weight: 700;
  cursor: pointer;
}

.catalog-picker summary::marker {
  color: var(--accent);
}

.catalog-body {
  display: grid;
  gap: 12px;
  padding: 0 14px 14px;
}

.catalog-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 280px);
  gap: 14px;
  align-items: end;
}

.catalog-head h3,
.catalog-head p {
  margin: 0;
}

.catalog-head p {
  color: var(--muted);
  font-size: 13px;
}

.availability-summary {
  padding: 10px 12px;
  color: var(--blue);
  background: #eef4f8;
  border: 1px solid #ccdbe7;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
}

.catalog-list {
  display: grid;
  gap: 12px;
  max-height: 540px;
  overflow: auto;
  padding-right: 4px;
}

.catalog-empty {
  margin: 0;
  padding: 14px;
  color: var(--muted);
  background: var(--paper);
  border: 1px dashed var(--line);
  border-radius: 6px;
}

.catalog-group {
  display: grid;
  gap: 7px;
}

.catalog-group h4 {
  position: sticky;
  top: 0;
  z-index: 1;
  margin: 0;
  padding: 8px 0;
  background: #fff;
  color: var(--green-dark);
  font-size: 14px;
}

.catalog-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 82px;
  gap: 12px;
  align-items: center;
  padding: 10px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.catalog-row strong,
.catalog-row span {
  display: block;
}

.catalog-row span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

.catalog-row input {
  min-height: 38px;
  text-align: right;
}

.selection-summary {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
  font-weight: 700;
}

.catalog-hero {
  min-height: 380px;
  margin-top: 64px;
  padding: 96px max(24px, calc((100vw - 1200px) / 2 + 24px)) 70px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(1, 45, 29, 0.72), rgba(1, 45, 29, 0.34)),
    url("/assets/aidas-hero-stitch.png") center / cover no-repeat;
}

.catalog-hero > div {
  max-width: 780px;
}

.catalog-hero h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(42px, 6vw, 74px);
  line-height: 0.98;
}

.catalog-hero p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
  line-height: 1.5;
}

.catalog-kicker {
  margin: 0 0 14px !important;
  color: rgba(255, 255, 255, 0.76) !important;
  font-size: 13px !important;
  font-weight: 800;
  text-transform: uppercase;
}

.catalog-page {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 34px;
  max-width: 1260px;
  margin: 0 auto;
  padding: 42px 24px 86px;
}

.catalog-sidebar {
  position: sticky;
  top: 88px;
  display: grid;
  align-content: start;
  gap: 18px;
  height: fit-content;
}

.catalog-filter {
  display: grid;
  gap: 8px;
}

.catalog-filter button {
  min-height: 40px;
  padding: 9px 12px;
  color: var(--green-dark);
  background: #fff;
  border: 1px solid var(--line);
  font: inherit;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.catalog-filter button.active {
  color: #fff;
  background: var(--green-dark);
  border-color: var(--green-dark);
}

.catalog-selection-panel {
  display: grid;
  gap: 10px;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
}

.catalog-selection-panel span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.catalog-results {
  display: grid;
  gap: 22px;
}

.catalog-result-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: end;
}

.catalog-result-head h2,
.catalog-result-head p {
  margin: 0;
}

.catalog-result-head p {
  margin-top: 6px;
  color: var(--muted);
}

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

.catalog-card {
  display: grid;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
}

.catalog-card-media {
  min-height: 165px;
  background:
    linear-gradient(180deg, rgba(1, 45, 29, 0.12), rgba(1, 45, 29, 0.46)),
    url("/assets/aidas-hero-stitch.png") center / cover no-repeat;
}

.catalog-card-media img {
  display: block;
  width: 100%;
  height: 185px;
  object-fit: cover;
}

.catalog-card.is-dishes .catalog-card-media,
.catalog-card.is-machine .catalog-card-media,
.catalog-card.is-cutlery .catalog-card-media,
.catalog-card.is-glass .catalog-card-media {
  background-position: center 56%;
}

.catalog-card.is-machine .catalog-card-media {
  background-image: url("/assets/catalog/spueltechnik.png");
}

.catalog-card.is-dishes .catalog-card-media {
  background-image: url("/assets/catalog/geschirr.png");
}

.catalog-card.is-cutlery .catalog-card-media {
  background-image: url("/assets/catalog/besteck.png");
}

.catalog-card.is-glass .catalog-card-media {
  background-image: url("/assets/catalog/glaeser.png");
}

.catalog-card.is-consumable .catalog-card-media,
.catalog-card.is-service .catalog-card-media {
  background-image: url("/assets/catalog/service.png");
}

.catalog-card.is-consumable .catalog-card-media,
.catalog-card.is-service .catalog-card-media {
  background-position: center 70%;
}

.catalog-card-body {
  display: grid;
  gap: 12px;
  padding: 20px;
}

.catalog-card-body span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.catalog-card-body h3,
.catalog-card-body p {
  margin: 0;
}

.catalog-card-body h3 {
  min-height: 48px;
  font-size: 19px;
  line-height: 1.25;
}

.catalog-card-body p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.catalog-card-status {
  padding: 10px 12px;
  color: var(--blue);
  background: #eef4f8;
  border: 1px solid #ccdbe7;
  font-size: 13px;
  font-weight: 800;
}

.catalog-card-action {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
}

.catalog-card-action input {
  text-align: right;
}

.catalog-card-action button {
  min-height: 42px;
  color: #fff;
  background: var(--green-dark);
  border: 1px solid var(--green-dark);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

label {
  display: grid;
  gap: 7px;
  font-size: 13px;
  font-weight: 700;
}

.consent-box {
  display: grid;
  gap: 10px;
  padding: 14px;
  background: var(--paper);
  border: 1px solid var(--line);
}

.consent-box label {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.35;
}

.consent-box input {
  min-height: 18px;
  margin-top: 1px;
  padding: 0;
}

input,
select,
textarea {
  width: 100%;
  min-height: 42px;
  padding: 10px 12px;
  color: var(--ink);
  background: #fff;
  border: 1px solid #cbd4d0;
  border-radius: 0;
  font: inherit;
}

textarea {
  resize: vertical;
}

.assistant-widget {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 20;
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-end;
  gap: 10px;
  pointer-events: none;
}

.assistant-toggle {
  min-height: 46px;
  padding: 0 18px;
  color: #fff;
  background: var(--green-dark);
  border: 1px solid var(--green-dark);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  box-shadow: var(--shadow);
  pointer-events: auto;
}

.assistant-panel {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  width: min(360px, calc(100vw - 32px));
  max-height: 540px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  pointer-events: auto;
}

.assistant-panel[hidden] {
  display: none;
}

.assistant-head {
  display: grid;
  gap: 4px;
  padding: 14px;
  color: #fff;
  background: var(--green-dark);
}

.assistant-head span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  line-height: 1.35;
}

.assistant-messages {
  display: grid;
  gap: 10px;
  max-height: 330px;
  overflow: auto;
  padding: 14px;
  background: var(--paper);
}

.assistant-message {
  margin: 0;
  padding: 10px 12px;
  font-size: 14px;
  line-height: 1.4;
}

.assistant-answer {
  background: #fff;
  border: 1px solid var(--line);
}

.assistant-question {
  justify-self: end;
  color: #fff;
  background: var(--blue);
}

.assistant-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 88px;
  gap: 8px;
  padding: 12px;
  border-top: 1px solid var(--line);
}

.assistant-form input {
  min-height: 40px;
}

.assistant-form button {
  color: #fff;
  background: var(--green-dark);
  border: 1px solid var(--green-dark);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.form-status {
  min-height: 20px;
  margin: 0;
  color: var(--green-dark);
  font-weight: 700;
}

.form-status.error {
  color: var(--accent);
}

.contact-band {
  display: none;
}

.footer {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  padding: 72px max(24px, calc((100vw - 1200px) / 2 + 24px));
  background: #fff;
  border-top: 1px solid #e4e4e4;
}

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

.footer h2 {
  font-size: 18px;
  color: var(--green-dark);
}

.footer h3 {
  font-size: 13px;
  text-transform: uppercase;
}

.footer p,
.footer a {
  display: block;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  text-decoration: none;
}

.legal-page {
  padding: 128px 24px 72px;
  background: var(--paper);
}

.legal-card {
  width: min(100%, 920px);
  margin: 0 auto;
  padding: clamp(28px, 5vw, 56px);
  background: #fff;
  border: 1px solid #dedede;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.08);
}

.legal-card h1 {
  max-width: none;
  margin-bottom: 28px;
  color: var(--green-dark);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
}

.legal-card h2 {
  margin-top: 34px;
  color: var(--ink);
  font-size: 22px;
}

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

.legal-card a {
  color: var(--green-dark);
  font-weight: 700;
}

.legal-kicker {
  margin: 0 0 10px;
  color: var(--accent) !important;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

@media (max-width: 860px) {
  .topbar {
    position: static;
  }

  .topbar-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 18px;
  }

  nav,
  .topbar-actions {
    flex-wrap: wrap;
  }
  .request-layout,
  .service-grid,
  .rules-grid,
  .catalog-page,
  .catalog-card-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 620px;
    margin-top: 0;
    background:
      linear-gradient(180deg, rgba(1, 45, 29, 0.70), rgba(1, 45, 29, 0.45)),
      url("/assets/aidas-hero-stitch.png") center / cover no-repeat;
  }

  .info-band,
  .footer {
    grid-template-columns: 1fr;
  }

  .catalog-hero {
    min-height: 430px;
    margin-top: 0;
    padding-top: 74px;
  }

  .catalog-sidebar {
    position: static;
  }

  .legal-page {
    padding-top: 42px;
  }

  .form-row,
  .catalog-head,
  .contact-band {
    grid-template-columns: 1fr;
  }

  .contact-band {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  h1 {
    font-size: 38px;
  }

  .quick-actions,
  .button {
    width: 100%;
  }

  .assistant-widget {
    right: 14px;
    bottom: 14px;
    left: auto;
    max-width: calc(100vw - 28px);
  }

  .assistant-toggle {
    width: auto;
    min-width: 0;
    min-height: 42px;
    padding: 0 14px;
    border-radius: 999px;
    font-size: 13px;
  }

  .assistant-panel {
    width: min(340px, calc(100vw - 28px));
    max-height: min(62vh, 430px);
  }

  .assistant-head {
    padding: 10px 12px;
  }

  .assistant-head span {
    display: none;
  }

  .assistant-messages {
    max-height: calc(62vh - 112px);
    padding: 10px;
  }

  .assistant-form {
    grid-template-columns: minmax(0, 1fr) 74px;
    padding: 10px;
  }

  .hero-facts {
    display: grid;
  }
}

/* Aidas brand pass 2026-05-05: marine blue, warm plate-gold, paper texture. */
body {
  background:
    radial-gradient(circle at 8% 0%, rgba(242, 170, 33, 0.13), transparent 26rem),
    radial-gradient(circle at 95% 10%, rgba(11, 55, 103, 0.10), transparent 30rem),
    linear-gradient(180deg, #fffdf8 0%, var(--paper) 58%, #f3f0e8 100%);
}

.topbar {
  background: rgba(255, 253, 248, 0.92);
  border-bottom: 1px solid rgba(18, 35, 58, 0.10);
  box-shadow: 0 10px 28px rgba(13, 42, 82, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  gap: 12px;
  color: var(--blue);
}

.brand-logo {
  width: 58px;
  height: 58px;
  object-fit: contain;
  filter: drop-shadow(0 6px 12px rgba(11, 55, 103, 0.12));
}

.brand-name {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.topbar-cta,
.button.primary,
.hero .button.primary {
  color: #0b3767;
  background: var(--brand-gold);
  border-color: var(--brand-gold);
  box-shadow: 0 12px 22px rgba(242, 170, 33, 0.24);
}

.button,
.topbar-cta {
  border-radius: 999px;
}

.hero {
  background:
    linear-gradient(90deg, rgba(11, 55, 103, 0.88), rgba(11, 55, 103, 0.60) 48%, rgba(242, 170, 33, 0.18)),
    url("/assets/aidas-hero-stitch.png") center / cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  right: clamp(18px, 7vw, 110px);
  bottom: clamp(26px, 6vw, 78px);
  width: clamp(170px, 24vw, 320px);
  aspect-ratio: 1;
  background: url("/assets/brand/logo-plate-v7.png") center / contain no-repeat;
  opacity: 0.92;
  filter: drop-shadow(0 24px 42px rgba(0, 0, 0, 0.24));
  z-index: -1;
}

h1 {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: -0.045em;
}

.section-heading span,
.service-icon,
.catalog-picker summary,
.selection-summary {
  background: var(--brand-gold);
}

.service-grid article,
.rules-grid article,
.lead-form,
.booking-panel,
.token-form {
  border-color: rgba(11, 55, 103, 0.13);
  box-shadow: var(--shadow);
}

.info-band {
  background:
    linear-gradient(135deg, rgba(11, 55, 103, 0.98), rgba(23, 70, 118, 0.94)),
    radial-gradient(circle at 88% 20%, rgba(242, 170, 33, 0.30), transparent 22rem);
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(242, 170, 33, 0.34);
  border-color: var(--brand-gold);
}

@media (max-width: 760px) {
  .brand-logo {
    width: 46px;
    height: 46px;
  }

  .brand-name {
    font-size: 16px;
  }

  .hero::before {
    opacity: 0.26;
    right: -38px;
    bottom: 14px;
    width: 220px;
  }
}

/* Catalog brand alignment: approved 2026-05-05. */
.catalog-hero {
  background:
    linear-gradient(135deg, rgba(11, 55, 103, 0.96), rgba(23, 70, 118, 0.88)),
    radial-gradient(circle at 86% 18%, rgba(242, 170, 33, 0.34), transparent 22rem);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}

.catalog-hero::after {
  content: "";
  position: absolute;
  right: clamp(18px, 7vw, 110px);
  bottom: -42px;
  width: clamp(160px, 22vw, 300px);
  aspect-ratio: 1;
  background: url("/assets/brand/logo-plate-v7.png") center / contain no-repeat;
  opacity: 0.20;
  pointer-events: none;
  z-index: -1;
}

.catalog-kicker,
.catalog-result-head h2,
.catalog-page-count {
  color: var(--brand-gold);
}

.catalog-sidebar,
.catalog-results,
.catalog-selection-panel,
.catalog-card {
  border-color: rgba(11, 55, 103, 0.13);
  box-shadow: var(--shadow);
}

.catalog-filter button.active,
.catalog-card button,
.catalog-card .selected {
  background: var(--brand-gold);
  border-color: var(--brand-gold);
  color: #0b3767;
}
