/* ============================================================
   Tarnoka — prebuilt Tailwind v4.1.5 output
   Modern Sport family · forest-green muted · cool white
   Generated: 2026
   ============================================================ */

/* 1. @theme block — design tokens */
@theme {
  --color-bg-primary: #FAFCFB;
  --color-bg-secondary: #EDF1EE;
  --color-ink-primary: #1C2820;
  --color-ink-muted: #6B8070;
  --color-accent: #3D6B4F;
  --font-display: 'Editorial New', 'Fraunces', serif;
  --font-body: 'Sohne', 'Inter', sans-serif;
  --font-mono: 'Space Mono', 'Courier New', monospace;
  --spacing-1: 0.25rem;
  --spacing-2: 0.5rem;
  --spacing-3: 0.75rem;
  --spacing-4: 1rem;
  --spacing-5: 1.25rem;
  --spacing-6: 1.5rem;
  --spacing-8: 2rem;
  --spacing-10: 2.5rem;
  --spacing-12: 3rem;
  --spacing-16: 4rem;
  --spacing-20: 5rem;
  --spacing-24: 6rem;
  --radius-sm: 2px;
  --radius-md: 4px;
  --radius-lg: 8px;
  --radius-full: 9999px;
  --shadow-sport: 4px 4px 0 #1C2820;
  --shadow-sm: 0 1px 2px rgba(28,40,32,0.08);
  --shadow-md: 0 4px 12px rgba(28,40,32,0.12);
  --shadow-lg: 0 8px 24px rgba(28,40,32,0.16);
  --shadow-xl: 0 20px 60px rgba(28,40,32,0.20);
}

/* 2. Base reset / @layer base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body { background-color: #FAFCFB; color: #1C2820; font-family: 'Sohne', 'Inter', sans-serif; line-height: 1.6; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: transparent; font-family: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; }
address { font-style: normal; }
ul, ol { list-style: none; }
h1,h2,h3,h4,h5,h6 { font-family: 'Editorial New', 'Fraunces', serif; font-weight: 700; line-height: 1.15; }

/* 3. Tailwind utility classes */

/* === FONT FAMILIES === */
.font-display { font-family: 'Editorial New', 'Fraunces', serif; }
.font-body { font-family: 'Sohne', 'Inter', sans-serif; }
.font-mono { font-family: 'Space Mono', 'Courier New', monospace; }
.font-serif { font-family: 'Editorial New', 'Fraunces', serif; }
.font-sans { font-family: 'Sohne', 'Inter', sans-serif; }

/* === DISPLAY === */
.block { display: block; }
.inline-block { display: inline-block; }
.inline { display: inline; }
.inline-flex { display: inline-flex; }
.flex { display: flex; }
.grid { display: grid; }
.hidden { display: none; }
.table { display: table; }

/* === FLEX === */
.flex-row { flex-direction: row; }
.flex-col { flex-direction: column; }
.flex-col-reverse { flex-direction: column-reverse; }
.flex-row-reverse { flex-direction: row-reverse; }
.flex-wrap { flex-wrap: wrap; }
.flex-nowrap { flex-wrap: nowrap; }
.flex-1 { flex: 1 1 0%; }
.flex-auto { flex: 1 1 auto; }
.flex-none { flex: none; }
.flex-shrink-0 { flex-shrink: 0; }
.flex-grow { flex-grow: 1; }
.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; }
.self-stretch { align-self: stretch; }

/* === GRID === */
.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)); }
.grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.grid-cols-6 { grid-template-columns: repeat(6, minmax(0, 1fr)); }
.grid-cols-12 { grid-template-columns: repeat(12, 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-4 { grid-column: span 4 / span 4; }
.col-span-5 { grid-column: span 5 / span 5; }
.col-span-6 { grid-column: span 6 / span 6; }
.col-span-7 { grid-column: span 7 / span 7; }
.col-span-8 { grid-column: span 8 / span 8; }
.col-span-9 { grid-column: span 9 / span 9; }
.col-span-10 { grid-column: span 10 / span 10; }
.col-span-12 { grid-column: span 12 / span 12; }
.col-span-full { grid-column: 1 / -1; }
.row-span-1 { grid-row: span 1 / span 1; }
.row-span-2 { grid-row: span 2 / span 2; }
.row-span-3 { grid-row: span 3 / span 3; }

/* === GAP === */
.gap-0 { gap: 0; }
.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-20 { gap: 5rem; }
.gap-24 { gap: 6rem; }
.gap-x-2 { column-gap: 0.5rem; }
.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-3 { row-gap: 0.75rem; }
.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; }

/* === POSITION === */
.static { position: static; }
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.sticky { position: sticky; }
.top-0 { top: 0; }
.top-2 { top: 0.5rem; }
.top-4 { top: 1rem; }
.top-8 { top: 2rem; }
.right-0 { right: 0; }
.right-2 { right: 0.5rem; }
.right-4 { right: 1rem; }
.right-6 { right: 1.5rem; }
.bottom-0 { bottom: 0; }
.bottom-4 { bottom: 1rem; }
.bottom-6 { bottom: 1.5rem; }
.bottom-8 { bottom: 2rem; }
.left-0 { left: 0; }
.left-2 { left: 0.5rem; }
.left-4 { left: 1rem; }
.left-1\/2 { left: 50%; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }

/* === Z-INDEX === */
.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 === */
.overflow-hidden { overflow: hidden; }
.overflow-auto { overflow: auto; }
.overflow-scroll { overflow: scroll; }
.overflow-visible { overflow: visible; }
.overflow-x-hidden { overflow-x: hidden; }
.overflow-x-auto { overflow-x: auto; }
.overflow-y-auto { overflow-y: auto; }

/* === SIZING === */
.w-full { width: 100%; }
.w-auto { width: auto; }
.w-screen { width: 100vw; }
.w-fit { width: fit-content; }
.w-1\/2 { width: 50%; }
.w-1\/3 { width: 33.333333%; }
.w-2\/3 { width: 66.666667%; }
.w-1\/4 { width: 25%; }
.w-3\/4 { width: 75%; }
.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-14 { width: 3.5rem; }
.w-16 { width: 4rem; }
.w-20 { width: 5rem; }
.w-24 { width: 6rem; }
.w-28 { width: 7rem; }
.w-32 { width: 8rem; }
.w-40 { width: 10rem; }
.w-48 { width: 12rem; }
.w-56 { width: 14rem; }
.w-64 { width: 16rem; }
.w-72 { width: 18rem; }
.w-80 { width: 20rem; }
.w-96 { width: 24rem; }
.w-[calc(100%-1.5rem)] { width: calc(100% - 1.5rem); }
.w-[calc(100%-2rem)] { width: calc(100% - 2rem); }
.w-[3px] { width: 3px; }

.h-full { height: 100%; }
.h-auto { height: auto; }
.h-screen { height: 100vh; }
.h-fit { height: fit-content; }
.h-1 { height: 0.25rem; }
.h-2 { height: 0.5rem; }
.h-3 { height: 0.75rem; }
.h-4 { height: 1rem; }
.h-5 { height: 1.25rem; }
.h-6 { height: 1.5rem; }
.h-7 { height: 1.75rem; }
.h-8 { height: 2rem; }
.h-10 { height: 2.5rem; }
.h-12 { height: 3rem; }
.h-14 { height: 3.5rem; }
.h-16 { height: 4rem; }
.h-20 { height: 5rem; }
.h-24 { height: 6rem; }
.h-32 { height: 8rem; }
.h-40 { height: 10rem; }
.h-48 { height: 12rem; }
.h-56 { height: 14rem; }
.h-64 { height: 16rem; }
.h-72 { height: 18rem; }
.h-80 { height: 20rem; }
.h-96 { height: 24rem; }
.h-[1px] { height: 1px; }
.h-[2px] { height: 2px; }
.h-[3px] { height: 3px; }
.h-[300px] { height: 300px; }
.h-[350px] { height: 350px; }
.h-[400px] { height: 400px; }
.h-[450px] { height: 450px; }
.h-[500px] { height: 500px; }
.h-[50vh] { height: 50vh; }
.h-[60vh] { height: 60vh; }
.h-[70vh] { height: 70vh; }
.h-[75vh] { height: 75vh; }
.h-[80vh] { height: 80vh; }

.min-h-screen { min-height: 100vh; }
.min-h-full { min-height: 100%; }
.min-h-0 { min-height: 0; }
.min-h-[50vh] { min-height: 50vh; }
.min-h-[60vh] { min-height: 60vh; }
.min-h-[70vh] { min-height: 70vh; }
.min-h-[80vh] { min-height: 80vh; }
.min-h-[90vh] { min-height: 90vh; }

.max-w-none { max-width: none; }
.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-screen-xl { max-width: 1280px; }
.max-w-[520px] { max-width: 520px; }
.max-w-[600px] { max-width: 600px; }
.max-w-[680px] { max-width: 680px; }
.max-w-[720px] { max-width: 720px; }
.max-w-[800px] { max-width: 800px; }
.max-w-[900px] { max-width: 900px; }
.max-w-[960px] { max-width: 960px; }
.max-w-[1000px] { max-width: 1000px; }
.max-w-[1100px] { max-width: 1100px; }
.max-w-[1220px] { max-width: 1220px; }

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

/* === CONTAINER === */
.container { width: 100%; margin-left: auto; margin-right: auto; padding-left: 1rem; padding-right: 1rem; }

/* === MARGIN === */
.m-0 { margin: 0; }
.m-1 { margin: 0.25rem; }
.m-2 { margin: 0.5rem; }
.m-3 { margin: 0.75rem; }
.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-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; }
.mt-32 { margin-top: 8rem; }
.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; }
.mb-20 { margin-bottom: 5rem; }
.mb-24 { margin-bottom: 6rem; }
.ml-0 { margin-left: 0; }
.ml-1 { margin-left: 0.25rem; }
.ml-2 { margin-left: 0.5rem; }
.ml-3 { margin-left: 0.75rem; }
.ml-4 { margin-left: 1rem; }
.ml-6 { margin-left: 1.5rem; }
.ml-8 { margin-left: 2rem; }
.ml-auto { margin-left: auto; }
.mr-0 { margin-right: 0; }
.mr-1 { margin-right: 0.25rem; }
.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; }
.-mt-8 { margin-top: -2rem; }
.-mt-12 { margin-top: -3rem; }
.-mt-16 { margin-top: -4rem; }
.-mb-4 { margin-bottom: -1rem; }
.-ml-4 { margin-left: -1rem; }

/* === PADDING === */
.p-0 { padding: 0; }
.p-1 { padding: 0.25rem; }
.p-2 { padding: 0.5rem; }
.p-2\.5 { padding: 0.625rem; }
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.p-7 { padding: 1.75rem; }
.p-8 { padding: 2rem; }
.p-10 { padding: 2.5rem; }
.p-12 { padding: 3rem; }
.p-16 { padding: 4rem; }
.px-0 { padding-left: 0; padding-right: 0; }
.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-0 { padding-top: 0; padding-bottom: 0; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-1\.5 { padding-top: 0.375rem; padding-bottom: 0.375rem; }
.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-14 { padding-top: 3.5rem; padding-bottom: 3.5rem; }
.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-28 { padding-top: 7rem; padding-bottom: 7rem; }
.py-32 { padding-top: 8rem; padding-bottom: 8rem; }
.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; }
.pt-20 { padding-top: 5rem; }
.pt-24 { padding-top: 6rem; }
.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-10 { padding-bottom: 2.5rem; }
.pb-12 { padding-bottom: 3rem; }
.pb-16 { padding-bottom: 4rem; }
.pb-20 { padding-bottom: 5rem; }
.pb-24 { padding-bottom: 6rem; }
.pl-0 { padding-left: 0; }
.pl-2 { padding-left: 0.5rem; }
.pl-4 { padding-left: 1rem; }
.pl-5 { padding-left: 1.25rem; }
.pl-6 { padding-left: 1.5rem; }
.pl-8 { padding-left: 2rem; }
.pl-12 { padding-left: 3rem; }
.pr-0 { padding-right: 0; }
.pr-2 { padding-right: 0.5rem; }
.pr-4 { padding-right: 1rem; }
.pr-6 { padding-right: 1.5rem; }
.pr-8 { padding-right: 2rem; }

/* === SPACE BETWEEN === */
.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-5 > * + * { margin-top: 1.25rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-8 > * + * { margin-top: 2rem; }
.space-y-10 > * + * { margin-top: 2.5rem; }
.space-y-12 > * + * { margin-top: 3rem; }
.space-x-2 > * + * { margin-left: 0.5rem; }
.space-x-4 > * + * { margin-left: 1rem; }
.space-x-6 > * + * { margin-left: 1.5rem; }

/* === TYPOGRAPHY === */
.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; }
.text-6xl { font-size: 3.75rem; line-height: 1; }
.text-7xl { font-size: 4.5rem; line-height: 1; }
.text-8xl { font-size: 6rem; line-height: 1; }
.text-9xl { font-size: 8rem; line-height: 1; }
.text-[10px] { font-size: 10px; }
.text-[11px] { font-size: 11px; }
.text-[13px] { font-size: 13px; }
.text-[14px] { font-size: 14px; }
.text-[15px] { font-size: 15px; }
.text-[17px] { font-size: 17px; }
.text-[18px] { font-size: 18px; }
.text-[22px] { font-size: 22px; }
.text-[28px] { font-size: 28px; }
.text-[36px] { font-size: 36px; }
.text-[42px] { font-size: 42px; }
.text-[48px] { font-size: 48px; }
.text-[56px] { font-size: 56px; }
.text-[64px] { font-size: 64px; }
.text-[72px] { font-size: 72px; }
.text-[80px] { font-size: 80px; }
.text-[96px] { font-size: 96px; }
.text-[112px] { font-size: 112px; }

.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }
.font-black { font-weight: 900; }

.italic { font-style: italic; }
.not-italic { font-style: normal; }

.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; }
.leading-[1.0] { line-height: 1.0; }
.leading-[1.1] { line-height: 1.1; }
.leading-[1.15] { line-height: 1.15; }
.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.12em] { letter-spacing: 0.12em; }
.tracking-[0.15em] { letter-spacing: 0.15em; }
.tracking-[0.2em] { letter-spacing: 0.2em; }
.tracking-[0.25em] { letter-spacing: 0.25em; }

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

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

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

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

.list-none { list-style: none; }
.list-disc { list-style-type: disc; }
.list-decimal { list-style-type: decimal; }

/* === COLORS — Background === */
.bg-transparent { background-color: transparent; }
.bg-white { background-color: #ffffff; }
.bg-black { background-color: #000000; }
.bg-[#FAFCFB] { background-color: #FAFCFB; }
.bg-[#EDF1EE] { background-color: #EDF1EE; }
.bg-[#E8F0EA] { background-color: #E8F0EA; }
.bg-[#F0F4F1] { background-color: #F0F4F1; }
.bg-[#D4E2D8] { background-color: #D4E2D8; }
.bg-[#C5D8CB] { background-color: #C5D8CB; }
.bg-[#1C2820] { background-color: #1C2820; }
.bg-[#2A3D30] { background-color: #2A3D30; }
.bg-[#344B3C] { background-color: #344B3C; }
.bg-[#3D6B4F] { background-color: #3D6B4F; }
.bg-[#4A7A5E] { background-color: #4A7A5E; }
.bg-[#6B8070] { background-color: #6B8070; }
.bg-[rgba(28,40,32,0.03)] { background-color: rgba(28,40,32,0.03); }
.bg-[rgba(28,40,32,0.05)] { background-color: rgba(28,40,32,0.05); }
.bg-[rgba(28,40,32,0.06)] { background-color: rgba(28,40,32,0.06); }
.bg-[rgba(28,40,32,0.08)] { background-color: rgba(28,40,32,0.08); }
.bg-[rgba(28,40,32,0.10)] { background-color: rgba(28,40,32,0.10); }
.bg-[rgba(28,40,32,0.12)] { background-color: rgba(28,40,32,0.12); }
.bg-[rgba(61,107,79,0.06)] { background-color: rgba(61,107,79,0.06); }
.bg-[rgba(61,107,79,0.08)] { background-color: rgba(61,107,79,0.08); }
.bg-[rgba(61,107,79,0.10)] { background-color: rgba(61,107,79,0.10); }
.bg-[rgba(61,107,79,0.12)] { background-color: rgba(61,107,79,0.12); }
.bg-[rgba(61,107,79,0.15)] { background-color: rgba(61,107,79,0.15); }
.bg-[rgba(61,107,79,0.20)] { background-color: rgba(61,107,79,0.20); }
.bg-[rgba(255,255,255,0.05)] { background-color: rgba(255,255,255,0.05); }
.bg-[rgba(255,255,255,0.08)] { background-color: rgba(255,255,255,0.08); }
.bg-[rgba(255,255,255,0.10)] { background-color: rgba(255,255,255,0.10); }
.bg-[rgba(255,255,255,0.15)] { background-color: rgba(255,255,255,0.15); }
.bg-[rgba(27,67,50,0.14)] { background-color: rgba(27,67,50,0.14); }
.bg-[rgba(27,38,44,0.78)] { background-color: rgba(27,38,44,0.780); }

/* === COLORS — Text === */
.text-white { color: #ffffff; }
.text-inherit { color: inherit; }
.text-[#FAFCFB] { color: #FAFCFB; }
.text-[#EDF1EE] { color: #EDF1EE; }
.text-[#E8F0EA] { color: #E8F0EA; }
.text-[#D4E2D8] { color: #D4E2D8; }
.text-[#C5D8CB] { color: #C5D8CB; }
.text-[#D8E2DC] { color: #D8E2DC; }
.text-[#1C2820] { color: #1C2820; }
.text-[#2A3D30] { color: #2A3D30; }
.text-[#3D6B4F] { color: #3D6B4F; }
.text-[#4A7A5E] { color: #4A7A5E; }
.text-[#6B8070] { color: #6B8070; }
.text-[#ffffff] { color: #ffffff; }

/* === COLORS — Border === */
.border-white { border-color: #ffffff; }
.border-transparent { border-color: transparent; }
.border-[#1C2820] { border-color: #1C2820; }
.border-[#2A3D30] { border-color: #2A3D30; }
.border-[#3D6B4F] { border-color: #3D6B4F; }
.border-[#6B8070] { border-color: #6B8070; }
.border-[#EDF1EE] { border-color: #EDF1EE; }
.border-[rgba(28,40,32,0.10)] { border-color: rgba(28,40,32,0.10); }
.border-[rgba(28,40,32,0.12)] { border-color: rgba(28,40,32,0.12); }
.border-[rgba(28,40,32,0.15)] { border-color: rgba(28,40,32,0.15); }
.border-[rgba(28,40,32,0.20)] { border-color: rgba(28,40,32,0.20); }
.border-[rgba(28,40,32,0.25)] { border-color: rgba(28,40,32,0.25); }
.border-[rgba(28,40,32,0.30)] { border-color: rgba(28,40,32,0.30); }
.border-[rgba(61,107,79,0.20)] { border-color: rgba(61,107,79,0.20); }
.border-[rgba(61,107,79,0.30)] { border-color: rgba(61,107,79,0.30); }
.border-[rgba(61,107,79,0.40)] { border-color: rgba(61,107,79,0.40); }
.border-[rgba(107,128,112,0.20)] { border-color: rgba(107,128,112,0.20); }
.border-[rgba(107,128,112,0.30)] { border-color: rgba(107,128,112,0.30); }
.border-[rgba(255,255,255,0.10)] { border-color: rgba(255,255,255,0.10); }
.border-[rgba(255,255,255,0.15)] { border-color: rgba(255,255,255,0.15); }
.border-[rgba(255,255,255,0.18)] { border-color: rgba(255,255,255,0.18); }
.border-[rgba(216,226,220,0.28)] { border-color: rgba(216,226,220,0.28); }

/* === BORDERS === */
.border-0 { border-width: 0; }
.border { border-width: 1px; border-style: solid; }
.border-2 { border-width: 2px; border-style: solid; }
.border-4 { border-width: 4px; border-style: solid; }
.border-t { border-top-width: 1px; border-top-style: solid; }
.border-t-2 { border-top-width: 2px; border-top-style: solid; }
.border-t-4 { border-top-width: 4px; border-top-style: solid; }
.border-b { border-bottom-width: 1px; border-bottom-style: solid; }
.border-b-2 { border-bottom-width: 2px; border-bottom-style: solid; }
.border-b-4 { border-bottom-width: 4px; border-bottom-style: solid; }
.border-l { border-left-width: 1px; border-left-style: solid; }
.border-l-2 { border-left-width: 2px; border-left-style: solid; }
.border-l-4 { border-left-width: 4px; border-left-style: solid; }
.border-r { border-right-width: 1px; border-right-style: solid; }
.border-r-2 { border-right-width: 2px; border-right-style: solid; }

/* === BORDER RADIUS === */
.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-3xl { border-radius: 24px; }
.rounded-full { border-radius: 9999px; }
.rounded-t-lg { border-top-left-radius: 8px; border-top-right-radius: 8px; }
.rounded-t-xl { border-top-left-radius: 12px; border-top-right-radius: 12px; }
.rounded-b-lg { border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; }
.rounded-[26px] { border-radius: 26px; }

/* === DIVIDE === */
.divide-y > * + * { border-top-width: 1px; border-top-style: solid; }
.divide-[rgba(28,40,32,0.10)] > * + * { border-top-color: rgba(28,40,32,0.10); }
.divide-[rgba(28,40,32,0.12)] > * + * { border-top-color: rgba(28,40,32,0.12); }
.divide-[rgba(28,40,32,0.15)] > * + * { border-top-color: rgba(28,40,32,0.15); }

/* === EFFECTS === */
.shadow-none { box-shadow: none; }
.shadow-sm { box-shadow: 0 1px 2px rgba(28,40,32,0.08); }
.shadow { box-shadow: 0 2px 4px rgba(28,40,32,0.08); }
.shadow-md { box-shadow: 0 4px 12px rgba(28,40,32,0.12); }
.shadow-lg { box-shadow: 0 8px 24px rgba(28,40,32,0.14); }
.shadow-xl { box-shadow: 0 16px 40px rgba(28,40,32,0.16); }
.shadow-[4px_4px_0_#1C2820] { box-shadow: 4px 4px 0 #1C2820; }
.shadow-[6px_6px_0_#1C2820] { box-shadow: 6px 6px 0 #1C2820; }
.shadow-[3px_3px_0_#3D6B4F] { box-shadow: 3px 3px 0 #3D6B4F; }
.shadow-[0_20px_60px_rgba(15,23,42,0.24)] { box-shadow: 0 20px 60px rgba(15,23,42,0.24); }

.opacity-0 { opacity: 0; }
.opacity-10 { opacity: 0.10; }
.opacity-20 { opacity: 0.20; }
.opacity-25 { opacity: 0.25; }
.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-75 { opacity: 0.75; }
.opacity-80 { opacity: 0.80; }
.opacity-90 { opacity: 0.90; }
.opacity-95 { opacity: 0.95; }
.opacity-100 { opacity: 1; }

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

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

/* === TRANSFORMS === */
.-translate-x-1\/2 { transform: translateX(-50%); }
.-translate-y-1\/2 { transform: translateY(-50%); }
.translate-x-0 { transform: translateX(0); }
.translate-y-0 { transform: translateY(0); }
.-translate-x-full { transform: translateX(-100%); }
.translate-y-[-50%] { transform: translateY(-50%); }
.rotate-90 { transform: rotate(90deg); }
.-rotate-90 { transform: rotate(-90deg); }
.rotate-45 { transform: rotate(45deg); }
.-rotate-45 { transform: rotate(-45deg); }
.rotate-180 { transform: rotate(180deg); }
.rotate-[-90deg] { transform: rotate(-90deg); }
.rotate-[90deg] { transform: rotate(90deg); }
.scale-100 { transform: scale(1); }
.scale-95 { transform: scale(0.95); }
.scale-105 { transform: scale(1.05); }
.scale-110 { transform: scale(1.10); }

/* === TRANSITIONS === */
.transition { transition-property: color, background-color, border-color, opacity, box-shadow, transform; 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: 150ms; }
.transition-transform { transition-property: transform; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.duration-100 { transition-duration: 100ms; }
.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); }

/* === OBJECT FIT === */
.object-cover { object-fit: cover; }
.object-contain { object-fit: contain; }
.object-center { object-position: center; }
.object-top { object-position: top; }
.object-bottom { object-position: bottom; }

/* === MISC === */
.cursor-pointer { cursor: pointer; }
.cursor-default { cursor: default; }
.cursor-not-allowed { cursor: not-allowed; }
.select-none { user-select: none; }
.select-text { user-select: text; }
.pointer-events-none { pointer-events: none; }
.pointer-events-auto { pointer-events: auto; }
.visible { visibility: visible; }
.invisible { visibility: hidden; }
.isolate { isolation: isolate; }
.resize-none { resize: 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; }

/* === HOVER STATES === */
.hover\:text-\[\#3D6B4F\]:hover { color: #3D6B4F; }
.hover\:text-\[\#1C2820\]:hover { color: #1C2820; }
.hover\:text-\[\#FAFCFB\]:hover { color: #FAFCFB; }
.hover\:text-\[\#D4E2D8\]:hover { color: #D4E2D8; }
.hover\:text-\[\#4A7A5E\]:hover { color: #4A7A5E; }
.hover\:bg-\[\#3D6B4F\]:hover { background-color: #3D6B4F; }
.hover\:bg-\[\#2A3D30\]:hover { background-color: #2A3D30; }
.hover\:bg-\[\#344B3C\]:hover { background-color: #344B3C; }
.hover\:bg-\[\#EDF1EE\]:hover { background-color: #EDF1EE; }
.hover\:bg-\[\#E8F0EA\]:hover { background-color: #E8F0EA; }
.hover\:bg-\[\#1C2820\]:hover { background-color: #1C2820; }
.hover\:bg-\[rgba\(61\,107\,79\,0\.12\)\]:hover { background-color: rgba(61,107,79,0.12); }
.hover\:bg-\[rgba\(61\,107\,79\,0\.15\)\]:hover { background-color: rgba(61,107,79,0.15); }
.hover\:bg-\[rgba\(28\,40\,32\,0\.06\)\]:hover { background-color: rgba(28,40,32,0.06); }
.hover\:border-\[\#3D6B4F\]:hover { border-color: #3D6B4F; }
.hover\:border-\[\#1C2820\]:hover { border-color: #1C2820; }
.hover\:opacity-80:hover { opacity: 0.80; }
.hover\:opacity-90:hover { opacity: 0.90; }
.hover\:scale-105:hover { transform: scale(1.05); }
.hover\:shadow-lg:hover { box-shadow: 0 8px 24px rgba(28,40,32,0.14); }
.hover\:shadow-\[4px_4px_0_\#1C2820\]:hover { box-shadow: 4px 4px 0 #1C2820; }
.hover\:underline:hover { text-decoration-line: underline; }
.hover\:-translate-y-1:hover { transform: translateY(-0.25rem); }

/* === FOCUS STATES === */
.focus\:outline-none:focus { outline: none; }
.focus\:border-\[\#3D6B4F\]:focus { border-color: #3D6B4F; }
.focus\:ring-2:focus { box-shadow: 0 0 0 2px #3D6B4F; }
.focus\:ring-\[\#3D6B4F\]:focus { box-shadow: 0 0 0 2px #3D6B4F; }

/* === ACTIVE STATES === */
.active\:scale-95:active { transform: scale(0.95); }
.active\:opacity-80:active { opacity: 0.80; }

/* === GROUP === */
.group:hover .group-hover\:opacity-100 { opacity: 1; }
.group:hover .group-hover\:translate-y-0 { transform: translateY(0); }
.group:hover .group-hover\:scale-105 { transform: scale(1.05); }
.group:hover .group-hover\:text-\[\#3D6B4F\] { color: #3D6B4F; }

/* === RESPONSIVE sm: === */
@media (min-width: 640px) {
  .sm\:flex { display: flex; }
  .sm\:hidden { display: none; }
  .sm\:block { display: block; }
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sm\:text-base { font-size: 1rem; line-height: 1.5rem; }
  .sm\:text-lg { font-size: 1.125rem; line-height: 1.75rem; }
  .sm\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
  .sm\:gap-4 { gap: 1rem; }
}

/* === RESPONSIVE md: === */
@media (min-width: 768px) {
  .md\:block { display: block; }
  .md\:flex { display: flex; }
  .md\:inline-block { display: inline-block; }
  .md\:hidden { display: none; }
  .md\:grid { display: grid; }
  .md\:flex-row { flex-direction: row; }
  .md\:flex-col { flex-direction: column; }
  .md\:flex-row-reverse { flex-direction: row-reverse; }
  .md\:flex-wrap { flex-wrap: wrap; }
  .md\:items-start { align-items: flex-start; }
  .md\:items-center { align-items: center; }
  .md\:items-end { align-items: flex-end; }
  .md\:justify-start { justify-content: flex-start; }
  .md\:justify-center { justify-content: center; }
  .md\:justify-between { justify-content: space-between; }
  .md\:justify-end { justify-content: flex-end; }
  .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\:grid-cols-5 { grid-template-columns: repeat(5, 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\:col-span-4 { grid-column: span 4 / span 4; }
  .md\:col-span-5 { grid-column: span 5 / span 5; }
  .md\:col-span-full { grid-column: 1 / -1; }
  .md\:row-span-2 { grid-row: span 2 / span 2; }
  .md\:w-auto { width: auto; }
  .md\:w-full { width: 100%; }
  .md\:w-1\/2 { width: 50%; }
  .md\:w-1\/3 { width: 33.333%; }
  .md\:w-2\/3 { width: 66.667%; }
  .md\:w-1\/4 { width: 25%; }
  .md\:w-3\/4 { width: 75%; }
  .md\:max-w-md { max-width: 28rem; }
  .md\:max-w-lg { max-width: 32rem; }
  .md\:max-w-xl { max-width: 36rem; }
  .md\:max-w-2xl { max-width: 42rem; }
  .md\:max-w-3xl { max-width: 48rem; }
  .md\:max-w-4xl { max-width: 56rem; }
  .md\:max-w-5xl { max-width: 64rem; }
  .md\:px-8 { padding-left: 2rem; padding-right: 2rem; }
  .md\:px-12 { padding-left: 3rem; padding-right: 3rem; }
  .md\:py-8 { padding-top: 2rem; padding-bottom: 2rem; }
  .md\:py-10 { padding-top: 2.5rem; padding-bottom: 2.5rem; }
  .md\:py-12 { padding-top: 3rem; padding-bottom: 3rem; }
  .md\:py-16 { padding-top: 4rem; padding-bottom: 4rem; }
  .md\:py-20 { padding-top: 5rem; padding-bottom: 5rem; }
  .md\:py-24 { padding-top: 6rem; padding-bottom: 6rem; }
  .md\:pt-0 { padding-top: 0; }
  .md\:pt-8 { padding-top: 2rem; }
  .md\:pt-12 { padding-top: 3rem; }
  .md\:pt-16 { padding-top: 4rem; }
  .md\:pt-20 { padding-top: 5rem; }
  .md\:pt-24 { padding-top: 6rem; }
  .md\:pb-0 { padding-bottom: 0; }
  .md\:pb-8 { padding-bottom: 2rem; }
  .md\:pb-12 { padding-bottom: 3rem; }
  .md\:pb-16 { padding-bottom: 4rem; }
  .md\:pl-8 { padding-left: 2rem; }
  .md\:pl-12 { padding-left: 3rem; }
  .md\:pr-8 { padding-right: 2rem; }
  .md\:pr-12 { padding-right: 3rem; }
  .md\:mt-0 { margin-top: 0; }
  .md\:mt-4 { margin-top: 1rem; }
  .md\:mt-6 { margin-top: 1.5rem; }
  .md\:mt-8 { margin-top: 2rem; }
  .md\:mt-12 { margin-top: 3rem; }
  .md\:mt-16 { margin-top: 4rem; }
  .md\:mt-20 { margin-top: 5rem; }
  .md\:mb-0 { margin-bottom: 0; }
  .md\:mb-4 { margin-bottom: 1rem; }
  .md\:mb-8 { margin-bottom: 2rem; }
  .md\:mb-12 { margin-bottom: 3rem; }
  .md\:ml-0 { margin-left: 0; }
  .md\:ml-8 { margin-left: 2rem; }
  .md\:ml-12 { margin-left: 3rem; }
  .md\:ml-auto { margin-left: auto; }
  .md\:mr-0 { margin-right: 0; }
  .md\:mx-0 { margin-left: 0; margin-right: 0; }
  .md\:text-sm { font-size: 0.875rem; line-height: 1.25rem; }
  .md\:text-base { font-size: 1rem; line-height: 1.5rem; }
  .md\:text-lg { font-size: 1.125rem; line-height: 1.75rem; }
  .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; }
  .md\:text-6xl { font-size: 3.75rem; line-height: 1; }
  .md\:text-7xl { font-size: 4.5rem; line-height: 1; }
  .md\:text-[42px] { font-size: 42px; }
  .md\:text-[56px] { font-size: 56px; }
  .md\:text-[64px] { font-size: 64px; }
  .md\:text-[72px] { font-size: 72px; }
  .md\:text-[80px] { font-size: 80px; }
  .md\:text-[96px] { font-size: 96px; }
  .md\:text-left { text-align: left; }
  .md\:text-center { text-align: center; }
  .md\:text-right { text-align: right; }
  .md\:gap-4 { gap: 1rem; }
  .md\:gap-6 { gap: 1.5rem; }
  .md\:gap-8 { gap: 2rem; }
  .md\:gap-10 { gap: 2.5rem; }
  .md\:gap-12 { gap: 3rem; }
  .md\:gap-16 { gap: 4rem; }
  .md\:gap-20 { gap: 5rem; }
  .md\:aspect-\[21\/9\] { aspect-ratio: 21 / 9; }
  .md\:min-h-\[70vh\] { min-height: 70vh; }
  .md\:min-h-\[80vh\] { min-height: 80vh; }
  .md\:h-full { height: 100%; }
  .md\:border-t-0 { border-top-width: 0; }
  .md\:border-l { border-left-width: 1px; border-left-style: solid; }
  .md\:self-start { align-self: flex-start; }
  .md\:self-center { align-self: center; }
  .md\:self-stretch { align-self: stretch; }
  .md\:order-first { order: -9999; }
  .md\:order-last { order: 9999; }
  .md\:sticky { position: sticky; }
  .md\:top-8 { top: 2rem; }
}

/* === RESPONSIVE lg: === */
@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\:grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .lg\:grid-cols-6 { grid-template-columns: repeat(6, minmax(0, 1fr)); }
  .lg\:col-span-2 { grid-column: span 2 / span 2; }
  .lg\:col-span-3 { grid-column: span 3 / span 3; }
  .lg\:col-span-4 { grid-column: span 4 / span 4; }
  .lg\:col-span-5 { grid-column: span 5 / span 5; }
  .lg\:col-span-7 { grid-column: span 7 / span 7; }
  .lg\:col-span-8 { grid-column: span 8 / span 8; }
  .lg\:col-span-9 { grid-column: span 9 / span 9; }
  .lg\:col-span-full { grid-column: 1 / -1; }
  .lg\:px-8 { padding-left: 2rem; padding-right: 2rem; }
  .lg\:px-12 { padding-left: 3rem; padding-right: 3rem; }
  .lg\:py-16 { padding-top: 4rem; padding-bottom: 4rem; }
  .lg\:py-20 { padding-top: 5rem; padding-bottom: 5rem; }
  .lg\:py-24 { padding-top: 6rem; padding-bottom: 6rem; }
  .lg\:py-32 { padding-top: 8rem; padding-bottom: 8rem; }
  .lg\:pt-20 { padding-top: 5rem; }
  .lg\:pt-24 { padding-top: 6rem; }
  .lg\:pt-32 { padding-top: 8rem; }
  .lg\:pb-20 { padding-bottom: 5rem; }
  .lg\:pb-24 { padding-bottom: 6rem; }
  .lg\:pb-32 { padding-bottom: 8rem; }
  .lg\:gap-8 { gap: 2rem; }
  .lg\:gap-12 { gap: 3rem; }
  .lg\:gap-16 { gap: 4rem; }
  .lg\:gap-20 { gap: 5rem; }
  .lg\:gap-24 { gap: 6rem; }
  .lg\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
  .lg\:text-2xl { font-size: 1.5rem; line-height: 2rem; }
  .lg\:text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
  .lg\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
  .lg\:text-5xl { font-size: 3rem; line-height: 1; }
  .lg\:text-6xl { font-size: 3.75rem; line-height: 1; }
  .lg\:text-7xl { font-size: 4.5rem; line-height: 1; }
  .lg\:text-[56px] { font-size: 56px; }
  .lg\:text-[72px] { font-size: 72px; }
  .lg\:text-[80px] { font-size: 80px; }
  .lg\:text-[96px] { font-size: 96px; }
  .lg\:text-[112px] { font-size: 112px; }
  .lg\:max-w-4xl { max-width: 56rem; }
  .lg\:max-w-5xl { max-width: 64rem; }
  .lg\:w-1\/2 { width: 50%; }
  .lg\:w-2\/3 { width: 66.667%; }
  .lg\:items-start { align-items: flex-start; }
  .lg\:items-center { align-items: center; }
  .lg\:justify-between { justify-content: space-between; }
  .lg\:flex-row { flex-direction: row; }
  .lg\:mt-0 { margin-top: 0; }
  .lg\:mt-8 { margin-top: 2rem; }
  .lg\:ml-0 { margin-left: 0; }
}

/* === RESPONSIVE xl: === */
@media (min-width: 1280px) {
  .xl\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .xl\:grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .xl\:text-7xl { font-size: 4.5rem; line-height: 1; }
  .xl\:text-8xl { font-size: 6rem; line-height: 1; }
  .xl\:text-[96px] { font-size: 96px; }
  .xl\:text-[112px] { font-size: 112px; }
  .xl\:px-0 { padding-left: 0; padding-right: 0; }
  .xl\:gap-16 { gap: 4rem; }
}

/* 4. Custom component styles for Modern Sport design */

/* Marquee animation */
@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.marquee-wrapper { overflow: hidden; width: 100%; }
.marquee-track { display: flex; width: max-content; animation: marquee-scroll 30s linear infinite; }
.marquee-track:hover { animation-play-state: paused; }
.marquee-item { display: flex; align-items: center; gap: 0; white-space: nowrap; }

/* Accordion */
.accordion-body { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s ease; }
.accordion-body.is-open { max-height: 600px; }
.accordion-chevron { transition: transform 0.3s ease; }
.accordion-trigger.is-open .accordion-chevron { transform: rotate(180deg); }

/* Mono label */
.label-mono { font-family: 'Space Mono', 'Courier New', monospace; font-size: 0.6875rem; letter-spacing: 0.15em; text-transform: uppercase; color: #6B8070; }

/* Section number marker */
.num-marker { font-family: 'Editorial New', 'Fraunces', serif; font-size: 5rem; font-weight: 700; color: rgba(61,107,79,0.10); line-height: 1; user-select: none; }

/* Step number box */
.step-num { width: 2.75rem; height: 2.75rem; background: #1C2820; color: #FAFCFB; display: flex; align-items: center; justify-content: center; font-family: 'Editorial New', 'Fraunces', serif; font-weight: 700; font-size: 0.9375rem; flex-shrink: 0; }

/* Feature card */
.feature-card-hover { transition: transform 0.25s ease, box-shadow 0.25s ease; }
.feature-card-hover:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(28,40,32,0.12); }

/* Icon badge */
.icon-badge { width: 2.75rem; height: 2.75rem; border-radius: 4px; display: flex; align-items: center; justify-content: center; background: rgba(61,107,79,0.10); color: #3D6B4F; flex-shrink: 0; }

/* Sport tag */
.sport-tag { display: inline-block; padding: 0.2rem 0.65rem; border: 1px solid rgba(61,107,79,0.3); font-size: 0.6875rem; letter-spacing: 0.1em; text-transform: uppercase; color: #3D6B4F; font-weight: 500; }

/* Prose for legal pages */
.prose h2 { font-family: 'Editorial New', 'Fraunces', serif; font-size: 1.375rem; font-weight: 700; color: #1C2820; margin-top: 2.5rem; margin-bottom: 0.875rem; line-height: 1.25; }
.prose h3 { font-family: 'Editorial New', 'Fraunces', serif; font-size: 1.0625rem; font-weight: 700; color: #1C2820; margin-top: 1.75rem; margin-bottom: 0.625rem; }
.prose p { color: #1C2820; line-height: 1.75; margin-bottom: 1rem; font-size: 0.9375rem; }
.prose ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1rem; }
.prose ol { list-style: decimal; padding-left: 1.5rem; margin-bottom: 1rem; }
.prose li { color: #1C2820; line-height: 1.75; margin-bottom: 0.375rem; font-size: 0.9375rem; }
.prose a { color: #3D6B4F; text-decoration: underline; }
.prose strong { color: #1C2820; font-weight: 600; }

/* Stat card */
.stat-card { border-top: 3px solid #3D6B4F; padding-top: 1.5rem; }

/* CTA button primary */
.btn-primary { display: inline-flex; align-items: center; gap: 0.5rem; background: #1C2820; color: #FAFCFB; padding: 0.875rem 2rem; font-size: 0.875rem; font-weight: 500; letter-spacing: 0.02em; transition: background 0.15s ease, transform 0.15s ease; }
.btn-primary:hover { background: #2A3D30; }

/* CTA button outline */
.btn-outline { display: inline-flex; align-items: center; gap: 0.5rem; background: transparent; color: #1C2820; border: 1px solid rgba(28,40,32,0.4); padding: 0.875rem 2rem; font-size: 0.875rem; font-weight: 500; transition: background 0.15s ease, border-color 0.15s ease; }
.btn-outline:hover { background: rgba(28,40,32,0.06); border-color: #1C2820; }

/* Vertical label (rotated text) */
.label-vertical { writing-mode: vertical-lr; text-orientation: mixed; transform: rotate(180deg); font-size: 0.625rem; letter-spacing: 0.2em; text-transform: uppercase; color: #6B8070; }

/* Line separator sport-style */
.line-sep { width: 3rem; height: 2px; background: #3D6B4F; display: block; }

/* AOS overrides */
[data-aos] { transition-property: opacity, transform; }
[data-aos="fade-up"] { opacity: 0; transform: translateY(24px); }
[data-aos="fade-up"].aos-animate { opacity: 1; transform: translateY(0); }
[data-aos="fade-in"] { opacity: 0; }
[data-aos="fade-in"].aos-animate { opacity: 1; }
[data-aos="fade-left"] { opacity: 0; transform: translateX(24px); }
[data-aos="fade-left"].aos-animate { opacity: 1; transform: translateX(0); }
[data-aos="fade-right"] { opacity: 0; transform: translateX(-24px); }
[data-aos="fade-right"].aos-animate { opacity: 1; transform: translateX(0); }

/* Scrollbar */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: #FAFCFB; }
::-webkit-scrollbar-thumb { background: rgba(61,107,79,0.25); border-radius: 999px; }
::-webkit-scrollbar-thumb:hover { background: #3D6B4F; }

/* Swiper custom */
.swiper-pagination-bullet { background: #6B8070; opacity: 0.5; }
.swiper-pagination-bullet-active { background: #3D6B4F; opacity: 1; }
.swiper-button-next, .swiper-button-prev { color: #3D6B4F; }

/* Google Maps iframe */
.map-container iframe { filter: grayscale(20%) contrast(1.05); }

/* Form */
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  background: #FAFCFB;
  border: 1px solid rgba(28,40,32,0.20);
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  color: #1C2820;
  outline: none;
  transition: border-color 0.15s ease;
  border-radius: 0;
  appearance: none;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus { border-color: #3D6B4F; }
.form-field label { display: block; font-size: 0.6875rem; letter-spacing: 0.15em; text-transform: uppercase; color: #6B8070; margin-bottom: 0.5rem; font-weight: 500; }

/* Table */
.table-auto { table-layout: auto; }
.border-collapse { border-collapse: collapse; }

/* Misc additions */
.line-clamp-2 { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.line-clamp-3 { display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.animate-pulse { animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }
.animate-spin { animation: spin 1s linear infinite; }
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* Page-specific hero adjustments */
.hero-display-text { font-family: 'Editorial New', 'Fraunces', serif; font-weight: 700; line-height: 1.05; letter-spacing: -0.02em; }
.hero-dark { background-color: #1C2820; color: #FAFCFB; }

/* Diagonal accent bar */
.accent-bar-diagonal { position: relative; overflow: hidden; }
.accent-bar-diagonal::before { content: ''; position: absolute; top: 0; left: -5%; right: -5%; height: 100%; background: #3D6B4F; transform: skewY(-2.5deg); z-index: 0; }
.accent-bar-diagonal > * { position: relative; z-index: 1; }

/* Statistics number style */
.stat-number { font-family: 'Editorial New', 'Fraunces', serif; font-weight: 700; color: #1C2820; line-height: 1; }
.stat-unit { font-size: 0.625rem; letter-spacing: 0.15em; text-transform: uppercase; color: #6B8070; display: block; margin-top: 0.375rem; }

/* Quote block */
blockquote.editorial-quote { border-left: 3px solid #3D6B4F; padding: 1.5rem 1.5rem 1.5rem 2rem; background: rgba(61,107,79,0.05); }
blockquote.editorial-quote p { font-family: 'Editorial New', 'Fraunces', serif; font-size: 1.125rem; line-height: 1.6; color: #1C2820; margin: 0; }
blockquote.editorial-quote cite { display: block; margin-top: 0.75rem; font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: #6B8070; }

/* Print */
@media print { .print\:hidden { display: none; } }
