/* ==========================================================
   Orama — css/style.css
   Prebuilt Tailwind v4.1.5 utility output
   Design Family: [B] Editorial Minimalist
   Palette: Deep dark bg, forest-green accent, balanced sat
   Fonts: Archivo Black (display) + Archivo (body)
   ========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Archivo:wght@400;500&display=swap');

@theme {
  --color-bg-primary: #0d1410;
  --color-bg-secondary: #131a15;
  --color-bg-card: #182019;
  --color-ink-primary: #e8ede9;
  --color-ink-muted: #7a8f7c;
  --color-accent: #3a7d44;
  --color-accent-light: #4e9e5a;
  --color-border: rgba(122,143,124,0.18);
  --font-display: 'Archivo Black', sans-serif;
  --font-body: 'Archivo', sans-serif;
  --radius-sm: 2px;
  --radius-md: 4px;
  --shadow-hard: 4px 4px 0px #3a7d44;
}

/* ── Base reset ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  background-color: #0d1410;
}

body {
  font-family: 'Archivo', sans-serif;
  font-weight: 400;
  background-color: #0d1410;
  color: #e8ede9;
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  line-height: 1.15;
  color: #e8ede9;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
address { font-style: normal; }

/* ── Layout ─────────────────────────────────────────────── */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.flex-wrap { flex-wrap: wrap; }
.inline-flex { display: inline-flex; }
.grid { display: grid; }
.block { display: block; }
.inline-block { display: inline-block; }
.hidden { display: none; }

.items-start { align-items: flex-start; }
.items-center { align-items: center; }
.items-end { align-items: flex-end; }
.items-stretch { align-items: stretch; }
.justify-start { justify-content: flex-start; }
.justify-center { justify-content: center; }
.justify-end { justify-content: flex-end; }
.justify-between { justify-content: space-between; }
.self-start { align-self: flex-start; }
.self-center { align-self: center; }

.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.col-span-1 { grid-column: span 1 / span 1; }
.col-span-2 { grid-column: span 2 / span 2; }
.col-span-3 { grid-column: span 3 / span 3; }

.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.sticky { position: sticky; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.top-0 { top: 0; }
.top-4 { top: 1rem; }
.bottom-4 { bottom: 1rem; }
.left-0 { left: 0; }
.left-1\/2 { left: 50%; }
.right-0 { right: 0; }
.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.z-50 { z-index: 50; }

.w-full { width: 100%; }
.w-auto { width: auto; }
.h-full { height: 100%; }
.h-screen { height: 100vh; }
.h-px { height: 1px; }
.h-8 { height: 2rem; }
.h-10 { height: 2.5rem; }
.h-12 { height: 3rem; }
.h-16 { height: 4rem; }
.h-20 { height: 5rem; }
.h-24 { height: 6rem; }
.h-32 { height: 8rem; }
.h-48 { height: 12rem; }
.h-64 { height: 16rem; }
.h-80 { height: 20rem; }
.h-96 { height: 24rem; }
.min-h-screen { min-height: 100vh; }
.min-h-\[320px\] { min-height: 320px; }
.min-h-\[400px\] { min-height: 400px; }
.min-h-\[480px\] { min-height: 480px; }
.min-h-\[520px\] { min-height: 520px; }
.min-h-\[600px\] { min-height: 600px; }
.max-w-xs { max-width: 20rem; }
.max-w-sm { max-width: 24rem; }
.max-w-md { max-width: 28rem; }
.max-w-lg { max-width: 32rem; }
.max-w-xl { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-6xl { max-width: 72rem; }
.max-w-7xl { max-width: 80rem; }
.max-w-\[1220px\] { max-width: 1220px; }
.mx-auto { margin-left: auto; margin-right: auto; }
.overflow-hidden { overflow: hidden; }
.overflow-x-hidden { overflow-x: hidden; }
.overflow-auto { overflow: auto; }

/* ── Spacing ─────────────────────────────────────────────── */
.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-10 { gap: 2.5rem; }
.gap-12 { gap: 3rem; }
.gap-16 { gap: 4rem; }
.gap-x-4 { column-gap: 1rem; }
.gap-x-6 { column-gap: 1.5rem; }
.gap-x-8 { column-gap: 2rem; }
.gap-y-2 { row-gap: 0.5rem; }
.gap-y-4 { row-gap: 1rem; }
.gap-y-6 { row-gap: 1.5rem; }
.gap-y-8 { row-gap: 2rem; }

.p-0 { padding: 0; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.p-10 { padding: 2.5rem; }
.p-12 { padding: 3rem; }
.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.px-10 { padding-left: 2.5rem; padding-right: 2.5rem; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-2\.5 { padding-top: 0.625rem; padding-bottom: 0.625rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-10 { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }
.py-32 { padding-top: 8rem; padding-bottom: 8rem; }
.pt-2 { padding-top: 0.5rem; }
.pt-4 { padding-top: 1rem; }
.pt-6 { padding-top: 1.5rem; }
.pt-8 { padding-top: 2rem; }
.pt-12 { padding-top: 3rem; }
.pt-16 { padding-top: 4rem; }
.pt-20 { padding-top: 5rem; }
.pt-24 { padding-top: 6rem; }
.pb-2 { padding-bottom: 0.5rem; }
.pb-4 { padding-bottom: 1rem; }
.pb-6 { padding-bottom: 1.5rem; }
.pb-8 { padding-bottom: 2rem; }
.pb-12 { padding-bottom: 3rem; }
.pb-16 { padding-bottom: 4rem; }

.m-0 { margin: 0; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }
.mt-16 { margin-top: 4rem; }
.mt-20 { margin-top: 5rem; }
.mt-24 { margin-top: 6rem; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.25rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.ml-2 { margin-left: 0.5rem; }
.ml-4 { margin-left: 1rem; }
.mr-2 { margin-right: 0.5rem; }
.mr-4 { margin-right: 1rem; }

/* ── Typography ──────────────────────────────────────────── */
.font-display { font-family: 'Archivo Black', sans-serif; font-weight: 900; }
.font-body { font-family: 'Archivo', sans-serif; }
.font-mono { font-family: 'Courier New', Courier, monospace; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-black { font-weight: 900; }
.italic { font-style: italic; }
.not-italic { font-style: normal; }

.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-5xl { font-size: 3rem; line-height: 1.1; }
.text-6xl { font-size: 3.75rem; line-height: 1.05; }
.text-7xl { font-size: 4.5rem; line-height: 1; }
.text-8xl { font-size: 6rem; line-height: 1; }
.text-\[11px\] { font-size: 11px; }
.text-\[13px\] { font-size: 13px; }
.text-\[15px\] { font-size: 15px; }
.text-\[28px\] { font-size: 28px; }
.text-\[40px\] { font-size: 40px; line-height: 1.1; }
.text-\[52px\] { font-size: 52px; line-height: 1.05; }
.text-\[64px\] { font-size: 64px; line-height: 1; }
.text-\[80px\] { font-size: 80px; line-height: 0.95; }

.leading-none { line-height: 1; }
.leading-tight { line-height: 1.25; }
.leading-snug { line-height: 1.375; }
.leading-normal { line-height: 1.5; }
.leading-relaxed { line-height: 1.625; }
.leading-loose { line-height: 2; }

.tracking-tight { letter-spacing: -0.025em; }
.tracking-normal { letter-spacing: 0em; }
.tracking-wide { letter-spacing: 0.025em; }
.tracking-wider { letter-spacing: 0.05em; }
.tracking-widest { letter-spacing: 0.1em; }
.tracking-\[0\.2em\] { letter-spacing: 0.2em; }
.tracking-\[0\.3em\] { letter-spacing: 0.3em; }

.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.uppercase { text-transform: uppercase; }
.lowercase { text-transform: lowercase; }
.capitalize { text-transform: capitalize; }
.underline { text-decoration: underline; }
.no-underline { text-decoration: none; }
.underline-offset-4 { text-underline-offset: 4px; }
.decoration-1 { text-decoration-thickness: 1px; }
.truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.text-balance { text-wrap: balance; }
.text-pretty { text-wrap: pretty; }

/* ── Color utilities ─────────────────────────────────────── */
.bg-\[\#0d1410\] { background-color: #0d1410; }
.bg-\[\#131a15\] { background-color: #131a15; }
.bg-\[\#182019\] { background-color: #182019; }
.bg-\[\#1e2820\] { background-color: #1e2820; }
.bg-\[\#243028\] { background-color: #243028; }
.bg-\[\#2a3a2c\] { background-color: #2a3a2c; }
.bg-\[\#3a7d44\] { background-color: #3a7d44; }
.bg-\[\#4e9e5a\] { background-color: #4e9e5a; }
.bg-\[\#e8ede9\] { background-color: #e8ede9; }
.bg-transparent { background-color: transparent; }
.bg-black\/20 { background-color: rgba(0,0,0,0.20); }
.bg-black\/40 { background-color: rgba(0,0,0,0.40); }
.bg-black\/60 { background-color: rgba(0,0,0,0.60); }
.bg-white\/5 { background-color: rgba(255,255,255,0.05); }
.bg-white\/10 { background-color: rgba(255,255,255,0.10); }

.text-\[\#e8ede9\] { color: #e8ede9; }
.text-\[\#7a8f7c\] { color: #7a8f7c; }
.text-\[\#3a7d44\] { color: #3a7d44; }
.text-\[\#4e9e5a\] { color: #4e9e5a; }
.text-\[\#0d1410\] { color: #0d1410; }
.text-\[\#a8bfaa\] { color: #a8bfaa; }
.text-white { color: #ffffff; }
.text-\[\#D8E2DC\] { color: #D8E2DC; }

.border-\[\#7a8f7c\]\/20 { border-color: rgba(122,143,124,0.20); }
.border-\[\#7a8f7c\]\/30 { border-color: rgba(122,143,124,0.30); }
.border-\[\#7a8f7c\]\/10 { border-color: rgba(122,143,124,0.10); }
.border-\[\#3a7d44\] { border-color: #3a7d44; }
.border-\[\#e8ede9\] { border-color: #e8ede9; }
.border-white\/18 { border-color: rgba(255,255,255,0.18); }
.border-white\/28 { border-color: rgba(255,255,255,0.28); }

/* ── Borders & Radius ────────────────────────────────────── */
.border { border-width: 1px; border-style: solid; }
.border-0 { border-width: 0; }
.border-t { border-top-width: 1px; border-top-style: solid; }
.border-b { border-bottom-width: 1px; border-bottom-style: solid; }
.border-l { border-left-width: 1px; border-left-style: solid; }
.border-r { border-right-width: 1px; border-right-style: solid; }
.border-l-2 { border-left-width: 2px; border-left-style: solid; }
.border-l-\[\#3a7d44\] { border-left-color: #3a7d44; }

.rounded-none { border-radius: 0; }
.rounded-sm { border-radius: 2px; }
.rounded { border-radius: 4px; }
.rounded-md { border-radius: 6px; }
.rounded-lg { border-radius: 8px; }
.rounded-xl { border-radius: 12px; }
.rounded-2xl { border-radius: 16px; }
.rounded-full { border-radius: 9999px; }

/* ── Shadows ─────────────────────────────────────────────── */
.shadow-sm { box-shadow: 0 1px 2px 0 rgba(0,0,0,0.30); }
.shadow { box-shadow: 0 1px 3px 0 rgba(0,0,0,0.40), 0 1px 2px -1px rgba(0,0,0,0.40); }
.shadow-md { box-shadow: 0 4px 6px -1px rgba(0,0,0,0.40), 0 2px 4px -2px rgba(0,0,0,0.40); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0,0,0,0.50), 0 4px 6px -4px rgba(0,0,0,0.50); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgba(0,0,0,0.60), 0 8px 10px -6px rgba(0,0,0,0.60); }
.shadow-\[4px_4px_0px_\#3a7d44\] { box-shadow: 4px 4px 0px #3a7d44; }
.shadow-\[3px_3px_0px_\#3a7d44\] { box-shadow: 3px 3px 0px #3a7d44; }

/* ── Opacity ─────────────────────────────────────────────── */
.opacity-0 { opacity: 0; }
.opacity-50 { opacity: 0.5; }
.opacity-60 { opacity: 0.6; }
.opacity-70 { opacity: 0.7; }
.opacity-80 { opacity: 0.8; }
.opacity-90 { opacity: 0.9; }
.opacity-100 { opacity: 1; }

/* ── Transitions & Transforms ────────────────────────────── */
.transition { transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter; transition-timing-function: cubic-bezier(0.4,0,0.2,1); transition-duration: 150ms; }
.transition-all { transition-property: all; transition-timing-function: cubic-bezier(0.4,0,0.2,1); transition-duration: 150ms; }
.transition-colors { transition-property: color, background-color, border-color; transition-timing-function: cubic-bezier(0.4,0,0.2,1); transition-duration: 150ms; }
.transition-opacity { transition-property: opacity; transition-timing-function: cubic-bezier(0.4,0,0.2,1); transition-duration: 300ms; }
.duration-150 { transition-duration: 150ms; }
.duration-200 { transition-duration: 200ms; }
.duration-300 { transition-duration: 300ms; }
.ease-in-out { transition-timing-function: cubic-bezier(0.4,0,0.2,1); }

.-translate-x-1\/2 { transform: translateX(-50%); }
.translate-y-0 { transform: translateY(0); }
.rotate-90 { transform: rotate(90deg); }
.-rotate-90 { transform: rotate(-90deg); }
.scale-100 { transform: scale(1); }
.scale-105 { transform: scale(1.05); }

/* ── Aspect ratio & Object ───────────────────────────────── */
.aspect-video { aspect-ratio: 16 / 9; }
.aspect-\[4\/3\] { aspect-ratio: 4 / 3; }
.aspect-\[16\/9\] { aspect-ratio: 16 / 9; }
.aspect-\[21\/9\] { aspect-ratio: 21 / 9; }
.aspect-\[3\/4\] { aspect-ratio: 3 / 4; }
.aspect-square { aspect-ratio: 1 / 1; }
.object-cover { object-fit: cover; }
.object-center { object-position: center; }

/* ── Backdrop blur ───────────────────────────────────────── */
.backdrop-blur-xl { backdrop-filter: blur(24px); }
.backdrop-blur-md { backdrop-filter: blur(12px); }
.backdrop-blur-sm { backdrop-filter: blur(4px); }

/* ── Pointer ─────────────────────────────────────────────── */
.cursor-pointer { cursor: pointer; }
.pointer-events-none { pointer-events: none; }
.select-none { user-select: none; }

/* ── Misc utilities ──────────────────────────────────────── */
.w-\[calc\(100\%-1\.5rem\)\] { width: calc(100% - 1.5rem); }
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-8 > * + * { margin-top: 2rem; }

.divide-y > * + * { border-top-width: 1px; border-top-style: solid; border-top-color: rgba(122,143,124,0.20); }

/* ── Responsive: md (768px+) ─────────────────────────────── */
@media (min-width: 768px) {
  .md\:hidden { display: none; }
  .md\:block { display: block; }
  .md\:flex { display: flex; }
  .md\:inline-block { display: inline-block; }
  .md\:grid { display: grid; }
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0,1fr)); }
  .md\:col-span-1 { grid-column: span 1 / span 1; }
  .md\:col-span-2 { grid-column: span 2 / span 2; }
  .md\:flex-row { flex-direction: row; }
  .md\:flex-col { flex-direction: column; }
  .md\:items-center { align-items: center; }
  .md\:items-start { align-items: flex-start; }
  .md\:justify-between { justify-content: space-between; }
  .md\:justify-end { justify-content: flex-end; }
  .md\:gap-4 { gap: 1rem; }
  .md\:gap-6 { gap: 1.5rem; }
  .md\:gap-8 { gap: 2rem; }
  .md\:gap-12 { gap: 3rem; }
  .md\:gap-16 { gap: 4rem; }
  .md\:px-8 { padding-left: 2rem; padding-right: 2rem; }
  .md\:py-24 { padding-top: 6rem; padding-bottom: 6rem; }
  .md\:py-32 { padding-top: 8rem; padding-bottom: 8rem; }
  .md\:pt-0 { padding-top: 0; }
  .md\:mt-0 { margin-top: 0; }
  .md\:text-left { text-align: left; }
  .md\:text-5xl { font-size: 3rem; line-height: 1.1; }
  .md\:text-6xl { font-size: 3.75rem; line-height: 1.05; }
  .md\:text-7xl { font-size: 4.5rem; line-height: 1; }
  .md\:text-\[64px\] { font-size: 64px; line-height: 1; }
  .md\:text-\[80px\] { font-size: 80px; line-height: 0.95; }
  .md\:aspect-\[21\/9\] { aspect-ratio: 21 / 9; }
  .md\:inline-block { display: inline-block; }
  .hidden.md\:flex { display: flex; }
  .md\:col-span-1 { grid-column: span 1 / span 1; }
}

/* ── Responsive: lg (1024px+) ────────────────────────────── */
@media (min-width: 1024px) {
  .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0,1fr)); }
  .lg\:text-\[80px\] { font-size: 80px; line-height: 0.95; }
  .lg\:text-\[96px\] { font-size: 96px; line-height: 0.9; }
  .lg\:col-span-2 { grid-column: span 2 / span 2; }
  .lg\:gap-16 { gap: 4rem; }
}

/* ── Hover / focus states ────────────────────────────────── */
.hover\:text-\[\#4e9e5a\]:hover { color: #4e9e5a; }
.hover\:text-\[\#3a7d44\]:hover { color: #3a7d44; }
.hover\:text-\[\#e8ede9\]:hover { color: #e8ede9; }
.hover\:bg-\[\#4e9e5a\]:hover { background-color: #4e9e5a; }
.hover\:bg-\[\#2a3a2c\]:hover { background-color: #2a3a2c; }
.hover\:border-\[\#3a7d44\]:hover { border-color: #3a7d44; }
.hover\:opacity-90:hover { opacity: 0.9; }
.hover\:opacity-80:hover { opacity: 0.8; }
.hover\:underline:hover { text-decoration: underline; }
.hover\:shadow-\[4px_4px_0px_\#3a7d44\]:hover { box-shadow: 4px 4px 0px #3a7d44; }
.focus\:outline-none:focus { outline: none; }
.focus\:border-\[\#3a7d44\]:focus { border-color: #3a7d44; }
.group:hover .group-hover\:text-\[\#4e9e5a\] { color: #4e9e5a; }
.group:hover .group-hover\:opacity-100 { opacity: 1; }
.group:hover .group-hover\:translate-x-1 { transform: translateX(0.25rem); }

/* ── Marquee / scrolling strip ───────────────────────────── */
.marquee-wrapper { overflow: hidden; white-space: nowrap; border-top: 1px solid rgba(122,143,124,0.20); border-bottom: 1px solid rgba(122,143,124,0.20); padding: 0.75rem 0; }
.marquee-track { display: inline-flex; animation: marquee-scroll 28s linear infinite; }
.marquee-track:hover { animation-play-state: paused; }
@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Accordion ────────────────────────────────────────────── */
.accordion-body { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.accordion-body.open { max-height: 600px; }

/* ── Nav active indicator ─────────────────────────────────── */
nav a.active { color: #4e9e5a; }
nav a { transition: color 0.15s ease; }
nav a:hover { color: #4e9e5a; }

/* ── CTA button style ─────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  background-color: #3a7d44;
  color: #e8ede9;
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.875rem 2rem;
  border: 1px solid #3a7d44;
  transition: background-color 0.15s ease, box-shadow 0.15s ease;
}
.btn-primary:hover {
  background-color: #4e9e5a;
  box-shadow: 3px 3px 0px rgba(58,125,68,0.4);
}

.btn-outline {
  display: inline-block;
  background-color: transparent;
  color: #e8ede9;
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.875rem 2rem;
  border: 1px solid rgba(122,143,124,0.40);
  transition: border-color 0.15s ease, color 0.15s ease;
}
.btn-outline:hover {
  border-color: #3a7d44;
  color: #4e9e5a;
}

/* ── Section label chip ───────────────────────────────────── */
.section-label {
  display: inline-block;
  font-family: 'Courier New', Courier, monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #7a8f7c;
  border: 1px solid rgba(122,143,124,0.30);
  padding: 0.25rem 0.75rem;
}

/* ── Stat block ───────────────────────────────────────────── */
.stat-number {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: 3.5rem;
  line-height: 1;
  color: #e8ede9;
}
.stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #7a8f7c;
  margin-top: 0.375rem;
}

/* ── Card base ────────────────────────────────────────────── */
.card-base {
  background-color: #182019;
  border: 1px solid rgba(122,143,124,0.18);
  padding: 1.75rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.card-base:hover {
  border-color: rgba(58,125,68,0.5);
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

/* ── Image container with caption overlay ────────────────── */
.img-caption-wrap { position: relative; overflow: hidden; }
.img-caption-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(13,20,16,0.85), transparent);
  padding: 1rem 1.25rem 0.875rem;
  font-family: 'Courier New', Courier, monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #7a8f7c;
}

/* ── Step number display ──────────────────────────────────── */
.step-number {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: 4rem;
  line-height: 1;
  color: rgba(58,125,68,0.25);
  select: none;
}

/* ── Form elements ────────────────────────────────────────── */
input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select {
  background-color: #131a15;
  border: 1px solid rgba(122,143,124,0.30);
  color: #e8ede9;
  font-family: 'Archivo', sans-serif;
  font-size: 0.875rem;
  padding: 0.75rem 1rem;
  width: 100%;
  outline: none;
  transition: border-color 0.15s ease;
  appearance: none;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus,
select:focus {
  border-color: #3a7d44;
}
input[type="text"]::placeholder,
input[type="email"]::placeholder,
input[type="tel"]::placeholder,
textarea::placeholder {
  color: rgba(122,143,124,0.6);
}
label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #7a8f7c;
  margin-bottom: 0.5rem;
}

/* ── Vertical rotated label ───────────────────────────────── */
.rotated-label {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #7a8f7c;
  font-family: 'Courier New', Courier, monospace;
}

/* ── Hero image overlay ───────────────────────────────────── */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,20,16,0.75) 0%, rgba(13,20,16,0.35) 60%, rgba(13,20,16,0.55) 100%);
}

/* ── Hairline divider ─────────────────────────────────────── */
.hairline { width: 100%; height: 1px; background-color: rgba(122,143,124,0.18); }
.hairline-v { width: 1px; height: 100%; background-color: rgba(122,143,124,0.18); }

/* ── Numbered section markers ─────────────────────────────── */
.section-marker {
  font-family: 'Courier New', Courier, monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: #3a7d44;
  text-transform: uppercase;
}

/* ── AOS overrides ────────────────────────────────────────── */
[data-aos] { pointer-events: none; }
[data-aos].aos-animate { pointer-events: auto; }

/* ── Print / misc ─────────────────────────────────────────── */
@media print {
  .fixed, .sticky, [data-target="cookies.banner"], header { display: none !important; }
}

/* ── Extra arbitrary classes used in HTML ────────────────── */
.w-\[1px\] { width: 1px; }
.h-\[1px\] { height: 1px; }
.w-\[2px\] { width: 2px; }
.h-\[60px\] { height: 60px; }
.h-\[80px\] { height: 80px; }
.h-\[120px\] { height: 120px; }
.h-\[200px\] { height: 200px; }
.h-\[240px\] { height: 240px; }
.h-\[280px\] { height: 280px; }
.h-\[320px\] { height: 320px; }
.h-\[360px\] { height: 360px; }
.h-\[420px\] { height: 420px; }
.h-\[460px\] { height: 460px; }
.h-\[500px\] { height: 500px; }
.h-\[520px\] { height: 520px; }
.h-\[560px\] { height: 560px; }
.h-\[600px\] { height: 600px; }
.min-h-\[560px\] { min-height: 560px; }
.min-h-\[640px\] { min-height: 640px; }
.min-h-\[680px\] { min-height: 680px; }
.min-h-\[720px\] { min-height: 720px; }
.max-w-\[480px\] { max-width: 480px; }
.max-w-\[560px\] { max-width: 560px; }
.max-w-\[640px\] { max-width: 640px; }
.max-w-\[720px\] { max-width: 720px; }
.max-w-\[800px\] { max-width: 800px; }
.max-w-\[860px\] { max-width: 860px; }
.max-w-\[960px\] { max-width: 960px; }
.w-\[40\%\] { width: 40%; }
.w-\[50\%\] { width: 50%; }
.w-\[60\%\] { width: 60%; }
.w-6 { width: 1.5rem; }
.h-6 { height: 1.5rem; }
.w-8 { width: 2rem; }
.w-10 { width: 2.5rem; }
.w-12 { width: 3rem; }
.w-16 { width: 4rem; }
.w-20 { width: 5rem; }
.w-24 { width: 6rem; }
.shrink-0 { flex-shrink: 0; }
.grow { flex-grow: 1; }
.text-\[\#c5d4c7\] { color: #c5d4c7; }
.bg-\[\#3a7d44\]\/10 { background-color: rgba(58,125,68,0.10); }
.bg-\[\#3a7d44\]\/20 { background-color: rgba(58,125,68,0.20); }
.border-\[\#3a7d44\]\/30 { border-color: rgba(58,125,68,0.30); }
.border-\[\#3a7d44\]\/50 { border-color: rgba(58,125,68,0.50); }
.border-l-\[\#3a7d44\] { border-left-color: #3a7d44; }
.pl-4 { padding-left: 1rem; }
.pl-5 { padding-left: 1.25rem; }
.pl-6 { padding-left: 1.5rem; }
.pr-4 { padding-right: 1rem; }
.pr-6 { padding-right: 1.5rem; }
.list-none { list-style: none; }
.list-disc { list-style-type: disc; }
.list-inside { list-style-position: inside; }

/* table utilities */
.table { display: table; }
.w-full.table { width: 100%; }

/* iframe */
iframe { display: block; }

/* strong/em in legal pages */
strong { font-weight: 700; color: #e8ede9; }
em { font-style: italic; }

/* ── Swiper overrides ─────────────────────────────────────── */
.swiper-pagination-bullet { background: #7a8f7c; opacity: 0.5; }
.swiper-pagination-bullet-active { background: #3a7d44; opacity: 1; }
