/* ============================================================
   Urakoner — css/style.css
   Prebuilt Tailwind v4.1.5 utility output
   Design Family: Swiss Brutalist (K_FAMILY=0)
   Palette: Warm Cream + Near-Neutral Charcoal (K_HUE=7 / K_BG=0)
   Fonts: Archivo Black + Archivo (K_FONT=4)
   ============================================================ */

@import "tailwindcss";

@theme {
  --color-bg-primary: #F5F0E8;
  --color-bg-secondary: #EBEBDF;
  --color-ink-primary: #1A1A18;
  --color-ink-muted: #787268;
  --color-accent: #1F1F1F;
  --font-display: 'Archivo Black', sans-serif;
  --font-body: 'Archivo', sans-serif;
  --radius: 0rem;
  --shadow-brutal: 4px 4px 0 0 #1A1A18;
  --shadow-brutal-lg: 6px 6px 0 0 #1A1A18;
  --shadow-brutal-xl: 8px 8px 0 0 #1A1A18;
}

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

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: 'Archivo', sans-serif;
  background-color: #F5F0E8;
  color: #1A1A18;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

address {
  font-style: normal;
}

/* ============================================================
   TAILWIND UTILITY CLASSES — LAYOUT
   ============================================================ */

.flex { display: flex; }
.inline-flex { display: inline-flex; }
.grid { display: grid; }
.block { display: block; }
.inline-block { display: inline-block; }
.hidden { display: none; }
.contents { display: contents; }

.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.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-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-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; }

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

.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 { top: 0; right: 0; bottom: 0; left: 0; }

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

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

/* ============================================================
   TAILWIND UTILITY CLASSES — SIZING
   ============================================================ */

.w-full { width: 100%; }
.w-auto { width: auto; }
.w-screen { width: 100vw; }
.w-fit { width: fit-content; }
.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-56 { width: 14rem; }
.w-64 { width: 16rem; }

.h-full { height: 100%; }
.h-auto { height: auto; }
.h-screen { height: 100vh; }
.h-4 { height: 1rem; }
.h-5 { height: 1.25rem; }
.h-6 { height: 1.5rem; }
.h-8 { height: 2rem; }
.h-10 { height: 2.5rem; }
.h-12 { height: 3rem; }
.h-16 { height: 4rem; }
.h-20 { height: 5rem; }
.h-24 { height: 6rem; }
.h-32 { height: 8rem; }
.h-40 { height: 10rem; }
.h-48 { height: 12rem; }
.h-56 { height: 14rem; }
.h-64 { height: 16rem; }
.h-80 { height: 20rem; }
.h-96 { height: 24rem; }
.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-0 { min-height: 0; }
.min-h-full { min-height: 100%; }
.min-h-\[400px\] { min-height: 400px; }
.min-h-\[500px\] { min-height: 500px; }
.min-h-\[600px\] { min-height: 600px; }

.max-w-xs { max-width: 20rem; }
.max-w-sm { max-width: 24rem; }
.max-w-md { max-width: 28rem; }
.max-w-lg { max-width: 32rem; }
.max-w-xl { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-6xl { max-width: 72rem; }
.max-w-7xl { max-width: 80rem; }
.max-w-none { max-width: none; }
.max-w-full { max-width: 100%; }

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

.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\/4\] { aspect-ratio: 3 / 4; }
.aspect-\[2\/3\] { aspect-ratio: 2 / 3; }

/* ============================================================
   TAILWIND UTILITY CLASSES — SPACING
   ============================================================ */

.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-7 { padding: 1.75rem; }
.p-8 { padding: 2rem; }
.p-10 { padding: 2.5rem; }
.p-12 { padding: 3rem; }
.p-14 { padding: 3.5rem; }
.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-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-12 { padding-top: 3rem; }
.pb-0 { padding-bottom: 0; }
.pb-2 { padding-bottom: 0.5rem; }
.pb-4 { padding-bottom: 1rem; }
.pb-6 { padding-bottom: 1.5rem; }
.pb-8 { padding-bottom: 2rem; }
.pb-12 { padding-bottom: 3rem; }
.pb-16 { padding-bottom: 4rem; }
.pl-0 { padding-left: 0; }
.pl-4 { padding-left: 1rem; }
.pl-8 { padding-left: 2rem; }
.pr-0 { padding-right: 0; }
.pr-4 { padding-right: 1rem; }
.pr-8 { padding-right: 2rem; }

.m-0 { margin: 0; }
.m-auto { margin: auto; }
.mx-auto { margin-left: auto; margin-right: auto; }
.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-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-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.ml-0 { margin-left: 0; }
.ml-2 { margin-left: 0.5rem; }
.ml-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-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-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-4 { row-gap: 1rem; }
.gap-y-6 { row-gap: 1.5rem; }
.gap-y-8 { row-gap: 2rem; }

/* ============================================================
   TAILWIND UTILITY CLASSES — TYPOGRAPHY
   ============================================================ */

.font-display { font-family: 'Archivo Black', sans-serif; }
.font-body { font-family: 'Archivo', sans-serif; }
.font-mono { font-family: 'Archivo Black', monospace; }
.font-sans { font-family: 'Archivo', sans-serif; }
.font-serif { font-family: 'Archivo Black', serif; }

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

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

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

.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\.2em\] { letter-spacing: 0.2em; }
.tracking-\[0\.3em\] { letter-spacing: 0.3em; }

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

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

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

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

.underline { text-decoration-line: underline; }
.no-underline { text-decoration-line: none; }
.line-through { text-decoration-line: 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; }
.whitespace-pre { white-space: pre; }
.break-words { overflow-wrap: break-word; }

/* ============================================================
   TAILWIND UTILITY CLASSES — COLORS (backgrounds)
   ============================================================ */

.bg-transparent { background-color: transparent; }
.bg-white { background-color: #ffffff; }
.bg-black { background-color: #000000; }
.bg-\[\#F5F0E8\] { background-color: #F5F0E8; }
.bg-\[\#EBEBDF\] { background-color: #EBEBDF; }
.bg-\[\#E0DCCF\] { background-color: #E0DCCF; }
.bg-\[\#1A1A18\] { background-color: #1A1A18; }
.bg-\[\#1F1F1F\] { background-color: #1F1F1F; }
.bg-\[\#2A2A28\] { background-color: #2A2A28; }
.bg-\[\#333330\] { background-color: #333330; }
.bg-\[\#787268\] { background-color: #787268; }
.bg-\[\#F0EBE0\] { background-color: #F0EBE0; }
.bg-\[\#D8D3C8\] { background-color: #D8D3C8; }
.bg-\[\#C9C4B8\] { background-color: #C9C4B8; }

/* ============================================================
   TAILWIND UTILITY CLASSES — COLORS (text)
   ============================================================ */

.text-white { color: #ffffff; }
.text-black { color: #000000; }
.text-\[\#1A1A18\] { color: #1A1A18; }
.text-\[\#1F1F1F\] { color: #1F1F1F; }
.text-\[\#787268\] { color: #787268; }
.text-\[\#F5F0E8\] { color: #F5F0E8; }
.text-\[\#EBEBDF\] { color: #EBEBDF; }
.text-\[\#D8D3C8\] { color: #D8D3C8; }
.text-\[\#A09890\] { color: #A09890; }
.text-\[\#C9C4B8\] { color: #C9C4B8; }

/* ============================================================
   TAILWIND UTILITY CLASSES — BORDERS
   ============================================================ */

.border { border-width: 1px; border-style: solid; }
.border-0 { border-width: 0; }
.border-2 { border-width: 2px; border-style: solid; }
.border-4 { border-width: 4px; border-style: solid; }
.border-8 { border-width: 8px; 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-\[\#1A1A18\] { border-color: #1A1A18; }
.border-\[\#1F1F1F\] { border-color: #1F1F1F; }
.border-\[\#787268\] { border-color: #787268; }
.border-\[\#D8D3C8\] { border-color: #D8D3C8; }
.border-\[\#C9C4B8\] { border-color: #C9C4B8; }
.border-\[\#EBEBDF\] { border-color: #EBEBDF; }
.border-white { border-color: #ffffff; }
.border-transparent { border-color: transparent; }

.border-\[\#1A1A18\]\/20 { border-color: rgba(26,26,24,0.20); }
.border-\[\#1A1A18\]\/30 { border-color: rgba(26,26,24,0.30); }
.border-\[\#787268\]\/20 { border-color: rgba(120,114,104,0.20); }
.border-\[\#787268\]\/30 { border-color: rgba(120,114,104,0.30); }

.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-full { border-radius: 9999px; }

.divide-y > * + * { border-top-width: 1px; border-top-style: solid; }
.divide-\[\#1A1A18\]\/20 > * + * { border-color: rgba(26,26,24,0.20); }

/* ============================================================
   TAILWIND UTILITY CLASSES — SHADOWS (Swiss Brutalist)
   ============================================================ */

.shadow-none { box-shadow: none; }
.shadow-sm { box-shadow: 0 1px 2px 0 rgba(0,0,0,0.05); }
.shadow { box-shadow: 0 1px 3px 0 rgba(0,0,0,0.1), 0 1px 2px -1px rgba(0,0,0,0.1); }
.shadow-md { box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1); }

/* Swiss Brutalist hard-offset shadows */
.shadow-\[4px_4px_0_0_\#1A1A18\] { box-shadow: 4px 4px 0 0 #1A1A18; }
.shadow-\[6px_6px_0_0_\#1A1A18\] { box-shadow: 6px 6px 0 0 #1A1A18; }
.shadow-\[8px_8px_0_0_\#1A1A18\] { box-shadow: 8px 8px 0 0 #1A1A18; }
.shadow-\[3px_3px_0_0_\#1A1A18\] { box-shadow: 3px 3px 0 0 #1A1A18; }
.shadow-\[4px_4px_0_0_\#F5F0E8\] { box-shadow: 4px 4px 0 0 #F5F0E8; }
.shadow-\[4px_4px_0_0_\#EBEBDF\] { box-shadow: 4px 4px 0 0 #EBEBDF; }

/* ============================================================
   TAILWIND UTILITY CLASSES — TRANSFORMS
   ============================================================ */

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

/* ============================================================
   TAILWIND UTILITY CLASSES — TRANSITIONS & EFFECTS
   ============================================================ */

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

.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-xl { backdrop-filter: blur(24px); }
.backdrop-blur-sm { backdrop-filter: blur(4px); }

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

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

/* ============================================================
   TAILWIND UTILITY CLASSES — STATES (hover, focus, active)
   ============================================================ */

.hover\:bg-\[\#1A1A18\]:hover { background-color: #1A1A18; }
.hover\:bg-\[\#2A2A28\]:hover { background-color: #2A2A28; }
.hover\:bg-\[\#EBEBDF\]:hover { background-color: #EBEBDF; }
.hover\:bg-\[\#E0DCCF\]:hover { background-color: #E0DCCF; }
.hover\:text-\[\#1A1A18\]:hover { color: #1A1A18; }
.hover\:text-\[\#F5F0E8\]:hover { color: #F5F0E8; }
.hover\:text-\[\#787268\]:hover { color: #787268; }
.hover\:text-white:hover { color: #ffffff; }
.hover\:border-\[\#1A1A18\]:hover { border-color: #1A1A18; }
.hover\:shadow-\[6px_6px_0_0_\#1A1A18\]:hover { box-shadow: 6px 6px 0 0 #1A1A18; }
.hover\:shadow-\[8px_8px_0_0_\#1A1A18\]:hover { box-shadow: 8px 8px 0 0 #1A1A18; }
.hover\:opacity-90:hover { opacity: 0.9; }
.hover\:underline:hover { text-decoration-line: underline; }
.hover\:translate-x-1:hover { transform: translateX(0.25rem); }

.focus\:outline-none:focus { outline: none; }
.focus\:border-\[\#1A1A18\]:focus { border-color: #1A1A18; }
.focus\:ring-2:focus { box-shadow: 0 0 0 2px #1A1A18; }

.active\:scale-95:active { transform: scale(0.95); }
.active\:shadow-\[2px_2px_0_0_\#1A1A18\]:active { box-shadow: 2px 2px 0 0 #1A1A18; }
.active\:translate-x-1:active { transform: translateX(0.25rem); }
.active\:translate-y-1:active { transform: translateY(0.25rem); }

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

@media (min-width: 640px) {
  .sm\:block { display: block; }
  .sm\:flex { display: flex; }
  .sm\:hidden { display: none; }
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sm\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
  .sm\:py-12 { padding-top: 3rem; padding-bottom: 3rem; }
  .sm\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
  .sm\:text-5xl { font-size: 3rem; line-height: 1; }
  .sm\:col-span-2 { grid-column: span 2 / span 2; }
  .sm\:w-full { width: 100%; }
}

@media (min-width: 768px) {
  .md\:block { display: block; }
  .md\:flex { display: flex; }
  .md\:grid { display: grid; }
  .md\:hidden { display: none; }
  .md\:inline-block { display: inline-block; }
  .md\:inline-flex { display: inline-flex; }
  .md\:flex-row { flex-direction: row; }
  .md\:flex-col { flex-direction: column; }
  .md\:items-center { align-items: center; }
  .md\:items-start { align-items: flex-start; }
  .md\:justify-between { justify-content: space-between; }
  .md\:justify-end { justify-content: flex-end; }
  .md\:justify-center { justify-content: center; }
  .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\:row-span-2 { grid-row: span 2 / span 2; }
  .md\:gap-6 { gap: 1.5rem; }
  .md\:gap-8 { gap: 2rem; }
  .md\:gap-10 { gap: 2.5rem; }
  .md\:gap-12 { gap: 3rem; }
  .md\:gap-4 { gap: 1rem; }
  .md\:px-8 { padding-left: 2rem; padding-right: 2rem; }
  .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-28 { padding-top: 7rem; padding-bottom: 7rem; }
  .md\:p-12 { padding: 3rem; }
  .md\:p-10 { padding: 2.5rem; }
  .md\:p-8 { padding: 2rem; }
  .md\:pt-16 { padding-top: 4rem; }
  .md\:pb-16 { padding-bottom: 4rem; }
  .md\:mt-0 { margin-top: 0; }
  .md\:mt-24 { margin-top: 6rem; }
  .md\:mb-0 { margin-bottom: 0; }
  .md\:text-left { text-align: left; }
  .md\:text-right { text-align: right; }
  .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-8xl { font-size: 6rem; line-height: 1; }
  .md\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
  .md\:text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
  .md\:text-2xl { font-size: 1.5rem; line-height: 2rem; }
  .md\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
  .md\:text-base { font-size: 1rem; line-height: 1.5rem; }
  .md\:w-1\/2 { width: 50%; }
  .md\:w-1\/3 { width: 33.333333%; }
  .md\:w-2\/3 { width: 66.666667%; }
  .md\:w-auto { width: auto; }
  .md\:max-w-md { max-width: 28rem; }
  .md\:max-w-xl { max-width: 36rem; }
  .md\:max-w-2xl { max-width: 42rem; }
  .md\:aspect-\[21\/9\] { aspect-ratio: 21 / 9; }
  .md\:h-\[600px\] { height: 600px; }
  .md\:h-\[500px\] { height: 500px; }
  .md\:h-\[400px\] { height: 400px; }
  .md\:border-l { border-left-width: 1px; border-left-style: solid; }
  .md\:border-t-0 { border-top-width: 0; }
}

@media (min-width: 1024px) {
  .lg\:block { display: block; }
  .lg\:flex { display: flex; }
  .lg\:grid { display: grid; }
  .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\:col-span-4 { grid-column: span 4 / span 4; }
  .lg\:row-span-2 { grid-row: span 2 / span 2; }
  .lg\:gap-8 { gap: 2rem; }
  .lg\:gap-12 { gap: 3rem; }
  .lg\:px-8 { padding-left: 2rem; padding-right: 2rem; }
  .lg\:py-32 { padding-top: 8rem; padding-bottom: 8rem; }
  .lg\:py-24 { padding-top: 6rem; padding-bottom: 6rem; }
  .lg\:p-16 { padding: 4rem; }
  .lg\:text-7xl { font-size: 4.5rem; line-height: 1; }
  .lg\:text-8xl { font-size: 6rem; line-height: 1; }
  .lg\:text-9xl { font-size: 8rem; line-height: 1; }
  .lg\:text-6xl { font-size: 3.75rem; line-height: 1; }
  .lg\:text-5xl { font-size: 3rem; line-height: 1; }
  .lg\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
  .lg\:text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
  .lg\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
  .lg\:text-2xl { font-size: 1.5rem; line-height: 2rem; }
  .lg\:w-1\/2 { width: 50%; }
  .lg\:mt-0 { margin-top: 0; }
}

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

/* ============================================================
   SWISS BRUTALIST COMPONENT PATTERNS
   ============================================================ */

/* Hard-offset card */
.brutal-card {
  border: 2px solid #1A1A18;
  box-shadow: 4px 4px 0 0 #1A1A18;
  background-color: #F5F0E8;
  border-radius: 0;
  transition: box-shadow 150ms ease, transform 150ms ease;
}
.brutal-card:hover {
  box-shadow: 6px 6px 0 0 #1A1A18;
  transform: translate(-2px, -2px);
}

/* Dark brutal card */
.brutal-card-dark {
  border: 2px solid #F5F0E8;
  box-shadow: 4px 4px 0 0 #F5F0E8;
  background-color: #1A1A18;
  color: #F5F0E8;
  border-radius: 0;
}

/* Mono terminal label */
.mono-label {
  font-family: 'Archivo Black', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #787268;
}

/* Section number marker */
.section-number {
  font-family: 'Archivo Black', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #787268;
}

/* Marquee container */
.marquee-wrapper {
  overflow: hidden;
  white-space: nowrap;
  border-top: 2px solid #1A1A18;
  border-bottom: 2px solid #1A1A18;
  background-color: #1A1A18;
  color: #F5F0E8;
  padding: 0.75rem 0;
}

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

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

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

.marquee-item {
  font-family: 'Archivo Black', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 0 2.5rem;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}

.marquee-dot {
  width: 4px;
  height: 4px;
  background-color: #787268;
  display: inline-block;
  flex-shrink: 0;
}

/* Rotated label (decorative vertical text) */
.rotated-label {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  font-family: 'Archivo Black', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #787268;
}

/* FAQ Accordion */
.accordion-item {
  border-top: 1px solid rgba(26,26,24,0.20);
}

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Archivo Black', sans-serif;
  font-size: 0.875rem;
  font-weight: 900;
  text-align: left;
  color: #1A1A18;
  letter-spacing: 0.02em;
}

.accordion-body {
  display: none;
  padding: 0 0 1.25rem 0;
  font-size: 0.875rem;
  line-height: 1.7;
  color: #787268;
}

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

.accordion-icon {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  border: 1.5px solid #1A1A18;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 150ms ease;
  font-size: 0.875rem;
}

/* Statistics strip */
.stat-number {
  font-family: 'Archivo Black', sans-serif;
  font-size: 3.5rem;
  line-height: 1;
  color: #1A1A18;
  letter-spacing: -0.03em;
}

.stat-label {
  font-family: 'Archivo', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #787268;
  margin-top: 0.5rem;
}

/* CTA button styles */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #1A1A18;
  color: #F5F0E8;
  font-family: 'Archivo Black', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.875rem 2rem;
  border: 2px solid #1A1A18;
  border-radius: 0;
  box-shadow: 4px 4px 0 0 #787268;
  transition: box-shadow 150ms ease, transform 150ms ease;
  text-decoration: none;
}

.btn-primary:hover {
  box-shadow: 6px 6px 0 0 #787268;
  transform: translate(-2px, -2px);
}

.btn-primary:active {
  box-shadow: 2px 2px 0 0 #787268;
  transform: translate(2px, 2px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  color: #1A1A18;
  font-family: 'Archivo Black', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.875rem 2rem;
  border: 2px solid #1A1A18;
  border-radius: 0;
  box-shadow: 4px 4px 0 0 #1A1A18;
  transition: box-shadow 150ms ease, transform 150ms ease, background-color 150ms ease, color 150ms ease;
  text-decoration: none;
}

.btn-secondary:hover {
  box-shadow: 6px 6px 0 0 #1A1A18;
  transform: translate(-2px, -2px);
  background-color: #1A1A18;
  color: #F5F0E8;
}

/* Bento grid patterns */
.bento-grid {
  display: grid;
  gap: 1rem;
}

.bento-tall {
  grid-row: span 2;
}

.bento-wide {
  grid-column: span 2;
}

/* Process step */
.process-step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem 0;
  border-top: 1px solid rgba(26,26,24,0.20);
}

.process-step-number {
  font-family: 'Archivo Black', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #787268;
  min-width: 2.5rem;
  padding-top: 0.25rem;
}

/* Image placeholder */
.img-placeholder {
  background-color: #D8D3C8;
  border: 2px solid #1A1A18;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.img-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Form styles */
.form-input {
  width: 100%;
  background-color: #F5F0E8;
  border: 2px solid #1A1A18;
  padding: 0.875rem 1rem;
  font-family: 'Archivo', sans-serif;
  font-size: 0.875rem;
  color: #1A1A18;
  border-radius: 0;
  outline: none;
  transition: box-shadow 150ms ease;
}

.form-input:focus {
  box-shadow: 3px 3px 0 0 #1A1A18;
}

/* Strikethrough / decorative horizontal rule */
.brutal-rule {
  border: none;
  border-top: 2px solid #1A1A18;
  margin: 2rem 0;
}

/* Tag / chip */
.tag {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  border: 1px solid #1A1A18;
  font-family: 'Archivo', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #1A1A18;
  background-color: transparent;
  border-radius: 0;
}

/* Navigation active state */
.nav-active {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
}

/* Top header strip */
.header-strip {
  width: 100%;
  background-color: #1A1A18;
  color: #F5F0E8;
  text-align: center;
  padding: 0.375rem 1rem;
  font-family: 'Archivo', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: #EBEBDF; }
::-webkit-scrollbar-thumb { background: #787268; border-radius: 0; }
::-webkit-scrollbar-thumb:hover { background: #1A1A18; }

/* Image covers */
.cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Print utilities */
@media print {
  .no-print { display: none !important; }
}

/* ============================================================
   ADDITIONAL ARBITRARY VALUE CLASSES (JIT output)
   ============================================================ */

.w-\[calc\(100\%-1\.5rem\)\] { width: calc(100% - 1.5rem); }
.max-w-\[1220px\] { max-width: 1220px; }
.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-\[550px\] { height: 550px; }
.h-\[600px\] { height: 600px; }
.h-\[200px\] { height: 200px; }
.h-\[250px\] { height: 250px; }
.min-h-\[300px\] { min-height: 300px; }
.min-h-\[350px\] { min-height: 350px; }
.min-h-\[400px\] { min-height: 400px; }
.min-h-\[500px\] { min-height: 500px; }
.min-h-\[700px\] { min-height: 700px; }
.w-\[1px\] { width: 1px; }
.w-\[2px\] { width: 2px; }
.w-\[3px\] { width: 3px; }
.w-\[4px\] { width: 4px; }
.h-\[4px\] { height: 4px; }
.text-\[0\.65rem\] { font-size: 0.65rem; }
.text-\[0\.7rem\] { font-size: 0.7rem; }
.text-\[0\.75rem\] { font-size: 0.75rem; }
.text-\[11px\] { font-size: 11px; }
.text-\[12px\] { font-size: 12px; }
.text-\[13px\] { font-size: 13px; }
.text-\[14px\] { font-size: 14px; }
.text-\[4rem\] { font-size: 4rem; }
.text-\[5rem\] { font-size: 5rem; }
.text-\[6rem\] { font-size: 6rem; }
.text-\[7rem\] { font-size: 7rem; }
.text-\[8rem\] { font-size: 8rem; }
.text-\[10rem\] { font-size: 10rem; }
.leading-\[1\] { line-height: 1; }
.leading-\[1\.1\] { line-height: 1.1; }
.leading-\[1\.2\] { line-height: 1.2; }
.leading-\[1\.7\] { line-height: 1.7; }
.leading-\[1\.8\] { line-height: 1.8; }
.gap-\[2px\] { gap: 2px; }
.gap-\[1rem\] { gap: 1rem; }
.p-\[1rem_1\.25rem\] { padding: 1rem 1.25rem; }
.border-\[\#1A1A18\]\/10 { border-color: rgba(26,26,24,0.10); }
.border-\[rgba\(255\,255\,255\,0\.180\)\] { border-color: rgba(255,255,255,0.18); }
.bg-\[rgba\(27\,38\,44\,0\.780\)\] { background-color: rgba(27,38,44,0.78); }
.bg-\[rgba\(255\,255\,255\,0\.100\)\] { background-color: rgba(255,255,255,0.10); }
.bg-\[rgba\(27\,67\,50\,0\.140\)\] { background-color: rgba(27,67,50,0.14); }
.text-\[\#D8E2DC\] { color: #D8E2DC; }
.decoration-1 { text-decoration-thickness: 1px; }
.underline-offset-4 { text-underline-offset: 4px; }
.text-\[rgba\(216\,226\,220\,0\.280\)\] { color: rgba(216,226,220,0.28); }
.border-\[rgba\(216\,226\,220\,0\.280\)\] { border-color: rgba(216,226,220,0.28); }
.-translate-x-1\/2 { transform: translateX(-50%); }
.not-italic { font-style: normal; }
.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; }
.space-x-2 > * + * { margin-left: 0.5rem; }
.space-x-4 > * + * { margin-left: 1rem; }
.inset-x-0 { left: 0; right: 0; }
.prose p { margin-bottom: 1.25rem; line-height: 1.75; color: #1A1A18; }
.prose h2 { font-family: 'Archivo Black', sans-serif; font-size: 1.375rem; font-weight: 900; margin-bottom: 1rem; margin-top: 2rem; color: #1A1A18; letter-spacing: -0.01em; }
.prose h3 { font-family: 'Archivo Black', sans-serif; font-size: 1rem; font-weight: 900; margin-bottom: 0.75rem; margin-top: 1.5rem; color: #1A1A18; }
.prose ul { list-style: none; padding-left: 0; margin-bottom: 1.25rem; }
.prose ul li { padding-left: 1.25rem; position: relative; margin-bottom: 0.5rem; font-size: 0.9375rem; line-height: 1.7; color: #1A1A18; }
.prose ul li::before { content: "—"; position: absolute; left: 0; color: #787268; }
.prose ol { list-style: none; padding-left: 0; counter-reset: ol-counter; margin-bottom: 1.25rem; }
.prose ol li { padding-left: 1.75rem; position: relative; margin-bottom: 0.5rem; font-size: 0.9375rem; line-height: 1.7; counter-increment: ol-counter; color: #1A1A18; }
.prose ol li::before { content: counter(ol-counter, decimal-leading-zero) "."; position: absolute; left: 0; color: #787268; font-family: 'Archivo Black', sans-serif; font-size: 0.7rem; }
.prose a { color: #1A1A18; text-decoration: underline; text-underline-offset: 3px; }
.prose strong { font-family: 'Archivo Black', sans-serif; font-weight: 900; }

/* Number styling */
.tabular-nums { font-variant-numeric: tabular-nums; }

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