/* ORELAVON REVIEW — css/style.css */
/* ============================================================
   Orelavon Press — css/style.css
   Prebuilt Tailwind v4.1.5 utility output
   Design: Premium Soft (K_FAMILY=3)
   Palette: Deep Dark bg + Burgundy-Wine accent (muted)
   Fonts: PP Editorial New + Sohne (K_FONT=0)
   Layout: Bento blocks (K_LAYOUT=3)
   ============================================================ */

@import url('https://api.fontshare.com/v2/css?f[]=editorial-new@700&f[]=sohne@400,500&display=swap');

@theme {
  --color-bg-primary: #0e0b0d;
  --color-bg-secondary: #161114;
  --color-ink-primary: #f0eaec;
  --color-ink-muted: #8a7b80;
  --color-accent: #8b3a52;
  --font-display: 'Editorial New', 'Fraunces', Georgia, serif;
  --font-body: 'Sohne', 'Inter', system-ui, sans-serif;
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  --shadow-card: 0 2px 16px rgba(0,0,0,0.45);
  --shadow-lift: 0 8px 32px rgba(0,0,0,0.55);
}

/* ── Base reset ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  background-color: #0e0b0d;
  color: #f0eaec;
}

body {
  font-family: var(--font-body);
  background-color: #0e0b0d;
  color: #f0eaec;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
address { font-style: normal; }

/* ── Typography base ─────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.15;
  color: #f0eaec;
}

p { line-height: 1.7; color: #f0eaec; }

/* ── Layout utilities ────────────────────────────────────── */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.items-end { align-items: flex-end; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-end { justify-content: flex-end; }
.justify-start { justify-content: flex-start; }
.grid { display: grid; }
.block { display: block; }
.inline-block { display: inline-block; }
.inline-flex { display: inline-flex; }
.hidden { display: none; }
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.sticky { position: sticky; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.top-0 { top: 0; }
.bottom-0 { bottom: 0; }
.bottom-4 { bottom: 1rem; }
.left-0 { left: 0; }
.right-0 { right: 0; }
.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.z-50 { z-index: 50; }
.overflow-hidden { overflow: hidden; }
.overflow-x-hidden { overflow-x: hidden; }

/* ── Sizing ──────────────────────────────────────────────── */
.w-full { width: 100%; }
.w-auto { width: auto; }
.h-full { height: 100%; }
.h-auto { height: auto; }
.h-screen { height: 100vh; }
.min-h-screen { min-height: 100vh; }
.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; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ── Spacing ─────────────────────────────────────────────── */
.p-0 { padding: 0; }
.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; }
.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; }
.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-4 { padding-top: 1rem; }
.pt-6 { padding-top: 1.5rem; }
.pt-8 { padding-top: 2rem; }
.pb-2 { padding-bottom: 0.5rem; }
.pb-4 { padding-bottom: 1rem; }
.pb-6 { padding-bottom: 1.5rem; }
.pb-8 { padding-bottom: 2rem; }
.pl-4 { padding-left: 1rem; }
.pr-4 { padding-right: 1rem; }
.m-0 { margin: 0; }
.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-12 { margin-top: 3rem; }
.mt-16 { margin-top: 4rem; }
.mt-24 { margin-top: 6rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.ml-auto { margin-left: auto; }
.mr-auto { margin-right: auto; }
.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-10 { gap: 2.5rem; }
.gap-12 { gap: 3rem; }
.gap-16 { gap: 4rem; }
.gap-x-4 { column-gap: 1rem; }
.gap-x-6 { column-gap: 1.5rem; }
.gap-y-4 { row-gap: 1rem; }
.gap-y-6 { row-gap: 1.5rem; }
.gap-y-8 { row-gap: 2rem; }
.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; }

/* ── 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)); }
.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-full { grid-column: 1 / -1; }
.row-span-2 { grid-row: span 2 / span 2; }

/* ── Typography ──────────────────────────────────────────── */
.font-display { font-family: var(--font-display); }
.font-body { font-family: var(--font-body); }
.font-mono { font-family: 'Courier New', monospace; }
.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; }
.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-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.uppercase { text-transform: uppercase; }
.lowercase { text-transform: lowercase; }
.capitalize { text-transform: capitalize; }
.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; }
.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; }
.underline { text-decoration: underline; }
.no-underline { text-decoration: none; }
.decoration-1 { text-decoration-thickness: 1px; }
.underline-offset-4 { text-underline-offset: 4px; }
.line-through { text-decoration: line-through; }
.truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.whitespace-nowrap { white-space: nowrap; }
.text-balance { text-wrap: balance; }
.text-pretty { text-wrap: pretty; }

/* ── Colors (text) ───────────────────────────────────────── */
.text-[#f0eaec] { color: #f0eaec; }
.text-[#8a7b80] { color: #8a7b80; }
.text-[#8b3a52] { color: #8b3a52; }
.text-[#0e0b0d] { color: #0e0b0d; }
.text-[#161114] { color: #161114; }
.text-[#c9a8b4] { color: #c9a8b4; }
.text-[#d4bec4] { color: #d4bec4; }
.text-[#e8dde0] { color: #e8dde0; }
.text-[#6b4f57] { color: #6b4f57; }
.text-white { color: #ffffff; }
.text-[#D8E2DC] { color: #D8E2DC; }

/* ── Colors (background) ─────────────────────────────────── */
.bg-[#0e0b0d] { background-color: #0e0b0d; }
.bg-[#161114] { background-color: #161114; }
.bg-[#1a1518] { background-color: #1a1518; }
.bg-[#1e1820] { background-color: #1e1820; }
.bg-[#8b3a52] { background-color: #8b3a52; }
.bg-[#6b2d40] { background-color: #6b2d40; }
.bg-[#5a2436] { background-color: #5a2436; }
.bg-[#3a1520] { background-color: #3a1520; }
.bg-[#f0eaec] { background-color: #f0eaec; }
.bg-[#c9a8b4] { background-color: #c9a8b4; }
.bg-[rgba(27,21,24,0.95)] { background-color: rgba(27,21,24,0.95); }
.bg-[rgba(139,58,82,0.12)] { background-color: rgba(139,58,82,0.12); }
.bg-[rgba(139,58,82,0.18)] { background-color: rgba(139,58,82,0.18); }
.bg-[rgba(240,234,236,0.04)] { background-color: rgba(240,234,236,0.04); }
.bg-[rgba(240,234,236,0.06)] { background-color: rgba(240,234,236,0.06); }
.bg-[rgba(240,234,236,0.08)] { background-color: rgba(240,234,236,0.08); }
.bg-[rgba(255,255,255,0.05)] { background-color: rgba(255,255,255,0.05); }
.bg-[rgba(255,255,255,0.08)] { background-color: rgba(255,255,255,0.08); }
.bg-[rgba(255,255,255,0.10)] { background-color: rgba(255,255,255,0.10); }
.bg-[rgba(255,255,255,0.100)] { background-color: rgba(255,255,255,0.10); }
.bg-[rgba(27,67,50,0.140)] { background-color: rgba(27,67,50,0.14); }
.bg-transparent { background-color: transparent; }

/* ── Colors (border) ─────────────────────────────────────── */
.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-[#8b3a52] { border-color: #8b3a52; }
.border-[#f0eaec] { border-color: #f0eaec; }
.border-[#3a1520] { border-color: #3a1520; }
.border-[rgba(240,234,236,0.10)] { border-color: rgba(240,234,236,0.10); }
.border-[rgba(240,234,236,0.12)] { border-color: rgba(240,234,236,0.12); }
.border-[rgba(240,234,236,0.15)] { border-color: rgba(240,234,236,0.15); }
.border-[rgba(240,234,236,0.20)] { border-color: rgba(240,234,236,0.20); }
.border-[rgba(139,58,82,0.30)] { border-color: rgba(139,58,82,0.30); }
.border-[rgba(139,58,82,0.40)] { border-color: rgba(139,58,82,0.40); }
.border-[rgba(255,255,255,0.180)] { border-color: rgba(255,255,255,0.18); }
.border-[rgba(216,226,220,0.280)] { border-color: rgba(216,226,220,0.28); }
.divide-y > * + * { border-top-width: 1px; border-top-style: solid; }
.divide-[rgba(240,234,236,0.10)] > * + * { border-top-color: rgba(240,234,236,0.10); }

/* ── Rounded ─────────────────────────────────────────────── */
.rounded { border-radius: 0.25rem; }
.rounded-sm { border-radius: 0.125rem; }
.rounded-md { border-radius: 0.375rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-full { border-radius: 9999px; }
.\[border-radius\:999px\] { border-radius: 999px; }
.\[border-radius\:26px\] { border-radius: 26px; }

/* ── Shadows ─────────────────────────────────────────────── */
.shadow { box-shadow: 0 1px 3px rgba(0,0,0,0.4); }
.shadow-md { box-shadow: 0 4px 6px rgba(0,0,0,0.5); }
.shadow-lg { box-shadow: 0 8px 24px rgba(0,0,0,0.55); }
.shadow-xl { box-shadow: 0 16px 40px rgba(0,0,0,0.6); }
.shadow-[0_2px_16px_rgba(0,0,0,0.45)] { box-shadow: 0 2px 16px rgba(0,0,0,0.45); }
.shadow-[0_8px_32px_rgba(0,0,0,0.55)] { box-shadow: 0 8px 32px rgba(0,0,0,0.55); }
.shadow-[0_20px_60px_rgba(15,23,42,0.24)] { box-shadow: 0 20px 60px rgba(15,23,42,0.24); }

/* ── Opacity ─────────────────────────────────────────────── */
.opacity-0 { opacity: 0; }
.opacity-50 { opacity: 0.5; }
.opacity-70 { opacity: 0.7; }
.opacity-80 { opacity: 0.8; }
.opacity-90 { opacity: 0.9; }
.opacity-100 { opacity: 1; }

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

/* ── Transitions ─────────────────────────────────────────── */
.transition { transition-property: color, background-color, border-color, opacity, box-shadow, transform; transition-timing-function: cubic-bezier(0.4,0,0.2,1); transition-duration: 150ms; }
.transition-all { transition-property: all; transition-timing-function: cubic-bezier(0.4,0,0.2,1); transition-duration: 150ms; }
.transition-colors { transition-property: color, background-color, border-color; transition-timing-function: cubic-bezier(0.4,0,0.2,1); transition-duration: 150ms; }
.transition-opacity { transition-property: opacity; transition-timing-function: cubic-bezier(0.4,0,0.2,1); transition-duration: 300ms; }
.transition-transform { transition-property: transform; transition-timing-function: cubic-bezier(0.4,0,0.2,1); transition-duration: 300ms; }
.duration-150 { transition-duration: 150ms; }
.duration-300 { transition-duration: 300ms; }
.duration-500 { transition-duration: 500ms; }
.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 ──────────────────────────────────────────── */
.object-cover { object-fit: cover; }
.object-contain { object-fit: contain; }
.object-center { object-position: center; }
.object-top { object-position: top; }

/* ── 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; }

/* ── Cursor ──────────────────────────────────────────────── */
.cursor-pointer { cursor: pointer; }

/* ── List ────────────────────────────────────────────────── */
.list-none { list-style: none; }
.list-disc { list-style-type: disc; }
.list-decimal { list-style-type: decimal; }

/* ── Focus ───────────────────────────────────────────────── */
.focus\:outline-none:focus { outline: none; }
.focus\:border-\[#8b3a52\]:focus { border-color: #8b3a52; }
.focus\:ring-0:focus { box-shadow: none; }
.focus\:ring-\[#8b3a52\]:focus { box-shadow: 0 0 0 2px rgba(139,58,82,0.4); }

/* ── Backdrop ────────────────────────────────────────────── */
.backdrop-blur-xl { backdrop-filter: blur(24px); }
.backdrop-blur-sm { backdrop-filter: blur(4px); }

/* ── Hover states ────────────────────────────────────────── */
.hover\:opacity-90:hover { opacity: 0.9; }
.hover\:opacity-80:hover { opacity: 0.8; }
.hover\:text-\[#8b3a52\]:hover { color: #8b3a52; }
.hover\:text-\[#c9a8b4\]:hover { color: #c9a8b4; }
.hover\:text-\[#f0eaec\]:hover { color: #f0eaec; }
.hover\:bg-\[#6b2d40\]:hover { background-color: #6b2d40; }
.hover\:bg-\[rgba(240,234,236,0.08)\]:hover { background-color: rgba(240,234,236,0.08); }
.hover\:border-\[#8b3a52\]:hover { border-color: #8b3a52; }
.hover\:scale-105:hover { transform: scale(1.05); }
.hover\:underline:hover { text-decoration: underline; }
.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; }

/* ── Arbitrary classes ───────────────────────────────────── */
.w-\[calc\(100\%-1\.5rem\)\] { width: calc(100% - 1.5rem); }
.max-w-\[1220px\] { max-width: 1220px; }
.h-\[1px\] { height: 1px; }
.h-\[2px\] { height: 2px; }
.h-\[60px\] { height: 60px; }
.h-\[80px\] { height: 80px; }
.h-\[120px\] { height: 120px; }
.h-\[160px\] { height: 160px; }
.h-\[200px\] { height: 200px; }
.h-\[280px\] { height: 280px; }
.h-\[320px\] { height: 320px; }
.h-\[360px\] { height: 360px; }
.h-\[400px\] { height: 400px; }
.h-\[440px\] { height: 440px; }
.h-\[480px\] { height: 480px; }
.h-\[520px\] { height: 520px; }
.h-\[560px\] { height: 560px; }
.w-\[1px\] { width: 1px; }
.w-\[2px\] { width: 2px; }
.w-\[40px\] { width: 40px; }
.w-\[48px\] { width: 48px; }
.w-\[56px\] { width: 56px; }
.w-\[64px\] { width: 64px; }
.w-\[80px\] { width: 80px; }
.h-\[40px\] { height: 40px; }
.h-\[48px\] { height: 48px; }
.h-\[56px\] { height: 56px; }
.h-\[64px\] { height: 64px; }
.w-\[160px\] { width: 160px; }
.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-\[40px\] { font-size: 40px; }
.text-\[48px\] { font-size: 48px; line-height: 1.05; }
.text-\[56px\] { font-size: 56px; line-height: 1.0; }
.text-\[64px\] { font-size: 64px; line-height: 0.95; }
.text-\[72px\] { font-size: 72px; line-height: 0.92; }
.text-\[80px\] { font-size: 80px; line-height: 0.9; }
.text-\[96px\] { font-size: 96px; line-height: 0.88; }
.leading-\[1\] { line-height: 1; }
.leading-\[1\.1\] { line-height: 1.1; }
.leading-\[1\.15\] { line-height: 1.15; }
.mt-\[2px\] { margin-top: 2px; }
.mt-\[3px\] { margin-top: 3px; }
.pb-\[56\.25\%\] { padding-bottom: 56.25%; }
.left-\[1\.25rem\] { left: 1.25rem; }

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

/* ── Accordion ───────────────────────────────────────────── */
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.accordion-content.open {
  max-height: 400px;
}

/* ── Article body prose styles ───────────────────────────── */
.prose-article h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: #f0eaec;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}
.prose-article h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: #c9a8b4;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}
.prose-article p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #e8dde0;
  margin-bottom: 1.25rem;
}
.prose-article ul {
  list-style: none;
  margin-bottom: 1.5rem;
}
.prose-article ul li {
  position: relative;
  padding-left: 1.25rem;
  color: #e8dde0;
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 0.5rem;
}
.prose-article ul li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: #8b3a52;
}
.prose-article blockquote {
  border-left: 2px solid #8b3a52;
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  color: #c9a8b4;
  line-height: 1.5;
}

/* ── Form inputs ─────────────────────────────────────────── */
input, textarea, select {
  background-color: #161114;
  color: #f0eaec;
  border: 1px solid rgba(240,234,236,0.15);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color 0.2s;
  outline: none;
  width: 100%;
  padding: 0.75rem 1rem;
}
input:focus, textarea:focus, select:focus {
  border-color: #8b3a52;
}
input::placeholder, textarea::placeholder {
  color: #8a7b80;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (min-width: 640px) {
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sm\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .sm\:flex-row { flex-direction: row; }
  .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\:py-12 { padding-top: 3rem; padding-bottom: 3rem; }
}

@media (min-width: 768px) {
  .md\:flex { display: flex; }
  .md\:hidden { display: none; }
  .md\:block { display: block; }
  .md\:inline-block { display: inline-block; }
  .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\:flex-row { flex-direction: row; }
  .md\:flex-col { flex-direction: column; }
  .md\:items-center { align-items: center; }
  .md\:justify-between { justify-content: space-between; }
  .md\:justify-end { justify-content: flex-end; }
  .md\:gap-4 { gap: 1rem; }
  .md\:gap-6 { gap: 1.5rem; }
  .md\:gap-8 { gap: 2rem; }
  .md\:gap-12 { gap: 3rem; }
  .md\:gap-16 { gap: 4rem; }
  .md\:mt-0 { margin-top: 0; }
  .md\:px-8 { padding-left: 2rem; padding-right: 2rem; }
  .md\:py-16 { padding-top: 4rem; padding-bottom: 4rem; }
  .md\:py-24 { padding-top: 6rem; padding-bottom: 6rem; }
  .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-\[56px\] { font-size: 56px; line-height: 1.0; }
  .md\:text-\[72px\] { font-size: 72px; line-height: 0.92; }
  .md\:text-\[80px\] { font-size: 80px; line-height: 0.9; }
  .md\:aspect-\[21\/9\] { aspect-ratio: 21 / 9; }
  .md\:items-start { align-items: flex-start; }
  .md\:w-auto { width: auto; }
  .md\:max-w-none { max-width: none; }
}

@media (min-width: 1024px) {
  .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\:text-5xl { font-size: 3rem; line-height: 1; }
  .lg\:text-6xl { font-size: 3.75rem; line-height: 1; }
  .lg\:text-\[80px\] { font-size: 80px; line-height: 0.9; }
  .lg\:text-\[96px\] { font-size: 96px; line-height: 0.88; }
  .lg\:px-8 { padding-left: 2rem; padding-right: 2rem; }
  .lg\:py-32 { padding-top: 8rem; padding-bottom: 8rem; }
  .lg\:gap-8 { gap: 2rem; }
  .lg\:flex { display: flex; }
}

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

/* ── Decorative: hairline dividers ───────────────────────── */
.hairline {
  width: 100%;
  height: 1px;
  background-color: rgba(240,234,236,0.10);
}

/* ── Decorative: rotated label ───────────────────────────── */
.label-rotated {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8a7b80;
}

/* ── Decorative: section number markers ──────────────────── */
.section-number {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  color: rgba(139,58,82,0.18);
  line-height: 1;
  user-select: none;
}

/* ── Stats strip ─────────────────────────────────────────── */
.stat-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: #8b3a52;
  line-height: 1;
}

/* ── Tag chip ────────────────────────────────────────────── */
.tag-chip {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: rgba(139,58,82,0.15);
  border: 1px solid rgba(139,58,82,0.35);
  border-radius: 999px;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #c9a8b4;
}

/* ── Author bio box ──────────────────────────────────────── */
.author-bio-box {
  border: 1px solid rgba(240,234,236,0.12);
  background-color: rgba(240,234,236,0.04);
  padding: 1.5rem;
}

/* ── Related card ────────────────────────────────────────── */
.related-card {
  border-top: 1px solid rgba(240,234,236,0.12);
  padding-top: 1.5rem;
  transition: opacity 0.2s;
}
.related-card:hover { opacity: 0.8; }

/* ── Bento grid ──────────────────────────────────────────── */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 1rem;
}
@media (min-width: 768px) {
  .bento-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
  .bento-span-7 { grid-column: span 7 / span 7; }
  .bento-span-5 { grid-column: span 5 / span 5; }
  .bento-span-4 { grid-column: span 4 / span 4; }
  .bento-span-8 { grid-column: span 8 / span 8; }
  .bento-span-6 { grid-column: span 6 / span 6; }
  .bento-span-12 { grid-column: span 12 / span 12; }
  .bento-row-2 { grid-row: span 2 / span 2; }
}

/* ── Cookie banner radius override ──────────────────────── */
.cookie-banner-inner {
  border-radius: 26px;
  background-color: rgba(27, 21, 24, 0.92);
  border: 1px solid rgba(255,255,255,0.10);
}
