@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600&display=swap');

:root {
  --deep-space: #f8faff;
  --fresh-moss: #7FB069;
  --sunlight-cream: #FFFBDB;
  --pine-green: #4A7C59;
  --carbon-fog: #dde3f3;
  --text-dark: #2a3d2e;
  --text-light: #5a6d5e;
  --white: #ffffff;
  --shadow-soft: 0 0.25rem 1rem rgba(74, 124, 89, 0.08);
  --shadow-plastic: 0 0.5rem 2rem rgba(74, 124, 89, 0.12), 0 0.125rem 0.5rem rgba(74, 124, 89, 0.08);
  --shadow-elevated: 0 1rem 3rem rgba(74, 124, 89, 0.15), 0 0.25rem 1rem rgba(74, 124, 89, 0.1);
  --shadow-inset: inset 0 0.125rem 0.25rem rgba(74, 124, 89, 0.1);
  --gradient-plastic: linear-gradient(145deg, rgba(255,255,255,0.9) 0%, rgba(221,227,243,0.6) 100%);
  --gradient-moss: linear-gradient(145deg, #7FB069 0%, #4A7C59 100%);
  --font-display: 'Playfair Display', serif;
  --font-body: 'Outfit', sans-serif;
  --radius-xs: 0.375rem;
  --radius-sm: 0.625rem;
  --radius-md: 1rem;
  --radius-lg: 1.5rem;
  --radius-xl: 2rem;
  --radius-full: 50rem;
  --space-2xs: 0.25rem;
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --transition-fast: 0.15s ease;
  --transition-base: 0.25s ease;
  --transition-slow: 0.4s ease;
  --max-width: 72rem;
}

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

html {
  font-size: 15px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--deep-space);
  min-height: 100vh;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input, textarea {
  font-family: inherit;
  font-size: inherit;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.plastic-card {
  background: var(--gradient-plastic);
  backdrop-filter: blur(0.625rem);
  border-radius: var(--radius-lg);
  border: 0.0625rem solid rgba(255,255,255,0.8);
  box-shadow: var(--shadow-plastic);
  position: relative;
  overflow: hidden;
}

.plastic-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(180deg, rgba(255,255,255,0.4) 0%, transparent 100%);
  pointer-events: none;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: var(--space-sm) var(--space-lg);
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gradient-moss);
  color: var(--white);
  box-shadow: 0 0.25rem 1rem rgba(127, 176, 105, 0.35);
}

.btn-primary:hover {
  transform: translateY(-0.125rem);
  box-shadow: 0 0.5rem 1.5rem rgba(127, 176, 105, 0.45);
}

.btn-secondary {
  background: var(--white);
  color: var(--pine-green);
  border: 0.0625rem solid var(--carbon-fog);
  box-shadow: var(--shadow-soft);
}

.btn-secondary:hover {
  background: var(--sunlight-cream);
  border-color: var(--fresh-moss);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: var(--space-sm);
}

.section-subtitle {
  font-size: 0.9375rem;
  color: var(--text-light);
  max-width: 32rem;
}

.header {
  position: fixed;
  top: var(--space-md);
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - var(--space-xl));
  max-width: var(--max-width);
  z-index: 1000;
  transition: all var(--transition-slow);
}

.header.scrolled {
  top: var(--space-xs);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-sm) var(--space-lg);
  background: var(--gradient-plastic);
  backdrop-filter: blur(1rem);
  border-radius: var(--radius-full);
  border: 0.0625rem solid rgba(255,255,255,0.9);
  box-shadow: var(--shadow-plastic);
}

.logo {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--pine-green);
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.logo-dot {
  width: 0.5rem;
  height: 0.5rem;
  background: var(--fresh-moss);
  border-radius: 50%;
}

.nav-desktop {
  display: none;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: var(--space-2xs);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-dark);
  padding: var(--space-xs) 0;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 0.125rem;
  background: var(--fresh-moss);
  border-radius: var(--radius-full);
  transition: width var(--transition-base);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link .material-symbols-outlined {
  font-size: 1.125rem;
  color: var(--fresh-moss);
}

.nav-cta {
  margin-left: var(--space-sm);
}

.burger {
  display: flex;
  flex-direction: column;
  gap: 0.3125rem;
  padding: var(--space-xs);
  z-index: 1001;
}

.burger span {
  width: 1.25rem;
  height: 0.125rem;
  background: var(--pine-green);
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
}

.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(0.3125rem, 0.3125rem);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(0.3125rem, -0.3125rem);
}

.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--deep-space);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-slow);
}

.mobile-nav.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav .nav-link {
  font-size: 1.25rem;
  padding: var(--space-sm);
}

.hero {
  min-height: 100vh;
  padding: calc(5rem + var(--space-3xl)) var(--space-lg) var(--space-3xl);
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  gap: var(--space-xl);
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-xs) var(--space-md);
  background: var(--sunlight-cream);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--pine-green);
  margin-bottom: var(--space-lg);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: var(--space-md);
}

.hero-title span {
  color: var(--fresh-moss);
}

.hero-text {
  font-size: 0.9375rem;
  color: var(--text-light);
  max-width: 28rem;
  margin-bottom: var(--space-xl);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.spotlight {
  padding-top: var(--space-4xl);
}

.spotlight-grid {
  display: grid;
  gap: var(--space-xl);
  align-items: center;
}

.spotlight-copy {
  padding: var(--space-2xl);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2xs);
  padding: var(--space-2xs) var(--space-sm);
  background: var(--sunlight-cream);
  color: var(--pine-green);
  font-size: 0.75rem;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-sm);
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin: var(--space-md) 0;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: var(--space-2xs) var(--space-sm);
  background: var(--carbon-fog);
  color: var(--text-dark);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
}

.spotlight-stats {
  display: grid;
  gap: var(--space-sm);
  grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
  margin-top: var(--space-lg);
}

.stat {
  padding: var(--space-md);
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.stat-value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--pine-green);
  margin-bottom: var(--space-2xs);
}

.stat-label {
  font-size: 0.8125rem;
  color: var(--text-light);
}

.spotlight-visual {
  position: relative;
}

.spotlight-frame {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-elevated);
  position: relative;
}

.spotlight-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.spotlight-badge {
  position: absolute;
  bottom: var(--space-md);
  right: var(--space-md);
  background: var(--gradient-moss);
  color: var(--white);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2xs);
  box-shadow: var(--shadow-plastic);
}

.hero-collage {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  position: relative;
}

.collage-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.collage-item:nth-child(1) {
  grid-column: span 2;
  background: var(--gradient-moss);
  padding: var(--space-xl);
  color: var(--white);
}

.collage-item:nth-child(2) {
  background: var(--sunlight-cream);
  padding: var(--space-lg);
}

.collage-item:nth-child(3) {
  background: var(--white);
  padding: var(--space-lg);
  box-shadow: var(--shadow-plastic);
}

.collage-stat {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: var(--space-2xs);
}

.collage-label {
  font-size: 0.8125rem;
  opacity: 0.9;
}

.section {
  padding: var(--space-3xl) var(--space-lg);
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.section-header .section-subtitle {
  margin: 0 auto;
}

.services-grid {
  display: grid;
  gap: var(--space-lg);
}

.service-card {
  padding: var(--space-xl);
  position: relative;
  z-index: 1;
}

.service-icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--sunlight-cream);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
  color: var(--pine-green);
}

.service-title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: var(--space-xs);
}

.service-text {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.7;
}

.process-list {
  display: grid;
  gap: var(--space-lg);
  counter-reset: process;
}

.process-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-lg);
  padding: var(--space-lg);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  counter-increment: process;
}

.process-number {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-moss);
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
}

.process-content h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: var(--space-2xs);
}

.process-content p {
  font-size: 0.875rem;
  color: var(--text-light);
}

.metrics-section {
  padding-top: var(--space-2xl);
}

.metrics-grid {
  display: grid;
  gap: var(--space-md);
  grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr));
}

.metric-card {
  padding: var(--space-xl);
  background: var(--gradient-plastic);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-plastic);
  border: 0.0625rem solid rgba(255,255,255,0.8);
}

.metric-label {
  font-size: 0.875rem;
  color: var(--text-light);
  margin-bottom: var(--space-xs);
}

.metric-value {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--pine-green);
  margin-bottom: var(--space-sm);
}

.metric-desc {
  font-size: 0.85rem;
  color: var(--text-dark);
  line-height: 1.7;
}

.cta-section {
  background: var(--pine-green);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  text-align: center;
  color: var(--white);
  margin: var(--space-2xl) var(--space-lg);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(127,176,105,0.3) 0%, transparent 60%);
  pointer-events: none;
}

.cta-section .section-title {
  color: var(--white);
  position: relative;
  z-index: 1;
}

.cta-section .section-subtitle {
  color: rgba(255,255,255,0.85);
  margin: 0 auto var(--space-xl);
  position: relative;
  z-index: 1;
}

.cta-section .btn-primary {
  background: var(--white);
  color: var(--pine-green);
  box-shadow: 0 0.25rem 1rem rgba(0,0,0,0.15);
  position: relative;
  z-index: 1;
}

.footer {
  padding: var(--space-xl) var(--space-lg);
  background: var(--carbon-fog);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  align-items: center;
  text-align: center;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--pine-green);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-sm) var(--space-lg);
}

.footer-link {
  font-size: 0.75rem;
  color: var(--text-light);
  transition: color var(--transition-fast);
}

.footer-link:hover {
  color: var(--fresh-moss);
}

.footer-copy {
  font-size: 0.6875rem;
  color: var(--text-light);
}

.page-hero {
  padding: calc(5rem + var(--space-3xl)) var(--space-lg) var(--space-2xl);
  text-align: center;
}

.page-hero .section-subtitle {
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  gap: var(--space-xl);
}

.contact-form {
  padding: var(--space-xl);
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  margin-bottom: var(--space-xs);
  color: var(--text-dark);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: var(--space-sm) var(--space-md);
  background: var(--white);
  border: 0.0625rem solid var(--carbon-fog);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  transition: all var(--transition-fast);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--fresh-moss);
  box-shadow: 0 0 0 0.1875rem rgba(127,176,105,0.15);
}

.form-textarea {
  min-height: 7.5rem;
  resize: vertical;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  font-size: 0.75rem;
  color: var(--text-light);
  cursor: pointer;
}

.form-checkbox input {
  width: 1rem;
  height: 1rem;
  margin-top: 0.125rem;
  accent-color: var(--fresh-moss);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.info-item {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.info-icon {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--sunlight-cream);
  border-radius: var(--radius-sm);
  color: var(--pine-green);
  flex-shrink: 0;
}

.info-content h4 {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: var(--space-2xs);
}

.info-content p,
.info-content a {
  font-size: 0.8125rem;
  color: var(--text-light);
}

.info-content a:hover {
  color: var(--fresh-moss);
}

.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 16/9;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.session-highlight .ribbon-card {
  box-shadow: var(--shadow-soft);
}

.session-grid {
  display: grid;
  gap: var(--space-xl);
  align-items: center;
}

.session-visual {
  position: relative;
}

.session-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-elevated);
}

.session-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.session-badge {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  padding: var(--space-xs) var(--space-md);
  background: var(--gradient-moss);
  color: var(--white);
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2xs);
  box-shadow: var(--shadow-plastic);
}

.thank-you-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-xl);
  text-align: center;
}

.thank-you-content {
  max-width: 28rem;
}

.thank-you-icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-moss);
  border-radius: 50%;
  color: var(--white);
}

.thank-you-icon .material-symbols-outlined {
  font-size: 2rem;
}

.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-xl);
  text-align: center;
}

.error-content {
  max-width: 28rem;
}

.error-code {
  font-family: var(--font-display);
  font-size: clamp(4rem, 15vw, 8rem);
  font-weight: 600;
  color: var(--carbon-fog);
  line-height: 1;
  margin-bottom: var(--space-md);
}

.cookie-popup {
  position: fixed;
  bottom: var(--space-md);
  left: var(--space-md);
  right: var(--space-md);
  max-width: 26rem;
  padding: var(--space-lg);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-elevated);
  z-index: 9999;
  transform: translateY(150%);
  transition: transform var(--transition-slow);
}

.cookie-popup.show {
  transform: translateY(0);
}

.cookie-popup h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: var(--space-xs);
}

.cookie-popup p {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-bottom: var(--space-md);
}

.cookie-actions {
  display: flex;
  gap: var(--space-sm);
}

.cookie-actions .btn {
  flex: 1;
  padding: var(--space-xs) var(--space-md);
  font-size: 0.75rem;
}

.cookie-manage {
  background: none;
  border: none;
  color: var(--pine-green);
  cursor: pointer;
  font-weight: 600;
  padding: 0;
  text-decoration: underline;
}

.cookie-manage:hover {
  color: var(--forest-green);
}

.map-wrapper[data-consent-block="map"] {
  position: relative;
}

.map-placeholder {
  display: none;
  padding: var(--space-md);
  background: var(--white);
  border: 1px dashed var(--border-light);
  border-radius: var(--radius-md);
  color: var(--text-light);
  text-align: center;
}

[data-cookie-consent="declined"] .map-placeholder,
[data-cookie-consent="unset"] .map-placeholder {
  display: block;
}

[data-cookie-consent="declined"] .map-wrapper iframe,
[data-cookie-consent="unset"] .map-wrapper iframe {
  display: none;
}

.features-grid {
  display: grid;
  gap: var(--space-md);
}

.feature-card {
  padding: var(--space-lg);
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  transition: all var(--transition-base);
}

.feature-card:hover {
  transform: translateY(-0.25rem);
  box-shadow: var(--shadow-plastic);
}

.feature-icon {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--sunlight-cream);
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-sm);
  color: var(--pine-green);
}

.feature-title {
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: var(--space-2xs);
}

.feature-text {
  font-size: 0.8125rem;
  color: var(--text-light);
}

.experience-ribbons .section-header {
  margin-bottom: var(--space-xl);
}

.ribbon-list {
  display: grid;
  gap: var(--space-md);
}

.ribbon-card {
  padding: var(--space-xl);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.ribbon-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(127,176,105,0.08), transparent 55%);
  pointer-events: none;
}

.ribbon-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: var(--space-xs);
}

.ribbon-text {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: var(--space-sm);
  line-height: 1.7;
}

.ribbon-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
}

.contact-code {
  display: inline-block;
  font-weight: 600;
  color: var(--pine-green);
}

.outreach-grid {
  display: grid;
  gap: var(--space-xl);
  align-items: center;
}

.outreach-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-elevated);
}

.outreach-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.outreach-badge {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  background: var(--gradient-moss);
  color: var(--white);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2xs);
  box-shadow: var(--shadow-plastic);
}

.library-grid {
  display: grid;
  gap: var(--space-xl);
  align-items: center;
}

.library-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-elevated);
}

.library-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.library-badge {
  position: absolute;
  bottom: var(--space-md);
  left: var(--space-md);
  background: var(--gradient-moss);
  color: var(--white);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2xs);
  box-shadow: var(--shadow-plastic);
}

.docs-content {
  padding: var(--space-xl);
}

.docs-nav {
  display: flex;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
  flex-wrap: wrap;
}

.docs-nav-btn {
  padding: var(--space-xs) var(--space-md);
  font-size: 0.8125rem;
  font-weight: 500;
  background: var(--carbon-fog);
  border-radius: var(--radius-full);
  color: var(--text-dark);
  transition: all var(--transition-fast);
}

.docs-nav-btn:hover,
.docs-nav-btn.active {
  background: var(--fresh-moss);
  color: var(--white);
}

.docs-section {
  display: none;
}

.docs-section.active {
  display: block;
}

.docs-section h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: var(--space-md);
}

.docs-section p {
  font-size: 0.875rem;
  color: var(--text-light);
  margin-bottom: var(--space-md);
  line-height: 1.8;
}

.docs-list {
  margin: var(--space-md) 0;
}

.docs-list li {
  position: relative;
  padding-left: var(--space-lg);
  font-size: 0.875rem;
  color: var(--text-light);
  margin-bottom: var(--space-sm);
}

.docs-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 0.375rem;
  height: 0.375rem;
  background: var(--fresh-moss);
  border-radius: 50%;
}

.legal-content {
  padding: var(--space-xl);
}

.legal-content h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: var(--space-xl) 0 var(--space-md);
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  font-size: 0.875rem;
  color: var(--text-light);
  margin-bottom: var(--space-md);
  line-height: 1.8;
}

.legal-content ul {
  margin: var(--space-md) 0;
}

.legal-content li {
  position: relative;
  padding-left: var(--space-lg);
  font-size: 0.875rem;
  color: var(--text-light);
  margin-bottom: var(--space-sm);
}

.legal-content li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 0.375rem;
  height: 0.375rem;
  background: var(--fresh-moss);
  border-radius: 50%;
}

@media (min-width: 36rem) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .spotlight-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  
  .session-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  
  .library-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  
  .outreach-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 48rem) {
  .nav-desktop {
    display: flex;
  }
  
  .burger {
    display: none;
  }
  
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
  }
  
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
  
  .footer-links {
    order: 0;
  }
}

@media (min-width: 64rem) {
  html {
    font-size: 16px;
  }
  
  .process-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 20rem) {
  html {
    font-size: 14px;
  }
  
  .container {
    padding: 0 var(--space-md);
  }
  
  .header {
    width: calc(100% - var(--space-md));
  }
  
  .header-inner {
    padding: var(--space-xs) var(--space-md);
  }
}
