/* ===================================================================
   TREKANO — css/style.css — Prebuilt Tailwind v4.1.5 output
   Documentary/Archive family | Warm cream | Mustard amber accent
   Clash Display + Satoshi | Editorial vertical layout
   =================================================================== */

@theme {
  --color-bg-primary: #F5F0E8;
  --color-bg-secondary: #EDE8DC;
  --color-ink-primary: #1C1409;
  --color-ink-muted: #7A6A56;
  --color-accent: #92400E;
  --font-display: 'Clash Display', sans-serif;
  --font-body: 'Satoshi', sans-serif;
  --spacing-px: 1px;
  --spacing-0: 0rem;
  --spacing-1: 0.25rem;
  --spacing-2: 0.5rem;
  --spacing-3: 0.75rem;
  --spacing-4: 1rem;
  --spacing-5: 1.25rem;
  --spacing-6: 1.5rem;
  --spacing-8: 2rem;
  --spacing-10: 2.5rem;
  --spacing-12: 3rem;
  --spacing-16: 4rem;
  --spacing-20: 5rem;
  --spacing-24: 6rem;
  --radius-none: 0;
  --radius-sm: 0.125rem;
  --radius-md: 0.375rem;
  --radius-lg: 0.5rem;
  --radius-xl: 0.75rem;
  --radius-2xl: 1rem;
  --radius-full: 9999px;
  --shadow-sm: 0 1px 2px rgba(28,20,9,0.08);
  --shadow-md: 0 4px 16px rgba(28,20,9,0.12);
  --shadow-lg: 0 8px 32px rgba(28,20,9,0.16);
}

/* ===== BASE RESET ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border-width: 0;
  border-style: solid;
  border-color: rgba(122,106,86,0.2);
}

html {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  tab-size: 4;
  font-family: 'Satoshi', sans-serif;
  scroll-behavior: smooth;
}

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

img, svg, video, canvas, audio, iframe, embed, object {
  display: block;
  vertical-align: middle;
}

img, video { max-width: 100%; height: auto; }
a { color: inherit; text-decoration: inherit; }
button, [type='button'], [type='reset'], [type='submit'] { -webkit-appearance: button; cursor: pointer; }
input, button, textarea, select { font: inherit; }
textarea { resize: vertical; }
h1, h2, h3, h4, h5, h6 { font-family: 'Clash Display', sans-serif; font-weight: 700; line-height: 1.1; }
table { border-collapse: collapse; }
address { font-style: normal; }

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

/* ===== FLEXBOX ===== */
.flex-row { flex-direction: row; }
.flex-col { flex-direction: column; }
.flex-row-reverse { flex-direction: row-reverse; }
.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; }
.flex-grow-0 { flex-grow: 0; }

.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; }
.self-start { align-self: flex-start; }
.self-center { align-self: center; }
.self-end { align-self: flex-end; }
.self-stretch { align-self: stretch; }

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

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

/* ===== 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-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-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-x-12 { column-gap: 3rem; }
.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; }
.gap-y-10 { row-gap: 2.5rem; }
.gap-y-12 { row-gap: 3rem; }

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

.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; }
.top-8 { top: 2rem; }
.top-\[50\%\] { top: 50%; }
.right-0 { right: 0; }
.right-4 { right: 1rem; }
.right-8 { right: 2rem; }
.bottom-0 { bottom: 0; }
.bottom-4 { bottom: 1rem; }
.bottom-8 { bottom: 2rem; }
.left-0 { left: 0; }
.left-4 { left: 1rem; }
.left-1\/2 { left: 50%; }
.-top-2 { top: -0.5rem; }
.-top-4 { top: -1rem; }
.-right-2 { right: -0.5rem; }
.-left-4 { left: -1rem; }

/* ===== Z-INDEX ===== */
.z-0 { z-index: 0; }
.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.z-30 { z-index: 30; }
.z-40 { z-index: 40; }
.z-50 { z-index: 50; }
.-z-10 { z-index: -10; }

/* ===== OVERFLOW ===== */
.overflow-hidden { overflow: hidden; }
.overflow-auto { overflow: auto; }
.overflow-scroll { overflow: scroll; }
.overflow-visible { overflow: visible; }
.overflow-x-auto { overflow-x: auto; }
.overflow-x-hidden { overflow-x: hidden; }
.overflow-y-auto { overflow-y: auto; }
.overflow-y-hidden { overflow-y: hidden; }

/* ===== SIZING ===== */
.w-auto { width: auto; }
.w-full { width: 100%; }
.w-screen { width: 100vw; }
.w-px { width: 1px; }
.w-0 { width: 0; }
.w-0\.5 { width: 0.125rem; }
.w-1 { width: 0.25rem; }
.w-2 { width: 0.5rem; }
.w-3 { width: 0.75rem; }
.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-14 { width: 3.5rem; }
.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; }
.w-80 { width: 20rem; }
.w-96 { width: 24rem; }
.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-\[calc\(100\%-1\.5rem\)\] { width: calc(100% - 1.5rem); }
.w-\[calc\(100vw-2rem\)\] { width: calc(100vw - 2rem); }
.w-\[1px\] { width: 1px; }
.w-\[2px\] { width: 2px; }
.w-\[3px\] { width: 3px; }

.h-auto { height: auto; }
.h-full { height: 100%; }
.h-screen { height: 100vh; }
.h-px { height: 1px; }
.h-0 { height: 0; }
.h-1 { height: 0.25rem; }
.h-2 { height: 0.5rem; }
.h-3 { height: 0.75rem; }
.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-14 { height: 3.5rem; }
.h-16 { height: 4rem; }
.h-20 { height: 5rem; }
.h-24 { height: 6rem; }
.h-32 { height: 8rem; }
.h-40 { height: 10rem; }
.h-48 { height: 12rem; }
.h-56 { height: 14rem; }
.h-64 { height: 16rem; }
.h-80 { height: 20rem; }
.h-96 { height: 24rem; }
.h-\[1px\] { height: 1px; }
.h-\[2px\] { height: 2px; }
.h-\[300px\] { height: 300px; }
.h-\[350px\] { height: 350px; }
.h-\[400px\] { height: 400px; }
.h-\[450px\] { height: 450px; }
.h-\[500px\] { height: 500px; }
.h-\[550px\] { height: 550px; }
.h-\[600px\] { height: 600px; }
.h-\[650px\] { height: 650px; }
.h-\[700px\] { height: 700px; }

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

.max-w-xs { max-width: 20rem; }
.max-w-sm { max-width: 24rem; }
.max-w-md { max-width: 28rem; }
.max-w-lg { max-width: 32rem; }
.max-w-xl { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-6xl { max-width: 72rem; }
.max-w-7xl { max-width: 80rem; }
.max-w-none { max-width: none; }
.max-w-full { max-width: 100%; }
.max-w-prose { max-width: 65ch; }
.max-w-\[1220px\] { max-width: 1220px; }
.max-w-\[700px\] { max-width: 700px; }
.max-w-\[800px\] { max-width: 800px; }
.max-w-\[900px\] { max-width: 900px; }
.max-w-\[600px\] { max-width: 600px; }

.min-w-0 { min-width: 0; }
.min-w-full { min-width: 100%; }
.min-w-\[120px\] { min-width: 120px; }
.min-w-\[200px\] { min-width: 200px; }

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

/* ===== MARGIN ===== */
.m-0 { margin: 0; }
.m-auto { margin: auto; }
.m-1 { margin: 0.25rem; }
.m-2 { margin: 0.5rem; }
.m-3 { margin: 0.75rem; }
.m-4 { margin: 1rem; }
.m-6 { margin: 1.5rem; }
.m-8 { margin: 2rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.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-1 { margin-top: 0.25rem; margin-bottom: 0.25rem; }
.my-2 { margin-top: 0.5rem; margin-bottom: 0.5rem; }
.my-3 { margin-top: 0.75rem; margin-bottom: 0.75rem; }
.my-4 { margin-top: 1rem; margin-bottom: 1rem; }
.my-5 { margin-top: 1.25rem; margin-bottom: 1.25rem; }
.my-6 { margin-top: 1.5rem; margin-bottom: 1.5rem; }
.my-8 { margin-top: 2rem; margin-bottom: 2rem; }
.my-10 { margin-top: 2.5rem; margin-bottom: 2.5rem; }
.my-12 { margin-top: 3rem; margin-bottom: 3rem; }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 1.25rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-7 { margin-top: 1.75rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }
.mt-14 { margin-top: 3.5rem; }
.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-7 { margin-bottom: 1.75rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-14 { margin-bottom: 3.5rem; }
.mb-16 { margin-bottom: 4rem; }
.mb-20 { margin-bottom: 5rem; }
.mb-24 { margin-bottom: 6rem; }
.ml-auto { margin-left: auto; }
.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-auto { margin-right: auto; }
.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; }
.-mt-4 { margin-top: -1rem; }
.-mt-8 { margin-top: -2rem; }
.-mb-4 { margin-bottom: -1rem; }
.-ml-2 { margin-left: -0.5rem; }
.-ml-4 { margin-left: -1rem; }

/* ===== 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-7 { padding: 1.75rem; }
.p-8 { padding: 2rem; }
.p-10 { padding: 2.5rem; }
.p-12 { padding: 3rem; }
.p-14 { padding: 3.5rem; }
.p-16 { padding: 4rem; }
.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-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-7 { padding-top: 1.75rem; padding-bottom: 1.75rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-10 { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-14 { padding-top: 3.5rem; padding-bottom: 3.5rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }
.py-28 { padding-top: 7rem; padding-bottom: 7rem; }
.py-32 { padding-top: 8rem; padding-bottom: 8rem; }
.pt-0 { padding-top: 0; }
.pt-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-7 { padding-top: 1.75rem; }
.pt-8 { padding-top: 2rem; }
.pt-10 { padding-top: 2.5rem; }
.pt-12 { padding-top: 3rem; }
.pt-16 { padding-top: 4rem; }
.pb-0 { padding-bottom: 0; }
.pb-2 { padding-bottom: 0.5rem; }
.pb-3 { padding-bottom: 0.75rem; }
.pb-4 { padding-bottom: 1rem; }
.pb-6 { padding-bottom: 1.5rem; }
.pb-8 { padding-bottom: 2rem; }
.pb-10 { padding-bottom: 2.5rem; }
.pb-12 { padding-bottom: 3rem; }
.pb-16 { padding-bottom: 4rem; }
.pl-0 { padding-left: 0; }
.pl-2 { padding-left: 0.5rem; }
.pl-4 { padding-left: 1rem; }
.pl-5 { padding-left: 1.25rem; }
.pl-6 { padding-left: 1.5rem; }
.pl-8 { padding-left: 2rem; }
.pl-12 { padding-left: 3rem; }
.pr-0 { padding-right: 0; }
.pr-2 { padding-right: 0.5rem; }
.pr-4 { padding-right: 1rem; }
.pr-6 { padding-right: 1.5rem; }
.pr-8 { padding-right: 2rem; }

/* ===== SPACE BETWEEN ===== */
.space-y-1 > * + * { margin-top: 0.25rem; }
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-5 > * + * { margin-top: 1.25rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-7 > * + * { margin-top: 1.75rem; }
.space-y-8 > * + * { margin-top: 2rem; }
.space-y-10 > * + * { margin-top: 2.5rem; }
.space-y-12 > * + * { margin-top: 3rem; }
.space-x-1 > * + * { margin-left: 0.25rem; }
.space-x-2 > * + * { margin-left: 0.5rem; }
.space-x-3 > * + * { margin-left: 0.75rem; }
.space-x-4 > * + * { margin-left: 1rem; }
.space-x-6 > * + * { margin-left: 1.5rem; }

/* ===== TYPOGRAPHY ===== */
.font-display { font-family: 'Clash Display', sans-serif; }
.font-body { font-family: 'Satoshi', sans-serif; }
.font-sans { font-family: 'Satoshi', sans-serif; }
.font-mono { font-family: 'Space Mono', ui-monospace, monospace; }
.font-serif { font-family: Georgia, Cambria, 'Times New Roman', serif; }

.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-\[16px\] { font-size: 16px; }
.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-\[26px\] { font-size: 26px; }
.text-\[28px\] { font-size: 28px; }
.text-\[30px\] { font-size: 30px; }
.text-\[32px\] { font-size: 32px; }
.text-\[36px\] { font-size: 36px; }
.text-\[40px\] { font-size: 40px; }
.text-\[44px\] { font-size: 44px; }
.text-\[48px\] { font-size: 48px; }
.text-\[52px\] { font-size: 52px; }
.text-\[56px\] { font-size: 56px; }
.text-\[64px\] { font-size: 64px; }
.text-\[72px\] { font-size: 72px; }
.text-\[80px\] { font-size: 80px; }
.text-\[88px\] { font-size: 88px; }
.text-\[96px\] { font-size: 96px; }
.text-\[112px\] { font-size: 112px; }
.text-\[120px\] { font-size: 120px; }
.text-\[140px\] { font-size: 140px; }

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

.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-3 { line-height: 0.75rem; }
.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-\[1\.0\] { line-height: 1.0; }
.leading-\[1\.1\] { line-height: 1.1; }
.leading-\[1\.15\] { line-height: 1.15; }
.leading-\[1\.2\] { line-height: 1.2; }
.leading-\[1\.25\] { line-height: 1.25; }
.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\.75\] { line-height: 1.75; }
.leading-\[1\.8\] { line-height: 1.8; }

.tracking-tighter { letter-spacing: -0.05em; }
.tracking-tight { letter-spacing: -0.025em; }
.tracking-normal { letter-spacing: 0em; }
.tracking-wide { letter-spacing: 0.025em; }
.tracking-wider { letter-spacing: 0.05em; }
.tracking-widest { letter-spacing: 0.1em; }
.tracking-\[0\.02em\] { letter-spacing: 0.02em; }
.tracking-\[0\.05em\] { letter-spacing: 0.05em; }
.tracking-\[0\.08em\] { letter-spacing: 0.08em; }
.tracking-\[0\.1em\] { letter-spacing: 0.1em; }
.tracking-\[0\.12em\] { letter-spacing: 0.12em; }
.tracking-\[0\.15em\] { letter-spacing: 0.15em; }
.tracking-\[0\.18em\] { letter-spacing: 0.18em; }
.tracking-\[0\.2em\] { letter-spacing: 0.2em; }
.tracking-\[0\.25em\] { letter-spacing: 0.25em; }
.tracking-\[0\.3em\] { letter-spacing: 0.3em; }
.tracking-\[0\.35em\] { letter-spacing: 0.35em; }
.tracking-\[0\.4em\] { letter-spacing: 0.4em; }
.tracking-\[2px\] { letter-spacing: 2px; }
.tracking-\[3px\] { letter-spacing: 3px; }
.tracking-\[4px\] { letter-spacing: 4px; }

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

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

.underline { text-decoration-line: underline; }
.no-underline { text-decoration-line: none; }
.line-through { text-decoration-line: line-through; }
.decoration-1 { text-decoration-thickness: 1px; }
.decoration-2 { text-decoration-thickness: 2px; }
.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; }

.truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.break-words { overflow-wrap: break-word; }
.break-all { word-break: break-all; }

/* ===== TEXT COLORS ===== */
.text-\[\#F5F0E8\] { color: #F5F0E8; }
.text-\[\#EDE8DC\] { color: #EDE8DC; }
.text-\[\#92400E\] { color: #92400E; }
.text-\[\#1C1409\] { color: #1C1409; }
.text-\[\#7A6A56\] { color: #7A6A56; }
.text-\[\#D4C9B4\] { color: #D4C9B4; }
.text-\[\#3D2B1A\] { color: #3D2B1A; }
.text-\[\#5A4A38\] { color: #5A4A38; }
.text-\[\#C97A1A\] { color: #C97A1A; }
.text-\[\#4A3828\] { color: #4A3828; }
.text-white { color: #ffffff; }
.text-black { color: #000000; }
.text-current { color: currentColor; }
.text-transparent { color: transparent; }
.text-\[\#F0EBE1\] { color: #F0EBE1; }
.text-\[\#8B7355\] { color: #8B7355; }

/* ===== BACKGROUND COLORS ===== */
.bg-\[\#F5F0E8\] { background-color: #F5F0E8; }
.bg-\[\#EDE8DC\] { background-color: #EDE8DC; }
.bg-\[\#92400E\] { background-color: #92400E; }
.bg-\[\#1C1409\] { background-color: #1C1409; }
.bg-\[\#7A6A56\] { background-color: #7A6A56; }
.bg-\[\#D4C9B4\] { background-color: #D4C9B4; }
.bg-\[\#3D2B1A\] { background-color: #3D2B1A; }
.bg-\[\#5A4A38\] { background-color: #5A4A38; }
.bg-\[\#F0EBE1\] { background-color: #F0EBE1; }
.bg-\[\#E8E0D0\] { background-color: #E8E0D0; }
.bg-\[\#F7F4EE\] { background-color: #F7F4EE; }
.bg-\[\#2C1A0A\] { background-color: #2C1A0A; }
.bg-\[\#F2EDE3\] { background-color: #F2EDE3; }
.bg-\[\#4A3828\] { background-color: #4A3828; }
.bg-\[\#C97A1A\] { background-color: #C97A1A; }
.bg-white { background-color: #ffffff; }
.bg-black { background-color: #000000; }
.bg-transparent { background-color: transparent; }

/* Background with opacity */
.bg-\[\#92400E\]\/5 { background-color: rgba(146, 64, 14, 0.05); }
.bg-\[\#92400E\]\/10 { background-color: rgba(146, 64, 14, 0.10); }
.bg-\[\#92400E\]\/15 { background-color: rgba(146, 64, 14, 0.15); }
.bg-\[\#92400E\]\/20 { background-color: rgba(146, 64, 14, 0.20); }
.bg-\[\#92400E\]\/30 { background-color: rgba(146, 64, 14, 0.30); }
.bg-\[\#92400E\]\/80 { background-color: rgba(146, 64, 14, 0.80); }
.bg-\[\#1C1409\]\/5 { background-color: rgba(28, 20, 9, 0.05); }
.bg-\[\#1C1409\]\/10 { background-color: rgba(28, 20, 9, 0.10); }
.bg-\[\#1C1409\]\/20 { background-color: rgba(28, 20, 9, 0.20); }
.bg-\[\#1C1409\]\/50 { background-color: rgba(28, 20, 9, 0.50); }
.bg-\[\#1C1409\]\/70 { background-color: rgba(28, 20, 9, 0.70); }
.bg-\[\#1C1409\]\/80 { background-color: rgba(28, 20, 9, 0.80); }
.bg-\[\#7A6A56\]\/10 { background-color: rgba(122, 106, 86, 0.10); }
.bg-\[\#7A6A56\]\/20 { background-color: rgba(122, 106, 86, 0.20); }
.bg-\[\#F5F0E8\]\/80 { background-color: rgba(245, 240, 232, 0.80); }
.bg-\[\#F5F0E8\]\/90 { background-color: rgba(245, 240, 232, 0.90); }

/* ===== BORDER ===== */
.border { border-width: 1px; }
.border-0 { border-width: 0; }
.border-2 { border-width: 2px; }
.border-4 { border-width: 4px; }
.border-t { border-top-width: 1px; }
.border-t-0 { border-top-width: 0; }
.border-b { border-bottom-width: 1px; }
.border-b-0 { border-bottom-width: 0; }
.border-l { border-left-width: 1px; }
.border-l-0 { border-left-width: 0; }
.border-l-2 { border-left-width: 2px; }
.border-l-4 { border-left-width: 4px; }
.border-r { border-right-width: 1px; }
.border-r-0 { border-right-width: 0; }
.border-t-2 { border-top-width: 2px; }
.border-b-2 { border-bottom-width: 2px; }

.border-\[\#92400E\] { border-color: #92400E; }
.border-\[\#1C1409\] { border-color: #1C1409; }
.border-\[\#7A6A56\] { border-color: #7A6A56; }
.border-\[\#F5F0E8\] { border-color: #F5F0E8; }
.border-\[\#EDE8DC\] { border-color: #EDE8DC; }
.border-\[\#D4C9B4\] { border-color: #D4C9B4; }
.border-white { border-color: #ffffff; }
.border-transparent { border-color: transparent; }

.border-\[\#7A6A56\]\/10 { border-color: rgba(122, 106, 86, 0.10); }
.border-\[\#7A6A56\]\/20 { border-color: rgba(122, 106, 86, 0.20); }
.border-\[\#7A6A56\]\/30 { border-color: rgba(122, 106, 86, 0.30); }
.border-\[\#7A6A56\]\/40 { border-color: rgba(122, 106, 86, 0.40); }
.border-\[\#1C1409\]\/20 { border-color: rgba(28, 20, 9, 0.20); }
.border-\[\#1C1409\]\/30 { border-color: rgba(28, 20, 9, 0.30); }
.border-\[\#92400E\]\/20 { border-color: rgba(146, 64, 14, 0.20); }
.border-\[\#92400E\]\/30 { border-color: rgba(146, 64, 14, 0.30); }
.border-\[\#92400E\]\/40 { border-color: rgba(146, 64, 14, 0.40); }

.divide-y > * + * { border-top-width: 1px; }
.divide-\[\#7A6A56\]\/20 > * + * { border-color: rgba(122, 106, 86, 0.20); }
.divide-\[\#1C1409\]\/10 > * + * { border-color: rgba(28, 20, 9, 0.10); }

/* ===== 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-\[26px\] { border-radius: 26px; }
.rounded-\[999px\] { border-radius: 999px; }
.rounded-t-lg { border-top-left-radius: 0.5rem; border-top-right-radius: 0.5rem; }
.rounded-b-lg { border-bottom-left-radius: 0.5rem; border-bottom-right-radius: 0.5rem; }

/* ===== SHADOW ===== */
.shadow-sm { box-shadow: 0 1px 2px 0 rgba(28,20,9,0.08); }
.shadow { box-shadow: 0 1px 3px 0 rgba(28,20,9,0.12), 0 1px 2px -1px rgba(28,20,9,0.12); }
.shadow-md { box-shadow: 0 4px 6px -1px rgba(28,20,9,0.12), 0 2px 4px -2px rgba(28,20,9,0.12); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(28,20,9,0.12), 0 4px 6px -4px rgba(28,20,9,0.12); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgba(28,20,9,0.16), 0 8px 10px -6px rgba(28,20,9,0.16); }
.shadow-none { box-shadow: none; }
.shadow-\[3px_3px_0_\#1C1409\] { box-shadow: 3px 3px 0 #1C1409; }
.shadow-\[4px_4px_0_\#92400E\] { box-shadow: 4px 4px 0 #92400E; }
.shadow-\[2px_2px_0_\#7A6A56\] { box-shadow: 2px 2px 0 #7A6A56; }

/* ===== OPACITY ===== */
.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 / BACKDROP ===== */
.blur-sm { filter: blur(4px); }
.blur { filter: blur(8px); }
.blur-md { filter: blur(12px); }
.blur-xl { filter: blur(24px); }
.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); }
.grayscale { filter: grayscale(100%); }
.grayscale-0 { filter: grayscale(0); }
.sepia { filter: sepia(100%); }
.sepia-\[0\.3\] { filter: sepia(0.3); }

/* ===== TRANSFORM ===== */
.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-\[-90deg\] { transform: rotate(-90deg); }
.rotate-\[90deg\] { transform: rotate(90deg); }
.rotate-\[-2deg\] { transform: rotate(-2deg); }
.rotate-\[2deg\] { transform: rotate(2deg); }
.scale-0 { transform: scale(0); }
.scale-75 { transform: scale(0.75); }
.scale-90 { transform: scale(0.9); }
.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-1\/2 { transform: translateX(-50%); }
.-translate-y-1\/2 { transform: translateY(-50%); }
.translate-x-0 { transform: translateX(0); }
.translate-y-0 { transform: translateY(0); }
.translate-y-1 { transform: translateY(0.25rem); }
.-translate-y-1 { transform: translateY(-0.25rem); }
.translate-x-full { transform: translateX(100%); }
.-translate-x-full { transform: translateX(-100%); }
.origin-top { transform-origin: top; }
.origin-center { transform-origin: center; }
.origin-left { transform-origin: left; }
.origin-bottom { transform-origin: bottom; }

/* ===== TRANSITIONS ===== */
.transition { transition-property: color, background-color, border-color, outline-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, outline-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; }
.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); }

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

/* ===== VISIBILITY & SELECT ===== */
.visible { visibility: visible; }
.invisible { visibility: hidden; }
.select-none { user-select: none; }
.select-text { user-select: text; }
.select-all { user-select: all; }

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

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

/* ===== MISC ===== */
.outline-none { outline: 2px solid transparent; outline-offset: 2px; }
.resize-none { resize: none; }
.resize { resize: both; }
.resize-y { resize: vertical; }
.fill-current { fill: currentColor; }
.fill-\[\#92400E\] { fill: #92400E; }
.stroke-current { stroke: currentColor; }
.appearance-none { -webkit-appearance: none; -moz-appearance: none; appearance: none; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border-width: 0; }
.not-sr-only { position: static; width: auto; height: auto; padding: 0; margin: 0; overflow: visible; clip: auto; white-space: normal; }

/* ===== HOVER STATES ===== */
.hover\:text-\[\#92400E\]:hover { color: #92400E; }
.hover\:text-\[\#1C1409\]:hover { color: #1C1409; }
.hover\:text-\[\#F5F0E8\]:hover { color: #F5F0E8; }
.hover\:text-\[\#EDE8DC\]:hover { color: #EDE8DC; }
.hover\:text-white:hover { color: #ffffff; }
.hover\:bg-\[\#92400E\]:hover { background-color: #92400E; }
.hover\:bg-\[\#1C1409\]:hover { background-color: #1C1409; }
.hover\:bg-\[\#EDE8DC\]:hover { background-color: #EDE8DC; }
.hover\:bg-\[\#F5F0E8\]:hover { background-color: #F5F0E8; }
.hover\:bg-\[\#F0EBE1\]:hover { background-color: #F0EBE1; }
.hover\:bg-\[\#3D2B1A\]:hover { background-color: #3D2B1A; }
.hover\:bg-\[\#92400E\]\/10:hover { background-color: rgba(146,64,14,0.10); }
.hover\:bg-\[\#92400E\]\/20:hover { background-color: rgba(146,64,14,0.20); }
.hover\:border-\[\#92400E\]:hover { border-color: #92400E; }
.hover\:border-\[\#1C1409\]:hover { border-color: #1C1409; }
.hover\:opacity-90:hover { opacity: 0.9; }
.hover\:opacity-80:hover { opacity: 0.8; }
.hover\:opacity-70:hover { opacity: 0.7; }
.hover\:scale-105:hover { transform: scale(1.05); }
.hover\:shadow-md:hover { box-shadow: 0 4px 6px -1px rgba(28,20,9,0.12); }
.hover\:shadow-lg:hover { box-shadow: 0 10px 15px -3px rgba(28,20,9,0.12); }
.hover\:underline:hover { text-decoration-line: underline; }
.hover\:no-underline:hover { text-decoration-line: none; }
.hover\:translate-y-\[-2px\]:hover { transform: translateY(-2px); }
.hover\:translate-y-\[-1px\]:hover { transform: translateY(-1px); }

/* ===== FOCUS STATES ===== */
.focus\:outline-none:focus { outline: 2px solid transparent; outline-offset: 2px; }
.focus\:border-\[\#92400E\]:focus { border-color: #92400E; }
.focus\:ring-2:focus { box-shadow: 0 0 0 2px rgba(146,64,14,0.40); }
.focus\:ring-\[\#92400E\]:focus { box-shadow: 0 0 0 2px rgba(146,64,14,0.40); }
.focus\:ring-offset-2:focus { box-shadow: 0 0 0 2px #F5F0E8, 0 0 0 4px rgba(146,64,14,0.40); }

/* ===== GROUP STATES ===== */
.group:hover .group-hover\:text-\[\#92400E\] { color: #92400E; }
.group:hover .group-hover\:text-\[\#F5F0E8\] { color: #F5F0E8; }
.group:hover .group-hover\:opacity-100 { opacity: 1; }
.group:hover .group-hover\:scale-105 { transform: scale(1.05); }
.group:hover .group-hover\:translate-y-\[-2px\] { transform: translateY(-2px); }
.group:hover .group-hover\:border-\[\#92400E\] { border-color: #92400E; }
.group:hover .group-hover\:bg-\[\#92400E\]\/10 { background-color: rgba(146,64,14,0.10); }

/* ===== ANIMATIONS ===== */
@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .5; } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-16px); } to { opacity: 1; transform: translateY(0); } }
@keyframes scaleIn { from { opacity: 0; transform: scale(0.95); } to { opacity: 1; transform: scale(1); } }

.animate-marquee { animation: marqueeScroll 40s linear infinite; }
.animate-marquee-slow { animation: marqueeScroll 60s linear infinite; }
.animate-spin { animation: spin 1s linear infinite; }
.animate-pulse { animation: pulse 2s cubic-bezier(0.4,0,0.6,1) infinite; }
.animate-fade-in { animation: fadeIn 0.5s ease-out; }
.animate-fade-in-up { animation: fadeInUp 0.6s ease-out; }
.animate-fade-in-down { animation: fadeInDown 0.5s ease-out; }
.animate-scale-in { animation: scaleIn 0.4s ease-out; }

/* ===== RESPONSIVE ===== */
@media (min-width: 640px) {
  .sm\:block { display: block; }
  .sm\:hidden { display: none; }
  .sm\:flex { display: flex; }
  .sm\:grid { display: grid; }
  .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\: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\:text-\[40px\] { font-size: 40px; }
  .sm\:text-\[48px\] { font-size: 48px; }
  .sm\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
  .sm\:py-12 { padding-top: 3rem; padding-bottom: 3rem; }
  .sm\:gap-6 { gap: 1.5rem; }
  .sm\:col-span-2 { grid-column: span 2 / span 2; }
  .sm\:flex-row { flex-direction: row; }
  .sm\:items-center { align-items: center; }
  .sm\:justify-between { justify-content: space-between; }
}

@media (min-width: 768px) {
  .md\:block { display: block; }
  .md\:hidden { display: none; }
  .md\:flex { display: flex; }
  .md\:grid { display: grid; }
  .md\:inline-block { display: inline-block; }
  .md\:inline-flex { display: inline-flex; }
  .md\:flex-row { flex-direction: row; }
  .md\:flex-col { flex-direction: column; }
  .md\:flex-row-reverse { flex-direction: row-reverse; }
  .md\:flex-wrap { flex-wrap: wrap; }
  .md\:flex-nowrap { flex-wrap: nowrap; }
  .md\:flex-1 { flex: 1 1 0%; }
  .md\:flex-none { flex: none; }
  .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-between { justify-content: space-between; }
  .md\:justify-end { justify-content: flex-end; }
  .md\:gap-0 { gap: 0; }
  .md\:gap-2 { gap: 0.5rem; }
  .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\: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\:col-span-full { grid-column: 1 / -1; }
  .md\:w-auto { width: auto; }
  .md\:w-full { width: 100%; }
  .md\:w-1\/2 { width: 50%; }
  .md\:w-1\/3 { width: 33.333333%; }
  .md\:w-2\/3 { width: 66.666667%; }
  .md\:w-1\/4 { width: 25%; }
  .md\:w-3\/4 { width: 75%; }
  .md\:max-w-lg { max-width: 32rem; }
  .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\:max-w-none { max-width: none; }
  .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-0 { padding-top: 0; padding-bottom: 0; }
  .md\:py-8 { padding-top: 2rem; padding-bottom: 2rem; }
  .md\:py-10 { padding-top: 2.5rem; padding-bottom: 2.5rem; }
  .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-28 { padding-top: 7rem; padding-bottom: 7rem; }
  .md\:py-32 { padding-top: 8rem; padding-bottom: 8rem; }
  .md\:pt-4 { padding-top: 1rem; }
  .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\:pb-0 { padding-bottom: 0; }
  .md\:pb-8 { padding-bottom: 2rem; }
  .md\:pb-12 { padding-bottom: 3rem; }
  .md\:pb-16 { padding-bottom: 4rem; }
  .md\:pl-8 { padding-left: 2rem; }
  .md\:pl-10 { padding-left: 2.5rem; }
  .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\:mt-12 { margin-top: 3rem; }
  .md\:mt-16 { margin-top: 4rem; }
  .md\:mt-24 { margin-top: 6rem; }
  .md\:mb-0 { margin-bottom: 0; }
  .md\:mb-6 { margin-bottom: 1.5rem; }
  .md\:mb-8 { margin-bottom: 2rem; }
  .md\:mb-12 { margin-bottom: 3rem; }
  .md\:mx-0 { margin-left: 0; margin-right: 0; }
  .md\:text-left { text-align: left; }
  .md\:text-right { text-align: right; }
  .md\:text-center { text-align: center; }
  .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-8xl { font-size: 6rem; line-height: 1; }
  .md\:text-\[32px\] { font-size: 32px; }
  .md\:text-\[40px\] { font-size: 40px; }
  .md\:text-\[48px\] { font-size: 48px; }
  .md\:text-\[56px\] { font-size: 56px; }
  .md\:text-\[64px\] { font-size: 64px; }
  .md\:text-\[72px\] { font-size: 72px; }
  .md\:text-\[80px\] { font-size: 80px; }
  .md\:text-\[88px\] { font-size: 88px; }
  .md\:text-\[96px\] { font-size: 96px; }
  .md\:text-\[112px\] { font-size: 112px; }
  .md\:leading-none { line-height: 1; }
  .md\:leading-tight { line-height: 1.25; }
  .md\:leading-\[1\.0\] { line-height: 1.0; }
  .md\:leading-\[1\.05\] { line-height: 1.05; }
  .md\:leading-\[1\.1\] { line-height: 1.1; }
  .md\:leading-\[1\.15\] { line-height: 1.15; }
  .md\:leading-\[1\.2\] { line-height: 1.2; }
  .md\:leading-\[1\.3\] { line-height: 1.3; }
  .md\:border-l { border-left-width: 1px; }
  .md\:border-l-0 { border-left-width: 0; }
  .md\:border-t-0 { border-top-width: 0; }
  .md\:border-r { border-right-width: 1px; }
  .md\:sticky { position: sticky; }
  .md\:top-8 { top: 2rem; }
  .md\:aspect-\[21\/9\] { aspect-ratio: 21 / 9; }
  .md\:aspect-\[3\/2\] { aspect-ratio: 3 / 2; }
  .md\:h-\[400px\] { height: 400px; }
  .md\:h-\[500px\] { height: 500px; }
  .md\:h-\[550px\] { height: 550px; }
  .md\:h-\[600px\] { height: 600px; }
  .md\:h-\[650px\] { height: 650px; }
  .md\:h-\[700px\] { height: 700px; }
  .md\:h-screen { height: 100vh; }
  .md\:h-full { height: 100%; }
  .md\:min-h-\[500px\] { min-height: 500px; }
  .md\:min-h-\[600px\] { min-height: 600px; }
  .md\:self-end { align-self: flex-end; }
  .md\:self-center { align-self: center; }
  .md\:rotate-0 { transform: rotate(0deg); }
  .md\:opacity-100 { opacity: 1; }
  .md\:justify-start { justify-content: flex-start; }
}

@media (min-width: 1024px) {
  .lg\:block { display: block; }
  .lg\:hidden { display: none; }
  .lg\:flex { display: flex; }
  .lg\:grid { display: grid; }
  .lg\:inline-block { display: inline-block; }
  .lg\:flex-row { flex-direction: row; }
  .lg\:flex-col { flex-direction: column; }
  .lg\:items-center { align-items: center; }
  .lg\:items-start { align-items: flex-start; }
  .lg\:justify-between { justify-content: space-between; }
  .lg\:gap-6 { gap: 1.5rem; }
  .lg\:gap-8 { gap: 2rem; }
  .lg\:gap-10 { gap: 2.5rem; }
  .lg\:gap-12 { gap: 3rem; }
  .lg\:gap-16 { gap: 4rem; }
  .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\:grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .lg\:col-span-1 { grid-column: span 1 / span 1; }
  .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-full { grid-column: 1 / -1; }
  .lg\:row-span-2 { grid-row: span 2 / span 2; }
  .lg\:px-8 { padding-left: 2rem; padding-right: 2rem; }
  .lg\:px-12 { padding-left: 3rem; padding-right: 3rem; }
  .lg\:py-20 { padding-top: 5rem; padding-bottom: 5rem; }
  .lg\:py-24 { padding-top: 6rem; padding-bottom: 6rem; }
  .lg\:py-28 { padding-top: 7rem; padding-bottom: 7rem; }
  .lg\:py-32 { padding-top: 8rem; padding-bottom: 8rem; }
  .lg\:pt-20 { padding-top: 5rem; }
  .lg\:pt-24 { padding-top: 6rem; }
  .lg\:pb-20 { padding-bottom: 5rem; }
  .lg\:mt-0 { margin-top: 0; }
  .lg\:mt-8 { margin-top: 2rem; }
  .lg\:mb-0 { margin-bottom: 0; }
  .lg\:text-left { text-align: left; }
  .lg\:text-lg { font-size: 1.125rem; line-height: 1.75rem; }
  .lg\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
  .lg\:text-2xl { font-size: 1.5rem; line-height: 2rem; }
  .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-8xl { font-size: 6rem; line-height: 1; }
  .lg\:text-\[48px\] { font-size: 48px; }
  .lg\:text-\[56px\] { font-size: 56px; }
  .lg\:text-\[64px\] { font-size: 64px; }
  .lg\:text-\[72px\] { font-size: 72px; }
  .lg\:text-\[80px\] { font-size: 80px; }
  .lg\:text-\[96px\] { font-size: 96px; }
  .lg\:text-\[112px\] { font-size: 112px; }
  .lg\:text-\[120px\] { font-size: 120px; }
  .lg\:leading-none { line-height: 1; }
  .lg\:leading-\[1\.0\] { line-height: 1.0; }
  .lg\:leading-\[1\.05\] { line-height: 1.05; }
  .lg\:leading-\[1\.1\] { line-height: 1.1; }
  .lg\:max-w-2xl { max-width: 42rem; }
  .lg\:max-w-3xl { max-width: 48rem; }
  .lg\:max-w-4xl { max-width: 56rem; }
  .lg\:w-1\/2 { width: 50%; }
  .lg\:w-2\/3 { width: 66.666667%; }
  .lg\:h-\[600px\] { height: 600px; }
  .lg\:h-\[700px\] { height: 700px; }
  .lg\:h-screen { height: 100vh; }
  .lg\:border-r { border-right-width: 1px; }
  .lg\:border-l-0 { border-left-width: 0; }
  .lg\:pl-12 { padding-left: 3rem; }
  .lg\:pr-12 { padding-right: 3rem; }
  .lg\:sticky { position: sticky; }
}

@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\:gap-12 { gap: 3rem; }
  .xl\:gap-16 { gap: 4rem; }
  .xl\:col-span-3 { grid-column: span 3 / span 3; }
  .xl\:text-\[80px\] { font-size: 80px; }
  .xl\:text-\[96px\] { font-size: 96px; }
  .xl\:text-\[112px\] { font-size: 112px; }
  .xl\:text-\[128px\] { font-size: 128px; }
  .xl\:py-32 { padding-top: 8rem; padding-bottom: 8rem; }
  .xl\:px-16 { padding-left: 4rem; padding-right: 4rem; }
}

/* ===== CUSTOM PATTERNS — Documentary/Archive Aesthetic ===== */

/* Archive-style section label */
.archive-label {
  display: inline-block;
  font-family: 'Satoshi', sans-serif;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #7A6A56;
}

/* Archive issue tag */
.issue-tag {
  font-family: 'Satoshi', sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #7A6A56;
  border: 1px solid rgba(122,106,86,0.3);
  padding: 0.25rem 0.625rem;
  display: inline-block;
}

/* Large ghost number — archive accent */
.ghost-number {
  font-family: 'Clash Display', sans-serif;
  font-weight: 900;
  color: rgba(146, 64, 14, 0.08);
  font-size: 9rem;
  line-height: 1;
  user-select: none;
  position: absolute;
  pointer-events: none;
}

/* Step counter marker */
.step-marker {
  font-family: 'Clash Display', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  color: #92400E;
  text-transform: uppercase;
}

/* Image caption label */
.img-caption-label {
  font-family: 'Satoshi', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7A6A56;
  margin-top: 0.625rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(122,106,86,0.25);
}

/* Stat display */
.stat-display {
  font-family: 'Clash Display', sans-serif;
  font-weight: 700;
  font-size: 3.25rem;
  line-height: 1;
  color: #92400E;
}

/* Horizontal amber hairline */
.hairline-amber { height: 1px; background-color: rgba(146,64,14,0.25); }
.hairline-muted { height: 1px; background-color: rgba(122,106,86,0.2); }

/* Marquee */
.marquee-wrapper { overflow: hidden; white-space: nowrap; display: flex; }
.marquee-track { display: inline-flex; gap: 0; white-space: nowrap; }

/* Rotated label (vertical text) */
.rotate-label {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  font-family: 'Satoshi', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #7A6A56;
}

/* Accordion */
.accordion-body { display: none; overflow: hidden; }
.accordion-body.is-open { display: block; }

/* Divider with text */
.divider-line::before,
.divider-line::after {
  content: '';
  flex: 1;
  height: 1px;
  background-color: rgba(122,106,86,0.2);
}

/* Long-form prose */
.prose-trekano { max-width: 72ch; }
.prose-trekano p { margin-bottom: 1.375rem; line-height: 1.75; color: #1C1409; font-size: 1rem; }
.prose-trekano p + p { margin-top: 0; }
.prose-trekano h2 { font-family: 'Clash Display', sans-serif; font-size: 1.625rem; font-weight: 700; color: #1C1409; margin-bottom: 0.875rem; margin-top: 2.5rem; line-height: 1.2; }
.prose-trekano h3 { font-family: 'Clash Display', sans-serif; font-size: 1.25rem; font-weight: 700; color: #1C1409; margin-bottom: 0.75rem; margin-top: 2rem; line-height: 1.2; }
.prose-trekano h4 { font-family: 'Clash Display', sans-serif; font-size: 1.0625rem; font-weight: 700; color: #1C1409; margin-bottom: 0.625rem; margin-top: 1.5rem; }
.prose-trekano ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1.375rem; }
.prose-trekano ol { list-style: decimal; padding-left: 1.5rem; margin-bottom: 1.375rem; }
.prose-trekano li { margin-bottom: 0.5rem; line-height: 1.625; }
.prose-trekano a { color: #92400E; text-decoration: underline; text-decoration-thickness: 1px; }
.prose-trekano strong { font-weight: 600; }
.prose-trekano em { font-style: italic; }
.prose-trekano blockquote { border-left: 3px solid #92400E; padding-left: 1.5rem; margin: 2rem 0; color: #7A6A56; font-style: italic; font-size: 1.0625rem; }
.prose-trekano hr { border: none; height: 1px; background-color: rgba(122,106,86,0.2); margin: 2.5rem 0; }
.prose-trekano table { width: 100%; border-collapse: collapse; margin-bottom: 1.5rem; }
.prose-trekano th { background-color: #EDE8DC; padding: 0.625rem 0.875rem; font-weight: 600; font-size: 0.8125rem; letter-spacing: 0.05em; text-transform: uppercase; border: 1px solid rgba(122,106,86,0.2); color: #1C1409; }
.prose-trekano td { padding: 0.625rem 0.875rem; border: 1px solid rgba(122,106,86,0.2); font-size: 0.9375rem; }

/* Form inputs */
input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="search"]:focus,
textarea:focus,
select:focus {
  border-color: #92400E;
  outline: none;
  box-shadow: 0 0 0 2px rgba(146, 64, 14, 0.15);
}

/* Swiper customization */
.swiper-pagination-bullet { background-color: rgba(122,106,86,0.4); }
.swiper-pagination-bullet-active { background-color: #92400E !important; }
.swiper-button-next, .swiper-button-prev { color: #92400E !important; }
.swiper-button-next::after, .swiper-button-prev::after { font-size: 1.25rem !important; }

/* Fancybox */
.fancybox__backdrop { background-color: rgba(28,20,9,0.85); }

/* AOS */
[data-aos] { transition-property: opacity, transform !important; }
[data-aos="fade-up"] { opacity: 0; transform: translateY(20px); }
[data-aos="fade-up"].aos-animate { opacity: 1; transform: translateY(0); }
[data-aos="fade-in"] { opacity: 0; }
[data-aos="fade-in"].aos-animate { opacity: 1; }
[data-aos="fade-right"] { opacity: 0; transform: translateX(-20px); }
[data-aos="fade-right"].aos-animate { opacity: 1; transform: translateX(0); }
[data-aos="zoom-in"] { opacity: 0; transform: scale(0.95); }
[data-aos="zoom-in"].aos-animate { opacity: 1; transform: scale(1); }

/* Print */
@media print {
  header, footer, .cookie-banner, [data-target="cookies.banner"] { display: none !important; }
}
