:root {
  --lux-shell-border: rgba(27, 67, 50, 0.11);
  --lux-shell-muted: rgba(65, 72, 68, 0.84);
  --lux-shell-panel: rgba(255, 255, 255, 0.9);
  --lux-shell-overlay: linear-gradient(180deg, rgba(4, 26, 18, 0.14), rgba(4, 26, 18, 0.78));
  --lux-shell-overlay-left: linear-gradient(90deg, rgba(4, 26, 18, 0.82) 0%, rgba(4, 26, 18, 0.52) 38%, rgba(4, 26, 18, 0.18) 68%, rgba(4, 26, 18, 0.1) 100%);
  --lux-shell-shadow: 0 28px 70px -42px rgba(27, 67, 50, 0.35);
  --stitch-max: 1280px;
  --stitch-gutter: clamp(1rem, 5.8vw, 5rem);
  --stitch-section: clamp(4.5rem, 8vw, 7.5rem);
  --home-hero-top-gap: clamp(1rem, 2vw, 1.5rem);
  --home-hero-panel-height: clamp(31rem, calc(100vh - 170px), 40rem);
}

.container {
  width: min(var(--stitch-max), calc(100% - (var(--stitch-gutter) * 2)));
}

.section {
  padding: var(--stitch-section) 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  background: rgba(251, 249, 246, 0.9);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 rgba(193, 200, 194, 0.32);
}

.nav-wrap {
  min-height: 80px;
  padding: 0;
}

.brand-name {
  display: grid;
  gap: 0.05rem;
  max-width: 12.5rem;
  white-space: normal;
  text-wrap: auto;
  font-size: clamp(0.76rem, 0.78vw, 0.9rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.05;
  text-transform: uppercase;
}

.brand-name span {
  display: block;
  white-space: nowrap;
}

.main-nav a,
.nav-dropdown-trigger {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

main {
  padding-top: 80px;
}

.nav-contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.45rem;
  padding: 0.55rem 1rem;
  border: 1px solid rgba(27, 67, 50, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--color-deep-forest);
  font-family: "Source Sans 3", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.nav-contact-btn:hover,
.nav-contact-btn:focus-visible {
  background: var(--color-deep-forest);
  border-color: var(--color-deep-forest);
  color: #fff;
  transform: translateY(-1px);
}

.st-chip {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.3rem 0.7rem;
  border-radius: 0.25rem;
  background: rgba(27, 67, 50, 0.08);
  color: var(--color-leaf-green);
  font-family: "Source Sans 3", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.st-chip-solid {
  background: var(--color-leaf-green);
  color: #fff;
}

.st-text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  width: fit-content;
  color: var(--color-leaf-green);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.st-text-link .material-symbols-outlined {
  font-size: 1.1rem;
  transition: transform 0.18s ease;
}

.st-text-link:hover .material-symbols-outlined,
.st-text-link:focus-visible .material-symbols-outlined {
  transform: translateX(0.2rem);
}

.st-section-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.st-section-title h2 {
  margin: 0;
  color: var(--color-deep-forest);
  font-size: clamp(2rem, 4vw, 3rem);
}

.lux-page-hero {
  position: relative;
  min-height: clamp(24rem, 56vw, 40rem);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--color-charcoal);
}

.lux-page-hero-media,
.lux-page-hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.lux-page-hero-media img {
  object-fit: cover;
  transform: scale(1.02);
}

.lux-page-hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--lux-shell-overlay);
  z-index: 1;
}

.lux-page-hero-overlay-left {
  background: var(--lux-shell-overlay-left);
}

.lux-page-hero-copy {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: clamp(5rem, 12vw, 8rem) 0 clamp(2.5rem, 6vw, 4rem);
}

.lux-page-hero-copy h1,
.lux-page-hero-copy .lead,
.lux-page-hero-copy .career-detail-back {
  max-width: 48rem;
}

.lux-page-hero-copy h1 {
  color: #fff;
  max-width: 14ch;
  margin-bottom: 1rem;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 0.98;
}

.lux-page-hero-copy .lead {
  color: rgba(245, 243, 240, 0.88);
}

.lux-page-hero-kicker {
  color: rgba(212, 163, 115, 0.98);
}

.lux-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.lux-about-hero .lux-page-hero-copy h1,
.lux-products-hero .lux-page-hero-copy h1,
.lux-contact-hero .lux-page-hero-copy h1 {
  max-width: 16ch;
}

.lux-about-hero {
  min-height: clamp(34rem, 80vh, 48rem);
  align-items: center;
  text-align: center;
}

.lux-about-hero .lux-page-hero-media {
  opacity: 0.42;
  mix-blend-mode: overlay;
}

.lux-about-hero .lux-page-hero-overlay {
  background: rgba(27, 67, 50, 0.84);
}

.lux-about-hero .lux-page-hero-copy h1,
.lux-about-hero .lux-page-hero-copy .lead,
.lux-contact-hero .lux-page-hero-copy h1,
.lux-contact-hero .lux-page-hero-copy .lead {
  margin-inline: auto;
}

.lux-about-hero .lux-page-hero-copy h1 {
  max-width: 14ch;
}

.lux-products-hero {
  min-height: clamp(26rem, 60vh, 38rem);
  align-items: center;
  text-align: center;
}

.lux-products-hero .lux-page-hero-overlay {
  background: linear-gradient(rgba(1, 45, 29, 0.72), rgba(1, 45, 29, 0.9));
}

.lux-products-hero .lux-page-hero-copy h1,
.lux-products-hero .lux-page-hero-copy .lead {
  margin-inline: auto;
}

.lux-careers-hero {
  min-height: clamp(32rem, 80vh, 48rem);
}

.lux-contact-hero {
  min-height: clamp(22rem, 50vh, 32rem);
  align-items: center;
  text-align: center;
}

.lux-contact-hero .lux-page-hero-overlay {
  background: rgba(27, 67, 50, 0.56);
}

.lux-story-section {
  position: relative;
}

.lux-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: center;
}

.lux-story-copy {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.lux-story-copy h2,
.lux-section-heading h2,
.lux-section-heading-centered h2,
.lux-form-head h2,
.lux-contact-visit h2,
.lux-process-shell h2,
.lux-careers-cta-card h2 {
  margin-bottom: 0.8rem;
}

.lux-story-copy p:last-child {
  margin-bottom: 0;
}

.lux-story-note {
  color: var(--color-deep-forest);
  margin-top: 1rem;
}

.lux-story-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.lux-story-metric {
  padding: 1rem 1.1rem;
  border: 1px solid rgba(27, 67, 50, 0.08);
  border-radius: 1.1rem;
  background: #fff;
}

.lux-story-metric strong {
  display: block;
  color: var(--color-deep-forest);
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  line-height: 1;
  margin-bottom: 0.45rem;
}

.lux-story-metric span {
  display: block;
  color: var(--lux-shell-muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.lux-story-media {
  position: relative;
}

.lux-story-frame {
  position: relative;
  padding: clamp(1rem, 2vw, 1.4rem);
}

.lux-story-frame::before {
  content: "";
  position: absolute;
  left: 0.25rem;
  bottom: 0;
  width: 42%;
  height: 42%;
  border-radius: 1.6rem;
  background: rgba(212, 163, 115, 0.18);
}

.lux-story-photo-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 0.75rem;
  min-height: 32rem;
  box-shadow: var(--lux-shell-shadow);
}

.lux-story-photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lux-signal-section .container,
.lux-kpi-grid,
.lux-quality-grid,
.lux-highlight-grid,
.lux-faq-grid {
  display: grid;
  gap: 1.25rem;
}

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

.lux-signal-card,
.lux-faq-card {
  padding: 1.6rem 1.5rem;
  border: 1px solid var(--lux-shell-border);
  border-radius: 0.75rem;
  background: #fff;
  box-shadow: 0 18px 44px -34px rgba(27, 67, 50, 0.22);
}

.lux-signal-card-primary {
  border-left: 4px solid var(--color-leaf-green);
}

.lux-signal-card-accent {
  border-left: 4px solid var(--color-golden-harvest);
}

.lux-signal-card p,
.lux-signal-card li,
.lux-faq-card p {
  color: var(--lux-shell-muted);
}

.lux-signal-icon {
  width: 3.5rem;
  height: 3.5rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(64, 145, 108, 0.12);
  color: var(--color-deep-forest);
  margin-bottom: 1rem;
}

.lux-signal-card-accent .lux-signal-icon {
  background: rgba(212, 163, 115, 0.16);
}

.lux-bullet-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}

.lux-bullet-list li {
  position: relative;
  padding-left: 1.5rem;
}

.lux-bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: var(--color-leaf-green);
}

.lux-section-heading,
.lux-section-heading-centered {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: end;
  margin-bottom: 1.8rem;
}

.lux-section-heading-centered {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.lux-section-heading .lead,
.lux-heading-lead {
  max-width: 36rem;
}

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

.lux-person-card {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.lux-person-photo {
  border-radius: 1.5rem;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: rgba(27, 67, 50, 0.08);
  box-shadow: 0 18px 44px -34px rgba(27, 67, 50, 0.3);
}

.lux-person-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lux-person-card h3 {
  margin-bottom: 0.15rem;
}

.lux-person-role {
  margin: 0;
  color: var(--color-leaf-green);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lux-highlight-band {
  background: linear-gradient(180deg, rgba(18, 21, 19, 0.98), rgba(18, 21, 19, 0.95));
}

.lux-highlight-shell {
  display: grid;
  gap: 1.5rem;
  padding: 2rem;
  border-radius: 1.75rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(16, 30, 23, 0.92), rgba(18, 21, 19, 0.96));
  box-shadow: 0 30px 70px -48px rgba(0, 0, 0, 0.45);
}

.lux-highlight-copy h2,
.lux-highlight-grid h3,
.lux-eyebrow-light,
.lux-cta-panel h2 {
  color: #fff;
}

.lux-process-shell h2,
.lux-process-step h3 {
  color: var(--color-golden-harvest);
}

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

.lux-highlight-grid p,
.lux-cta-panel p,
.lux-process-step p {
  color: rgba(245, 243, 240, 0.72);
}

.lux-kpi-band {
  background: var(--color-deep-forest);
}

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

.lux-kpi-item {
  padding: 1.8rem 1rem;
  text-align: center;
  color: #fff;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.lux-kpi-item:last-child {
  border-right: 0;
}

.lux-kpi-item strong {
  display: block;
  font-family: "Newsreader", "Georgia", serif;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1;
}

.lux-kpi-item span {
  display: block;
  margin-top: 0.55rem;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245, 243, 240, 0.74);
}

.lux-product-grid {
  gap: 1.4rem;
}

.lux-product-card {
  border-radius: 0.75rem;
  overflow: hidden;
}

.lux-product-card .product-media {
  min-height: 15rem;
  aspect-ratio: 4 / 3;
}

.lux-infrastructure-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 2rem;
  align-items: center;
}

.lux-infrastructure-media {
  position: relative;
}

.lux-infrastructure-media img {
  display: block;
  width: 100%;
  border-radius: 0.75rem;
  object-fit: cover;
  min-height: 26rem;
  box-shadow: var(--lux-shell-shadow);
}

.lux-floating-kpi {
  position: absolute;
  left: clamp(1rem, 3vw, 2rem);
  bottom: -1rem;
  padding: 1.1rem 1.3rem;
  border-radius: 0.5rem;
  background: var(--color-deep-forest);
  color: #fff;
  box-shadow: 0 22px 42px -24px rgba(27, 67, 50, 0.55);
}

.lux-floating-kpi strong {
  display: block;
  font-family: "Newsreader", "Georgia", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
}

.lux-floating-kpi span {
  display: block;
  margin-top: 0.45rem;
  color: rgba(245, 243, 240, 0.78);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.lux-infrastructure-copy .eyebrow,
.lux-form-head .eyebrow {
  margin-bottom: 0.5rem;
}

.lux-feature-list {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.4rem;
}

.lux-feature-list article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  padding: 1rem 1rem 1rem 1.05rem;
  border: 1px solid rgba(27, 67, 50, 0.08);
  border-radius: 0.5rem;
  background: #fff;
}

.lux-feature-list i {
  color: var(--color-leaf-green);
  font-size: 1.15rem;
}

.lux-feature-list h3 {
  margin: 0 0 0.35rem;
}

.lux-feature-list p {
  margin: 0;
  color: var(--lux-shell-muted);
}

.lux-chip-cloud {
  margin-top: 1.2rem;
}

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

.lux-quality-card {
  padding: 1.25rem 1rem;
  text-align: center;
}

.lux-quality-card i {
  display: inline-grid;
  place-items: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 999px;
  background: rgba(64, 145, 108, 0.1);
  color: var(--color-leaf-green);
  font-size: 1.15rem;
  margin-bottom: 0.85rem;
}

.lux-quality-card p {
  color: var(--lux-shell-muted);
  margin-bottom: 0;
}

.lux-cta-section {
  background: var(--color-charcoal);
}

.lux-cta-panel {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: center;
  padding: 2rem;
  border-radius: 1.8rem;
  background: linear-gradient(180deg, rgba(14, 18, 15, 0.98), rgba(19, 23, 20, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.lux-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  justify-content: flex-end;
}

.lux-contact-grid {
  display: grid;
  grid-template-columns: minmax(17rem, 22rem) minmax(0, 1fr);
  gap: 1.5rem;
  align-items: start;
}

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

.lux-contact-card,
.lux-contact-form-card,
.lux-contact-visit,
.lux-process-shell,
.lux-careers-cta-card,
.lux-careers-why-card {
  border: 1px solid var(--lux-shell-border);
  border-radius: 0.75rem;
  background: var(--lux-shell-panel);
  box-shadow: var(--lux-shell-shadow);
}

.lux-contact-card,
.lux-contact-form-card,
.lux-process-shell,
.lux-careers-why-card {
  padding: 1.6rem;
}

.lux-contact-card-dark {
  background: var(--color-deep-forest);
  border-color: rgba(27, 67, 50, 0.28);
}

.lux-contact-card-dark h3 {
  color: var(--color-golden-harvest);
}

.lux-contact-card-dark p {
  color: #fff;
}

.lux-contact-intro {
  color: var(--lux-shell-muted);
  margin-bottom: 1.1rem;
}

.lux-contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.lux-contact-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: start;
}

.lux-contact-list i {
  display: inline-grid;
  place-items: center;
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 0.5rem;
  background: rgba(64, 145, 108, 0.12);
  color: var(--color-leaf-green);
}

.lux-contact-list strong,
.lux-contact-list span {
  display: block;
}

.lux-contact-list strong {
  margin-bottom: 0.15rem;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lux-contact-list span {
  color: var(--lux-shell-muted);
}

.lux-social-links {
  display: flex;
  gap: 0.7rem;
  margin-top: 1rem;
}

.lux-social-links a {
  width: 2.8rem;
  height: 2.8rem;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.lux-social-links a:hover,
.lux-social-links a:focus-visible {
  background: var(--color-golden-harvest);
  color: var(--color-deep-forest);
  transform: translateY(-1px);
}

.lux-form-head p:last-child {
  color: var(--lux-shell-muted);
}

.lux-contact-form .field-block label {
  color: var(--color-deep-forest);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lux-contact-form .field-shell {
  border: 0;
  border-bottom: 1px solid rgba(27, 67, 50, 0.15);
  border-radius: 0;
  background: transparent;
  padding-inline: 0;
  box-shadow: none;
}

.lux-contact-form .field-shell:focus-within {
  border-bottom-color: var(--color-leaf-green);
  box-shadow: none;
}

.lux-contact-form .field-shell input,
.lux-contact-form .field-shell select,
.lux-contact-form .field-shell textarea {
  background: transparent;
  border: 0;
  min-height: 3rem;
  padding: 0.8rem 0 0.6rem;
  box-shadow: none;
}

.lux-contact-form .field-shell textarea {
  min-height: 8rem;
}

.lux-contact-form .field-icon,
.lux-contact-form .field-select-indicator {
  color: var(--color-leaf-green);
}

.lux-contact-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
}

.lux-contact-required {
  color: var(--lux-shell-muted);
  font-size: 0.82rem;
}

.lux-contact-visit {
  max-width: 44rem;
  margin: 0 auto;
  padding: 2rem 1.75rem;
  text-align: center;
}

.lux-contact-visit i {
  color: var(--color-leaf-green);
  font-size: 1.5rem;
  margin-bottom: 0.6rem;
}

.lux-contact-visit p {
  color: var(--lux-shell-muted);
  max-width: 34rem;
  margin-inline: auto;
}

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

.lux-faq-card h3 {
  margin-bottom: 0.6rem;
}

.lux-careers-copy .lead {
  max-width: 40rem;
}

.lux-careers-why-grid {
  display: grid;
  grid-template-columns: 1.45fr 0.7fr 0.7fr;
  gap: 1.25rem;
}

.lux-careers-why-card-large {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 243, 240, 0.9));
}

.lux-careers-why-card-dark {
  background: var(--color-deep-forest);
  border-color: rgba(27, 67, 50, 0.22);
}

.lux-careers-why-card-dark h3,
.lux-careers-why-card-dark p {
  color: #fff;
}

.lux-careers-why-card p {
  color: var(--lux-shell-muted);
}

.lux-careers-why-icon {
  width: 3.4rem;
  height: 3.4rem;
  display: inline-grid;
  place-items: center;
  border-radius: 0.75rem;
  background: rgba(64, 145, 108, 0.1);
  color: var(--color-leaf-green);
  margin-bottom: 1rem;
}

.lux-careers-why-card-dark .lux-careers-why-icon {
  background: rgba(255, 255, 255, 0.12);
  color: var(--color-golden-harvest);
}

.lux-careers-proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1.2rem;
}

.lux-careers-proof-grid article {
  padding: 0.95rem 1rem;
  border-radius: 0.75rem;
  background: #fff;
}

.lux-careers-proof-grid strong {
  display: block;
  color: var(--color-leaf-green);
  font-size: 1.7rem;
  line-height: 1;
}

.lux-careers-proof-grid span {
  display: block;
  margin-top: 0.45rem;
  color: var(--lux-shell-muted);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lux-careers-results .job-list {
  margin-top: 0;
}

.lux-job-list .job-list-item {
  border-radius: 1.45rem;
}

.lux-process-section {
  background: transparent;
}

.lux-process-shell {
  background: linear-gradient(180deg, rgba(15, 33, 23, 0.98), rgba(22, 47, 32, 0.94));
  border-color: rgba(255, 255, 255, 0.08);
}

.lux-process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.4rem;
}

.lux-process-step {
  position: relative;
  padding-top: 0.25rem;
}

.lux-process-step strong {
  display: inline-grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  margin-bottom: 0.9rem;
}

.lux-process-step.is-current strong {
  background: var(--color-golden-harvest);
  border-color: var(--color-golden-harvest);
  color: var(--color-deep-forest);
}

.lux-careers-cta-card {
  display: grid;
  grid-template-columns: minmax(14rem, 19rem) minmax(0, 1fr);
  gap: 1.5rem;
  align-items: center;
  padding: 1.35rem;
}

.lux-careers-cta-card img {
  width: 100%;
  min-height: 15rem;
  border-radius: 1.25rem;
  object-fit: cover;
}

.lux-careers-cta-card p {
  color: var(--lux-shell-muted);
}

.lux-career-detail-grid {
  align-items: start;
}

.lux-career-detail-main,
.lux-career-detail-side {
  border-radius: 1.55rem;
}

.lux-richtext-content,
.lux-richtext-content p,
.lux-richtext-content li {
  color: var(--lux-shell-muted);
}

.portal-hero-shell,
.recruitment-hero-shell,
.portal-panel,
.portal-side-card,
.portal-auth-card,
.recruitment-panel,
.recruitment-side-card,
.recruitment-auth-card,
.recruitment-stat-card {
  border-radius: 1.45rem;
  box-shadow: 0 22px 46px -34px rgba(27, 67, 50, 0.22);
}

.portal-subnav,
.recruitment-subnav {
  border-radius: 1.25rem;
  border: 1px solid rgba(27, 67, 50, 0.08);
  box-shadow: 0 18px 40px -34px rgba(27, 67, 50, 0.2);
}

.portal-form input,
.portal-form select,
.portal-form textarea,
.recruitment-filter-form input,
.recruitment-filter-form select {
  border-radius: 1rem;
}

.recruitment-table-wrap,
.recruitment-reviewer-table-wrap,
.portal-document-card,
.portal-application-item,
.portal-job-compact-card {
  border-radius: 1.2rem;
}

.recruitment-table thead th,
.recruitment-applications-table thead th,
.recruitment-reviewer-table thead th {
  background: var(--color-deep-forest);
  color: #fff;
}

.recruitment-table tbody tr:hover td,
.recruitment-applications-table tbody tr:hover td,
.recruitment-reviewer-table tbody tr:hover td {
  background: rgba(64, 145, 108, 0.06);
}

.st-news-hero {
  position: relative;
  min-height: clamp(32rem, 72vh, 44rem);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--color-deep-forest);
}

.st-news-hero-bg,
.st-news-hero-bg img,
.st-news-hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.st-news-hero-bg img {
  object-fit: cover;
  transform: scale(1.02);
}

.st-news-hero-overlay {
  background: linear-gradient(180deg, rgba(1, 45, 29, 0.18), rgba(1, 45, 29, 0.86));
}

.st-news-hero-inner {
  position: relative;
  z-index: 1;
  padding-bottom: clamp(3rem, 7vw, 6rem);
  color: #fff;
}

.st-news-hero-inner h1 {
  max-width: 13ch;
  margin: 1rem 0;
  color: #fff;
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  line-height: 1.05;
}

.st-news-hero-inner p {
  max-width: 43rem;
  margin: 0;
  color: rgba(245, 243, 240, 0.9);
  font-size: 1.13rem;
  line-height: 1.7;
}

.st-filter-strip {
  background: var(--color-surface);
  border-bottom: 1px solid rgba(193, 200, 194, 0.36);
}

.st-filter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 2rem;
}

.st-filter-tabs {
  display: flex;
  gap: clamp(1rem, 3vw, 2rem);
  overflow-x: auto;
  padding-bottom: 0.15rem;
}

.st-filter-tabs span {
  white-space: nowrap;
  color: var(--color-muted);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.st-filter-tabs .is-active {
  color: var(--color-leaf-green);
  border-bottom: 2px solid var(--color-leaf-green);
}

.st-news-search {
  position: relative;
  flex: 0 0 min(100%, 18rem);
}

.st-news-search input {
  width: 100%;
  min-height: 2.9rem;
  border: 0;
  border-bottom: 2px solid transparent;
  border-radius: 0;
  background: var(--color-earth-linen);
  padding: 0.65rem 2.75rem 0.65rem 1rem;
}

.st-news-search input:focus {
  outline: 0;
  border-bottom-color: var(--color-deep-forest);
}

.st-news-search button {
  position: absolute;
  inset: 0 0 0 auto;
  width: 2.75rem;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  color: var(--color-muted);
  cursor: pointer;
}

.st-news-list-section {
  background: var(--color-bg);
}

.st-featured-news {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(20rem, 0.95fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  margin-bottom: var(--stitch-section);
}

.st-featured-news-media {
  display: block;
  overflow: hidden;
  border-radius: 0.75rem;
  aspect-ratio: 16 / 10;
  box-shadow: 0 28px 68px -44px rgba(27, 67, 50, 0.42);
}

.st-featured-news-media img,
.st-news-card-media img,
.st-article-hero img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.st-featured-news-media:hover img,
.st-news-card a:hover .st-news-card-media img {
  transform: scale(1.045);
}

.st-featured-news-copy {
  display: grid;
  gap: 1rem;
}

.st-featured-news-copy time,
.st-news-card time,
.st-news-card-meta,
.st-article-meta,
.st-latest-card time {
  color: var(--color-muted);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.st-featured-news-copy h2 {
  margin: 0;
  color: var(--color-deep-forest);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.08;
}

.st-featured-news-copy p {
  color: var(--color-muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

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

.st-news-card a {
  display: grid;
  gap: 0.85rem;
  color: inherit;
}

.st-news-card-media {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border-radius: 0.55rem;
  background: var(--color-earth-linen);
  box-shadow: 0 16px 36px -30px rgba(27, 67, 50, 0.28);
}

.st-card-category {
  position: absolute;
  left: 1rem;
  top: 1rem;
  padding: 0.26rem 0.62rem;
  border-radius: 0.2rem;
  background: rgba(255, 255, 255, 0.92);
  color: var(--color-deep-forest);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.st-news-card-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.st-news-card-meta span[aria-hidden="true"] {
  width: 0.25rem;
  height: 0.25rem;
  border-radius: 999px;
  background: currentColor;
}

.st-news-card h3 {
  margin: 0;
  color: var(--color-text);
  font-size: 1.45rem;
  line-height: 1.25;
  transition: color 0.18s ease;
}

.st-news-card a:hover h3,
.st-news-card a:focus-visible h3 {
  color: var(--color-leaf-green);
}

.st-news-card p {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.55;
}

.st-newsletter-band {
  position: relative;
  overflow: hidden;
  padding: var(--stitch-section) 0;
  background: var(--color-charcoal);
  color: var(--color-earth-linen);
}

.st-newsletter-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.8fr);
  gap: 2rem;
  align-items: center;
}

.st-newsletter-grid h2 {
  max-width: 13ch;
  margin-bottom: 1rem;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.08;
}

.st-newsletter-grid p {
  max-width: 36rem;
  color: rgba(245, 243, 240, 0.72);
}

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

.st-newsletter-tiles article {
  min-height: 9rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.7rem;
  padding: 1.4rem;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.st-newsletter-tiles article:first-child {
  grid-row: span 2;
}

.st-newsletter-tiles .material-symbols-outlined {
  color: var(--color-golden-harvest);
  font-size: 2rem;
}

.st-breadcrumb-strip {
  background: var(--color-earth-linen);
  border-bottom: 1px solid rgba(193, 200, 194, 0.18);
}

.st-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding-block: 1rem;
  overflow-x: auto;
  color: var(--color-muted);
}

.st-breadcrumbs a,
.st-breadcrumbs span {
  white-space: nowrap;
  font-size: 0.8rem;
  font-weight: 700;
}

.st-breadcrumbs a:hover,
.st-breadcrumbs a:focus-visible,
.st-breadcrumbs > span:last-child {
  color: var(--color-leaf-green);
}

.st-breadcrumbs .material-symbols-outlined {
  font-size: 1rem;
  color: var(--color-muted);
}

.st-article-page {
  padding-bottom: var(--stitch-section);
}

.st-article-header {
  padding-top: clamp(3rem, 5vw, 4.5rem);
  padding-bottom: 2rem;
}

.st-article-header h1 {
  max-width: 15ch;
  margin: 1.3rem 0 1.2rem;
  color: var(--color-deep-forest);
  font-size: clamp(2.3rem, 5vw, 4.3rem);
  line-height: 1.05;
}

.st-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.st-article-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.st-article-meta .material-symbols-outlined {
  color: var(--color-leaf-green);
  font-size: 1.05rem;
}

.st-article-hero {
  overflow: hidden;
  aspect-ratio: 21 / 9;
  border-radius: 0.75rem;
  border: 1px solid rgba(193, 200, 194, 0.3);
  box-shadow: 0 26px 62px -42px rgba(27, 67, 50, 0.35);
}

.st-article-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(18rem, 0.28fr);
  gap: 1.5rem;
  align-items: start;
  padding-top: 3rem;
}

.st-article-body {
  max-width: 52rem;
}

.st-article-body p {
  color: var(--color-muted);
  font-size: 1.1rem;
  line-height: 1.8;
}

.st-article-lead {
  color: var(--color-deep-forest) !important;
  font-size: 1.32rem !important;
  font-weight: 600;
}

.st-article-sidebar {
  display: grid;
  gap: 1.5rem;
}

.st-share-card,
.st-latest-card {
  padding: 1.5rem;
  border-radius: 0.75rem;
  background: #fff;
  border: 1px solid rgba(193, 200, 194, 0.3);
  box-shadow: 0 18px 42px -34px rgba(27, 67, 50, 0.24);
}

.st-share-card h2,
.st-latest-card h2 {
  margin-bottom: 1rem;
  color: var(--color-deep-forest);
  font-size: 1.35rem;
}

.st-share-card {
  display: grid;
  gap: 0.8rem;
}

.st-share-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 2.75rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(27, 67, 50, 0.16);
  color: var(--color-deep-forest);
  font-weight: 800;
}

.st-share-card a:hover,
.st-share-card a:focus-visible {
  border-color: var(--color-leaf-green);
  color: var(--color-leaf-green);
}

.st-latest-card a {
  display: grid;
  gap: 0.25rem;
  padding-block: 1rem;
  border-top: 1px solid rgba(193, 200, 194, 0.3);
}

.st-latest-card a:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.st-latest-card a span {
  color: var(--color-text);
  font-family: "Newsreader", Georgia, serif;
  font-size: 1.1rem;
  line-height: 1.25;
}

.st-latest-card a:hover span,
.st-latest-card a:focus-visible span {
  color: var(--color-leaf-green);
}

.st-related-section {
  background: var(--color-earth-linen);
}

.st-map-section {
  padding: 0 0 var(--stitch-section);
}

.st-map-card {
  position: relative;
  min-height: 31rem;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 0;
  background: var(--color-earth-linen);
}

.st-map-visual {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 1rem;
  background:
    linear-gradient(rgba(251, 249, 246, 0.72), rgba(251, 249, 246, 0.72)),
    repeating-linear-gradient(45deg, rgba(27, 67, 50, 0.08) 0 1px, transparent 1px 34px),
    repeating-linear-gradient(-45deg, rgba(64, 145, 108, 0.08) 0 1px, transparent 1px 34px),
    var(--color-earth-linen);
  filter: grayscale(0.2);
}

.st-map-visual .material-symbols-outlined {
  color: rgba(64, 145, 108, 0.35);
  font-size: 5rem;
}

.st-map-visual p {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.st-map-overlay {
  position: relative;
  z-index: 1;
  max-width: 34rem;
  margin: 1rem;
  padding: 2rem;
  border: 1px solid rgba(64, 145, 108, 0.18);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 24px 60px -36px rgba(27, 67, 50, 0.38);
  text-align: center;
}

.st-map-overlay > .material-symbols-outlined {
  color: var(--color-leaf-green);
  font-size: 2.4rem;
}

.st-map-overlay h2 {
  margin: 0.65rem 0 0.75rem;
  color: var(--color-deep-forest);
}

.st-map-overlay p {
  color: var(--color-muted);
}

.hm-news-card a {
  display: block;
  color: inherit;
  height: 100%;
}

.hm-hero {
  min-height: auto;
  padding-top: var(--home-hero-top-gap);
  padding-bottom: clamp(2rem, 4vw, 3.5rem);
}

.hm-hero-grid {
  min-height: 0;
  height: var(--home-hero-panel-height);
  align-items: stretch;
}

.hm-hero-text {
  min-height: var(--home-hero-panel-height);
  padding-top: clamp(3rem, 6vw, 5rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
}

.hm-hero-media {
  align-self: stretch;
  height: var(--home-hero-panel-height);
  max-height: none;
}

.hm-carousel {
  min-height: 0;
  height: 100%;
}

.hm-stats-bar {
  margin-top: 0;
  transform: translateY(-1.25rem);
  padding-top: clamp(2rem, 4vw, 3rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
}

.about-switch {
  display: flex;
  width: fit-content;
  margin: 2rem auto 0;
  padding: 0.3rem;
  border-radius: 999px;
  border: 1px solid rgba(27, 67, 50, 0.12);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 42px -34px rgba(27, 67, 50, 0.28);
}

.about-switch a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.65rem;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  color: var(--color-deep-forest);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.about-switch a.is-active {
  background: var(--color-deep-forest);
  color: #fff;
}

.st-leadership-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: end;
}

.st-leadership-intro h2 {
  max-width: 15ch;
  color: var(--color-deep-forest);
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  line-height: 1.08;
}

.st-ceo-panel {
  display: grid;
  grid-template-columns: minmax(16rem, 0.42fr) minmax(0, 0.58fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  padding: clamp(1rem, 2vw, 1.5rem);
  border: 1px solid rgba(27, 67, 50, 0.1);
  border-radius: 0.75rem;
  background: #fff;
  box-shadow: var(--lux-shell-shadow);
}

.st-ceo-media {
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border-radius: 0.75rem;
  background: var(--color-earth-linen);
}

.st-ceo-media img,
.st-person-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.st-ceo-copy {
  display: grid;
  gap: 1.2rem;
}

.st-ceo-copy blockquote {
  position: relative;
  margin: 0;
  padding-left: 1.2rem;
  border-left: 4px solid var(--color-golden-harvest);
  color: var(--color-text);
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  line-height: 1.35;
}

.st-ceo-copy strong,
.st-ceo-copy span {
  display: block;
}

.st-ceo-copy strong {
  color: var(--color-deep-forest);
  font-size: 1.1rem;
}

.st-ceo-copy span {
  color: var(--color-muted);
  font-weight: 700;
}

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

.st-people-grid-management {
  grid-template-columns: repeat(auto-fit, minmax(15.5rem, 1fr));
}

.st-person-card {
  display: grid;
  gap: 0.7rem;
}

.st-person-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  border-radius: 0.75rem;
  background: var(--color-earth-linen);
}

.st-person-media img {
  transition: transform 0.5s ease;
}

.st-person-card:hover .st-person-media img {
  transform: scale(1.06);
}

.st-person-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: end;
  padding: 1rem;
  background: rgba(27, 67, 50, 0.72);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.st-person-card:hover .st-person-overlay,
.st-person-card:focus-within .st-person-overlay {
  opacity: 1;
}

.st-person-overlay p {
  margin: 0;
  color: #fff;
  font-size: 0.95rem;
  line-height: 1.45;
}

.st-person-card h3 {
  margin: 0.25rem 0 0;
  color: var(--color-deep-forest);
  font-size: 1.35rem;
}

.st-person-card > p {
  margin: 0;
  color: var(--color-leaf-green);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.st-person-fallback {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, rgba(64, 145, 108, 0.1), rgba(212, 163, 115, 0.14));
  color: var(--color-leaf-green);
}

.st-person-fallback .material-symbols-outlined {
  font-size: 4rem;
}

.st-about-cta-section {
  background: var(--color-bg);
}

.st-about-cta {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: center;
  padding: clamp(2rem, 5vw, 5rem);
  border-radius: 1.5rem;
  background: var(--color-deep-forest);
  color: #fff;
}

.st-about-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background: repeating-linear-gradient(90deg, #fff 0 1px, transparent 1px 16.66%);
}

.st-about-cta > * {
  position: relative;
  z-index: 1;
}

.st-about-cta h2 {
  max-width: 14ch;
  margin-bottom: 0.8rem;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.08;
}

.st-about-cta p {
  max-width: 42rem;
  margin: 0;
  color: rgba(245, 243, 240, 0.82);
}

.st-about-hero {
  position: relative;
  min-height: calc(80vh + 80px);
  margin-top: -80px;
  padding-top: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--color-deep-forest);
  text-align: center;
}

.st-about-hero-bg,
.st-about-hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.st-about-hero-bg {
  opacity: 0.4;
  mix-blend-mode: overlay;
}

.st-about-hero-bg img {
  object-fit: cover;
}

.st-about-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 56rem;
  padding-inline: 1rem;
  color: #fff;
}

.st-about-kicker,
.st-about-section-label {
  display: block;
  color: var(--color-golden-harvest);
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.st-about-hero-copy h1 {
  margin: 1rem 0 1.5rem;
  color: #fff;
  font-size: clamp(2.6rem, 6vw, 4rem);
  line-height: 1.12;
}

.st-about-hero-copy p {
  max-width: 42rem;
  margin-inline: auto;
  color: rgba(245, 243, 240, 0.82);
  font-size: 1.125rem;
  line-height: 1.55;
}

.st-about-scroll {
  position: absolute;
  left: 50%;
  bottom: 2.5rem;
  z-index: 1;
  color: #fff;
  font-size: 2.8rem;
  transform: translateX(-50%);
  animation: st-about-bounce 1.5s infinite;
}

@keyframes st-about-bounce {
  0%, 100% {
    transform: translate(-50%, 0);
  }
  50% {
    transform: translate(-50%, 0.55rem);
  }
}

.st-about-story,
.st-about-leadership {
  padding: var(--stitch-section) 0;
  overflow: hidden;
  background: var(--color-bg);
}

.st-about-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1.5rem;
  align-items: center;
}

.st-about-story-copy h2 {
  margin: 1rem 0 2rem;
  color: var(--color-deep-forest);
  font-size: clamp(2.25rem, 4vw, 3rem);
  line-height: 1.16;
}

.st-about-prose {
  display: grid;
  gap: 1.5rem;
  color: var(--color-muted);
  font-size: 1.125rem;
  line-height: 1.56;
}

.st-about-prose p {
  margin: 0;
}

.st-about-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

.st-about-metrics strong {
  display: block;
  color: var(--color-leaf-green);
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(2.75rem, 6vw, 4rem);
  line-height: 1;
}

.st-about-metrics span {
  display: block;
  margin-top: 0.4rem;
  color: var(--color-muted);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.st-about-story-media {
  position: relative;
}

.st-about-story-media > div {
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border-radius: 0.75rem;
  box-shadow: 0 25px 50px -12px rgba(27, 67, 50, 0.26);
}

.st-about-story-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.st-about-story-media > span {
  position: absolute;
  left: -2.5rem;
  bottom: -2.5rem;
  width: 16rem;
  height: 16rem;
  border-radius: 0.75rem;
  background: rgba(212, 163, 115, 0.2);
  z-index: -1;
}

.st-about-mission {
  padding: var(--stitch-section) 0;
  background: var(--color-earth-linen);
}

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

.st-about-mission-card {
  padding: 2rem;
  border-left: 8px solid var(--color-leaf-green);
  border-radius: 0.75rem;
  background: #fff;
  box-shadow: 0 1px 2px rgba(27, 67, 50, 0.05), 0 18px 44px -38px rgba(27, 67, 50, 0.2);
}

.st-about-mission-card-gold {
  border-left-color: var(--color-golden-harvest);
}

.st-about-mission-card div {
  width: 4rem;
  height: 4rem;
  display: grid;
  place-items: center;
  margin-bottom: 1.5rem;
  border-radius: 999px;
  background: rgba(64, 145, 108, 0.1);
  color: var(--color-leaf-green);
}

.st-about-mission-card-gold div {
  background: rgba(212, 163, 115, 0.12);
  color: var(--color-golden-harvest);
}

.st-about-mission-card h3 {
  margin-bottom: 1rem;
  color: var(--color-deep-forest);
  font-size: 2rem;
}

.st-about-mission-card p {
  margin: 0;
  color: var(--color-muted);
  font-size: 1.125rem;
  line-height: 1.55;
}

.st-about-section-head {
  margin-bottom: 4rem;
  text-align: center;
}

.st-about-section-head .st-about-section-label {
  color: var(--color-leaf-green);
}

.st-about-section-head h2 {
  margin: 1rem 0 0;
  color: var(--color-deep-forest);
  font-size: clamp(2.25rem, 4vw, 3rem);
}

.st-about-section-head i {
  display: block;
  width: 6rem;
  height: 0.25rem;
  margin: 1.5rem auto 0;
  background: var(--color-golden-harvest);
}

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

.st-leadership-single-grid {
  max-width: 24rem;
  margin-inline: auto;
}

.st-leadership-management-section {
  background: var(--color-earth-linen);
}

.st-leadership-ceo-section {
  background: var(--color-earth-linen);
}

.st-leadership-ceo-panel {
  display: grid;
  grid-template-columns: minmax(16rem, 0.34fr) minmax(0, 0.66fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: stretch;
  max-width: 72rem;
  margin-inline: auto;
  padding: clamp(1rem, 2vw, 1.5rem);
  border-radius: 0.75rem;
  background: #fff;
  border: 1px solid rgba(27, 67, 50, 0.1);
  box-shadow: 0 28px 70px -46px rgba(27, 67, 50, 0.38);
}

.st-leadership-ceo-photo {
  overflow: hidden;
  min-height: 28rem;
  border-radius: 0.75rem;
  background: var(--color-earth-linen);
}

.st-leadership-ceo-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
}

.st-leadership-ceo-message {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1rem, 3vw, 2.5rem) clamp(0.25rem, 2vw, 1.5rem);
}

.st-leadership-ceo-message .st-about-section-label {
  color: var(--color-leaf-green);
}

.st-leadership-ceo-message blockquote {
  position: relative;
  margin: 1.2rem 0 1.5rem;
  padding-left: 1.4rem;
  border-left: 4px solid var(--color-golden-harvest);
  color: var(--color-deep-forest);
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(1.35rem, 2.6vw, 2.15rem);
  line-height: 1.35;
}

.st-leadership-ceo-message footer {
  display: grid;
  gap: 0.2rem;
}

.st-leadership-ceo-message strong {
  color: var(--color-deep-forest);
  font-size: 1.15rem;
}

.st-leadership-ceo-message span {
  color: var(--color-muted);
  font-weight: 800;
}

.st-about-leader-card a {
  display: grid;
  gap: 0.55rem;
  color: inherit;
}

.st-about-leader-card {
  transition: transform 0.25s ease;
}

.st-about-leader-card:hover,
.st-about-leader-card:focus-within {
  transform: translateY(-0.25rem);
}

.st-about-leader-photo {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  margin-bottom: 1rem;
  border-radius: 0.75rem;
  background: var(--color-earth-linen);
}

.st-about-leader-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.5s ease;
}

.st-about-leader-card:hover img,
.st-about-leader-card:focus-within img {
  transform: scale(1.1);
}

.st-about-leader-photo > span {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(27, 67, 50, 0.42);
  color: #fff;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.st-about-leader-photo > span {
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.st-about-leader-card:hover .st-about-leader-photo > span,
.st-about-leader-card:focus-within .st-about-leader-photo > span {
  opacity: 1;
}

.st-about-leader-card strong {
  color: var(--color-deep-forest);
  font-family: "Newsreader", Georgia, serif;
  font-size: 1.5rem;
  font-weight: 600;
}

.st-about-leader-card em {
  color: var(--color-leaf-green);
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.st-about-operations {
  position: relative;
  overflow: hidden;
  padding: var(--stitch-section) 0;
  background: var(--color-charcoal);
}

.st-about-operations-bg,
.st-about-operations-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.st-about-operations-bg {
  opacity: 0.2;
}

.st-about-operations-bg img {
  object-fit: cover;
}

.st-about-operations .container {
  position: relative;
  z-index: 1;
  text-align: center;
}

.st-about-operations h2 {
  margin-bottom: 2.5rem;
  color: #fff;
  font-size: clamp(2.25rem, 4vw, 3rem);
}

.st-about-operations-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  text-align: left;
}

.st-about-operations-grid article {
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
}

.st-about-operations-grid h3 {
  color: var(--color-golden-harvest);
  font-size: 1.5rem;
}

.st-about-operations-grid p {
  margin: 0;
  color: rgba(245, 243, 240, 0.72);
}

.st-about-cta-wrap {
  padding: var(--stitch-section) 0;
  background: var(--color-bg);
}

.st-about-final-cta {
  position: relative;
  overflow: hidden;
  padding: clamp(2rem, 6vw, 5rem);
  border-radius: 1.5rem;
  background: var(--color-deep-forest);
  color: #fff;
  text-align: center;
}

.st-about-final-lines {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  opacity: 0.1;
}

.st-about-final-lines span {
  border-right: 1px solid #fff;
}

.st-about-final-cta > div:last-child {
  position: relative;
  z-index: 1;
}

.st-about-final-cta h2 {
  max-width: 18ch;
  margin: 0 auto 1.5rem;
  color: var(--color-golden-harvest);
  font-size: clamp(2rem, 4vw, 3rem);
}

.st-about-final-cta p {
  max-width: 42rem;
  margin: 0 auto 2.5rem;
  color: rgba(245, 243, 240, 0.82);
  font-size: 1.125rem;
}

.st-about-final-cta div:last-child div {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.st-about-final-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.35rem;
  padding: 0.95rem 2.5rem;
  border-radius: 999px;
  border: 2px solid #fff;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.st-about-final-cta a:first-child {
  border-color: var(--color-golden-harvest);
  background: var(--color-golden-harvest);
  color: var(--color-deep-forest);
}

[data-theme="dark"] {
  --lux-shell-border: rgba(91, 200, 122, 0.14);
  --lux-shell-muted: rgba(232, 241, 231, 0.76);
  --lux-shell-panel: rgba(18, 28, 21, 0.94);
  --lux-shell-overlay: linear-gradient(180deg, rgba(3, 8, 5, 0.22), rgba(3, 8, 5, 0.86));
  --lux-shell-overlay-left: linear-gradient(90deg, rgba(3, 8, 5, 0.88) 0%, rgba(3, 8, 5, 0.64) 38%, rgba(3, 8, 5, 0.28) 68%, rgba(3, 8, 5, 0.18) 100%);
}

[data-theme="dark"] .nav-contact-btn {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(91, 200, 122, 0.18);
  color: var(--color-text);
}

[data-theme="dark"] .nav-contact-btn:hover,
[data-theme="dark"] .nav-contact-btn:focus-visible {
  background: var(--color-leaf-green);
  border-color: var(--color-leaf-green);
  color: #0b120d;
}

[data-theme="dark"] .lux-story-copy,
[data-theme="dark"] .lux-signal-card,
[data-theme="dark"] .lux-faq-card,
[data-theme="dark"] .lux-contact-card,
[data-theme="dark"] .lux-contact-form-card,
[data-theme="dark"] .lux-contact-visit,
[data-theme="dark"] .lux-careers-why-card,
[data-theme="dark"] .lux-careers-cta-card,
[data-theme="dark"] .lux-feature-list article,
[data-theme="dark"] .lux-story-metric,
[data-theme="dark"] .lux-quality-card,
[data-theme="dark"] .lux-product-card,
[data-theme="dark"] .st-share-card,
[data-theme="dark"] .st-latest-card,
[data-theme="dark"] .about-switch,
[data-theme="dark"] .st-ceo-panel {
  background: var(--lux-shell-panel);
}

[data-theme="dark"] .lux-story-copy h2,
[data-theme="dark"] .lux-story-copy p,
[data-theme="dark"] .lux-section-heading h2,
[data-theme="dark"] .lux-section-heading-centered h2,
[data-theme="dark"] .lux-form-head h2,
[data-theme="dark"] .lux-contact-visit h2,
[data-theme="dark"] .lux-contact-list strong,
[data-theme="dark"] .lux-person-card h3,
[data-theme="dark"] .lux-quality-card h3,
[data-theme="dark"] .lux-feature-list h3,
[data-theme="dark"] .lux-careers-why-card h2,
[data-theme="dark"] .lux-careers-why-card h3,
[data-theme="dark"] .lux-careers-proof-grid strong,
[data-theme="dark"] .lux-product-card h3,
[data-theme="dark"] .st-section-title h2,
[data-theme="dark"] .st-featured-news-copy h2,
[data-theme="dark"] .st-news-card h3,
[data-theme="dark"] .st-article-header h1,
[data-theme="dark"] .st-article-lead,
[data-theme="dark"] .st-share-card h2,
[data-theme="dark"] .st-latest-card h2,
[data-theme="dark"] .st-latest-card a span,
[data-theme="dark"] .st-leadership-intro h2,
[data-theme="dark"] .st-ceo-copy blockquote,
[data-theme="dark"] .st-ceo-copy strong,
[data-theme="dark"] .st-person-card h3,
[data-theme="dark"] .st-about-story-copy h2,
[data-theme="dark"] .st-about-mission-card h3,
[data-theme="dark"] .st-about-section-head h2,
[data-theme="dark"] .st-about-leader-card strong {
  color: var(--color-text);
}

[data-theme="dark"] .lux-story-note,
[data-theme="dark"] .lux-story-metric strong,
[data-theme="dark"] .lux-contact-list i,
[data-theme="dark"] .lux-contact-visit i,
[data-theme="dark"] .lux-signal-icon,
[data-theme="dark"] .lux-quality-card i,
[data-theme="dark"] .lux-feature-list i,
[data-theme="dark"] .lux-careers-why-icon,
[data-theme="dark"] .lux-person-role,
[data-theme="dark"] .st-text-link,
[data-theme="dark"] .st-chip,
[data-theme="dark"] .st-news-card a:hover h3,
[data-theme="dark"] .st-latest-card a:hover span,
[data-theme="dark"] .st-person-card > p,
[data-theme="dark"] .st-about-section-label,
[data-theme="dark"] .st-about-leader-card em {
  color: var(--color-leaf-green);
}

[data-theme="dark"] .st-filter-strip,
[data-theme="dark"] .st-news-list-section,
[data-theme="dark"] .st-breadcrumb-strip {
  background: var(--color-bg);
}

[data-theme="dark"] .st-news-search input {
  background: var(--color-surface);
  color: var(--color-text);
}

[data-theme="dark"] .st-map-overlay {
  background: rgba(20, 27, 23, 0.94);
  border-color: rgba(91, 200, 122, 0.18);
}

[data-theme="dark"] .st-map-visual {
  background:
    linear-gradient(rgba(12, 19, 14, 0.78), rgba(12, 19, 14, 0.78)),
    repeating-linear-gradient(45deg, rgba(91, 200, 122, 0.08) 0 1px, transparent 1px 34px),
    repeating-linear-gradient(-45deg, rgba(91, 200, 122, 0.06) 0 1px, transparent 1px 34px),
    var(--color-earth-linen);
}

/* Keep the green CTA card dark enough for the gold heading to read */
[data-theme="dark"] .st-about-final-cta {
  background: linear-gradient(135deg, #143b2a 0%, #0d2e20 100%);
}

[data-theme="dark"] .st-featured-news-copy p,
[data-theme="dark"] .st-news-card p,
[data-theme="dark"] .st-article-body p,
[data-theme="dark"] .st-filter-tabs span,
[data-theme="dark"] .st-breadcrumbs,
[data-theme="dark"] .st-news-card-meta,
[data-theme="dark"] .st-featured-news-copy time,
[data-theme="dark"] .st-article-meta,
[data-theme="dark"] .st-latest-card time {
  color: var(--lux-shell-muted);
}

[data-theme="dark"] .st-related-section {
  background: var(--color-earth-linen);
}

[data-theme="dark"] .st-share-card a {
  border-color: rgba(91, 200, 122, 0.22);
  color: var(--color-text);
}

[data-theme="dark"] .about-switch a {
  color: var(--color-text);
}

[data-theme="dark"] .about-switch a.is-active {
  background: var(--color-leaf-green);
  color: #0b120d;
}

[data-theme="dark"] .st-ceo-copy span {
  color: var(--lux-shell-muted);
}

[data-theme="dark"] .st-about-story,
[data-theme="dark"] .st-about-leadership,
[data-theme="dark"] .st-about-cta-wrap {
  background: var(--color-bg);
}

[data-theme="dark"] .st-about-mission,
[data-theme="dark"] .st-about-mission-card,
[data-theme="dark"] .st-about-story-media > div,
[data-theme="dark"] .st-about-leader-photo,
[data-theme="dark"] .st-leadership-ceo-panel,
[data-theme="dark"] .st-leadership-ceo-photo {
  background: var(--color-surface);
}

[data-theme="dark"] .st-about-prose,
[data-theme="dark"] .st-about-metrics span,
[data-theme="dark"] .st-about-mission-card p {
  color: var(--lux-shell-muted);
}

[data-theme="dark"] .st-leadership-ceo-message blockquote,
[data-theme="dark"] .st-leadership-ceo-message strong {
  color: var(--color-text);
}

[data-theme="dark"] .st-leadership-ceo-message span {
  color: var(--lux-shell-muted);
}

[data-theme="dark"] .lux-contact-card-dark,
[data-theme="dark"] .lux-cta-panel,
[data-theme="dark"] .lux-process-shell,
[data-theme="dark"] .lux-highlight-shell {
  background: rgba(8, 13, 10, 0.96);
}

[data-theme="dark"] .lux-contact-form .field-shell {
  border-bottom-color: rgba(91, 200, 122, 0.22);
}

[data-theme="dark"] .lux-contact-form .field-shell input,
[data-theme="dark"] .lux-contact-form .field-shell select,
[data-theme="dark"] .lux-contact-form .field-shell textarea {
  color: var(--color-text);
}

[data-theme="dark"] .lux-contact-form .field-block label,
[data-theme="dark"] .lux-contact-required,
[data-theme="dark"] .lux-kpi-item span,
[data-theme="dark"] .lux-floating-kpi span {
  color: var(--lux-shell-muted);
}

[data-theme="dark"] .recruitment-table thead th,
[data-theme="dark"] .recruitment-applications-table thead th,
[data-theme="dark"] .recruitment-reviewer-table thead th {
  background: rgba(20, 44, 30, 0.96);
}

@media (max-width: 1080px) {
  .lux-contact-grid,
  .lux-story-grid,
  .lux-infrastructure-grid,
  .lux-careers-cta-card {
    grid-template-columns: 1fr;
  }

  .lux-careers-why-grid,
  .lux-signal-grid,
  .lux-highlight-grid,
  .lux-faq-grid,
  .lux-quality-grid,
  .lux-process-grid,
  .lux-people-grid,
  .st-news-grid,
  .st-newsletter-grid,
  .st-featured-news,
  .st-article-layout,
  .st-leadership-intro-grid,
  .st-ceo-panel,
  .st-about-story-grid,
  .st-about-mission-grid,
  .st-leadership-ceo-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .st-featured-news,
  .st-article-layout,
  .st-newsletter-grid,
  .st-leadership-intro-grid,
  .st-ceo-panel,
  .st-about-story-grid,
  .st-leadership-ceo-panel {
    grid-template-columns: 1fr;
  }

  .st-leadership-ceo-photo {
    min-height: 24rem;
  }

  .st-about-leader-grid,
  .st-about-operations-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hm-hero-grid {
    height: auto;
    min-height: auto;
  }

  .hm-hero-text {
    min-height: auto;
  }

  .hm-hero {
    padding-top: 1rem;
  }

  .hm-hero-media {
    height: auto;
    min-height: 24rem;
    max-height: 30rem;
  }

  .lux-section-heading {
    flex-direction: column;
    align-items: start;
  }

  .lux-page-hero-copy h1 {
    max-width: 11ch;
  }
}

@media (max-width: 760px) {
  .nav-contact-btn {
    display: none;
  }

  .lux-page-hero {
    min-height: 22rem;
  }

  .lux-page-hero-copy {
    padding-top: 6.25rem;
    padding-bottom: 2rem;
  }

  .container {
    width: min(100% - 2rem, var(--stitch-max));
  }

  main {
    padding-top: 72px;
  }

  .nav-wrap {
    min-height: 72px;
  }

  .brand-name {
    max-width: 9.5rem;
    overflow: visible;
    text-overflow: clip;
    font-size: clamp(0.66rem, 2.5vw, 0.78rem);
    letter-spacing: 0.06em;
  }

  .lux-page-hero-copy h1 {
    max-width: 100%;
    font-size: clamp(2.1rem, 10vw, 3.1rem);
  }

  .lux-story-photo-wrap {
    min-height: 21rem;
  }

  .lux-story-metrics,
  .lux-kpi-grid,
  .lux-careers-proof-grid,
  .lux-careers-why-grid,
  .lux-signal-grid,
  .lux-highlight-grid,
  .lux-faq-grid,
  .lux-quality-grid,
  .lux-process-grid,
  .lux-people-grid,
  .st-news-grid,
  .st-newsletter-tiles,
  .st-people-grid,
  .st-people-grid-management,
  .st-about-mission-grid,
  .st-about-leader-grid,
  .st-about-operations-grid,
  .st-about-metrics {
    grid-template-columns: 1fr;
  }

  .st-filter-inner,
  .st-section-title {
    flex-direction: column;
    align-items: stretch;
  }

  .st-news-search {
    flex-basis: auto;
  }

  .st-news-hero {
    min-height: 28rem;
  }

  .st-news-hero-inner {
    padding-bottom: 2rem;
  }

  .st-featured-news {
    margin-bottom: 3.5rem;
  }

  .st-article-hero {
    aspect-ratio: 4 / 3;
  }

  .st-newsletter-tiles article:first-child {
    grid-row: auto;
  }

  .about-switch {
    width: 100%;
  }

  .about-switch a {
    flex: 1 1 0;
    padding-inline: 0.75rem;
    text-align: center;
  }

  .st-about-cta {
    align-items: stretch;
    flex-direction: column;
    border-radius: 1rem;
  }

  .st-about-hero {
    min-height: calc(80vh + 72px);
    margin-top: -72px;
    padding-top: 72px;
  }

  .st-about-story-media > span {
    display: none;
  }

  .st-about-final-cta {
    border-radius: 1rem;
  }

  .st-about-final-cta a {
    width: 100%;
  }

  .hm-hero {
    padding-top: 0.85rem;
    padding-bottom: 1.5rem;
  }

  .hm-hero-media {
    height: auto;
    min-height: 18rem;
    max-height: 22rem;
  }

  .hm-stats-bar {
    transform: none;
    margin-top: 0;
  }

  .lux-contact-form-actions,
  .lux-cta-panel,
  .lux-cta-actions,
  .lux-hero-actions,
  .lux-section-heading,
  .lux-section-heading-centered {
    align-items: stretch;
  }

  .lux-cta-panel,
  .lux-process-shell,
  .lux-contact-card,
  .lux-contact-form-card,
  .lux-contact-visit,
  .lux-careers-why-card,
  .lux-story-copy {
    padding: 1.25rem;
  }

  .lux-floating-kpi {
    position: static;
    margin-top: 1rem;
  }

.lux-careers-cta-card {
    padding: 1rem;
  }
}

/* Stitch fidelity pass: shared shell and public marketing pages */

body[class*="page-"] {
  background:
    radial-gradient(circle at top left, rgba(212, 163, 115, 0.08), transparent 22rem),
    linear-gradient(180deg, #fffdf9 0%, #fbf9f6 26%, #f7f3ee 100%);
}

.page-bg {
  pointer-events: none;
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 12% 12%, rgba(64, 145, 108, 0.08), transparent 18rem),
    radial-gradient(circle at 88% 22%, rgba(212, 163, 115, 0.08), transparent 22rem);
  z-index: -1;
}

.site-main {
  overflow: clip;
}

.site-header {
  border-bottom: 1px solid rgba(193, 200, 194, 0.42);
  background: rgba(255, 252, 248, 0.9);
  box-shadow: 0 16px 40px rgba(18, 21, 19, 0.04);
}

.nav-wrap {
  min-height: 5.25rem;
  gap: 1.5rem;
}

.brand {
  gap: 0.8rem;
}

.brand-logo {
  width: 3rem;
  height: 3rem;
  object-fit: contain;
}

.brand-name {
  gap: 0.14rem;
  max-width: 12rem;
  color: #1b4332;
  font-size: clamp(0.72rem, 0.75vw, 0.84rem);
  letter-spacing: 0.12em;
  line-height: 1.05;
}

.main-nav {
  gap: 1.75rem;
}

.nav-links {
  gap: clamp(1.05rem, 1.8vw, 1.8rem);
}

.main-nav a,
.nav-dropdown-trigger {
  color: #1f2d27;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.main-nav a.active,
.nav-dropdown.is-active .nav-dropdown-trigger,
.nav-dropdown.is-open .nav-dropdown-trigger {
  color: #40916c;
}

.nav-dropdown-menu {
  min-width: 13rem;
  padding: 0.85rem;
  border: 1px solid rgba(193, 200, 194, 0.55);
  border-radius: 1rem;
  background: rgba(255, 252, 248, 0.98);
  box-shadow: 0 18px 38px rgba(27, 67, 50, 0.11);
}

.nav-dropdown-menu a {
  font-size: 0.74rem;
  letter-spacing: 0.08em;
}

.nav-actions {
  gap: 0.75rem;
}

.nav-utility-link {
  padding: 0.4rem 0.7rem;
  color: #6f7b74;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-theme-toggle {
  width: 2.55rem;
  height: 2.55rem;
  border: 1px solid rgba(27, 67, 50, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #1b4332;
  box-shadow: 0 10px 22px rgba(27, 67, 50, 0.08);
}

.lang-switch {
  padding: 0.2rem;
  border: 1px solid rgba(193, 200, 194, 0.6);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
}

.lang-switch button {
  min-width: 2rem;
  padding: 0.42rem 0.5rem;
  color: #637168;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.lang-switch button.is-active {
  background: #1b4332;
  color: #fff;
}

.nav-contact-btn {
  min-height: 2.7rem;
  padding: 0.72rem 1.15rem;
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.74);
  color: #1b4332;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
}

.site-footer {
  margin-top: clamp(5rem, 9vw, 7rem);
  background:
    linear-gradient(180deg, rgba(18, 21, 19, 0.98), rgba(11, 13, 12, 1));
  color: rgba(245, 243, 240, 0.8);
}

.footer-grid {
  gap: clamp(1.75rem, 3vw, 3rem);
  padding-block: clamp(3rem, 6vw, 4.25rem);
}

.footer-brand-row {
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.footer-brand-logo {
  width: 2.5rem;
  height: 2.5rem;
}

.footer-brand-name,
.site-footer h4 {
  color: #fff;
}

.site-footer h4 {
  margin-bottom: 1rem;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-footer ul li + li {
  margin-top: 0.7rem;
}

.site-footer a {
  color: rgba(245, 243, 240, 0.78);
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: #d4a373;
}

.footer-contact-list li {
  gap: 0.75rem;
}

.footer-contact-list .material-symbols-outlined {
  color: #d4a373;
}

.footer-counter-box {
  padding: 1rem 1.05rem;
  border: 1px solid rgba(212, 163, 115, 0.18);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.04);
}

.footer-counter-row + .footer-counter-row {
  margin-top: 0.8rem;
}

.footer-counter-val {
  color: #fff;
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(245, 243, 240, 0.5);
}

.page-home .site-header,
.page-news-detail .site-header {
  background: rgba(255, 253, 249, 0.86);
}

.page-home .hm-hero {
  position: relative;
  padding-top: clamp(1rem, 2vw, 1.5rem);
  padding-bottom: 0;
}

.hm-hero-wash {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at left 24%, rgba(212, 163, 115, 0.08), transparent 34rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));
}

.hm-hero-grid {
  min-height: clamp(35rem, calc(100vh - 112px), 43rem);
  align-items: stretch;
  gap: clamp(1.2rem, 1.8vw, 2rem);
}

.hm-hero-text {
  padding-top: clamp(2.4rem, 4.4vw, 5rem);
  padding-bottom: clamp(3rem, 5vw, 4.5rem);
  justify-content: center;
}

.hm-hero-badge {
  width: fit-content;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(27, 67, 50, 0.08);
  box-shadow: 0 14px 30px rgba(18, 21, 19, 0.05);
}

.hm-hero-badge p {
  color: #4d5f55;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.22em;
}

.hm-pulse-dot {
  width: 0.5rem;
  height: 0.5rem;
  background: #9ddbb9;
}

.hm-hero-text h1 {
  max-width: 10ch;
  margin: 1.3rem 0 1rem;
  color: #0f251d;
  font-size: clamp(3rem, 6vw, 4.6rem);
  line-height: 0.92;
  letter-spacing: -0.055em;
}

.hm-hero-lead {
  max-width: 25rem;
  color: #627067;
  font-size: 1.02rem;
  line-height: 1.9;
}

.hm-hero-actions {
  gap: 0.85rem;
  margin-top: 2rem;
}

.hm-hero-actions .btn,
.hm-dual-cta .btn,
.st-newsletter-band .btn,
.lux-cta-panel .btn,
.lux-careers-cta-card .btn,
.lux-contact-form-actions .btn {
  min-height: 3rem;
  padding-inline: 1.25rem;
  border-radius: 0.7rem;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hm-hero-actions .btn {
  box-shadow: 0 14px 28px rgba(27, 67, 50, 0.12);
}

.hm-hero-media {
  display: flex;
  align-items: stretch;
  min-height: clamp(32rem, calc(100vh - 150px), 40rem);
}

.hm-carousel {
  width: 100%;
  min-height: 100%;
  overflow: hidden;
  border-radius: 0 0 2.8rem 2.8rem;
  background: #efe9e0;
  box-shadow: 0 32px 80px rgba(27, 67, 50, 0.16);
  isolation: isolate;
}

.hero-slide {
  height: 100%;
  border-radius: inherit;
  overflow: hidden;
}

.hero-slide img {
  width: 100%;
  height: clamp(19rem, 32vw, 23rem);
  object-fit: cover;
  object-position: center;
}

.hm-slide-gradient {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 62%, rgba(255, 255, 255, 0.14) 100%);
}

.hm-carousel-controls {
  inset-inline: clamp(1rem, 2vw, 2rem);
  bottom: 1.15rem;
}

.hm-carousel-btn {
  width: 2.8rem;
  height: 2.8rem;
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(17, 20, 18, 0.16);
  backdrop-filter: blur(10px);
}

.hm-carousel-dot {
  width: 2.85rem;
  height: 0.18rem;
  border-radius: 999px;
}

.hm-stats-bar {
  position: relative;
  z-index: 2;
  margin-top: -4rem;
  padding-inline: var(--stitch-gutter);
}

.hm-stats-inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  padding: 1.35rem 1.6rem;
  border: 1px solid rgba(217, 221, 216, 0.84);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 24px 60px rgba(18, 21, 19, 0.1);
}

.hm-stat {
  padding: 0.8rem 1.2rem;
  text-align: center;
}

.hm-stat-bordered {
  border-left: 1px solid rgba(193, 200, 194, 0.45);
}

.hm-stat-icon {
  width: 3.25rem;
  height: 3.25rem;
  margin: 0 auto 0.7rem;
  border-radius: 50%;
  background: rgba(156, 223, 191, 0.16);
  color: #40916c;
}

.hm-stat h2 {
  margin-bottom: 0.35rem;
  color: #153026;
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.hm-stat p {
  color: #5e6c63;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hm-section-center .eyebrow,
.hm-news-header .eyebrow,
.st-about-section-label,
.lux-section-heading .eyebrow,
.lux-form-head .eyebrow,
.st-breadcrumbs,
.st-about-kicker,
.lux-page-hero-kicker {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hm-ops-grid,
.hm-news-grid,
.hm-bento,
.hm-dual-grid {
  gap: 1.5rem;
}

.hm-ops-card,
.hm-news-card,
.hm-cta-light,
.hm-cta-dark {
  border-radius: 1rem;
}

.hm-news-card,
.hm-ops-card {
  border: 1px solid rgba(220, 224, 220, 0.85);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 42px rgba(18, 21, 19, 0.05);
}

.hm-news-img {
  aspect-ratio: 1.18;
}

.hm-bento-item {
  border-radius: 0.85rem;
}

.hm-dual-cta {
  padding-bottom: clamp(3rem, 6vw, 4.5rem);
}

.hm-cta-dark,
.hm-cta-light {
  min-height: 18rem;
  box-shadow: 0 24px 58px rgba(27, 67, 50, 0.11);
}

.hm-cta-dark {
  background: linear-gradient(135deg, #113b2c 0%, #0c2e21 100%);
}

.hm-cta-light {
  border: 1px solid rgba(219, 223, 220, 0.82);
  background: rgba(255, 255, 255, 0.78);
}

.page-about .st-about-hero,
.page-leadership .st-about-hero {
  min-height: clamp(34rem, 76vh, 43rem);
  margin-top: -80px;
  padding-top: 80px;
}

.st-about-hero-bg::after,
.st-leadership-page-hero .st-about-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(22, 90, 60, 0.82), rgba(19, 101, 63, 0.84));
}

.st-about-hero-copy {
  max-width: 44rem;
  text-align: center;
}

.st-about-hero-copy h1 {
  max-width: 13ch;
  margin-inline: auto;
  font-size: clamp(2.6rem, 4.6vw, 4.55rem);
  line-height: 1.02;
}

.st-about-hero-copy p {
  max-width: 40rem;
  margin-inline: auto;
}

.st-about-story-grid {
  align-items: center;
  gap: clamp(2rem, 4vw, 5rem);
}

.st-about-story-copy {
  max-width: 34rem;
}

.st-about-prose p {
  color: #5a655f;
}

.st-about-metrics {
  gap: 2rem;
}

.st-about-metrics strong {
  font-size: clamp(2rem, 3vw, 2.75rem);
}

.st-about-story-media > div {
  box-shadow: 0 28px 68px rgba(27, 67, 50, 0.16);
}

.st-about-story-media > span {
  width: clamp(9rem, 16vw, 13rem);
  height: clamp(9rem, 16vw, 13rem);
  opacity: 0.18;
}

.st-about-mission-card {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 22px 50px rgba(18, 21, 19, 0.06);
}

.st-about-leader-card {
  background: transparent;
}

.st-about-leader-photo {
  border-radius: 1rem;
  box-shadow: 0 18px 42px rgba(27, 67, 50, 0.08);
}

.st-leadership-ceo-section .container,
.st-leadership-management-section .container,
.st-leadership-first-section .container {
  display: grid;
  gap: 2rem;
}

.st-leadership-ceo-panel {
  display: grid;
  grid-template-columns: minmax(15rem, 20rem) minmax(0, 1fr);
  gap: clamp(1.5rem, 3vw, 3rem);
  padding: clamp(1.25rem, 2.3vw, 1.9rem);
  border: 1px solid rgba(193, 200, 194, 0.5);
  border-radius: 1.35rem;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 28px 64px rgba(18, 21, 19, 0.08);
}

.st-leadership-ceo-photo {
  min-height: 24rem;
  border-radius: 1rem;
  overflow: hidden;
  background: #ecf0eb;
}

.st-leadership-ceo-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.st-leadership-ceo-message {
  align-self: center;
}

.st-leadership-ceo-message h2 {
  margin: 0 0 1rem;
  color: #163126;
  font-size: clamp(2rem, 3.2vw, 3rem);
}

.st-leadership-ceo-message blockquote {
  color: #48564f;
  font-size: clamp(1rem, 1.55vw, 1.22rem);
  line-height: 1.95;
}

.st-leadership-ceo-message footer {
  display: grid;
  gap: 0.25rem;
  margin-top: 1.25rem;
}

.st-leadership-quote-band {
  padding-top: 0;
}

.st-leadership-quote-card {
  padding: 1.2rem 1.5rem;
  border-left: 4px solid #40916c;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.72);
}

.st-leadership-quote-card p {
  margin: 0;
  color: #284338;
  font-size: 1.05rem;
  line-height: 1.8;
}

.page-products .lux-page-hero,
.page-careers .lux-page-hero,
.page-contact .lux-page-hero {
  margin-top: -80px;
  padding-top: 80px;
}

.page-products .lux-page-hero {
  min-height: clamp(31rem, 68vh, 40rem);
}

.page-products .lux-page-hero-copy {
  text-align: center;
}

.page-products .lux-page-hero-copy h1 {
  max-width: 12ch;
  margin-inline: auto;
  font-size: clamp(2.8rem, 5vw, 4.9rem);
  line-height: 1;
}

.page-products .lux-page-hero-copy .lead {
  max-width: 44rem;
  margin-inline: auto;
}

.lux-kpi-band {
  background: #194a36;
}

.lux-kpi-item {
  padding-block: 1.65rem;
}

.lux-kpi-item strong {
  color: #fff;
}

.lux-kpi-item span {
  color: rgba(238, 246, 240, 0.72);
}

.lux-product-card {
  overflow: hidden;
}

.lux-product-card .product-media {
  background: #f3f0ea;
}

.lux-product-card .product-head {
  margin-bottom: 0.35rem;
}

.page-products .section-cream {
  background: rgba(18, 67, 50, 0.04);
}

.lux-quality-grid {
  gap: 2rem;
}

.lux-quality-card {
  align-items: center;
  text-align: center;
  background: transparent;
  box-shadow: none;
}

.lux-cta-section {
  padding-bottom: 0;
}

.lux-cta-panel {
  border-radius: 1.35rem;
  background: #131614;
}

.lux-cta-panel p,
.lux-cta-panel h2,
.lux-eyebrow-light {
  color: #f7f3ee;
}

.page-careers .lux-careers-hero {
  min-height: clamp(33rem, 74vh, 44rem);
}

.page-careers .lux-page-hero-copy {
  max-width: 36rem;
}

.page-careers .lux-page-hero-copy h1 {
  max-width: 11ch;
  font-size: clamp(2.75rem, 4.8vw, 4.5rem);
}

.page-careers .lux-hero-actions {
  margin-top: 2rem;
}

.careers-portal-notice {
  margin-top: -2.8rem;
  border-radius: 1rem;
  border: 1px solid rgba(193, 200, 194, 0.55);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 22px 48px rgba(18, 21, 19, 0.08);
}

.careers-toolbar {
  display: grid;
  gap: 1.25rem;
  padding: 1.4rem 1.45rem;
  border: 1px solid rgba(193, 200, 194, 0.5);
  border-radius: 1.35rem;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 42px rgba(18, 21, 19, 0.05);
}

.careers-search,
.careers-filters {
  display: grid;
  gap: 1rem;
}

.careers-search {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
}

.careers-search-field,
.careers-filter-control {
  border-radius: 0.9rem;
  background: #fff;
}

.careers-filter-control select,
.careers-search-field input {
  min-height: 3.1rem;
}

.job-list-item {
  border: 1px solid rgba(193, 200, 194, 0.5);
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 34px rgba(18, 21, 19, 0.04);
}

.job-list-link {
  gap: 1.25rem;
}

.job-list-heading h2 {
  font-size: clamp(1.3rem, 2vw, 1.75rem);
}

.job-list-summary {
  color: #607066;
}

.lux-process-shell {
  border-radius: 1.6rem;
  background: linear-gradient(135deg, #153929, #143222 60%, #184a35 100%);
}

.lux-process-step strong {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.lux-process-step.is-current strong {
  background: #d4a373;
  color: #163126;
}

.page-contact .lux-contact-hero {
  min-height: clamp(22rem, 48vh, 30rem);
}

.page-contact .lux-page-hero-copy {
  text-align: center;
}

.page-contact .lux-page-hero-copy h1 {
  max-width: none;
  font-size: clamp(2.75rem, 5vw, 4.7rem);
}

.page-contact .lux-page-hero-copy .lead {
  max-width: 42rem;
  margin-inline: auto;
}

.lux-contact-grid {
  align-items: start;
}

.lux-contact-card,
.lux-contact-form-card {
  border-radius: 1.25rem;
}

.lux-contact-card-dark {
  background: linear-gradient(180deg, #194b36, #133726);
}

.st-map-section {
  padding-top: 1rem;
}

.st-map-card {
  max-width: 22rem;
  margin-inline: auto;
  box-shadow: 0 22px 52px rgba(18, 21, 19, 0.08);
}

.page-news .st-news-hero {
  min-height: clamp(28rem, 70vh, 38rem);
}

.page-news .st-news-hero-inner {
  padding-bottom: clamp(2.5rem, 7vw, 4rem);
}

.page-news .st-news-hero-inner h1 {
  max-width: 10ch;
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  line-height: 1;
}

.st-filter-strip {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(10px);
}

.st-filter-tabs {
  gap: 1rem;
}

.st-filter-tabs span {
  padding-bottom: 0.35rem;
  color: #6a756e;
  font-size: 0.76rem;
  font-weight: 700;
}

.st-filter-tabs .is-active {
  color: #40916c;
}

.st-news-grid {
  gap: 2rem 1.6rem;
}

.st-news-card a {
  display: block;
}

.st-news-card-media {
  margin-bottom: 1rem;
  border-radius: 0.9rem;
}

.st-news-card h3 {
  font-size: clamp(1.25rem, 1.9vw, 1.65rem);
  line-height: 1.2;
}

.st-news-card p {
  color: #5f6c66;
}

.st-newsletter-band {
  margin-top: clamp(4rem, 7vw, 6rem);
  background: #131614;
}

.st-newsletter-grid {
  align-items: center;
}

.st-newsletter-tiles article {
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.05);
}

.page-news-detail .st-breadcrumb-strip {
  background: rgba(255, 255, 255, 0.72);
}

.page-news-detail .st-article-header {
  padding-top: clamp(2.5rem, 4vw, 3.5rem);
}

.page-news-detail .st-article-header h1 {
  max-width: 14ch;
  font-size: clamp(2.7rem, 4.6vw, 4.3rem);
  line-height: 1.02;
}

.page-news-detail .st-article-layout {
  align-items: start;
}

.st-article-body {
  max-width: 48rem;
}

.st-article-body p {
  color: #44514a;
}

.st-share-card,
.st-latest-card {
  border: 1px solid rgba(193, 200, 194, 0.5);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 16px 36px rgba(18, 21, 19, 0.05);
}

.st-share-card a,
.st-latest-card a {
  border-radius: 0.75rem;
}

.st-related-section {
  padding-top: clamp(4rem, 6vw, 5rem);
}

[data-theme="dark"] body[class*="page-"] {
  background:
    radial-gradient(circle at top left, rgba(156, 223, 191, 0.08), transparent 22rem),
    linear-gradient(180deg, #0f1512 0%, #111814 42%, #131b17 100%);
}

[data-theme="dark"] .page-bg {
  background:
    radial-gradient(circle at 14% 14%, rgba(64, 145, 108, 0.12), transparent 16rem),
    radial-gradient(circle at 84% 18%, rgba(212, 163, 115, 0.08), transparent 20rem);
}

[data-theme="dark"] .site-header,
[data-theme="dark"] .nav-dropdown-menu,
[data-theme="dark"] .hm-stats-inner,
[data-theme="dark"] .careers-toolbar,
[data-theme="dark"] .job-list-item,
[data-theme="dark"] .st-share-card,
[data-theme="dark"] .st-latest-card,
[data-theme="dark"] .st-map-card,
[data-theme="dark"] .st-about-mission-card,
[data-theme="dark"] .st-leadership-ceo-panel,
[data-theme="dark"] .st-leadership-quote-card {
  background: rgba(20, 27, 23, 0.92);
}

[data-theme="dark"] .nav-utility-link,
[data-theme="dark"] .hm-hero-lead,
[data-theme="dark"] .st-news-card p,
[data-theme="dark"] .st-article-body p,
[data-theme="dark"] .job-list-summary,
[data-theme="dark"] .st-about-prose p {
  color: rgba(232, 241, 231, 0.74);
}

[data-theme="dark"] .main-nav a,
[data-theme="dark"] .nav-dropdown-trigger,
[data-theme="dark"] .brand-name,
[data-theme="dark"] .job-list-heading h2,
[data-theme="dark"] .st-leadership-ceo-message h2 {
  color: #f3f6f1;
}

[data-theme="dark"] .main-nav a.active,
[data-theme="dark"] .nav-dropdown.is-active .nav-dropdown-trigger,
[data-theme="dark"] .nav-dropdown.is-open .nav-dropdown-trigger {
  color: #9ddbb9;
}

[data-theme="dark"] .hm-news-card,
[data-theme="dark"] .hm-ops-card,
[data-theme="dark"] .hm-cta-light {
  border-color: rgba(91, 200, 122, 0.16);
  background: rgba(20, 27, 23, 0.92);
}

[data-theme="dark"] .hm-stat-bordered {
  border-left-color: rgba(91, 200, 122, 0.16);
}

[data-theme="dark"] .hm-stat h2 {
  color: #f3f6f1;
}

[data-theme="dark"] .hm-stat p {
  color: rgba(232, 241, 231, 0.74);
}

@media (max-width: 960px) {
  .nav-wrap {
    min-height: 4.8rem;
  }

  .main-nav {
    padding: 1rem;
    border: 1px solid rgba(193, 200, 194, 0.36);
    border-radius: 1.1rem;
    background: rgba(255, 252, 248, 0.98);
    box-shadow: 0 24px 54px rgba(18, 21, 19, 0.1);
  }

  .nav-links {
    gap: 0.35rem;
  }

  .main-nav a,
  .nav-dropdown-trigger {
    font-size: 0.76rem;
  }

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

  .nav-contact-btn,
  .nav-utility-link,
  .nav-theme-toggle,
  .lang-switch {
    justify-content: center;
  }

  .hm-hero-grid,
  .hm-stats-inner,
  .st-leadership-ceo-panel,
  .careers-search {
    grid-template-columns: 1fr;
  }

  .hm-hero-text {
    padding-bottom: 1rem;
  }

  .hm-hero-media {
    min-height: auto;
  }

  .hm-carousel {
    border-radius: 1.4rem;
  }

  .hm-stats-bar {
    margin-top: -1.2rem;
    padding-inline: 1rem;
  }

  .hm-stat-bordered {
    border-left: 0;
    border-top: 1px solid rgba(193, 200, 194, 0.45);
  }

  .st-about-story-grid,
  .st-about-mission-grid,
  .lux-contact-grid {
    gap: 1.5rem;
  }

  .careers-portal-notice {
    margin-top: 0;
  }
}

@media (max-width: 720px) {
  .site-main {
    padding-top: 4.8rem;
  }

  .brand-logo {
    width: 2.5rem;
    height: 2.5rem;
  }

  .brand-name {
    max-width: 8.7rem;
    font-size: 0.62rem;
  }

  .page-home .hm-hero {
    padding-top: 0;
  }

  .hm-hero-text h1,
  .st-about-hero-copy h1,
  .page-products .lux-page-hero-copy h1,
  .page-careers .lux-page-hero-copy h1,
  .page-contact .lux-page-hero-copy h1,
  .page-news .st-news-hero-inner h1,
  .page-news-detail .st-article-header h1 {
    font-size: clamp(2.2rem, 11vw, 3rem);
  }

  .hm-hero-lead,
  .st-about-hero-copy p,
  .page-products .lux-page-hero-copy .lead,
  .page-contact .lux-page-hero-copy .lead {
    font-size: 0.95rem;
    line-height: 1.75;
  }

  .hero-slide img {
    height: 16rem;
  }

  .hm-carousel-controls {
    bottom: 0.85rem;
  }

  .st-about-story-media > span {
    display: none;
  }

  .st-newsletter-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* Public-page refinement pass: layout flow, form alignment, and contrast. */

.nav-wrap {
  gap: clamp(0.75rem, 1.4vw, 1.35rem);
}

.main-nav {
  gap: clamp(0.75rem, 1.2vw, 1.15rem);
}

.nav-links {
  gap: clamp(0.7rem, 1.15vw, 1.15rem);
}

.brand-name {
  max-width: 9.25rem;
  font-size: clamp(0.68rem, 0.7vw, 0.78rem);
  letter-spacing: 0.09em;
}

.hm-hero-text {
  padding-top: clamp(2rem, 3vw, 3.25rem);
  padding-bottom: clamp(2rem, 3vw, 3.25rem);
}

.hm-hero-text h1 {
  max-width: 11ch;
  font-size: clamp(3rem, 4.65vw, 3.7rem);
  line-height: 0.96;
}

.hm-hero-actions {
  margin-top: 1.25rem;
}

@media (min-width: 1081px) {
  .page-home .hm-hero-grid {
    height: clamp(41rem, calc(100vh - 64px), 44rem);
  }

  .page-home .hm-hero-media {
    height: 100%;
    min-height: 0;
  }
}

.page-home .hm-stats-bar {
  position: relative;
  z-index: 2;
  margin: 0;
  padding: clamp(1.75rem, 3vw, 2.75rem) var(--stitch-gutter) clamp(2.75rem, 5vw, 4.5rem);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transform: none;
}

.page-home .hm-stats-inner {
  width: min(100%, var(--stitch-max));
}

.page-home .hm-operations {
  padding-top: clamp(4.5rem, 7vw, 6.5rem);
}

.page-home .hm-news-img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
}

.page-home .hm-news-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-leadership .st-leadership-quote-band {
  position: relative;
  z-index: 2;
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: var(--color-bg);
}

.page-leadership .st-leadership-quote-card {
  max-width: 64rem;
  margin-inline: auto;
  padding: clamp(1.5rem, 3vw, 2.25rem) clamp(1.5rem, 4vw, 3rem);
  border: 1px solid rgba(64, 145, 108, 0.16);
  border-left: 5px solid var(--color-leaf-green);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 20px 48px rgba(18, 21, 19, 0.06);
}

.page-leadership .st-leadership-quote-card p {
  margin: 0;
  color: var(--color-deep-forest);
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(1.25rem, 2.2vw, 1.8rem);
  line-height: 1.55;
}

.page-products .lux-cta-section {
  padding: clamp(4.5rem, 8vw, 6.5rem) 0;
  background:
    radial-gradient(circle at 12% 20%, rgba(212, 163, 115, 0.12), transparent 22rem),
    linear-gradient(135deg, #101512 0%, #14251d 100%);
}

.page-products .lux-cta-panel {
  width: min(100%, 52rem);
  margin-inline: auto;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  text-align: center;
}

.page-products .lux-cta-copy {
  max-width: 44rem;
  margin-inline: auto;
}

.page-products .lux-cta-copy .eyebrow {
  color: #f0bf78;
}

.page-products .lux-cta-copy h2 {
  max-width: 18ch;
  margin: 0.7rem auto 1rem;
  color: #fff;
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  line-height: 1.05;
}

.page-products .lux-cta-copy p:last-child {
  max-width: 38rem;
  margin: 0 auto;
  color: rgba(245, 248, 245, 0.78);
  font-size: 1.05rem;
  line-height: 1.7;
}

.page-products .lux-cta-actions {
  justify-content: center;
  align-items: center;
}

.page-products .lux-cta-actions .btn-ghost {
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
}

.page-products .lux-cta-actions .btn-ghost:hover,
.page-products .lux-cta-actions .btn-ghost:focus-visible {
  border-color: #f0bf78;
  background: #f0bf78;
  color: #12261d;
}

.page-products .site-footer {
  margin-top: 0;
}

.page-careers .lux-careers-why-card-dark {
  background: linear-gradient(145deg, #143b2a 0%, #0d2e20 100%);
}

.page-careers .lux-careers-why-card-dark h3 {
  color: #f0bf78;
}

.page-careers .lux-careers-why-card-dark p {
  color: #f3f7f3;
}

.page-careers .lux-careers-why-card-dark .lux-careers-why-icon {
  border: 1px solid rgba(240, 191, 120, 0.24);
  background: rgba(240, 191, 120, 0.1);
  color: #f0bf78;
}

.page-careers .section {
  padding-block: clamp(2.5rem, 4.5vw, 4rem);
}

.page-careers .lux-process-section {
  padding-bottom: clamp(2rem, 3.5vw, 3.5rem);
}

.page-careers .lux-profile-ready-section {
  padding-top: clamp(2rem, 3.5vw, 3.5rem);
}

.page-contact .lux-contact-main-section {
  padding-block: clamp(4rem, 7vw, 6rem);
}

.page-contact .lux-contact-grid {
  grid-template-columns: minmax(18rem, 0.78fr) minmax(0, 1.65fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: stretch;
}

.page-contact .lux-contact-sidebar {
  align-content: start;
  gap: 1.5rem;
}

.page-contact .lux-contact-card,
.page-contact .lux-contact-form-card {
  padding: clamp(1.5rem, 3vw, 2.25rem);
}

.page-contact .lux-contact-form-card {
  display: flex;
  flex-direction: column;
}

.page-contact .lux-contact-form {
  display: grid;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.page-contact .contact-form-row {
  gap: 1rem 1.25rem;
}

.page-contact .lux-contact-form .field-block {
  gap: 0.55rem;
}

.page-contact .lux-contact-form .field-shell {
  min-height: 3.35rem;
}

.page-contact .lux-contact-form .field-icon {
  left: 0.25rem;
  width: 2rem;
  height: 2rem;
  background: rgba(64, 145, 108, 0.1);
  color: var(--color-leaf-green);
  font-size: 0.9rem;
}

.page-contact .lux-contact-form .field-shell input,
.page-contact .lux-contact-form .field-shell select,
.page-contact .lux-contact-form .field-shell textarea {
  width: 100%;
  padding: 0.9rem 0.25rem 0.75rem 2.75rem;
  color: var(--color-text);
  line-height: 1.5;
}

.page-contact .lux-contact-form .field-shell textarea {
  min-height: 9rem;
  resize: vertical;
}

.page-contact .lux-contact-form .field-shell.is-textarea .field-icon {
  top: 0.8rem;
  transform: none;
}

.page-contact .lux-contact-form input::placeholder,
.page-contact .lux-contact-form textarea::placeholder {
  color: color-mix(in srgb, var(--color-muted) 78%, transparent);
  opacity: 1;
}

.page-contact .lux-contact-form-actions {
  justify-content: space-between;
  gap: 1rem 1.5rem;
  padding-top: 0.25rem;
}

.page-contact .st-map-section {
  padding: 0 0 clamp(4rem, 7vw, 6rem);
}

.page-contact .st-map-card {
  width: 100%;
  max-width: none;
  min-height: clamp(22rem, 38vw, 28rem);
  margin: 0;
  border: 1px solid rgba(64, 145, 108, 0.14);
  border-radius: 1.35rem;
}

.page-contact .st-map-overlay {
  width: min(calc(100% - 2rem), 34rem);
}

.page-contact .lux-contact-faq-section {
  padding-block: clamp(4rem, 7vw, 6rem);
  background: rgba(255, 255, 255, 0.42);
}

.page-contact .lux-faq-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.page-contact .site-footer {
  margin-top: 0;
}

[data-theme="dark"] .page-leadership .st-leadership-quote-band {
  background: var(--color-bg);
}

[data-theme="dark"] .page-leadership .st-leadership-quote-card {
  border-color: rgba(91, 200, 122, 0.18);
  border-left-color: #9ddbb9;
  background: rgba(20, 27, 23, 0.92);
}

[data-theme="dark"] .page-leadership .st-leadership-quote-card p {
  color: #f3f6f1;
}

[data-theme="dark"] .page-contact .lux-contact-form .field-icon {
  background: rgba(91, 200, 122, 0.12);
  color: #9ddbb9;
}

[data-theme="dark"] .page-contact .lux-contact-faq-section {
  background: rgba(255, 255, 255, 0.02);
}

@media (max-width: 960px) {
  .page-home .hm-hero-media {
    height: clamp(20rem, 60vw, 28rem);
    min-height: clamp(20rem, 60vw, 28rem);
    max-height: none;
  }

  .page-home .hm-carousel {
    height: 100%;
    min-height: 100%;
  }

  .page-home .hm-stats-bar {
    margin: 0;
    padding-inline: 1rem;
    transform: none;
  }

  .hm-hero-text h1 {
    max-width: 12ch;
  }

  .page-products .lux-cta-panel {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .page-products .lux-cta-actions {
    justify-content: center;
  }

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

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

@media (max-width: 720px) {
  .page-home .hm-stats-inner,
  .page-contact .lux-contact-sidebar,
  .page-contact .contact-form-row,
  .page-contact .lux-faq-grid {
    grid-template-columns: 1fr;
  }

  .page-home .hm-stat {
    padding-block: 1.25rem;
  }

  .page-products .lux-cta-actions,
  .page-contact .lux-contact-form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .page-products .lux-cta-actions .btn,
  .page-contact .lux-contact-form-actions .btn {
    width: 100%;
  }

  .page-contact .lux-contact-main-section,
  .page-contact .lux-contact-faq-section {
    padding-block: 3.5rem;
  }

  .page-contact .lux-contact-card,
  .page-contact .lux-contact-form-card {
    padding: 1.25rem;
  }

  .page-contact .st-map-card {
    min-height: 24rem;
  }
}

/* Navigation refinement: one shared state system across desktop and mobile. */

.site-header {
  background: rgba(255, 253, 249, 0.94);
  border-bottom: 1px solid rgba(27, 67, 50, 0.09);
  box-shadow: 0 10px 30px rgba(18, 21, 19, 0.045);
}

.nav-wrap {
  min-height: 4.9rem;
  padding-block: 0.72rem;
}

.main-nav {
  gap: clamp(0.65rem, 1vw, 1rem);
}

.nav-links {
  gap: clamp(0.18rem, 0.45vw, 0.42rem);
}

.main-nav .nav-links > a,
.main-nav .nav-dropdown-trigger,
.main-nav .nav-utility-link {
  min-height: 2.55rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.62rem 0.78rem;
  border: 1px solid transparent;
  border-radius: 0.72rem;
  background: transparent;
  color: #26362f;
  font-family: "Source Sans 3", sans-serif;
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.065em;
  text-transform: uppercase;
  box-shadow: none;
  transition:
    color 160ms ease,
    background-color 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.main-nav .nav-links > a:hover,
.main-nav .nav-dropdown-trigger:hover,
.main-nav .nav-dropdown.is-open .nav-dropdown-trigger,
.main-nav .nav-dropdown:focus-within .nav-dropdown-trigger,
.main-nav .nav-utility-link:hover {
  border-color: rgba(64, 145, 108, 0.18);
  background: rgba(64, 145, 108, 0.075);
  color: #2d7655;
  box-shadow: none;
}

.main-nav .nav-links > a.active,
.main-nav .nav-dropdown.is-active .nav-dropdown-trigger,
.main-nav .nav-dropdown.is-open .nav-dropdown-trigger {
  padding: 0.62rem 0.78rem;
  border: 1px solid rgba(64, 145, 108, 0.24) !important;
  border-radius: 0.72rem;
  background: rgba(64, 145, 108, 0.12);
  color: #245d44;
  font-weight: 800;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.66);
}

.main-nav .nav-links > a:focus-visible,
.main-nav .nav-dropdown-trigger:focus-visible,
.main-nav .nav-utility-link:focus-visible,
.nav-theme-toggle:focus-visible,
.lang-switch button:focus-visible,
.nav-toggle:focus-visible {
  outline: 2px solid #c49146;
  outline-offset: 2px;
}

.main-nav a[aria-disabled="true"],
.main-nav button:disabled,
.lang-switch button:disabled {
  opacity: 0.46;
  cursor: not-allowed;
  pointer-events: none;
}

.nav-dropdown-trigger i {
  font-size: 0.68rem;
  transition: transform 160ms ease;
}

.nav-dropdown.is-open .nav-dropdown-trigger i,
.nav-dropdown:focus-within .nav-dropdown-trigger i {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  top: calc(100% + 0.6rem);
  min-width: 14rem;
  gap: 0.25rem;
  padding: 0.55rem;
  border: 1px solid rgba(27, 67, 50, 0.12);
  border-radius: 0.95rem;
  background: rgba(255, 253, 249, 0.98);
  box-shadow: 0 18px 44px rgba(18, 35, 27, 0.13);
}

.main-nav .nav-dropdown-menu a {
  min-height: 2.65rem;
  display: flex;
  align-items: center;
  padding: 0.7rem 0.78rem;
  border: 1px solid transparent;
  border-radius: 0.68rem;
  color: #34463d;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.045em;
  text-transform: none;
}

.main-nav .nav-dropdown-menu a:hover,
.main-nav .nav-dropdown-menu a:focus-visible {
  border-color: rgba(64, 145, 108, 0.16);
  background: rgba(64, 145, 108, 0.075);
  color: #2d7655;
}

.main-nav .nav-dropdown-menu a.active {
  border: 1px solid rgba(64, 145, 108, 0.22) !important;
  border-radius: 0.68rem;
  background: rgba(64, 145, 108, 0.12);
  color: #245d44;
}

.nav-actions {
  gap: 0.5rem;
}

.main-nav .nav-utility-link {
  color: #596a61;
  font-size: 0.78rem;
}

.nav-theme-toggle {
  width: 2.55rem;
  height: 2.55rem;
  flex: 0 0 2.55rem;
  border: 1px solid rgba(27, 67, 50, 0.13);
  background: rgba(255, 255, 255, 0.78);
  color: #1b4332;
  box-shadow: none;
  transition:
    color 160ms ease,
    background-color 160ms ease,
    border-color 160ms ease,
    transform 160ms ease;
}

.nav-theme-toggle:hover {
  border-color: rgba(64, 145, 108, 0.24);
  background: rgba(64, 145, 108, 0.08);
  color: #2d7655;
  transform: translateY(-1px);
}

.lang-switch {
  gap: 0.1rem;
  padding: 0.2rem;
  border: 1px solid rgba(27, 67, 50, 0.13);
  border-radius: 0.78rem;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: none;
}

.lang-switch button {
  min-width: 2rem;
  min-height: 2.1rem;
  padding: 0.42rem 0.52rem;
  border: 1px solid transparent;
  border-radius: 0.58rem;
  color: #627169;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.lang-switch button:hover {
  border-color: rgba(64, 145, 108, 0.15);
  background: rgba(64, 145, 108, 0.07);
  color: #2d7655;
}

.lang-switch button.is-active {
  border-color: #285d45;
  background: #285d45;
  color: #fff;
  box-shadow: none;
}

.nav-toggle {
  width: 2.7rem;
  height: 2.7rem;
  border: 1px solid rgba(27, 67, 50, 0.14);
  border-radius: 0.72rem;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 8px 20px rgba(27, 67, 50, 0.07);
}

[data-theme="dark"] .site-header {
  background: rgba(17, 25, 20, 0.94);
  border-bottom-color: rgba(91, 200, 122, 0.12);
}

[data-theme="dark"] .main-nav .nav-links > a,
[data-theme="dark"] .main-nav .nav-dropdown-trigger,
[data-theme="dark"] .main-nav .nav-utility-link {
  color: rgba(239, 245, 239, 0.82);
}

[data-theme="dark"] .main-nav .nav-links > a:hover,
[data-theme="dark"] .main-nav .nav-dropdown-trigger:hover,
[data-theme="dark"] .main-nav .nav-dropdown.is-open .nav-dropdown-trigger,
[data-theme="dark"] .main-nav .nav-dropdown:focus-within .nav-dropdown-trigger,
[data-theme="dark"] .main-nav .nav-utility-link:hover,
[data-theme="dark"] .main-nav .nav-links > a.active,
[data-theme="dark"] .main-nav .nav-dropdown.is-active .nav-dropdown-trigger {
  border-color: rgba(91, 200, 122, 0.2) !important;
  background: rgba(91, 200, 122, 0.11);
  color: #9ddbb9;
}

[data-theme="dark"] .nav-theme-toggle,
[data-theme="dark"] .lang-switch {
  border-color: rgba(91, 200, 122, 0.16);
  background: rgba(255, 255, 255, 0.045);
}

[data-theme="dark"] .lang-switch button {
  color: rgba(239, 245, 239, 0.72);
}

[data-theme="dark"] .lang-switch button.is-active {
  border-color: #9ddbb9;
  background: #9ddbb9;
  color: #102219;
}

[data-theme="dark"] .nav-dropdown-menu {
  border-color: rgba(91, 200, 122, 0.15);
  background: rgba(18, 29, 22, 0.99);
}

[data-theme="dark"] .main-nav .nav-dropdown-menu a {
  color: rgba(239, 245, 239, 0.8);
}

[data-theme="dark"] .main-nav .nav-dropdown-menu a:hover,
[data-theme="dark"] .main-nav .nav-dropdown-menu a:focus-visible,
[data-theme="dark"] .main-nav .nav-dropdown-menu a.active {
  border-color: rgba(91, 200, 122, 0.19) !important;
  background: rgba(91, 200, 122, 0.11);
  color: #9ddbb9;
}

@media (max-width: 960px) {
  .nav-wrap {
    min-height: 4.75rem;
    padding-block: 0.6rem;
  }

  .main-nav {
    top: calc(100% + 0.5rem);
    gap: 0.65rem;
    max-height: calc(100vh - 6rem);
    overflow-y: auto;
    padding: 0.72rem;
    border: 1px solid rgba(27, 67, 50, 0.12);
    border-radius: 1rem;
    background: rgba(255, 253, 249, 0.99);
    box-shadow: 0 22px 50px rgba(18, 35, 27, 0.16);
  }

  .nav-links {
    gap: 0.28rem;
    margin: 0;
    padding-bottom: 0.65rem;
    border-bottom: 1px solid rgba(27, 67, 50, 0.1);
  }

  .main-nav .nav-links > a,
  .main-nav .nav-dropdown-trigger {
    width: 100%;
    min-height: 2.85rem;
    justify-content: space-between;
    padding: 0.78rem 0.85rem;
    border-radius: 0.78rem;
    font-size: 0.88rem;
    text-align: left;
  }

  .main-nav .nav-links > a.active,
  .main-nav .nav-dropdown.is-active .nav-dropdown-trigger,
  .main-nav .nav-dropdown.is-open .nav-dropdown-trigger {
    padding: 0.78rem 0.85rem;
    border-radius: 0.78rem;
  }

  .nav-dropdown-menu {
    margin: 0.3rem 0 0.15rem 0.8rem;
    padding: 0.15rem 0 0.15rem 0.65rem;
    border: 0;
    border-left: 2px solid rgba(64, 145, 108, 0.18);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .main-nav .nav-dropdown-menu a {
    min-height: 2.5rem;
    padding: 0.65rem 0.75rem;
    border-radius: 0.65rem;
  }

  .nav-actions {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 0.5rem;
    align-items: center;
  }

  .main-nav .nav-utility-link {
    width: 100%;
    justify-content: flex-start;
    padding-inline: 0.82rem;
  }

  .nav-theme-toggle,
  .lang-switch {
    justify-self: end;
  }

  [data-theme="dark"] .main-nav {
    border-color: rgba(91, 200, 122, 0.14);
    background: rgba(18, 29, 22, 0.99);
  }

  [data-theme="dark"] .nav-links {
    border-bottom-color: rgba(91, 200, 122, 0.13);
  }

  [data-theme="dark"] .nav-dropdown-menu {
    border-left-color: rgba(91, 200, 122, 0.2);
    background: transparent;
  }
}

@media (max-width: 520px) {
  .brand-name {
    max-width: 8.3rem;
    font-size: 0.61rem;
  }

  .nav-actions {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .main-nav .nav-utility-link {
    grid-column: 1 / -1;
  }

  .nav-theme-toggle {
    justify-self: start;
  }
}

/* Keep the hero image and controls geometrically stable during cross-fades. */
.page-home .hm-hero-media {
  --hm-carousel-radius: 0 0 2.8rem clamp(4.5rem, 8vw, 7.5rem);
  border-radius: var(--hm-carousel-radius);
  overflow: hidden;
  isolation: isolate;
}

.page-home .hm-carousel {
  height: 100%;
  min-height: 100%;
  border-radius: inherit;
  overflow: hidden;
  contain: paint;
  transform: translateZ(0);
}

.page-home .hm-carousel .hero-slide,
.page-home .hm-carousel .hero-slide img,
.page-home .hm-slide-gradient {
  border-radius: 0;
}

.page-home .hm-carousel .hero-slide {
  width: 100%;
  height: 100%;
}

.page-home .hm-carousel .hero-slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.page-home .hm-carousel-nav {
  order: 1;
  flex: 0 0 auto;
  margin-inline-start: clamp(2.25rem, 4vw, 4rem);
}

.page-home .hm-carousel-dots {
  order: 2;
}

.page-home .hm-carousel-btn {
  width: 2.8rem;
  min-width: 2.8rem;
  max-width: 2.8rem;
  height: 2.8rem;
  min-height: 2.8rem;
  max-height: 2.8rem;
  flex: 0 0 2.8rem;
  aspect-ratio: 1;
  padding: 0;
  border-radius: 50%;
  line-height: 0;
}

.page-home .hm-carousel-btn .material-symbols-outlined {
  font-size: 1.45rem;
  line-height: 1;
}

@media (max-width: 720px) {
  .page-home .hm-hero-media {
    --hm-carousel-radius: 0 0 2rem 4rem;
  }
}

/* Editorial navigation polish aligned with the Stitch header direction. */
.site-header {
  --nav-deep: #173f2e;
  --nav-leaf: #2f7655;
  --nav-gold: #bd9146;
  background: rgba(255, 254, 251, 0.95);
  border-bottom: 1px solid rgba(23, 63, 46, 0.09);
  box-shadow: 0 12px 34px rgba(18, 35, 27, 0.065);
  backdrop-filter: blur(20px) saturate(135%);
  -webkit-backdrop-filter: blur(20px) saturate(135%);
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: linear-gradient(90deg, var(--nav-deep), var(--nav-gold) 48%, var(--nav-deep));
  opacity: 0.72;
  pointer-events: none;
}

.site-header::after {
  background: linear-gradient(
    90deg,
    transparent,
    rgba(189, 145, 70, 0.2) 18%,
    rgba(23, 63, 46, 0.15) 50%,
    rgba(189, 145, 70, 0.2) 82%,
    transparent
  );
}

.nav-wrap {
  min-height: 5.25rem;
  gap: clamp(1rem, 2.1vw, 2rem);
  padding-block: 0.64rem;
}

.site-main {
  padding-top: 5.25rem;
}

.brand {
  min-width: 13.6rem;
  gap: 0.72rem;
}

.brand-logo {
  width: 3.05rem;
  height: 3.05rem;
  filter: drop-shadow(0 5px 9px rgba(23, 63, 46, 0.13));
}

.brand-name {
  max-width: 10.8rem;
  gap: 0.08rem;
  background: none;
  color: var(--nav-deep);
  -webkit-text-fill-color: currentColor;
  letter-spacing: normal;
  line-height: 1;
}

.brand-name span:first-child {
  font-family: "Newsreader", Georgia, serif;
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: 0.055em;
}

.brand-name span:last-child {
  color: #567064;
  font-family: "Source Sans 3", sans-serif;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.145em;
}

.main-nav {
  min-width: 0;
  flex: 1;
  justify-content: flex-end;
  gap: clamp(0.75rem, 1.15vw, 1.1rem);
}

.nav-links {
  gap: clamp(0.02rem, 0.18vw, 0.16rem);
}

.main-nav .nav-links > a,
.main-nav .nav-dropdown-trigger {
  position: relative;
  min-height: 2.9rem;
  padding: 0.76rem 0.64rem;
  border: 0;
  border-radius: 0.46rem;
  color: #33493f;
  font-size: 0.82rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  box-shadow: none;
  transform: translateY(0);
}

.main-nav .nav-links > a::after,
.main-nav .nav-dropdown-trigger::after {
  content: "";
  position: absolute;
  right: 0.7rem;
  bottom: 0.3rem;
  left: 0.7rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--nav-gold), var(--nav-leaf));
  opacity: 0;
  transform: scaleX(0.35);
  transform-origin: center;
  transition: opacity 160ms ease, transform 160ms ease;
}

.main-nav .nav-links > a:hover,
.main-nav .nav-dropdown-trigger:hover,
.main-nav .nav-dropdown.is-open .nav-dropdown-trigger,
.main-nav .nav-dropdown:focus-within .nav-dropdown-trigger {
  border: 0;
  background: rgba(47, 118, 85, 0.055);
  color: var(--nav-leaf);
  box-shadow: none;
  transform: translateY(-1px);
}

.main-nav .nav-links > a:hover::after,
.main-nav .nav-dropdown-trigger:hover::after,
.main-nav .nav-dropdown.is-open .nav-dropdown-trigger::after,
.main-nav .nav-dropdown:focus-within .nav-dropdown-trigger::after {
  opacity: 0.55;
  transform: scaleX(0.62);
}

.main-nav .nav-links > a.active,
.main-nav .nav-dropdown.is-active .nav-dropdown-trigger,
.main-nav .nav-dropdown.is-open .nav-dropdown-trigger {
  padding: 0.76rem 0.64rem;
  border: 0 !important;
  border-radius: 0.46rem;
  background: rgba(47, 118, 85, 0.075);
  color: var(--nav-deep);
  font-weight: 800;
  box-shadow: none;
}

.main-nav .nav-links > a.active::after,
.main-nav .nav-dropdown.is-active .nav-dropdown-trigger::after,
.main-nav .nav-dropdown.is-open .nav-dropdown-trigger::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-dropdown-trigger i {
  margin-left: 0.12rem;
  color: #77877f;
  font-size: 0.65rem;
}

.nav-dropdown-menu {
  top: calc(100% + 0.72rem);
  min-width: 14.5rem;
  gap: 0.24rem;
  padding: 0.58rem;
  border: 1px solid rgba(23, 63, 46, 0.12);
  border-top: 3px solid var(--nav-gold);
  border-radius: 0.82rem;
  background: rgba(255, 254, 251, 0.99);
  box-shadow: 0 22px 52px rgba(18, 35, 27, 0.16);
}

.nav-dropdown-menu::before {
  content: "";
  position: absolute;
  top: -0.42rem;
  left: 2rem;
  width: 0.72rem;
  height: 0.72rem;
  border-top: 1px solid rgba(23, 63, 46, 0.12);
  border-left: 1px solid rgba(23, 63, 46, 0.12);
  background: #fffefb;
  transform: rotate(45deg);
}

.main-nav .nav-dropdown-menu a {
  min-height: 2.7rem;
  padding: 0.72rem 0.82rem;
  border: 0;
  border-radius: 0.52rem;
  color: #3e5148;
  font-size: 0.82rem;
  letter-spacing: 0.025em;
}

.main-nav .nav-dropdown-menu a:hover,
.main-nav .nav-dropdown-menu a:focus-visible,
.main-nav .nav-dropdown-menu a.active {
  border: 0 !important;
  background: rgba(47, 118, 85, 0.08);
  color: var(--nav-deep);
}

.nav-actions {
  gap: 0.48rem;
  margin-left: 0.2rem;
  padding-left: clamp(0.7rem, 1vw, 1rem);
  border-left: 1px solid rgba(23, 63, 46, 0.12);
}

.main-nav .nav-utility-link {
  min-height: 2.62rem;
  padding: 0.66rem 0.86rem;
  border: 1px solid rgba(23, 63, 46, 0.18);
  border-radius: 999px;
  background: transparent;
  color: var(--nav-deep);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.07em;
}

.main-nav .nav-utility-link:hover,
.main-nav .nav-utility-link:focus-visible {
  border-color: var(--nav-deep);
  background: var(--nav-deep);
  color: #fff;
  box-shadow: 0 8px 18px rgba(23, 63, 46, 0.15);
  transform: translateY(-1px);
}

.nav-theme-toggle {
  width: 2.62rem;
  height: 2.62rem;
  flex-basis: 2.62rem;
  border: 1px solid rgba(23, 63, 46, 0.14);
  background: #fff;
  color: var(--nav-deep);
  box-shadow: 0 6px 16px rgba(23, 63, 46, 0.08);
}

.nav-theme-toggle:hover {
  border-color: rgba(189, 145, 70, 0.52);
  background: #faf4e8;
  color: #8d672d;
  box-shadow: 0 8px 20px rgba(23, 63, 46, 0.1);
}

.lang-switch {
  gap: 0.08rem;
  padding: 0.18rem;
  border: 1px solid rgba(23, 63, 46, 0.12);
  border-radius: 0.72rem;
  background: #f3f1e9;
}

.lang-switch button {
  min-width: 2rem;
  min-height: 2.12rem;
  border-radius: 0.52rem;
  color: #66766e;
  font-size: 0.73rem;
  letter-spacing: 0.065em;
}

.lang-switch button:hover {
  border-color: transparent;
  background: rgba(255, 255, 255, 0.72);
  color: var(--nav-deep);
}

.lang-switch button.is-active {
  border-color: var(--nav-deep);
  background: var(--nav-deep);
  color: #fff;
  box-shadow: 0 4px 10px rgba(23, 63, 46, 0.16);
}

.nav-toggle {
  width: 2.8rem;
  height: 2.8rem;
  border: 1px solid rgba(23, 63, 46, 0.14);
  border-radius: 0.7rem;
  background: #fff;
  box-shadow: 0 7px 18px rgba(23, 63, 46, 0.09);
}

[data-theme="dark"] .site-header {
  background: rgba(15, 24, 18, 0.95);
  border-bottom-color: rgba(157, 219, 185, 0.1);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.2);
}

[data-theme="dark"] .brand-name {
  color: #edf5ef;
}

[data-theme="dark"] .brand-name span:last-child {
  color: rgba(237, 245, 239, 0.62);
}

[data-theme="dark"] .main-nav .nav-links > a,
[data-theme="dark"] .main-nav .nav-dropdown-trigger {
  color: rgba(237, 245, 239, 0.78);
}

[data-theme="dark"] .main-nav .nav-links > a:hover,
[data-theme="dark"] .main-nav .nav-dropdown-trigger:hover,
[data-theme="dark"] .main-nav .nav-dropdown.is-open .nav-dropdown-trigger,
[data-theme="dark"] .main-nav .nav-dropdown:focus-within .nav-dropdown-trigger,
[data-theme="dark"] .main-nav .nav-links > a.active,
[data-theme="dark"] .main-nav .nav-dropdown.is-active .nav-dropdown-trigger {
  border: 0 !important;
  background: rgba(157, 219, 185, 0.09);
  color: #b9e4ca;
}

[data-theme="dark"] .nav-actions {
  border-left-color: rgba(157, 219, 185, 0.13);
}

[data-theme="dark"] .main-nav .nav-utility-link {
  border-color: rgba(157, 219, 185, 0.2);
  background: transparent;
  color: #dfeae2;
}

[data-theme="dark"] .main-nav .nav-utility-link:hover,
[data-theme="dark"] .main-nav .nav-utility-link:focus-visible {
  border-color: #b9e4ca;
  background: #b9e4ca;
  color: #102219;
}

[data-theme="dark"] .nav-theme-toggle,
[data-theme="dark"] .lang-switch {
  border-color: rgba(157, 219, 185, 0.14);
  background: rgba(255, 255, 255, 0.05);
}

[data-theme="dark"] .lang-switch button.is-active {
  border-color: #b9e4ca;
  background: #b9e4ca;
  color: #102219;
}

[data-theme="dark"] .nav-dropdown-menu {
  border-color: rgba(157, 219, 185, 0.14);
  border-top-color: var(--nav-gold);
  background: rgba(17, 28, 21, 0.99);
}

[data-theme="dark"] .nav-dropdown-menu::before {
  border-color: rgba(157, 219, 185, 0.14);
  background: #111c15;
}

@media (min-width: 961px) and (max-width: 1120px) {
  .nav-wrap {
    gap: 0.7rem;
  }

  .brand {
    min-width: 11.7rem;
    gap: 0.55rem;
  }

  .brand-logo {
    width: 2.75rem;
    height: 2.75rem;
  }

  .brand-name span:first-child {
    font-size: 0.84rem;
  }

  .brand-name span:last-child {
    font-size: 0.59rem;
  }

  .main-nav {
    gap: 0.55rem;
  }

  .main-nav .nav-links > a,
  .main-nav .nav-dropdown-trigger {
    padding-inline: 0.48rem;
    font-size: 0.76rem;
  }

  .nav-actions {
    gap: 0.34rem;
    padding-left: 0.55rem;
  }

  .main-nav .nav-utility-link {
    padding-inline: 0.68rem;
    font-size: 0.7rem;
  }
}

@media (max-width: 960px) {
  .nav-wrap {
    min-height: 4.9rem;
    padding-block: 0.58rem;
  }

  .site-main {
    padding-top: 4.9rem;
  }

  .brand {
    min-width: 0;
    gap: 0.6rem;
  }

  .brand-logo {
    width: 2.75rem;
    height: 2.75rem;
  }

  .brand-name span:first-child {
    font-size: 0.86rem;
  }

  .brand-name span:last-child {
    font-size: 0.61rem;
  }

  .main-nav {
    top: calc(100% + 0.55rem);
    gap: 0.72rem;
    padding: 0.78rem;
    border: 1px solid rgba(23, 63, 46, 0.12);
    border-top: 3px solid var(--nav-gold);
    border-radius: 1rem;
    background: rgba(255, 254, 251, 0.99);
    box-shadow: 0 24px 56px rgba(18, 35, 27, 0.18);
  }

  .nav-links {
    gap: 0.2rem;
    padding-bottom: 0.72rem;
  }

  .main-nav .nav-links > a,
  .main-nav .nav-dropdown-trigger {
    min-height: 3.05rem;
    padding: 0.84rem 0.95rem;
    border: 0;
    border-radius: 0.62rem;
    font-size: 0.88rem;
    transform: none;
  }

  .main-nav .nav-links > a::after,
  .main-nav .nav-dropdown-trigger::after {
    top: 0.76rem;
    right: auto;
    bottom: 0.76rem;
    left: 0.24rem;
    width: 3px;
    height: auto;
    transform: scaleY(0.35);
  }

  .main-nav .nav-links > a:hover::after,
  .main-nav .nav-dropdown-trigger:hover::after,
  .main-nav .nav-dropdown.is-open .nav-dropdown-trigger::after,
  .main-nav .nav-dropdown:focus-within .nav-dropdown-trigger::after {
    transform: scaleY(0.62);
  }

  .main-nav .nav-links > a.active,
  .main-nav .nav-dropdown.is-active .nav-dropdown-trigger,
  .main-nav .nav-dropdown.is-open .nav-dropdown-trigger {
    padding: 0.84rem 0.95rem;
    border: 0 !important;
    border-radius: 0.62rem;
    background: var(--nav-deep);
    color: #fff;
  }

  .main-nav .nav-links > a.active::after,
  .main-nav .nav-dropdown.is-active .nav-dropdown-trigger::after,
  .main-nav .nav-dropdown.is-open .nav-dropdown-trigger::after {
    background: var(--nav-gold);
    transform: scaleY(1);
  }

  .nav-dropdown-menu,
  .nav-dropdown-menu::before {
    border-top: 0;
  }

  .nav-dropdown-menu::before {
    display: none;
  }

  .nav-actions {
    margin: 0;
    padding: 0.1rem 0 0;
    border: 0;
  }

  .main-nav .nav-utility-link {
    min-height: 2.9rem;
    padding-inline: 0.94rem;
    border-radius: 0.62rem;
  }

  [data-theme="dark"] .main-nav {
    border-color: rgba(157, 219, 185, 0.14);
    border-top-color: var(--nav-gold);
    background: rgba(17, 28, 21, 0.99);
  }

  [data-theme="dark"] .main-nav .nav-links > a.active,
  [data-theme="dark"] .main-nav .nav-dropdown.is-active .nav-dropdown-trigger,
  [data-theme="dark"] .main-nav .nav-dropdown.is-open .nav-dropdown-trigger {
    background: #b9e4ca;
    color: #102219;
  }
}

@media (max-width: 520px) {
  .brand-name {
    max-width: 9.6rem;
  }

  .brand-name span:first-child {
    font-size: 0.78rem;
    letter-spacing: 0.04em;
  }

  .brand-name span:last-child {
    font-size: 0.56rem;
    letter-spacing: 0.12em;
  }
}

/* Public-page finalization: tighter rhythm and consistent surface behavior. */
.page-products .lux-products-hero {
  height: clamp(31rem, calc(100vh - 10rem), 35rem);
  min-height: 0;
  box-sizing: border-box;
}

.page-careers .lux-careers-hero + .section {
  padding-top: clamp(2.25rem, 3.5vw, 3rem);
  padding-bottom: clamp(1.25rem, 2vw, 1.75rem);
}

.page-careers .lux-careers-hero + .section + .section-cream {
  padding-top: clamp(3rem, 5vw, 4.5rem);
}

.page-news .st-news-list-section {
  padding-top: clamp(3.5rem, 5.5vw, 5rem);
}

.page-news-detail .st-article-body {
  display: grid;
  align-content: start;
  gap: 1.25rem;
}

.page-news-detail .st-article-lead {
  margin: 0;
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  border: 1px solid rgba(64, 145, 108, 0.14);
  border-left: 4px solid var(--color-leaf-green);
  border-radius: 0 1rem 1rem 0;
  background: rgba(64, 145, 108, 0.055);
  box-shadow: 0 18px 38px rgba(18, 35, 27, 0.045);
}

.page-news-detail .st-article-sidebar {
  position: sticky;
  top: 6.75rem;
}

.st-about-operation-number {
  display: block;
  margin-bottom: 1rem;
  color: var(--color-golden-harvest);
  font-family: "Newsreader", Georgia, serif;
  font-size: 1.45rem;
  font-weight: 700;
}

.st-about-partners {
  padding: var(--stitch-section) 0;
  background:
    radial-gradient(circle at 92% 8%, rgba(189, 145, 70, 0.1), transparent 28rem),
    var(--color-earth-linen);
}

.st-about-partners-heading {
  max-width: 42rem;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.st-about-partners-heading .st-about-section-label {
  color: var(--color-leaf-green);
}

.st-about-partners-heading h2 {
  margin: 0.8rem 0 0;
  color: var(--color-deep-forest);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.12;
}

.st-about-partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 18rem), 1fr));
  gap: 1rem;
}

.st-about-partner-card {
  display: grid;
  grid-template-columns: 3.5rem minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  min-height: 8.5rem;
  padding: 1.25rem;
  border: 1px solid rgba(27, 67, 50, 0.12);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.82);
  color: var(--color-deep-forest);
  box-shadow: 0 18px 40px rgba(18, 35, 27, 0.055);
}

.st-about-partner-logo {
  position: relative;
  width: 3.5rem;
  height: 3.5rem;
  display: grid;
  place-items: center;
  border-radius: 0.75rem;
  background: rgba(64, 145, 108, 0.08);
  color: var(--color-leaf-green);
  overflow: hidden;
}

.st-about-partner-logo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0.35rem;
  background: #fff;
  object-fit: contain;
}

.st-about-partner-card > span:nth-child(2) {
  min-width: 0;
}

.st-about-partner-card strong,
.st-about-partner-card small {
  display: block;
}

.st-about-partner-card strong {
  font-family: "Newsreader", Georgia, serif;
  font-size: 1.35rem;
}

.st-about-partner-card small {
  margin-top: 0.35rem;
  color: var(--color-muted);
  line-height: 1.45;
}

.st-about-partner-card > .material-symbols-outlined:last-child {
  color: var(--color-leaf-green);
}

.lux-product-card,
.lux-careers-why-card,
.lux-contact-card,
.lux-contact-form-card,
.lux-faq-card,
.st-news-card,
.st-share-card,
.st-latest-card,
.st-about-mission-card,
.st-about-partner-card {
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .lux-product-card:hover,
  .lux-careers-why-card:hover,
  .lux-contact-card:hover,
  .lux-faq-card:hover,
  .st-share-card:hover,
  .st-latest-card:hover,
  .st-about-mission-card:hover,
  .st-about-partner-card:hover {
    border-color: rgba(64, 145, 108, 0.24);
    box-shadow: 0 22px 48px rgba(18, 35, 27, 0.09);
    transform: translateY(-4px);
  }

  .st-news-card:hover {
    transform: translateY(-4px);
  }
}

[data-theme="dark"] .page-news-detail .st-article-lead {
  border-color: rgba(157, 219, 185, 0.16);
  border-left-color: #9ddbb9;
  background: rgba(157, 219, 185, 0.065);
  color: #dceee3 !important;
  box-shadow: none;
}

[data-theme="dark"] .st-about-partners {
  background: var(--color-bg);
}

[data-theme="dark"] .st-about-partners-heading h2,
[data-theme="dark"] .st-about-partner-card {
  color: var(--color-text);
}

[data-theme="dark"] .st-about-partner-card {
  border-color: rgba(157, 219, 185, 0.14);
  background: var(--color-surface);
  box-shadow: none;
}

[data-theme="dark"] .st-about-partner-card small {
  color: var(--lux-shell-muted);
}

@media (max-width: 960px) {
  .page-products .lux-products-hero {
    height: auto;
    min-height: 30rem;
  }

  .page-news-detail .st-article-sidebar {
    position: static;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lux-product-card,
  .lux-careers-why-card,
  .lux-contact-card,
  .lux-contact-form-card,
  .lux-faq-card,
  .st-news-card,
  .st-share-card,
  .st-latest-card,
  .st-about-mission-card,
  .st-about-partner-card {
    transition: none;
  }
}
