/* ALDREMON JOURNAL — css/style.css */

@theme {
  --color-bg-primary: #F6F3EF;
  --color-bg-secondary: #EDE8E2;
  --color-ink-primary: #1B1A17;
  --color-ink-muted: #8E8880;
  --color-accent: #4E4840;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
}

/* =========================================================
   BASE RESET
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', sans-serif;
  background-color: #F6F3EF;
  color: #1B1A17;
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
h1, h2, h3, h4, h5, h6 { font-family: 'Space Grotesk', sans-serif; font-weight: 700; line-height: 1.15; }
address { font-style: normal; }
button { cursor: pointer; background: none; border: none; font-family: inherit; }
ul, ol { list-style: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }
:focus-visible { outline: 2px solid #4E4840; outline-offset: 2px; }

/* =========================================================
   KEYFRAMES
   ========================================================= */
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.94); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-32px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes pulseGlow {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}

/* =========================================================
   DISPLAY / VISIBILITY
   ========================================================= */
.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; }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* =========================================================
   POSITION
   ========================================================= */
.static   { position: static; }
.relative { position: relative; }
.absolute { position: absolute; }
.fixed    { position: fixed; }
.sticky   { position: sticky; }
.top-0    { top: 0; }
.top-4    { top: 1rem; }
.top-8    { top: 2rem; }
.bottom-0 { bottom: 0; }
.bottom-4 { bottom: 1rem; }
.left-0   { left: 0; }
.left-1\/2 { left: 50%; }
.right-0  { right: 0; }
.right-4  { right: 1rem; }
.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
   ========================================================= */
.overflow-hidden  { overflow: hidden; }
.overflow-auto    { overflow: auto; }
.overflow-scroll  { overflow: scroll; }
.overflow-visible { overflow: visible; }
.overflow-x-hidden { overflow-x: hidden; }
.overflow-y-auto  { overflow-y: auto; }

/* =========================================================
   FLEXBOX
   ========================================================= */
.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; }
.self-start   { align-self: flex-start; }
.self-center  { align-self: center; }
.self-end     { align-self: flex-end; }
.self-stretch { align-self: stretch; }
.order-1 { order: 1; }
.order-2 { order: 2; }

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

/* =========================================================
   GAP
   ========================================================= */
.gap-0  { gap: 0; }
.gap-1  { gap: 0.25rem; }
.gap-2  { gap: 0.5rem; }
.gap-3  { gap: 0.75rem; }
.gap-4  { gap: 1rem; }
.gap-5  { gap: 1.25rem; }
.gap-6  { gap: 1.5rem; }
.gap-8  { gap: 2rem; }
.gap-10 { gap: 2.5rem; }
.gap-12 { gap: 3rem; }
.gap-14 { gap: 3.5rem; }
.gap-16 { gap: 4rem; }
.gap-20 { gap: 5rem; }
.gap-24 { gap: 6rem; }
.gap-x-2  { column-gap: 0.5rem; }
.gap-x-4  { column-gap: 1rem; }
.gap-x-6  { column-gap: 1.5rem; }
.gap-x-8  { column-gap: 2rem; }
.gap-y-2  { row-gap: 0.5rem; }
.gap-y-4  { row-gap: 1rem; }
.gap-y-6  { row-gap: 1.5rem; }
.gap-y-8  { row-gap: 2rem; }

/* =========================================================
   SIZING — WIDTH
   ========================================================= */
.w-auto   { width: auto; }
.w-full   { width: 100%; }
.w-screen { width: 100vw; }
.w-1\/2   { width: 50%; }
.w-1\/3   { width: 33.333333%; }
.w-2\/3   { width: 66.666667%; }
.w-1\/4   { width: 25%; }
.w-3\/4   { width: 75%; }
.w-4      { width: 1rem; }
.w-5      { width: 1.25rem; }
.w-6      { width: 1.5rem; }
.w-8      { width: 2rem; }
.w-10     { width: 2.5rem; }
.w-12     { width: 3rem; }
.w-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; }
.min-w-0  { min-width: 0; }
.min-w-full { min-width: 100%; }
.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; }
.w-\[calc\(100\%-1\.5rem\)\] { width: calc(100% - 1.5rem); }
.w-\[calc\(100\%-2rem\)\]    { width: calc(100% - 2rem); }

/* =========================================================
   SIZING — HEIGHT
   ========================================================= */
.h-auto   { height: auto; }
.h-full   { height: 100%; }
.h-screen { height: 100vh; }
.h-4      { height: 1rem; }
.h-5      { height: 1.25rem; }
.h-6      { height: 1.5rem; }
.h-8      { height: 2rem; }
.h-10     { height: 2.5rem; }
.h-12     { height: 3rem; }
.h-16     { height: 4rem; }
.h-20     { height: 5rem; }
.h-24     { height: 6rem; }
.h-32     { height: 8rem; }
.h-40     { height: 10rem; }
.h-48     { height: 12rem; }
.h-64     { height: 16rem; }
.h-80     { height: 20rem; }
.h-96     { height: 24rem; }
.min-h-0       { min-height: 0; }
.min-h-screen  { min-height: 100vh; }
.min-h-\[60vh\] { min-height: 60vh; }
.min-h-\[70vh\] { min-height: 70vh; }
.min-h-\[80vh\] { min-height: 80vh; }
.max-h-screen  { max-height: 100vh; }
.max-h-96      { max-height: 24rem; }

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

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

/* =========================================================
   MARGIN
   ========================================================= */
.m-0    { margin: 0; }
.m-auto { margin: auto; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mx-0   { margin-left: 0; margin-right: 0; }
.mx-4   { margin-left: 1rem; margin-right: 1rem; }
.my-0   { margin-top: 0; margin-bottom: 0; }
.my-4   { margin-top: 1rem; margin-bottom: 1rem; }
.my-8   { margin-top: 2rem; margin-bottom: 2rem; }
.my-12  { margin-top: 3rem; margin-bottom: 3rem; }
.mt-0   { margin-top: 0; }
.mt-1   { margin-top: 0.25rem; }
.mt-2   { margin-top: 0.5rem; }
.mt-3   { margin-top: 0.75rem; }
.mt-4   { margin-top: 1rem; }
.mt-6   { margin-top: 1.5rem; }
.mt-8   { margin-top: 2rem; }
.mt-10  { margin-top: 2.5rem; }
.mt-12  { margin-top: 3rem; }
.mt-16  { margin-top: 4rem; }
.mt-20  { margin-top: 5rem; }
.mt-24  { margin-top: 6rem; }
.mb-0   { margin-bottom: 0; }
.mb-1   { margin-bottom: 0.25rem; }
.mb-2   { margin-bottom: 0.5rem; }
.mb-3   { margin-bottom: 0.75rem; }
.mb-4   { margin-bottom: 1rem; }
.mb-5   { margin-bottom: 1.25rem; }
.mb-6   { margin-bottom: 1.5rem; }
.mb-8   { margin-bottom: 2rem; }
.mb-10  { margin-bottom: 2.5rem; }
.mb-12  { margin-bottom: 3rem; }
.mb-16  { margin-bottom: 4rem; }
.mb-20  { margin-bottom: 5rem; }
.mb-24  { margin-bottom: 6rem; }
.ml-0   { margin-left: 0; }
.ml-2   { margin-left: 0.5rem; }
.ml-3   { margin-left: 0.75rem; }
.ml-4   { margin-left: 1rem; }
.ml-auto { margin-left: auto; }
.mr-2   { margin-right: 0.5rem; }
.mr-3   { margin-right: 0.75rem; }
.mr-4   { margin-right: 1rem; }
.mr-auto { margin-right: auto; }
.-mt-4  { margin-top: -1rem; }
.-mt-8  { margin-top: -2rem; }
.-mt-12 { margin-top: -3rem; }
.-mb-4  { margin-bottom: -1rem; }
.space-y-1 > * + * { margin-top: 0.25rem; }
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-5 > * + * { margin-top: 1.25rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-8 > * + * { margin-top: 2rem; }
.space-y-10 > * + * { margin-top: 2.5rem; }
.space-y-12 > * + * { margin-top: 3rem; }
.space-x-2 > * + * { margin-left: 0.5rem; }
.space-x-4 > * + * { margin-left: 1rem; }

/* =========================================================
   TYPOGRAPHY — SIZE
   ========================================================= */
.text-xs   { font-size: 0.75rem; line-height: 1rem; }
.text-sm   { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-lg   { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl   { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl  { font-size: 1.5rem; line-height: 2rem; }
.text-3xl  { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl  { font-size: 2.25rem; line-height: 2.5rem; }
.text-5xl  { font-size: 3rem; line-height: 1; }
.text-6xl  { font-size: 3.75rem; line-height: 1; }
.text-7xl  { font-size: 4.5rem; line-height: 1; }
.text-8xl  { font-size: 6rem; line-height: 1; }
.text-9xl  { font-size: 8rem; line-height: 1; }
.text-\[0\.65rem\] { font-size: 0.65rem; }
.text-\[0\.7rem\]  { font-size: 0.7rem; }
.text-\[1\.1rem\]  { font-size: 1.1rem; }
.text-\[1\.3rem\]  { font-size: 1.3rem; }
.text-\[2\.5rem\]  { font-size: 2.5rem; }
.text-\[3\.5rem\]  { font-size: 3.5rem; }
.text-\[4\.5rem\]  { font-size: 4.5rem; }
.text-\[5rem\]     { font-size: 5rem; }
.text-\[5\.5rem\]  { font-size: 5.5rem; }
.text-\[6\.5rem\]  { font-size: 6.5rem; }
.text-\[7rem\]     { font-size: 7rem; }
.text-\[8rem\]     { font-size: 8rem; }
.text-\[clamp\(2rem\,5vw\,4\.5rem\)\] { font-size: clamp(2rem, 5vw, 4.5rem); }
.text-\[clamp\(2\.5rem\,6vw\,6rem\)\] { font-size: clamp(2.5rem, 6vw, 6rem); }
.text-\[clamp\(3rem\,8vw\,7rem\)\]    { font-size: clamp(3rem, 8vw, 7rem); }

/* =========================================================
   TYPOGRAPHY — FONT FAMILY
   ========================================================= */
.font-display { font-family: 'Space Grotesk', sans-serif; }
.font-body    { font-family: 'Inter', sans-serif; }
.font-mono    { font-family: 'Space Mono', 'Courier New', monospace; }
.font-sans    { font-family: 'Inter', sans-serif; }
.font-serif   { font-family: Georgia, serif; }

/* =========================================================
   TYPOGRAPHY — WEIGHT
   ========================================================= */
.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; }

/* =========================================================
   TYPOGRAPHY — LINE HEIGHT
   ========================================================= */
.leading-none    { line-height: 1; }
.leading-tight   { line-height: 1.25; }
.leading-snug    { line-height: 1.375; }
.leading-normal  { line-height: 1.5; }
.leading-relaxed { line-height: 1.625; }
.leading-loose   { line-height: 2; }
.leading-4  { line-height: 1rem; }
.leading-5  { line-height: 1.25rem; }
.leading-6  { line-height: 1.5rem; }
.leading-7  { line-height: 1.75rem; }
.leading-8  { line-height: 2rem; }
.leading-10 { line-height: 2.5rem; }

/* =========================================================
   TYPOGRAPHY — LETTER SPACING
   ========================================================= */
.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\.25em\] { letter-spacing: 0.25em; }
.tracking-\[0\.3em\]  { letter-spacing: 0.3em; }

/* =========================================================
   TYPOGRAPHY — ALIGNMENT / DECORATION / TRANSFORM
   ========================================================= */
.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: underline; }
.no-underline    { text-decoration: none; }
.line-through    { text-decoration: line-through; }
.decoration-1    { text-decoration-thickness: 1px; }
.underline-offset-2 { text-underline-offset: 2px; }
.underline-offset-4 { text-underline-offset: 4px; }
.truncate     { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.whitespace-nowrap  { white-space: nowrap; }
.whitespace-pre-wrap { white-space: pre-wrap; }
.break-words  { overflow-wrap: break-word; }
.tabular-nums { font-variant-numeric: tabular-nums; }

/* =========================================================
   LINE CLAMP
   ========================================================= */
.line-clamp-1 { display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden; }
.line-clamp-2 { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.line-clamp-3 { display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.line-clamp-4 { display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden; }

/* =========================================================
   BACKGROUND COLORS
   ========================================================= */
.bg-transparent          { background-color: transparent; }
.bg-white                { background-color: #ffffff; }
.bg-black                { background-color: #000000; }
.bg-\[\#F6F3EF\]         { background-color: #F6F3EF; }
.bg-\[\#EDE8E2\]         { background-color: #EDE8E2; }
.bg-\[\#1B1A17\]         { background-color: #1B1A17; }
.bg-\[\#4E4840\]         { background-color: #4E4840; }
.bg-\[\#8E8880\]         { background-color: #8E8880; }
.bg-\[\#2A2821\]         { background-color: #2A2821; }
.bg-\[\#3A3630\]         { background-color: #3A3630; }
.bg-\[\#D8D2C8\]         { background-color: #D8D2C8; }
.bg-\[\#F0EDE8\]         { background-color: #F0EDE8; }
.bg-\[\#E8E3DC\]         { background-color: #E8E3DC; }
.bg-\[\#2E2B24\]         { background-color: #2E2B24; }

/* =========================================================
   TEXT COLORS
   ========================================================= */
.text-white              { color: #ffffff; }
.text-black              { color: #000000; }
.text-\[\#F6F3EF\]       { color: #F6F3EF; }
.text-\[\#EDE8E2\]       { color: #EDE8E2; }
.text-\[\#1B1A17\]       { color: #1B1A17; }
.text-\[\#4E4840\]       { color: #4E4840; }
.text-\[\#8E8880\]       { color: #8E8880; }
.text-\[\#2A2821\]       { color: #2A2821; }
.text-\[\#3A3630\]       { color: #3A3630; }
.text-\[\#D8D2C8\]       { color: #D8D2C8; }
.text-\[\#E8E3DC\]       { color: #E8E3DC; }
.text-\[\#F0EDE8\]       { color: #F0EDE8; }
.text-\[\#C4BDB2\]       { color: #C4BDB2; }

/* =========================================================
   BORDER COLORS
   ========================================================= */
.border-\[\#1B1A17\]      { border-color: #1B1A17; }
.border-\[\#4E4840\]      { border-color: #4E4840; }
.border-\[\#8E8880\]      { border-color: #8E8880; }
.border-\[\#EDE8E2\]      { border-color: #EDE8E2; }
.border-\[\#F6F3EF\]      { border-color: #F6F3EF; }
.border-transparent       { border-color: transparent; }
.border-white             { border-color: #ffffff; }

/* Opacity modifiers for borders */
.border-\[\#8E8880\]\/10  { border-color: rgba(142, 136, 128, 0.10); }
.border-\[\#8E8880\]\/20  { border-color: rgba(142, 136, 128, 0.20); }
.border-\[\#8E8880\]\/30  { border-color: rgba(142, 136, 128, 0.30); }
.border-\[\#8E8880\]\/40  { border-color: rgba(142, 136, 128, 0.40); }
.border-\[\#1B1A17\]\/10  { border-color: rgba(27, 26, 23, 0.10); }
.border-\[\#1B1A17\]\/20  { border-color: rgba(27, 26, 23, 0.20); }
.border-\[\#4E4840\]\/20  { border-color: rgba(78, 72, 64, 0.20); }
.border-\[\#4E4840\]\/30  { border-color: rgba(78, 72, 64, 0.30); }
.border-\[\#4E4840\]\/50  { border-color: rgba(78, 72, 64, 0.50); }

/* =========================================================
   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-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-t-2 { border-top-width: 2px; border-top-style: solid; }
.border-b-2 { border-bottom-width: 2px; border-bottom-style: solid; }
.border-l-2 { border-left-width: 2px; border-left-style: solid; }
.border-l-4 { border-left-width: 4px; border-left-style: solid; }
.divide-y > * + * { border-top-width: 1px; border-top-style: solid; }
.divide-\[\#8E8880\]\/20 > * + * { border-color: rgba(142, 136, 128, 0.20); }

/* =========================================================
   BORDER RADIUS
   ========================================================= */
.rounded-none { border-radius: 0; }
.rounded-sm   { border-radius: 0.125rem; }
.rounded      { border-radius: 0.25rem; }
.rounded-md   { border-radius: 0.375rem; }
.rounded-lg   { border-radius: 0.5rem; }
.rounded-xl   { border-radius: 0.75rem; }
.rounded-2xl  { border-radius: 1rem; }
.rounded-3xl  { border-radius: 1.5rem; }
.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; }

/* =========================================================
   SHADOWS
   ========================================================= */
.shadow-none { box-shadow: none; }
.shadow-sm   { box-shadow: 0 1px 2px 0 rgba(27, 26, 23, 0.05); }
.shadow      { box-shadow: 0 1px 3px 0 rgba(27, 26, 23, 0.10), 0 1px 2px -1px rgba(27, 26, 23, 0.10); }
.shadow-md   { box-shadow: 0 4px 6px -1px rgba(27, 26, 23, 0.10), 0 2px 4px -2px rgba(27, 26, 23, 0.10); }
.shadow-lg   { box-shadow: 0 10px 15px -3px rgba(27, 26, 23, 0.10), 0 4px 6px -4px rgba(27, 26, 23, 0.10); }
.shadow-xl   { box-shadow: 0 20px 25px -5px rgba(27, 26, 23, 0.12), 0 8px 10px -6px rgba(27, 26, 23, 0.12); }
.shadow-2xl  { box-shadow: 0 25px 50px -12px rgba(27, 26, 23, 0.25); }
.shadow-inner { box-shadow: inset 0 2px 4px 0 rgba(27, 26, 23, 0.05); }
.shadow-\[4px_4px_0px_\#1B1A17\]      { box-shadow: 4px 4px 0px #1B1A17; }
.shadow-\[6px_6px_0px_\#1B1A17\]      { box-shadow: 6px 6px 0px #1B1A17; }
.shadow-\[8px_8px_0px_\#1B1A17\]      { box-shadow: 8px 8px 0px #1B1A17; }
.shadow-\[2px_2px_0px_\#4E4840\]      { box-shadow: 2px 2px 0px #4E4840; }
.shadow-\[4px_4px_0px_\#4E4840\]      { box-shadow: 4px 4px 0px #4E4840; }
.shadow-\[0_2px_20px_rgba\(27\,26\,23\,0\.08\)\] { box-shadow: 0 2px 20px rgba(27, 26, 23, 0.08); }
.shadow-\[0_4px_40px_rgba\(27\,26\,23\,0\.12\)\] { box-shadow: 0 4px 40px rgba(27, 26, 23, 0.12); }

/* =========================================================
   OPACITY
   ========================================================= */
.opacity-0    { opacity: 0; }
.opacity-20   { opacity: 0.20; }
.opacity-30   { opacity: 0.30; }
.opacity-40   { opacity: 0.40; }
.opacity-50   { opacity: 0.50; }
.opacity-60   { opacity: 0.60; }
.opacity-70   { opacity: 0.70; }
.opacity-80   { opacity: 0.80; }
.opacity-90   { opacity: 0.90; }
.opacity-100  { opacity: 1; }

/* =========================================================
   BLUR / FILTER
   ========================================================= */
.blur-sm        { filter: blur(4px); }
.blur           { filter: blur(8px); }
.blur-md        { filter: blur(12px); }
.blur-lg        { filter: blur(16px); }
.blur-xl        { filter: blur(24px); }
.blur-2xl       { filter: blur(40px); }
.blur-none      { filter: none; }
.backdrop-blur-sm { backdrop-filter: blur(4px); }
.backdrop-blur    { backdrop-filter: blur(8px); }
.backdrop-blur-md { backdrop-filter: blur(12px); }
.backdrop-blur-lg { backdrop-filter: blur(16px); }
.backdrop-blur-xl { backdrop-filter: blur(24px); }

/* =========================================================
   TRANSFORMS
   ========================================================= */
.transform   { transform: translateX(var(--tw-translate-x, 0)) translateY(var(--tw-translate-y, 0)) rotate(var(--tw-rotate, 0)) scaleX(var(--tw-scale-x, 1)) scaleY(var(--tw-scale-y, 1)); }
.translate-x-0  { transform: translateX(0); }
.translate-y-0  { transform: translateY(0); }
.-translate-x-1\/2 { transform: translateX(-50%); }
.-translate-x-full { transform: translateX(-100%); }
.-translate-y-1\/2 { transform: translateY(-50%); }
.translate-y-2  { transform: translateY(0.5rem); }
.translate-y-4  { transform: translateY(1rem); }
.-translate-y-2 { transform: translateY(-0.5rem); }
.-translate-y-4 { transform: translateY(-1rem); }
.rotate-0       { transform: rotate(0deg); }
.rotate-45      { transform: rotate(45deg); }
.rotate-90      { transform: rotate(90deg); }
.rotate-180     { transform: rotate(180deg); }
.-rotate-90     { transform: rotate(-90deg); }
.-rotate-45     { transform: rotate(-45deg); }
.-rotate-3      { transform: rotate(-3deg); }
.rotate-3       { transform: rotate(3deg); }
.scale-95       { transform: scale(0.95); }
.scale-100      { transform: scale(1); }
.scale-105      { transform: scale(1.05); }
.scale-110      { transform: scale(1.10); }

/* =========================================================
   TRANSITIONS
   ========================================================= */
.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, text-decoration-color, fill, stroke; 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; }
.transition-shadow     { transition-property: box-shadow; transition-timing-function: cubic-bezier(0.4,0,0.2,1); transition-duration: 150ms; }
.duration-75   { transition-duration: 75ms; }
.duration-100  { transition-duration: 100ms; }
.duration-150  { transition-duration: 150ms; }
.duration-200  { transition-duration: 200ms; }
.duration-300  { transition-duration: 300ms; }
.duration-500  { transition-duration: 500ms; }
.duration-700  { transition-duration: 700ms; }
.duration-1000 { transition-duration: 1000ms; }
.ease-linear    { transition-timing-function: linear; }
.ease-in        { transition-timing-function: cubic-bezier(0.4,0,1,1); }
.ease-out       { transition-timing-function: cubic-bezier(0,0,0.2,1); }
.ease-in-out    { transition-timing-function: cubic-bezier(0.4,0,0.2,1); }

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

/* =========================================================
   CURSOR
   ========================================================= */
.cursor-pointer  { cursor: pointer; }
.cursor-default  { cursor: default; }
.cursor-not-allowed { cursor: not-allowed; }

/* =========================================================
   POINTER EVENTS
   ========================================================= */
.pointer-events-none { pointer-events: none; }
.pointer-events-auto { pointer-events: auto; }

/* =========================================================
   USER SELECT
   ========================================================= */
.select-none { user-select: none; }
.select-text { user-select: text; }
.select-all  { user-select: all; }

/* =========================================================
   APPEARANCE
   ========================================================= */
.appearance-none { appearance: none; -webkit-appearance: none; }
.outline-none    { outline: none; }

/* =========================================================
   RESIZE
   ========================================================= */
.resize-none { resize: none; }
.resize      { resize: both; }

/* =========================================================
   MARQUEE COMPONENT
   ========================================================= */
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
  gap: 0;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-wrapper {
  overflow: hidden;
  white-space: nowrap;
  display: flex;
}

/* =========================================================
   ANIMATION UTILITIES
   ========================================================= */
.animate-marquee    { animation: marquee 28s linear infinite; }
.animate-marquee-slow { animation: marquee 40s linear infinite; }
.animate-fade-in    { animation: fadeIn 0.6s ease both; }
.animate-fade-in-up { animation: fadeInUp 0.7s ease both; }
.animate-scale-in   { animation: scaleIn 0.5s ease both; }
.animate-pulse-glow { animation: pulseGlow 2s ease-in-out infinite; }
.animation-delay-100 { animation-delay: 100ms; }
.animation-delay-200 { animation-delay: 200ms; }
.animation-delay-300 { animation-delay: 300ms; }
.animation-delay-400 { animation-delay: 400ms; }
.animation-delay-500 { animation-delay: 500ms; }

/* =========================================================
   HOVER STATES
   ========================================================= */
.hover\:bg-\[\#4E4840\]:hover         { background-color: #4E4840; }
.hover\:bg-\[\#1B1A17\]:hover         { background-color: #1B1A17; }
.hover\:bg-\[\#EDE8E2\]:hover         { background-color: #EDE8E2; }
.hover\:bg-\[\#F0EDE8\]:hover         { background-color: #F0EDE8; }
.hover\:text-\[\#4E4840\]:hover       { color: #4E4840; }
.hover\:text-\[\#1B1A17\]:hover       { color: #1B1A17; }
.hover\:text-\[\#F6F3EF\]:hover       { color: #F6F3EF; }
.hover\:text-\[\#8E8880\]:hover       { color: #8E8880; }
.hover\:underline:hover               { text-decoration: underline; }
.hover\:no-underline:hover            { text-decoration: none; }
.hover\:opacity-80:hover              { opacity: 0.80; }
.hover\:opacity-90:hover              { opacity: 0.90; }
.hover\:opacity-100:hover             { opacity: 1; }
.hover\:scale-105:hover               { transform: scale(1.05); }
.hover\:scale-\[1\.02\]:hover         { transform: scale(1.02); }
.hover\:-translate-y-1:hover          { transform: translateY(-0.25rem); }
.hover\:shadow-xl:hover               { box-shadow: 0 20px 25px -5px rgba(27,26,23,0.12), 0 8px 10px -6px rgba(27,26,23,0.12); }
.hover\:shadow-\[6px_6px_0px_\#1B1A17\]:hover { box-shadow: 6px 6px 0px #1B1A17; }
.hover\:border-\[\#4E4840\]:hover     { border-color: #4E4840; }
.hover\:border-\[\#1B1A17\]:hover     { border-color: #1B1A17; }

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

/* =========================================================
   GROUP HOVER
   ========================================================= */
.group:hover .group-hover\:scale-105  { transform: scale(1.05); }
.group:hover .group-hover\:opacity-100 { opacity: 1; }
.group:hover .group-hover\:underline  { text-decoration: underline; }
.group:hover .group-hover\:translate-x-1 { transform: translateX(0.25rem); }

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

/* =========================================================
   MODERN SPORT DESIGN COMPONENTS
   ========================================================= */

/* Stat overlay badge */
.stat-overlay {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  background-color: #1B1A17;
  color: #F6F3EF;
  padding: 1rem 1.25rem;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
}

/* Number section marker */
.section-marker {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 5rem;
  font-weight: 700;
  line-height: 1;
  color: rgba(142, 136, 128, 0.18);
  user-select: none;
  letter-spacing: -0.04em;
}

/* Mono terminal label */
.mono-label {
  font-family: 'Space Mono', 'Courier New', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #8E8880;
}

/* Hard offset card */
.card-offset {
  border: 1px solid #1B1A17;
  transition: box-shadow 200ms ease, transform 200ms ease;
}
.card-offset:hover {
  box-shadow: 4px 4px 0px #1B1A17;
  transform: translate(-2px, -2px);
}

/* Diagonal strip */
.diagonal-strip {
  position: relative;
  overflow: hidden;
}
.diagonal-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(165deg, #1B1A17 50%, transparent 50%);
  pointer-events: none;
}

/* Bento grid card */
.bento-card {
  background-color: #EDE8E2;
  border: 1px solid rgba(142, 136, 128, 0.2);
  overflow: hidden;
  transition: box-shadow 250ms ease;
}
.bento-card:hover {
  box-shadow: 0 8px 32px rgba(27, 26, 23, 0.12);
}

/* Progress bar */
.progress-bar {
  height: 3px;
  background-color: #4E4840;
  transform-origin: left;
}

/* Reading time badge */
.reading-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8E8880;
  font-family: 'Space Mono', monospace;
}

/* Article category tag */
.category-tag {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #4E4840;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}

/* Article body typography */
.prose-custom h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: #1B1A17;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.prose-custom h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: #1B1A17;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}
.prose-custom p {
  font-family: 'Inter', sans-serif;
  font-size: 1.0625rem;
  line-height: 1.75;
  color: #1B1A17;
  margin-bottom: 1.25rem;
}
.prose-custom ul {
  list-style: none;
  margin-bottom: 1.25rem;
  padding-left: 0;
}
.prose-custom ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 1rem;
  line-height: 1.7;
  color: #1B1A17;
}
.prose-custom ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: #4E4840;
  font-weight: 700;
}
.prose-custom ol {
  counter-reset: item;
  padding-left: 0;
  margin-bottom: 1.25rem;
}
.prose-custom ol li {
  display: block;
  position: relative;
  padding-left: 2.25rem;
  margin-bottom: 0.75rem;
  font-size: 1rem;
  line-height: 1.7;
  color: #1B1A17;
}
.prose-custom ol li::before {
  content: counter(item);
  counter-increment: item;
  position: absolute;
  left: 0;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  color: #4E4840;
  width: 1.75rem;
  height: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #4E4840;
  top: 0.1rem;
}
.prose-custom blockquote {
  border-left: 3px solid #4E4840;
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  background-color: #EDE8E2;
  font-style: italic;
  font-size: 1.125rem;
  line-height: 1.7;
  color: #2A2821;
}
.prose-custom strong {
  font-weight: 700;
  color: #1B1A17;
}
.prose-custom a {
  color: #4E4840;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.prose-custom a:hover {
  color: #1B1A17;
}

/* Recipe card */
.recipe-card {
  background-color: #EDE8E2;
  border: 1px solid rgba(78, 72, 64, 0.25);
  padding: 2rem;
}
.recipe-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: #1B1A17;
  letter-spacing: -0.02em;
}
.recipe-card ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1.5rem;
}
.recipe-card ul li {
  display: flex;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(142, 136, 128, 0.2);
  font-size: 0.9375rem;
  color: #1B1A17;
}
.recipe-card ul li span:first-child {
  font-weight: 600;
  min-width: 7rem;
  color: #4E4840;
}
.recipe-steps ol {
  counter-reset: step;
  padding-left: 0;
}
.recipe-steps ol li {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
  align-items: flex-start;
}
.recipe-steps ol li::before {
  content: counter(step);
  counter-increment: step;
  min-width: 2rem;
  height: 2rem;
  background-color: #4E4840;
  color: #F6F3EF;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

/* FAQ accordion */
.faq-item {
  border-bottom: 1px solid rgba(142, 136, 128, 0.2);
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  cursor: pointer;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #1B1A17;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
}
.faq-question i {
  color: #4E4840;
  transition: transform 200ms ease;
  flex-shrink: 0;
  margin-left: 1rem;
}
.faq-question[aria-expanded="true"] i {
  transform: rotate(180deg);
}
.faq-answer {
  padding-bottom: 1.25rem;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #8E8880;
}

/* Author bio card */
.author-card {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem;
  background-color: #EDE8E2;
  border-left: 3px solid #4E4840;
}
.author-card img {
  width: 5rem;
  height: 5rem;
  object-fit: cover;
  flex-shrink: 0;
}

/* Stats number */
.stat-number {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 3.5rem;
  line-height: 1;
  letter-spacing: -0.04em;
  color: #1B1A17;
}

/* Disclosure block */
.disclosure-block {
  background-color: #EDE8E2;
  border-left: 3px solid rgba(78, 72, 64, 0.4);
  padding: 1.25rem 1.5rem;
  font-size: 0.875rem;
  line-height: 1.7;
  color: #8E8880;
}

/* Form inputs */
.form-input {
  width: 100%;
  background-color: #F6F3EF;
  border: 1px solid rgba(142, 136, 128, 0.3);
  padding: 0.875rem 1rem;
  font-size: 0.9375rem;
  color: #1B1A17;
  outline: none;
  transition: border-color 150ms ease;
  -webkit-appearance: none;
  border-radius: 0;
}
.form-input:focus {
  border-color: #4E4840;
}
.form-input::placeholder {
  color: rgba(142, 136, 128, 0.6);
}

/* Styled button */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: #1B1A17;
  color: #F6F3EF;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.875rem 2rem;
  border: 1px solid #1B1A17;
  cursor: pointer;
  transition: background-color 150ms ease, color 150ms ease;
}
.btn-primary:hover {
  background-color: #4E4840;
  border-color: #4E4840;
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: transparent;
  color: #1B1A17;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.875rem 2rem;
  border: 1px solid #1B1A17;
  cursor: pointer;
  transition: background-color 150ms ease, color 150ms ease;
}
.btn-outline:hover {
  background-color: #1B1A17;
  color: #F6F3EF;
}

/* =========================================================
   RESPONSIVE — SM (640px+)
   ========================================================= */
@media (min-width: 640px) {
  .sm\:block         { display: block; }
  .sm\:flex          { display: flex; }
  .sm\:grid          { display: grid; }
  .sm\:hidden        { display: none; }
  .sm\:flex-row      { flex-direction: row; }
  .sm\:flex-col      { flex-direction: column; }
  .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\:col-span-2    { grid-column: span 2 / span 2; }
  .sm\:gap-6         { gap: 1.5rem; }
  .sm\:gap-8         { gap: 2rem; }
  .sm\:text-4xl      { font-size: 2.25rem; line-height: 2.5rem; }
  .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; }
  .sm\:px-8          { padding-left: 2rem; padding-right: 2rem; }
  .sm\:py-12         { padding-top: 3rem; padding-bottom: 3rem; }
  .sm\:mt-0          { margin-top: 0; }
  .sm\:justify-end   { justify-content: flex-end; }
  .sm\:items-center  { align-items: center; }
}

/* =========================================================
   RESPONSIVE — MD (768px+)
   ========================================================= */
@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\:flex-row        { flex-direction: row; }
  .md\:flex-col        { flex-direction: column; }
  .md\:flex-nowrap     { flex-wrap: nowrap; }
  .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\:items-center    { align-items: center; }
  .md\:items-start     { align-items: flex-start; }
  .md\:items-end       { align-items: flex-end; }
  .md\:justify-between { justify-content: space-between; }
  .md\:justify-end     { justify-content: flex-end; }
  .md\:justify-start   { justify-content: flex-start; }
  .md\:self-start      { align-self: flex-start; }
  .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-24          { gap: 6rem; }
  .md\:text-sm         { font-size: 0.875rem; }
  .md\:text-base       { font-size: 1rem; }
  .md\:text-lg         { font-size: 1.125rem; }
  .md\:text-xl         { font-size: 1.25rem; }
  .md\:text-2xl        { font-size: 1.5rem; }
  .md\:text-3xl        { font-size: 1.875rem; }
  .md\:text-4xl        { font-size: 2.25rem; }
  .md\:text-5xl        { font-size: 3rem; }
  .md\:text-6xl        { font-size: 3.75rem; }
  .md\:text-7xl        { font-size: 4.5rem; }
  .md\:text-8xl        { font-size: 6rem; }
  .md\:text-\[5rem\]   { font-size: 5rem; }
  .md\:text-\[6rem\]   { font-size: 6rem; }
  .md\:text-\[7rem\]   { font-size: 7rem; }
  .md\:text-\[8rem\]   { font-size: 8rem; }
  .md\:px-6            { padding-left: 1.5rem; padding-right: 1.5rem; }
  .md\:px-8            { padding-left: 2rem; padding-right: 2rem; }
  .md\:px-12           { padding-left: 3rem; padding-right: 3rem; }
  .md\:py-8            { padding-top: 2rem; padding-bottom: 2rem; }
  .md\:py-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-16           { padding-top: 4rem; }
  .md\:pb-0            { padding-bottom: 0; }
  .md\:pb-8            { padding-bottom: 2rem; }
  .md\:pl-8            { padding-left: 2rem; }
  .md\:pl-12           { padding-left: 3rem; }
  .md\:pr-8            { padding-right: 2rem; }
  .md\:mt-0            { margin-top: 0; }
  .md\:mt-4            { margin-top: 1rem; }
  .md\:mt-8            { margin-top: 2rem; }
  .md\:mt-24           { margin-top: 6rem; }
  .md\:mb-0            { margin-bottom: 0; }
  .md\:ml-auto         { margin-left: auto; }
  .md\:max-w-xl        { max-width: 36rem; }
  .md\:max-w-2xl       { max-width: 42rem; }
  .md\:max-w-3xl       { max-width: 48rem; }
  .md\:max-w-4xl       { max-width: 56rem; }
  .md\:w-auto          { width: auto; }
  .md\:w-1\/2          { width: 50%; }
  .md\:w-2\/3          { width: 66.666667%; }
  .md\:w-full          { width: 100%; }
  .md\:aspect-\[21\/9\] { aspect-ratio: 21 / 9; }
  .md\:aspect-\[16\/9\] { aspect-ratio: 16 / 9; }
  .md\:min-h-\[60vh\]  { min-height: 60vh; }
  .md\:min-h-\[70vh\]  { min-height: 70vh; }
  .md\:order-1         { order: 1; }
  .md\:order-2         { order: 2; }
  .md\:flex-row-reverse { flex-direction: row-reverse; }
}

/* =========================================================
   RESPONSIVE — LG (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\:row-span-2     { grid-row: span 2 / span 2; }
  .lg\:text-4xl       { font-size: 2.25rem; }
  .lg\:text-5xl       { font-size: 3rem; }
  .lg\:text-6xl       { font-size: 3.75rem; }
  .lg\:text-7xl       { font-size: 4.5rem; }
  .lg\:text-8xl       { font-size: 6rem; }
  .lg\:text-9xl       { font-size: 8rem; }
  .lg\:text-\[7rem\]  { font-size: 7rem; }
  .lg\:text-\[8rem\]  { font-size: 8rem; }
  .lg\:text-\[9rem\]  { font-size: 9rem; }
  .lg\:text-\[10rem\] { font-size: 10rem; }
  .lg\:gap-12         { gap: 3rem; }
  .lg\:gap-16         { gap: 4rem; }
  .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\:pl-16          { padding-left: 4rem; }
  .lg\:pr-16          { padding-right: 4rem; }
  .lg\:mt-0           { margin-top: 0; }
  .lg\:max-w-2xl      { max-width: 42rem; }
  .lg\:max-w-3xl      { max-width: 48rem; }
  .lg\:items-center   { align-items: center; }
}

/* =========================================================
   RESPONSIVE — XL (1280px+)
   ========================================================= */
@media (min-width: 1280px) {
  .xl\:block          { display: block; }
  .xl\:flex           { display: flex; }
  .xl\:grid-cols-4    { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .xl\:grid-cols-5    { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .xl\:text-8xl       { font-size: 6rem; }
  .xl\:text-9xl       { font-size: 8rem; }
  .xl\:text-\[8rem\]  { font-size: 8rem; }
  .xl\:text-\[9rem\]  { font-size: 9rem; }
  .xl\:text-\[10rem\] { font-size: 10rem; }
  .xl\:py-32          { padding-top: 8rem; padding-bottom: 8rem; }
  .xl\:px-12          { padding-left: 3rem; padding-right: 3rem; }
  .xl\:gap-20         { gap: 5rem; }
}

/* =========================================================
   RESPONSIVE — 2XL (1536px+)
   ========================================================= */
@media (min-width: 1536px) {
  .2xl\:text-\[10rem\] { font-size: 10rem; }
  .2xl\:text-\[11rem\] { font-size: 11rem; }
  .2xl\:grid-cols-5    { grid-template-columns: repeat(5, minmax(0, 1fr)); }
}

/* =========================================================
   SPECIAL LAYOUT — BENTO GRID
   ========================================================= */
.bento-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .bento-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
  }
  .bento-grid .bento-large {
    grid-column: span 2;
    grid-row: span 2;
  }
  .bento-grid .bento-wide {
    grid-column: span 2;
  }
  .bento-grid .bento-tall {
    grid-row: span 2;
  }
}

/* =========================================================
   PRINT
   ========================================================= */
@media print {
  .no-print { display: none !important; }
  body { background: white; color: black; }
}
