/* css/style.css — Olamiren — Prebuilt Tailwind v4.1.5 */
/* Brand: Olamiren | K_FAMILY=3 Premium Soft (dark) | K_HUE=4 burgundy-wine | K_SAT=0 muted */

@theme {
  --color-bg-primary: #0D0B0C;
  --color-bg-secondary: #181316;
  --color-ink-primary: #EDE8E5;
  --color-ink-muted: #695F63;
  --color-accent: #8C3A52;
  --color-accent-light: #B05A72;
  --color-accent-dim: #5A1F30;
  --color-border: rgba(237,232,229,0.12);
  --color-border-muted: rgba(237,232,229,0.06);
  --font-display: 'PP Editorial New', 'Fraunces', Georgia, serif;
  --font-body: 'Sohne', 'Inter', system-ui, sans-serif;
  --font-mono: 'Space Mono', 'Courier New', monospace;
  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-soft: 0 4px 32px rgba(0,0,0,0.55);
  --shadow-card: 0 2px 16px rgba(0,0,0,0.38);
  --transition-base: 200ms ease;
}

/* ============================================================
   BASE RESET & GLOBAL
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
body { background-color: #0D0B0C; color: #EDE8E5; font-family: 'Sohne', 'Inter', system-ui, sans-serif; font-size: 16px; line-height: 1.6; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; }
address { font-style: normal; }
::selection { background: #8C3A52; color: #EDE8E5; }
:focus-visible { outline: 2px solid #8C3A52; outline-offset: 2px; }

/* ============================================================
   TYPOGRAPHY BASE
   ============================================================ */
h1, h2, h3, h4, h5, h6 { font-family: 'PP Editorial New', 'Fraunces', Georgia, serif; line-height: 1.15; letter-spacing: -0.02em; }
p { line-height: 1.65; }
small { font-size: 0.8125rem; }
strong { font-weight: 600; }

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container { width: 100%; max-width: 1280px; margin-left: auto; margin-right: auto; padding-left: 1.25rem; padding-right: 1.25rem; }
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.grid { display: grid; }
.block { display: block; }
.inline-block { display: inline-block; }
.hidden { display: none; }
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.sticky { position: sticky; }
.top-0 { top: 0; }
.top-4 { top: 1rem; }
.bottom-0 { bottom: 0; }
.bottom-4 { bottom: 1rem; }
.left-0 { left: 0; }
.left-1\/2 { left: 50%; }
.right-0 { right: 0; }
.inset-0 { inset: 0; }
.z-0 { z-index: 0; }
.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.z-30 { z-index: 30; }
.z-40 { z-index: 40; }
.z-50 { z-index: 50; }
.overflow-hidden { overflow: hidden; }
.overflow-x-hidden { overflow-x: hidden; }
.overflow-auto { overflow: auto; }
.w-full { width: 100%; }
.w-auto { width: auto; }
.w-1\/2 { width: 50%; }
.w-1\/3 { width: 33.333333%; }
.w-2\/3 { width: 66.666667%; }
.w-screen { width: 100vw; }
.h-full { height: 100%; }
.h-auto { height: auto; }
.h-screen { height: 100vh; }
.h-px { height: 1px; }
.min-h-screen { min-height: 100vh; }
.min-h-\[60vh\] { min-height: 60vh; }
.min-h-\[70vh\] { min-height: 70vh; }
.min-h-\[80vh\] { min-height: 80vh; }
.max-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-\[1220px\] { max-width: 1220px; }
.max-w-\[900px\] { max-width: 900px; }
.max-w-\[700px\] { max-width: 700px; }
.max-w-\[560px\] { max-width: 560px; }
.mx-auto { margin-left: auto; margin-right: auto; }
.my-auto { margin-top: auto; margin-bottom: auto; }
.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; }
.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.flex-wrap { flex-wrap: wrap; }
.flex-nowrap { flex-wrap: nowrap; }
.flex-1 { flex: 1 1 0%; }
.flex-none { flex: none; }
.flex-shrink-0 { flex-shrink: 0; }
.flex-grow { flex-grow: 1; }
.self-start { align-self: flex-start; }
.self-center { align-self: center; }
.self-end { align-self: flex-end; }
.self-stretch { align-self: stretch; }

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

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

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.font-display { font-family: 'PP Editorial New', 'Fraunces', Georgia, serif; }
.font-body { font-family: 'Sohne', 'Inter', system-ui, sans-serif; }
.font-mono { font-family: 'Space Mono', 'Courier New', monospace; }
.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.05; }
.text-7xl { font-size: 4.5rem; line-height: 1.02; }
.text-8xl { font-size: 6rem; line-height: 1; }
.text-\[11px\] { font-size: 11px; }
.text-\[13px\] { font-size: 13px; }
.text-\[14px\] { font-size: 14px; }
.text-\[15px\] { font-size: 15px; }
.text-\[40px\] { font-size: 40px; }
.text-\[52px\] { font-size: 52px; }
.text-\[64px\] { font-size: 64px; }
.text-\[72px\] { font-size: 72px; }
.text-\[80px\] { font-size: 80px; }
.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; }
.leading-none { line-height: 1; }
.leading-tight { line-height: 1.2; }
.leading-snug { line-height: 1.375; }
.leading-normal { line-height: 1.5; }
.leading-relaxed { line-height: 1.65; }
.leading-loose { line-height: 2; }
.leading-\[1\.1\] { line-height: 1.1; }
.leading-\[1\.15\] { line-height: 1.15; }
.leading-\[1\.3\] { line-height: 1.3; }
.tracking-tighter { letter-spacing: -0.05em; }
.tracking-tight { letter-spacing: -0.025em; }
.tracking-normal { letter-spacing: 0; }
.tracking-wide { letter-spacing: 0.025em; }
.tracking-wider { letter-spacing: 0.05em; }
.tracking-widest { letter-spacing: 0.12em; }
.tracking-\[-0\.02em\] { letter-spacing: -0.02em; }
.tracking-\[-0\.03em\] { letter-spacing: -0.03em; }
.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.uppercase { text-transform: uppercase; }
.lowercase { text-transform: lowercase; }
.capitalize { text-transform: capitalize; }
.normal-case { text-transform: none; }
.underline { text-decoration: underline; }
.no-underline { text-decoration: none; }
.underline-offset-4 { text-underline-offset: 4px; }
.decoration-1 { text-decoration-thickness: 1px; }
.line-clamp-2 { overflow: hidden; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.line-clamp-3 { overflow: hidden; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 3; }
.whitespace-nowrap { white-space: nowrap; }
.break-words { word-break: break-word; overflow-wrap: break-word; }

/* ============================================================
   COLOR UTILITIES — BACKGROUNDS
   ============================================================ */
.bg-\[\#0D0B0C\] { background-color: #0D0B0C; }
.bg-\[\#181316\] { background-color: #181316; }
.bg-\[\#1E1820\] { background-color: #1E1820; }
.bg-\[\#231E26\] { background-color: #231E26; }
.bg-\[\#EDE8E5\] { background-color: #EDE8E5; }
.bg-\[\#8C3A52\] { background-color: #8C3A52; }
.bg-\[\#B05A72\] { background-color: #B05A72; }
.bg-\[\#5A1F30\] { background-color: #5A1F30; }
.bg-\[\#695F63\] { background-color: #695F63; }
.bg-transparent { background-color: transparent; }
.bg-black { background-color: #000; }
.bg-white\/5 { background-color: rgba(255,255,255,0.05); }
.bg-white\/10 { background-color: rgba(255,255,255,0.10); }
.bg-white\/20 { background-color: rgba(255,255,255,0.20); }
.bg-\[\#EDE8E5\]\/5 { background-color: rgba(237,232,229,0.05); }
.bg-\[\#EDE8E5\]\/8 { background-color: rgba(237,232,229,0.08); }
.bg-\[\#EDE8E5\]\/10 { background-color: rgba(237,232,229,0.10); }
.bg-\[\#EDE8E5\]\/15 { background-color: rgba(237,232,229,0.15); }
.bg-\[\#8C3A52\]\/10 { background-color: rgba(140,58,82,0.10); }
.bg-\[\#8C3A52\]\/15 { background-color: rgba(140,58,82,0.15); }
.bg-\[\#8C3A52\]\/20 { background-color: rgba(140,58,82,0.20); }
.bg-\[rgba\(27\,38\,44\,0\.780\)\] { background-color: rgba(27,38,44,0.780); }
.bg-\[rgba\(255\,255\,255\,0\.100\)\] { background-color: rgba(255,255,255,0.100); }
.bg-\[rgba\(27\,67\,50\,0\.140\)\] { background-color: rgba(27,67,50,0.140); }

/* ============================================================
   COLOR UTILITIES — TEXT
   ============================================================ */
.text-\[\#0D0B0C\] { color: #0D0B0C; }
.text-\[\#EDE8E5\] { color: #EDE8E5; }
.text-\[\#8C3A52\] { color: #8C3A52; }
.text-\[\#B05A72\] { color: #B05A72; }
.text-\[\#695F63\] { color: #695F63; }
.text-\[\#D8E2DC\] { color: #D8E2DC; }
.text-white { color: #fff; }
.text-inherit { color: inherit; }

/* ============================================================
   BORDER UTILITIES
   ============================================================ */
.border { border-width: 1px; border-style: solid; }
.border-0 { border-width: 0; }
.border-t { border-top: 1px solid; }
.border-b { border-bottom: 1px solid; }
.border-l { border-left: 1px solid; }
.border-r { border-right: 1px solid; }
.border-l-2 { border-left: 2px solid; }
.border-l-4 { border-left: 4px solid; }
.border-\[\#EDE8E5\]\/10 { border-color: rgba(237,232,229,0.10); }
.border-\[\#EDE8E5\]\/12 { border-color: rgba(237,232,229,0.12); }
.border-\[\#EDE8E5\]\/15 { border-color: rgba(237,232,229,0.15); }
.border-\[\#EDE8E5\]\/20 { border-color: rgba(237,232,229,0.20); }
.border-\[\#EDE8E5\]\/25 { border-color: rgba(237,232,229,0.25); }
.border-\[\#EDE8E5\]\/30 { border-color: rgba(237,232,229,0.30); }
.border-\[\#8C3A52\] { border-color: #8C3A52; }
.border-\[\#8C3A52\]\/40 { border-color: rgba(140,58,82,0.40); }
.border-\[rgba\(255\,255\,255\,0\.180\)\] { border-color: rgba(255,255,255,0.180); }
.border-\[rgba\(216\,226\,220\,0\.280\)\] { border-color: rgba(216,226,220,0.280); }
.border-transparent { border-color: transparent; }
.rounded { border-radius: 4px; }
.rounded-sm { border-radius: 2px; }
.rounded-md { border-radius: 6px; }
.rounded-lg { border-radius: 10px; }
.rounded-xl { border-radius: 14px; }
.rounded-2xl { border-radius: 20px; }
.rounded-3xl { border-radius: 28px; }
.rounded-full { border-radius: 9999px; }
.rounded-none { border-radius: 0; }
.divide-y > * + * { border-top: 1px solid; }
.divide-\[\#EDE8E5\]\/10 > * + * { border-color: rgba(237,232,229,0.10); }

/* ============================================================
   EFFECTS & VISUALS
   ============================================================ */
.shadow { box-shadow: 0 1px 3px rgba(0,0,0,0.4); }
.shadow-md { box-shadow: 0 4px 12px rgba(0,0,0,0.5); }
.shadow-lg { box-shadow: 0 8px 32px rgba(0,0,0,0.6); }
.shadow-xl { box-shadow: 0 16px 48px rgba(0,0,0,0.65); }
.shadow-2xl { box-shadow: 0 20px 60px rgba(0,0,0,0.7); }
.shadow-\[0_20px_60px_rgba\(15\,23\,42\,0\.24\)\] { box-shadow: 0 20px 60px rgba(15,23,42,0.24); }
.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; }
.backdrop-blur-xl { backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); }
.backdrop-blur-sm { backdrop-filter: blur(4px); }
.blur-\[120px\] { filter: blur(120px); }
.blur-\[80px\] { filter: blur(80px); }
.object-cover { object-fit: cover; }
.object-center { object-position: center; }
.object-top { object-position: top; }
.aspect-square { aspect-ratio: 1/1; }
.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-\[2\/3\] { aspect-ratio: 2/3; }

/* ============================================================
   TRANSFORMS & ANIMATIONS
   ============================================================ */
.rotate-90 { transform: rotate(90deg); }
.rotate-\[-90deg\] { transform: rotate(-90deg); }
.-rotate-90 { transform: rotate(-90deg); }
.scale-100 { transform: scale(1); }
.scale-105 { transform: scale(1.05); }
.scale-95 { transform: scale(0.95); }
.-translate-x-1\/2 { transform: translateX(-50%); }
.-translate-y-1\/2 { transform: translateY(-50%); }
.translate-y-0 { transform: translateY(0); }
.translate-y-4 { transform: translateY(1rem); }
.-translate-y-4 { transform: translateY(-1rem); }
.transform { transform: var(--tw-transform, none); }

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

/* ============================================================
   HOVER & FOCUS STATES
   ============================================================ */
.hover\:text-\[\#8C3A52\]:hover { color: #8C3A52; }
.hover\:text-\[\#B05A72\]:hover { color: #B05A72; }
.hover\:text-\[\#EDE8E5\]:hover { color: #EDE8E5; }
.hover\:bg-\[\#8C3A52\]:hover { background-color: #8C3A52; }
.hover\:bg-\[\#B05A72\]:hover { background-color: #B05A72; }
.hover\:bg-\[\#EDE8E5\]\/10:hover { background-color: rgba(237,232,229,0.10); }
.hover\:opacity-90:hover { opacity: 0.9; }
.hover\:opacity-80:hover { opacity: 0.8; }
.hover\:scale-\[1\.02\]:hover { transform: scale(1.02); }
.hover\:border-\[\#8C3A52\]:hover { border-color: #8C3A52; }
.focus\:outline-none:focus { outline: none; }
.focus\:border-\[\#8C3A52\]:focus { border-color: #8C3A52; }
.focus\:ring-1:focus { box-shadow: 0 0 0 1px #8C3A52; }
.group:hover .group-hover\:text-\[\#8C3A52\] { color: #8C3A52; }
.group:hover .group-hover\:scale-105 { transform: scale(1.05); }

/* ============================================================
   MISCELLANEOUS
   ============================================================ */
.cursor-pointer { cursor: pointer; }
.select-none { user-select: none; }
.list-none { list-style: none; }
.list-disc { list-style-type: disc; }
.list-inside { list-style-position: inside; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.not-sr-only { position: static; width: auto; height: auto; padding: 0; margin: 0; overflow: visible; clip: auto; white-space: normal; }
.pointer-events-none { pointer-events: none; }
.pointer-events-auto { pointer-events: auto; }
.text-balance { text-wrap: balance; }
.text-pretty { text-wrap: pretty; }
.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-6 > * + * { margin-top: 1.5rem; }
.space-y-8 > * + * { margin-top: 2rem; }
.space-x-2 > * + * { margin-left: 0.5rem; }
.space-x-4 > * + * { margin-left: 1rem; }
.w-\[calc\(100\%-1\.5rem\)\] { width: calc(100% - 1.5rem); }
.w-\[1px\] { width: 1px; }
.w-\[2px\] { width: 2px; }
.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; }
.h-0\.5 { height: 2px; }
.h-1 { height: 4px; }
.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-\[1px\] { height: 1px; }
.h-\[2px\] { height: 2px; }
.h-\[60vh\] { height: 60vh; }
.h-\[70vh\] { height: 70vh; }
.h-\[400px\] { height: 400px; }
.h-\[480px\] { height: 480px; }
.h-\[520px\] { height: 520px; }
.h-\[560px\] { height: 560px; }
.h-\[280px\] { height: 280px; }
.h-\[320px\] { height: 320px; }
.h-\[360px\] { height: 360px; }
.h-\[200px\] { height: 200px; }
.h-\[240px\] { height: 240px; }
.min-w-0 { min-width: 0; }
.min-w-\[200px\] { min-width: 200px; }
.max-h-0 { max-height: 0; }
.max-h-\[1000px\] { max-height: 1000px; }
.top-1\/2 { top: 50%; }
.left-1\/2 { left: 50%; }
.right-4 { right: 1rem; }
.top-\[50\%\] { top: 50%; }
.inset-x-0 { left: 0; right: 0; }
.z-\[-1\] { z-index: -1; }
.text-\[\#ffffff\] { color: #ffffff; }
.font-\[\'PP_Editorial_New\'\,serif\] { font-family: 'PP Editorial New', serif; }

/* ============================================================
   MARQUEE ANIMATION
   ============================================================ */
@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.animate-marquee {
  display: flex;
  animation: marquee-scroll 28s linear infinite;
  width: max-content;
}
.marquee-container {
  overflow: hidden;
  display: flex;
}
.animate-marquee:hover { animation-play-state: paused; }

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 400ms ease, padding 300ms ease;
}
.accordion-content.open {
  max-height: 600px;
}
.accordion-icon {
  transition: transform 300ms ease;
}
.accordion-item.open .accordion-icon {
  transform: rotate(45deg);
}

/* ============================================================
   FORMS
   ============================================================ */
input, textarea, select {
  background-color: #181316;
  border: 1px solid rgba(237,232,229,0.15);
  color: #EDE8E5;
  font-family: 'Sohne', 'Inter', system-ui, sans-serif;
  font-size: 0.9rem;
  padding: 0.875rem 1rem;
  width: 100%;
  outline: none;
  transition: border-color 200ms ease;
  border-radius: 0;
  appearance: none;
}
input:focus, textarea:focus, select:focus {
  border-color: #8C3A52;
}
input::placeholder, textarea::placeholder {
  color: #695F63;
}
label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #695F63;
  margin-bottom: 0.5rem;
}

/* ============================================================
   COMPONENT PATTERNS
   ============================================================ */
/* Numbered section marker */
.section-number {
  font-family: 'PP Editorial New', 'Fraunces', Georgia, serif;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #695F63;
}
/* Mono terminal label */
.mono-label {
  font-family: 'Space Mono', 'Courier New', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #695F63;
}
/* Hairline divider */
.hairline { height: 1px; background-color: rgba(237,232,229,0.10); }
/* Caption overlay */
.caption-overlay {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  right: 0.75rem;
  font-family: 'Space Mono', 'Courier New', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(237,232,229,0.75);
  background: rgba(13,11,12,0.65);
  backdrop-filter: blur(8px);
  padding: 0.4rem 0.6rem;
}
/* Bento card */
.bento-card {
  background-color: #181316;
  border: 1px solid rgba(237,232,229,0.08);
  border-radius: 20px;
  overflow: hidden;
  transition: border-color 250ms ease;
}
.bento-card:hover { border-color: rgba(237,232,229,0.18); }
/* Image placeholder */
.img-placeholder {
  background: linear-gradient(135deg, #1E1820 0%, #231E26 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(237,232,229,0.15);
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */
@media (min-width: 640px) {
  .sm\:flex { display: flex; }
  .sm\:hidden { display: none; }
  .sm\:block { display: block; }
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .sm\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
  .sm\:text-5xl { font-size: 3rem; line-height: 1.1; }
  .sm\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
  .sm\:py-16 { padding-top: 4rem; padding-bottom: 4rem; }
}

@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\:justify-between { justify-content: space-between; }
  .md\:justify-end { justify-content: flex-end; }
  .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\: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-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
  .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-32 { padding-top: 8rem; padding-bottom: 8rem; }
  .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\:text-sm { font-size: 0.875rem; }
  .md\:text-base { font-size: 1rem; }
  .md\:text-lg { font-size: 1.125rem; }
  .md\:text-xl { font-size: 1.25rem; }
  .md\:text-2xl { font-size: 1.5rem; }
  .md\:text-3xl { font-size: 1.875rem; }
  .md\:text-4xl { font-size: 2.25rem; }
  .md\:text-5xl { font-size: 3rem; }
  .md\:text-6xl { font-size: 3.75rem; }
  .md\:text-7xl { font-size: 4.5rem; }
  .md\:text-8xl { font-size: 6rem; }
  .md\:text-\[52px\] { font-size: 52px; }
  .md\:text-\[64px\] { font-size: 64px; }
  .md\:text-\[72px\] { font-size: 72px; }
  .md\:text-\[80px\] { font-size: 80px; }
  .md\:text-left { text-align: left; }
  .md\:text-right { text-align: right; }
  .md\:aspect-\[21\/9\] { aspect-ratio: 21/9; }
  .md\:h-\[560px\] { height: 560px; }
  .md\:h-\[480px\] { height: 480px; }
  .md\:h-\[400px\] { height: 400px; }
  .md\:max-w-none { max-width: none; }
  .md\:w-auto { width: auto; }
  .md\:w-1\/2 { width: 50%; }
  .md\:self-end { align-self: flex-end; }
  .md\:items-end { align-items: flex-end; }
  .md\:inline-flex { display: inline-flex; }
}

@media (min-width: 1024px) {
  .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-7xl { font-size: 4.5rem; line-height: 1.02; }
  .lg\:text-8xl { font-size: 6rem; line-height: 1; }
  .lg\:text-\[80px\] { font-size: 80px; }
  .lg\:text-\[96px\] { font-size: 96px; }
  .lg\:py-32 { padding-top: 8rem; padding-bottom: 8rem; }
  .lg\:py-40 { padding-top: 10rem; padding-bottom: 10rem; }
  .lg\:px-8 { padding-left: 2rem; padding-right: 2rem; }
  .lg\:gap-8 { gap: 2rem; }
  .lg\:gap-12 { gap: 3rem; }
  .lg\:gap-16 { gap: 4rem; }
  .lg\:mb-0 { margin-bottom: 0; }
}

@media (min-width: 1280px) {
  .xl\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0,1fr)); }
  .xl\:col-span-1 { grid-column: span 1 / span 1; }
  .xl\:text-8xl { font-size: 6rem; }
  .xl\:text-\[100px\] { font-size: 100px; }
  .xl\:px-0 { padding-left: 0; padding-right: 0; }
}

/* ============================================================
   UTILITY ALIASES (for cookie banner compatibility)
   ============================================================ */
.border-\[1px\] { border-width: 1px; }
.p-0 { padding: 0; }
.transition-opacity { transition-property: opacity; transition-duration: 300ms; }
.flex-col { flex-direction: column; }
