:root {
  --palcor-ink: #10202d;
  --palcor-ink-soft: #2a3b48;
  --palcor-steel: #647481;
  --palcor-paper: #f5f7f8;
  --palcor-white: #ffffff;
  --palcor-line: #dce4e8;
  --palcor-cyan: #43c5ce;
  --palcor-green: #62ce77;
  --palcor-terracotta: #c4693a;
  --palcor-terracotta-dark: #a85528;
  --palcor-orange: var(--palcor-terracotta);
  --palcor-orange-dark: var(--palcor-terracotta-dark);
  --palcor-gold: #f4b41f;
  --palcor-shadow: 0 24px 60px rgba(16, 32, 45, 0.12);
  --palcor-shadow-soft: 0 12px 34px rgba(16, 32, 45, 0.08);
  --palcor-radius: 12px;
  --palcor-radius-lg: 22px;
  --palcor-topbar-height: 34px;
  --palcor-nav-height: 78px;
  --palcor-header-height: calc(var(--palcor-topbar-height) + var(--palcor-nav-height));
  --palcor-glass-blur: blur(20px) saturate(1.45);
  --palcor-glass-blur-strong: blur(28px) saturate(1.55);
  --palcor-glass-blur-light: blur(12px) saturate(1.35);
  --palcor-glass-surface: rgba(255, 255, 255, 0.52);
  --palcor-glass-surface-strong: rgba(255, 255, 255, 0.72);
  --palcor-glass-surface-solid: rgba(255, 255, 255, 0.86);
  --palcor-glass-border: rgba(255, 255, 255, 0.58);
  --palcor-glass-border-soft: rgba(220, 228, 232, 0.62);
  --palcor-glass-highlight: inset 0 1px 0 rgba(255, 255, 255, 0.78);
  --palcor-glass-shadow: 0 8px 32px rgba(16, 32, 45, 0.07);
  --palcor-glass-shadow-hover: 0 18px 44px rgba(16, 32, 45, 0.11);
  --palcor-glass-dark: rgba(16, 32, 45, 0.58);
  --palcor-glass-dark-border: rgba(255, 255, 255, 0.14);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--palcor-header-height);
  background: var(--palcor-white);
}

body {
  min-height: 100vh;
  color: var(--palcor-ink);
  background:
    radial-gradient(circle at 8% 0%, rgba(67, 197, 206, 0.07), transparent 26rem),
    radial-gradient(circle at 92% 6%, rgba(242, 138, 36, 0.06), transparent 22rem),
    radial-gradient(circle at 50% 100%, rgba(98, 206, 119, 0.04), transparent 30rem),
    var(--palcor-white);
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: clip;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body,
button,
input,
select,
textarea {
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: inherit;
}

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

.title,
.subtitle,
.content h1,
.content h2,
.content h3,
.content h4 {
  color: var(--palcor-ink);
  letter-spacing: 0;
}

.title {
  font-weight: 800;
}

.section {
  padding-block: 5.5rem;
}

.section.is-compact {
  padding-block: 3.75rem;
}

.section.is-paper {
  background:
    radial-gradient(circle at 14% 0%, rgba(67, 197, 206, 0.05), transparent 24rem),
    radial-gradient(circle at 86% 100%, rgba(242, 138, 36, 0.04), transparent 20rem),
    var(--palcor-paper);
}

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

.section.is-ink .title,
.section.is-ink .subtitle,
.section.is-ink .content,
.section.is-ink .content h2,
.section.is-ink .content h3 {
  color: var(--palcor-white);
}

.container.is-wide {
  width: min(100% - 2rem, 1380px);
  max-width: 1380px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1rem;
  color: var(--palcor-orange);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.eyebrow::before {
  width: 28px;
  height: 2px;
  background: currentColor;
  content: "";
}

.section-heading {
  max-width: 720px;
  margin-bottom: 2.75rem;
}

.section-heading .title {
  margin-bottom: 1rem;
  font-size: 2.45rem;
  line-height: 1.15;
}

.section-heading .subtitle {
  max-width: 650px;
  color: var(--palcor-steel);
  font-size: 1.05rem;
  line-height: 1.75;
}

.button {
  min-height: 44px;
  border-radius: var(--palcor-radius);
  font-weight: 800;
  letter-spacing: 0;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.button .icon {
  width: 1.1rem;
  height: 1.1rem;
}

.button.is-palcor {
  color: var(--palcor-white);
  background: var(--palcor-orange);
  border-color: var(--palcor-orange);
}

.button.is-palcor:hover,
.button.is-palcor:focus-visible {
  color: var(--palcor-white);
  background: var(--palcor-orange-dark);
  border-color: var(--palcor-orange-dark);
  box-shadow: 0 10px 22px rgba(242, 138, 36, 0.28);
  transform: translateY(-2px);
}

.button.is-ink {
  color: var(--palcor-white);
  background: var(--palcor-ink);
  border-color: var(--palcor-ink);
}

.button.is-ink:hover,
.button.is-ink:focus-visible {
  color: var(--palcor-white);
  background: var(--palcor-ink-soft);
  border-color: var(--palcor-ink-soft);
  transform: translateY(-2px);
}

.button.is-outline-light {
  color: var(--palcor-white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.58);
}

.button.is-outline-light:hover,
.button.is-outline-light:focus-visible {
  color: var(--palcor-ink);
  background: var(--palcor-white);
  border-color: var(--palcor-white);
  transform: translateY(-2px);
}

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

.icon-text .icon {
  color: var(--palcor-orange);
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  isolation: isolate;
}

main {
  padding-top: var(--palcor-header-height);
}

.top-bar {
  position: relative;
  z-index: 30;
  overflow: visible;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  background: var(--palcor-ink);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.top-bar::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(67, 197, 206, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(67, 197, 206, 0.07) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
  pointer-events: none;
  content: "";
}

.top-bar .container.is-wide {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: var(--palcor-topbar-height);
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.top-bar__contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.55rem;
}

.top-bar__contact > span:first-child {
  display: inline-flex;
  align-items: center;
  color: var(--palcor-cyan);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.top-bar__contact > span:first-child::before {
  width: 6px;
  height: 6px;
  margin-right: 0.45rem;
  border-radius: 50%;
  background: var(--palcor-green);
  box-shadow: 0 0 10px rgba(98, 206, 119, 0.75);
  animation: topbar-pulse 2.4s ease-in-out infinite;
  content: "";
}

.top-bar__contact a {
  color: rgba(255, 255, 255, 0.92);
  transition: color 180ms ease, text-shadow 180ms ease;
}

.top-bar__contact a:hover,
.top-bar__contact a:focus-visible {
  color: var(--palcor-white);
}

.top-bar__sep {
  color: rgba(67, 197, 206, 0.35);
  user-select: none;
}

.top-bar__social {
  position: relative;
  z-index: 4;
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 0.65rem;
}

.top-bar__social a {
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(67, 197, 206, 0.34);
  border-radius: 50%;
  color: var(--palcor-cyan);
  background: rgba(67, 197, 206, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 14px rgba(67, 197, 206, 0.14);
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.top-bar__social a:hover,
.top-bar__social a:focus-visible {
  color: var(--palcor-white);
  background: rgba(196, 105, 58, 0.2);
  border-color: rgba(196, 105, 58, 0.5);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 0 16px rgba(196, 105, 58, 0.24);
  transform: translateY(-1px);
}

.top-bar__social svg {
  width: 14px;
  height: 14px;
}

.site-navbar {
  position: relative;
  z-index: 20;
  min-height: var(--palcor-nav-height);
  background: var(--palcor-white);
  border-bottom: 1px solid rgba(220, 228, 232, 0.72);
  box-shadow: 0 1px 12px rgba(16, 32, 45, 0.04);
  transition:
    background-color 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.site-navbar > .container.is-wide {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: var(--palcor-nav-height);
}

.site-navbar .navbar-brand {
  flex-shrink: 0;
}

.site-navbar .navbar-menu {
  flex: 1;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

@media (min-width: 1024px) {
  .site-navbar .navbar-menu {
    display: flex;
    flex: 1;
    justify-content: flex-end;
    align-items: center;
  }

  .site-navbar .navbar-brand,
  .site-navbar .navbar-start,
  .site-navbar .navbar-end {
    align-items: center;
  }

  .site-navbar .navbar-start {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    display: inline-flex;
    flex: none;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
    width: fit-content;
    height: fit-content;
    max-width: fit-content;
    padding: 5px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    background: linear-gradient(
      180deg,
      #d47a48 0%,
      var(--palcor-terracotta) 48%,
      var(--palcor-terracotta-dark) 100%
    );
    box-shadow:
      0 6px 24px rgba(196, 105, 58, 0.32),
      inset 0 1px 0 rgba(255, 255, 255, 0.22);
    transform: translate(-50%, -50%);
  }

  .site-navbar .navbar-end {
    flex-shrink: 0;
    margin-inline-start: auto;
  }

  .site-navbar .navbar-start > .navbar-item {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0.48rem 1.05rem;
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.96);
    font-size: 0.84rem;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.01em;
    text-transform: none;
    transition:
      color 180ms ease,
      background-color 180ms ease,
      box-shadow 180ms ease;
  }

  .site-navbar .navbar-start > .navbar-item:hover,
  .site-navbar .navbar-start > .navbar-item:focus-visible {
    color: var(--palcor-white);
    background: rgba(255, 255, 255, 0.14);
    box-shadow: none;
    transform: none;
  }

  .site-navbar .navbar-start > .navbar-item.is-active {
    color: var(--palcor-terracotta);
    background: var(--palcor-white);
    box-shadow:
      0 2px 10px rgba(16, 32, 45, 0.14),
      inset 0 1px 0 rgba(255, 255, 255, 1);
  }

  .site-navbar .navbar-start > .navbar-item.is-active:hover,
  .site-navbar .navbar-start > .navbar-item.is-active:focus-visible {
    color: var(--palcor-terracotta-dark);
    background: var(--palcor-white);
    transform: none;
  }

  .site-navbar .navbar-end .button.is-ink {
    min-height: 42px;
    padding-inline: 1.2rem;
    border-radius: 10px;
    font-size: 0.84rem;
    font-weight: 700;
    box-shadow: 0 4px 16px rgba(16, 32, 45, 0.2);
  }

  .site-navbar .navbar-end .button.is-ink:hover,
  .site-navbar .navbar-end .button.is-ink:focus-visible {
    box-shadow: 0 6px 20px rgba(16, 32, 45, 0.26);
  }
}

.site-navbar.is-scrolled {
  background: var(--palcor-white);
  border-bottom-color: rgba(220, 228, 232, 0.9);
  box-shadow: 0 4px 20px rgba(16, 32, 45, 0.07);
}

.site-navbar .navbar-brand,
.site-navbar .navbar-menu,
.site-navbar .navbar-start,
.site-navbar .navbar-end {
  align-items: stretch;
}

.site-navbar .navbar-item {
  min-height: var(--palcor-nav-height);
  color: var(--palcor-ink-soft);
  font-size: 0.92rem;
  font-weight: 700;
}

.site-navbar .navbar-item:hover,
.site-navbar .navbar-item:focus-visible,
.site-navbar .navbar-item.is-active {
  color: var(--palcor-orange);
  background: transparent;
}

.site-navbar .navbar-item.is-active {
  box-shadow: inset 0 -3px 0 var(--palcor-orange);
}

@media (min-width: 1024px) {
  .site-navbar .navbar-start > .navbar-item.is-active {
    box-shadow:
      0 2px 10px rgba(16, 32, 45, 0.14),
      inset 0 1px 0 rgba(255, 255, 255, 1);
  }
}

.site-navbar .navbar-end .navbar-item {
  padding-inline-end: 0;
}

.site-navbar .navbar-burger {
  width: var(--palcor-nav-height);
  height: var(--palcor-nav-height);
  color: var(--palcor-ink);
  margin-block: 0;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  min-height: var(--palcor-nav-height);
  color: var(--palcor-ink);
  font-size: 1.18rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
}

@media (max-width: 1023px) {
  .brand-lockup {
    min-height: 0;
  }
}

.brand-lockup:hover {
  color: var(--palcor-ink);
}

.brand-mark {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

@keyframes topbar-pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.55;
    transform: scale(0.88);
  }
}

@keyframes topbar-scan {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(360%);
  }
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 0.22rem;
}

.brand-copy small {
  color: var(--palcor-steel);
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2000;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--palcor-orange), var(--palcor-gold), var(--palcor-green));
  transform: scaleX(0);
  transform-origin: left center;
  pointer-events: none;
}

.hero-corporate {
  position: relative;
  display: flex;
  min-height: 580px;
  height: calc(100svh - var(--palcor-header-height));
  max-height: 740px;
  align-items: center;
  overflow: hidden;
  color: var(--palcor-white);
  background: var(--palcor-ink);
  isolation: isolate;
}

.hero-corporate::before,
.hero-corporate::after {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  content: "";
}

.hero-corporate::before {
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(90deg, transparent 8%, #000 62%, #000);
  -webkit-mask-image: linear-gradient(90deg, transparent 8%, #000 62%, #000);
}

.hero-corporate::after {
  top: -18%;
  right: -8%;
  width: 48vw;
  height: 48vw;
  max-width: 720px;
  max-height: 720px;
  background: radial-gradient(circle, rgba(67, 197, 206, 0.18), transparent 65%);
  filter: blur(10px);
}

.hero-corporate__swiper {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-corporate__swiper .swiper-slide {
  position: relative;
  overflow: hidden;
}

.hero-corporate__image,
.hero-corporate__shade,
.hero-corporate__canvas {
  position: absolute;
  inset: 0;
}

.hero-corporate__pagination {
  position: absolute;
  z-index: 4;
  bottom: 1.5rem !important;
  left: max(1rem, calc((100vw - 1380px) / 2)) !important;
  width: auto !important;
}

.hero-corporate__pagination .swiper-pagination-bullet {
  width: 0.55rem;
  height: 0.55rem;
  background: rgba(255, 255, 255, 0.42);
  opacity: 1;
  transition: transform 220ms ease, background-color 220ms ease;
}

.hero-corporate__pagination .swiper-pagination-bullet-active {
  background: var(--palcor-gold);
  transform: scale(1.2);
}

.hero-corporate__image {
  width: 100%;
  height: 114%;
  top: -7%;
  object-fit: cover;
  object-position: center 70%;
  filter: saturate(0.88) contrast(1.04);
}

.hero-corporate__image--construction {
  object-position: center 58%;
}

.hero-corporate__shade {
  background:
    linear-gradient(90deg, rgba(8, 18, 27, 0.94) 0%, rgba(8, 18, 27, 0.8) 46%, rgba(8, 18, 27, 0.38) 100%),
    linear-gradient(0deg, rgba(8, 18, 27, 0.6), transparent 55%);
}

.hero-corporate__canvas {
  z-index: 2;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0;
  transition: opacity 800ms ease;
}

.hero-corporate__canvas.is-ready {
  opacity: 0.62;
}

.hero-corporate .hero-body {
  position: relative;
  z-index: 3;
  width: 100%;
}

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

.hero-copy .eyebrow {
  color: var(--palcor-gold);
}

.hero-copy .title {
  max-width: 760px;
  margin-bottom: 1.4rem;
  color: var(--palcor-white);
  font-size: clamp(3.25rem, 5vw, 4.8rem);
  line-height: 1.03;
  text-wrap: balance;
  text-shadow: 0 12px 36px rgba(0, 0, 0, 0.18);
}

.hero-copy .subtitle {
  max-width: 680px;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.15rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-meta {
  position: absolute;
  z-index: 3;
  right: max(1rem, calc((100vw - 1380px) / 2));
  bottom: 1.5rem;
  display: flex;
  gap: 0.8rem;
}

.hero-meta__item {
  width: 152px;
  padding: 0.8rem 0.95rem;
  color: var(--palcor-white);
  background: var(--palcor-glass-dark);
  border: 1px solid var(--palcor-glass-dark-border);
  border-left: 3px solid var(--palcor-cyan);
  border-radius: var(--palcor-radius);
  box-shadow: var(--palcor-glass-shadow), var(--palcor-glass-highlight);
  backdrop-filter: var(--palcor-glass-blur);
  -webkit-backdrop-filter: var(--palcor-glass-blur);
}

.hero-meta__item:nth-child(2) {
  border-left-color: var(--palcor-green);
}

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

.hero-meta__item strong {
  font-size: 1.15rem;
}

.hero-meta__item span {
  margin-top: 0.1rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.metric-band {
  position: relative;
  z-index: 5;
  padding-block: 1.8rem;
  background: var(--palcor-glass-surface-strong);
  border-bottom: 1px solid var(--palcor-glass-border-soft);
  box-shadow: var(--palcor-glass-shadow), var(--palcor-glass-highlight);
  backdrop-filter: var(--palcor-glass-blur);
  -webkit-backdrop-filter: var(--palcor-glass-blur);
}

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

.metric-grid--six {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  align-items: center;
}

.metric-band:has(.metric-grid--six) {
  padding-block: 0.75rem;
}

.metric-grid--six .metric-item {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.35rem;
  min-width: 0;
  padding: 0.25rem 0.55rem;
  border-top: 0;
  margin-top: 0;
  border-right: 1px solid var(--palcor-line);
}

.metric-grid--six .metric-item:nth-child(n + 4) {
  margin-top: 0;
  padding-top: 0.25rem;
  border-top: 0;
}

.metric-grid--six .metric-item:last-child {
  border-right: 0;
}

.metric-grid--six .metric-item__value {
  display: inline;
  font-size: 1.05rem;
  line-height: 1;
}

.metric-grid--six .metric-item__label {
  display: inline;
  margin-top: 0;
  font-size: 0.62rem;
  line-height: 1.2;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.metric-item {
  min-width: 0;
  padding: 0.45rem 1rem;
  border-right: 1px solid var(--palcor-line);
}

.metric-grid:not(.metric-grid--six) .metric-item:last-child {
  border-right: 0;
}

.metric-item__value {
  display: block;
  color: var(--palcor-ink);
  font-size: 2.15rem;
  font-weight: 900;
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
}

.metric-item__label {
  display: block;
  margin-top: 0.4rem;
  color: var(--palcor-steel);
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.metric-item__value svg {
  width: 1.65rem;
  height: 1.65rem;
  color: var(--palcor-orange);
}

.split-media {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  gap: 4.5rem;
  align-items: center;
}

.split-media.is-reversed {
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1fr);
}

.split-media__visual {
  position: relative;
  min-height: 430px;
  border-radius: var(--palcor-radius-lg);
}

.split-media__visual img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: contain;
  border: 1px solid var(--palcor-glass-border-soft);
  border-radius: var(--palcor-radius-lg);
  box-shadow: var(--palcor-glass-shadow), var(--palcor-glass-highlight);
}

.split-media__visual.is-cover img {
  object-fit: cover;
}

.split-media__visual.is-diagram {
  min-height: 0;
  padding: 1.15rem 1.25rem;
  background:
    radial-gradient(circle at 72% 18%, rgba(67, 197, 206, 0.1), transparent 46%),
    var(--palcor-glass-surface-solid);
  border: 1px solid var(--palcor-glass-border-soft);
  box-shadow: var(--palcor-glass-shadow), var(--palcor-glass-highlight);
  backdrop-filter: var(--palcor-glass-blur);
  -webkit-backdrop-filter: var(--palcor-glass-blur);
}

.split-media__visual.is-diagram img {
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 808 / 468;
  object-fit: contain;
  border-radius: calc(var(--palcor-radius-lg) - 4px);
}

.split-media__visual.is-diagram::after {
  right: -0.85rem;
  bottom: -0.85rem;
  width: 54%;
  height: 54%;
}

.split-media__visual::after {
  position: absolute;
  right: -1.25rem;
  bottom: -1.25rem;
  z-index: -1;
  width: 62%;
  height: 62%;
  background:
    linear-gradient(135deg, rgba(67, 197, 206, 0.13), rgba(98, 206, 119, 0.08)),
    var(--palcor-paper);
  border: 1px solid var(--palcor-line);
  border-radius: var(--palcor-radius-lg);
  content: "";
}

.split-media__copy .title {
  margin-bottom: 1.25rem;
  font-size: 2.65rem;
  line-height: 1.14;
}

.split-media__copy .content {
  color: var(--palcor-steel);
  font-size: 1rem;
}

.split-media__copy .content p:not(:last-child) {
  margin-bottom: 1.1rem;
}

.feature-list {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.6rem;
}

.feature-list__item {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 0.85rem;
  align-items: start;
  color: var(--palcor-ink-soft);
}

.feature-list__icon {
  display: grid;
  width: 34px;
  height: 34px;
  color: var(--palcor-orange);
  background: rgba(255, 247, 239, 0.72);
  border: 1px solid rgba(246, 212, 181, 0.65);
  border-radius: 50%;
  box-shadow: var(--palcor-glass-highlight);
  backdrop-filter: var(--palcor-glass-blur-light);
  -webkit-backdrop-filter: var(--palcor-glass-blur-light);
  place-items: center;
}

.feature-list__icon svg {
  width: 16px;
  height: 16px;
}

.feature-list__item strong {
  display: block;
  margin-bottom: 0.1rem;
  color: var(--palcor-ink);
}

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

.equipment-card {
  position: relative;
  min-height: 410px;
  overflow: hidden;
  background: var(--palcor-glass-surface-strong);
  border: 1px solid var(--palcor-glass-border-soft);
  border-radius: var(--palcor-radius-lg);
  box-shadow: var(--palcor-glass-shadow), var(--palcor-glass-highlight);
  backdrop-filter: var(--palcor-glass-blur);
  -webkit-backdrop-filter: var(--palcor-glass-blur);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
  transform-style: preserve-3d;
  will-change: transform;
}

.equipment-card:hover {
  border-color: rgba(67, 197, 206, 0.35);
  box-shadow: var(--palcor-glass-shadow-hover), var(--palcor-glass-highlight);
}

.equipment-card__visual {
  display: grid;
  height: 220px;
  overflow: hidden;
  background: var(--palcor-paper);
  place-items: center;
}

.tilt-card {
  --pointer-x: 50%;
  --pointer-y: 50%;
  position: relative;
  transform-style: preserve-3d;
  will-change: transform;
}

.tilt-card::after {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: radial-gradient(
    circle at var(--pointer-x) var(--pointer-y),
    rgba(255, 255, 255, 0.24),
    transparent 32%
  );
  border-radius: inherit;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
  content: "";
}

.tilt-card:hover::after {
  opacity: 1;
}

.equipment-card__visual img {
  width: 100%;
  height: 100%;
  padding: 1.3rem;
  object-fit: contain;
  transition: transform 300ms ease;
}

.equipment-card:hover .equipment-card__visual img {
  transform: scale(1.045);
}

.equipment-card__body {
  padding: 1.35rem;
}

.equipment-card__body .title {
  margin-bottom: 0.65rem;
  font-size: 1.2rem;
}

.equipment-card__body p {
  color: var(--palcor-steel);
  font-size: 0.88rem;
  line-height: 1.65;
}

.equipment-card__accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--palcor-green);
}

.equipment-card:nth-child(2) .equipment-card__accent {
  background: var(--palcor-orange);
}

.equipment-card:nth-child(3) .equipment-card__accent {
  background: var(--palcor-cyan);
}

.equipment-card:nth-child(4) .equipment-card__accent {
  background: var(--palcor-gold);
}

.equipment-card__count {
  display: inline-flex;
  margin-top: 1rem;
  color: var(--palcor-ink);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.cycle-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  counter-reset: cycle;
}

.cycle-step {
  position: relative;
  min-height: 210px;
  padding: 1.4rem;
  background: var(--palcor-glass-surface-strong);
  border: 1px solid var(--palcor-glass-border-soft);
  border-top: 3px solid var(--palcor-orange);
  border-radius: var(--palcor-radius-lg);
  box-shadow: var(--palcor-glass-shadow), var(--palcor-glass-highlight);
  backdrop-filter: var(--palcor-glass-blur);
  -webkit-backdrop-filter: var(--palcor-glass-blur);
  counter-increment: cycle;
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.cycle-step:hover {
  box-shadow: var(--palcor-glass-shadow-hover), var(--palcor-glass-highlight);
  transform: translateY(-3px);
}

.cycle-step:nth-child(2) {
  border-top-color: var(--palcor-green);
}

.cycle-step:nth-child(3) {
  border-top-color: var(--palcor-cyan);
}

.cycle-step:nth-child(4) {
  border-top-color: var(--palcor-gold);
}

.cycle-step::before {
  display: grid;
  width: 34px;
  height: 34px;
  margin-bottom: 1.1rem;
  color: var(--palcor-white);
  background: var(--palcor-ink);
  border-radius: 50%;
  content: counter(cycle);
  font-size: 0.82rem;
  font-weight: 900;
  place-items: center;
}

.cycle-step .title {
  margin-bottom: 0.65rem;
  font-size: 1.05rem;
}

.cycle-step p {
  color: var(--palcor-steel);
  font-size: 0.88rem;
  line-height: 1.65;
}

.location-strip {
  display: grid;
  grid-template-columns: 1.15fr repeat(4, minmax(0, 1fr));
  border: 1px solid var(--palcor-line);
}

.location-strip__lead,
.location-strip__item {
  min-height: 148px;
  padding: 1.3rem;
}

.location-strip__lead {
  color: var(--palcor-white);
  background: var(--palcor-ink);
}

.location-strip__lead .title {
  margin-top: 0.7rem;
  color: var(--palcor-white);
  font-size: 1.25rem;
}

.location-strip__item {
  background: var(--palcor-white);
  border-left: 1px solid var(--palcor-line);
}

.location-strip__item strong,
.location-strip__item span {
  display: block;
}

.location-strip__item strong {
  margin-top: 0.8rem;
  color: var(--palcor-ink);
  font-size: 0.9rem;
}

.location-strip__item span {
  margin-top: 0.3rem;
  color: var(--palcor-steel);
  font-size: 0.78rem;
  line-height: 1.5;
}

.location-strip svg {
  width: 19px;
  height: 19px;
  color: var(--palcor-orange);
}

.footprint-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  min-height: 430px;
  overflow: hidden;
  color: var(--palcor-white);
  background:
    radial-gradient(circle at 80% 15%, rgba(67, 197, 206, 0.2), transparent 24rem),
    linear-gradient(135deg, rgba(13, 28, 40, 0.92), rgba(23, 45, 58, 0.88));
  border: 1px solid var(--palcor-glass-dark-border);
  border-radius: var(--palcor-radius-lg);
  box-shadow: var(--palcor-glass-shadow-hover), var(--palcor-glass-highlight);
  backdrop-filter: var(--palcor-glass-blur);
  -webkit-backdrop-filter: var(--palcor-glass-blur);
}

.footprint-panel__copy {
  position: relative;
  z-index: 2;
  padding: 3.2rem;
}

.footprint-panel__copy .title {
  max-width: 520px;
  margin-bottom: 1rem;
  color: var(--palcor-white);
  font-size: 2.35rem;
  line-height: 1.15;
}

.footprint-panel__copy p {
  max-width: 500px;
  color: rgba(255, 255, 255, 0.68);
}

.footprint-panel__map {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  align-content: center;
  padding: 3.2rem;
  overflow: hidden;
}

.footprint-panel__map::before {
  position: absolute;
  inset: 12%;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 34px 34px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  content: "";
}

.map-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px dashed rgba(67, 197, 206, 0.23);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.map-orbit--one {
  width: 58%;
  aspect-ratio: 1;
}

.map-orbit--two {
  width: 84%;
  aspect-ratio: 1;
  border-color: rgba(98, 206, 119, 0.17);
}

.location-chip {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 58px;
  gap: 0.65rem;
  align-items: center;
  padding: 0.8rem 0.9rem;
  color: rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--palcor-glass-dark-border);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.35;
  box-shadow: var(--palcor-glass-highlight);
  backdrop-filter: var(--palcor-glass-blur);
  -webkit-backdrop-filter: var(--palcor-glass-blur);
  transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.location-chip:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(67, 197, 206, 0.42);
  transform: translateY(-2px);
}

.location-chip svg {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  color: var(--palcor-orange);
}

.cta-band {
  padding-block: 4.25rem;
  color: var(--palcor-white);
  background:
    radial-gradient(circle at 85% 20%, rgba(67, 197, 206, 0.12), transparent 22rem),
    var(--palcor-ink);
}

.cta-band__inner {
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 2.5rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--palcor-radius-lg);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: var(--palcor-glass-blur);
  -webkit-backdrop-filter: var(--palcor-glass-blur);
}

.cta-band .title {
  max-width: 720px;
  margin-bottom: 0.8rem;
  color: var(--palcor-white);
  font-size: 2.15rem;
}

.cta-band p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.7);
}

.page-hero {
  position: relative;
  min-height: 410px;
  overflow: hidden;
  color: var(--palcor-white);
  background: var(--palcor-ink);
  isolation: isolate;
}

.page-hero__image,
.page-hero__shade,
.page-hero__canvas {
  position: absolute;
  inset: 0;
}

.page-hero__image {
  width: 100%;
  height: 112%;
  object-fit: cover;
  object-position: center;
  opacity: 0.48;
  filter: saturate(0.72) contrast(1.05);
  will-change: transform;
}

.page-hero__shade {
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(8, 18, 27, 0.94) 0%, rgba(8, 18, 27, 0.78) 54%, rgba(8, 18, 27, 0.35) 100%),
    linear-gradient(0deg, rgba(8, 18, 27, 0.55), transparent 62%);
}

.page-hero__canvas {
  z-index: 1;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 800ms ease;
}

.page-hero__canvas.is-ready {
  opacity: 0.48;
}

.page-hero::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(90deg, transparent 24%, #000 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 24%, #000 100%);
  pointer-events: none;
  content: "";
}

.page-hero .hero-body {
  position: relative;
  z-index: 3;
  display: flex;
  min-height: 410px;
  align-items: flex-end;
  padding-bottom: 4rem;
}

.page-hero .title {
  max-width: 760px;
  margin-bottom: 1rem;
  color: var(--palcor-white);
  font-size: 3.35rem;
  line-height: 1.08;
  text-wrap: balance;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.16);
}

.page-hero .subtitle {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
  line-height: 1.7;
}

.breadcrumb-band {
  padding-block: 0.9rem;
  background: var(--palcor-glass-surface);
  border-bottom: 1px solid var(--palcor-glass-border-soft);
  backdrop-filter: var(--palcor-glass-blur-light);
  -webkit-backdrop-filter: var(--palcor-glass-blur-light);
}

.breadcrumb a {
  color: var(--palcor-steel);
  font-weight: 700;
}

.breadcrumb li.is-active a {
  color: var(--palcor-orange);
}

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

.leadership-group + .leadership-group {
  margin-top: 2.4rem;
}

.leadership-group__title {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 1rem;
  color: var(--palcor-steel);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.leadership-group__title::after {
  flex: 1;
  height: 1px;
  background: var(--palcor-line);
  content: "";
}

.leader-card {
  display: flex;
  flex: 0 1 280px;
  width: min(100%, 280px);
  flex-direction: column;
  gap: 0.85rem;
  min-height: 156px;
  padding: 1.25rem;
  background: var(--palcor-glass-surface-strong);
  border: 1px solid var(--palcor-glass-border-soft);
  border-radius: var(--palcor-radius-lg);
  box-shadow: var(--palcor-glass-shadow), var(--palcor-glass-highlight);
  backdrop-filter: var(--palcor-glass-blur);
  -webkit-backdrop-filter: var(--palcor-glass-blur);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.leader-card__photo-wrap {
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid var(--palcor-line);
  border-radius: calc(var(--palcor-radius-lg) - 6px);
  background: var(--palcor-paper);
}

.leader-card__photo {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.leader-card__photo--placeholder {
  display: grid;
  place-items: center;
  color: var(--palcor-steel);
  font-weight: 900;
  letter-spacing: 0.08em;
  font-size: 1.1rem;
  background:
    radial-gradient(circle at 30% 20%, rgba(242, 138, 36, 0.12), transparent 55%),
    radial-gradient(circle at 70% 70%, rgba(67, 197, 206, 0.12), transparent 55%),
    var(--palcor-paper);
}

.leader-card__photo--placeholder span {
  display: inline-flex;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--palcor-line);
}

.leader-card:hover {
  border-color: rgba(67, 197, 206, 0.35);
  box-shadow: var(--palcor-glass-shadow-hover), var(--palcor-glass-highlight);
}

.leader-card__role {
  display: block;
  margin-bottom: 0.7rem;
  color: var(--palcor-orange);
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.leader-card .title {
  margin-bottom: 0;
  font-size: 1rem;
  line-height: 1.45;
}

.purpose-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  align-items: stretch;
}

.purpose-panel {
  height: 100%;
  padding: 2rem 2rem 2.1rem;
  background: var(--palcor-glass-surface-solid);
  border: 1px solid var(--palcor-glass-border-soft);
  border-left: 4px solid var(--palcor-orange);
  border-radius: var(--palcor-radius-lg);
  box-shadow: var(--palcor-glass-shadow), var(--palcor-glass-highlight);
  backdrop-filter: var(--palcor-glass-blur);
  -webkit-backdrop-filter: var(--palcor-glass-blur);
}

.purpose-panel__title {
  margin-bottom: 0.9rem;
  color: var(--palcor-ink);
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.2;
}

.purpose-panel p {
  margin: 0;
  color: var(--palcor-steel);
  font-size: 1rem;
  line-height: 1.75;
}

.profile-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 3.5rem;
}

.profile-fact {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 0.9rem;
  align-items: center;
  padding: 1.15rem;
  background: var(--palcor-glass-surface);
  border: 1px solid var(--palcor-glass-border-soft);
  border-radius: var(--palcor-radius-lg);
  box-shadow: var(--palcor-glass-highlight);
  backdrop-filter: var(--palcor-glass-blur-light);
  -webkit-backdrop-filter: var(--palcor-glass-blur-light);
}

.profile-fact__icon {
  display: grid;
  width: 44px;
  height: 44px;
  color: var(--palcor-orange);
  background: var(--palcor-white);
  border: 1px solid var(--palcor-line);
  border-radius: 50%;
  place-items: center;
}

.profile-fact__icon svg {
  width: 18px;
  height: 18px;
}

.profile-fact strong,
.profile-fact small {
  display: block;
}

.profile-fact strong {
  color: var(--palcor-ink);
  font-size: 0.9rem;
}

.profile-fact small {
  margin-top: 0.2rem;
  color: var(--palcor-steel);
  font-size: 0.72rem;
  line-height: 1.45;
}

.equipment-tabs {
  margin-bottom: 2.5rem;
  padding: 0.45rem;
  background:
    linear-gradient(135deg, rgba(242, 138, 36, 0.1), rgba(67, 197, 206, 0.06)),
    var(--palcor-glass-surface-solid);
  border: 1px solid rgba(242, 138, 36, 0.28);
  border-radius: var(--palcor-radius-lg);
  box-shadow: var(--palcor-glass-shadow), var(--palcor-glass-highlight);
  backdrop-filter: var(--palcor-glass-blur);
  -webkit-backdrop-filter: var(--palcor-glass-blur);
}

.profile-source-note {
  margin-top: 1rem;
  padding-left: 0.85rem;
  color: var(--palcor-steel);
  border-left: 2px solid var(--palcor-orange);
  font-size: 0.78rem;
  line-height: 1.55;
}

.equipment-tabs ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem;
  margin: 0;
  border-bottom: none;
}

.equipment-tabs li {
  flex: 0 1 auto;
  min-width: fit-content;
}

.equipment-tabs li a {
  display: flex;
  gap: 0.5rem;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.05rem 0.55rem 0.55rem;
  border: 1px solid transparent;
  border-bottom: none;
  border-radius: var(--palcor-radius);
  color: var(--palcor-ink-soft);
  font-size: 0.9rem;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
  transition:
    color 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.equipment-tabs__icon {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  color: var(--palcor-orange);
  background: rgba(242, 138, 36, 0.1);
  border: 1px solid rgba(242, 138, 36, 0.18);
  border-radius: 50%;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
  place-items: center;
  transition:
    color 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.equipment-tabs__icon svg {
  width: 15px;
  height: 15px;
  stroke-width: 2.15;
}

.equipment-tabs__label {
  padding-right: 0.35rem;
}

.equipment-tabs li a:hover,
.equipment-tabs li a:focus-visible {
  color: var(--palcor-ink);
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(242, 138, 36, 0.22);
}

.equipment-tabs li a:hover .equipment-tabs__icon,
.equipment-tabs li a:focus-visible .equipment-tabs__icon {
  background: rgba(242, 138, 36, 0.14);
  border-color: rgba(242, 138, 36, 0.28);
  transform: translateY(-1px);
}

.equipment-tabs li.is-active a {
  color: var(--palcor-white);
  background: linear-gradient(135deg, var(--palcor-orange) 0%, var(--palcor-orange-dark) 100%);
  border-color: transparent;
  box-shadow:
    0 4px 16px rgba(242, 138, 36, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.equipment-tabs li.is-active .equipment-tabs__icon {
  color: var(--palcor-white);
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.24);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.equipment-tabs li.is-active a:hover,
.equipment-tabs li.is-active a:focus-visible {
  color: var(--palcor-white);
  background: linear-gradient(135deg, var(--palcor-orange) 0%, var(--palcor-orange-dark) 100%);
}

.equipment-tabs li.is-active a:hover .equipment-tabs__icon,
.equipment-tabs li.is-active a:focus-visible .equipment-tabs__icon {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.3);
  transform: none;
}

@media (min-width: 768px) and (max-width: 1180px) {
  .equipment-tabs li a {
    padding: 0.5rem 0.85rem 0.5rem 0.45rem;
    font-size: 0.86rem;
  }

  .equipment-tabs__icon {
    width: 28px;
    height: 28px;
  }
}

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

.catalog-layout {
  display: grid;
  gap: 2rem;
}

.catalog-intro {
  display: grid;
  grid-template-columns: minmax(140px, 200px) minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1.35rem 1.5rem;
  background:
    linear-gradient(135deg, rgba(67, 197, 206, 0.08), rgba(242, 138, 36, 0.06)),
    var(--palcor-glass-surface-strong);
  border: 1px solid var(--palcor-glass-border-soft);
  border-radius: var(--palcor-radius-lg);
  box-shadow: var(--palcor-glass-shadow), var(--palcor-glass-highlight);
  backdrop-filter: var(--palcor-glass-blur);
  -webkit-backdrop-filter: var(--palcor-glass-blur);
}

.catalog-intro__visual {
  display: grid;
  min-height: 120px;
  overflow: hidden;
  background: var(--palcor-paper);
  border: 1px solid var(--palcor-line);
  border-radius: var(--palcor-radius);
  place-items: center;
}

.catalog-intro__visual img {
  width: 100%;
  height: 120px;
  padding: 0.75rem;
  object-fit: contain;
}

.catalog-intro .title {
  margin-bottom: 0.45rem;
  font-size: 1.45rem;
}

.catalog-intro p {
  color: var(--palcor-steel);
  font-size: 0.88rem;
  line-height: 1.6;
}

.product-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 1.15rem;
}

.product-card {
  overflow: hidden;
  background: var(--palcor-glass-surface-strong);
  border: 1px solid var(--palcor-glass-border-soft);
  border-radius: var(--palcor-radius-lg);
  box-shadow: var(--palcor-glass-shadow), var(--palcor-glass-highlight);
  backdrop-filter: var(--palcor-glass-blur);
  -webkit-backdrop-filter: var(--palcor-glass-blur);
  transition:
    transform 200ms ease,
    box-shadow 200ms ease,
    border-color 200ms ease;
}

.product-card:hover {
  border-color: rgba(67, 197, 206, 0.42);
  box-shadow: var(--palcor-glass-shadow-hover), var(--palcor-glass-highlight);
  transform: translateY(-3px);
}

.product-card__link {
  display: flex;
  height: 100%;
  flex-direction: column;
  color: inherit;
}

.product-card__visual {
  position: relative;
  display: grid;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 18%, rgba(67, 197, 206, 0.1), transparent 48%),
    var(--palcor-paper);
  place-items: center;
  cursor: zoom-in;
}

.product-card__visual::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(16, 32, 45, 0);
  transition: background 220ms ease;
  content: "";
  pointer-events: none;
}

.product-card__visual::after {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  z-index: 2;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: var(--palcor-white);
  background: rgba(16, 32, 45, 0.55);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 220ms ease, transform 220ms ease;
  content: "+";
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1;
  pointer-events: none;
}

.product-card:hover .product-card__visual::before {
  background: rgba(16, 32, 45, 0.08);
}

.product-card:hover .product-card__visual::after {
  opacity: 1;
  transform: scale(1);
}

.product-card__gallery {
  display: none;
}

.product-card__photo-count {
  position: absolute;
  bottom: 0.55rem;
  left: 0.55rem;
  z-index: 3;
  display: inline-flex;
  min-width: 1.35rem;
  min-height: 1.35rem;
  align-items: center;
  justify-content: center;
  padding: 0.1rem 0.4rem;
  color: var(--palcor-white);
  background: rgba(16, 32, 45, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  pointer-events: none;
}

.product-card__visual img {
  width: 100%;
  height: 100%;
  padding: 0.85rem;
  object-fit: contain;
  transition: transform 260ms ease;
}

.product-card:hover .product-card__visual img {
  transform: scale(1.04);
}

.product-card__visual--placeholder {
  color: var(--palcor-steel);
  background:
    linear-gradient(145deg, rgba(67, 197, 206, 0.1), rgba(242, 138, 36, 0.07)),
    var(--palcor-paper);
}

.product-card__visual--placeholder svg {
  width: 2.35rem;
  height: 2.35rem;
  opacity: 0.42;
}

.product-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0.45rem;
  padding: 1rem 1.05rem 1.1rem;
}

.product-card__name {
  color: var(--palcor-ink);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.35;
}

.product-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 0.65rem;
  margin-top: auto;
  color: var(--palcor-steel);
  font-size: 0.72rem;
  line-height: 1.45;
}

.product-card__meta span:last-child {
  color: var(--palcor-orange);
  font-weight: 800;
}

.product-card__cta {
  margin-top: 0.55rem;
  color: var(--palcor-orange);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-card__link:hover .product-card__cta,
.product-card__link:focus-visible .product-card__cta {
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

body.is-modal-open {
  overflow: hidden;
}

.product-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: grid;
  place-items: center;
  padding: 1.25rem;
}

.product-modal[hidden] {
  display: none;
}

.product-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(16, 32, 45, 0.55);
  backdrop-filter: var(--palcor-glass-blur-strong);
  -webkit-backdrop-filter: var(--palcor-glass-blur-strong);
  animation: product-modal-fade-in 240ms ease;
}

.product-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 920px);
  max-height: min(92vh, 760px);
  overflow: auto;
  background: var(--palcor-glass-surface-solid);
  border: 1px solid var(--palcor-glass-border);
  border-radius: var(--palcor-radius-lg);
  box-shadow: var(--palcor-glass-shadow-hover), var(--palcor-glass-highlight);
  backdrop-filter: var(--palcor-glass-blur-strong);
  -webkit-backdrop-filter: var(--palcor-glass-blur-strong);
  animation: product-modal-rise 280ms ease;
}

.product-modal__close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  z-index: 2;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--palcor-ink-soft);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--palcor-line);
  border-radius: 50%;
  cursor: pointer;
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    transform 180ms ease;
}

.product-modal__close:hover,
.product-modal__close:focus-visible {
  color: var(--palcor-ink);
  background: var(--palcor-white);
  border-color: rgba(67, 197, 206, 0.45);
  transform: scale(1.04);
}

.product-modal__close svg {
  width: 18px;
  height: 18px;
}

.product-modal__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
}

.product-modal__media {
  display: flex;
  min-height: 320px;
  flex-direction: column;
  background:
    radial-gradient(circle at 72% 18%, rgba(67, 197, 206, 0.12), transparent 46%),
    var(--palcor-paper);
  border-right: 1px solid var(--palcor-line);
}

.product-modal__gallery {
  display: flex;
  width: 100%;
  min-height: 320px;
  flex-direction: column;
}

.product-modal__stage {
  display: grid;
  flex: 1;
  min-height: 260px;
  place-items: center;
}

.product-modal__stage-image {
  width: 100%;
  max-height: min(52vh, 440px);
  padding: 2rem;
  object-fit: contain;
}

.product-modal__thumbs {
  display: flex;
  gap: 0.5rem;
  padding: 0.75rem 1rem 1rem;
  margin: 0;
  overflow-x: auto;
  list-style: none;
  border-top: 1px solid var(--palcor-line);
  background: rgba(255, 255, 255, 0.55);
  scrollbar-width: thin;
}

.product-modal__thumbs li {
  flex-shrink: 0;
}

.product-modal__thumb {
  display: grid;
  width: 68px;
  height: 68px;
  padding: 3px;
  background: var(--palcor-white);
  border: 2px solid transparent;
  border-radius: var(--palcor-radius);
  cursor: pointer;
  place-items: center;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.product-modal__thumb:hover,
.product-modal__thumb:focus-visible {
  border-color: rgba(67, 197, 206, 0.55);
  outline: none;
  transform: translateY(-1px);
}

.product-modal__thumb.is-active {
  border-color: var(--palcor-orange);
  box-shadow: 0 0 0 1px rgba(242, 138, 36, 0.28);
}

.product-modal__thumb img {
  width: 100%;
  height: 100%;
  border-radius: calc(var(--palcor-radius) - 3px);
  object-fit: cover;
}

.product-modal__placeholder {
  display: grid;
  gap: 0.85rem;
  place-items: center;
  padding: 2rem;
  color: var(--palcor-steel);
  text-align: center;
}

.product-modal__placeholder svg {
  width: 3rem;
  height: 3rem;
  opacity: 0.38;
}

.product-modal__placeholder span {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.product-modal__content {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 2rem 2rem 2.1rem;
}

.product-modal__eyebrow {
  color: var(--palcor-orange);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-modal__title {
  color: var(--palcor-ink);
  font-size: 1.55rem;
  font-weight: 800;
  line-height: 1.25;
}

.product-modal__location,
.product-modal__units {
  color: var(--palcor-steel);
  font-size: 0.88rem;
  line-height: 1.55;
}

.product-modal__units {
  color: var(--palcor-orange);
  font-weight: 800;
}

.product-modal__note {
  margin-top: 0.35rem;
  color: var(--palcor-steel);
  font-size: 0.84rem;
  line-height: 1.65;
}

.product-modal__action {
  width: fit-content;
  margin-top: auto;
}

@keyframes product-modal-fade-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes product-modal-rise {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

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

  .product-modal__media {
    min-height: 240px;
    border-right: 0;
    border-bottom: 1px solid var(--palcor-line);
  }

  .product-modal__stage-image {
    max-height: 280px;
    padding: 1.25rem;
  }

  .product-modal__thumb {
    width: 58px;
    height: 58px;
  }

  .product-modal__content {
    padding: 1.35rem 1.35rem 1.5rem;
  }

  .product-modal__title {
    font-size: 1.28rem;
  }

  .product-modal__action {
    width: 100%;
  }
}

.catalog-layout--legacy {
  display: grid;
  grid-template-columns: minmax(260px, 0.36fr) minmax(0, 1fr);
  gap: 3rem;
}

.catalog-summary {
  position: sticky;
  top: calc(var(--palcor-header-height) + 1.5rem);
  align-self: start;
}

.catalog-summary__visual {
  display: grid;
  min-height: 260px;
  margin-bottom: 1.5rem;
  background:
    radial-gradient(circle at 70% 20%, rgba(67, 197, 206, 0.1), transparent 45%),
    var(--palcor-paper);
  border: 1px solid var(--palcor-line);
  border-radius: var(--palcor-radius-lg);
  place-items: center;
}

.catalog-summary__visual img {
  width: 100%;
  height: 260px;
  padding: 1.5rem;
  object-fit: contain;
}

.catalog-summary .title {
  margin-bottom: 0.7rem;
  font-size: 1.65rem;
}

.catalog-summary p {
  color: var(--palcor-steel);
  font-size: 0.9rem;
}

.catalog-total {
  display: inline-flex;
  margin-top: 1rem;
  padding: 0.35rem 0.65rem;
  color: var(--palcor-ink);
  background: #fff5e8;
  border: 1px solid #f3d1a9;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.inventory-table {
  overflow-x: auto;
  background: var(--palcor-glass-surface-strong);
  border: 1px solid var(--palcor-glass-border-soft);
  border-radius: var(--palcor-radius-lg);
  box-shadow: var(--palcor-glass-shadow), var(--palcor-glass-highlight);
  backdrop-filter: var(--palcor-glass-blur);
  -webkit-backdrop-filter: var(--palcor-glass-blur);
}

.inventory-table .table {
  min-width: 720px;
  margin-bottom: 0;
  background: transparent;
}

.inventory-table .table th {
  padding: 0.9rem 1rem;
  color: var(--palcor-steel);
  background: var(--palcor-paper);
  border-bottom-color: var(--palcor-line);
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.inventory-table .table td {
  padding: 0.9rem 1rem;
  color: var(--palcor-ink-soft);
  border-bottom-color: var(--palcor-line);
  font-size: 0.87rem;
  vertical-align: middle;
}

.inventory-table .table tr:last-child td {
  border-bottom: 0;
}

.inventory-table .table td:last-child,
.inventory-table .table th:last-child {
  width: 90px;
  text-align: right;
}

.cycle-orbit {
  position: relative;
  display: grid;
  max-width: 980px;
  min-height: 560px;
  margin-inline: auto;
  place-items: center;
}

.cycle-orbit__center {
  z-index: 2;
  display: grid;
  width: 210px;
  height: 210px;
  padding: 1.5rem;
  color: var(--palcor-white);
  background: var(--palcor-glass-dark);
  border: 12px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  box-shadow: var(--palcor-glass-shadow-hover), var(--palcor-glass-highlight);
  text-align: center;
  backdrop-filter: var(--palcor-glass-blur);
  -webkit-backdrop-filter: var(--palcor-glass-blur);
  place-items: center;
  animation: orbit-center-float 6s ease-in-out infinite;
}

.cycle-orbit__center strong {
  display: block;
  font-size: 1.2rem;
  line-height: 1.35;
}

.cycle-orbit__center span {
  display: block;
  margin-top: 0.45rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.cycle-orbit::before {
  position: absolute;
  width: 470px;
  height: 470px;
  border: 1px dashed #c8d0d5;
  border-radius: 50%;
  content: "";
  animation: orbit-ring-spin 28s linear infinite;
}

.cycle-orbit__step {
  position: absolute;
  z-index: 3;
  width: 240px;
  min-height: 126px;
  padding: 1.15rem;
  background: var(--palcor-glass-surface-solid);
  border: 1px solid var(--palcor-glass-border-soft);
  border-radius: var(--palcor-radius-lg);
  box-shadow: var(--palcor-glass-shadow), var(--palcor-glass-highlight);
  backdrop-filter: var(--palcor-glass-blur);
  -webkit-backdrop-filter: var(--palcor-glass-blur);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.cycle-orbit__step strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--palcor-ink);
  font-size: 0.92rem;
}

.cycle-orbit__step p {
  color: var(--palcor-steel);
  font-size: 0.76rem;
  line-height: 1.55;
}

.cycle-orbit__step:nth-of-type(1) {
  top: 0;
  left: 50%;
  border-top: 3px solid var(--palcor-orange);
  transform: translateX(-50%);
}

.cycle-orbit__step:nth-of-type(2) {
  top: 50%;
  right: 0;
  border-top: 3px solid var(--palcor-green);
  transform: translateY(-50%);
}

.cycle-orbit__step:nth-of-type(3) {
  bottom: 0;
  left: 50%;
  border-top: 3px solid var(--palcor-cyan);
  transform: translateX(-50%);
}

.cycle-orbit__step:nth-of-type(4) {
  top: 50%;
  left: 0;
  border-top: 3px solid var(--palcor-gold);
  transform: translateY(-50%);
}

.cycle-orbit__step:hover {
  box-shadow: var(--palcor-glass-shadow-hover), var(--palcor-glass-highlight);
}

.cycle-orbit__step:nth-of-type(1):hover,
.cycle-orbit__step:nth-of-type(3):hover {
  transform: translateX(-50%) translateY(-3px);
}

.cycle-orbit__step:nth-of-type(2):hover,
.cycle-orbit__step:nth-of-type(4):hover {
  transform: translateY(-50%) translateX(-3px);
}

@keyframes orbit-ring-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes orbit-center-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-7px);
  }
}

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

.responsibility-panel {
  padding: 1.75rem;
  background: var(--palcor-glass-surface-strong);
  border: 1px solid var(--palcor-glass-border-soft);
  border-radius: var(--palcor-radius-lg);
  box-shadow: var(--palcor-glass-shadow), var(--palcor-glass-highlight);
  backdrop-filter: var(--palcor-glass-blur);
  -webkit-backdrop-filter: var(--palcor-glass-blur);
}

.responsibility-panel .title {
  margin-bottom: 1.25rem;
  font-size: 1.25rem;
}

.responsibility-panel ul {
  display: grid;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.responsibility-panel li {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 0.65rem;
  color: var(--palcor-steel);
  font-size: 0.88rem;
}

.responsibility-panel li svg {
  width: 16px;
  height: 16px;
  margin-top: 0.3rem;
  color: var(--palcor-orange);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: 4rem;
}

.contact-details {
  display: grid;
  gap: 1.25rem;
}

.contact-detail {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 0.9rem;
  align-items: start;
}

.contact-detail__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  color: var(--palcor-orange);
  background: rgba(255, 245, 232, 0.75);
  border: 1px solid rgba(243, 209, 169, 0.65);
  border-radius: 50%;
  box-shadow: var(--palcor-glass-highlight);
  backdrop-filter: var(--palcor-glass-blur-light);
  -webkit-backdrop-filter: var(--palcor-glass-blur-light);
}

.contact-detail__icon svg {
  display: block;
  width: 18px;
  height: 18px;
}

.contact-detail strong,
.contact-detail a,
.contact-detail > span:not(.contact-detail__icon),
.contact-detail > span:not(.contact-detail__icon) span {
  display: block;
}

.contact-detail strong {
  margin-bottom: 0.2rem;
  color: var(--palcor-ink);
  font-size: 0.85rem;
}

.contact-detail span,
.contact-detail a {
  color: var(--palcor-steel);
  font-size: 0.9rem;
  line-height: 1.6;
}

.contact-form {
  padding: 2rem;
  background: var(--palcor-glass-surface-strong);
  border: 1px solid var(--palcor-glass-border-soft);
  border-radius: var(--palcor-radius-lg);
  box-shadow: var(--palcor-glass-shadow), var(--palcor-glass-highlight);
  backdrop-filter: var(--palcor-glass-blur);
  -webkit-backdrop-filter: var(--palcor-glass-blur);
}

.contact-form .label {
  color: var(--palcor-ink-soft);
  font-size: 0.78rem;
  font-weight: 800;
}

.contact-form .input,
.contact-form .textarea,
.contact-form .select select {
  color: var(--palcor-ink);
  background: rgba(255, 255, 255, 0.72);
  border-color: var(--palcor-glass-border-soft);
  border-radius: var(--palcor-radius);
  box-shadow: var(--palcor-glass-highlight);
  backdrop-filter: var(--palcor-glass-blur-light);
  -webkit-backdrop-filter: var(--palcor-glass-blur-light);
}

.contact-form .input:focus,
.contact-form .textarea:focus,
.contact-form .select select:focus {
  border-color: var(--palcor-orange);
  box-shadow: 0 0 0 1px var(--palcor-orange);
}

.contact-form .textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-map {
  margin-top: 3.5rem;
  padding-top: 3rem;
  border-top: 1px solid var(--palcor-line);
}

.contact-map__header {
  max-width: 720px;
  margin-bottom: 1.5rem;
}

.contact-map__header .title {
  margin-bottom: 0.65rem;
  font-size: 1.75rem;
}

.contact-map__header p {
  color: var(--palcor-steel);
  font-size: 0.92rem;
  line-height: 1.65;
}

.contact-map__frame {
  overflow: hidden;
  background: var(--palcor-glass-surface);
  border: 1px solid var(--palcor-glass-border-soft);
  border-radius: var(--palcor-radius-lg);
  box-shadow: var(--palcor-glass-shadow), var(--palcor-glass-highlight);
  backdrop-filter: var(--palcor-glass-blur-light);
  -webkit-backdrop-filter: var(--palcor-glass-blur-light);
}

.contact-map__frame iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
}

.contact-map__footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1rem;
  margin-top: 1rem;
}

.contact-map__address {
  color: var(--palcor-steel);
  font-size: 0.88rem;
}

.contact-map__link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--palcor-orange);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.contact-map__link:hover,
.contact-map__link:focus-visible {
  color: var(--palcor-orange-dark);
}

.contact-map__link svg {
  width: 15px;
  height: 15px;
}

.site-footer {
  padding-top: 4rem;
  color: rgba(255, 255, 255, 0.72);
  background: #11191f;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 0.7fr 0.7fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}

.site-footer .brand-copy small {
  color: rgba(255, 255, 255, 0.86);
}

.footer-brand p {
  max-width: 360px;
  margin-top: 1rem;
  font-size: 0.84rem;
  line-height: 1.7;
}

.footer-title {
  margin-bottom: 1rem;
  color: var(--palcor-white);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.footer-links {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.84rem;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--palcor-orange);
}

.footer-bottom {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  padding-block: 1.15rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.75rem;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.72);
  transition: color 180ms ease;
}

.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  color: var(--palcor-orange);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal[data-delay="1"] {
  transition-delay: 90ms;
}

.reveal[data-delay="2"] {
  transition-delay: 180ms;
}

.reveal[data-delay="3"] {
  transition-delay: 270ms;
}

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

@media (max-width: 1023px) {
  :root {
    --palcor-nav-height: 58px;
    --palcor-header-height: calc(var(--palcor-topbar-height) + var(--palcor-nav-height));
  }

  .site-navbar > .container.is-wide {
    flex-wrap: wrap;
    align-items: center;
  }

  .site-navbar .navbar-brand {
    display: flex;
    width: 100%;
    min-height: var(--palcor-nav-height);
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
  }

  .site-navbar .navbar-brand > .brand-lockup {
    flex: 1;
    min-width: 0;
    min-height: 0;
    align-self: center;
    padding-block: 0.5rem;
    padding-inline: 0 0.5rem;
  }

  .site-navbar .navbar-brand > .navbar-item {
    min-height: 0;
  }

  .site-navbar .navbar-burger {
    display: inline-flex;
    width: 2.75rem;
    height: 2.75rem;
    flex-shrink: 0;
    align-items: center;
    align-self: center;
    justify-content: center;
    margin-block: 0;
    margin-inline-start: auto;
    margin-inline-end: 0;
  }

  .site-navbar .navbar-menu {
    flex-basis: 100%;
    flex-direction: column;
    padding: 0.5rem 1rem 1rem;
    border-top: 1px solid var(--palcor-line);
    box-shadow: 0 16px 30px rgba(23, 33, 43, 0.08);
  }

  .site-navbar .navbar-item {
    min-height: 46px;
  }

  .site-navbar .navbar-item.is-active {
    box-shadow: inset 3px 0 0 var(--palcor-orange);
  }

  .site-navbar .navbar-end .navbar-item {
    padding-inline-end: 0.75rem;
  }

  .hero-copy .title {
    max-width: 680px;
    font-size: 3.55rem;
  }

  .hero-meta {
    display: none;
  }

  .split-media,
  .split-media.is-reversed {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .split-media.is-reversed .split-media__visual {
    order: 2;
  }

  .split-media__visual,
  .split-media__visual img {
    min-height: 360px;
  }

  .split-media__visual.is-diagram,
  .split-media__visual.is-diagram img {
    min-height: 0;
  }

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

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

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

  .location-strip__lead {
    grid-column: 1 / -1;
  }

  .location-strip__item {
    border-top: 1px solid var(--palcor-line);
  }

  .footprint-panel {
    grid-template-columns: 1fr;
  }

  .footprint-panel__map {
    min-height: 330px;
    padding-top: 0;
  }

  .catalog-layout {
    gap: 1.75rem;
  }

  .catalog-intro {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .catalog-intro__visual {
    max-width: 220px;
  }

  .catalog-summary {
    position: static;
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 1.5rem;
    align-items: center;
  }

  .catalog-summary__visual {
    margin-bottom: 0;
  }

  .contact-layout {
    gap: 2.5rem;
  }

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

@media (max-width: 768px) {
  .section {
    padding-block: 4.25rem;
  }

  .section.is-compact {
    padding-block: 3rem;
  }

  .section-heading {
    margin-bottom: 2rem;
  }

  .section-heading .title,
  .split-media__copy .title {
    font-size: 2.05rem;
  }

  .hero-corporate {
    height: calc(100svh - var(--palcor-header-height));
    max-height: 680px;
  }

  .hero-corporate__image {
    object-position: 54% 70%;
  }

  .hero-copy .title {
    max-width: 560px;
    font-size: 2.75rem;
    line-height: 1.08;
  }

  .hero-copy .subtitle {
    max-width: 560px;
    font-size: 1rem;
  }

  .metric-grid--six {
    display: flex;
    flex-wrap: nowrap;
    gap: 0;
    overflow-x: auto;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
  }

  .metric-grid--six .metric-item {
    flex: 0 0 auto;
    justify-content: center;
    padding-inline: 0.85rem;
    border-right: 1px solid var(--palcor-line);
  }

  .metric-grid--six .metric-item:last-child {
    border-right: 0;
  }

  .metric-grid:not(.metric-grid--six) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .metric-grid:not(.metric-grid--six) .metric-item:nth-child(2n) {
    border-right: 0;
  }

  .metric-grid:not(.metric-grid--six) .metric-item:nth-child(n + 3) {
    margin-top: 1.1rem;
    padding-top: 1.1rem;
    border-top: 1px solid var(--palcor-line);
  }

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

  .equipment-card {
    min-height: 390px;
  }

  .page-hero,
  .page-hero .hero-body {
    min-height: 340px;
  }

  .page-hero .hero-body {
    padding-bottom: 3rem;
  }

  .page-hero .title {
    font-size: 2.65rem;
  }

  .profile-facts {
    grid-template-columns: 1fr;
    margin-top: 2.5rem;
  }

  .cycle-orbit {
    display: grid;
    min-height: 0;
    gap: 1rem;
  }

  .cycle-orbit::before {
    display: none;
  }

  .cycle-orbit__center {
    width: 180px;
    height: 180px;
    margin-bottom: 1rem;
  }

  .cycle-orbit__step,
  .cycle-orbit__step:nth-of-type(1),
  .cycle-orbit__step:nth-of-type(2),
  .cycle-orbit__step:nth-of-type(3),
  .cycle-orbit__step:nth-of-type(4) {
    position: static;
    width: 100%;
    min-height: 0;
    transform: none;
  }

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

  .cta-band__inner {
    display: block;
  }

  .cta-band__actions {
    margin-top: 1.5rem;
  }
}

@media (max-width: 560px) {
  .product-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
  }

  .product-card__name {
    font-size: 0.82rem;
  }

  .catalog-intro__visual {
    max-width: none;
  }

  .container.is-wide {
    width: min(100% - 1.25rem, 1380px);
  }

  .brand-copy small {
    display: none;
  }

  .hero-corporate {
    min-height: 560px;
    height: calc(100svh - var(--palcor-header-height));
  }

  .top-bar {
    font-size: 0.72rem;
  }

  .hero-copy .eyebrow {
    font-size: 0.68rem;
  }

  .hero-copy .title {
    font-size: 2.28rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 320px;
  }

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

  .metric-item {
    padding-inline: 0.75rem;
  }

  .metric-item__value {
    font-size: 1.6rem;
  }

  .split-media__visual,
  .split-media__visual img {
    min-height: 270px;
  }

  .split-media__visual.is-diagram,
  .split-media__visual.is-diagram img {
    min-height: 0;
  }

  .split-media__visual::after {
    right: -0.5rem;
    bottom: -0.5rem;
  }

  .equipment-grid,
  .cycle-row,
  .responsibility-grid,
  .purpose-grid {
    grid-template-columns: 1fr;
  }

  .leader-card {
    flex-basis: min(100%, 280px);
  }

  .equipment-card {
    min-height: 380px;
  }

  .equipment-card__visual {
    height: 215px;
  }

  .location-strip {
    grid-template-columns: 1fr;
  }

  .location-strip__item {
    border-left: 0;
  }

  .footprint-panel__copy,
  .footprint-panel__map {
    padding: 1.5rem;
  }

  .footprint-panel__copy .title {
    font-size: 1.9rem;
  }

  .footprint-panel__map {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .footprint-panel__map::before,
  .map-orbit {
    display: none;
  }

  .page-hero .title {
    font-size: 2.2rem;
  }

  .hero-corporate__canvas,
  .page-hero__canvas {
    display: none;
  }

  .catalog-summary {
    display: block;
  }

  .catalog-summary__visual {
    margin-bottom: 1.25rem;
  }

  .equipment-tabs {
    overflow-x: auto;
    padding: 0.4rem;
    -webkit-overflow-scrolling: touch;
  }

  .equipment-tabs ul {
    flex-wrap: nowrap;
    width: max-content;
    min-width: 100%;
    gap: 0.35rem;
  }

  .equipment-tabs li {
    flex: 0 0 auto;
  }

  .equipment-tabs li a {
    gap: 0.4rem;
    min-height: 42px;
    padding: 0.5rem 0.85rem 0.5rem 0.45rem;
    font-size: 0.84rem;
  }

  .equipment-tabs__icon {
    width: 26px;
    height: 26px;
  }

  .equipment-tabs__icon svg {
    width: 13px;
    height: 13px;
  }

  .contact-form {
    padding: 1.2rem;
  }

  .contact-map {
    margin-top: 2.5rem;
    padding-top: 2rem;
  }

  .contact-map__frame iframe {
    height: 280px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    display: block;
  }

  .footer-bottom span {
    display: block;
    margin-top: 0.35rem;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .cycle-orbit::before,
  .cycle-orbit__center {
    animation: none;
  }
}

/* Accessibility widget */
:root {
  --a11y-font-scale: 1;
  --a11y-line-height: 1;
  --a11y-letter-spacing: 0em;
  --a11y-content-scale: 1;
  --a11y-focus-ring: #f4b41f;
}

main,
.site-footer {
  font-size: calc(100% * var(--a11y-font-scale) * var(--a11y-content-scale));
  line-height: calc(1.7 * var(--a11y-line-height));
  letter-spacing: var(--a11y-letter-spacing);
}

:where(a[href], button, input, select, textarea, [tabindex]:not([tabindex="-1"])):focus-visible {
  outline: 3px solid var(--a11y-focus-ring);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 10050;
  padding: 0.65rem 1rem;
  color: var(--palcor-white);
  background: var(--palcor-ink);
  border-radius: var(--palcor-radius);
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: var(--palcor-shadow);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
  outline: 3px solid var(--palcor-orange);
  outline-offset: 2px;
}

.a11y-dropdown {
  position: relative;
  z-index: 2;
}

.a11y-dropdown.is-open {
  z-index: 10060;
}

.a11y-dropdown__toggle {
  position: relative;
  display: inline-grid;
  width: 28px;
  height: 28px;
  color: var(--palcor-cyan);
  background: rgba(67, 197, 206, 0.08);
  border: 1px solid rgba(67, 197, 206, 0.34);
  border-radius: 50%;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 14px rgba(67, 197, 206, 0.14);
  cursor: pointer;
  place-items: center;
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.a11y-dropdown__toggle:hover,
.a11y-dropdown__toggle:focus-visible,
.a11y-dropdown.is-open .a11y-dropdown__toggle {
  color: var(--palcor-white);
  background: rgba(242, 138, 36, 0.18);
  border-color: rgba(242, 138, 36, 0.55);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 0 18px rgba(242, 138, 36, 0.28);
}

.a11y-dropdown__toggle:focus,
.a11y-dropdown__toggle:focus-visible {
  outline: 3px solid var(--a11y-focus-ring);
  outline-offset: 3px;
}

.a11y-dropdown__toggle.is-active {
  border-color: rgba(98, 206, 119, 0.65);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 0 16px rgba(98, 206, 119, 0.35);
}

.a11y-dropdown__icon {
  width: 16px;
  height: 16px;
}

.a11y-dropdown__badge {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 7px;
  height: 7px;
  background: var(--palcor-green);
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(98, 206, 119, 0.75);
}

.a11y-dropdown__badge[hidden] {
  display: none;
}

.a11y-dropdown__menu {
  position: fixed;
  top: calc(var(--palcor-header-height) + 0.75rem);
  right: max(1rem, calc((100vw - 1380px) / 2));
  z-index: 10060;
  width: min(92vw, 420px);
  max-height: calc(100dvh - var(--palcor-header-height) - 1.5rem);
  overflow: auto;
  background: var(--palcor-white);
  border: 1px solid var(--palcor-glass-border-soft);
  border-radius: var(--palcor-radius-lg);
  box-shadow: 0 24px 70px rgba(16, 32, 45, 0.24);
}

.a11y-dropdown__menu[hidden] {
  display: none;
}

.a11y-dropdown__header {
  position: sticky;
  top: 0;
  z-index: 1;
  padding: 0.85rem 1rem 0.75rem;
  color: var(--palcor-white);
  background: linear-gradient(135deg, var(--palcor-ink) 0%, #1a3345 100%);
  border-radius: var(--palcor-radius-lg) var(--palcor-radius-lg) 0 0;
}

.a11y-dropdown__title {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 800;
}

.a11y-dropdown__hint {
  margin: 0.2rem 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.68rem;
  font-weight: 600;
}

.a11y-dropdown__body {
  padding: 0.85rem;
}

.a11y-profiles {
  margin-bottom: 0.85rem;
}

.a11y-profiles__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.45rem;
}

.a11y-profile {
  display: grid;
  gap: 0.35rem;
  min-height: 74px;
  padding: 0.55rem 0.35rem;
  color: var(--palcor-ink);
  background: #f2fbfc;
  border: 1px solid rgba(67, 197, 206, 0.2);
  border-radius: var(--palcor-radius);
  font-size: 0.62rem;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  cursor: pointer;
  place-items: center;
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease;
}

.a11y-profile svg {
  width: 1.15rem;
  height: 1.15rem;
  color: var(--palcor-ink-soft);
}

.a11y-profile:hover,
.a11y-profile:focus-visible {
  border-color: rgba(242, 138, 36, 0.45);
}

.a11y-profile:focus,
.a11y-profile:focus-visible {
  outline: 3px solid var(--a11y-focus-ring);
  outline-offset: 2px;
}

.a11y-profile.is-active {
  color: var(--palcor-white);
  background: linear-gradient(135deg, var(--palcor-ink) 0%, #1a3345 100%);
  border-color: transparent;
  box-shadow: 0 6px 16px rgba(16, 32, 45, 0.22);
}

.a11y-profile.is-active svg {
  color: var(--palcor-white);
}

.a11y-section-label {
  margin: 0 0 0.55rem;
  color: var(--palcor-steel);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.a11y-dropdown .a11y-grid {
  gap: 0.5rem;
}

.a11y-dropdown .a11y-card {
  min-height: 76px;
  padding: 0.6rem 0.5rem;
  font-size: 0.72rem;
}

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

.a11y-card {
  display: grid;
  gap: 0.45rem;
  min-height: 88px;
  padding: 0.75rem;
  color: var(--palcor-ink);
  background: #f2fbfc;
  border: 1px solid rgba(67, 197, 206, 0.2);
  border-radius: var(--palcor-radius);
  font-size: 0.76rem;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  place-items: center;
  transition: border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.a11y-card svg {
  width: 1.2rem;
  height: 1.2rem;
  color: var(--palcor-ink-soft);
}

.a11y-card:hover,
.a11y-card:focus-visible {
  border-color: rgba(242, 138, 36, 0.45);
}

.a11y-card:focus,
.a11y-card:focus-visible {
  outline: 3px solid var(--a11y-focus-ring);
  outline-offset: 3px;
}

.a11y-card.is-active {
  color: var(--palcor-white);
  background: linear-gradient(135deg, var(--palcor-orange) 0%, var(--palcor-orange-dark) 100%);
  border-color: transparent;
  box-shadow: 0 6px 16px rgba(242, 138, 36, 0.28);
}

.a11y-card.is-active svg {
  color: var(--palcor-white);
}

.a11y-card--stepper {
  cursor: default;
}

.a11y-card__label {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.a11y-stepper {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.a11y-stepper button {
  display: grid;
  width: 1.65rem;
  height: 1.65rem;
  color: var(--palcor-ink);
  background: var(--palcor-white);
  border: 1px solid var(--palcor-line);
  border-radius: 50%;
  font-size: 0.95rem;
  font-weight: 800;
  cursor: pointer;
  place-items: center;
}

.a11y-stepper button:hover:not(:disabled),
.a11y-stepper button:focus,
.a11y-stepper button:focus-visible {
  border-color: rgba(242, 138, 36, 0.55);
}

.a11y-stepper button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.a11y-stepper span {
  min-width: 3rem;
  font-size: 0.82rem;
  font-weight: 800;
}

.a11y-dropdown__reset {
  width: 100%;
  margin-top: 0.65rem;
  padding: 0.6rem 0.85rem;
  color: var(--palcor-ink);
  background: var(--palcor-white);
  border: 1px solid var(--palcor-line);
  border-radius: var(--palcor-radius);
  font-size: 0.76rem;
  font-weight: 800;
  cursor: pointer;
}

.a11y-dropdown__reset:hover,
.a11y-dropdown__reset:focus,
.a11y-dropdown__reset:focus-visible,
.a11y-dropdown__footer a:focus,
.a11y-dropdown__footer a:focus-visible {
  border-color: rgba(242, 138, 36, 0.55);
}

.a11y-dropdown__footer {
  padding: 0.7rem 1rem 0.85rem;
  border-top: 1px solid var(--palcor-line);
  text-align: center;
}

.a11y-dropdown__footer a {
  color: var(--palcor-ink-soft);
  font-size: 0.74rem;
  font-weight: 700;
  text-decoration: underline;
}

.a11y-reading-mask {
  position: fixed;
  inset: 0;
  z-index: 900;
  pointer-events: none;
}

.a11y-reading-mask[hidden] {
  display: none;
}

.a11y-reading-mask__shade {
  display: none;
}

.a11y-reading-mask__band {
  position: absolute;
  right: 0;
  left: 0;
  height: 72px;
  border-block: 2px solid var(--palcor-orange);
  box-shadow: 0 0 0 9999px rgba(16, 32, 45, 0.62);
  transform: translateY(-50%);
}

html.a11y-readable-font main,
html.a11y-readable-font .site-footer,
html.a11y-readable-font main button,
html.a11y-readable-font main input,
html.a11y-readable-font main select,
html.a11y-readable-font main textarea,
html.a11y-readable-font .site-footer button,
html.a11y-readable-font .site-footer input,
html.a11y-readable-font .site-footer select,
html.a11y-readable-font .site-footer textarea {
  font-family: Arial, Helvetica, sans-serif !important;
}

html.a11y-align-right main,
html.a11y-align-right .section,
html.a11y-align-right .content,
html.a11y-align-right p {
  text-align: right;
}

html.a11y-reduce-motion,
html.a11y-reduce-motion *,
html.a11y-reduce-motion *::before,
html.a11y-reduce-motion *::after {
  animation-duration: 0.01ms !important;
  animation-iteration-count: 1 !important;
  transition-duration: 0.01ms !important;
  scroll-behavior: auto !important;
}

html.a11y-reduce-motion .reveal {
  opacity: 1;
  transform: none;
}

html.a11y-reduce-motion [data-parallax],
html.a11y-reduce-motion .tilt-card {
  transform: none !important;
}

html.a11y-reduce-motion .hero-corporate__canvas,
html.a11y-reduce-motion .page-hero__canvas {
  display: none !important;
}

html.a11y-high-contrast {
  color-scheme: dark;
}

html.a11y-high-contrast body {
  color: #ffffff !important;
  background: #000000 !important;
}

html.a11y-high-contrast .site-header,
html.a11y-high-contrast .site-navbar,
html.a11y-high-contrast .top-bar,
html.a11y-high-contrast .metric-band,
html.a11y-high-contrast .section,
html.a11y-high-contrast .section.is-paper,
html.a11y-high-contrast .equipment-card,
html.a11y-high-contrast .product-card,
html.a11y-high-contrast .leader-card,
html.a11y-high-contrast .purpose-panel,
html.a11y-high-contrast .cycle-step,
html.a11y-high-contrast .contact-form,
html.a11y-high-contrast .catalog-intro {
  color: #ffffff !important;
  background: #000000 !important;
  border-color: #ffffff !important;
  box-shadow: none !important;
}

html.a11y-high-contrast main .title,
html.a11y-high-contrast main .subtitle,
html.a11y-high-contrast main h1,
html.a11y-high-contrast main h2,
html.a11y-high-contrast main h3,
html.a11y-high-contrast main p,
html.a11y-high-contrast main a,
html.a11y-high-contrast main li,
html.a11y-high-contrast main span,
html.a11y-high-contrast .site-footer .title,
html.a11y-high-contrast .site-footer .subtitle,
html.a11y-high-contrast .site-footer h1,
html.a11y-high-contrast .site-footer h2,
html.a11y-high-contrast .site-footer h3,
html.a11y-high-contrast .site-footer p,
html.a11y-high-contrast .site-footer a,
html.a11y-high-contrast .site-footer li,
html.a11y-high-contrast .site-footer span {
  color: #ffffff !important;
}

html.a11y-high-contrast main a:hover,
html.a11y-high-contrast main a:focus-visible,
html.a11y-high-contrast .site-footer a:hover,
html.a11y-high-contrast .site-footer a:focus-visible {
  color: #ffcc00 !important;
}

html.a11y-high-contrast .site-header a,
html.a11y-high-contrast .site-header button,
html.a11y-high-contrast .site-navbar .navbar-item,
html.a11y-high-contrast .top-bar__contact a,
html.a11y-high-contrast .top-bar__contact span {
  color: #ffffff !important;
}

html.a11y-high-contrast main input,
html.a11y-high-contrast main select,
html.a11y-high-contrast main textarea {
  color: #000000 !important;
  background: #ffffff !important;
  border-color: #ffffff !important;
}

html.a11y-high-contrast :where(a[href], button, input, select, textarea, [tabindex]:not([tabindex="-1"])):focus-visible {
  outline-color: #ffcc00 !important;
}

html.a11y-high-contrast .a11y-dropdown__menu,
html.a11y-high-contrast .a11y-dropdown__body,
html.a11y-high-contrast .a11y-profiles,
html.a11y-high-contrast .a11y-dropdown__footer {
  color: var(--palcor-ink) !important;
  background: var(--palcor-white) !important;
  border-color: var(--palcor-line) !important;
}

html.a11y-high-contrast .a11y-dropdown__menu {
  box-shadow: 0 24px 70px rgba(16, 32, 45, 0.24) !important;
}

html.a11y-high-contrast .a11y-dropdown__header {
  color: var(--palcor-white) !important;
  background: linear-gradient(135deg, var(--palcor-ink) 0%, #1a3345 100%) !important;
}

html.a11y-high-contrast .a11y-dropdown__title,
html.a11y-high-contrast .a11y-dropdown__hint {
  color: var(--palcor-white) !important;
}

html.a11y-high-contrast .a11y-dropdown__menu .a11y-card,
html.a11y-high-contrast .a11y-dropdown__menu .a11y-profile,
html.a11y-high-contrast .a11y-dropdown__menu .a11y-dropdown__reset {
  color: var(--palcor-ink) !important;
  background: #f2fbfc !important;
  border-color: rgba(67, 197, 206, 0.35) !important;
  box-shadow: none !important;
}

html.a11y-high-contrast .a11y-dropdown__menu .a11y-stepper button {
  color: var(--palcor-ink) !important;
  background: var(--palcor-white) !important;
  border-color: var(--palcor-line) !important;
}

html.a11y-high-contrast .a11y-dropdown__menu .a11y-card svg,
html.a11y-high-contrast .a11y-dropdown__menu .a11y-profile svg,
html.a11y-high-contrast .a11y-dropdown__menu .a11y-dropdown__footer a,
html.a11y-high-contrast .a11y-dropdown__menu .a11y-section-label,
html.a11y-high-contrast .a11y-dropdown__menu .a11y-stepper span {
  color: var(--palcor-ink-soft) !important;
}

html.a11y-high-contrast .a11y-dropdown__menu .a11y-card.is-active {
  color: var(--palcor-white) !important;
  background: linear-gradient(135deg, var(--palcor-orange) 0%, var(--palcor-orange-dark) 100%) !important;
  border-color: transparent !important;
  box-shadow: 0 6px 16px rgba(242, 138, 36, 0.28) !important;
}

html.a11y-high-contrast .a11y-dropdown__menu .a11y-profile.is-active {
  color: var(--palcor-white) !important;
  background: linear-gradient(135deg, var(--palcor-ink) 0%, #1a3345 100%) !important;
  border-color: transparent !important;
  box-shadow: 0 6px 16px rgba(16, 32, 45, 0.22) !important;
}

html.a11y-high-contrast .a11y-dropdown__menu .a11y-card.is-active svg,
html.a11y-high-contrast .a11y-dropdown__menu .a11y-profile.is-active svg {
  color: var(--palcor-white) !important;
}

html.a11y-high-contrast .button.is-palcor,
html.a11y-high-contrast .site-navbar .navbar-start > .navbar-item.is-active {
  color: #000000 !important;
  background: #ffcc00 !important;
  border-color: #ffcc00 !important;
}

@media (max-width: 768px) {
  .a11y-dropdown__menu {
    right: 0.75rem;
    left: 0.75rem;
    width: auto;
    max-height: calc(100dvh - var(--palcor-header-height) - 1rem);
  }

  .a11y-dropdown .a11y-card {
    min-height: 70px;
    font-size: 0.68rem;
  }

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

  .a11y-profile {
    min-height: 68px;
    font-size: 0.6rem;
  }
}
