:root {
  --green-950: #031d16;
  --green-900: #063d2c;
  --green-800: #075039;
  --green-700: #0c6d49;
  --green-100: #dff5e8;
  --yellow: #ffd23d;
  --yellow-strong: #f2b705;
  --ink: #101614;
  --muted: #5f6e68;
  --line: #dce7e1;
  --surface: #ffffff;
  --soft: #f4faf6;
  --shadow: 0 18px 45px rgba(3, 29, 22, .18);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

.skip-link:focus {
  z-index: 1000;
  top: 1rem;
  left: 1rem;
  width: auto;
  height: auto;
  padding: .75rem 1rem;
  clip: auto;
  color: var(--green-950);
  background: var(--yellow);
  border-radius: var(--radius);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: .8rem clamp(1rem, 3vw, 2rem);
  color: #fff;
  background: linear-gradient(180deg, rgba(3, 29, 22, .9), rgba(3, 29, 22, .55));
  border-bottom: 1px solid rgba(255, 255, 255, .14);
  transition: background .25s ease, box-shadow .25s ease;
}

.site-header.is-scrolled {
  background: rgba(3, 29, 22, .96);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .22);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 190px;
}

.brand img,
.site-footer img {
  width: 100%;
  height: auto;
}

.site-nav {
  justify-self: end;
  display: flex;
  gap: .25rem;
  align-items: center;
}

.site-nav a {
  padding: .7rem .85rem;
  font-size: .95rem;
  font-weight: 750;
  text-decoration: none;
  border-radius: var(--radius);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(255, 255, 255, .12);
  outline: none;
}

.header-cta {
  justify-self: end;
  padding: .8rem 1rem;
  color: var(--green-950);
  background: var(--yellow);
  border-radius: var(--radius);
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .2);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .08);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
  border-radius: 10px;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  color: #fff;
  overflow: hidden;
  background: var(--green-950);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("../img/hero-station.webp");
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(3, 29, 22, .86) 0%, rgba(3, 29, 22, .54) 48%, rgba(3, 29, 22, .18) 100%),
    linear-gradient(0deg, rgba(3, 29, 22, .95) 0%, rgba(3, 29, 22, .18) 48%, rgba(3, 29, 22, .35) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding: 9.5rem 0 3rem;
}

.eyebrow {
  margin: 0 0 .9rem;
  color: var(--yellow);
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(3rem, 9vw, 7.8rem);
  line-height: .9;
  letter-spacing: 0;
  text-transform: uppercase;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 .5rem;
  font-size: 1.18rem;
  line-height: 1.15;
}

.hero-copy {
  max-width: 680px;
  margin: 1.2rem 0 0;
  color: rgba(255, 255, 255, .9);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.hero-actions,
.final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.7rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: .85rem 1.15rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 900;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.btn-primary {
  color: var(--green-950);
  background: var(--yellow);
  box-shadow: 0 16px 30px rgba(0, 0, 0, .2);
}

.btn-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, .35);
  background: rgba(255, 255, 255, .12);
  backdrop-filter: blur(12px);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .75rem;
  max-width: 860px;
  margin: 2.25rem 0 0;
}

.hero-facts div {
  padding: 1rem;
  background: rgba(255, 255, 255, .13);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius);
  backdrop-filter: blur(14px);
}

.hero-facts dt {
  color: rgba(255, 255, 255, .72);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-facts dd {
  margin: .2rem 0 0;
  font-size: 1.18rem;
  font-weight: 950;
}

.quick-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: var(--yellow);
}

.quick-strip a {
  padding: 1rem clamp(.85rem, 2vw, 1.4rem);
  color: var(--green-950);
  text-decoration: none;
  border-right: 1px solid rgba(3, 29, 22, .16);
}

.quick-strip a:hover,
.quick-strip a:focus-visible {
  background: #ffe27a;
  outline: none;
}

.quick-strip strong,
.quick-strip span {
  display: block;
}

.quick-strip strong {
  font-size: 1rem;
  font-weight: 950;
}

.quick-strip span {
  color: rgba(3, 29, 22, .74);
  font-size: .9rem;
  overflow-wrap: anywhere;
}

.section {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 2rem;
}

.section-heading p:not(.eyebrow) {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 1rem;
  align-items: stretch;
}

.intro-copy {
  padding: clamp(1.2rem, 3vw, 2rem);
  color: #fff;
  background: var(--green-900);
  border-radius: var(--radius);
}

.intro-copy p {
  margin: 0;
  font-size: 1.08rem;
}

.intro-copy p + p {
  margin-top: 1rem;
}

.feature-panel {
  padding: clamp(1.2rem, 3vw, 2rem);
  color: var(--green-950);
  background: var(--yellow);
  border-radius: var(--radius);
}

.feature-panel span {
  display: block;
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 1000;
  line-height: .85;
}

.feature-panel strong {
  display: block;
  margin-top: .7rem;
  font-size: 1.35rem;
  line-height: 1.05;
}

.feature-panel p {
  margin: .8rem 0 0;
}

.services-section {
  width: 100%;
  max-width: none;
  padding-right: max(1rem, calc((100% - var(--max)) / 2));
  padding-left: max(1rem, calc((100% - var(--max)) / 2));
  background: var(--soft);
}

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

.service-card {
  min-height: 220px;
  padding: 1.2rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(12, 109, 73, .35);
  box-shadow: 0 14px 32px rgba(3, 29, 22, .1);
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 1rem;
  color: var(--green-950);
  background: var(--yellow);
  border-radius: var(--radius);
  font-weight: 1000;
}

.service-card p,
.split-copy p,
.promo-copy p,
.video-copy p,
.location-copy p {
  color: var(--muted);
}

.image-band {
  position: relative;
  height: min(58vw, 620px);
  overflow: hidden;
}

.image-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: clamp(1.4rem, 4vw, 3rem);
  align-items: center;
}

.split-media img,
.promo-gallery img,
.gallery-item img,
.biotek-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}

.split-media {
  aspect-ratio: 4 / 3;
}

.check-list {
  display: grid;
  gap: .75rem;
  margin: 1.2rem 0 1.6rem;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.8rem;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: .42rem;
  left: 0;
  width: .75rem;
  height: .75rem;
  background: var(--yellow);
  border-radius: 2px;
  box-shadow: inset 0 0 0 3px var(--green-900);
}

.split-copy .btn,
.location-copy .btn {
  color: var(--green-950);
}

.biotek-section {
  width: 100%;
  max-width: none;
  padding-right: max(1rem, calc((100% - var(--max)) / 2));
  padding-left: max(1rem, calc((100% - var(--max)) / 2));
  color: #fff;
  background:
    radial-gradient(circle at 20% 10%, rgba(255, 210, 61, .18), transparent 32rem),
    linear-gradient(135deg, var(--green-950), var(--green-800));
}

.biotek-section .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, .78);
}

.biotek-grid {
  display: grid;
  grid-template-columns: 1.05fr .85fr .8fr;
  gap: 1rem;
  align-items: stretch;
}

.biotek-logo,
.biotek-card,
.biotek-photo {
  min-height: 280px;
  background: #fff;
  border-radius: var(--radius);
}

.biotek-logo {
  object-fit: contain;
  padding: 1.5rem;
}

.biotek-card {
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 1.5rem;
  color: var(--green-950);
  background: var(--yellow);
}

.biotek-card p {
  margin: .6rem 0 0;
}

.promo-section {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: clamp(1.4rem, 4vw, 3rem);
  align-items: center;
}

.promo-gallery {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 1rem;
}

.promo-gallery img {
  aspect-ratio: 4 / 3;
}

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

.gallery-item {
  aspect-ratio: 1;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius);
  background: var(--green-900);
  cursor: zoom-in;
}

.gallery-item img {
  transition: transform .35s ease;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.05);
}

.lightbox {
  width: min(92vw, 1000px);
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: #000;
}

.lightbox::backdrop {
  background: rgba(0, 0, 0, .78);
}

.lightbox img {
  width: 100%;
  max-height: 82vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: .5rem;
  right: .5rem;
  z-index: 2;
  width: 42px;
  height: 42px;
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  background: rgba(0, 0, 0, .55);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: var(--radius);
  cursor: pointer;
}

.video-section {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: clamp(1.4rem, 4vw, 3rem);
  align-items: center;
}

.video-section video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: var(--green-950);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.posts-section,
.posts-list-section {
  background: #fff;
}

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

.post-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(3, 29, 22, .08);
}

.post-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.post-card div {
  padding: 1rem;
}

.post-card h2,
.post-card h3 {
  margin: 0 0 .65rem;
}

.post-card h2 a,
.post-card h3 a {
  text-decoration: none;
}

.post-card h2 a:hover,
.post-card h3 a:hover {
  color: var(--green-700);
}

.post-card p:not(.post-meta) {
  color: var(--muted);
}

.post-meta {
  margin: 0 0 .65rem;
  color: var(--green-700);
  font-size: .82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.read-more {
  display: inline-flex;
  margin-top: .4rem;
  color: var(--green-900);
  font-weight: 900;
  text-decoration: none;
}

.read-more:hover {
  color: var(--yellow-strong);
}

.posts-more {
  margin-top: 1.4rem;
}

.empty-public {
  padding: 1.4rem;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.subpage .site-header {
  background: rgba(3, 29, 22, .96);
}

.subpage-main {
  padding-top: 92px;
}

.subpage-hero {
  padding-bottom: 2rem;
}

.subpage-hero h1 {
  max-width: 900px;
  color: var(--green-950);
  font-size: clamp(2.4rem, 6vw, 5rem);
}

.subpage-hero p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.12rem;
}

.article-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 2rem;
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding: 120px 0 5rem;
}

.article-hero {
  max-width: 840px;
}

.article-hero h1 {
  color: var(--green-950);
  font-size: clamp(2.2rem, 6vw, 5rem);
}

.article-summary {
  color: var(--muted);
  font-size: 1.18rem;
}

.article-hero time {
  color: var(--green-700);
  font-weight: 900;
}

.article-image {
  width: 100%;
  max-height: 620px;
  margin: 1.5rem 0;
  object-fit: cover;
  border-radius: var(--radius);
}

.article-body {
  max-width: 780px;
  font-size: 1.08rem;
}

.article-body p {
  margin: 0 0 1.1rem;
}

.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  max-width: 820px;
  margin-top: 1.4rem;
}

.article-tags span {
  padding: .5rem .7rem;
  color: var(--green-900);
  background: var(--green-100);
  border-radius: 999px;
  font-size: .9rem;
  font-weight: 850;
}

.article-cta {
  position: sticky;
  top: 112px;
  align-self: start;
  padding: 1rem;
  color: #fff;
  background: var(--green-900);
  border-radius: var(--radius);
}

.article-cta p {
  color: rgba(255, 255, 255, .76);
}

.article-cta .btn {
  width: 100%;
  margin-top: .6rem;
}

.seo-section {
  width: 100%;
  max-width: none;
  padding-right: max(1rem, calc((100% - var(--max)) / 2));
  padding-left: max(1rem, calc((100% - var(--max)) / 2));
  background: var(--green-950);
  color: #fff;
}

.seo-section .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, .75);
}

.keyword-grid {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
}

.keyword-grid span {
  padding: .7rem .9rem;
  color: var(--green-100);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  background: rgba(255, 255, 255, .06);
}

.location-section {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(1.4rem, 4vw, 3rem);
  align-items: stretch;
}

.contact-cards {
  display: grid;
  gap: .75rem;
  margin-top: 1.5rem;
}

.contact-cards a {
  display: block;
  padding: 1rem;
  text-decoration: none;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}

.contact-cards a:hover,
.contact-cards a:focus-visible {
  border-color: var(--green-700);
  outline: none;
}

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

.contact-cards span {
  color: var(--muted);
  font-size: .95rem;
}

.map-wrap {
  min-height: 470px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.final-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: center;
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto clamp(4rem, 7vw, 6rem);
  padding: clamp(1.4rem, 4vw, 2.4rem);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255, 210, 61, .16), transparent 34%),
    var(--green-900);
  border-radius: var(--radius);
}

.final-cta p:not(.eyebrow) {
  max-width: 600px;
  margin: .8rem 0 0;
  color: rgba(255, 255, 255, .78);
}

.site-footer {
  display: grid;
  grid-template-columns: 1.3fr .7fr .8fr;
  gap: 2rem;
  padding: clamp(2rem, 5vw, 3rem) max(1rem, calc((100% - var(--max)) / 2));
  color: rgba(255, 255, 255, .78);
  background: var(--green-950);
}

.site-footer strong,
.site-footer a {
  display: block;
  color: #fff;
}

.site-footer a {
  margin-top: .5rem;
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--yellow);
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .brand {
    width: 160px;
  }

  .nav-toggle {
    display: block;
  }

  .header-cta {
    display: none;
  }

  .site-nav {
    position: fixed;
    inset: 70px 1rem auto;
    display: none;
    grid-column: 1 / -1;
    padding: .65rem;
    background: rgba(3, 29, 22, .98);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    padding: .95rem;
  }

  .quick-strip,
  .service-grid,
  .gallery-grid,
  .post-preview-grid,
  .article-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .intro-grid,
  .split-section,
  .promo-section,
  .video-section,
  .location-section,
  .final-cta,
  .site-footer,
  .article-main {
    grid-template-columns: 1fr;
  }

  .article-cta {
    position: static;
  }

  .biotek-grid {
    grid-template-columns: 1fr 1fr;
  }

  .biotek-photo {
    grid-column: 1 / -1;
    max-height: 520px;
  }

  .final-actions {
    margin-top: 0;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: .65rem 1rem;
  }

  .hero-inner {
    width: min(100% - 1.25rem, var(--max));
    padding-bottom: 1.4rem;
  }

  h1 {
    font-size: clamp(2.6rem, 15vw, 4.6rem);
  }

  h2 {
    font-size: clamp(1.8rem, 9vw, 2.7rem);
  }

  .hero-facts,
  .quick-strip,
  .service-grid,
  .gallery-grid,
  .promo-gallery,
  .biotek-grid,
  .post-preview-grid {
    grid-template-columns: 1fr;
  }

  .quick-strip a {
    border-right: 0;
    border-bottom: 1px solid rgba(3, 29, 22, .16);
  }

  .section {
    width: min(100% - 1.25rem, var(--max));
    padding: 3.5rem 0;
  }

  .services-section,
  .biotek-section,
  .seo-section {
    padding-right: .625rem;
    padding-left: .625rem;
  }

  .image-band {
    height: 70vw;
  }

  .map-wrap {
    min-height: 360px;
  }

  .btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
