/* =============================================
   GREEN PRECAUTIONARY INSTITUTE
   Editorial / Scientific Journal Aesthetic

   Botanical journal meets clinical precision.
   Unified design system across all pages.
   BEM inheritance with CSS custom properties.
   ============================================= */

:root {
  --green: #076951;
  --teal: #3aab8a;
  --earth: #365951;
  --dark: #383d45;
  --mint: #E6F0EE;
  --seafoam: #F2F7F6;
  --offwhite: #f8fafa;
  --white: #ffffff;
  --deep: #021f17;
  --warm: #c4693d;
  --gold: #b8963e;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Manrope', system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur: 0.5s;
  --dur-slow: 0.8s;
  --radius: 2px;
}

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

html, body { overflow-x: hidden; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
* { word-break: break-word; }

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }

/* ---- Grain overlay ---- */

.grain { position: relative; }

.grain::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.028;
  pointer-events: none;
  z-index: 1;
  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;
}

/* ---- Container ---- */

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.container--narrow { max-width: 860px; }
.container--wide { max-width: 1400px; }

@media (min-width: 768px) { .container { padding: 0 40px; } }

/* ---- Buttons ---- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.06em;
  padding: 16px 36px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--dur) var(--ease);
  text-transform: uppercase;
}

.btn--primary {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}

.btn--primary:hover {
  background: var(--teal);
  border-color: var(--teal);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.25);
}

.btn--ghost:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.06);
}

.btn--outline {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}

.btn--outline:hover {
  background: var(--green);
  color: var(--white);
}

.btn--warm {
  background: var(--warm);
  color: var(--white);
  border-color: var(--warm);
}

.btn--warm:hover {
  background: #a85530;
  border-color: #a85530;
}

.btn--sm {
  padding: 10px 24px;
  font-size: 11px;
}

/* ================================================
   HEADER
   ================================================ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background var(--dur), backdrop-filter var(--dur);
}

.site-header--scrolled {
  background: rgba(2, 31, 23, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.site-header--light {
  background: transparent;
}

.site-header--light.site-header--scrolled {
  background: rgba(2, 31, 23, 0.92);
}

.site-header__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

@media (min-width: 768px) { .site-header__inner { padding: 0 40px; } }

.logo {
  color: var(--white);
  text-decoration: none;
}

.logo__wordmark {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.logo__wordmark span {
  display: block;
  font-size: 11px;
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.45;
  margin-top: 3px;
}

.nav { display: none; align-items: center; gap: 0; }

@media (min-width: 1024px) { .nav { display: flex; } }

.nav__link {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  padding: 10px 16px;
  position: relative;
  transition: color var(--dur);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 16px;
  right: 16px;
  height: 1px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}

.nav__link:hover { color: var(--white); }
.nav__link:hover::after { transform: scaleX(1); }
.nav__link--active { color: var(--white); }
.nav__link--active::after { transform: scaleX(1); }

.header-cta {
  display: none;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  padding: 10px 24px;
  border: 1px solid rgba(255,255,255,0.2);
  transition: all var(--dur);
}

.header-cta:hover { border-color: var(--white); background: rgba(255,255,255,0.06); }

@media (min-width: 1024px) { .header-cta { display: inline-flex; } }

.nav-toggle { display: flex; align-items: center; justify-content: center; color: var(--white); padding: 8px; background: none; }
@media (min-width: 1024px) { .nav-toggle { display: none; } }

/* Mobile nav - see utility section for .nav-mobile styles */

.nav-mobile__link {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 500;
  color: rgba(255,255,255,0.4);
  padding: 12px 0;
  transition: color var(--dur);
}

.nav-mobile__link:hover,
.nav-mobile__link--active { color: var(--white); }

.nav-mobile__close {
  position: absolute;
  top: 28px;
  right: 28px;
  color: var(--white);
  padding: 8px;
}

/* ================================================
   HERO — Full-bleed photo with deep overlay
   ================================================ */

.hero {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 120px 0 100px;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .hero {
    padding: 140px 0 80px;
  }
}

/* Background image + overlay */

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

.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(2,31,23,0.75) 0%, rgba(2,31,23,0.6) 40%, rgba(2,31,23,0.88) 100%),
    linear-gradient(90deg, rgba(2,31,23,0.7) 0%, transparent 70%);
}

/* Content */

.hero__content {
  position: relative;
  z-index: 2;
}

.hero__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero__label::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--teal);
  flex-shrink: 0;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(46px, 7vw, 92px);
  font-weight: 500;
  line-height: 1.0;
  color: var(--white);
  letter-spacing: -0.025em;
  max-width: 800px;
}

.hero__title em {
  font-style: italic;
  color: var(--teal);
}

.hero__rule {
  width: 72px;
  height: 2px;
  background: linear-gradient(90deg, var(--warm), var(--teal));
  margin: 40px 0;
}

.hero__text {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255,255,255,0.55);
  max-width: 460px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 40px;
}

/* Scroll indicator */

.hero__scroll {
  position: absolute;
  bottom: 40px;
  right: 40px;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.25);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  writing-mode: vertical-rl;
  z-index: 5;
}

@media (min-width: 768px) { .hero__scroll { display: flex; } }

.hero__scroll-line {
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.25), transparent);
  animation: scroll-pulse 2.5s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* ---- Subpage hero ---- */

.hero--sub {
  min-height: 0 !important;
  padding: 140px 0 60px !important;
  align-items: flex-end !important;
  background: var(--deep);
}

@media (min-width: 768px) {
  .hero--sub { padding: 160px 0 72px !important; }
}

.hero--sub .hero__bg { display: none; }
.hero--sub .hero__label { margin-bottom: 16px; font-size: 11px; }
.hero--sub .hero__title { font-size: clamp(32px, 5vw, 52px); }
.hero--sub .hero__rule { display: none; }
.hero--sub .hero__text { display: none; }

/* ================================================
   PILLARS — Homepage two-pillar layout
   ================================================ */

.pillars {
  padding: 100px 0 120px;
  background: var(--white);
}

@media (min-width: 768px) { .pillars { padding: 140px 0 160px; } }

.pillars__intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 80px;
}

.pillars__intro-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
  display: block;
}

.pillars__intro-heading {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 20px;
  letter-spacing: -0.015em;
}

.pillars__intro-text {
  font-size: 18px;
  line-height: 1.85;
  color: var(--earth);
}

.pillars__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 768px) {
  .pillars__grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

.pillar-card {
  position: relative;
  padding: 56px 40px 48px;
  overflow: hidden;
  transition: transform var(--dur) var(--ease);
}

.pillar-card:hover { transform: translateY(-4px); }

.pillar-card--consultancy {
  background: var(--deep);
  color: var(--white);
}

.pillar-card--research {
  background: var(--mint);
  color: var(--dark);
}

.pillar-card__number {
  font-family: var(--font-display);
  font-size: clamp(120px, 16vw, 200px);
  font-weight: 300;
  line-height: 0.8;
  letter-spacing: -0.05em;
  position: absolute;
  top: -20px;
  right: -10px;
  opacity: 0.06;
  pointer-events: none;
}

.pillar-card--consultancy .pillar-card__number { color: var(--white); }
.pillar-card--research .pillar-card__number { color: var(--green); }

.pillar-card__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}

.pillar-card--consultancy .pillar-card__label { color: var(--teal); }
.pillar-card--research .pillar-card__label { color: var(--teal); }

.pillar-card__heading {
  font-size: clamp(28px, 3.5vw, 38px);
  font-weight: 500;
  margin-bottom: 24px;
  letter-spacing: -0.015em;
  position: relative;
}

.pillar-card__text {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 28px;
  position: relative;
}

.pillar-card--consultancy .pillar-card__text { color: rgba(255,255,255,0.55); }
.pillar-card--research .pillar-card__text { color: var(--earth); }

.pillar-card__list {
  position: relative;
  margin-bottom: 36px;
}

.pillar-card__list li {
  font-size: 15px;
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
}

.pillar-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  width: 8px;
  height: 1px;
  background: var(--teal);
}

.pillar-card--consultancy .pillar-card__list li { color: rgba(255,255,255,0.65); }
.pillar-card--research .pillar-card__list li { color: var(--earth); }

.pillar-card__link {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: gap var(--dur) var(--ease);
  position: relative;
}

.pillar-card__link:hover { gap: 18px; }

.pillar-card--consultancy .pillar-card__link { color: var(--teal); }
.pillar-card--research .pillar-card__link { color: var(--green); }

/* ================================================
   PARTNER LINKS — borstecho.nl & degroenezuster.nl
   ================================================ */

.partners {
  padding: 80px 0;
  background: var(--seafoam);
  border-top: 1px solid rgba(7, 105, 81, 0.08);
  border-bottom: 1px solid rgba(7, 105, 81, 0.08);
}

.partners__heading {
  text-align: center;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 12px;
}

.partners__subtext {
  text-align: center;
  font-size: 17px;
  color: var(--earth);
  max-width: 560px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

.partners__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

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

.partner-card {
  background: var(--white);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  border: 1px solid rgba(7, 105, 81, 0.08);
  transition: all var(--dur) var(--ease);
}

.partner-card:hover {
  border-color: var(--teal);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}

.partner-card__logo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--mint);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--green);
}

.partner-card__name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--dark);
}

.partner-card__desc {
  font-size: 15px;
  color: var(--earth);
  line-height: 1.6;
}

.partner-card__cta {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  transition: gap var(--dur) var(--ease);
}

.partner-card:hover .partner-card__cta { gap: 14px; }

/* ================================================
   SECTION — Generic content sections
   ================================================ */

.section {
  padding: 100px 0;
}

@media (min-width: 768px) { .section { padding: 120px 0; } }

.section--white { background: var(--white); }
.section--seafoam { background: var(--seafoam); }
.section--mint { background: var(--mint); }
.section--dark { background: var(--deep); color: var(--white); }
.section--offwhite { background: var(--offwhite); }

.section__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
  display: block;
}

.section--dark .section__label { color: rgba(255,255,255,0.35); }

.section__heading {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 20px;
  letter-spacing: -0.015em;
}

.section--dark .section__heading { color: var(--white); }

.section__text {
  font-size: 18px;
  line-height: 1.85;
  color: var(--earth);
  max-width: 680px;
}

.section--dark .section__text { color: rgba(255,255,255,0.55); }

.section__text + .section__text { margin-top: 16px; }

.section__header {
  margin-bottom: 56px;
}

.section__header--center {
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* ================================================
   CONTENT GRID — Two column layouts
   ================================================ */

.content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
  min-width: 0;
}

.content-grid > * {
  min-width: 0;
}

@media (min-width: 768px) {
  .content-grid { grid-template-columns: 1fr 1fr; gap: 72px; }
  .content-grid--wide-left { grid-template-columns: 1.4fr 0.6fr; }
  .content-grid--wide-right { grid-template-columns: 0.6fr 1.4fr; }
  .content-grid--sidebar { grid-template-columns: 280px 1fr; }
}

/* ================================================
   THERMOGRAPHY PAGE — Content blocks
   ================================================ */

.thermo-intro {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 768px) {
  .thermo-intro { grid-template-columns: 1fr 1fr; gap: 80px; }
}

.thermo-visual {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--deep) 0%, #0a3d2e 50%, var(--teal) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.thermo-visual__placeholder {
  font-family: var(--font-display);
  font-size: 14px;
  font-style: italic;
  color: rgba(255,255,255,0.4);
  text-align: center;
  padding: 20px;
}

.thermo-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 640px) { .thermo-features { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .thermo-features { grid-template-columns: 1fr 1fr 1fr; } }

.thermo-feature {
  padding: 32px 28px;
  background: var(--white);
  border: 1px solid rgba(7, 105, 81, 0.08);
  transition: border-color var(--dur);
}

.thermo-feature:hover { border-color: var(--teal); }

.thermo-feature__icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--teal);
}

.thermo-feature__title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--dark);
}

.thermo-feature__text {
  font-size: 15px;
  color: var(--earth);
  line-height: 1.7;
}

/* ---- Booking redirect banner ---- */

.booking-banner {
  padding: 48px 40px;
  background: var(--mint);
  border-left: 3px solid var(--green);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
}

.booking-banner__text {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 500;
  color: var(--dark);
  max-width: 520px;
}

/* ================================================
   TRAINING PAGE
   ================================================ */

.training-topics {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid rgba(7, 105, 81, 0.12);
}

.training-topic {
  padding: 36px 0;
  border-bottom: 1px solid rgba(7, 105, 81, 0.12);
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  transition: background var(--dur) var(--ease);
}

@media (min-width: 640px) {
  .training-topic {
    grid-template-columns: 48px 1fr;
    gap: 24px;
  }
}

.training-topic:hover {
  background: rgba(7, 105, 81, 0.03);
}

.training-topic__number {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  font-style: italic;
  color: var(--teal);
  opacity: 0.5;
  transition: opacity var(--dur);
}

.training-topic:hover .training-topic__number { opacity: 1; }

.training-topic__title {
  font-family: var(--font-display);
  font-size: clamp(19px, 2vw, 23px);
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 4px;
  transition: color var(--dur);
}

.training-topic:hover .training-topic__title { color: var(--green); }

.training-topic__desc {
  font-size: 15px;
  color: var(--earth);
  line-height: 1.7;
}

.training-topic__subtopics {
  margin-top: 12px;
  padding-left: 20px;
}

.training-topic__subtopics li {
  font-size: 15px;
  color: var(--earth);
  padding: 4px 0;
  position: relative;
  padding-left: 16px;
}

.training-topic__subtopics li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 6px;
  height: 1px;
  background: var(--teal);
}

/* ---- Equipment block ---- */

.equipment-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) { .equipment-grid { grid-template-columns: 1fr 1fr 1fr; } }

.equipment-card {
  padding: 32px 28px;
  background: var(--white);
  border: 1px solid rgba(7, 105, 81, 0.08);
}

.equipment-card__title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}

.equipment-card__text {
  font-size: 15px;
  color: var(--earth);
  line-height: 1.7;
}

/* ---- Support block ---- */

.support-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) { .support-grid { grid-template-columns: 1fr 1fr 1fr; } }

.support-card {
  padding: 32px 28px;
  background: var(--seafoam);
  border-left: 2px solid var(--teal);
}

.support-card__title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}

.support-card__text {
  font-size: 15px;
  color: var(--earth);
  line-height: 1.7;
}

/* ================================================
   RESEARCH PAGE
   ================================================ */

.research-hero-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

@media (min-width: 768px) {
  .research-hero-split { grid-template-columns: 1fr 1fr; gap: 72px; }
}

.research-stat {
  text-align: center;
  padding: 32px 20px;
}

.research-stat__number {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 300;
  color: var(--green);
  line-height: 1;
  letter-spacing: -0.03em;
}

.research-stat__label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--earth);
  margin-top: 8px;
}

.research-groups {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 768px) { .research-groups { grid-template-columns: 1fr 1fr 1fr; } }

.research-group {
  padding: 32px 28px;
  border: 1px solid rgba(7, 105, 81, 0.12);
  background: var(--white);
}

.research-group__badge {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 12px;
}

.research-group__title {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}

.research-group__text {
  font-size: 15px;
  color: var(--earth);
  line-height: 1.7;
}

/* ---- Partner types ---- */

.partner-types {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) { .partner-types { grid-template-columns: 1fr 1fr 1fr; } }

.partner-type {
  padding: 36px 28px;
  background: var(--white);
  border-top: 3px solid var(--teal);
}

.partner-type__title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 12px;
}

.partner-type__text {
  font-size: 15px;
  color: var(--earth);
  line-height: 1.7;
}

/* ================================================
   FORMS
   ================================================ */

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--earth);
  margin-bottom: 8px;
}

.form-input {
  width: 100%;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--dark);
  background: var(--white);
  border: 1px solid rgba(7, 105, 81, 0.15);
  transition: border-color var(--dur);
  outline: none;
}

.form-input:focus {
  border-color: var(--teal);
}

.form-input::placeholder { color: rgba(54, 89, 81, 0.4); }

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

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }

.form-select {
  width: 100%;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--dark);
  background: var(--white);
  border: 1px solid rgba(7, 105, 81, 0.15);
  cursor: pointer;
  outline: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23365951' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.form-select:focus { border-color: var(--teal); }

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 0;
  cursor: pointer;
}

.form-check input[type="checkbox"],
.form-check input[type="radio"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--green);
  flex-shrink: 0;
}

.form-check__label {
  font-size: 15px;
  color: var(--dark);
  line-height: 1.5;
}

.form-section-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(7, 105, 81, 0.12);
}

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

.bio {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}

@media (min-width: 768px) {
  .bio { grid-template-columns: 0.4fr 0.6fr; gap: 72px; }
}

.bio__photo {
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, var(--mint) 0%, var(--seafoam) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.bio__photo-placeholder {
  font-family: var(--font-display);
  font-size: 14px;
  font-style: italic;
  color: var(--earth);
  opacity: 0.5;
  text-align: center;
  padding: 20px;
}

.bio__name {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 8px;
}

.bio__role {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 28px;
  display: block;
}

.bio__text {
  font-size: 17px;
  line-height: 1.85;
  color: var(--earth);
}

.bio__text + .bio__text { margin-top: 16px; }

/* ---- Awards Section — Editorial spread ---- */

.awards-section {
  background: var(--deep);
  padding: 64px 48px;
  position: relative;
  overflow: hidden;
  margin-top: 0;
}

@media (max-width: 767px) { .awards-section { padding: 48px 24px; } }

.awards-section__header {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
  margin-bottom: 56px;
}

.awards-section__rule {
  height: 1px;
  flex: 1;
  max-width: 120px;
  background: linear-gradient(90deg, transparent, rgba(58, 171, 138, 0.3));
}

.awards-section__rule:last-child {
  background: linear-gradient(90deg, rgba(58, 171, 138, 0.3), transparent);
}

.awards-section__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  white-space: nowrap;
}

.awards-section__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 700px;
  margin: 0 auto 48px;
  text-align: center;
}

@media (min-width: 640px) {
  .awards-section__grid {
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: center;
  }
}

.awards-section__item { text-align: center; }

.awards-section__year {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 64px);
  font-weight: 300;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.03em;
  display: block;
  margin-bottom: 12px;
  opacity: 0.25;
}

.awards-section__title {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 24px);
  font-weight: 500;
  color: var(--white);
  margin-bottom: 8px;
}

.awards-section__desc {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.5);
  max-width: 260px;
  margin: 0 auto;
}

.awards-section__org {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-top: 12px;
  display: block;
  opacity: 0.7;
}

.awards-section__divider {
  display: none;
  width: 1px;
  height: 100px;
  background: linear-gradient(to bottom, transparent, rgba(58, 171, 138, 0.25), transparent);
}

@media (min-width: 640px) { .awards-section__divider { display: block; } }

.awards-section__photo {
  max-width: 560px;
  margin: 0 auto 48px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.awards-section__photo img {
  width: 100%;
  display: block;
}

.awards-section__mentors {
  text-align: center;
  padding-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.awards-section__mentors-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.2);
  margin-bottom: 12px;
}

.awards-section__mentors-names {
  font-family: var(--font-display);
  font-size: clamp(16px, 1.8vw, 19px);
  font-weight: 400;
  font-style: italic;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.8;
}

.awards-section__mentors-names span {
  font-style: normal;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.2);
  vertical-align: middle;
  margin-left: 4px;
}

/* ================================================
   BLOG PAGE
   ================================================ */

.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 640px) { .blog-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .blog-grid { grid-template-columns: 1fr 1fr 1fr; } }

.blog-card {
  background: var(--white);
  border: 1px solid rgba(7, 105, 81, 0.08);
  transition: all var(--dur) var(--ease);
  overflow: hidden;
}

.blog-card:hover {
  border-color: var(--teal);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}

.blog-card__image {
  aspect-ratio: 16/10;
  background: var(--mint);
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-card__image-placeholder {
  font-family: var(--font-display);
  font-size: 13px;
  font-style: italic;
  color: var(--earth);
  opacity: 0.4;
}

.blog-card__body {
  padding: 24px 28px 28px;
}

.blog-card__date {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 8px;
  display: block;
}

.blog-card__title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
  line-height: 1.3;
  transition: color var(--dur);
}

.blog-card:hover .blog-card__title { color: var(--green); }

.blog-card__excerpt {
  font-size: 15px;
  color: var(--earth);
  line-height: 1.6;
}

/* ================================================
   FAQ PAGE
   ================================================ */

.faq-list {
  max-width: 780px;
  margin: 0 auto;
  border-top: 1px solid rgba(7, 105, 81, 0.12);
}

.faq-item {
  border-bottom: 1px solid rgba(7, 105, 81, 0.12);
}

.faq-item__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 600;
  color: var(--dark);
  text-align: left;
  cursor: pointer;
  transition: color var(--dur);
  gap: 16px;
}

.faq-item__question:hover { color: var(--green); }

.faq-item__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--teal);
  transition: transform 0.3s var(--ease);
}

.faq-item--open .faq-item__icon { transform: rotate(45deg); }

.faq-item__answer {
  padding: 0 0 24px;
  font-size: 17px;
  line-height: 1.8;
  color: var(--earth);
}

/* ================================================
   HANDBOOK
   ================================================ */

.handbook-hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 768px) {
  .handbook-hero { grid-template-columns: 0.4fr 0.6fr; gap: 72px; }
}

.handbook-cover {
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, var(--deep), #0a4432);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 20px 20px 60px rgba(0,0,0,0.15);
}

.handbook-cover__text {
  text-align: center;
  padding: 40px;
}

.handbook-cover__title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  color: var(--white);
  line-height: 1.3;
}

.handbook-cover__author {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  margin-top: 16px;
}

/* ================================================
   DISCLAIMER
   ================================================ */

.disclaimer-strip {
  padding: 48px 0;
  border-top: 1px solid var(--mint);
  border-bottom: 1px solid var(--mint);
  background: var(--white);
}

.disclaimer-strip__inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.disclaimer-strip__marker {
  font-family: var(--font-display);
  font-size: 28px;
  font-style: italic;
  color: var(--teal);
  opacity: 0.4;
  margin-bottom: 16px;
  display: block;
}

.disclaimer-strip__text {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 400;
  font-style: italic;
  line-height: 1.75;
  color: var(--earth);
}

/* ================================================
   FOOTER
   ================================================ */

.site-footer {
  background: var(--deep);
  color: rgba(255,255,255,0.45);
  padding: 80px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  padding-bottom: 72px;
}

@media (min-width: 768px) {
  .footer__grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
  }
}

.footer__col-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
  margin-bottom: 20px;
  display: block;
}

.footer__brand-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}

.footer__brand-desc {
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 24px;
  max-width: 320px;
}

.footer__contact-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 12px;
  font-size: 15px;
}

.footer__contact-icon {
  flex-shrink: 0;
  margin-top: 3px;
  opacity: 0.4;
}

.footer__link {
  display: block;
  font-size: 15px;
  padding: 5px 0;
  transition: color var(--dur);
}

.footer__link:hover { color: var(--white); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px 0;
  font-size: 13px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  color: rgba(255,255,255,0.25);
}

/* ================================================
   ANIMATIONS
   ================================================ */

.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity var(--dur-slow) var(--ease), transform var(--dur-slow) var(--ease);
}

.reveal--left { transform: translateX(-50px) translateY(0); }
.reveal--right { transform: translateX(50px) translateY(0); }

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

.rd1 { transition-delay: 0.08s; }
.rd2 { transition-delay: 0.16s; }
.rd3 { transition-delay: 0.24s; }
.rd4 { transition-delay: 0.32s; }
.rd5 { transition-delay: 0.40s; }

.hero .reveal { transform: translateY(60px); transition-duration: 1s; }

/* ---- Utility ---- */

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

[x-cloak] { display: none !important; }

.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--deep);
  z-index: 200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.nav-mobile.is-open {
  display: flex;
}

/* ---- Prose / Rich Text ---- */

.section__text h2,
.section__text h3,
.bio__text h2,
.bio__text h3,
.container--narrow h2,
.container--narrow h3 {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--dark);
  letter-spacing: -0.015em;
  margin-top: 40px;
  margin-bottom: 16px;
}

.section__text h2,
.container--narrow h2 { font-size: clamp(24px, 3vw, 32px); }
.section__text h3,
.container--narrow h3 { font-size: clamp(20px, 2.5vw, 26px); }

.section__text p,
.bio__text p,
.container--narrow p {
  font-size: 17px;
  line-height: 1.85;
  color: var(--earth);
  margin-bottom: 16px;
}

.section__text p:last-child,
.bio__text p:last-child,
.container--narrow p:last-child { margin-bottom: 0; }

.section__text ul,
.section__text ol,
.container--narrow ul,
.container--narrow ol {
  margin: 16px 0;
  padding-left: 24px;
}

.section__text li,
.container--narrow li {
  font-size: 17px;
  line-height: 1.85;
  color: var(--earth);
  margin-bottom: 8px;
}

.section__text ul li { list-style: disc; }
.section__text ol li { list-style: decimal; }
.container--narrow ul li { list-style: disc; }
.container--narrow ol li { list-style: decimal; }

.section__text blockquote,
.container--narrow blockquote {
  border-left: 3px solid var(--teal);
  padding-left: 24px;
  margin: 24px 0;
  font-style: italic;
  color: var(--earth);
}

.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mb-24 { margin-bottom: 24px; }
.mb-48 { margin-bottom: 48px; }
.mb-64 { margin-bottom: 64px; }
