/* ============================================================
   Tarlone — css/style.css
   Prebuilt Tailwind v4.1.5 utility output
   Design family: Documentary / Archive
   Palette: BG #FAFBFF · SEC #F0F1F8 · INK #1A1528 · ACCENT #8B2FC9 · MUTED #6B6480
   Fonts: Fraunces (display) + Inter Tight (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,700&family=Inter+Tight:wght@400;500&display=swap');

@theme {
  --color-bg-primary: #FAFBFF;
  --color-bg-secondary: #F0F1F8;
  --color-ink-primary: #1A1528;
  --color-ink-muted: #6B6480;
  --color-accent: #8B2FC9;
  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter Tight', system-ui, -apple-system, sans-serif;
  --font-mono: 'Courier New', Courier, monospace;
  --radius-sm: 2px;
  --radius-md: 4px;
  --radius-lg: 8px;
  --shadow-sm: 0 1px 3px rgba(26,21,40,0.08);
  --shadow-md: 0 4px 12px rgba(26,21,40,0.12);
  --shadow-lg: 0 8px 32px rgba(26,21,40,0.16);
}

/* ===== BASE RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body { font-family: var(--font-body); background-color: #FAFBFF; color: #1A1528; line-height: 1.6; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color 0.2s ease; }
button { cursor: pointer; border: none; background: none; padding: 0; font-family: inherit; }
input, textarea, select { font-family: inherit; -webkit-appearance: none; appearance: none; }
p { margin: 0; }
h1, h2, h3, h4, h5, h6 { margin: 0; font-family: var(--font-display); font-weight: 700; }
address { font-style: normal; }
ul, ol { list-style: none; padding: 0; margin: 0; }

/* ===== LAYOUT UTILITIES ===== */
.block { display: block; }
.inline-block { display: inline-block; }
.inline { display: inline; }
.inline-flex { display: inline-flex; }
.flex { display: flex; }
.grid { display: grid; }
.hidden { display: none; }
.contents { display: contents; }

.flex-row { flex-direction: row; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.flex-nowrap { flex-wrap: nowrap; }
.flex-1 { flex: 1 1 0%; }
.flex-auto { flex: 1 1 auto; }
.flex-none { flex: none; }
.flex-shrink-0 { flex-shrink: 0; }
.flex-grow { flex-grow: 1; }

.items-start { align-items: flex-start; }
.items-center { align-items: center; }
.items-end { align-items: flex-end; }
.items-baseline { align-items: baseline; }
.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; }
.justify-evenly { justify-content: space-evenly; }

.self-start { align-self: flex-start; }
.self-center { align-self: center; }
.self-end { align-self: flex-end; }
.self-stretch { align-self: stretch; }

.order-first { order: -9999; }
.order-last { order: 9999; }
.order-1 { order: 1; }
.order-2 { order: 2; }

/* Grid columns */
.grid-cols-1 { grid-template-columns: repeat(1,minmax(0,1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2,minmax(0,1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3,minmax(0,1fr)); }
.grid-cols-4 { grid-template-columns: repeat(4,minmax(0,1fr)); }
.grid-cols-5 { grid-template-columns: repeat(5,minmax(0,1fr)); }
.grid-cols-6 { grid-template-columns: repeat(6,minmax(0,1fr)); }
.grid-cols-12 { grid-template-columns: repeat(12,minmax(0,1fr)); }

/* Column spans */
.col-span-1 { grid-column: span 1/span 1; }
.col-span-2 { grid-column: span 2/span 2; }
.col-span-3 { grid-column: span 3/span 3; }
.col-span-4 { grid-column: span 4/span 4; }
.col-span-5 { grid-column: span 5/span 5; }
.col-span-6 { grid-column: span 6/span 6; }
.col-span-7 { grid-column: span 7/span 7; }
.col-span-8 { grid-column: span 8/span 8; }
.col-span-9 { grid-column: span 9/span 9; }
.col-span-10 { grid-column: span 10/span 10; }
.col-span-11 { grid-column: span 11/span 11; }
.col-span-12 { grid-column: span 12/span 12; }
.col-span-full { grid-column: 1/-1; }
.col-start-1 { grid-column-start: 1; }
.col-start-2 { grid-column-start: 2; }
.col-start-3 { grid-column-start: 3; }

/* Row spans */
.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; }

/* Gaps */
.gap-0 { gap:0; }
.gap-1 { gap:.25rem; }
.gap-2 { gap:.5rem; }
.gap-3 { gap:.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-9 { gap:2.25rem; }
.gap-10 { gap:2.5rem; }
.gap-12 { gap:3rem; }
.gap-14 { gap:3.5rem; }
.gap-16 { gap:4rem; }
.gap-20 { gap:5rem; }
.gap-24 { gap:6rem; }
.gap-\[1px\] { gap:1px; }
.gap-\[10px\] { gap:10px; }
.gap-\[20px\] { gap:20px; }
.gap-x-2 { column-gap:.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:.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; }

.inset-0 { top:0; right:0; bottom:0; left:0; }
.inset-x-0 { left:0; right:0; }
.inset-y-0 { top:0; bottom:0; }
.top-0 { top:0; }
.top-2 { top:.5rem; }
.top-4 { top:1rem; }
.top-8 { top:2rem; }
.right-0 { right:0; }
.right-2 { right:.5rem; }
.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-8 { left:2rem; }
.left-1\/2 { left:50%; }

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

/* Overflow */
.overflow-hidden { overflow:hidden; }
.overflow-auto { overflow:auto; }
.overflow-x-auto { overflow-x:auto; }
.overflow-y-auto { overflow-y:auto; }
.overflow-visible { overflow:visible; }

/* ===== SIZING ===== */
.w-auto { width:auto; }
.w-full { width:100%; }
.w-screen { width:100vw; }
.w-0 { width:0; }
.w-1 { width:.25rem; }
.w-2 { width:.5rem; }
.w-3 { width:.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-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-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-\[1px\] { width:1px; }
.w-\[2px\] { width:2px; }
.w-\[40px\] { width:40px; }
.w-\[48px\] { width:48px; }
.w-\[80px\] { width:80px; }
.w-\[120px\] { width:120px; }
.w-\[160px\] { width:160px; }
.w-\[200px\] { width:200px; }
.w-\[calc\(100\%-1\.5rem\)\] { width:calc(100% - 1.5rem); }

.h-auto { height:auto; }
.h-full { height:100%; }
.h-screen { height:100vh; }
.h-0 { height:0; }
.h-1 { height:.25rem; }
.h-2 { height:.5rem; }
.h-3 { height:.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-16 { height:4rem; }
.h-20 { height:5rem; }
.h-24 { height:6rem; }
.h-32 { height:8rem; }
.h-40 { height:10rem; }
.h-48 { height:12rem; }
.h-64 { height:16rem; }
.h-\[1px\] { height:1px; }
.h-\[2px\] { height:2px; }
.h-\[3px\] { height:3px; }
.h-\[40px\] { height:40px; }
.h-\[48px\] { height:48px; }
.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-\[480px\] { height:480px; }
.h-\[500px\] { height:500px; }
.h-\[540px\] { height:540px; }
.h-\[600px\] { height:600px; }
.h-\[70vh\] { height:70vh; }
.h-\[80vh\] { height:80vh; }

.min-h-0 { min-height:0; }
.min-h-full { min-height:100%; }
.min-h-screen { min-height:100vh; }
.min-h-\[40vh\] { min-height:40vh; }
.min-h-\[50vh\] { min-height:50vh; }
.min-h-\[60vh\] { min-height:60vh; }
.min-h-\[70vh\] { min-height:70vh; }
.min-h-\[80vh\] { min-height:80vh; }

.max-h-0 { max-height:0; }
.max-h-full { max-height:100%; }
.max-h-screen { max-height:100vh; }
.max-h-\[0px\] { max-height:0px; }
.max-h-\[600px\] { max-height:600px; }
.max-h-\[1000px\] { max-height:1000px; }

.max-w-none { max-width:none; }
.max-w-xs { max-width:20rem; }
.max-w-sm { max-width:24rem; }
.max-w-md { max-width:28rem; }
.max-w-lg { max-width:32rem; }
.max-w-xl { max-width:36rem; }
.max-w-2xl { max-width:42rem; }
.max-w-3xl { max-width:48rem; }
.max-w-4xl { max-width:56rem; }
.max-w-5xl { max-width:64rem; }
.max-w-6xl { max-width:72rem; }
.max-w-7xl { max-width:80rem; }
.max-w-full { max-width:100%; }
.max-w-\[560px\] { max-width:560px; }
.max-w-\[640px\] { max-width:640px; }
.max-w-\[720px\] { max-width:720px; }
.max-w-\[780px\] { max-width:780px; }
.max-w-\[800px\] { max-width:800px; }
.max-w-\[860px\] { max-width:860px; }
.max-w-\[900px\] { max-width:900px; }
.max-w-\[960px\] { max-width:960px; }
.max-w-\[1220px\] { max-width:1220px; }

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

/* ===== SPACING — MARGIN ===== */
.m-0 { margin:0; }
.m-auto { margin:auto; }
.mx-auto { margin-left:auto; margin-right:auto; }
.mx-0 { margin-left:0; margin-right:0; }
.mx-2 { margin-left:.5rem; margin-right:.5rem; }
.mx-4 { margin-left:1rem; margin-right:1rem; }
.my-0 { margin-top:0; margin-bottom:0; }
.my-2 { margin-top:.5rem; margin-bottom:.5rem; }
.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; }
.my-12 { margin-top:3rem; margin-bottom:3rem; }
.my-16 { margin-top:4rem; margin-bottom:4rem; }
.mt-0 { margin-top:0; }
.mt-1 { margin-top:.25rem; }
.mt-2 { margin-top:.5rem; }
.mt-3 { margin-top:.75rem; }
.mt-4 { margin-top:1rem; }
.mt-5 { margin-top:1.25rem; }
.mt-6 { margin-top:1.5rem; }
.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; }
.mt-\[60px\] { margin-top:60px; }
.mt-\[80px\] { margin-top:80px; }
.mb-0 { margin-bottom:0; }
.mb-1 { margin-bottom:.25rem; }
.mb-2 { margin-bottom:.5rem; }
.mb-3 { margin-bottom:.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; }
.mb-\[60px\] { margin-bottom:60px; }
.mb-\[80px\] { margin-bottom:80px; }
.ml-0 { margin-left:0; }
.ml-1 { margin-left:.25rem; }
.ml-2 { margin-left:.5rem; }
.ml-4 { margin-left:1rem; }
.ml-6 { margin-left:1.5rem; }
.ml-8 { margin-left:2rem; }
.ml-auto { margin-left:auto; }
.mr-0 { margin-right:0; }
.mr-1 { margin-right:.25rem; }
.mr-2 { margin-right:.5rem; }
.mr-4 { margin-right:1rem; }
.mr-6 { margin-right:1.5rem; }
.mr-auto { margin-right:auto; }

/* ===== SPACING — PADDING ===== */
.p-0 { padding:0; }
.p-1 { padding:.25rem; }
.p-2 { padding:.5rem; }
.p-3 { padding:.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-16 { padding:4rem; }
.px-0 { padding-left:0; padding-right:0; }
.px-1 { padding-left:.25rem; padding-right:.25rem; }
.px-2 { padding-left:.5rem; padding-right:.5rem; }
.px-3 { padding-left:.75rem; padding-right:.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; }
.px-16 { padding-left:4rem; padding-right:4rem; }
.py-0 { padding-top:0; padding-bottom:0; }
.py-1 { padding-top:.25rem; padding-bottom:.25rem; }
.py-2 { padding-top:.5rem; padding-bottom:.5rem; }
.py-2\.5 { padding-top:.625rem; padding-bottom:.625rem; }
.py-3 { padding-top:.75rem; padding-bottom:.75rem; }
.py-4 { padding-top:1rem; padding-bottom:1rem; }
.py-5 { padding-top:1.25rem; padding-bottom:1.25rem; }
.py-6 { padding-top:1.5rem; padding-bottom:1.5rem; }
.py-8 { padding-top:2rem; padding-bottom:2rem; }
.py-10 { padding-top:2.5rem; padding-bottom:2.5rem; }
.py-12 { padding-top:3rem; padding-bottom:3rem; }
.py-16 { padding-top:4rem; padding-bottom:4rem; }
.py-20 { padding-top:5rem; padding-bottom:5rem; }
.py-24 { padding-top:6rem; padding-bottom:6rem; }
.py-32 { padding-top:8rem; padding-bottom:8rem; }
.py-\[60px\] { padding-top:60px; padding-bottom:60px; }
.py-\[80px\] { padding-top:80px; padding-bottom:80px; }
.py-\[100px\] { padding-top:100px; padding-bottom:100px; }
.py-\[120px\] { padding-top:120px; padding-bottom:120px; }
.py-\[140px\] { padding-top:140px; padding-bottom:140px; }
.pt-0 { padding-top:0; }
.pt-1 { padding-top:.25rem; }
.pt-2 { padding-top:.5rem; }
.pt-3 { padding-top:.75rem; }
.pt-4 { padding-top:1rem; }
.pt-6 { padding-top:1.5rem; }
.pt-8 { padding-top:2rem; }
.pt-10 { padding-top:2.5rem; }
.pt-12 { padding-top:3rem; }
.pt-16 { padding-top:4rem; }
.pt-20 { padding-top:5rem; }
.pt-24 { padding-top:6rem; }
.pt-\[60px\] { padding-top:60px; }
.pt-\[80px\] { padding-top:80px; }
.pb-0 { padding-bottom:0; }
.pb-1 { padding-bottom:.25rem; }
.pb-2 { padding-bottom:.5rem; }
.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; }
.pb-24 { padding-bottom:6rem; }
.pb-\[60px\] { padding-bottom:60px; }
.pb-\[80px\] { padding-bottom:80px; }
.pl-2 { padding-left:.5rem; }
.pl-4 { padding-left:1rem; }
.pl-6 { padding-left:1.5rem; }
.pl-8 { padding-left:2rem; }
.pr-2 { padding-right:.5rem; }
.pr-4 { padding-right:1rem; }
.pr-6 { padding-right:1.5rem; }
.pr-8 { padding-right:2rem; }

/* Space between children */
.space-y-1>*+* { margin-top:.25rem; }
.space-y-2>*+* { margin-top:.5rem; }
.space-y-3>*+* { margin-top:.75rem; }
.space-y-4>*+* { margin-top:1rem; }
.space-y-5>*+* { margin-top:1.25rem; }
.space-y-6>*+* { margin-top:1.5rem; }
.space-y-8>*+* { margin-top:2rem; }
.space-y-10>*+* { margin-top:2.5rem; }
.space-y-12>*+* { margin-top:3rem; }
.space-y-16>*+* { margin-top:4rem; }
.space-x-2>*+* { margin-left:.5rem; }
.space-x-4>*+* { margin-left:1rem; }
.space-x-6>*+* { margin-left:1.5rem; }

/* ===== TYPOGRAPHY ===== */
.font-display { font-family:var(--font-display); }
.font-body { font-family:var(--font-body); }
.font-mono { font-family:var(--font-mono); }
.font-sans { font-family:var(--font-body); }
.font-serif { font-family:var(--font-display); }

.text-xs  { font-size:.75rem;   line-height:1rem; }
.text-sm  { font-size:.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-\[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-\[0\.65rem\] { font-size:.65rem; }
.text-\[0\.7rem\]  { font-size:.7rem; }
.text-\[0\.8rem\]  { font-size:.8rem; }
.text-\[72px\] { font-size:72px; }
.text-\[80px\] { font-size:80px; }
.text-\[100px\] { font-size:100px; }

.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-6  { line-height:1.5rem; }
.leading-7  { line-height:1.75rem; }
.leading-8  { line-height:2rem; }
.leading-\[1\.1\] { line-height:1.1; }
.leading-\[1\.2\] { line-height:1.2; }
.leading-\[1\.3\] { line-height:1.3; }
.leading-\[1\.4\] { line-height:1.4; }
.leading-\[1\.5\] { line-height:1.5; }

.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\.05em\]  { letter-spacing:0.05em; }
.tracking-\[0\.08em\]  { letter-spacing:0.08em; }
.tracking-\[0\.12em\]  { letter-spacing:0.12em; }
.tracking-\[0\.15em\]  { letter-spacing:0.15em; }
.tracking-\[0\.2em\]   { letter-spacing:0.2em; }
.tracking-\[0\.25em\]  { letter-spacing:0.25em; }
.tracking-\[0\.3em\]   { letter-spacing:0.3em; }

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

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

.line-clamp-1 { overflow:hidden; display:-webkit-box; -webkit-box-orient:vertical; -webkit-line-clamp:1; }
.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; }

/* ===== COLORS — BACKGROUNDS ===== */
.bg-transparent { background-color:transparent; }
.bg-white   { background-color:#ffffff; }
.bg-black   { background-color:#000000; }
.bg-\[\#FAFBFF\] { background-color:#FAFBFF; }
.bg-\[\#F0F1F8\] { background-color:#F0F1F8; }
.bg-\[\#E8E9F2\] { background-color:#E8E9F2; }
.bg-\[\#DFE0EC\] { background-color:#DFE0EC; }
.bg-\[\#1A1528\] { background-color:#1A1528; }
.bg-\[\#2D2340\] { background-color:#2D2340; }
.bg-\[\#3D3050\] { background-color:#3D3050; }
.bg-\[\#8B2FC9\] { background-color:#8B2FC9; }
.bg-\[\#7A28B3\] { background-color:#7A28B3; }
.bg-\[\#6B6480\] { background-color:#6B6480; }
.bg-\[\#1A1528\]\/70 { background-color:rgba(26,21,40,.70); }
.bg-\[\#1A1528\]\/80 { background-color:rgba(26,21,40,.80); }
.bg-\[\#1A1528\]\/90 { background-color:rgba(26,21,40,.90); }
.bg-\[\#8B2FC9\]\/5  { background-color:rgba(139,47,201,.05); }
.bg-\[\#8B2FC9\]\/8  { background-color:rgba(139,47,201,.08); }
.bg-\[\#8B2FC9\]\/10 { background-color:rgba(139,47,201,.10); }
.bg-\[\#8B2FC9\]\/15 { background-color:rgba(139,47,201,.15); }
.bg-\[\#8B2FC9\]\/20 { background-color:rgba(139,47,201,.20); }
.bg-\[\#FAFBFF\]\/80 { background-color:rgba(250,251,255,.80); }
.bg-\[\#FAFBFF\]\/90 { background-color:rgba(250,251,255,.90); }

/* ===== COLORS — TEXT ===== */
.text-white   { color:#ffffff; }
.text-black   { color:#000000; }
.text-\[\#FAFBFF\] { color:#FAFBFF; }
.text-\[\#F0F1F8\] { color:#F0F1F8; }
.text-\[\#E8E9F2\] { color:#E8E9F2; }
.text-\[\#1A1528\] { color:#1A1528; }
.text-\[\#2D2340\] { color:#2D2340; }
.text-\[\#6B6480\] { color:#6B6480; }
.text-\[\#8B2FC9\] { color:#8B2FC9; }
.text-\[\#7A28B3\] { color:#7A28B3; }
.text-\[\#D8E2DC\] { color:#D8E2DC; }
.text-\[\#4A4260\] { color:#4A4260; }
.text-\[\#8B2FC9\]\/80 { color:rgba(139,47,201,.80); }

/* ===== COLORS — BORDERS ===== */
.border-white  { border-color:#ffffff; }
.border-black  { border-color:#000000; }
.border-\[\#FAFBFF\]    { border-color:#FAFBFF; }
.border-\[\#1A1528\]    { border-color:#1A1528; }
.border-\[\#6B6480\]    { border-color:#6B6480; }
.border-\[\#8B2FC9\]    { border-color:#8B2FC9; }
.border-\[\#E8E9F2\]    { border-color:#E8E9F2; }
.border-\[\#6B6480\]\/10  { border-color:rgba(107,100,128,.10); }
.border-\[\#6B6480\]\/15  { border-color:rgba(107,100,128,.15); }
.border-\[\#6B6480\]\/20  { border-color:rgba(107,100,128,.20); }
.border-\[\#6B6480\]\/30  { border-color:rgba(107,100,128,.30); }
.border-\[\#1A1528\]\/10  { border-color:rgba(26,21,40,.10); }
.border-\[\#1A1528\]\/20  { border-color:rgba(26,21,40,.20); }
.border-\[\#1A1528\]\/30  { border-color:rgba(26,21,40,.30); }
.border-\[\#8B2FC9\]\/10  { border-color:rgba(139,47,201,.10); }
.border-\[\#8B2FC9\]\/20  { border-color:rgba(139,47,201,.20); }
.border-\[\#8B2FC9\]\/30  { border-color:rgba(139,47,201,.30); }
.border-\[\#FAFBFF\]\/10  { border-color:rgba(250,251,255,.10); }
.border-\[\#FAFBFF\]\/20  { border-color:rgba(250,251,255,.20); }

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

/* Divide */
.divide-y>*+* { border-top-width:1px; border-top-style:solid; }
.divide-\[\#6B6480\]\/20>*+* { border-color:rgba(107,100,128,.20); }
.divide-\[\#E8E9F2\]>*+* { border-color:#E8E9F2; }

/* ===== BORDER RADIUS ===== */
.rounded-none { border-radius:0; }
.rounded-sm   { border-radius:.125rem; }
.rounded      { border-radius:.25rem; }
.rounded-md   { border-radius:.375rem; }
.rounded-lg   { border-radius:.5rem; }
.rounded-xl   { border-radius:.75rem; }
.rounded-2xl  { border-radius:1rem; }
.rounded-3xl  { border-radius:1.5rem; }
.rounded-full { border-radius:9999px; }
.rounded-\[4px\]   { border-radius:4px; }
.rounded-\[26px\]  { border-radius:26px; }
.rounded-\[999px\] { border-radius:999px; }

/* ===== SHADOWS ===== */
.shadow-none { box-shadow:none; }
.shadow-sm   { box-shadow:0 1px 2px 0 rgba(26,21,40,.05); }
.shadow      { box-shadow:0 1px 3px 0 rgba(26,21,40,.1),0 1px 2px -1px rgba(26,21,40,.1); }
.shadow-md   { box-shadow:0 4px 6px -1px rgba(26,21,40,.1),0 2px 4px -2px rgba(26,21,40,.1); }
.shadow-lg   { box-shadow:0 10px 15px -3px rgba(26,21,40,.1),0 4px 6px -4px rgba(26,21,40,.1); }
.shadow-xl   { box-shadow:0 20px 25px -5px rgba(26,21,40,.15),0 8px 10px -6px rgba(26,21,40,.15); }
.shadow-2xl  { box-shadow:0 25px 50px -12px rgba(26,21,40,.25); }
.shadow-inner { box-shadow:inset 0 2px 4px 0 rgba(26,21,40,.05); }

/* ===== OPACITY ===== */
.opacity-0  { opacity:0; }
.opacity-10 { opacity:.10; }
.opacity-20 { opacity:.20; }
.opacity-25 { opacity:.25; }
.opacity-30 { opacity:.30; }
.opacity-40 { opacity:.40; }
.opacity-50 { opacity:.50; }
.opacity-60 { opacity:.60; }
.opacity-70 { opacity:.70; }
.opacity-75 { opacity:.75; }
.opacity-80 { opacity:.80; }
.opacity-90 { opacity:.90; }
.opacity-100 { opacity:1; }

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

/* ===== TRANSFORMS ===== */
.rotate-90       { transform:rotate(90deg); }
.-rotate-90      { transform:rotate(-90deg); }
.rotate-180      { transform:rotate(180deg); }
.rotate-\[-90deg\] { transform:rotate(-90deg); }
.scale-90  { transform:scale(.9); }
.scale-95  { transform:scale(.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-x-1\/2  { transform:translateX(50%); }
.-translate-y-1\/2 { transform:translateY(-50%); }
.translate-y-1\/2  { transform:translateY(50%); }
.-translate-y-full { transform:translateY(-100%); }
.translate-y-full  { transform:translateY(100%); }

/* ===== TRANSITIONS ===== */
.transition        { transition-property:color,background-color,border-color,opacity,box-shadow,transform; transition-timing-function:cubic-bezier(.4,0,.2,1); transition-duration:150ms; }
.transition-none   { transition-property:none; }
.transition-all    { transition-property:all; transition-timing-function:cubic-bezier(.4,0,.2,1); transition-duration:150ms; }
.transition-colors { transition-property:color,background-color,border-color; transition-timing-function:cubic-bezier(.4,0,.2,1); transition-duration:150ms; }
.transition-opacity { transition-property:opacity; transition-timing-function:cubic-bezier(.4,0,.2,1); transition-duration:150ms; }
.transition-transform { transition-property:transform; transition-timing-function:cubic-bezier(.4,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(.4,0,1,1); }
.ease-out      { transition-timing-function:cubic-bezier(0,0,.2,1); }
.ease-in-out   { transition-timing-function:cubic-bezier(.4,0,.2,1); }

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

/* ===== OBJECT FIT ===== */
.object-contain { object-fit:contain; }
.object-cover   { object-fit:cover; }
.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; }

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

/* ===== MISC ===== */
.appearance-none { -webkit-appearance:none; appearance:none; }
.outline-none { outline:2px solid transparent; outline-offset:2px; }
.select-none  { user-select:none; }
.select-text  { user-select:text; }
.resize-none  { resize:none; }
.list-none    { list-style-type:none; }
.list-disc    { list-style-type:disc; padding-left:1.5em; }
.list-decimal { list-style-type:decimal; padding-left:1.5em; }

/* Visibility */
.invisible { visibility:hidden; }
.visible   { visibility:visible; }

/* ===== HOVER STATES ===== */
.hover\:text-white:hover       { color:#ffffff; }
.hover\:text-\[\#8B2FC9\]:hover { color:#8B2FC9; }
.hover\:text-\[\#1A1528\]:hover { color:#1A1528; }
.hover\:text-\[\#FAFBFF\]:hover { color:#FAFBFF; }
.hover\:bg-\[\#8B2FC9\]:hover   { background-color:#8B2FC9; }
.hover\:bg-\[\#7A28B3\]:hover   { background-color:#7A28B3; }
.hover\:bg-\[\#1A1528\]:hover   { background-color:#1A1528; }
.hover\:bg-\[\#F0F1F8\]:hover   { background-color:#F0F1F8; }
.hover\:bg-\[\#E8E9F2\]:hover   { background-color:#E8E9F2; }
.hover\:opacity-90:hover { opacity:.9; }
.hover\:opacity-80:hover { opacity:.8; }
.hover\:opacity-70:hover { opacity:.7; }
.hover\:border-\[\#8B2FC9\]:hover { border-color:#8B2FC9; }
.hover\:underline:hover  { text-decoration:underline; }
.hover\:scale-105:hover  { transform:scale(1.05); }
.hover\:shadow-lg:hover  { box-shadow:0 10px 15px -3px rgba(26,21,40,.1),0 4px 6px -4px rgba(26,21,40,.1); }
.hover\:-translate-y-1:hover { transform:translateY(-.25rem); }

/* ===== FOCUS STATES ===== */
.focus\:outline-none:focus { outline:2px solid transparent; outline-offset:2px; }
.focus\:ring-2:focus { box-shadow:0 0 0 2px rgba(139,47,201,.5); }
.focus\:border-\[\#8B2FC9\]:focus { border-color:#8B2FC9; }

/* ===== GROUP HOVER ===== */
.group:hover .group-hover\:text-\[\#8B2FC9\] { color:#8B2FC9; }
.group:hover .group-hover\:opacity-100 { opacity:1; }
.group:hover .group-hover\:scale-105 { transform:scale(1.05); }
.group:hover .group-hover\:-translate-y-1 { transform:translateY(-.25rem); }
.group { position:relative; }

/* ===== RESPONSIVE — MD ===== */
@media (min-width:768px) {
  .md\:block         { display:block; }
  .md\:inline-block  { display:inline-block; }
  .md\:inline-flex   { display:inline-flex; }
  .md\:flex          { display:flex; }
  .md\:grid          { display:grid; }
  .md\:hidden        { display:none; }
  .md\:flex-row      { flex-direction:row; }
  .md\:flex-col      { flex-direction:column; }
  .md\:flex-wrap     { flex-wrap:wrap; }
  .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-center  { justify-content:center; }
  .md\:justify-end     { justify-content:flex-end; }
  .md\:justify-between { justify-content:space-between; }
  .md\:gap-2  { gap:.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\:grid-cols-1 { grid-template-columns:repeat(1,minmax(0,1fr)); }
  .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\:px-6   { padding-left:1.5rem; padding-right:1.5rem; }
  .md\:px-8   { padding-left:2rem;   padding-right:2rem; }
  .md\:px-12  { padding-left:3rem;   padding-right:3rem; }
  .md\:px-16  { padding-left:4rem;   padding-right:4rem; }
  .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\:pt-0   { padding-top:0; }
  .md\:pt-12  { padding-top:3rem; }
  .md\:pb-0   { padding-bottom:0; }
  .md\:pb-12  { padding-bottom:3rem; }
  .md\:pl-8   { padding-left:2rem; }
  .md\:pr-8   { padding-right:2rem; }
  .md\:mt-0   { margin-top:0; }
  .md\:mt-12  { margin-top:3rem; }
  .md\:mt-24  { margin-top:6rem; }
  .md\:mb-0   { margin-bottom:0; }
  .md\:text-sm   { font-size:.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-left   { text-align:left; }
  .md\:text-center { text-align:center; }
  .md\:text-right  { text-align:right; }
  .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\: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-5xl { max-width:64rem; }
  .md\:max-w-6xl { max-width:72rem; }
  .md\:max-w-7xl { max-width:80rem; }
  .md\:aspect-\[21\/9\] { aspect-ratio:21/9; }
  .md\:border-l { border-left-width:1px; }
  .md\:border-t-0 { border-top-width:0; }
  .md\:order-first { order:-9999; }
  .md\:order-last  { order:9999; }
}

/* ===== RESPONSIVE — LG ===== */
@media (min-width:1024px) {
  .lg\:block  { display:block; }
  .lg\:hidden { display:none; }
  .lg\:flex   { display:flex; }
  .lg\:grid   { display:grid; }
  .lg\:grid-cols-2 { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .lg\:grid-cols-3 { grid-template-columns:repeat(3,minmax(0,1fr)); }
  .lg\:grid-cols-4 { grid-template-columns:repeat(4,minmax(0,1fr)); }
  .lg\:col-span-2  { grid-column:span 2/span 2; }
  .lg\:col-span-3  { grid-column:span 3/span 3; }
  .lg\:col-span-4  { grid-column:span 4/span 4; }
  .lg\:gap-8  { gap:2rem; }
  .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-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\:max-w-4xl { max-width:56rem; }
  .lg\:max-w-5xl { max-width:64rem; }
  .lg\:max-w-6xl { max-width:72rem; }
  .lg\:max-w-7xl { max-width:80rem; }
}

/* ===== RESPONSIVE — XL ===== */
@media (min-width:1280px) {
  .xl\:block  { display:block; }
  .xl\:hidden { display:none; }
  .xl\:flex   { display:flex; }
  .xl\:grid   { display:grid; }
  .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-7xl { font-size:4.5rem; line-height:1; }
  .xl\:text-8xl { font-size:6rem;   line-height:1; }
  .xl\:gap-12 { gap:3rem; }
}

/* ===== ACCESSIBILITY ===== */
.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; }
:focus-visible { outline:2px solid #8B2FC9; outline-offset:2px; }
::selection { background-color:rgba(139,47,201,.18); color:#1A1528; }

/* ===== CUSTOM PATTERNS ===== */
/* Marquee animation */
@keyframes marquee {
  0%   { transform:translateX(0); }
  100% { transform:translateX(-50%); }
}
.marquee-track { display:flex; width:max-content; animation:marquee 32s linear infinite; }
.marquee-container { overflow:hidden; }

/* Accordion */
.accordion-content { overflow:hidden; transition:max-height 0.35s ease, opacity 0.3s ease; max-height:0; opacity:0; }
.accordion-content.is-open { max-height:600px; opacity:1; }

/* Caption label — Documentary/Archive signature */
.caption-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6B6480;
}

/* Mono terminal label */
.mono-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* Hairline divider */
.hairline { width:100%; height:1px; background-color:rgba(107,100,128,.20); }

/* Image placeholder background */
.img-placeholder {
  background-color: #E8E9F2;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6B6480;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Vertical writing for rotated labels */
.writing-vertical-rl { writing-mode:vertical-rl; text-orientation:mixed; }
.writing-vertical-lr { writing-mode:vertical-lr; text-orientation:mixed; }

/* Scrollbar */
::-webkit-scrollbar { width:5px; height:5px; }
::-webkit-scrollbar-track { background:#F0F1F8; }
::-webkit-scrollbar-thumb { background:rgba(107,100,128,.35); border-radius:3px; }
::-webkit-scrollbar-thumb:hover { background:rgba(139,47,201,.55); }

/* Form inputs base */
input[type=text],
input[type=email],
input[type=tel],
input[type=number],
textarea,
select { display:block; width:100%; background:#FAFBFF; border:1px solid rgba(107,100,128,.30); padding:.75rem 1rem; font-size:.875rem; color:#1A1528; transition:border-color .2s ease; }
input:focus,
textarea:focus,
select:focus { outline:none; border-color:#8B2FC9; }

/* Print */
@media print { .print\:hidden { display:none; } }

/* ===== EXTRA ARBITRARY UTILITY CLASSES ===== */
.bg-\[\#F7F6FF\] { background-color:#F7F6FF; }
.bg-\[\#EEF0FB\] { background-color:#EEF0FB; }
.text-\[\#A07CC5\] { color:#A07CC5; }
.border-\[\#A07CC5\]\/20 { border-color:rgba(160,124,197,.20); }

/* Frosted glass utility */
.glass-dark { background-color:rgba(26,21,40,.82); -webkit-backdrop-filter:blur(24px); backdrop-filter:blur(24px); border:1px solid rgba(255,255,255,.12); }

/* Number sections — Documentary/Archive decorative */
.section-num {
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 1;
  color: rgba(139,47,201,.12);
  font-weight: 700;
  user-select: none;
}

/* Swiper overrides */
.swiper { width:100%; height:100%; }
.swiper-pagination-bullet-active { background-color:#8B2FC9 !important; }

/* AOS defaults */
[data-aos] { pointer-events:none; }
[data-aos].aos-animate { pointer-events:auto; }
