/* ============================================================
   Bralonic Field Notes — css/style.css
   Design: Quiet Luxury | Deep Dark | Forest-Green Muted
   Font: PP Editorial New (display) + Sohne (body)
   Prebuilt Tailwind v4.1.5 utility output
   ============================================================ */

@import url('https://api.fontshare.com/v2/css?f[]=editorial-new@700&f[]=sohne@400,500&display=swap');

@theme {
  --color-bg-primary: #0d1117;
  --color-bg-secondary: #131a23;
  --color-ink-primary: #e8e3da;
  --color-ink-muted: #6b7280;
  --color-accent: #4a7c59;
  --font-display: 'Editorial New', 'Fraunces', serif;
  --font-body: 'Sohne', 'Inter', sans-serif;
  --radius-sm: 2px;
  --radius-md: 4px;
  --shadow-offset: 4px 4px 0px;
}

/* ============================================================
   @layer base — reset & global defaults
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: 'Sohne', 'Inter', sans-serif;
  background-color: #0d1117;
  color: #e8e3da;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Editorial New', 'Fraunces', serif;
  font-weight: 700;
  line-height: 1.15;
  color: #e8e3da;
}

a {
  color: inherit;
  text-decoration: none;
}

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

address {
  font-style: normal;
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.grid { display: grid; }
.block { display: block; }
.inline-block { display: inline-block; }
.hidden { display: 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; }

.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.flex-wrap { flex-wrap: wrap; }
.flex-1 { flex: 1 1 0%; }
.flex-shrink-0 { flex-shrink: 0; }

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

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

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

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

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

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

/* ============================================================
   POSITION & Z-INDEX
   ============================================================ */
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.sticky { position: sticky; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.top-0 { top: 0; }
.bottom-0 { bottom: 0; }
.bottom-4 { bottom: 1rem; }
.left-0 { left: 0; }
.right-0 { right: 0; }
.left-1\/2 { left: 50%; }

.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.z-50 { z-index: 50; }

.overflow-hidden { overflow: hidden; }
.overflow-x-hidden { overflow-x: hidden; }

/* ============================================================
   SIZING
   ============================================================ */
.w-full { width: 100%; }
.w-auto { width: auto; }
.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-24 { width: 6rem; }
.w-48 { width: 12rem; }
.w-64 { width: 16rem; }

.h-full { height: 100%; }
.h-auto { height: auto; }
.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-24 { height: 6rem; }
.h-48 { height: 12rem; }
.h-64 { height: 16rem; }
.h-80 { height: 20rem; }
.h-96 { height: 24rem; }
.h-screen { height: 100vh; }
.min-h-screen { min-height: 100vh; }
.min-h-\[60vh\] { min-height: 60vh; }
.min-h-\[70vh\] { min-height: 70vh; }
.min-h-\[80vh\] { min-height: 80vh; }
.min-h-\[50vh\] { min-height: 50vh; }
.min-h-\[40vh\] { min-height: 40vh; }

.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-none { max-width: none; }
.max-w-\[1220px\] { max-width: 1220px; }

.mx-auto { margin-left: auto; margin-right: auto; }
.aspect-\[3\/2\] { aspect-ratio: 3 / 2; }
.aspect-\[16\/9\] { aspect-ratio: 16 / 9; }
.aspect-\[21\/9\] { aspect-ratio: 21 / 9; }
.aspect-\[4\/3\] { aspect-ratio: 4 / 3; }
.aspect-square { aspect-ratio: 1 / 1; }

/* ============================================================
   SPACING — PADDING
   ============================================================ */
.p-0 { padding: 0; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.p-10 { padding: 2.5rem; }
.p-12 { padding: 3rem; }

.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.px-10 { padding-left: 2.5rem; padding-right: 2.5rem; }
.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; }
.py-32 { padding-top: 8rem; padding-bottom: 8rem; }

.pt-2 { padding-top: 0.5rem; }
.pt-4 { padding-top: 1rem; }
.pt-6 { padding-top: 1.5rem; }
.pt-8 { padding-top: 2rem; }
.pt-12 { padding-top: 3rem; }
.pt-16 { padding-top: 4rem; }
.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; }

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

/* ============================================================
   SPACING — MARGIN
   ============================================================ */
.m-0 { margin: 0; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }
.mt-16 { margin-top: 4rem; }
.mt-20 { margin-top: 5rem; }
.mt-24 { margin-top: 6rem; }

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.25rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }

.ml-auto { margin-left: auto; }
.mr-auto { margin-right: auto; }
.ml-2 { margin-left: 0.5rem; }
.mr-2 { margin-right: 0.5rem; }
.ml-3 { margin-left: 0.75rem; }
.mr-3 { margin-right: 0.75rem; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.font-display { font-family: 'Editorial New', 'Fraunces', serif; font-weight: 700; }
.font-body { font-family: 'Sohne', 'Inter', sans-serif; }
.font-mono { font-family: 'Space Mono', 'Courier New', 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; }

.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-\[14px\] { font-size: 14px; }
.text-\[11px\] { font-size: 11px; }
.text-\[13px\] { font-size: 13px; }
.text-\[72px\] { font-size: 72px; }
.text-\[90px\] { font-size: 90px; }
.text-\[clamp\(2\.5rem\2C 6vw\2C 5rem\)\] { font-size: clamp(2.5rem, 6vw, 5rem); }
.text-\[clamp\(1\.8rem\2C 4vw\2C 3\.5rem\)\] { font-size: clamp(1.8rem, 4vw, 3.5rem); }

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

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

.uppercase { text-transform: uppercase; }
.lowercase { text-transform: lowercase; }
.capitalize { text-transform: capitalize; }

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

.text-balance { text-wrap: balance; }
.text-pretty { text-wrap: pretty; }

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

.truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.whitespace-nowrap { white-space: nowrap; }

/* ============================================================
   COLORS — TEXT
   ============================================================ */
.text-\[\#e8e3da\] { color: #e8e3da; }
.text-\[\#0d1117\] { color: #0d1117; }
.text-\[\#131a23\] { color: #131a23; }
.text-\[\#4a7c59\] { color: #4a7c59; }
.text-\[\#6b7280\] { color: #6b7280; }
.text-\[\#D8E2DC\] { color: #D8E2DC; }
.text-\[\#a3b8aa\] { color: #a3b8aa; }
.text-\[\#c5d4c9\] { color: #c5d4c9; }
.text-white { color: #ffffff; }
.text-\[\#ffffff\] { color: #ffffff; }

/* Semantic design tokens */
.text-ink-primary { color: #e8e3da; }
.text-ink-muted { color: #6b7280; }
.text-accent { color: #4a7c59; }
.text-bg-primary { color: #0d1117; }

/* ============================================================
   COLORS — BACKGROUND
   ============================================================ */
.bg-\[\#0d1117\] { background-color: #0d1117; }
.bg-\[\#131a23\] { background-color: #131a23; }
.bg-\[\#1a2332\] { background-color: #1a2332; }
.bg-\[\#4a7c59\] { background-color: #4a7c59; }
.bg-\[\#6b7280\] { background-color: #6b7280; }
.bg-\[\#e8e3da\] { background-color: #e8e3da; }
.bg-\[\#1c2531\] { background-color: #1c2531; }
.bg-\[\#0f161e\] { background-color: #0f161e; }
.bg-\[rgba\(27\2C38\2C44\2C0\.780\)\] { background-color: rgba(27,38,44,0.780); }
.bg-\[rgba\(255\2C255\2C255\2C0\.100\)\] { background-color: rgba(255,255,255,0.100); }
.bg-\[rgba\(27\2C67\2C50\2C0\.140\)\] { background-color: rgba(27,67,50,0.140); }
.bg-transparent { background-color: transparent; }

/* Semantic */
.bg-bg-primary { background-color: #0d1117; }
.bg-bg-secondary { background-color: #131a23; }
.bg-accent { background-color: #4a7c59; }

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

.border-\[\#4a7c59\] { border-color: #4a7c59; }
.border-\[\#e8e3da\] { border-color: #e8e3da; }
.border-\[\#6b7280\] { border-color: #6b7280; }
.border-\[\#131a23\] { border-color: #131a23; }
.border-\[\#1c2531\] { border-color: #1c2531; }
.border-\[rgba\(255\2C255\2C255\2C0\.180\)\] { border-color: rgba(255,255,255,0.180); }
.border-\[rgba\(216\2C226\2C220\2C0\.280\)\] { border-color: rgba(216,226,220,0.280); }

/* Muted border patterns */
.border-ink-muted\/20 { border-color: rgba(107,114,128,0.20); }
.border-ink-muted\/30 { border-color: rgba(107,114,128,0.30); }
.border-\[\#6b7280\]\/20 { border-color: rgba(107,114,128,0.20); }
.border-\[\#6b7280\]\/30 { border-color: rgba(107,114,128,0.30); }
.border-\[\#e8e3da\]\/10 { border-color: rgba(232,227,218,0.10); }
.border-\[\#e8e3da\]\/20 { border-color: rgba(232,227,218,0.20); }

/* ============================================================
   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-full { border-radius: 9999px; }
.rounded-\[26px\] { border-radius: 26px; }
.rounded-\[999px\] { border-radius: 999px; }

/* ============================================================
   EFFECTS — SHADOWS & OPACITY
   ============================================================ */
.shadow-sm { box-shadow: 0 1px 2px rgba(0,0,0,0.4); }
.shadow { box-shadow: 0 1px 3px rgba(0,0,0,0.4), 0 1px 2px rgba(0,0,0,0.5); }
.shadow-md { box-shadow: 0 4px 6px rgba(0,0,0,0.4), 0 2px 4px rgba(0,0,0,0.4); }
.shadow-lg { box-shadow: 0 10px 15px rgba(0,0,0,0.4), 0 4px 6px rgba(0,0,0,0.3); }
.shadow-xl { box-shadow: 0 20px 25px rgba(0,0,0,0.4), 0 10px 10px rgba(0,0,0,0.3); }
.shadow-\[0_20px_60px_rgba\(15\2C23\2C42\2C0\.24\)\] { box-shadow: 0 20px 60px rgba(15,23,42,0.24); }

.opacity-0 { opacity: 0; }
.opacity-50 { opacity: 0.5; }
.opacity-70 { opacity: 0.7; }
.opacity-80 { opacity: 0.8; }
.opacity-90 { opacity: 0.9; }
.opacity-100 { opacity: 1; }

/* ============================================================
   BACKDROP & BLUR
   ============================================================ */
.backdrop-blur-xl { backdrop-filter: blur(24px); }
.backdrop-blur-sm { backdrop-filter: blur(4px); }
.backdrop-blur-md { backdrop-filter: blur(12px); }

/* ============================================================
   TRANSFORMS
   ============================================================ */
.scale-100 { transform: scale(1); }
.scale-105 { transform: scale(1.05); }
.scale-110 { transform: scale(1.1); }
.-rotate-90 { transform: rotate(-90deg); }
.rotate-90 { transform: rotate(90deg); }
.rotate-45 { transform: rotate(45deg); }
.-translate-x-1\/2 { transform: translateX(-50%); }
.translate-y-0 { transform: translateY(0); }
.translate-y-2 { transform: translateY(0.5rem); }
.-translate-y-2 { transform: translateY(-0.5rem); }

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

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

.ease-in-out { transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); }
.ease-out { transition-timing-function: cubic-bezier(0, 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; }

/* ============================================================
   CURSOR & POINTER
   ============================================================ */
.cursor-pointer { cursor: pointer; }
.cursor-default { cursor: default; }
.pointer-events-none { pointer-events: none; }

/* ============================================================
   FOCUS & OUTLINE
   ============================================================ */
.outline-none { outline: none; }
.focus\:outline-none:focus { outline: none; }
.focus\:border-\[\#4a7c59\]:focus { border-color: #4a7c59; }
.focus-visible\:ring-2:focus-visible { box-shadow: 0 0 0 2px #4a7c59; }

/* ============================================================
   HOVER STATES
   ============================================================ */
.hover\:text-\[\#4a7c59\]:hover { color: #4a7c59; }
.hover\:text-\[\#e8e3da\]:hover { color: #e8e3da; }
.hover\:opacity-90:hover { opacity: 0.9; }
.hover\:underline:hover { text-decoration: underline; }
.hover\:bg-\[\#4a7c59\]:hover { background-color: #4a7c59; }
.hover\:scale-105:hover { transform: scale(1.05); }
.hover\:border-\[\#4a7c59\]:hover { border-color: #4a7c59; }
.group:hover .group-hover\:scale-105 { transform: scale(1.05); }
.group:hover .group-hover\:underline { text-decoration: underline; }

/* ============================================================
   SPACE HELPERS (for non-gap sibling spacing)
   ============================================================ */
.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-10 > * + * { margin-top: 2.5rem; }
.space-y-12 > * + * { margin-top: 3rem; }
.not-italic { font-style: normal; }

/* ============================================================
   DIVIDERS
   ============================================================ */
.divide-y > * + * { border-top-width: 1px; border-top-style: solid; border-color: rgba(107,114,128,0.20); }

/* ============================================================
   RESPONSIVE UTILITIES
   ============================================================ */
@media (min-width: 640px) {
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sm\:text-5xl { font-size: 3rem; line-height: 1; }
  .sm\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
}

@media (min-width: 768px) {
  .md\:flex { display: flex; }
  .md\:hidden { display: none; }
  .md\:inline-block { display: inline-block; }
  .md\:grid { display: grid; }
  .md\:block { display: block; }
  .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\:col-span-4 { grid-column: span 4 / span 4; }
  .md\:flex-row { flex-direction: row; }
  .md\:items-center { align-items: center; }
  .md\:justify-between { justify-content: space-between; }
  .md\:justify-end { justify-content: flex-end; }
  .md\:mt-0 { margin-top: 0; }
  .md\:gap-4 { gap: 1rem; }
  .md\:gap-8 { gap: 2rem; }
  .md\:gap-12 { gap: 3rem; }
  .md\:px-8 { padding-left: 2rem; padding-right: 2rem; }
  .md\:py-16 { padding-top: 4rem; padding-bottom: 4rem; }
  .md\:py-24 { padding-top: 6rem; padding-bottom: 6rem; }
  .md\:py-32 { padding-top: 8rem; padding-bottom: 8rem; }
  .md\:aspect-\[21\/9\] { aspect-ratio: 21 / 9; }
  .md\:text-2xl { font-size: 1.5rem; line-height: 2rem; }
  .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-right { text-align: right; }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .lg\:col-span-2 { grid-column: span 2 / span 2; }
  .lg\:text-7xl { font-size: 4.5rem; line-height: 1; }
  .lg\:text-8xl { font-size: 6rem; line-height: 1; }
  .lg\:py-32 { padding-top: 8rem; padding-bottom: 8rem; }
  .lg\:px-0 { padding-left: 0; padding-right: 0; }
}

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

/* ============================================================
   HIDDEN MD
   ============================================================ */
.hidden { display: none; }

@media (min-width: 768px) {
  .md\:flex { display: flex; }
}

/* ============================================================
   ARBITRARY CLASSES — used in HTML markup
   ============================================================ */
.w-\[calc\(100\%-1\.5rem\)\] { width: calc(100% - 1.5rem); }
.max-w-\[1220px\] { max-width: 1220px; }
.border-\[1px\] { border-width: 1px; }

/* Accent color on border-l for pull-quotes */
.border-l-4 { border-left-width: 4px; border-left-style: solid; }
.border-l-\[\#4a7c59\] { border-left-color: #4a7c59; }

/* ============================================================
   MARQUEE STRIP — decorative horizontal scroll
   ============================================================ */
.marquee-wrapper {
  overflow: hidden;
  white-space: nowrap;
  border-top: 1px solid rgba(107,114,128,0.20);
  border-bottom: 1px solid rgba(107,114,128,0.20);
  padding: 0.75rem 0;
}

.marquee-inner {
  display: inline-flex;
  animation: marquee-scroll 40s linear infinite;
}

.marquee-inner:hover {
  animation-play-state: paused;
}

@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   NUMBERED SECTION MARKERS
   ============================================================ */
.section-marker {
  font-family: 'Editorial New', serif;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #4a7c59;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.section-marker::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background-color: #4a7c59;
}

/* ============================================================
   MONO-TERMINAL LABELS
   ============================================================ */
.mono-label {
  font-family: 'Space Mono', 'Courier New', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #6b7280;
}

/* ============================================================
   HAIRLINE BORDERS
   ============================================================ */
.hairline { border: 1px solid rgba(107,114,128,0.15); }
.hairline-t { border-top: 1px solid rgba(107,114,128,0.15); }
.hairline-b { border-bottom: 1px solid rgba(107,114,128,0.15); }

/* ============================================================
   ARTICLE BODY TYPOGRAPHY
   ============================================================ */
.prose-body p {
  font-family: 'Sohne', 'Inter', sans-serif;
  font-size: 1.0625rem;
  line-height: 1.75;
  color: #c5d4c9;
  margin-bottom: 1.5rem;
}

.prose-body h2 {
  font-family: 'Editorial New', serif;
  font-size: 1.75rem;
  line-height: 1.2;
  color: #e8e3da;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.prose-body h3 {
  font-family: 'Editorial New', serif;
  font-size: 1.25rem;
  color: #e8e3da;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.prose-body ul {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
  list-style-type: disc;
}

.prose-body ul li {
  color: #c5d4c9;
  line-height: 1.75;
  margin-bottom: 0.4rem;
}

.prose-body blockquote {
  border-left: 3px solid #4a7c59;
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-family: 'Editorial New', serif;
  font-size: 1.15rem;
  font-style: italic;
  color: #a3b8aa;
  line-height: 1.6;
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.accordion-item {
  border-bottom: 1px solid rgba(107,114,128,0.20);
}

.accordion-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  color: #e8e3da;
  font-family: 'Sohne', 'Inter', sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
}

.accordion-trigger:hover {
  color: #4a7c59;
}

.accordion-content {
  display: none;
  padding-bottom: 1.25rem;
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.7;
}

.accordion-content.open {
  display: block;
}

/* ============================================================
   FORM ELEMENTS
   ============================================================ */
input, textarea, select {
  background-color: #131a23;
  border: 1px solid rgba(107,114,128,0.30);
  color: #e8e3da;
  font-family: 'Sohne', 'Inter', sans-serif;
  font-size: 0.875rem;
  padding: 0.75rem 1rem;
  width: 100%;
  transition: border-color 150ms ease;
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: #4a7c59;
}

input::placeholder, textarea::placeholder {
  color: rgba(107,114,128,0.6);
}

label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #6b7280;
  margin-bottom: 0.5rem;
  font-family: 'Sohne', 'Inter', sans-serif;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-block;
  background-color: #4a7c59;
  color: #0d1117;
  font-family: 'Sohne', 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.875rem 2rem;
  transition: opacity 150ms ease;
  border: none;
  cursor: pointer;
}

.btn-primary:hover { opacity: 0.88; }

.btn-ghost {
  display: inline-block;
  background-color: transparent;
  color: #e8e3da;
  font-family: 'Sohne', 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.8125rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.875rem 2rem;
  border: 1px solid rgba(232,227,218,0.25);
  transition: border-color 150ms ease, color 150ms ease;
  cursor: pointer;
}

.btn-ghost:hover { border-color: #4a7c59; color: #4a7c59; }

/* ============================================================
   AUTHOR BIO BOX
   ============================================================ */
.author-bio-box {
  background-color: #131a23;
  border: 1px solid rgba(107,114,128,0.20);
  padding: 2rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.author-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background-color: #1c2531;
}

/* ============================================================
   STAT STRIP
   ============================================================ */
.stat-number {
  font-family: 'Editorial New', serif;
  font-size: 3rem;
  line-height: 1;
  color: #4a7c59;
  font-weight: 700;
}

.stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #6b7280;
  margin-top: 0.4rem;
}

/* ============================================================
   HERO IMAGE OVERLAY
   ============================================================ */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(13,17,23,0.25) 0%, rgba(13,17,23,0.65) 100%);
}

/* ============================================================
   NAV LINK HOVER
   ============================================================ */
nav a {
  transition: color 150ms ease;
  position: relative;
}

nav a:hover {
  color: #4a7c59;
}

/* ============================================================
   VERTICAL ROTATED LABEL
   ============================================================ */
.rotated-label {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #6b7280;
}

/* ============================================================
   CARD HOVER
   ============================================================ */
.card-hover {
  transition: transform 300ms ease, box-shadow 300ms ease;
}

.card-hover:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.4);
}

/* ============================================================
   BENTO GRID — K_LAYOUT=3
   ============================================================ */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}

.bento-wide { grid-column: span 8; }
.bento-narrow { grid-column: span 4; }
.bento-half { grid-column: span 6; }
.bento-full { grid-column: span 12; }
.bento-third { grid-column: span 4; }

@media (max-width: 768px) {
  .bento-wide, .bento-narrow, .bento-half, .bento-third {
    grid-column: span 12;
  }
}

/* ============================================================
   SCROLLBAR (subtle dark style)
   ============================================================ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #0d1117; }
::-webkit-scrollbar-thumb { background: #2d3748; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #4a7c59; }

/* ============================================================
   SELECTION
   ============================================================ */
::selection { background-color: rgba(74,124,89,0.35); color: #e8e3da; }

/* ============================================================
   PRINT / ACCESSIBILITY
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  .transition, .transition-all, .transition-colors,
  .transition-transform, .transition-opacity,
  .marquee-inner {
    animation: none;
    transition: none;
  }
}
