/* css/style.css — Ostavel — Prebuilt Tailwind v4.1.5 utility stylesheet */
/* Modern Sport family | Fraunces + Inter Tight | Forest-green accent | Warm cream bg */

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

@theme {
  --color-bg-primary: #F5F2EB;
  --color-bg-secondary: #EDE9DF;
  --color-ink-primary: #1A2318;
  --color-ink-muted: #7B8C73;
  --color-accent: #3A7A0E;
  --font-display: 'Fraunces', serif;
  --font-body: 'Inter Tight', sans-serif;
  --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;
  --spacing-32: 8rem;
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  --radius-full: 9999px;
  --shadow-sm: 0 1px 2px rgba(26,35,24,0.06);
  --shadow-md: 0 4px 12px rgba(26,35,24,0.10);
  --shadow-lg: 0 20px 60px rgba(26,35,24,0.15);
}

/* ========================================
   BASE RESET / LAYER BASE
   ======================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; font-size: 16px; }
body {
  font-family: 'Inter Tight', system-ui, -apple-system, sans-serif;
  background-color: #F5F2EB;
  color: #1A2318;
  line-height: 1.6;
  overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #1A2318;
}
a { text-decoration: none; color: inherit; transition: color 0.2s ease; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
address { font-style: normal; }
ul, ol { list-style: none; }
input, textarea, select {
  font-family: 'Inter Tight', sans-serif;
  font-size: 0.875rem;
  color: #1A2318;
}
textarea { resize: vertical; }
table { border-collapse: collapse; width: 100%; }
svg { display: block; }

/* ========================================
   KEYFRAMES
   ======================================== */

@keyframes marquee {
  0% { transform: translateX(0%); }
  100% { transform: translateX(-50%); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes slideDown {
  from { opacity: 0; max-height: 0; overflow: hidden; }
  to { opacity: 1; max-height: 600px; overflow: hidden; }
}
@keyframes pulse-green {
  0%, 100% { box-shadow: 0 0 0 0 rgba(58,122,14,0.3); }
  50% { box-shadow: 0 0 0 8px rgba(58,122,14,0); }
}

/* ========================================
   SPECIAL COMPONENTS — Modern Sport
   ======================================== */

.marquee-outer { overflow: hidden; white-space: nowrap; width: 100%; }
.marquee-track {
  display: inline-flex;
  align-items: center;
  animation: marquee 45s linear infinite;
  will-change: transform;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  display: inline-flex;
  align-items: center;
  padding: 0 2rem;
  gap: 2rem;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7B8C73;
  white-space: nowrap;
}
.marquee-dot {
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #3A7A0E;
  flex-shrink: 0;
}

.font-display { font-family: 'Fraunces', Georgia, serif !important; font-weight: 700; }
.font-body { font-family: 'Inter Tight', sans-serif !important; }
.font-mono { font-family: 'Courier New', 'Lucida Console', monospace !important; }

.stat-number {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  line-height: 1;
  color: #3A7A0E;
}

.section-num {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 5rem;
  color: #EDE9DF;
  line-height: 1;
  user-select: none;
  position: absolute;
  top: -1rem;
  left: -1rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.8rem;
  border: 1px solid rgba(123,140,115,0.4);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: 'Inter Tight', sans-serif;
  color: #7B8C73;
  border-radius: 2px;
}

.accordion-answer { display: none; overflow: hidden; }
.accordion-answer.is-open { display: block; animation: slideDown 0.3s ease; }
.accordion-icon { transition: transform 0.25s ease; }
.accordion-item.is-open .accordion-icon { transform: rotate(180deg); }

.hero-diagonal { position: relative; overflow: hidden; }
.hero-diagonal::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 80px;
  background: #F5F2EB;
  clip-path: polygon(0 100%, 100% 20%, 100% 100%);
  z-index: 2;
}
.hero-diagonal-alt::after { background: #EDE9DF; }

.diagonal-section { position: relative; }
.diagonal-section::before {
  content: '';
  position: absolute;
  top: -40px;
  left: 0;
  right: 0;
  height: 40px;
  background: inherit;
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}

.stat-bar { height: 3px; background: #3A7A0E; transform-origin: left; }

.progress-line {
  width: 40px;
  height: 2px;
  background: #3A7A0E;
  display: inline-block;
  margin-right: 0.75rem;
  vertical-align: middle;
}

.card-hover {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card-hover:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(26,35,24,0.12);
}

.cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #3A7A0E;
  color: #F5F2EB;
  padding: 0.875rem 2rem;
  font-size: 0.875rem;
  font-weight: 500;
  font-family: 'Inter Tight', sans-serif;
  letter-spacing: 0.03em;
  transition: opacity 0.2s ease, transform 0.2s ease;
  border: 1px solid #3A7A0E;
}
.cta-primary:hover { opacity: 0.88; transform: translateY(-1px); color: #F5F2EB; }

.cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: transparent;
  color: #1A2318;
  padding: 0.875rem 2rem;
  font-size: 0.875rem;
  font-weight: 500;
  font-family: 'Inter Tight', sans-serif;
  letter-spacing: 0.03em;
  border: 1px solid rgba(26,35,24,0.3);
  transition: border-color 0.2s ease, background-color 0.2s ease;
}
.cta-secondary:hover { border-color: #3A7A0E; color: #3A7A0E; }

.tag-green {
  display: inline-block;
  background: rgba(58,122,14,0.12);
  color: #3A7A0E;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 500;
}

.divider-number {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  color: rgba(58,122,14,0.15);
  font-size: 8rem;
  line-height: 1;
  position: absolute;
  pointer-events: none;
  user-select: none;
}

/* ========================================
   DISPLAY / LAYOUT UTILITIES
   ======================================== */

.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; }
.contents { display: contents; }
.table { display: table; }

/* Flex direction */
.flex-row { flex-direction: row; }
.flex-col { flex-direction: column; }
.flex-row-reverse { flex-direction: row-reverse; }
.flex-col-reverse { flex-direction: column-reverse; }

/* Flex wrap */
.flex-wrap { flex-wrap: wrap; }
.flex-nowrap { flex-wrap: nowrap; }
.flex-wrap-reverse { flex-wrap: wrap-reverse; }

/* Flex grow/shrink */
.flex-1 { flex: 1 1 0%; }
.flex-auto { flex: 1 1 auto; }
.flex-none { flex: none; }
.flex-shrink-0 { flex-shrink: 0; }
.grow { flex-grow: 1; }
.shrink-0 { flex-shrink: 0; }

/* Align items */
.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 content */
.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; }
.justify-evenly { justify-content: space-evenly; }

/* Align self */
.self-start { align-self: flex-start; }
.self-center { align-self: center; }
.self-end { align-self: flex-end; }
.self-stretch { align-self: stretch; }

/* Grid columns */
.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)); }

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

/* Grid row span */
.row-span-1 { grid-row: span 1 / span 1; }
.row-span-2 { grid-row: span 2 / span 2; }

/* Auto grid */
.auto-cols-auto { grid-auto-columns: auto; }
.auto-rows-auto { grid-auto-rows: auto; }

/* Position */
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.sticky { position: sticky; }
.static { position: static; }

/* TRBL */
.top-0 { top: 0; }
.top-4 { top: 1rem; }
.top-8 { top: 2rem; }
.right-0 { right: 0; }
.right-4 { right: 1rem; }
.bottom-0 { bottom: 0; }
.bottom-4 { bottom: 1rem; }
.left-0 { left: 0; }
.left-4 { left: 1rem; }
.left-1\/2 { left: 50%; }
.inset-0 { inset: 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-x-hidden { overflow-x: hidden; }
.overflow-y-auto { overflow-y: auto; }
.overflow-visible { overflow: visible; }

/* Object fit */
.object-cover { object-fit: cover; }
.object-contain { object-fit: contain; }
.object-center { object-position: center; }
.object-top { object-position: top; }

/* ========================================
   SIZING UTILITIES
   ======================================== */

.w-full { width: 100%; }
.w-auto { width: auto; }
.w-screen { width: 100vw; }
.w-1\/2 { width: 50%; }
.w-1\/3 { width: 33.3333%; }
.w-2\/3 { width: 66.6667%; }
.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-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; }
.w-[calc(100%-1.5rem)] { width: calc(100% - 1.5rem); }
.w-[calc(50%-1rem)] { width: calc(50% - 1rem); }

.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-40 { height: 10rem; }
.h-48 { height: 12rem; }
.h-64 { height: 16rem; }
.h-80 { height: 20rem; }
.h-96 { height: 24rem; }
.h-[70vh] { height: 70vh; }
.h-[80vh] { height: 80vh; }
.h-[90vh] { height: 90vh; }
.h-[60vh] { height: 60vh; }
.h-[50vh] { height: 50vh; }
.h-px { height: 1px; }
.h-0\.5 { height: 0.125rem; }
.h-1 { height: 0.25rem; }
.h-2 { height: 0.5rem; }

.min-h-screen { min-height: 100vh; }
.min-h-full { min-height: 100%; }
.min-h-0 { min-height: 0; }
.min-h-[300px] { min-height: 300px; }
.min-h-[400px] { min-height: 400px; }
.min-h-[500px] { min-height: 500px; }
.min-h-[600px] { min-height: 600px; }

.max-h-0 { max-height: 0; }
.max-h-full { max-height: 100%; }
.max-h-screen { max-height: 100vh; }
.max-h-[500px] { max-height: 500px; }
.max-h-[none] { max-height: none; }

/* Max-width container variants */
.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-prose { max-width: 65ch; }
.max-w-screen-lg { max-width: 1024px; }
.max-w-screen-xl { max-width: 1280px; }

/* Min-width */
.min-w-0 { min-width: 0; }
.min-w-full { min-width: 100%; }

/* 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; }

/* ========================================
   SPACING UTILITIES
   ======================================== */

/* Padding */
.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; }
.p-20 { padding: 5rem; }
.p-24 { padding: 6rem; }

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

.py-0 { padding-top: 0; padding-bottom: 0; }
.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-0 { padding-top: 0; }
.pt-1 { padding-top: 0.25rem; }
.pt-2 { padding-top: 0.5rem; }
.pt-3 { padding-top: 0.75rem; }
.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-1 { padding-bottom: 0.25rem; }
.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-6 { padding-left: 1.5rem; }
.pl-8 { padding-left: 2rem; }

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

/* Margin */
.m-0 { margin: 0; }
.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-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; }
.mb-20 { margin-bottom: 5rem; }
.mb-24 { margin-bottom: 6rem; }

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

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

/* 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-x-4 { column-gap: 1rem; }
.gap-x-6 { column-gap: 1.5rem; }
.gap-x-8 { column-gap: 2rem; }
.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; }

/* 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-6 > * + * { margin-top: 1.5rem; }
.space-y-8 > * + * { margin-top: 2rem; }
.space-x-2 > * + * { margin-left: 0.5rem; }
.space-x-4 > * + * { margin-left: 1rem; }

/* ========================================
   TYPOGRAPHY UTILITIES
   ======================================== */

/* Font size */
.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-[11px] { font-size: 11px; }
.text-[12px] { font-size: 12px; }
.text-[13px] { font-size: 13px; }
.text-[14px] { font-size: 14px; }
.text-[16px] { font-size: 16px; }
.text-[clamp(2.5rem,5vw,4rem)] { font-size: clamp(2.5rem,5vw,4rem); }
.text-[clamp(3rem,7vw,6rem)] { font-size: clamp(3rem,7vw,6rem); }
.text-[clamp(3.5rem,8vw,7rem)] { font-size: clamp(3.5rem,8vw,7rem); }
.text-[clamp(1.5rem,3vw,2.5rem)] { font-size: clamp(1.5rem,3vw,2.5rem); }

/* Font weight */
.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; }

/* Line height */
.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-6 { line-height: 1.5rem; }
.leading-7 { line-height: 1.75rem; }
.leading-8 { line-height: 2rem; }

/* Letter spacing */
.tracking-tighter { letter-spacing: -0.05em; }
.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.02em] { letter-spacing: -0.02em; }

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

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

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

/* Font style */
.italic { font-style: italic; }
.not-italic { font-style: normal; }

/* Whitespace */
.whitespace-nowrap { white-space: nowrap; }
.whitespace-pre { white-space: pre; }
.whitespace-pre-wrap { white-space: pre-wrap; }
.whitespace-normal { white-space: normal; }

/* Word break */
.break-words { overflow-wrap: break-word; }
.break-all { word-break: break-all; }

/* Text overflow */
.truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* List */
.list-none { list-style-type: none; }
.list-disc { list-style-type: disc; padding-left: 1.5rem; }
.list-decimal { list-style-type: decimal; padding-left: 1.5rem; }

/* ========================================
   COLOR UTILITIES — palette + white/black
   ======================================== */

/* Background */
.bg-transparent { background-color: transparent; }
.bg-white { background-color: #ffffff; }
.bg-black { background-color: #000000; }
.bg-[#F5F2EB] { background-color: #F5F2EB; }
.bg-[#EDE9DF] { background-color: #EDE9DF; }
.bg-[#1A2318] { background-color: #1A2318; }
.bg-[#3A7A0E] { background-color: #3A7A0E; }
.bg-[#7B8C73] { background-color: #7B8C73; }
.bg-[#F5F2EB]/80 { background-color: rgba(245,242,235,0.8); }
.bg-[#EDE9DF]/50 { background-color: rgba(237,233,223,0.5); }
.bg-[#1A2318]/80 { background-color: rgba(26,35,24,0.8); }
.bg-[#1A2318]/90 { background-color: rgba(26,35,24,0.9); }
.bg-[#1A2318]/50 { background-color: rgba(26,35,24,0.5); }
.bg-[#3A7A0E]/10 { background-color: rgba(58,122,14,0.10); }
.bg-[#3A7A0E]/15 { background-color: rgba(58,122,14,0.15); }
.bg-[#3A7A0E]/20 { background-color: rgba(58,122,14,0.20); }

/* Text */
.text-white { color: #ffffff; }
.text-black { color: #000000; }
.text-transparent { color: transparent; }
.text-[#1A2318] { color: #1A2318; }
.text-[#7B8C73] { color: #7B8C73; }
.text-[#3A7A0E] { color: #3A7A0E; }
.text-[#F5F2EB] { color: #F5F2EB; }
.text-[#EDE9DF] { color: #EDE9DF; }
.text-[#D8E2DC] { color: #D8E2DC; }

/* ========================================
   BORDER UTILITIES
   ======================================== */

.border { border-width: 1px; border-style: solid; border-color: rgba(123,140,115,0.25); }
.border-0 { border-width: 0; }
.border-2 { border-width: 2px; border-style: solid; }
.border-t { border-top-width: 1px; border-top-style: solid; border-top-color: rgba(123,140,115,0.25); }
.border-b { border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgba(123,140,115,0.25); }
.border-l { border-left-width: 1px; border-left-style: solid; border-left-color: rgba(123,140,115,0.25); }
.border-r { border-right-width: 1px; border-right-style: solid; border-right-color: rgba(123,140,115,0.25); }
.border-t-0 { border-top-width: 0; }
.border-b-0 { border-bottom-width: 0; }

.border-[#7B8C73] { border-color: #7B8C73; }
.border-[#7B8C73]/20 { border-color: rgba(123,140,115,0.20); }
.border-[#7B8C73]/30 { border-color: rgba(123,140,115,0.30); }
.border-[#7B8C73]/40 { border-color: rgba(123,140,115,0.40); }
.border-[#3A7A0E] { border-color: #3A7A0E; }
.border-[#1A2318] { border-color: #1A2318; }
.border-[#EDE9DF] { border-color: #EDE9DF; }
.border-white { border-color: #ffffff; }
.border-white\/10 { border-color: rgba(255,255,255,0.10); }
.border-white\/18 { border-color: rgba(255,255,255,0.18); }
.border-transparent { border-color: transparent; }

/* Border radius */
.rounded-none { border-radius: 0; }
.rounded-sm { border-radius: 0.125rem; }
.rounded { border-radius: 0.25rem; }
.rounded-md { border-radius: 0.375rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-full { border-radius: 9999px; }
.rounded-t-none { border-top-left-radius: 0; border-top-right-radius: 0; }
.rounded-b-none { border-bottom-left-radius: 0; border-bottom-right-radius: 0; }

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

/* ========================================
   EFFECTS UTILITIES
   ======================================== */

/* Shadow */
.shadow-none { box-shadow: none; }
.shadow-sm { box-shadow: 0 1px 2px rgba(26,35,24,0.06); }
.shadow { box-shadow: 0 2px 6px rgba(26,35,24,0.08); }
.shadow-md { box-shadow: 0 4px 12px rgba(26,35,24,0.10); }
.shadow-lg { box-shadow: 0 8px 24px rgba(26,35,24,0.12); }
.shadow-xl { box-shadow: 0 20px 50px rgba(26,35,24,0.15); }
.shadow-2xl { box-shadow: 0 25px 60px rgba(26,35,24,0.20); }

/* Opacity */
.opacity-0 { opacity: 0; }
.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-100 { opacity: 1; }

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

/* Filter */
.grayscale { filter: grayscale(100%); }
.grayscale-0 { filter: grayscale(0); }
.brightness-90 { filter: brightness(0.9); }
.brightness-75 { filter: brightness(0.75); }
.contrast-110 { filter: contrast(1.1); }

/* ========================================
   TRANSFORM UTILITIES
   ======================================== */

.scale-95 { transform: scale(0.95); }
.scale-100 { transform: scale(1); }
.scale-105 { transform: scale(1.05); }
.scale-110 { transform: scale(1.10); }

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

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

.skew-x-[-2deg] { transform: skewX(-2deg); }
.skew-y-[-2deg] { transform: skewY(-2deg); }

/* ========================================
   TRANSITION UTILITIES
   ======================================== */

.transition-none { transition: none; }
.transition { transition: all 0.15s cubic-bezier(0.4,0,0.2,1); }
.transition-all { transition-property: all; transition-timing-function: cubic-bezier(0.4,0,0.2,1); transition-duration: 0.15s; }
.transition-colors { transition-property: color, background-color, border-color; transition-timing-function: cubic-bezier(0.4,0,0.2,1); transition-duration: 0.15s; }
.transition-opacity { transition-property: opacity; transition-timing-function: cubic-bezier(0.4,0,0.2,1); transition-duration: 0.15s; }
.transition-transform { transition-property: transform; transition-timing-function: cubic-bezier(0.4,0,0.2,1); transition-duration: 0.15s; }

.duration-75 { transition-duration: 75ms; }
.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; }
.duration-1000 { transition-duration: 1000ms; }

.ease-linear { transition-timing-function: linear; }
.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); }

/* ========================================
   MISC UTILITIES
   ======================================== */

.cursor-pointer { cursor: pointer; }
.cursor-default { cursor: default; }
.cursor-not-allowed { cursor: not-allowed; }
.pointer-events-none { pointer-events: none; }
.select-none { user-select: none; }
.select-text { user-select: text; }

.appearance-none { appearance: none; -webkit-appearance: none; }
.outline-none { outline: none; }
.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;
}

.group:hover .group-hover\:opacity-100 { opacity: 1; }
.group:hover .group-hover\:text-[#3A7A0E] { color: #3A7A0E; }
.group:hover .group-hover\:scale-105 { transform: scale(1.05); }

/* ========================================
   HOVER / FOCUS STATE UTILITIES
   ======================================== */

.hover\:text-[#3A7A0E]:hover { color: #3A7A0E; }
.hover\:text-[#1A2318]:hover { color: #1A2318; }
.hover\:text-[#F5F2EB]:hover { color: #F5F2EB; }
.hover\:text-white:hover { color: #ffffff; }
.hover\:bg-[#3A7A0E]:hover { background-color: #3A7A0E; }
.hover\:bg-[#1A2318]:hover { background-color: #1A2318; }
.hover\:bg-[#EDE9DF]:hover { background-color: #EDE9DF; }
.hover\:bg-[#F5F2EB]:hover { background-color: #F5F2EB; }
.hover\:border-[#3A7A0E]:hover { border-color: #3A7A0E; }
.hover\:opacity-80:hover { opacity: 0.80; }
.hover\:opacity-90:hover { opacity: 0.90; }
.hover\:shadow-lg:hover { box-shadow: 0 8px 24px rgba(26,35,24,0.12); }
.hover\:scale-105:hover { transform: scale(1.05); }
.hover\:translate-y-[-2px]:hover { transform: translateY(-2px); }
.hover\:underline:hover { text-decoration: underline; }

.focus\:outline-none:focus { outline: none; }
.focus\:border-[#3A7A0E]:focus { border-color: #3A7A0E; }
.focus\:ring-2:focus { box-shadow: 0 0 0 2px rgba(58,122,14,0.3); }

/* ========================================
   RESPONSIVE BREAKPOINTS
   ======================================== */

/* sm: ≥640px */
@media (min-width: 640px) {
  .sm\:flex { display: flex; }
  .sm\:grid { display: grid; }
  .sm\:hidden { display: none; }
  .sm\:block { display: block; }
  .sm\:flex-row { flex-direction: row; }
  .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-xl { font-size: 1.25rem; }
  .sm\:text-2xl { font-size: 1.5rem; }
}

/* md: ≥768px */
@media (min-width: 768px) {
  .md\:flex { display: flex; }
  .md\:flex-row { flex-direction: row; }
  .md\:flex-col { flex-direction: column; }
  .md\:grid { display: grid; }
  .md\:block { display: block; }
  .md\:inline-block { display: inline-block; }
  .md\:hidden { display: none; }
  .md\:inline { display: inline; }
  .md\:inline-flex { display: inline-flex; }
  .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\:justify-center { justify-content: center; }
  .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\: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\:px-8 { padding-left: 2rem; padding-right: 2rem; }
  .md\:px-12 { padding-left: 3rem; padding-right: 3rem; }
  .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\:py-32 { padding-top: 8rem; padding-bottom: 8rem; }
  .md\:pt-24 { padding-top: 6rem; }
  .md\:pt-32 { padding-top: 8rem; }
  .md\:pb-24 { padding-bottom: 6rem; }
  .md\:mt-0 { margin-top: 0; }
  .md\:mt-8 { margin-top: 2rem; }
  .md\:mt-16 { margin-top: 4rem; }
  .md\:mb-0 { margin-bottom: 0; }
  .md\:mb-6 { margin-bottom: 1.5rem; }
  .md\:text-sm { font-size: 0.875rem; }
  .md\:text-base { font-size: 1rem; }
  .md\:text-lg { font-size: 1.125rem; }
  .md\:text-xl { font-size: 1.25rem; }
  .md\:text-2xl { font-size: 1.5rem; }
  .md\:text-3xl { font-size: 1.875rem; }
  .md\:text-4xl { font-size: 2.25rem; }
  .md\:text-5xl { font-size: 3rem; }
  .md\:text-6xl { font-size: 3.75rem; }
  .md\:text-left { text-align: left; }
  .md\:text-right { text-align: right; }
  .md\:w-1\/2 { width: 50%; }
  .md\:w-1\/3 { width: 33.3333%; }
  .md\:w-2\/3 { width: 66.6667%; }
  .md\:w-auto { width: auto; }
  .md\:max-w-2xl { max-width: 42rem; }
  .md\:max-w-3xl { max-width: 48rem; }
  .md\:aspect-[21\/9] { aspect-ratio: 21/9; }
  .md\:flex-wrap { flex-wrap: wrap; }
  .md\:border-0 { border-width: 0; }
  .md\:border-l { border-left-width: 1px; border-left-style: solid; }
  .md\:border-r { border-right-width: 1px; border-right-style: solid; }
}

/* lg: ≥1024px */
@media (min-width: 1024px) {
  .lg\:flex { display: flex; }
  .lg\:grid { display: grid; }
  .lg\:block { display: block; }
  .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\:col-span-3 { grid-column: span 3 / span 3; }
  .lg\:gap-16 { gap: 4rem; }
  .lg\:gap-20 { gap: 5rem; }
  .lg\:px-16 { padding-left: 4rem; padding-right: 4rem; }
  .lg\:py-32 { padding-top: 8rem; padding-bottom: 8rem; }
  .lg\:text-4xl { font-size: 2.25rem; }
  .lg\:text-5xl { font-size: 3rem; }
  .lg\:text-6xl { font-size: 3.75rem; }
  .lg\:text-7xl { font-size: 4.5rem; }
  .lg\:text-8xl { font-size: 6rem; }
  .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.6667%; }
  .lg\:w-1\/3 { width: 33.3333%; }
  .lg\:flex-row { flex-direction: row; }
  .lg\:items-center { align-items: center; }
  .lg\:justify-between { justify-content: space-between; }
}

/* xl: ≥1280px */
@media (min-width: 1280px) {
  .xl\:text-7xl { font-size: 4.5rem; }
  .xl\:text-8xl { font-size: 6rem; }
  .xl\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0,1fr)); }
  .xl\:px-0 { padding-left: 0; padding-right: 0; }
  .xl\:gap-20 { gap: 5rem; }
}

/* ========================================
   ARBITRARY VALUE CLASSES
   (used in HTML markup with literal brackets)
   ======================================== */

.border-\[#7B8C73\]\/20 { border-color: rgba(123,140,115,0.20); }
.border-\[#7B8C73\]\/30 { border-color: rgba(123,140,115,0.30); }
.border-\[#3A7A0E\]\/40 { border-color: rgba(58,122,14,0.40); }
.border-\[rgba\(255\,255\,255\,0\.180\)\] { border-color: rgba(255,255,255,0.18); }

.bg-\[#F5F2EB\] { background-color: #F5F2EB; }
.bg-\[#EDE9DF\] { background-color: #EDE9DF; }
.bg-\[#1A2318\] { background-color: #1A2318; }
.bg-\[#3A7A0E\] { background-color: #3A7A0E; }
.text-\[#1A2318\] { color: #1A2318; }
.text-\[#7B8C73\] { color: #7B8C73; }
.text-\[#3A7A0E\] { color: #3A7A0E; }
.text-\[#F5F2EB\] { color: #F5F2EB; }
.text-\[#EDE9DF\] { color: #EDE9DF; }
.text-\[#D8E2DC\] { color: #D8E2DC; }
.hover\:text-\[#3A7A0E\]:hover { color: #3A7A0E; }

/* ========================================
   PRINT
   ======================================== */

@media print {
  .no-print { display: none !important; }
  body { background: white; color: black; }
  a { text-decoration: underline; }
}
