/* ============================================================
   Raldona Compendium — css/style.css
   Prebuilt Tailwind v4.1.5 output
   Design Family: Modern Sport (K_FAMILY=5), adapted editorial wellness
   Palette: Dark (#080F06) + Forest Green (#5CAA34) + Cream (#E6EEE2)
   Fonts: Fraunces (display) + Manrope (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,700&family=Manrope:wght@400;500&display=swap');

/* ============================================================
   1. @theme — design tokens
   ============================================================ */
@theme {
  --color-bg-primary:    #080F06;
  --color-bg-secondary:  #0F1A0B;
  --color-ink-primary:   #E6EEE2;
  --color-ink-muted:     #7B9B71;
  --color-accent:        #5CAA34;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'Manrope', system-ui, sans-serif;
  --radius-sm:    2px;
  --radius-md:    4px;
  --shadow-offset: 4px 4px 0px rgba(92,170,52,0.35);
  --shadow-lg:    0 20px 60px rgba(0,0,0,0.50);
}

/* ============================================================
   2. Base Reset / @layer base
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background-color: #080F06;
  color: #E6EEE2;
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a { color: inherit; text-decoration: none; transition: color 0.2s ease; }

address { font-style: normal; }

/* ============================================================
   3. Typography base
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  line-height: 1.15;
  color: #E6EEE2;
}

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ============================================================
   4. Utility classes — Layout
   ============================================================ */
.block          { display: block; }
.inline-block   { display: inline-block; }
.inline         { display: inline; }
.flex           { display: flex; }
.inline-flex    { display: inline-flex; }
.grid           { display: grid; }
.hidden         { display: none; }

.flex-col        { flex-direction: column; }
.flex-row        { flex-direction: row; }
.flex-wrap       { flex-wrap: wrap; }
.flex-nowrap     { flex-wrap: nowrap; }

.items-start    { align-items: flex-start; }
.items-center   { align-items: center; }
.items-end      { align-items: flex-end; }
.items-stretch  { align-items: stretch; }
.items-baseline { align-items: baseline; }

.justify-start   { justify-content: flex-start; }
.justify-center  { justify-content: center; }
.justify-end     { justify-content: flex-end; }
.justify-between { justify-content: space-between; }
.justify-around  { justify-content: space-around; }

.self-start  { align-self: flex-start; }
.self-center { align-self: center; }
.self-end    { align-self: flex-end; }

.flex-1    { flex: 1 1 0%; }
.flex-none { flex: none; }
.shrink-0  { flex-shrink: 0; }
.grow      { flex-grow: 1; }

.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; }
.col-span-full { grid-column: 1 / -1; }

.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-2  { column-gap: 0.5rem; }
.gap-x-3  { column-gap: 0.75rem; }
.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; }
.gap-y-12 { row-gap: 3rem; }

.relative { position: relative; }
.absolute { position: absolute; }
.fixed    { position: fixed; }
.sticky   { position: sticky; }

.top-0    { top: 0; }
.top-4    { top: 1rem; }
.bottom-0 { bottom: 0; }
.bottom-4 { bottom: 1rem; }
.left-0   { left: 0; }
.left-4   { left: 1rem; }
.right-0  { right: 0; }
.right-4  { right: 1rem; }
.inset-0  { inset: 0; }

.z-0   { z-index: 0; }
.z-10  { z-index: 10; }
.z-20  { z-index: 20; }
.z-30  { z-index: 30; }
.z-40  { z-index: 40; }
.z-50  { z-index: 50; }

.overflow-hidden  { overflow: hidden; }
.overflow-auto    { overflow: auto; }
.overflow-visible { overflow: visible; }
.overflow-x-auto  { overflow-x: auto; }
.overflow-y-auto  { overflow-y: auto; }

/* ============================================================
   5. Utility classes — Sizing
   ============================================================ */
.w-full  { width: 100%; }
.w-auto  { width: auto; }
.w-1-2   { width: 50%; }
.w-1-3   { width: 33.333%; }
.w-2-3   { width: 66.666%; }
.w-screen { width: 100vw; }
.w-4     { width: 1rem; }
.w-5     { width: 1.25rem; }
.w-6     { width: 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; }
.w-32    { width: 8rem; }
.w-40    { width: 10rem; }
.w-48    { width: 12rem; }
.w-64    { width: 16rem; }

.h-full    { height: 100%; }
.h-auto    { height: auto; }
.h-screen  { height: 100vh; }
.h-4       { height: 1rem; }
.h-5       { height: 1.25rem; }
.h-6       { height: 1.5rem; }
.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-72      { height: 18rem; }
.h-80      { height: 20rem; }
.h-96      { height: 24rem; }
.h-[360px] { height: 360px; }
.h-[480px] { height: 480px; }
.h-[520px] { height: 520px; }
.h-[600px] { height: 600px; }
.h-[640px] { height: 640px; }
.h-[700px] { height: 700px; }
.h-[1px]   { height: 1px; }
.h-[2px]   { height: 2px; }

.min-h-screen  { min-height: 100vh; }
.min-h-[200px] { min-height: 200px; }
.min-h-[300px] { min-height: 300px; }
.min-h-[400px] { min-height: 400px; }
.min-h-[480px] { min-height: 480px; }
.min-h-[520px] { min-height: 520px; }
.min-h-[580px] { min-height: 580px; }

.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-full { max-width: 100%; }
.max-w-none { max-width: none; }
.max-w-[680px]  { max-width: 680px; }
.max-w-[720px]  { max-width: 720px; }
.max-w-[760px]  { max-width: 760px; }
.max-w-[880px]  { max-width: 880px; }
.max-w-[960px]  { max-width: 960px; }
.max-w-[1220px] { max-width: 1220px; }

.aspect-video  { aspect-ratio: 16 / 9; }
.aspect-square { aspect-ratio: 1 / 1; }
.aspect-[3/2]  { aspect-ratio: 3 / 2; }
.aspect-[4/3]  { aspect-ratio: 4 / 3; }
.aspect-[16/9] { aspect-ratio: 16 / 9; }
.aspect-[21/9] { aspect-ratio: 21 / 9; }

/* ============================================================
   6. Utility classes — Spacing
   ============================================================ */
.m-0  { margin: 0; }
.m-1  { margin: 0.25rem; }
.m-2  { margin: 0.5rem; }
.m-4  { margin: 1rem; }
.m-auto { margin: auto; }

.mx-auto { margin-left: auto; margin-right: auto; }
.mx-0    { margin-left: 0; margin-right: 0; }
.mx-2    { margin-left: 0.5rem; margin-right: 0.5rem; }
.mx-4    { margin-left: 1rem; margin-right: 1rem; }

.my-0   { margin-top: 0; margin-bottom: 0; }
.my-2   { margin-top: 0.5rem; margin-bottom: 0.5rem; }
.my-4   { margin-top: 1rem; margin-bottom: 1rem; }
.my-6   { margin-top: 1.5rem; margin-bottom: 1.5rem; }
.my-8   { margin-top: 2rem; margin-bottom: 2rem; }
.my-12  { margin-top: 3rem; margin-bottom: 3rem; }

.mt-0   { margin-top: 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-5   { margin-top: 1.25rem; }
.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-0   { margin-bottom: 0; }
.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-0  { margin-left: 0; }
.ml-2  { margin-left: 0.5rem; }
.ml-3  { margin-left: 0.75rem; }
.ml-4  { margin-left: 1rem; }
.ml-6  { margin-left: 1.5rem; }
.ml-auto { margin-left: auto; }

.mr-0  { margin-right: 0; }
.mr-2  { margin-right: 0.5rem; }
.mr-3  { margin-right: 0.75rem; }
.mr-4  { margin-right: 1rem; }
.mr-6  { margin-right: 1.5rem; }
.mr-auto { margin-right: auto; }

.p-0  { padding: 0; }
.p-1  { padding: 0.25rem; }
.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; }
.p-16 { padding: 4rem; }

.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; }
.px-12 { padding-left: 3rem; padding-right: 3rem; }

.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; }

.pt-0   { padding-top: 0; }
.pt-2   { padding-top: 0.5rem; }
.pt-4   { padding-top: 1rem; }
.pt-6   { padding-top: 1.5rem; }
.pt-8   { padding-top: 2rem; }
.pt-10  { padding-top: 2.5rem; }
.pt-12  { padding-top: 3rem; }
.pt-16  { padding-top: 4rem; }

.pb-0   { padding-bottom: 0; }
.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; }
.pb-24  { padding-bottom: 6rem; }

.pl-4   { padding-left: 1rem; }
.pl-6   { padding-left: 1.5rem; }
.pr-4   { padding-right: 1rem; }

/* ============================================================
   7. Utility classes — Typography
   ============================================================ */
.font-display { font-family: 'Fraunces', Georgia, serif; }
.font-body    { font-family: 'Manrope', system-ui, sans-serif; }
.font-mono    { font-family: 'Courier New', Courier, monospace; }

.font-normal   { font-weight: 400; }
.font-medium   { font-weight: 500; }
.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.0; }
.text-8xl  { font-size: 6rem; line-height: 1.0; }
.text-9xl  { font-size: 8rem; line-height: 1.0; }
.text-[11px]  { font-size: 11px; }
.text-[13px]  { font-size: 13px; }
.text-[14px]  { font-size: 14px; }
.text-[15px]  { font-size: 15px; }
.text-[22px]  { font-size: 22px; }
.text-[26px]  { font-size: 26px; }
.text-[32px]  { font-size: 32px; }
.text-[42px]  { font-size: 42px; }
.text-[52px]  { font-size: 52px; }
.text-[64px]  { font-size: 64px; }
.text-[80px]  { font-size: 80px; }
.text-[96px]  { font-size: 96px; }
.text-[120px] { font-size: 120px; }

.leading-none    { line-height: 1; }
.leading-tight   { line-height: 1.15; }
.leading-snug    { line-height: 1.375; }
.leading-normal  { line-height: 1.5; }
.leading-relaxed { line-height: 1.625; }
.leading-loose   { line-height: 2; }
.leading-[1.1]   { line-height: 1.1; }
.leading-[1.2]   { line-height: 1.2; }
.leading-[1.3]   { line-height: 1.3; }
.leading-[1.4]   { line-height: 1.4; }
.leading-[1.7]   { line-height: 1.7; }
.leading-[1.8]   { line-height: 1.8; }

.tracking-tighter  { letter-spacing: -0.05em; }
.tracking-tight    { letter-spacing: -0.025em; }
.tracking-normal   { letter-spacing: 0; }
.tracking-wide     { letter-spacing: 0.025em; }
.tracking-wider    { letter-spacing: 0.05em; }
.tracking-widest   { letter-spacing: 0.1em; }
.tracking-[0.15em] { letter-spacing: 0.15em; }
.tracking-[0.2em]  { letter-spacing: 0.2em; }

.uppercase   { text-transform: uppercase; }
.lowercase   { text-transform: lowercase; }
.capitalize  { text-transform: capitalize; }
.normal-case { text-transform: none; }

.text-left    { text-align: left; }
.text-center  { text-align: center; }
.text-right   { text-align: right; }
.text-justify { text-align: justify; }

.underline       { text-decoration: underline; }
.no-underline    { text-decoration: none; }
.line-through    { text-decoration: line-through; }
.underline-offset-2  { text-underline-offset: 2px; }
.underline-offset-4  { text-underline-offset: 4px; }
.decoration-1        { text-decoration-thickness: 1px; }

.truncate    { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.break-words { word-break: break-word; }
.whitespace-nowrap { white-space: nowrap; }
.whitespace-pre    { white-space: pre; }

/* ============================================================
   8. Utility classes — Colors
   ============================================================ */

/* Backgrounds */
.bg-transparent         { background-color: transparent; }
.bg-[#080F06]           { background-color: #080F06; }
.bg-[#0F1A0B]           { background-color: #0F1A0B; }
.bg-[#122010]           { background-color: #122010; }
.bg-[#152515]           { background-color: #152515; }
.bg-[#1a2e15]           { background-color: #1a2e15; }
.bg-[#5CAA34]           { background-color: #5CAA34; }
.bg-[#4a8f2a]           { background-color: #4a8f2a; }
.bg-[#E6EEE2]           { background-color: #E6EEE2; }
.bg-[#7B9B71]           { background-color: #7B9B71; }
.bg-white               { background-color: #ffffff; }

/* Text colors */
.text-[#E6EEE2]  { color: #E6EEE2; }
.text-[#7B9B71]  { color: #7B9B71; }
.text-[#5CAA34]  { color: #5CAA34; }
.text-[#080F06]  { color: #080F06; }
.text-[#0F1A0B]  { color: #0F1A0B; }
.text-white      { color: #ffffff; }
.text-inherit    { color: inherit; }

/* Border colors */
.border-[#7B9B71]        { border-color: #7B9B71; }
.border-[#5CAA34]        { border-color: #5CAA34; }
.border-[#E6EEE2]        { border-color: #E6EEE2; }
.border-[#0F1A0B]        { border-color: #0F1A0B; }
.border-transparent      { border-color: transparent; }
.border-white            { border-color: #ffffff; }

/* Opacity color modifiers */
.bg-[#5CAA34]/10  { background-color: rgba(92,170,52,0.10); }
.bg-[#5CAA34]/20  { background-color: rgba(92,170,52,0.20); }
.bg-[#E6EEE2]/5   { background-color: rgba(230,238,226,0.05); }
.bg-[#E6EEE2]/10  { background-color: rgba(230,238,226,0.10); }
.bg-[#080F06]/80  { background-color: rgba(8,15,6,0.80); }
.bg-[#080F06]/90  { background-color: rgba(8,15,6,0.90); }
.border-[#7B9B71]/20  { border-color: rgba(123,155,113,0.20); }
.border-[#7B9B71]/30  { border-color: rgba(123,155,113,0.30); }
.border-[#7B9B71]/40  { border-color: rgba(123,155,113,0.40); }
.border-[#E6EEE2]/10  { border-color: rgba(230,238,226,0.10); }
.border-[#E6EEE2]/20  { border-color: rgba(230,238,226,0.20); }
.border-[#5CAA34]/30  { border-color: rgba(92,170,52,0.30); }
.border-[#5CAA34]/50  { border-color: rgba(92,170,52,0.50); }

/* ============================================================
   9. Utility classes — Borders
   ============================================================ */
.border         { border-width: 1px; border-style: solid; }
.border-0       { border-width: 0; }
.border-2       { border-width: 2px; border-style: solid; }
.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-t-2     { border-top-width: 2px; border-top-style: solid; }
.border-l-4     { border-left-width: 4px; border-left-style: solid; }

.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; }
.rounded-t    { border-top-left-radius: 4px; border-top-right-radius: 4px; }

/* ============================================================
   10. Utility classes — Effects
   ============================================================ */
.opacity-0    { opacity: 0; }
.opacity-10   { opacity: 0.10; }
.opacity-20   { opacity: 0.20; }
.opacity-30   { opacity: 0.30; }
.opacity-40   { opacity: 0.40; }
.opacity-50   { opacity: 0.50; }
.opacity-60   { opacity: 0.60; }
.opacity-70   { opacity: 0.70; }
.opacity-80   { opacity: 0.80; }
.opacity-90   { opacity: 0.90; }
.opacity-100  { opacity: 1; }

.shadow       { box-shadow: 0 1px 3px rgba(0,0,0,0.4), 0 1px 2px rgba(0,0,0,0.3); }
.shadow-md    { box-shadow: 0 4px 6px rgba(0,0,0,0.4), 0 2px 4px rgba(0,0,0,0.3); }
.shadow-lg    { box-shadow: 0 10px 15px rgba(0,0,0,0.5), 0 4px 6px rgba(0,0,0,0.4); }
.shadow-xl    { box-shadow: 0 20px 25px rgba(0,0,0,0.5), 0 10px 10px rgba(0,0,0,0.4); }
.shadow-none  { box-shadow: none; }
.shadow-[4px_4px_0px_rgba(92,170,52,0.35)]  { box-shadow: 4px 4px 0px rgba(92,170,52,0.35); }
.shadow-[6px_6px_0px_rgba(92,170,52,0.25)]  { box-shadow: 6px 6px 0px rgba(92,170,52,0.25); }

.backdrop-blur-sm  { backdrop-filter: blur(4px); }
.backdrop-blur     { backdrop-filter: blur(8px); }
.backdrop-blur-xl  { backdrop-filter: blur(24px); }

/* ============================================================
   11. Utility classes — Transforms & Transitions
   ============================================================ */
.scale-100  { transform: scale(1); }
.scale-105  { transform: scale(1.05); }
.scale-110  { transform: scale(1.10); }
.scale-95   { transform: scale(0.95); }

.rotate-0       { transform: rotate(0deg); }
.rotate-90      { transform: rotate(90deg); }
.-rotate-90     { transform: rotate(-90deg); }
.rotate-180     { transform: rotate(180deg); }
.rotate-[270deg]{ transform: rotate(270deg); }
.-rotate-[3deg] { transform: rotate(-3deg); }
.rotate-[3deg]  { transform: rotate(3deg); }

.translate-x-0      { transform: translateX(0); }
.-translate-x-1\/2  { transform: translateX(-50%); }
.translate-y-0      { transform: translateY(0); }
.-translate-y-1\/2  { transform: translateY(-50%); }
.translate-y-2      { transform: translateY(0.5rem); }
.-translate-y-2     { transform: translateY(-0.5rem); }

.transition          { transition-property: color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter; transition-duration: 150ms; transition-timing-function: cubic-bezier(0.4,0,0.2,1); }
.transition-all      { transition: all 150ms cubic-bezier(0.4,0,0.2,1); }
.transition-colors   { transition-property: color,background-color,border-color; transition-duration: 150ms; transition-timing-function: cubic-bezier(0.4,0,0.2,1); }
.transition-transform { transition-property: transform; transition-duration: 300ms; transition-timing-function: cubic-bezier(0.4,0,0.2,1); }
.transition-opacity  { transition-property: opacity; transition-duration: 150ms; }

.duration-150  { transition-duration: 150ms; }
.duration-200  { transition-duration: 200ms; }
.duration-300  { transition-duration: 300ms; }
.duration-500  { transition-duration: 500ms; }
.duration-700  { transition-duration: 700ms; }

.ease-in     { transition-timing-function: cubic-bezier(0.4,0,1,1); }
.ease-out    { transition-timing-function: cubic-bezier(0,0,0.2,1); }
.ease-in-out { transition-timing-function: cubic-bezier(0.4,0,0.2,1); }

/* ============================================================
   12. Utility classes — Object fit / cursor / list
   ============================================================ */
.object-cover   { object-fit: cover; }
.object-contain { object-fit: contain; }
.object-top     { object-position: top; }
.object-center  { object-position: center; }

.cursor-pointer { cursor: pointer; }
.cursor-default { cursor: default; }

.list-none { list-style: none; }
.list-disc { list-style-type: disc; }
.list-inside { list-style-position: inside; }

.select-none { user-select: none; }
.pointer-events-none { pointer-events: none; }

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

.not-sr-only {
  position: static;
  width: auto;
  height: auto;
  padding: 0;
  margin: 0;
  overflow: visible;
  clip: auto;
  white-space: normal;
}

/* ============================================================
   13. Responsive Breakpoints
   ============================================================ */
@media (min-width: 640px) {
  .sm\:block              { display: block; }
  .sm\:flex               { display: flex; }
  .sm\:hidden             { display: none; }
  .sm\:grid-cols-2        { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .sm\:px-6               { padding-left: 1.5rem; padding-right: 1.5rem; }
  .sm\:text-3xl           { font-size: 1.875rem; line-height: 2.25rem; }
  .sm\:text-4xl           { font-size: 2.25rem; line-height: 2.5rem; }
}

@media (min-width: 768px) {
  .md\:block              { display: block; }
  .md\:flex               { display: flex; }
  .md\:inline-block       { display: inline-block; }
  .md\:hidden             { display: none; }
  .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\:col-span-3         { grid-column: span 3 / span 3; }
  .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-center     { justify-content: center; }
  .md\:gap-8              { gap: 2rem; }
  .md\:gap-12             { gap: 3rem; }
  .md\:gap-16             { gap: 4rem; }
  .md\:gap-x-16           { column-gap: 4rem; }
  .md\:mt-0               { margin-top: 0; }
  .md\:mb-0               { margin-bottom: 0; }
  .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-12              { padding-top: 3rem; }
  .md\:pb-0               { padding-bottom: 0; }
  .md\:w-1\/2             { width: 50%; }
  .md\:w-1\/3             { width: 33.333%; }
  .md\:w-2\/3             { width: 66.666%; }
  .md\:max-w-none         { max-width: none; }
  .md\:text-xl            { font-size: 1.25rem; line-height: 1.75rem; }
  .md\:text-2xl           { font-size: 1.5rem; line-height: 2rem; }
  .md\:text-3xl           { font-size: 1.875rem; line-height: 2.25rem; }
  .md\:text-4xl           { font-size: 2.25rem; line-height: 2.5rem; }
  .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.0; }
  .md\:text-[64px]        { font-size: 64px; }
  .md\:text-[80px]        { font-size: 80px; }
  .md\:text-[96px]        { font-size: 96px; }
  .md\:text-[120px]       { font-size: 120px; }
  .md\:aspect-[21\/9]     { aspect-ratio: 21 / 9; }
  .md\:h-[600px]          { height: 600px; }
  .md\:h-[640px]          { height: 640px; }
  .md\:h-[700px]          { height: 700px; }
  .md\:min-h-[580px]      { min-height: 580px; }
  .md\:min-h-[640px]      { min-height: 640px; }
}

@media (min-width: 1024px) {
  .lg\:block              { display: block; }
  .lg\:flex               { display: flex; }
  .lg\:hidden             { display: none; }
  .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\:col-span-2         { grid-column: span 2 / span 2; }
  .lg\:flex-row           { flex-direction: row; }
  .lg\:items-center       { align-items: center; }
  .lg\:gap-16             { gap: 4rem; }
  .lg\:gap-24             { gap: 6rem; }
  .lg\:px-8               { padding-left: 2rem; padding-right: 2rem; }
  .lg\:py-40              { padding-top: 10rem; padding-bottom: 10rem; }
  .lg\:text-5xl           { font-size: 3rem; line-height: 1.1; }
  .lg\:text-6xl           { font-size: 3.75rem; line-height: 1.05; }
  .lg\:text-7xl           { font-size: 4.5rem; line-height: 1.0; }
  .lg\:text-8xl           { font-size: 6rem; line-height: 1.0; }
  .lg\:text-[96px]        { font-size: 96px; }
  .lg\:text-[120px]       { font-size: 120px; }
  .lg\:text-[140px]       { font-size: 140px; }
  .lg\:h-[700px]          { height: 700px; }
}

@media (min-width: 1280px) {
  .xl\:grid-cols-3        { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .xl\:grid-cols-4        { grid-template-columns: repeat(4, minmax(0,1fr)); }
  .xl\:text-8xl           { font-size: 6rem; line-height: 1.0; }
}

/* ============================================================
   14. State variants — hover, focus, group
   ============================================================ */
.hover\:text-[#5CAA34]:hover    { color: #5CAA34; }
.hover\:text-[#E6EEE2]:hover    { color: #E6EEE2; }
.hover\:text-white:hover        { color: #ffffff; }
.hover\:bg-[#4a8f2a]:hover      { background-color: #4a8f2a; }
.hover\:bg-[#5CAA34]:hover      { background-color: #5CAA34; }
.hover\:bg-[#E6EEE2]/10:hover   { background-color: rgba(230,238,226,0.10); }
.hover\:border-[#5CAA34]:hover  { border-color: #5CAA34; }
.hover\:opacity-90:hover        { opacity: 0.90; }
.hover\:underline:hover         { text-decoration: underline; }
.hover\:scale-105:hover         { transform: scale(1.05); }
.hover\:scale-110:hover         { transform: scale(1.10); }

.focus\:outline-none:focus      { outline: none; }
.focus\:border-[#5CAA34]:focus  { border-color: #5CAA34; }
.focus\:ring-0:focus            { box-shadow: none; }

.group:hover .group-hover\:scale-105 { transform: scale(1.05); }
.group:hover .group-hover\:scale-110 { transform: scale(1.10); }
.group:hover .group-hover\:opacity-100 { opacity: 1; }
.group:hover .group-hover\:underline   { text-decoration: underline; }
.group:hover .group-hover\:text-[#5CAA34] { color: #5CAA34; }
.group { --tw-group: 1; }

/* ============================================================
   15. Component patterns
   ============================================================ */

/* Marquee strip */
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 28s linear infinite;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee-track:hover { animation-play-state: paused; }

/* Rotated label (decorative) */
.label-rotated {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
}

/* Numbered section marker */
.section-number {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #5CAA34;
}

/* Hairline rule */
.hairline {
  width: 100%;
  height: 1px;
  background-color: rgba(123,155,113,0.25);
}

/* Terminal mono label */
.mono-label {
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #7B9B71;
}

/* Pill / badge */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid rgba(92,170,52,0.35);
  background-color: rgba(92,170,52,0.08);
  color: #5CAA34;
}

/* Pull quote */
.pull-quote {
  border-left: 4px solid #5CAA34;
  padding-left: 1.5rem;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.35rem;
  font-style: italic;
  color: #E6EEE2;
  line-height: 1.5;
}

/* Article body prose */
.prose-article p {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: #E6EEE2;
  margin-bottom: 1.5rem;
}
.prose-article h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.625rem;
  font-weight: 700;
  color: #E6EEE2;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}
.prose-article h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #E6EEE2;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}
.prose-article ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1.5rem;
}
.prose-article ul li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.5rem;
  color: #E6EEE2;
  font-size: 1.0625rem;
  line-height: 1.7;
}
.prose-article ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: #5CAA34;
}

/* Accordion */
.accordion-item { border-top: 1px solid rgba(123,155,113,0.25); }
.accordion-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  color: #E6EEE2;
  font-family: 'Manrope', sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  transition: color 0.2s;
}
.accordion-toggle:hover { color: #5CAA34; }
.accordion-body {
  display: none;
  padding-bottom: 1.25rem;
  color: #7B9B71;
  font-size: 0.9375rem;
  line-height: 1.7;
}
.accordion-body.is-open { display: block; }

/* Stats strip */
.stat-number {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: 3.5rem;
  line-height: 1.0;
  color: #5CAA34;
}

/* Contact form */
.form-input {
  width: 100%;
  background-color: #0F1A0B;
  border: 1px solid rgba(123,155,113,0.35);
  padding: 0.875rem 1rem;
  font-size: 0.9375rem;
  color: #E6EEE2;
  font-family: 'Manrope', sans-serif;
  outline: none;
  transition: border-color 0.2s;
}
.form-input:focus { border-color: #5CAA34; }
.form-input::placeholder { color: rgba(123,155,113,0.6); }

/* Navigation active state */
.nav-link { transition: color 0.2s; }
.nav-link:hover { color: #5CAA34; }
.nav-link.active { color: #5CAA34; border-bottom: 1px solid #5CAA34; }

/* Hero overlay gradient */
.hero-overlay {
  background: linear-gradient(to bottom, rgba(8,15,6,0.30) 0%, rgba(8,15,6,0.75) 70%, rgba(8,15,6,0.95) 100%);
}

/* Legal page prose */
.prose-legal p, .prose-legal li {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: #c8d8c4;
  margin-bottom: 0.85rem;
}
.prose-legal h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.35rem;
  color: #E6EEE2;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
}
.prose-legal h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.1rem;
  color: #E6EEE2;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}
.prose-legal ul {
  padding-left: 1.5rem;
  list-style-type: disc;
  margin-bottom: 1rem;
}
.prose-legal a { color: #5CAA34; text-decoration: underline; }

/* Author bio box */
.author-box {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.75rem;
  background-color: #0F1A0B;
  border: 1px solid rgba(123,155,113,0.25);
  margin-top: 3rem;
}
.author-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background-color: #122010;
}

/* Method step */
.method-step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(123,155,113,0.20);
}
.method-step-num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.0;
  color: rgba(92,170,52,0.35);
  min-width: 3.5rem;
  flex-shrink: 0;
}

/* ============================================================
   16. Utility extras
   ============================================================ */
.space-y-1 > * + *  { margin-top: 0.25rem; }
.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; }
.space-y-12 > * + * { margin-top: 3rem; }

.space-x-2 > * + *  { margin-left: 0.5rem; }
.space-x-4 > * + *  { margin-left: 1rem; }

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

.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 640px)  { .container { max-width: 640px; } }
@media (min-width: 768px)  { .container { max-width: 768px; } }
@media (min-width: 1024px) { .container { max-width: 1024px; } }
@media (min-width: 1280px) { .container { max-width: 1280px; } }
@media (min-width: 1536px) { .container { max-width: 1536px; } }

/* ============================================================
   17. Scroll & animation helpers
   ============================================================ */
[data-aos] { opacity: 0; transition-property: opacity, transform; }
[data-aos].aos-animate { opacity: 1; }
[data-aos="fade-up"] { transform: translateY(24px); }
[data-aos="fade-up"].aos-animate { transform: translateY(0); }
[data-aos="fade-in"].aos-animate { opacity: 1; }

/* ============================================================
   18. Print
   ============================================================ */
@media print {
  header, footer, .cookie-banner, .marquee-track { display: none !important; }
  body { color: #000; background: #fff; }
}
