:root {
  --bg: #0c0f12;
  --bg-elevated: #141a21;
  --surface: #1c242e;
  --border: #2a3544;
  --text: #eef2f6;
  --text-muted: #9aa8b8;
  --accent: #d4a012;
  --accent-dim: #a67c0a;
  --accent-glow: rgba(212, 160, 18, 0.35);
  --steel: #6b7c8f;
  --success: #2d8a54;
  --font-sans: "Source Sans 3", system-ui, sans-serif;
  --font-display: "Oswald", var(--font-sans);
  --space: clamp(1rem, 3vw, 2rem);
  --radius: 10px;
  --max: 1180px;
}

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

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .card:hover {
    transform: none;
  }
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  padding-left: env(safe-area-inset-left, 0px);
  padding-right: env(safe-area-inset-right, 0px);
  padding-bottom: env(safe-area-inset-bottom, 0px);
}

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

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

a,
button {
  -webkit-tap-highlight-color: rgba(212, 160, 18, 0.22);
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  left: var(--space);
  top: var(--space);
  width: auto;
  height: auto;
  padding: 0.5rem 1rem;
  background: var(--accent);
  color: var(--bg);
  z-index: 10000;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(12, 15, 18, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.site-nav.is-scrolled {
  border-color: var(--border);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.85rem max(var(--space), env(safe-area-inset-right, 0px)) 0.85rem
    max(var(--space), env(safe-area-inset-left, 0px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
}

.brand {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.1rem, 4vw, 1.35rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
}

.brand span {
  color: var(--accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-toggle {
  display: none;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 1rem;
  min-width: 44px;
  min-height: 44px;
}

@media (max-width: 860px) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-links {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    z-index: 1001;
    flex-direction: column;
    align-items: stretch;
    background: var(--bg-elevated);
    border-bottom: 1px solid var(--border);
    padding: 0.75rem max(var(--space), env(safe-area-inset-right, 0px)) 1rem
      max(var(--space), env(safe-area-inset-left, 0px));
    gap: 0.25rem;
    display: none;
    max-height: min(70vh, 28rem);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

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

  .nav-links a,
  .nav-links .btn {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 0.75rem;
    box-sizing: border-box;
  }

  .nav-links .btn {
    width: 100%;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  min-height: 44px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: linear-gradient(165deg, #e8b82a, var(--accent-dim));
  color: #1a1408;
  box-shadow: 0 4px 20px var(--accent-glow);
}

.btn-primary:hover {
  box-shadow: 0 6px 28px var(--accent-glow);
  text-decoration: none;
}

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

.btn-ghost:hover {
  border-color: var(--steel);
  background: var(--surface);
  text-decoration: none;
}

.btn-wa {
  background: #25d366;
  color: #fff;
}

.btn-wa:hover {
  background: #1ebe57;
  text-decoration: none;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: min(92vh, 820px);
  display: flex;
  align-items: center;
  padding: clamp(2rem, 6vw, 5rem) max(var(--space), env(safe-area-inset-right, 0px))
    clamp(2rem, 6vw, 5rem) max(var(--space), env(safe-area-inset-left, 0px));
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 70% 20%, rgba(212, 160, 18, 0.12), transparent 50%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-elevated) 100%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

@media (max-width: 900px) {
  .hero {
    min-height: unset;
    padding-top: clamp(1.25rem, 4vw, 2rem);
    padding-bottom: clamp(2rem, 5vw, 3rem);
  }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-ctas {
    justify-content: center;
    flex-direction: column;
    width: 100%;
    max-width: 22rem;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-ctas .btn {
    width: 100%;
  }

  .hero-visual {
    order: -1;
    max-width: min(420px, 100%);
    margin: 0 auto;
  }

  .hero-lead {
    margin-left: auto;
    margin-right: auto;
  }
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  line-height: 1.1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 0 0 1rem;
}

.hero-lead {
  color: var(--text-muted);
  font-size: 1.125rem;
  max-width: 36ch;
  margin: 0 0 1.5rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.badge {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.35rem 0.75rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text-muted);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-visual {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.hero-visual img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.hero-visual figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.75rem 1rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
  font-size: 0.85rem;
  color: var(--text-muted);
}

.section {
  padding-top: clamp(3rem, 6vw, 5rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
  padding-left: max(var(--space), env(safe-area-inset-left, 0px));
  padding-right: max(var(--space), env(safe-area-inset-right, 0px));
}

.section-alt {
  background: var(--bg-elevated);
}

.section-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.section-head {
  margin-bottom: 2.5rem;
  max-width: 52ch;
}

.section-kicker {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin: 0 0 0.5rem;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin: 0 0 0.75rem;
  line-height: 1.15;
}

.section-head p {
  margin: 0;
  color: var(--text-muted);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 1.5rem max(var(--space), env(safe-area-inset-right, 0px)) 1.5rem
    max(var(--space), env(safe-area-inset-left, 0px));
  background: var(--surface);
  border-block: 1px solid var(--border);
}

@media (max-width: 768px) {
  .trust-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}

.trust-item {
  text-align: center;
  padding: 0.5rem;
}

.trust-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--accent);
  letter-spacing: 0.02em;
}

.trust-item span {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

#trust-gf {
  scroll-margin-top: 5.5rem;
}

.trust-band {
  position: relative;
  background: linear-gradient(165deg, #080b0f 0%, #111820 45%, #0c1016 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  box-shadow: inset 0 1px 0 rgba(212, 160, 18, 0.06);
}

.trust-band::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: linear-gradient(180deg, #f0c24a, var(--accent-dim));
  pointer-events: none;
}

.trust-band-inner {
  position: relative;
  z-index: 1;
}

.trust-band-intro {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(1.25rem, 4vw, 3rem);
  align-items: start;
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

@media (max-width: 700px) {
  .trust-band-intro {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .trust-band-year {
    justify-self: center;
  }

  .trust-band-copy {
    text-align: center;
  }

  .trust-band-lead {
    margin-left: auto;
    margin-right: auto;
  }
}

.trust-band-year {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3.75rem, 16vw, 8.5rem);
  font-weight: 600;
  line-height: 0.82;
  letter-spacing: 0.03em;
  color: var(--accent);
  opacity: 0.18;
  user-select: none;
}

.trust-band-kicker {
  margin-bottom: 0.4rem;
}

.trust-band-copy h2.trust-band-headline {
  font-family: var(--font-sans);
  font-size: clamp(1.1rem, 2.55vw, 1.35rem);
  font-weight: 800;
  text-transform: none;
  letter-spacing: 0.015em;
  line-height: 1.55;
  margin: 0;
  max-width: 62ch;
  color: #f7f9fc;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.55), 0 0 1px rgba(0, 0, 0, 0.4);
}

@media (max-width: 700px) {
  .trust-band-copy h2.trust-band-headline {
    max-width: none;
  }
}

.trust-band-lead {
  margin: 0;
  max-width: 56ch;
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.trust-band-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

@media (max-width: 960px) {
  .trust-band-columns {
    grid-template-columns: 1fr;
  }
}

.trust-band-card {
  background: rgba(28, 36, 46, 0.65);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem 1.4rem 1.5rem;
}

.trust-band-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 0.65rem;
  color: var(--text);
}

.trust-band-card > p {
  margin: 0 0 0.85rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.trust-band-card-lead {
  margin: 0 0 1rem;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.trust-sector-tags {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.trust-sector-tags li {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text-muted);
}

.trust-checklist {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.trust-checklist li {
  margin-bottom: 0.5rem;
}

.trust-checklist li:last-child {
  margin-bottom: 0;
}

.grid-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 260px), 1fr));
  gap: 1.25rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem 1.35rem 1.5rem;
  transition: border-color 0.2s, transform 0.2s;
}

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

.card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0 0 0.5rem;
  color: var(--text);
}

.card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
  gap: 1.25rem;
}

.product-category-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin: 0 0 2rem;
  padding: 0.65rem 0 1rem;
  position: sticky;
  top: 3.25rem;
  z-index: 50;
  background: linear-gradient(to bottom, var(--bg) 70%, transparent);
}

@media (max-width: 860px) {
  .product-category-nav {
    top: 3.1rem;
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    gap: 0.45rem;
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    scroll-snap-type: x proximity;
    mask-image: linear-gradient(to right, transparent, #000 12px, #000 calc(100% - 12px), transparent);
  }

  .product-category-nav a {
    scroll-snap-align: start;
    flex-shrink: 0;
  }
}

.product-category-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.4rem 0.85rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  text-decoration: none;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}

.product-category-nav a:hover {
  color: var(--text);
  border-color: var(--steel);
  text-decoration: none;
}

.section-alt .product-category-nav {
  background: linear-gradient(to bottom, var(--bg-elevated) 70%, transparent);
}

.product-category {
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
  scroll-margin-top: 5.5rem;
}

.product-category:last-of-type {
  margin-bottom: 0;
}

.product-category-title {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3vw, 1.45rem);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 0.5rem;
  color: var(--accent);
}

.product-category-lead {
  margin: 0 0 1.25rem;
  max-width: 62ch;
  font-size: 0.98rem;
  color: var(--text-muted);
}

.product-card.product-card--info {
  display: flex;
  align-items: center;
  min-height: 220px;
}

.product-card.product-card--info .meta {
  border-top: none;
  padding: 1.75rem 1.25rem;
  text-align: center;
  width: 100%;
}

.product-card.product-card--info .meta h3 {
  margin-top: 0;
}

@media (max-width: 380px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
}

.product-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}

.section-alt .product-card {
  background: var(--surface);
}

.product-card:hover {
  border-color: var(--accent-dim);
}

.product-card figure {
  margin: 0;
  aspect-ratio: 1;
  background: #0a0c0e;
  overflow: hidden;
}

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.75rem;
}

.product-card .meta {
  padding: 1rem 1.1rem 1.2rem;
  border-top: 1px solid var(--border);
}

.product-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0 0 0.35rem;
}

.product-card p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.location-grid .location-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.location-badge {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin: 0 0 0.35rem;
}

.location-card h3 {
  margin-top: 0;
}

.location-address {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0 0 0.5rem;
  line-height: 1.45;
}

.location-summary {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  flex: 1;
}

.map-link-btn {
  margin-top: auto;
  align-self: flex-start;
}

.cta-strip {
  text-align: center;
  padding-top: clamp(2.5rem, 5vw, 3.5rem);
  padding-bottom: clamp(2.5rem, 5vw, 3.5rem);
  padding-left: max(var(--space), env(safe-area-inset-left, 0px));
  padding-right: max(var(--space), env(safe-area-inset-right, 0px));
  background: linear-gradient(135deg, var(--surface) 0%, #1a1510 50%, var(--surface) 100%);
  border-block: 1px solid var(--border);
}

.cta-strip h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  text-transform: uppercase;
  margin: 0 0 0.5rem;
}

.cta-strip p {
  color: var(--text-muted);
  margin: 0 0 1.25rem;
  max-width: 42ch;
  margin-left: auto;
  margin-right: auto;
}

.site-footer {
  padding: 2.5rem max(var(--space), env(safe-area-inset-right, 0px)) 2.5rem
    max(var(--space), env(safe-area-inset-left, 0px));
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 2rem;
}

@media (max-width: 900px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }
}

.site-footer h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 0.75rem;
  color: var(--accent);
}

.site-footer p,
.site-footer li {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.site-footer ul {
  margin: 0;
  padding-left: 1.1rem;
}

.site-footer ul.footer-maps {
  list-style: none;
  padding: 0;
}

.site-footer ul.footer-maps li {
  margin-bottom: 0.5rem;
}

.site-footer ul.footer-maps a {
  color: var(--text-muted);
  font-weight: 600;
}

.site-footer ul.footer-maps a:hover {
  color: var(--accent);
}

.footer-bottom {
  max-width: var(--max);
  margin: 2rem auto 0;
  padding: 1.5rem max(var(--space), env(safe-area-inset-right, 0px)) 0
    max(var(--space), env(safe-area-inset-left, 0px));
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
}

.documents-list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 640px;
}

.documents-list li {
  margin-bottom: 0.75rem;
}

.documents-list a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 52px;
  padding: 1rem 1.15rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-weight: 600;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}

.documents-list a::before {
  content: "PDF";
  flex-shrink: 0;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 0.35rem 0.45rem;
  border-radius: 4px;
  background: #b4232a;
  color: #fff;
}

.documents-list a:hover {
  border-color: var(--accent-dim);
  background: var(--bg-elevated);
  text-decoration: none;
}

.card-link-line {
  margin: 0.75rem 0 0;
  font-size: 0.95rem;
}

.card-link-line a {
  font-weight: 700;
}

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

.wb-catalogue-layout {
  display: grid;
  grid-template-columns: 1fr min(100%, 320px);
  gap: clamp(1.5rem, 4vw, 2.5rem);
  align-items: start;
}

@media (max-width: 900px) {
  .wb-catalogue-layout {
    grid-template-columns: 1fr;
  }
}

.wb-subhead {
  font-family: var(--font-display);
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 2rem 0 1rem;
}

.wb-catalogue-main > .wb-subhead:first-of-type {
  margin-top: 0;
}

.wb-note {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0 0 1rem;
  max-width: 65ch;
}

.table-wrap {
  overflow-x: auto;
  margin-bottom: 0.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.catalog-table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.catalog-table th,
.catalog-table td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

.catalog-table th {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.8rem;
  color: var(--accent);
  background: var(--bg);
}

.section-alt .catalog-table th {
  background: var(--bg-elevated);
}

.catalog-table tbody tr:last-child td {
  border-bottom: none;
}

.catalog-table tbody tr:hover td {
  background: rgba(212, 160, 18, 0.06);
}

.wb-list {
  margin: 0;
  padding-left: 1.25rem;
  color: var(--text-muted);
  max-width: 65ch;
}

.wb-list li {
  margin-bottom: 0.5rem;
}

.wb-catalogue-aside {
  position: sticky;
  top: 5.5rem;
  padding: 1.35rem 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

@media (max-width: 900px) {
  .wb-catalogue-aside {
    position: static;
  }
}

.wb-aside-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 0.65rem;
  color: var(--text);
}

.wb-aside-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0 0 1rem;
  line-height: 1.5;
}

.wb-pdf-btn {
  width: 100%;
  margin-bottom: 0.65rem;
}

.wb-catalogue-aside .btn-wa {
  width: 100%;
}

.wb-aside-foot {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 1rem 0 0;
  line-height: 1.45;
}

.floating-wa {
  position: fixed;
  bottom: max(1.25rem, env(safe-area-inset-bottom, 0px));
  right: max(1.25rem, env(safe-area-inset-right, 0px));
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.floating-wa:hover {
  transform: scale(1.06);
  text-decoration: none;
  box-shadow: 0 10px 32px rgba(37, 211, 102, 0.55);
}

.floating-wa svg {
  width: 28px;
  height: 28px;
}
