* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at top right, rgba(87,198,184,0.12), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0)),
    var(--fluor-bg);
  color: var(--fluor-text);
  line-height: 1.65;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--fluor-accent); text-decoration: none; }
a:hover { color: var(--fluor-accent-2); }
.container { width: min(var(--fluor-max), calc(100% - 2rem)); margin: 0 auto; }
.site-shell { min-height: 100vh; display: flex; flex-direction: column; }
.site-content { flex: 1; }
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(1px,1px,1px,1px);
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(15,20,22,0.84);
  border-bottom: 1px solid var(--fluor-border);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  min-height: 82px;
}
.site-branding {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 0;
}
.site-branding__link { display: inline-flex; align-items: center; }
.site-branding__logo img,
.custom-logo-link img { max-height: 54px; width: auto; }
.site-branding__wordmark,
.site-branding__title {
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.site-branding__meta {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.site-branding__tagline {
  color: var(--fluor-muted);
  font-size: 0.85rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.site-navigation { display: flex; align-items: center; }
.primary-menu,
.footer-menu,
.footer-socials { list-style: none; margin: 0; padding: 0; }
.primary-menu {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.primary-menu a,
.footer-menu a {
  color: var(--fluor-text);
  font-weight: 600;
}
.primary-menu a:hover,
.footer-menu a:hover { color: var(--fluor-accent); }
.nav-toggle {
  display: none;
  width: 50px;
  height: 50px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid var(--fluor-border);
  background: var(--fluor-surface);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle__line {
  width: 20px;
  height: 2px;
  background: var(--fluor-text);
  display: block;
}
.hero,
.page-hero {
  padding: 4.5rem 0 3.25rem;
}
.hero__grid,
.page-hero__grid,
.split-panel,
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  align-items: center;
}
.hero__content h1,
.page-hero h1 {
  font-size: clamp(2.3rem, 5vw, 4.6rem);
  line-height: 1.04;
  margin: 0 0 1rem;
  letter-spacing: -0.03em;
}
.eyebrow,
.section-label {
  color: var(--fluor-accent-2);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.79rem;
  margin: 0 0 1rem;
}
.hero__lead,
.page-hero__lead {
  color: var(--fluor-muted);
  font-size: 1.1rem;
  max-width: 62ch;
}
.card-panel,
.info-card,
.values-panel,
.content-prose blockquote {
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border: 1px solid var(--fluor-border);
  border-radius: var(--fluor-radius);
  box-shadow: var(--fluor-shadow);
}
.card-panel {
  padding: 1rem;
}
.card-panel img,
.page-hero__media img {
  width: 100%;
  border-radius: calc(var(--fluor-radius) - 6px);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.5rem;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.8rem 1.15rem;
  border-radius: 999px;
  border: 1px solid var(--fluor-border);
  color: var(--fluor-text);
  font-weight: 700;
}
.button-primary {
  background: var(--fluor-accent);
  color: #0a1011;
  border-color: transparent;
}
.button-primary:hover { color: #0a1011; filter: brightness(1.05); }
.button-secondary {
  background: rgba(255,255,255,0.04);
}
.content-section { padding: 2.25rem 0; }
.content-section--tight { padding-top: 0.5rem; }
.content-section--alt { background: linear-gradient(180deg, rgba(255,255,255,0.015), rgba(255,255,255,0)); }
.section-heading { margin-bottom: 1.5rem; }
.section-heading h2,
.feature-grid__content h2,
.split-panel h2,
.values-panel h2,
.content-prose h2,
.content-prose h3 {
  margin-top: 0;
}
.card-grid {
  display: grid;
  gap: 1.25rem;
}
.card-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.info-card {
  padding: 1.5rem;
}
.info-card h2,
.info-card h3 {
  margin-top: 0;
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
}
.values-panel { padding: 2rem; }
.pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}
.pill {
  padding: 0.75rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--fluor-border);
  background: rgba(255,255,255,0.04);
  font-weight: 700;
}
.content-prose {
  max-width: 820px;
}
.content-prose > *:first-child { margin-top: 0; }
.content-prose p,
.info-card p,
.split-panel p,
.feature-grid p,
.values-panel p {
  color: var(--fluor-muted);
}
.content-prose ul,
.content-prose ol { padding-left: 1.25rem; }
.timeline-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
.site-footer {
  margin-top: 3rem;
  padding: 2.5rem 0 1.25rem;
  background: rgba(0,0,0,0.26);
  border-top: 1px solid var(--fluor-border);
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 1.5rem;
}
.site-footer__brand,
.site-footer__heading,
.footer-title {
  margin-top: 0;
}
.site-footer__blurb,
.site-footer__bottom p,
.footer-widget,
.footer-socials a { color: var(--fluor-muted); }
.site-footer__bottom {
  padding-top: 1rem;
  margin-top: 1rem;
  border-top: 1px solid var(--fluor-border);
}
.footer-menu li,
.footer-socials li { margin-bottom: 0.55rem; }
.wp-block-image img,
.content-prose img { border-radius: 14px; }
.wp-block-button__link { border-radius: 999px; }
@media (max-width: 980px) {
  .hero__grid,
  .page-hero__grid,
  .split-panel,
  .feature-grid,
  .timeline-grid,
  .site-footer__grid,
  .card-grid--three {
    grid-template-columns: 1fr;
  }
  .hero,
  .page-hero {
    padding-top: 3rem;
  }
}
@media (max-width: 820px) {
  .nav-toggle { display: inline-flex; }
  .site-navigation {
    position: absolute;
    top: 82px;
    left: 0;
    right: 0;
    background: rgba(15,20,22,0.97);
    border-bottom: 1px solid var(--fluor-border);
    padding: 0 1rem 1rem;
    display: none;
  }
  .site-navigation.is-open { display: block; }
  .primary-menu { flex-direction: column; align-items: flex-start; padding-top: 1rem; }
  .site-branding__meta { display: none; }
}
@media (max-width: 640px) {
  .container { width: min(var(--fluor-max), calc(100% - 1.25rem)); }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .button { width: 100%; }
}
