/* ============================================================
   Ardek Compendium — css/style.css
   Prebuilt Tailwind v4.1.5 output
   Design Family: Techno Cyberpunk (adapted, cream bg)
   Palette: Warm Cream + Muted Burgundy-Wine
   Fonts: Clash Display + Satoshi
   ============================================================ */

@import "tailwindcss";

@theme {
  --color-bg-primary: #F5F0EB;
  --color-bg-secondary: #EDE7E0;
  --color-ink-primary: #1A1618;
  --color-ink-muted: #6B5E63;
  --color-accent: #8B4558;
  --color-accent-light: #B07080;
  --color-accent-dark: #6B2F40;
  --color-border: rgba(107,94,99,0.20);
  --color-border-strong: rgba(26,22,24,0.30);
  --font-display: 'Clash Display', sans-serif;
  --font-body: 'Satoshi', sans-serif;
  --font-mono: 'Space Mono', monospace;
  --radius-sm: 2px;
  --radius-md: 4px;
  --radius-lg: 6px;
  --shadow-offset: 4px 4px 0px rgba(26,22,24,0.18);
  --shadow-offset-lg: 6px 6px 0px rgba(26,22,24,0.16);
  --transition-base: 200ms ease;
}

/* === BASE RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background-color: #F5F0EB; color: #1A1618; font-family: 'Satoshi', sans-serif; font-size: 16px; line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
address { font-style: normal; }

/* === LAYOUT === */
.container { width: 100%; max-width: 1280px; margin-left: auto; margin-right: auto; padding-left: 1.5rem; padding-right: 1.5rem; }
.max-w-7xl { max-width: 80rem; margin-left: auto; margin-right: auto; }
.max-w-6xl { max-width: 72rem; margin-left: auto; margin-right: auto; }
.max-w-5xl { max-width: 64rem; margin-left: auto; margin-right: auto; }
.max-w-4xl { max-width: 56rem; margin-left: auto; margin-right: auto; }
.max-w-3xl { max-width: 48rem; margin-left: auto; margin-right: auto; }
.max-w-2xl { max-width: 42rem; margin-left: auto; margin-right: auto; }
.max-w-xl { max-width: 36rem; margin-left: auto; margin-right: auto; }
.max-w-lg { max-width: 32rem; margin-left: auto; margin-right: auto; }

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

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

.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-12 { grid-template-columns: repeat(12, minmax(0, 1fr)); }
.col-span-1 { grid-column: span 1; }
.col-span-2 { grid-column: span 2; }
.col-span-3 { grid-column: span 3; }
.col-span-4 { grid-column: span 4; }
.col-span-5 { grid-column: span 5; }
.col-span-6 { grid-column: span 6; }
.col-span-7 { grid-column: span 7; }
.col-span-8 { grid-column: span 8; }
.col-span-9 { grid-column: span 9; }
.col-span-10 { grid-column: span 10; }
.col-span-12 { grid-column: span 12; }
.col-start-1 { grid-column-start: 1; }
.col-start-2 { grid-column-start: 2; }
.col-start-7 { grid-column-start: 7; }
.row-span-2 { grid-row: span 2; }

.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-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; }
.gap-y-12 { row-gap: 3rem; }

/* === POSITION === */
.static { position: static; }
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.sticky { position: sticky; }
.top-0 { top: 0; }
.top-4 { top: 1rem; }
.right-0 { right: 0; }
.bottom-0 { bottom: 0; }
.bottom-4 { bottom: 1rem; }
.left-0 { left: 0; }
.left-1\/2 { left: 50%; }
.inset-0 { inset: 0; }
.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.z-30 { z-index: 30; }
.z-40 { z-index: 40; }
.z-50 { z-index: 50; }

/* === SIZING === */
.w-full { width: 100%; }
.w-auto { width: auto; }
.w-4 { width: 1rem; }
.w-5 { width: 1.25rem; }
.w-6 { width: 1.5rem; }
.w-8 { width: 2rem; }
.w-10 { width: 2.5rem; }
.w-12 { width: 3rem; }
.w-16 { width: 4rem; }
.w-20 { width: 5rem; }
.w-24 { width: 6rem; }
.w-32 { width: 8rem; }
.w-48 { width: 12rem; }
.w-64 { width: 16rem; }
.w-1\/2 { width: 50%; }
.w-1\/3 { width: 33.333%; }
.w-2\/3 { width: 66.667%; }
.w-3\/4 { width: 75%; }
.h-full { height: 100%; }
.h-auto { height: auto; }
.h-1 { height: 0.25rem; }
.h-2 { height: 0.5rem; }
.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-48 { height: 12rem; }
.h-64 { height: 16rem; }
.h-80 { height: 20rem; }
.h-96 { height: 24rem; }
.h-screen { height: 100vh; }
.min-h-screen { min-height: 100vh; }
.min-h-0 { min-height: 0; }
.min-w-0 { min-width: 0; }
.max-h-0 { max-height: 0; }
.max-h-screen { max-height: 100vh; }
.aspect-video { aspect-ratio: 16/9; }
.aspect-square { aspect-ratio: 1/1; }
.aspect-\[3\/2\] { aspect-ratio: 3/2; }
.aspect-\[16\/9\] { aspect-ratio: 16/9; }
.aspect-\[21\/9\] { aspect-ratio: 21/9; }
.aspect-\[4\/3\] { aspect-ratio: 4/3; }

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

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

/* === TYPOGRAPHY === */
.font-display { font-family: 'Clash Display', sans-serif; }
.font-body { font-family: 'Satoshi', sans-serif; }
.font-mono { font-family: 'Space Mono', monospace; }
.font-sans { font-family: 'Satoshi', sans-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.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-\[11px\] { font-size: 11px; }
.text-\[13px\] { font-size: 13px; }
.text-\[15px\] { font-size: 15px; }
.text-\[17px\] { font-size: 17px; }
.text-\[22px\] { font-size: 22px; }
.text-\[28px\] { font-size: 28px; }
.text-\[32px\] { font-size: 32px; }
.text-\[40px\] { font-size: 40px; }
.text-\[48px\] { font-size: 48px; }
.text-\[56px\] { font-size: 56px; }
.text-\[64px\] { font-size: 64px; }
.text-\[72px\] { font-size: 72px; }
.text-\[80px\] { font-size: 80px; }
.text-\[90px\] { font-size: 90px; line-height: 1; }
.text-\[clamp\(2\.5rem\,6vw\,5rem\)\] { font-size: clamp(2.5rem,6vw,5rem); }
.text-\[clamp\(3rem\,8vw\,6rem\)\] { font-size: clamp(3rem,8vw,6rem); }
.text-\[clamp\(1\.5rem\,3vw\,2\.25rem\)\] { font-size: clamp(1.5rem,3vw,2.25rem); }

.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-black { font-weight: 900; }

.italic { font-style: italic; }
.not-italic { font-style: normal; }
.uppercase { text-transform: uppercase; }
.lowercase { text-transform: lowercase; }
.capitalize { text-transform: capitalize; }
.normal-case { text-transform: none; }

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

.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-\[1\.1\] { line-height: 1.1; }
.leading-\[1\.2\] { line-height: 1.2; }
.leading-\[1\.3\] { line-height: 1.3; }
.leading-\[1\.7\] { line-height: 1.7; }
.leading-\[1\.8\] { line-height: 1.8; }

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

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

.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; }
.text-balance { text-wrap: balance; }
.text-pretty { text-wrap: pretty; }

/* === COLORS === */
.text-\[#F5F0EB\] { color: #F5F0EB; }
.text-\[#EDE7E0\] { color: #EDE7E0; }
.text-\[#1A1618\] { color: #1A1618; }
.text-\[#6B5E63\] { color: #6B5E63; }
.text-\[#8B4558\] { color: #8B4558; }
.text-\[#B07080\] { color: #B07080; }
.text-\[#6B2F40\] { color: #6B2F40; }
.text-\[#ffffff\] { color: #ffffff; }
.text-\[#D8C8CC\] { color: #D8C8CC; }
.text-white { color: #ffffff; }
.text-black { color: #000000; }
.text-inherit { color: inherit; }

.bg-\[#F5F0EB\] { background-color: #F5F0EB; }
.bg-\[#EDE7E0\] { background-color: #EDE7E0; }
.bg-\[#E8E0D8\] { background-color: #E8E0D8; }
.bg-\[#1A1618\] { background-color: #1A1618; }
.bg-\[#6B5E63\] { background-color: #6B5E63; }
.bg-\[#8B4558\] { background-color: #8B4558; }
.bg-\[#B07080\] { background-color: #B07080; }
.bg-\[#6B2F40\] { background-color: #6B2F40; }
.bg-\[#2A1E22\] { background-color: #2A1E22; }
.bg-\[#ffffff\] { background-color: #ffffff; }
.bg-transparent { background-color: transparent; }
.bg-white { background-color: #ffffff; }
.bg-\[rgba\(26\,22\,24\,0\.04\)\] { background-color: rgba(26,22,24,0.04); }
.bg-\[rgba\(26\,22\,24\,0\.06\)\] { background-color: rgba(26,22,24,0.06); }
.bg-\[rgba\(26\,22\,24\,0\.08\)\] { background-color: rgba(26,22,24,0.08); }
.bg-\[rgba\(139\,69\,88\,0\.08\)\] { background-color: rgba(139,69,88,0.08); }
.bg-\[rgba\(139\,69\,88\,0\.12\)\] { background-color: rgba(139,69,88,0.12); }
.bg-\[rgba\(139\,69\,88\,0\.15\)\] { background-color: rgba(139,69,88,0.15); }

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

.border-\[#1A1618\] { border-color: #1A1618; }
.border-\[#8B4558\] { border-color: #8B4558; }
.border-\[#6B5E63\] { border-color: #6B5E63; }
.border-\[#EDE7E0\] { border-color: #EDE7E0; }
.border-\[rgba\(107\,94\,99\,0\.20\)\] { border-color: rgba(107,94,99,0.20); }
.border-\[rgba\(107\,94\,99\,0\.30\)\] { border-color: rgba(107,94,99,0.30); }
.border-\[rgba\(26\,22\,24\,0\.15\)\] { border-color: rgba(26,22,24,0.15); }
.border-\[rgba\(26\,22\,24\,0\.20\)\] { border-color: rgba(26,22,24,0.20); }
.border-\[rgba\(26\,22\,24\,0\.30\)\] { border-color: rgba(26,22,24,0.30); }
.border-\[rgba\(139\,69\,88\,0\.30\)\] { border-color: rgba(139,69,88,0.30); }
.border-\[rgba\(255\,255\,255\,0\.18\)\] { border-color: rgba(255,255,255,0.18); }
.border-white { border-color: #ffffff; }
.divide-y > * + * { border-top-width: 1px; border-top-style: solid; }
.divide-\[rgba\(107\,94\,99\,0\.20\)\] > * + * { border-top-color: rgba(107,94,99,0.20); }

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

/* === EFFECTS === */
.shadow-sm { box-shadow: 0 1px 2px rgba(0,0,0,0.05); }
.shadow { box-shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06); }
.shadow-md { box-shadow: 0 4px 6px rgba(0,0,0,0.07), 0 2px 4px rgba(0,0,0,0.06); }
.shadow-lg { box-shadow: 0 10px 15px rgba(0,0,0,0.1), 0 4px 6px rgba(0,0,0,0.05); }
.shadow-\[4px_4px_0px_rgba\(26\,22\,24\,0\.18\)\] { box-shadow: 4px 4px 0px rgba(26,22,24,0.18); }
.shadow-\[6px_6px_0px_rgba\(26\,22\,24\,0\.16\)\] { box-shadow: 6px 6px 0px rgba(26,22,24,0.16); }
.shadow-\[3px_3px_0px_rgba\(139\,69\,88\,0\.30\)\] { box-shadow: 3px 3px 0px rgba(139,69,88,0.30); }
.shadow-none { box-shadow: none; }
.ring-1 { box-shadow: inset 0 0 0 1px; }
.ring-\[#8B4558\] { --ring-color: #8B4558; }

.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-80 { opacity: 0.8; }
.opacity-90 { opacity: 0.9; }
.opacity-100 { opacity: 1; }

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

/* === TRANSFORMS === */
.rotate-\[-90deg\] { transform: rotate(-90deg); }
.rotate-90 { transform: rotate(90deg); }
.rotate-180 { transform: rotate(180deg); }
.-translate-x-1\/2 { transform: translateX(-50%); }
.translate-y-full { transform: translateY(100%); }
.-translate-y-px { transform: translateY(-1px); }
.scale-100 { transform: scale(1); }
.scale-105 { transform: scale(1.05); }
.scale-110 { transform: scale(1.1); }
.origin-top-left { transform-origin: top left; }

/* === TRANSITIONS === */
.transition { transition: all 150ms ease; }
.transition-all { transition: all 200ms ease; }
.transition-colors { transition: color 200ms ease, background-color 200ms ease, border-color 200ms ease; }
.transition-opacity { transition: opacity 300ms ease; }
.transition-transform { transition: transform 300ms ease; }
.duration-150 { transition-duration: 150ms; }
.duration-200 { transition-duration: 200ms; }
.duration-300 { transition-duration: 300ms; }
.duration-500 { transition-duration: 500ms; }
.ease-in { transition-timing-function: ease-in; }
.ease-out { transition-timing-function: ease-out; }
.ease-in-out { transition-timing-function: ease-in-out; }

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

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

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

/* === MISC UTILITIES === */
.list-none { list-style: 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; }
.select-none { user-select: none; }
.resize-none { resize: none; }
.outline-none { outline: none; }
.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; }
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-8 > * + * { margin-top: 2rem; }
.space-y-12 > * + * { margin-top: 3rem; }
.space-x-2 > * + * { margin-left: 0.5rem; }
.space-x-4 > * + * { margin-left: 1rem; }

/* === HOVER STATES === */
.hover\:text-\[#8B4558\]:hover { color: #8B4558; }
.hover\:text-\[#6B2F40\]:hover { color: #6B2F40; }
.hover\:text-\[#1A1618\]:hover { color: #1A1618; }
.hover\:text-\[#F5F0EB\]:hover { color: #F5F0EB; }
.hover\:bg-\[#8B4558\]:hover { background-color: #8B4558; }
.hover\:bg-\[#6B2F40\]:hover { background-color: #6B2F40; }
.hover\:bg-\[#1A1618\]:hover { background-color: #1A1618; }
.hover\:bg-\[rgba\(26\,22\,24\,0\.06\)\]:hover { background-color: rgba(26,22,24,0.06); }
.hover\:border-\[#8B4558\]:hover { border-color: #8B4558; }
.hover\:border-\[#1A1618\]:hover { border-color: #1A1618; }
.hover\:opacity-90:hover { opacity: 0.9; }
.hover\:opacity-80:hover { opacity: 0.8; }
.hover\:scale-105:hover { transform: scale(1.05); }
.hover\:shadow-\[6px_6px_0px_rgba\(26\,22\,24\,0\.22\)\]:hover { box-shadow: 6px 6px 0px rgba(26,22,24,0.22); }
.hover\:underline:hover { text-decoration: underline; }
.hover\:-translate-y-px:hover { transform: translateY(-1px); }

/* === GROUP HOVER === */
.group { }
.group:hover .group-hover\:scale-105 { transform: scale(1.05); }
.group:hover .group-hover\:underline { text-decoration: underline; }
.group:hover .group-hover\:text-\[#8B4558\] { color: #8B4558; }
.group:hover .group-hover\:opacity-100 { opacity: 1; }
.group:hover .group-hover\:border-\[#8B4558\] { border-color: #8B4558; }

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

/* === ACTIVE === */
.active\:opacity-80:active { opacity: 0.8; }

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

/* sm: 640px */
@media (min-width: 640px) {
  .sm\:flex { display: flex; }
  .sm\:hidden { display: none; }
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sm\:text-base { font-size: 1rem; line-height: 1.5rem; }
  .sm\:text-lg { font-size: 1.125rem; line-height: 1.75rem; }
  .sm\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
  .sm\:text-2xl { font-size: 1.5rem; line-height: 2rem; }
  .sm\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
  .sm\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
  .sm\:px-8 { padding-left: 2rem; padding-right: 2rem; }
}

/* md: 768px */
@media (min-width: 768px) {
  .md\:flex { display: flex; }
  .md\:block { display: block; }
  .md\:hidden { display: none; }
  .md\:inline-block { display: inline-block; }
  .md\:grid { display: grid; }
  .md\:flex-row { flex-direction: row; }
  .md\:flex-col { flex-direction: column; }
  .md\:items-center { align-items: center; }
  .md\:items-start { align-items: flex-start; }
  .md\:justify-between { justify-content: space-between; }
  .md\:justify-end { justify-content: flex-end; }
  .md\:mt-0 { margin-top: 0; }
  .md\:mt-4 { margin-top: 1rem; }
  .md\:mt-8 { margin-top: 2rem; }
  .md\:mb-0 { margin-bottom: 0; }
  .md\:px-8 { padding-left: 2rem; padding-right: 2rem; }
  .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\:pt-16 { padding-top: 4rem; }
  .md\:pt-24 { padding-top: 6rem; }
  .md\:pb-16 { padding-bottom: 4rem; }
  .md\:col-span-1 { grid-column: span 1; }
  .md\:col-span-2 { grid-column: span 2; }
  .md\:col-span-3 { grid-column: span 3; }
  .md\:col-span-4 { grid-column: span 4; }
  .md\:col-span-6 { grid-column: span 6; }
  .md\:col-span-8 { grid-column: span 8; }
  .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\: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\: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.1; }
  .md\:text-6xl { font-size: 3.75rem; line-height: 1; }
  .md\:text-7xl { font-size: 4.5rem; line-height: 1; }
  .md\:text-\[56px\] { font-size: 56px; }
  .md\:text-\[72px\] { font-size: 72px; }
  .md\:text-\[80px\] { font-size: 80px; }
  .md\:w-1\/2 { width: 50%; }
  .md\:w-1\/3 { width: 33.333%; }
  .md\:w-2\/3 { width: 66.667%; }
  .md\:w-auto { width: auto; }
  .md\:max-w-none { max-width: none; }
  .md\:aspect-\[21\/9\] { aspect-ratio: 21/9; }
  .md\:justify-center { justify-content: center; }
  .md\:text-left { text-align: left; }
  .md\:text-center { text-align: center; }
  .md\:flex-wrap { flex-wrap: wrap; }
}

/* lg: 1024px */
@media (min-width: 1024px) {
  .lg\:flex { display: flex; }
  .lg\:hidden { display: none; }
  .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; }
  .lg\:col-span-4 { grid-column: span 4; }
  .lg\:col-span-8 { grid-column: span 8; }
  .lg\:gap-12 { gap: 3rem; }
  .lg\:gap-16 { gap: 4rem; }
  .lg\:px-8 { padding-left: 2rem; padding-right: 2rem; }
  .lg\:py-24 { padding-top: 6rem; padding-bottom: 6rem; }
  .lg\:py-32 { padding-top: 8rem; padding-bottom: 8rem; }
  .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-\[80px\] { font-size: 80px; }
  .lg\:text-\[96px\] { font-size: 96px; line-height: 1; }
  .lg\:items-start { align-items: flex-start; }
  .lg\:flex-row { flex-direction: row; }
}

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

/* ============================================================
   SITE-SPECIFIC COMPONENT STYLES
   ============================================================ */

/* Terminal label style */
.terminal-label {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #6B5E63;
}

/* ASCII divider */
.ascii-divider {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(107,94,99,0.50);
  overflow: hidden;
  white-space: nowrap;
}

/* Section number marker */
.section-marker {
  font-family: 'Clash Display', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: rgba(107,94,99,0.60);
}

/* Rotated vertical label */
.label-vertical {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(107,94,99,0.50);
}

/* Article body prose */
.prose-ardek h2 {
  font-family: 'Clash Display', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1A1618;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  line-height: 1.25;
}
.prose-ardek h3 {
  font-family: 'Clash Display', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #1A1618;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}
.prose-ardek p {
  margin-bottom: 1.25rem;
  line-height: 1.7;
  color: #1A1618;
  font-size: 1.0625rem;
}
.prose-ardek ul, .prose-ardek ol {
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
  color: #1A1618;
}
.prose-ardek li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}
.prose-ardek blockquote {
  border-left: 3px solid #8B4558;
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  color: #1A1618;
  font-size: 1.125rem;
  line-height: 1.6;
}
.prose-ardek strong { font-weight: 700; }
.prose-ardek em { font-style: italic; }
.prose-ardek a { color: #8B4558; text-decoration: underline; text-underline-offset: 3px; }

/* Hard-offset card */
.card-offset {
  border: 1px solid rgba(26,22,24,0.20);
  box-shadow: 4px 4px 0px rgba(26,22,24,0.12);
  background-color: #F5F0EB;
  transition: box-shadow 200ms ease, transform 200ms ease;
}
.card-offset:hover {
  box-shadow: 6px 6px 0px rgba(26,22,24,0.18);
  transform: translateY(-2px);
}

/* Marquee animation */
@keyframes marquee-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marquee-left 28s linear infinite;
}

/* Accordion */
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 350ms ease;
}
.accordion-content.open {
  max-height: 500px;
}

/* Stats strip number */
.stat-number {
  font-family: 'Clash Display', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1;
  color: #1A1618;
}

/* Input styles */
input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select {
  background-color: #F5F0EB;
  border: 1px solid rgba(107,94,99,0.30);
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-family: 'Satoshi', sans-serif;
  color: #1A1618;
  width: 100%;
  transition: border-color 200ms ease;
  outline: none;
  appearance: none;
  border-radius: 0;
}
input:focus, textarea:focus, select:focus {
  border-color: #8B4558;
}
textarea { resize: none; }

/* Swiper custom */
.swiper-pagination-bullet { background: #6B5E63; opacity: 0.4; }
.swiper-pagination-bullet-active { background: #8B4558; opacity: 1; }
