/* ============================================================
   Belaro — Men's Wellness Journal
   Prebuilt Tailwind v4.1.5 Utility Stylesheet
   Design System: Techno Cyberpunk × Warm Cream Editorial
   K_FAMILY=2 | K_FONT=2 | K_HUE=7 | K_SAT=2 | K_BG=0
   ============================================================ */

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

@theme {
  --color-bg-primary: #F5F0E7;
  --color-bg-secondary: #EDE8DF;
  --color-ink-primary: #0D0D0D;
  --color-ink-muted: #847E77;
  --color-accent: #1A1A28;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter Tight', system-ui, sans-serif;
  --font-mono: 'Courier New', Courier, monospace;
  --radius-sm: 2px;
  --radius-md: 4px;
  --shadow-card: 0 1px 3px rgba(13,13,13,0.08);
  --shadow-hard: 4px 4px 0px #0D0D0D;
  --shadow-hard-sm: 2px 2px 0px #0D0D0D;
}

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

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

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

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

/* ============================================================
   BASE RESET / @layer base
   ============================================================ */

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

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

body {
  background-color: #F5F0E7;
  color: #0D0D0D;
  font-family: 'Inter Tight', system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a:hover {
  color: inherit;
}

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

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

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Fraunces', Georgia, serif;
  line-height: 1.1;
}

address {
  font-style: normal;
}

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

.block           { display: block; }
.inline-block    { display: inline-block; }
.inline          { display: inline; }
.flex            { display: flex; }
.inline-flex     { display: inline-flex; }
.grid            { display: grid; }
.hidden          { display: none; }
.contents        { display: contents; }
.table           { display: table; }
.overflow-hidden { overflow: hidden; }
.overflow-x-hidden { overflow-x: hidden; }
.overflow-y-auto { overflow-y: auto; }
.overflow-auto   { overflow: auto; }

/* ============================================================
   FLEX UTILITIES
   ============================================================ */

.flex-row         { flex-direction: row; }
.flex-col         { flex-direction: column; }
.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; }
.justify-evenly   { justify-content: space-evenly; }
.self-start       { align-self: flex-start; }
.self-center      { align-self: center; }
.self-end         { align-self: flex-end; }
.self-stretch     { align-self: stretch; }

/* ============================================================
   GRID UTILITIES
   ============================================================ */

.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-12  { grid-column: span 12 / span 12; }
.col-start-1  { grid-column-start: 1; }
.col-start-2  { grid-column-start: 2; }
.row-span-2   { grid-row: span 2 / span 2; }

/* ============================================================
   GAP UTILITIES
   ============================================================ */

.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-7   { gap: 1.75rem; }
.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-x-12 { column-gap: 3rem; }
.gap-y-2 { row-gap: 0.5rem; }
.gap-y-3 { row-gap: 0.75rem; }
.gap-y-4 { row-gap: 1rem; }
.gap-y-6 { row-gap: 1.5rem; }
.gap-y-8 { row-gap: 2rem; }
.gap-y-12 { row-gap: 3rem; }
.gap-y-16 { row-gap: 4rem; }

/* ============================================================
   POSITION UTILITIES
   ============================================================ */

.static   { position: static; }
.fixed    { position: fixed; }
.absolute { position: absolute; }
.relative { position: relative; }
.sticky   { position: sticky; }
.inset-0  { inset: 0; }
.inset-x-0 { left: 0; right: 0; }
.inset-y-0 { top: 0; bottom: 0; }
.top-0    { top: 0; }
.top-4    { top: 1rem; }
.bottom-0 { bottom: 0; }
.bottom-4 { bottom: 1rem; }
.left-0   { left: 0; }
.right-0  { right: 0; }
.left-1\/2 { left: 50%; }
.-translate-x-1\/2 { transform: translateX(-50%); }
.-translate-y-1\/2 { transform: translateY(-50%); }
.translate-y-0 { transform: translateY(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; }

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

.w-full   { width: 100%; }
.w-auto   { width: auto; }
.w-screen { width: 100vw; }
.w-1\/2   { width: 50%; }
.w-1\/3   { width: 33.333%; }
.w-2\/3   { width: 66.666%; }
.w-3\/5   { width: 60%; }
.w-2\/5   { width: 40%; }
.w-1\/4   { width: 25%; }
.w-3\/4   { width: 75%; }
.w-4      { width: 1rem; }
.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-48     { width: 12rem; }
.w-64     { width: 16rem; }
.w-fit    { width: fit-content; }
.h-full   { height: 100%; }
.h-auto   { height: auto; }
.h-screen { height: 100vh; }
.h-1      { height: 0.25rem; }
.h-px     { height: 1px; }
.h-4      { height: 1rem; }
.h-6      { height: 1.5rem; }
.h-8      { height: 2rem; }
.h-10     { height: 2.5rem; }
.h-12     { height: 3rem; }
.h-16     { height: 4rem; }
.h-20     { height: 5rem; }
.h-24     { height: 6rem; }
.h-32     { height: 8rem; }
.h-48     { height: 12rem; }
.h-64     { height: 16rem; }
.min-h-0  { min-height: 0; }
.min-h-screen { min-height: 100vh; }
.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-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-\[800px\]  { max-width: 800px; }
.max-w-\[700px\]  { max-width: 700px; }
.max-w-\[680px\]  { max-width: 680px; }
.max-w-\[600px\]  { max-width: 600px; }
.max-w-\[560px\]  { max-width: 560px; }
.max-w-\[480px\]  { max-width: 480px; }
.max-w-\[400px\]  { max-width: 400px; }
.max-w-\[1220px\] { max-width: 1220px; }
.min-w-0  { min-width: 0; }
.min-w-full { min-width: 100%; }
.min-w-\[200px\] { min-width: 200px; }
.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-\[1\/1\]   { aspect-ratio: 1/1; }
.aspect-square     { aspect-ratio: 1/1; }

/* ============================================================
   CONTAINER + MARGIN/PADDING
   ============================================================ */

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

.mx-auto   { margin-left: auto; margin-right: auto; }
.my-auto   { margin-top: auto; margin-bottom: auto; }
.ml-auto   { margin-left: auto; }
.mr-auto   { margin-right: auto; }
.mt-auto   { margin-top: auto; }
.mb-auto   { margin-bottom: auto; }

.m-0   { margin: 0; }
.m-1   { margin: 0.25rem; }
.m-2   { margin: 0.5rem; }
.m-4   { margin: 1rem; }
.mt-0  { margin-top: 0; }
.mt-1  { margin-top: 0.25rem; }
.mt-2  { margin-top: 0.5rem; }
.mt-3  { margin-top: 0.75rem; }
.mt-4  { margin-top: 1rem; }
.mt-5  { margin-top: 1.25rem; }
.mt-6  { margin-top: 1.5rem; }
.mt-8  { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }
.mt-16 { margin-top: 4rem; }
.mt-20 { margin-top: 5rem; }
.mt-24 { margin-top: 6rem; }
.mt-32 { margin-top: 8rem; }
.mb-0  { margin-bottom: 0; }
.mb-1  { margin-bottom: 0.25rem; }
.mb-2  { margin-bottom: 0.5rem; }
.mb-3  { margin-bottom: 0.75rem; }
.mb-4  { margin-bottom: 1rem; }
.mb-5  { margin-bottom: 1.25rem; }
.mb-6  { margin-bottom: 1.5rem; }
.mb-8  { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.mb-20 { margin-bottom: 5rem; }
.mb-24 { margin-bottom: 6rem; }
.ml-0  { margin-left: 0; }
.ml-1  { margin-left: 0.25rem; }
.ml-2  { margin-left: 0.5rem; }
.ml-3  { margin-left: 0.75rem; }
.ml-4  { margin-left: 1rem; }
.ml-6  { margin-left: 1.5rem; }
.ml-8  { margin-left: 2rem; }
.mr-0  { margin-right: 0; }
.mr-1  { margin-right: 0.25rem; }
.mr-2  { margin-right: 0.5rem; }
.mr-3  { margin-right: 0.75rem; }
.mr-4  { margin-right: 1rem; }
.mr-6  { margin-right: 1.5rem; }
.mr-8  { margin-right: 2rem; }
.mx-0  { margin-left: 0; margin-right: 0; }
.mx-1  { margin-left: 0.25rem; margin-right: 0.25rem; }
.mx-2  { margin-left: 0.5rem; margin-right: 0.5rem; }
.mx-4  { margin-left: 1rem; margin-right: 1rem; }
.my-0  { margin-top: 0; margin-bottom: 0; }
.my-2  { margin-top: 0.5rem; margin-bottom: 0.5rem; }
.my-4  { margin-top: 1rem; margin-bottom: 1rem; }
.my-6  { margin-top: 1.5rem; margin-bottom: 1.5rem; }
.my-8  { margin-top: 2rem; margin-bottom: 2rem; }
.my-12 { margin-top: 3rem; margin-bottom: 3rem; }
.my-16 { margin-top: 4rem; margin-bottom: 4rem; }

.-mt-1  { margin-top: -0.25rem; }
.-mt-2  { margin-top: -0.5rem; }
.-mt-4  { margin-top: -1rem; }
.-mt-px { margin-top: -1px; }

.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-16  { padding: 4rem; }
.p-0\.5 { padding: 0.125rem; }
.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-5  { padding-top: 1.25rem; }
.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-3  { padding-bottom: 0.75rem; }
.pb-4  { padding-bottom: 1rem; }
.pb-5  { padding-bottom: 1.25rem; }
.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-1  { padding-left: 0.25rem; }
.pl-2  { padding-left: 0.5rem; }
.pl-3  { padding-left: 0.75rem; }
.pl-4  { padding-left: 1rem; }
.pl-5  { padding-left: 1.25rem; }
.pl-6  { padding-left: 1.5rem; }
.pl-8  { padding-left: 2rem; }
.pl-10 { padding-left: 2.5rem; }
.pl-12 { padding-left: 3rem; }
.pr-0  { padding-right: 0; }
.pr-1  { padding-right: 0.25rem; }
.pr-2  { padding-right: 0.5rem; }
.pr-3  { padding-right: 0.75rem; }
.pr-4  { padding-right: 1rem; }
.pr-5  { padding-right: 1.25rem; }
.pr-6  { padding-right: 1.5rem; }
.pr-8  { padding-right: 2rem; }
.pr-10 { padding-right: 2.5rem; }
.pr-12 { padding-right: 3rem; }
.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-7  { padding-left: 1.75rem; padding-right: 1.75rem; }
.px-8  { padding-left: 2rem; padding-right: 2rem; }
.px-10 { padding-left: 2.5rem; padding-right: 2.5rem; }
.px-12 { padding-left: 3rem; padding-right: 3rem; }
.py-0  { padding-top: 0; padding-bottom: 0; }
.py-1  { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-1\.5 { padding-top: 0.375rem; padding-bottom: 0.375rem; }
.py-2  { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-2\.5 { padding-top: 0.625rem; padding-bottom: 0.625rem; }
.py-3  { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4  { padding-top: 1rem; padding-bottom: 1rem; }
.py-5  { padding-top: 1.25rem; padding-bottom: 1.25rem; }
.py-6  { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-8  { padding-top: 2rem; padding-bottom: 2rem; }
.py-10 { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-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; }

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

.font-display { font-family: 'Fraunces', Georgia, serif; }
.font-body    { font-family: 'Inter Tight', system-ui, sans-serif; }
.font-mono    { font-family: 'Courier New', Courier, monospace; }
.font-sans    { font-family: 'Inter Tight', system-ui, sans-serif; }
.font-serif   { font-family: 'Fraunces', Georgia, serif; }

.font-thin       { font-weight: 100; }
.font-light      { font-weight: 300; }
.font-normal     { font-weight: 400; }
.font-medium     { font-weight: 500; }
.font-semibold   { font-weight: 600; }
.font-bold       { font-weight: 700; }
.font-extrabold  { font-weight: 800; }
.font-black      { font-weight: 900; }
.italic          { font-style: italic; }
.not-italic      { font-style: normal; }

.text-xs   { font-size: 0.75rem; line-height: 1rem; }
.text-sm   { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-lg   { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl   { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl  { font-size: 1.5rem; line-height: 2rem; }
.text-3xl  { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl  { font-size: 2.25rem; line-height: 2.5rem; }
.text-5xl  { font-size: 3rem; line-height: 1; }
.text-6xl  { font-size: 3.75rem; line-height: 1; }
.text-7xl  { font-size: 4.5rem; line-height: 1; }
.text-8xl  { font-size: 6rem; line-height: 1; }
.text-9xl  { font-size: 8rem; line-height: 1; }

.text-\[10px\] { font-size: 10px; }
.text-\[11px\] { font-size: 11px; }
.text-\[12px\] { font-size: 12px; }
.text-\[13px\] { font-size: 13px; }
.text-\[14px\] { font-size: 14px; }
.text-\[15px\] { font-size: 15px; }
.text-\[17px\] { font-size: 17px; }
.text-\[18px\] { font-size: 18px; }
.text-\[20px\] { font-size: 20px; }
.text-\[22px\] { font-size: 22px; }
.text-\[24px\] { font-size: 24px; }
.text-\[28px\] { font-size: 28px; }
.text-\[32px\] { font-size: 32px; }
.text-\[36px\] { font-size: 36px; }
.text-\[40px\] { font-size: 40px; }
.text-\[48px\] { font-size: 48px; }
.text-\[56px\] { font-size: 56px; }
.text-\[64px\] { font-size: 64px; }
.text-\[72px\] { font-size: 72px; }
.text-\[80px\] { font-size: 80px; line-height: 0.95; }
.text-\[96px\] { font-size: 96px; line-height: 0.9; }
.text-\[112px\] { font-size: 112px; line-height: 0.88; }
.text-\[128px\] { font-size: 128px; line-height: 0.85; }

.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-\[0\.85\] { line-height: 0.85; }
.leading-\[0\.9\]  { line-height: 0.9; }
.leading-\[0\.95\] { line-height: 0.95; }
.leading-\[1\.1\]  { line-height: 1.1; }
.leading-\[1\.15\] { line-height: 1.15; }
.leading-\[1\.2\]  { line-height: 1.2; }
.leading-\[1\.3\]  { line-height: 1.3; }
.leading-\[1\.4\]  { line-height: 1.4; }
.leading-\[1\.5\]  { line-height: 1.5; }
.leading-\[1\.6\]  { line-height: 1.6; }
.leading-\[1\.7\]  { line-height: 1.7; }
.leading-\[1\.8\]  { line-height: 1.8; }
.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\.15em\]  { letter-spacing: 0.15em; }
.tracking-\[0\.2em\]   { letter-spacing: 0.2em; }
.tracking-\[0\.25em\]  { letter-spacing: 0.25em; }
.tracking-\[0\.3em\]   { letter-spacing: 0.3em; }
.tracking-\[-0\.02em\] { letter-spacing: -0.02em; }
.tracking-\[-0\.03em\] { letter-spacing: -0.03em; }
.tracking-\[-0\.04em\] { letter-spacing: -0.04em; }
.tracking-\[-0\.05em\] { letter-spacing: -0.05em; }

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

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

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

.whitespace-normal  { white-space: normal; }
.whitespace-nowrap  { white-space: nowrap; }
.whitespace-pre     { white-space: pre; }
.whitespace-pre-wrap { white-space: pre-wrap; }
.break-words        { overflow-wrap: break-word; }
.truncate           { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.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;
}

/* ============================================================
   COLOR UTILITIES — BACKGROUNDS
   ============================================================ */

.bg-transparent      { background-color: transparent; }
.bg-white            { background-color: #ffffff; }
.bg-black            { background-color: #000000; }
.bg-\[\#F5F0E7\]     { background-color: #F5F0E7; }
.bg-\[\#EDE8DF\]     { background-color: #EDE8DF; }
.bg-\[\#E5DFD5\]     { background-color: #E5DFD5; }
.bg-\[\#DDD8CE\]     { background-color: #DDD8CE; }
.bg-\[\#0D0D0D\]     { background-color: #0D0D0D; }
.bg-\[\#1A1A28\]     { background-color: #1A1A28; }
.bg-\[\#111118\]     { background-color: #111118; }
.bg-\[\#222230\]     { background-color: #222230; }
.bg-\[\#847E77\]     { background-color: #847E77; }
.bg-\[\#F0EBE0\]     { background-color: #F0EBE0; }
.bg-\[\#FAF7F2\]     { background-color: #FAF7F2; }

/* ============================================================
   COLOR UTILITIES — TEXT
   ============================================================ */

.text-white        { color: #ffffff; }
.text-black        { color: #000000; }
.text-\[\#0D0D0D\] { color: #0D0D0D; }
.text-\[\#1A1A28\] { color: #1A1A28; }
.text-\[\#111118\] { color: #111118; }
.text-\[\#222230\] { color: #222230; }
.text-\[\#847E77\] { color: #847E77; }
.text-\[\#A09891\] { color: #A09891; }
.text-\[\#6B6560\] { color: #6B6560; }
.text-\[\#F5F0E7\] { color: #F5F0E7; }
.text-\[\#EDE8DF\] { color: #EDE8DF; }
.text-\[\#D8D0C4\] { color: #D8D0C4; }

/* ============================================================
   COLOR UTILITIES — BORDERS
   ============================================================ */

.border-\[\#0D0D0D\]     { border-color: #0D0D0D; }
.border-\[\#1A1A28\]     { border-color: #1A1A28; }
.border-\[\#847E77\]     { border-color: #847E77; }
.border-\[\#847E77\]\/20 { border-color: rgba(132,126,119,0.20); }
.border-\[\#847E77\]\/30 { border-color: rgba(132,126,119,0.30); }
.border-\[\#847E77\]\/40 { border-color: rgba(132,126,119,0.40); }
.border-\[\#847E77\]\/50 { border-color: rgba(132,126,119,0.50); }
.border-\[\#0D0D0D\]\/10 { border-color: rgba(13,13,13,0.10); }
.border-\[\#0D0D0D\]\/20 { border-color: rgba(13,13,13,0.20); }
.border-\[\#0D0D0D\]\/30 { border-color: rgba(13,13,13,0.30); }
.border-white\/10        { border-color: rgba(255,255,255,0.10); }
.border-white\/18        { border-color: rgba(255,255,255,0.18); }
.border-white\/28        { border-color: rgba(255,255,255,0.28); }
.border-\[\#F5F0E7\]\/20 { border-color: rgba(245,240,231,0.20); }

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

.border-0  { border-width: 0; }
.border    { border-width: 1px; }
.border-2  { border-width: 2px; }
.border-t  { border-top-width: 1px; }
.border-b  { border-bottom-width: 1px; }
.border-l  { border-left-width: 1px; }
.border-r  { border-right-width: 1px; }
.border-t-2 { border-top-width: 2px; }
.border-b-2 { border-bottom-width: 2px; }
.border-solid  { border-style: solid; }
.border-dashed { border-style: dashed; }
.border-dotted { border-style: dotted; }

.rounded-none { border-radius: 0; }
.rounded-sm   { border-radius: 2px; }
.rounded      { border-radius: 4px; }
.rounded-md   { border-radius: 6px; }
.rounded-lg   { border-radius: 8px; }
.rounded-xl   { border-radius: 12px; }
.rounded-2xl  { border-radius: 16px; }
.rounded-full { border-radius: 9999px; }
.rounded-t-none { border-top-left-radius: 0; border-top-right-radius: 0; }
.rounded-b-none { border-bottom-left-radius: 0; border-bottom-right-radius: 0; }

/* ============================================================
   EFFECTS — SHADOW / OPACITY / FILTER
   ============================================================ */

.shadow-none { box-shadow: none; }
.shadow-sm   { box-shadow: 0 1px 2px rgba(0,0,0,0.05); }
.shadow      { box-shadow: 0 1px 3px rgba(0,0,0,0.10), 0 1px 2px rgba(0,0,0,0.06); }
.shadow-md   { box-shadow: 0 4px 6px rgba(0,0,0,0.07), 0 2px 4px rgba(0,0,0,0.06); }
.shadow-lg   { box-shadow: 0 10px 15px rgba(0,0,0,0.10), 0 4px 6px rgba(0,0,0,0.05); }
.shadow-xl   { box-shadow: 0 20px 25px rgba(0,0,0,0.10), 0 10px 10px rgba(0,0,0,0.04); }
.shadow-hard { box-shadow: 4px 4px 0px #0D0D0D; }
.shadow-hard-sm { box-shadow: 2px 2px 0px #0D0D0D; }
.shadow-hard-lg { box-shadow: 6px 6px 0px #0D0D0D; }
.shadow-inner { box-shadow: inset 0 2px 4px rgba(0,0,0,0.06); }

.opacity-0   { opacity: 0; }
.opacity-10  { opacity: 0.1; }
.opacity-20  { opacity: 0.2; }
.opacity-30  { opacity: 0.3; }
.opacity-40  { opacity: 0.4; }
.opacity-50  { opacity: 0.5; }
.opacity-60  { opacity: 0.6; }
.opacity-70  { opacity: 0.7; }
.opacity-75  { opacity: 0.75; }
.opacity-80  { opacity: 0.8; }
.opacity-90  { opacity: 0.9; }
.opacity-100 { opacity: 1; }

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

.grayscale     { filter: grayscale(100%); }
.grayscale-0   { filter: grayscale(0); }

/* ============================================================
   TRANSITION & ANIMATION UTILITIES
   ============================================================ */

.transition-none    { transition: none; }
.transition-all     { transition: all 0.15s ease; }
.transition         { transition: color 0.15s ease, background-color 0.15s ease, border-color 0.15s ease, opacity 0.15s ease; }
.transition-colors  { transition: color 0.15s ease, background-color 0.15s ease, border-color 0.15s ease; }
.transition-opacity { transition: opacity 0.15s ease; }
.transition-transform { transition: transform 0.15s ease; }
.transition-shadow  { transition: box-shadow 0.15s ease; }
.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; }
.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); }
.ease-linear   { transition-timing-function: linear; }

.animate-marquee {
  display: inline-flex;
  animation: marquee 30s linear infinite;
}
.animate-marquee-reverse {
  display: inline-flex;
  animation: marquee-reverse 30s linear infinite;
}
.animate-fade-in-up {
  animation: fadeInUp 0.6s ease forwards;
}
.animate-blink {
  animation: blink 1.2s step-end infinite;
}

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

.rotate-90      { transform: rotate(90deg); }
.-rotate-90     { transform: rotate(-90deg); }
.rotate-180     { transform: rotate(180deg); }
.rotate-\[270deg\] { transform: rotate(270deg); }
.scale-95       { transform: scale(0.95); }
.scale-100      { transform: scale(1); }
.scale-105      { transform: scale(1.05); }
.scale-110      { transform: scale(1.1); }
.translate-x-0  { transform: translateX(0); }
.translate-y-0  { transform: translateY(0); }
.-translate-y-px { transform: translateY(-1px); }

/* ============================================================
   OBJECT FIT / CURSOR / MISC
   ============================================================ */

.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-default { cursor: default; }
.cursor-not-allowed { cursor: not-allowed; }
.pointer-events-none { pointer-events: none; }
.select-none    { user-select: none; }
.resize-none    { resize: none; }
.appearance-none { appearance: none; }

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

.divide-y > * + * { border-top-width: 1px; border-style: solid; }
.divide-\[\#847E77\]\/20 > * + * { border-color: rgba(132,126,119,0.20); }

.ring         { box-shadow: 0 0 0 3px rgba(26,26,40,0.25); }
.ring-0       { box-shadow: none; }
.ring-offset-0 { box-shadow: none; }
.outline-none  { outline: none; }
.outline       { outline: 2px solid #1A1A28; }

/* ============================================================
   BACKGROUND MISC
   ============================================================ */

.bg-cover    { background-size: cover; }
.bg-contain  { background-size: contain; }
.bg-center   { background-position: center; }
.bg-top      { background-position: top; }
.bg-no-repeat { background-repeat: no-repeat; }
.bg-clip-text { background-clip: text; -webkit-background-clip: text; }

/* ============================================================
   COMPONENT PATTERNS — Terminal Labels, Numbered Markers, etc.
   ============================================================ */

/* Terminal label: ALL CAPS mono small with tracking */
.label-terminal {
  font-family: 'Courier New', Courier, monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #847E77;
}

/* ASCII divider line */
.divider-ascii {
  font-family: 'Courier New', Courier, monospace;
  font-size: 12px;
  color: #847E77;
  letter-spacing: -0.02em;
  user-select: none;
}

/* Section number marker (01 / 02 / 03) */
.section-number {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 11px;
  color: #847E77;
  letter-spacing: 0.15em;
  font-weight: 700;
  text-transform: uppercase;
}

/* Caption overlay style */
.caption-overlay {
  font-family: 'Courier New', Courier, monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245,240,231,0.85);
  background-color: rgba(13,13,13,0.55);
  padding: 0.25rem 0.5rem;
  display: inline-block;
}

/* Hard shadow card */
.card-hard {
  border: 1px solid #0D0D0D;
  box-shadow: 4px 4px 0px #0D0D0D;
  background-color: #F5F0E7;
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}
.card-hard:hover {
  box-shadow: 6px 6px 0px #0D0D0D;
  transform: translate(-1px, -1px);
}

/* Editorial card */
.card-editorial {
  background-color: #EDE8DF;
  border: 1px solid rgba(132,126,119,0.30);
  padding: 1.5rem;
  transition: border-color 0.2s ease;
}
.card-editorial:hover {
  border-color: #1A1A28;
}

/* CTA button — primary */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #1A1A28;
  color: #F5F0E7;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.875rem 2.5rem;
  border: 1px solid #1A1A28;
  transition: opacity 0.15s ease;
  text-decoration: none;
}
.btn-primary:hover { opacity: 0.88; color: #F5F0E7; }

/* CTA button — outline */
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  color: #0D0D0D;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.875rem 2.5rem;
  border: 1px solid #0D0D0D;
  transition: background-color 0.15s ease, color 0.15s ease;
  text-decoration: none;
}
.btn-outline:hover {
  background-color: #0D0D0D;
  color: #F5F0E7;
}

/* Marquee wrapper */
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 32s linear infinite;
}
.marquee-track:hover {
  animation-play-state: paused;
}

/* Marquee reverse */
.marquee-track-rev {
  display: flex;
  width: max-content;
  animation: marquee-reverse 36s linear infinite;
}

/* FAQ accordion item */
.accordion-item {
  border-bottom: 1px solid rgba(132,126,119,0.30);
}
.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  font-weight: 500;
  font-size: 0.9375rem;
  color: #0D0D0D;
  cursor: pointer;
  background: none;
  border: none;
  text-align: left;
  transition: color 0.15s ease;
}
.accordion-trigger:hover { color: #1A1A28; }
.accordion-content {
  padding-bottom: 1.25rem;
  font-size: 0.875rem;
  color: #847E77;
  line-height: 1.7;
}

/* Image placeholder block */
.img-placeholder {
  background-color: #DDD8CE;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.img-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Progress bar */
.progress-bar {
  height: 2px;
  background-color: rgba(132,126,119,0.20);
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  background-color: #1A1A28;
  transition: width 1.2s ease;
}

/* Stats strip item */
.stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.stat-number {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 48px;
  line-height: 1;
  font-weight: 700;
  color: #0D0D0D;
  letter-spacing: -0.04em;
}
.stat-label {
  font-family: 'Courier New', Courier, monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #847E77;
}

/* Inline code / tag chip */
.chip {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.625rem;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-family: 'Courier New', Courier, monospace;
  border: 1px solid rgba(132,126,119,0.40);
  color: #847E77;
  background: transparent;
}

/* Grid overlay pattern for hero (cyberpunk aesthetic) */
.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(13,13,13,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13,13,13,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

/* Rotated label — vertical text */
.rotate-label {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  font-family: 'Courier New', Courier, monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #847E77;
}

/* Form inputs */
.input-field {
  width: 100%;
  background-color: #F5F0E7;
  border: 1px solid rgba(132,126,119,0.40);
  padding: 0.875rem 1rem;
  font-size: 0.875rem;
  color: #0D0D0D;
  outline: none;
  transition: border-color 0.2s ease;
  font-family: 'Inter Tight', system-ui, sans-serif;
}
.input-field:focus {
  border-color: #1A1A28;
}
.input-field::placeholder {
  color: #A09891;
}

/* ============================================================
   HOVER UTILITIES
   ============================================================ */

.hover\:opacity-80:hover    { opacity: 0.80; }
.hover\:opacity-85:hover    { opacity: 0.85; }
.hover\:opacity-90:hover    { opacity: 0.90; }
.hover\:opacity-100:hover   { opacity: 1; }
.hover\:text-\[\#0D0D0D\]:hover { color: #0D0D0D; }
.hover\:text-\[\#1A1A28\]:hover { color: #1A1A28; }
.hover\:text-\[\#847E77\]:hover { color: #847E77; }
.hover\:text-\[\#F5F0E7\]:hover { color: #F5F0E7; }
.hover\:text-white:hover         { color: #ffffff; }
.hover\:bg-\[\#1A1A28\]:hover    { background-color: #1A1A28; }
.hover\:bg-\[\#0D0D0D\]:hover    { background-color: #0D0D0D; }
.hover\:bg-\[\#EDE8DF\]:hover    { background-color: #EDE8DF; }
.hover\:bg-\[\#F5F0E7\]:hover    { background-color: #F5F0E7; }
.hover\:border-\[\#1A1A28\]:hover { border-color: #1A1A28; }
.hover\:border-\[\#0D0D0D\]:hover { border-color: #0D0D0D; }
.hover\:underline:hover           { text-decoration-line: underline; }
.hover\:shadow-hard:hover         { box-shadow: 4px 4px 0px #0D0D0D; }
.hover\:translate-x-1:hover       { transform: translateX(0.25rem); }
.hover\:scale-105:hover           { transform: scale(1.05); }
.hover\:-translate-y-px:hover     { transform: translateY(-1px); }
.group:hover .group-hover\:text-\[\#1A1A28\] { color: #1A1A28; }
.group:hover .group-hover\:opacity-100 { opacity: 1; }
.group:hover .group-hover\:scale-105 { transform: scale(1.05); }
.group { }

/* ============================================================
   FOCUS UTILITIES
   ============================================================ */

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

/* ============================================================
   RESPONSIVE — md: prefix (min-width: 768px)
   ============================================================ */

@media (min-width: 768px) {
  .md\:block        { display: block; }
  .md\:flex         { display: flex; }
  .md\:grid         { display: grid; }
  .md\:hidden       { display: none; }
  .md\:inline-flex  { display: inline-flex; }
  .md\:inline-block { display: inline-block; }
  .md\:flex-row     { flex-direction: row; }
  .md\:flex-col     { flex-direction: column; }
  .md\:flex-wrap    { flex-wrap: wrap; }
  .md\:items-start  { align-items: flex-start; }
  .md\:items-center { align-items: center; }
  .md\:items-end    { align-items: flex-end; }
  .md\:justify-start    { justify-content: flex-start; }
  .md\:justify-center   { justify-content: center; }
  .md\:justify-end      { justify-content: flex-end; }
  .md\:justify-between  { justify-content: space-between; }
  .md\:col-span-1  { grid-column: span 1 / span 1; }
  .md\:col-span-2  { grid-column: span 2 / span 2; }
  .md\:col-span-3  { grid-column: span 3 / span 3; }
  .md\:col-span-4  { grid-column: span 4 / span 4; }
  .md\:col-span-5  { grid-column: span 5 / span 5; }
  .md\:col-span-6  { grid-column: span 6 / span 6; }
  .md\:col-span-7  { grid-column: span 7 / span 7; }
  .md\:col-span-8  { grid-column: span 8 / span 8; }
  .md\:col-span-12 { grid-column: span 12 / span 12; }
  .md\:grid-cols-1  { grid-template-columns: repeat(1, minmax(0, 1fr)); }
  .md\:grid-cols-2  { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:grid-cols-3  { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .md\:grid-cols-4  { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .md\:grid-cols-5  { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .md\:grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)); }
  .md\:gap-4   { gap: 1rem; }
  .md\:gap-6   { gap: 1.5rem; }
  .md\:gap-8   { gap: 2rem; }
  .md\:gap-10  { gap: 2.5rem; }
  .md\:gap-12  { gap: 3rem; }
  .md\:gap-16  { gap: 4rem; }
  .md\:gap-20  { gap: 5rem; }
  .md\:gap-y-0 { row-gap: 0; }
  .md\:gap-x-16 { column-gap: 4rem; }
  .md\:px-6  { padding-left: 1.5rem; padding-right: 1.5rem; }
  .md\:px-8  { padding-left: 2rem; padding-right: 2rem; }
  .md\:px-10 { padding-left: 2.5rem; padding-right: 2.5rem; }
  .md\:px-12 { padding-left: 3rem; padding-right: 3rem; }
  .md\:py-8  { padding-top: 2rem; padding-bottom: 2rem; }
  .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-0  { padding-top: 0; }
  .md\:pt-8  { padding-top: 2rem; }
  .md\:pt-12 { padding-top: 3rem; }
  .md\:pt-16 { padding-top: 4rem; }
  .md\:pt-20 { padding-top: 5rem; }
  .md\:pt-24 { padding-top: 6rem; }
  .md\:pb-0  { padding-bottom: 0; }
  .md\:pb-8  { padding-bottom: 2rem; }
  .md\:pb-16 { padding-bottom: 4rem; }
  .md\:pl-8  { padding-left: 2rem; }
  .md\:pl-12 { padding-left: 3rem; }
  .md\:pr-8  { padding-right: 2rem; }
  .md\:pr-12 { padding-right: 3rem; }
  .md\:mt-0  { margin-top: 0; }
  .md\:mt-4  { margin-top: 1rem; }
  .md\:mt-8  { margin-top: 2rem; }
  .md\:mb-0  { margin-bottom: 0; }
  .md\:mb-4  { margin-bottom: 1rem; }
  .md\:mb-8  { margin-bottom: 2rem; }
  .md\:mx-0  { margin-left: 0; margin-right: 0; }
  .md\:w-auto  { width: auto; }
  .md\:w-full  { width: 100%; }
  .md\:w-1\/2  { width: 50%; }
  .md\:w-1\/3  { width: 33.333%; }
  .md\:w-2\/3  { width: 66.666%; }
  .md\:w-3\/5  { width: 60%; }
  .md\:w-2\/5  { width: 40%; }
  .md\:w-1\/4  { width: 25%; }
  .md\:w-3\/4  { width: 75%; }
  .md\:max-w-none { max-width: none; }
  .md\:text-sm   { font-size: 0.875rem; line-height: 1.25rem; }
  .md\:text-base { font-size: 1rem; line-height: 1.5rem; }
  .md\:text-lg   { font-size: 1.125rem; line-height: 1.75rem; }
  .md\:text-xl   { font-size: 1.25rem; line-height: 1.75rem; }
  .md\:text-2xl  { font-size: 1.5rem; line-height: 2rem; }
  .md\:text-3xl  { font-size: 1.875rem; line-height: 2.25rem; }
  .md\:text-4xl  { font-size: 2.25rem; line-height: 2.5rem; }
  .md\:text-5xl  { font-size: 3rem; line-height: 1; }
  .md\:text-6xl  { font-size: 3.75rem; line-height: 1; }
  .md\:text-7xl  { font-size: 4.5rem; line-height: 1; }
  .md\:text-\[80px\]  { font-size: 80px; line-height: 0.95; }
  .md\:text-\[96px\]  { font-size: 96px; line-height: 0.9; }
  .md\:text-\[112px\] { font-size: 112px; line-height: 0.88; }
  .md\:text-center  { text-align: center; }
  .md\:text-left    { text-align: left; }
  .md\:text-right   { text-align: right; }
  .md\:text-\[48px\] { font-size: 48px; }
  .md\:text-\[56px\] { font-size: 56px; }
  .md\:text-\[64px\] { font-size: 64px; }
  .md\:font-bold     { font-weight: 700; }
  .md\:inline-block  { display: inline-block; }
  .md\:inline        { display: inline; }
  .md\:aspect-\[21\/9\] { aspect-ratio: 21/9; }
  .md\:aspect-\[16\/9\] { aspect-ratio: 16/9; }
  .md\:items-end   { align-items: flex-end; }
  .md\:self-center { align-self: center; }
  .md\:order-first { order: -9999; }
  .md\:order-last  { order: 9999; }
  .md\:sticky      { position: sticky; }
  .md\:top-8       { top: 2rem; }
  .md\:border-l    { border-left-width: 1px; }
  .md\:border-r    { border-right-width: 1px; }
  .md\:border-0    { border-width: 0; }
  .md\:overflow-hidden { overflow: hidden; }
  .md\:min-h-screen { min-height: 100vh; }
  .md\:min-h-\[500px\] { min-height: 500px; }
  .md\:min-h-\[600px\] { min-height: 600px; }
}

/* ============================================================
   RESPONSIVE — lg: prefix (min-width: 1024px)
   ============================================================ */

@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\:col-span-5  { grid-column: span 5 / span 5; }
  .lg\:col-span-7  { grid-column: span 7 / span 7; }
  .lg\:col-span-8  { grid-column: span 8 / span 8; }
  .lg\:gap-6   { gap: 1.5rem; }
  .lg\:gap-8   { gap: 2rem; }
  .lg\:gap-12  { gap: 3rem; }
  .lg\:gap-16  { gap: 4rem; }
  .lg\:gap-20  { gap: 5rem; }
  .lg\:px-8    { padding-left: 2rem; padding-right: 2rem; }
  .lg\:px-12   { padding-left: 3rem; padding-right: 3rem; }
  .lg\:py-24   { padding-top: 6rem; padding-bottom: 6rem; }
  .lg\:py-32   { padding-top: 8rem; padding-bottom: 8rem; }
  .lg\:pt-24   { padding-top: 6rem; }
  .lg\:pt-32   { padding-top: 8rem; }
  .lg\:pb-24   { padding-bottom: 6rem; }
  .lg\:pl-16   { padding-left: 4rem; }
  .lg\:pr-16   { padding-right: 4rem; }
  .lg\:mt-0    { margin-top: 0; }
  .lg\:text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
  .lg\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
  .lg\:text-5xl { font-size: 3rem; line-height: 1; }
  .lg\:text-6xl { font-size: 3.75rem; line-height: 1; }
  .lg\:text-7xl { font-size: 4.5rem; line-height: 1; }
  .lg\:text-\[96px\]  { font-size: 96px; }
  .lg\:text-\[112px\] { font-size: 112px; }
  .lg\:w-3\/5 { width: 60%; }
  .lg\:w-2\/5 { width: 40%; }
}

/* ============================================================
   RESPONSIVE — xl: prefix (min-width: 1280px)
   ============================================================ */

@media (min-width: 1280px) {
  .xl\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .xl\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .xl\:text-\[128px\] { font-size: 128px; line-height: 0.88; }
  .xl\:text-\[96px\]  { font-size: 96px; }
  .xl\:px-0  { padding-left: 0; padding-right: 0; }
  .xl\:gap-16 { gap: 4rem; }
}

/* ============================================================
   SPACE UTILITIES
   ============================================================ */

.space-y-0 > * + * { margin-top: 0; }
.space-y-1 > * + * { margin-top: 0.25rem; }
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-5 > * + * { margin-top: 1.25rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-8 > * + * { margin-top: 2rem; }
.space-y-10 > * + * { margin-top: 2.5rem; }
.space-y-12 > * + * { margin-top: 3rem; }
.space-y-16 > * + * { margin-top: 4rem; }
.space-x-2 > * + * { margin-left: 0.5rem; }
.space-x-4 > * + * { margin-left: 1rem; }

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

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

/* ============================================================
   PROSE — Long form editorial text
   ============================================================ */

.prose {
  font-family: 'Inter Tight', system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: #0D0D0D;
  max-width: 680px;
}
.prose h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.625rem;
  font-weight: 700;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}
.prose h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}
.prose p {
  margin-bottom: 1.25rem;
  color: #3D3830;
}
.prose p:last-child { margin-bottom: 0; }
.prose ul {
  list-style: none;
  margin-bottom: 1.25rem;
  padding-left: 0;
}
.prose ul li {
  padding-left: 1.25rem;
  position: relative;
  margin-bottom: 0.5rem;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #3D3830;
}
.prose ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: #847E77;
  font-family: 'Courier New', monospace;
}
.prose ol {
  counter-reset: ol-counter;
  padding-left: 0;
  margin-bottom: 1.25rem;
}
.prose ol li {
  counter-increment: ol-counter;
  padding-left: 2rem;
  position: relative;
  margin-bottom: 0.5rem;
  font-size: 0.9375rem;
  line-height: 1.6;
}
.prose ol li::before {
  content: counter(ol-counter, decimal-leading-zero);
  position: absolute;
  left: 0;
  color: #847E77;
  font-family: 'Courier New', monospace;
  font-size: 11px;
  letter-spacing: 0.05em;
  top: 2px;
}
.prose strong {
  font-weight: 600;
  color: #0D0D0D;
}
.prose a {
  color: #1A1A28;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.prose a:hover { opacity: 0.75; }
.prose blockquote {
  border-left: 2px solid #1A1A28;
  padding-left: 1.25rem;
  font-style: italic;
  color: #6B6560;
  margin: 1.5rem 0;
}

/* ============================================================
   NOT-ITALIC UTILITY (for address)
   ============================================================ */

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

/* ============================================================
   MOBILE FIRST — base sm: (min-width: 640px)
   ============================================================ */

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