:root {
  --parchment: #e8dcc8;
  --parchment-light: #f0e6d4;
  --teal-deep: #2a4a5e;
  --teal-mid: #3d6b7e;
  --teal-faded: #5a8a9a;
  --warm-red: #c04030;
  --warm-orange: #d4704a;
  --cream: #f5efe3;
  --ink: #1e2d3a;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  min-height: 100vh;
  background: var(--parchment);
  font-family: 'Source Sans 3', sans-serif;
  color: var(--ink);
  overflow-x: hidden;
  position: relative;
}

/* === PARCHMENT BASE TEXTURE === */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(212, 112, 74, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(42, 74, 94, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 60% 80%, rgba(192, 64, 48, 0.05) 0%, transparent 50%),
    linear-gradient(175deg, var(--parchment-light) 0%, var(--parchment) 40%, #ddd0b8 100%);
  z-index: 0;
}

/* === FILM GRAIN OVERLAY === */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  opacity: 0.12;
  z-index: 1;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* === GEOMETRIC ELEMENTS === */
.geo-layer {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

/* Orbital ring - top right (inspired by Zden Version C) */
.orbital {
  position: absolute;
  top: -80px;
  right: -60px;
  width: 420px;
  height: 420px;
  border: 1.5px solid var(--teal-faded);
  border-radius: 50%;
  opacity: 0.18;
  transform: rotate(-20deg);
  animation: orbit-drift 40s ease-in-out infinite;
}
.orbital::after {
  content: '';
  position: absolute;
  top: 10px;
  right: 30px;
  width: 10px;
  height: 10px;
  background: var(--teal-deep);
  border-radius: 50%;
  opacity: 0.5;
}

/* Second orbital */
.orbital-2 {
  position: absolute;
  top: -40px;
  right: -100px;
  width: 500px;
  height: 500px;
  border: 1px solid var(--teal-mid);
  border-radius: 50%;
  opacity: 0.1;
  transform: rotate(-35deg);
}

/* Delta triangle (inspired by Convair delta wing / Version B shield) */
.delta {
  position: absolute;
  bottom: -120px;
  left: 8%;
  width: 0;
  height: 0;
  border-left: 180px solid transparent;
  border-right: 180px solid transparent;
  border-bottom: 320px solid var(--teal-deep);
  opacity: 0.04;
  transform: rotate(5deg);
}

/* Diagonal speed lines (inspired by Zden Version A) */
.speed-lines {
  position: absolute;
  bottom: 30%;
  left: -10%;
  width: 50%;
  height: 2px;
  background: var(--teal-deep);
  opacity: 0.08;
  transform: rotate(-3deg);
}
.speed-lines::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 5%;
  width: 80%;
  height: 1.5px;
  background: var(--teal-deep);
  opacity: 1;
}
.speed-lines::after {
  content: '';
  position: absolute;
  top: -24px;
  left: 10%;
  width: 60%;
  height: 1px;
  background: var(--teal-deep);
  opacity: 0.5;
}

/* Four-point star (inspired by Zden Version A star) */
.star-burst {
  position: absolute;
  top: 18%;
  left: 12%;
  width: 24px;
  height: 24px;
  opacity: 0.15;
}
.star-burst::before,
.star-burst::after {
  content: '';
  position: absolute;
  background: var(--teal-deep);
}
.star-burst::before {
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  clip-path: polygon(50% 0%, 60% 40%, 50% 100%, 40% 40%);
  width: 24px;
  height: 24px;
}
.star-burst::after {
  top: 50%; left: 0;
  transform: translateY(-50%);
  clip-path: polygon(0% 50%, 40% 40%, 100% 50%, 40% 60%);
  width: 24px;
  height: 24px;
}

/* Warm red accent bar (inspired by Convair red typography) */
.red-accent {
  position: absolute;
  top: 45%;
  right: 0;
  width: 180px;
  height: 3px;
  background: linear-gradient(to left, var(--warm-red), transparent);
  opacity: 0.12;
}

/* Mosaic/tessellation patch (inspired by Zden bird texture) */
.mosaic-patch {
  position: absolute;
  bottom: 15%;
  right: 10%;
  width: 160px;
  height: 160px;
  opacity: 0.04;
  background:
    linear-gradient(30deg, var(--teal-deep) 12%, transparent 12.5%, transparent 87%, var(--teal-deep) 87.5%),
    linear-gradient(150deg, var(--teal-deep) 12%, transparent 12.5%, transparent 87%, var(--teal-deep) 87.5%),
    linear-gradient(30deg, var(--teal-deep) 12%, transparent 12.5%, transparent 87%, var(--teal-deep) 87.5%),
    linear-gradient(150deg, var(--teal-deep) 12%, transparent 12.5%, transparent 87%, var(--teal-deep) 87.5%),
    linear-gradient(60deg, var(--teal-mid) 25%, transparent 25.5%, transparent 75%, var(--teal-mid) 75%),
    linear-gradient(60deg, var(--teal-mid) 25%, transparent 25.5%, transparent 75%, var(--teal-mid) 75%);
  background-size: 40px 70px;
  background-position: 0 0, 0 0, 20px 35px, 20px 35px, 0 0, 20px 35px;
}

/* Small decorative dots */
.dot {
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--teal-deep);
  border-radius: 50%;
  opacity: 0.12;
}
.dot-1 { top: 35%; left: 45%; }
.dot-2 { top: 72%; left: 25%; width: 4px; height: 4px; }
.dot-3 { top: 22%; right: 30%; width: 5px; height: 5px; opacity: 0.08; }

/* Redacted bar base styles */
.data-masked-link {
  position: relative;
  font-family: 'Courier New', monospace !important;
  font-weight: 700 !important;
  font-size: 0.8rem !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase !important;
  padding: 0.44rem 1.2rem !important;
  display: inline-block !important;
  width: auto !important;
  font-style: normal;
  z-index: 1;
  overflow: hidden;
  min-width: 10em;
  margin-left: -0.1rem;
  cursor: default;
}
.data-masked-link::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #1a1a1a;
  z-index: -1;
  clip-path: polygon(
    0% 35%, 2% 15%, 5% 22%, 10% 8%, 15% 18%, 20% 5%,
    28% 15%, 35% 3%, 42% 12%, 50% 6%, 58% 14%, 65% 2%,
    72% 10%, 80% 5%, 88% 15%, 93% 8%, 97% 20%, 100% 10%,
    100% 65%, 98% 85%, 95% 78%, 90% 92%, 85% 82%, 80% 95%,
    72% 85%, 65% 97%, 58% 88%, 50% 94%, 42% 86%, 35% 98%,
    28% 88%, 20% 95%, 15% 85%, 10% 92%, 5% 80%, 2% 90%, 0% 70%
  );
}
.data-masked-link::after { content: none; }

/* Variant widths and edge shapes */
.redact-v2 { min-width: 7.5em; }
.redact-v2::before {
  clip-path: polygon(
    0% 30%, 3% 10%, 8% 20%, 14% 6%, 22% 16%, 30% 4%,
    40% 14%, 48% 8%, 55% 18%, 62% 3%, 70% 12%, 78% 6%,
    85% 16%, 92% 10%, 96% 22%, 100% 15%,
    100% 72%, 97% 88%, 92% 80%, 86% 94%, 78% 84%, 70% 96%,
    62% 86%, 55% 92%, 48% 82%, 40% 95%, 30% 85%, 22% 94%,
    14% 82%, 8% 92%, 3% 82%, 0% 68%
  );
}

.redact-v3 { min-width: 12em; }
.redact-v3::before {
  clip-path: polygon(
    0% 28%, 2% 12%, 6% 24%, 12% 5%, 18% 15%, 25% 8%,
    32% 18%, 38% 4%, 45% 16%, 52% 7%, 60% 13%, 68% 3%,
    75% 15%, 82% 8%, 90% 18%, 95% 6%, 98% 16%, 100% 12%,
    100% 70%, 98% 90%, 94% 76%, 88% 95%, 82% 80%, 75% 92%,
    68% 84%, 60% 98%, 52% 85%, 45% 94%, 38% 86%, 32% 96%,
    25% 84%, 18% 90%, 12% 82%, 6% 94%, 2% 78%, 0% 66%
  );
}

.redact-v4 { min-width: 11em; }
.redact-v4::before {
  clip-path: polygon(
    0% 32%, 4% 14%, 10% 25%, 18% 8%, 26% 20%, 35% 5%,
    45% 18%, 55% 10%, 65% 15%, 75% 4%, 84% 14%, 92% 8%,
    97% 18%, 100% 12%,
    100% 68%, 96% 86%, 90% 78%, 82% 94%, 74% 82%, 65% 92%,
    55% 80%, 45% 96%, 35% 84%, 26% 92%, 18% 84%, 10% 90%,
    4% 80%, 0% 65%
  );
}

li:has(> .data-masked-link) {
  text-align: left;
  display: flex;
  align-items: center;
  padding: 0.7rem 1.25rem;
}

/* === TOP BANNER === */
.banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  height: 72px;
  background: rgba(42, 74, 94, 0.0);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  border-bottom: 1px solid rgba(90, 138, 154, 0.0);
  animation: slide-down 0.6s ease-out both;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, border-color 0.4s ease;
}

.banner.scrolled {
  background: rgba(42, 74, 94, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(90, 138, 154, 0.25);
}

.banner-brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.18em;
  color: var(--cream);
  text-decoration: none;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.banner-logo {
  height: 3.75rem;
  width: auto;
  display: block;
  flex-shrink: 0;
}

/* Desktop nav */
.nav-items {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  height: 100%;
}

.nav-item {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.nav-item > a {
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245, 239, 227, 0.75);
  text-decoration: none;
  padding: 0 1.25rem;
  height: 100%;
  display: flex;
  align-items: center;
  transition: color 0.25s ease;
  position: relative;
}

.nav-item > a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 1.25rem;
  right: 1.25rem;
  height: 2px;
  background: var(--warm-red);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}

.nav-item:hover > a,
.nav-item > a:focus {
  color: var(--cream);
}

.nav-item:hover > a::after {
  transform: scaleX(1);
}

.nav-divider {
  width: 2px;
  height: 28px;
  background: #b8311e;
  margin: 0 0.75rem;
  align-self: center;
}

/* Category toggle arrow */
.nav-item.has-dropdown > a::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  margin-right: 0.4rem;
  transition: transform 0.3s ease;
  position: relative;
  top: -1px;
}

.nav-item.has-dropdown.open > a::before {
  transform: rotate(-135deg);
  top: 1px;
}

/* Dropdown */
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 180px;
  background: rgba(30, 45, 58, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(90, 138, 154, 0.2);
  border-top: 2px solid var(--warm-red);
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  box-shadow: 0 12px 32px rgba(0,0,0,0.25);
}

.nav-item.has-dropdown.open .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown li a {
  display: block;
  padding: 0.7rem 1.25rem;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 400;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: rgba(245, 239, 227, 0.65);
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
  border-bottom: 1px solid rgba(90, 138, 154, 0.1);
}

.dropdown li:last-child a {
  border-bottom: none;
}

.dropdown li a:hover {
  background: rgba(90, 138, 154, 0.12);
  color: var(--cream);
  padding-left: 1.5rem;
}

/* Hamburger (always visible for company links) */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 28px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--cream);
  border-radius: 1px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Hamburger X animation when open */
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu panel */
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  right: 0;
  width: auto;
  min-width: 200px;
  background: rgba(30, 45, 58, 0.97);
  backdrop-filter: blur(12px);
  z-index: 9;
  padding: 1rem 1.5rem;
  overflow-y: auto;
  list-style: none;
  animation: menu-in 0.3s ease-out both;
  border-left: 1px solid rgba(90, 138, 154, 0.2);
  border-bottom: 1px solid rgba(90, 138, 154, 0.2);
  box-shadow: -4px 8px 24px rgba(0,0,0,0.2);
}

@media (max-width: 1050px) {
  .mobile-menu {
    left: 0;
    bottom: 0;
    width: 100%;
    min-width: unset;
    border-left: none;
    box-shadow: none;
    padding: 1.5rem;
  }
}

.mobile-menu.open {
  display: block;
}

.mobile-menu .mobile-category {
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal-faded);
  padding: 1rem 0 0.4rem 0;
  border-bottom: 1px solid rgba(90, 138, 154, 0.15);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  user-select: none;
}

.mobile-chevron {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid var(--teal-faded);
  border-bottom: 1.5px solid var(--teal-faded);
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}

.mobile-category.open .mobile-chevron {
  transform: rotate(-135deg);
}

.mobile-sub {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.mobile-menu .mobile-category:first-child {
  padding-top: 0;
}

.mobile-menu .mobile-link a {
  display: block;
  padding: 0.65rem 0 0.65rem 1rem;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1rem;
  color: rgba(245, 239, 227, 0.8);
  text-decoration: none;
  transition: color 0.2s, padding-left 0.2s;
}

.mobile-menu .mobile-link a:hover {
  color: var(--cream);
  padding-left: 1.3rem;
}

@keyframes menu-in {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Hide product categories in hamburger on desktop */
.mobile-products-section {
  display: none;
}

.mobile-products-section + .company-link {
  padding-top: 0;
}

@media (max-width: 1050px) {
  .mobile-products-section {
    display: block;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #b8311e;
  }
}

/* Responsive */
@media (max-width: 1050px) {
  .nav-items { display: none; }
}

@keyframes slide-down {
  from { opacity: 0; transform: translateY(-100%); }
  to { opacity: 1; transform: translateY(0); }
}

/* === FOOTER === */
.site-footer {
  position: relative;
  z-index: 2;
  background: rgba(30, 45, 58, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-top: 2px solid #b8311e;
  padding: 2rem 1.5rem 1.2rem;
  color: rgba(245, 239, 227, 0.6);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.82rem;
  line-height: 1.7;
}

.footer-inner {
  max-width: 900px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(90, 138, 154, 0.15);
}

.footer-contact a {
  color: var(--cream);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.footer-contact a:hover {
  text-decoration: underline;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(245, 239, 227, 0.55);
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--cream);
}

.footer-disclaimer {
  font-size: 0.75rem;
  color: rgba(245, 239, 227, 0.4);
  margin-bottom: 0.8rem;
  font-style: italic;
}

.footer-copyright {
  font-size: 0.75rem;
  color: rgba(245, 239, 227, 0.35);
}

/* === ABOUT PAGE STYLES === */

.about-hero {
  position: relative;
  z-index: 2;
  padding: 7rem 2rem 4rem;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  scroll-margin-top: 72px;
}

.about-eyebrow {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--warm-red);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
}

.about-eyebrow::before,
.about-eyebrow::after {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--warm-red);
  opacity: 0.6;
}

.about-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.8rem, 7vw, 5rem);
  letter-spacing: 0.12em;
  color: var(--teal-deep);
  line-height: 1;
  margin-bottom: 1.5rem;
}

.about-summary {
  font-family: 'Source Sans 3', sans-serif;
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-weight: 300;
  line-height: 1.85;
  color: rgba(30, 45, 58, 0.82);
  max-width: 640px;
  margin: 0 auto;
}

.mission-banner {
  position: relative;
  z-index: 2;
  background: rgba(42, 74, 94, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-top: 1px solid rgba(90,138,154,0.25);
  border-bottom: 1px solid rgba(90,138,154,0.25);
  padding: 2.4rem 2rem;
  text-align: center;
  margin: 0 0 0 0;
}

.mission-label {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--warm-red);
  margin-bottom: 0.75rem;
}

.mission-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.4rem, 3.5vw, 2.2rem);
  letter-spacing: 0.1em;
  color: var(--cream);
  line-height: 1.3;
  max-width: 700px;
  margin: 0 auto;
}

.facilities-section {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 3.5rem 2rem;
}

.section-header {
  text-align: center;
  margin-bottom: 2.8rem;
}

.section-label {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--warm-red);
  margin-bottom: 0.6rem;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  letter-spacing: 0.12em;
  color: var(--teal-deep);
  line-height: 1;
}

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

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

.facility-card {
  background: rgba(255,255,255,0.5);
  border: 1px solid rgba(42,74,94,0.12);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.facility-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(42,74,94,0.12);
}

.facility-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.facility-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.facility-card:hover .facility-img-wrap img {
  transform: scale(1.04);
}

.facility-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(30,45,58,0.35) 100%);
}

.facility-tag {
  position: absolute;
  bottom: 0.75rem;
  left: 0.9rem;
  z-index: 1;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(245,239,227,0.85);
  background: rgba(192,64,48,0.85);
  padding: 0.2rem 0.55rem;
}

.facility-body {
  padding: 1.25rem 1.4rem 1.5rem;
  border-top: 2px solid var(--warm-red);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.facility-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.35rem;
  letter-spacing: 0.1em;
  color: var(--teal-deep);
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.facility-location {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal-faded);
  margin-bottom: 0.85rem;
}

.facility-desc {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(30,45,58,0.75);
}

.facility-stats {
  display: flex;
  gap: 1.4rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(42,74,94,0.1);
  flex-wrap: wrap;
}

.facility-stat {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.stat-value {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  color: var(--warm-red);
  line-height: 1;
}

.stat-label {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal-faded);
}

.values-section {
  position: relative;
  z-index: 2;
  background: rgba(42, 74, 94, 0.04);
  border-top: 1px solid rgba(42,74,94,0.1);
  padding: 4rem 2rem;
}

.values-inner {
  max-width: 900px;
  margin: 0 auto;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2.8rem;
}

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

.value-card {
  background: rgba(255,255,255,0.6);
  border: 1px solid rgba(42,74,94,0.1);
  padding: 1.75rem 1.75rem 1.75rem 1.5rem;
  position: relative;
  overflow: hidden;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.value-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--warm-red);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.3s ease;
}

.value-card:hover::before {
  transform: scaleY(1);
}

.value-card:hover {
  background: rgba(255,255,255,0.85);
  box-shadow: 0 8px 24px rgba(42,74,94,0.08);
}

.value-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  color: rgba(192,64,48,0.35);
  margin-bottom: 0.5rem;
}

.value-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-style: italic;
  color: var(--teal-deep);
  margin-bottom: 0.7rem;
  line-height: 1.2;
}

.value-desc {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(30,45,58,0.72);
}

/* === ANIMATIONS === */
@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes orbit-drift {
  0%, 100% { transform: rotate(-20deg) scale(1); }
  50% { transform: rotate(-15deg) scale(1.03); }
}