/* ============================================================
   Oranevak — css/style.css
   Prebuilt Tailwind v4.1.5 utility output
   Design: Techno Cyberpunk (K_FAMILY=2), K_FONT=0, K_HUE=6
   Palette: BG #FAFBFD | BG2 #F2F4F7 | Ink #0F1923 | Accent #b45309 | Muted #4A5A68
   ============================================================ */

@import "tailwindcss";

@theme {
  --color-bg-primary: #FAFBFD;
  --color-bg-secondary: #F2F4F7;
  --color-ink-primary: #0F1923;
  --color-ink-muted: #4A5A68;
  --color-ink-subtle: #8A9BAD;
  --color-accent: #b45309;
  --color-accent-hover: #92400e;
  --color-accent-light: #fef3c7;
  --color-border: rgba(15,25,35,0.10);
  --font-display: 'Editorial New', 'Fraunces', serif;
  --font-body: 'Sohne', 'Inter', sans-serif;
  --font-mono: 'Space Mono', 'Courier New', monospace;
  --radius-sm: 0px;
  --radius-md: 2px;
  --shadow-card: 0 1px 3px rgba(15,25,35,0.06), 0 1px 2px rgba(15,25,35,0.04);
  --shadow-lifted: 0 4px 16px rgba(15,25,35,0.10);
}

/* ── Base Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { background-color: #FAFBFD; color: #0F1923; font-family: 'Sohne', 'Inter', sans-serif; line-height: 1.6; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; background: none; border: none; }
address { font-style: normal; }

/* ── Font application ── */
.font-display { font-family: 'Editorial New', 'Fraunces', serif; }
.font-body    { font-family: 'Sohne', 'Inter', sans-serif; }
.font-mono    { font-family: 'Space Mono', 'Courier New', monospace; }

/* ── Layout ── */
.flex            { display: flex; }
.inline-flex     { display: inline-flex; }
.grid            { display: grid; }
.block           { display: block; }
.inline-block    { display: inline-block; }
.hidden          { display: none; }
.contents        { display: contents; }
.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-auto       { flex: 1 1 auto; }
.flex-none       { flex: none; }
.flex-shrink-0   { flex-shrink: 0; }
.grow            { flex-grow: 1; }
.shrink          { flex-shrink: 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)); }
.grid-cols-6   { grid-template-columns: repeat(6,minmax(0,1fr)); }
.grid-cols-12  { grid-template-columns: repeat(12,minmax(0,1fr)); }
.col-span-1    { grid-column: span 1 / span 1; }
.col-span-2    { grid-column: span 2 / span 2; }
.col-span-3    { grid-column: span 3 / span 3; }
.col-span-4    { grid-column: span 4 / span 4; }
.col-span-5    { grid-column: span 5 / span 5; }
.col-span-6    { grid-column: span 6 / span 6; }
.col-span-7    { grid-column: span 7 / span 7; }
.col-span-8    { grid-column: span 8 / span 8; }
.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; }

/* ── Container / Max-width ── */
.container      { width: 100%; margin-inline: auto; padding-inline: 1rem; }
.max-w-xs       { max-width: 20rem; }
.max-w-sm       { max-width: 24rem; }
.max-w-md       { max-width: 28rem; }
.max-w-lg       { max-width: 32rem; }
.max-w-xl       { max-width: 36rem; }
.max-w-2xl      { max-width: 42rem; }
.max-w-3xl      { max-width: 48rem; }
.max-w-4xl      { max-width: 56rem; }
.max-w-5xl      { max-width: 64rem; }
.max-w-6xl      { max-width: 72rem; }
.max-w-7xl      { max-width: 80rem; }
.max-w-none     { max-width: none; }
.max-w-full     { max-width: 100%; }
.min-w-0        { min-width: 0; }
.min-w-full     { min-width: 100%; }
.mx-auto        { margin-inline: auto; }
.w-full         { width: 100%; }
.w-screen       { width: 100vw; }
.w-auto         { width: auto; }
.h-auto         { height: auto; }
.h-full         { height: 100%; }
.h-screen       { height: 100vh; }
.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-\[400px\]{ max-height: 400px; }
.max-h-\[600px\]{ max-height: 600px; }

/* Fixed sizes */
.w-2   { width: 0.5rem; }
.w-4   { width: 1rem; }
.w-6   { width: 1.5rem; }
.w-8   { width: 2rem; }
.w-10  { width: 2.5rem; }
.w-12  { width: 3rem; }
.w-16  { width: 4rem; }
.w-20  { width: 5rem; }
.w-24  { width: 6rem; }
.w-32  { width: 8rem; }
.w-48  { width: 12rem; }
.w-64  { width: 16rem; }
.w-px  { width: 1px; }
.h-px  { height: 1px; }
.h-2   { height: 0.5rem; }
.h-4   { height: 1rem; }
.h-6   { height: 1.5rem; }
.h-8   { height: 2rem; }
.h-10  { height: 2.5rem; }
.h-12  { height: 3rem; }
.h-14  { height: 3.5rem; }
.h-16  { height: 4rem; }
.h-20  { height: 5rem; }
.h-24  { height: 6rem; }
.h-32  { height: 8rem; }
.h-48  { height: 12rem; }
.h-64  { height: 16rem; }
.h-80  { height: 20rem; }
.h-96  { height: 24rem; }

/* ── Position ── */
.relative { position: relative; }
.absolute { position: absolute; }
.fixed    { position: fixed; }
.sticky   { position: sticky; }
.static   { position: static; }
.inset-0  { inset: 0; }
.top-0    { top: 0; }
.right-0  { right: 0; }
.bottom-0 { bottom: 0; }
.left-0   { left: 0; }
.top-4    { top: 1rem; }
.bottom-4 { bottom: 1rem; }
.bottom-8 { bottom: 2rem; }
.-top-2   { top: -0.5rem; }
.-top-16  { top: -4rem; }
.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; }

/* ── 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-0   { padding-inline: 0; }
.px-2   { padding-inline: 0.5rem; }
.px-3   { padding-inline: 0.75rem; }
.px-4   { padding-inline: 1rem; }
.px-5   { padding-inline: 1.25rem; }
.px-6   { padding-inline: 1.5rem; }
.px-8   { padding-inline: 2rem; }
.px-10  { padding-inline: 2.5rem; }
.px-12  { padding-inline: 3rem; }
.px-16  { padding-inline: 4rem; }
.py-0   { padding-block: 0; }
.py-1   { padding-block: 0.25rem; }
.py-1\.5 { padding-block: 0.375rem; }
.py-2   { padding-block: 0.5rem; }
.py-2\.5 { padding-block: 0.625rem; }
.py-3   { padding-block: 0.75rem; }
.py-3\.5 { padding-block: 0.875rem; }
.py-4   { padding-block: 1rem; }
.py-5   { padding-block: 1.25rem; }
.py-6   { padding-block: 1.5rem; }
.py-8   { padding-block: 2rem; }
.py-10  { padding-block: 2.5rem; }
.py-12  { padding-block: 3rem; }
.py-14  { padding-block: 3.5rem; }
.py-16  { padding-block: 4rem; }
.py-20  { padding-block: 5rem; }
.py-24  { padding-block: 6rem; }
.py-28  { padding-block: 7rem; }
.py-32  { padding-block: 8rem; }
.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; }
.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; }
.pb-16  { padding-bottom: 4rem; }
.pl-4   { padding-left: 1rem; }
.pl-5   { padding-left: 1.25rem; }
.pl-6   { padding-left: 1.5rem; }
.pr-4   { padding-right: 1rem; }
.pr-6   { padding-right: 1.5rem; }

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

/* ── Gap ── */
.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-2  { row-gap: 0.5rem; }
.gap-y-4  { row-gap: 1rem; }
.gap-y-6  { row-gap: 1.5rem; }
.gap-y-8  { row-gap: 2rem; }

/* ── Typography ── */
.text-\[10px\]     { font-size: 10px; }
.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-\[clamp\(1\.5rem\,3vw\,2\.5rem\)\]  { font-size: clamp(1.5rem,3vw,2.5rem); }
.text-\[clamp\(2rem\,4vw\,3rem\)\]        { font-size: clamp(2rem,4vw,3rem); }
.text-\[clamp\(2rem\,5vw\,3\.5rem\)\]     { font-size: clamp(2rem,5vw,3.5rem); }
.text-\[clamp\(2\.5rem\,5vw\,4rem\)\]     { font-size: clamp(2.5rem,5vw,4rem); }
.text-\[clamp\(2\.5rem\,6vw\,5rem\)\]     { font-size: clamp(2.5rem,6vw,5rem); }
.text-\[clamp\(3rem\,7vw\,6rem\)\]        { font-size: clamp(3rem,7vw,6rem); }
.text-\[clamp\(4rem\,10vw\,8rem\)\]       { font-size: clamp(4rem,10vw,8rem); }
.text-\[clamp\(6rem\,20vw\,12rem\)\]      { font-size: clamp(6rem,20vw,12rem); }

.font-normal    { font-weight: 400; }
.font-medium    { font-weight: 500; }
.font-semibold  { font-weight: 600; }
.font-bold      { font-weight: 700; }
.font-black     { font-weight: 900; }
.italic         { font-style: italic; }
.not-italic     { font-style: normal; }
.uppercase      { text-transform: uppercase; }
.lowercase      { text-transform: lowercase; }
.capitalize     { text-transform: capitalize; }
.normal-case    { text-transform: none; }

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

.leading-none     { line-height: 1; }
.leading-tight    { line-height: 1.25; }
.leading-snug     { line-height: 1.375; }
.leading-normal   { line-height: 1.5; }
.leading-relaxed  { line-height: 1.625; }
.leading-loose    { line-height: 2; }

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

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

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

.antialiased        { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
.select-none        { user-select: none; }

.list-none          { list-style: none; }
.list-disc          { list-style-type: disc; }
.list-decimal       { list-style-type: decimal; }
.list-inside        { list-style-position: inside; }
.list-outside       { list-style-position: outside; }

/* ── Colors — Text ── */
.text-\[\#0F1923\]  { color: #0F1923; }
.text-\[\#1a1a1a\]  { color: #1a1a1a; }
.text-\[\#FAFBFD\]  { color: #FAFBFD; }
.text-\[\#F2F4F7\]  { color: #F2F4F7; }
.text-\[\#4A5A68\]  { color: #4A5A68; }
.text-\[\#8A9BAD\]  { color: #8A9BAD; }
.text-\[\#b45309\]  { color: #b45309; }
.text-\[\#92400e\]  { color: #92400e; }
.text-\[\#ffffff\]  { color: #ffffff; }
.text-white         { color: #ffffff; }
.text-inherit       { color: inherit; }
.text-current       { color: currentColor; }

/* ── Colors — Background ── */
.bg-\[\#FAFBFD\]    { background-color: #FAFBFD; }
.bg-\[\#F2F4F7\]    { background-color: #F2F4F7; }
.bg-\[\#0F1923\]    { background-color: #0F1923; }
.bg-\[\#1a2533\]    { background-color: #1a2533; }
.bg-\[\#b45309\]    { background-color: #b45309; }
.bg-\[\#92400e\]    { background-color: #92400e; }
.bg-\[\#fef3c7\]    { background-color: #fef3c7; }
.bg-\[\#ffffff\]    { background-color: #ffffff; }
.bg-white           { background-color: #ffffff; }
.bg-transparent     { background-color: transparent; }
.bg-\[rgba\(15\,25\,35\,0\.03\)\]   { background-color: rgba(15,25,35,0.03); }
.bg-\[rgba\(15\,25\,35\,0\.05\)\]   { background-color: rgba(15,25,35,0.05); }
.bg-\[rgba\(180\,83\,9\,0\.05\)\]   { background-color: rgba(180,83,9,0.05); }
.bg-\[rgba\(180\,83\,9\,0\.08\)\]   { background-color: rgba(180,83,9,0.08); }
.bg-\[rgba\(180\,83\,9\,0\.10\)\]   { background-color: rgba(180,83,9,0.10); }
.bg-\[rgba\(255\,255\,255\,0\.05\)\] { background-color: rgba(255,255,255,0.05); }
.bg-\[rgba\(255\,255\,255\,0\.10\)\] { background-color: rgba(255,255,255,0.10); }

/* ── Colors — Border ── */
.border-\[\#0F1923\]  { border-color: #0F1923; }
.border-\[\#FAFBFD\]  { border-color: #FAFBFD; }
.border-\[\#b45309\]  { border-color: #b45309; }
.border-\[\#8A9BAD\]  { border-color: #8A9BAD; }
.border-white         { border-color: #ffffff; }
.border-transparent   { border-color: transparent; }

/* Opacity modifiers on border */
.border-\[\#0F1923\]\/10  { border-color: rgba(15,25,35,0.10); }
.border-\[\#0F1923\]\/20  { border-color: rgba(15,25,35,0.20); }
.border-\[\#0F1923\]\/30  { border-color: rgba(15,25,35,0.30); }
.border-\[\#0F1923\]\/60  { border-color: rgba(15,25,35,0.60); }
.border-\[\#b45309\]\/20  { border-color: rgba(180,83,9,0.20); }
.border-\[\#b45309\]\/30  { border-color: rgba(180,83,9,0.30); }
.border-\[\#b45309\]\/40  { border-color: rgba(180,83,9,0.40); }
.border-\[\#FAFBFD\]\/20  { border-color: rgba(250,251,253,0.20); }
.border-\[\#8A9BAD\]\/30  { border-color: rgba(138,155,173,0.30); }

/* ── Borders ── */
.border      { border-width: 1px; border-style: solid; }
.border-0    { border-width: 0; }
.border-2    { border-width: 2px; border-style: solid; }
.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-l-2  { border-left-width: 2px; border-left-style: solid; }
.border-l-4  { border-left-width: 4px; border-left-style: solid; }
.border-l-\[\#b45309\] { border-left-color: #b45309; }
.border-t-\[\#b45309\] { border-top-color: #b45309; }

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

/* ── Shadows ── */
.shadow-none { box-shadow: none; }
.shadow-sm   { box-shadow: 0 1px 2px rgba(15,25,35,0.05); }
.shadow      { box-shadow: 0 1px 3px rgba(15,25,35,0.10), 0 1px 2px rgba(15,25,35,0.06); }
.shadow-md   { box-shadow: 0 4px 6px rgba(15,25,35,0.07), 0 2px 4px rgba(15,25,35,0.06); }
.shadow-lg   { box-shadow: 0 10px 15px rgba(15,25,35,0.10), 0 4px 6px rgba(15,25,35,0.05); }
.shadow-xl   { box-shadow: 0 20px 25px rgba(15,25,35,0.10), 0 10px 10px rgba(15,25,35,0.04); }
.shadow-\[4px_4px_0px_\#0F1923\]  { box-shadow: 4px 4px 0px #0F1923; }
.shadow-\[6px_6px_0px_\#0F1923\]  { box-shadow: 6px 6px 0px #0F1923; }
.shadow-\[2px_2px_0px_\#b45309\]  { box-shadow: 2px 2px 0px #b45309; }

/* ── Opacity ── */
.opacity-0   { opacity: 0; }
.opacity-5   { opacity: 0.05; }
.opacity-8   { opacity: 0.08; }
.opacity-10  { opacity: 0.10; }
.opacity-20  { opacity: 0.20; }
.opacity-30  { opacity: 0.30; }
.opacity-40  { opacity: 0.40; }
.opacity-50  { opacity: 0.50; }
.opacity-60  { opacity: 0.60; }
.opacity-70  { opacity: 0.70; }
.opacity-80  { opacity: 0.80; }
.opacity-90  { opacity: 0.90; }
.opacity-100 { opacity: 1; }

/* ── Overflow ── */
.overflow-hidden  { overflow: hidden; }
.overflow-auto    { overflow: auto; }
.overflow-scroll  { overflow: scroll; }
.overflow-x-auto  { overflow-x: auto; }
.overflow-x-hidden{ overflow-x: hidden; }
.overflow-y-auto  { overflow-y: auto; }
.truncate-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.truncate-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ── Aspect Ratios ── */
.aspect-square     { aspect-ratio: 1 / 1; }
.aspect-video      { aspect-ratio: 16 / 9; }
.aspect-\[16\/9\]  { aspect-ratio: 16 / 9; }
.aspect-\[21\/9\]  { aspect-ratio: 21 / 9; }
.aspect-\[4\/3\]   { aspect-ratio: 4 / 3; }
.aspect-\[3\/4\]   { aspect-ratio: 3 / 4; }
.aspect-\[3\/2\]   { aspect-ratio: 3 / 2; }

/* ── Object Fit ── */
.object-cover    { object-fit: cover; }
.object-contain  { object-fit: contain; }
.object-fill     { object-fit: fill; }
.object-center   { object-position: center; }
.object-top      { object-position: top; }

/* ── Transforms ── */
.rotate-90  { transform: rotate(90deg); }
.-rotate-90 { transform: rotate(-90deg); }
.rotate-180 { transform: rotate(180deg); }
.-rotate-3  { transform: rotate(-3deg); }
.rotate-3   { transform: rotate(3deg); }
.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-2  { transform: translateY(0.5rem); }
.-translate-y-2 { transform: translateY(-0.5rem); }

/* ── Transitions ── */
.transition         { transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter; transition-timing-function: cubic-bezier(0.4,0,0.2,1); transition-duration: 150ms; }
.transition-all     { transition: all 150ms cubic-bezier(0.4,0,0.2,1); }
.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: 150ms; }
.transition-transform{ transition-property: transform; transition-timing-function: cubic-bezier(0.4,0,0.2,1); transition-duration: 150ms; }
.duration-75   { transition-duration: 75ms; }
.duration-100  { transition-duration: 100ms; }
.duration-150  { transition-duration: 150ms; }
.duration-200  { transition-duration: 200ms; }
.duration-300  { transition-duration: 300ms; }
.duration-500  { transition-duration: 500ms; }
.duration-700  { transition-duration: 700ms; }
.ease-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); }
.ease-linear   { transition-timing-function: linear; }

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

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

/* ── Pointer events ── */
.pointer-events-none { pointer-events: none; }
.pointer-events-auto { pointer-events: auto; }

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

/* ── Fill / Stroke ── */
.fill-current   { fill: currentColor; }
.stroke-current { stroke: currentColor; }

/* ── Divide ── */
.divide-y > * + * { border-top-width: 1px; border-top-style: solid; }
.divide-\[\#0F1923\]\/10 > * + * { border-top-color: rgba(15,25,35,0.10); }

/* ── Ring ── */
.ring-0      { box-shadow: 0 0 0 0 transparent; }
.ring-1      { box-shadow: 0 0 0 1px #0F1923; }
.ring-2      { box-shadow: 0 0 0 2px #b45309; }
.ring-inset  { --ring-inset: inset; }
.focus\:ring-0:focus { box-shadow: none; }
.focus\:outline-none:focus { outline: none; }

/* ── Forms ── */
input, textarea, select {
  width: 100%;
  background-color: #FAFBFD;
  color: #0F1923;
  border: 1px solid rgba(15,25,35,0.20);
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-family: inherit;
  line-height: 1.5;
  outline: none;
  transition: border-color 150ms ease;
}
input:focus, textarea:focus, select:focus {
  border-color: #b45309;
}
input::placeholder, textarea::placeholder {
  color: #8A9BAD;
}
label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #4A5A68;
  margin-bottom: 0.5rem;
}

/* ── Animate ── */
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.5; }
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
@keyframes ping {
  75%, 100% { transform: scale(2); opacity: 0; }
}
@keyframes bounce {
  0%, 100% { transform: translateY(-25%); animation-timing-function: cubic-bezier(0.8,0,1,1); }
  50%       { transform: none; animation-timing-function: cubic-bezier(0,0,0.2,1); }
}
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.animate-pulse    { animation: pulse 2s cubic-bezier(0.4,0,0.6,1) infinite; }
.animate-spin     { animation: spin 1s linear infinite; }
.animate-ping     { animation: ping 1s cubic-bezier(0,0,0.2,1) infinite; }
.animate-bounce   { animation: bounce 1s infinite; }
.animate-marquee  { animation: marquee 30s linear infinite; }
.animate-marquee-slow { animation: marquee 50s linear infinite; }

/* ── Group hover / peer ── */
.group {}
.group:hover .group-hover\:scale-105  { transform: scale(1.05); }
.group:hover .group-hover\:opacity-100 { opacity: 1; }
.group:hover .group-hover\:bg-\[rgba\(180\,83\,9\,0\.05\)\] { background-color: rgba(180,83,9,0.05); }

/* ── Hover utilities ── */
.hover\:text-\[\#b45309\]:hover   { color: #b45309; }
.hover\:text-\[\#92400e\]:hover   { color: #92400e; }
.hover\:text-\[\#FAFBFD\]:hover   { color: #FAFBFD; }
.hover\:text-\[\#0F1923\]:hover   { color: #0F1923; }
.hover\:bg-\[\#92400e\]:hover     { background-color: #92400e; }
.hover\:bg-\[\#b45309\]:hover     { background-color: #b45309; }
.hover\:bg-\[rgba\(250\,251\,253\,0\.05\)\]:hover { background-color: rgba(250,251,253,0.05); }
.hover\:border-\[\#b45309\]:hover { border-color: #b45309; }
.hover\:border-\[\#b45309\]\/40:hover { border-color: rgba(180,83,9,0.40); }
.hover\:opacity-70:hover  { opacity: 0.70; }
.hover\:opacity-80:hover  { opacity: 0.80; }
.hover\:opacity-90:hover  { opacity: 0.90; }
.hover\:shadow-lg:hover   { box-shadow: 0 10px 15px rgba(15,25,35,0.10), 0 4px 6px rgba(15,25,35,0.05); }
.hover\:scale-105:hover   { transform: scale(1.05); }
.hover\:underline:hover   { text-decoration: underline; }
.focus\:border-\[\#b45309\]:focus { border-color: #b45309; }

/* ── Misc utilities ── */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border-width: 0; }
.not-sr-only { position: static; width: auto; height: auto; padding: 0; margin: 0; overflow: visible; clip: auto; white-space: normal; }
.appearance-none { -webkit-appearance: none; -moz-appearance: none; appearance: none; }
.resize-none    { resize: none; }
.outline-none   { outline: none; }
.outline        { outline: 2px solid #b45309; }
.outline-offset-2 { outline-offset: 2px; }

/* ── Arbitrary sizes ── */
.w-\[calc\(100\%-1\.5rem\)\] { width: calc(100% - 1.5rem); }
.w-\[1px\]   { width: 1px; }
.h-\[1px\]   { height: 1px; }
.w-\[2px\]   { width: 2px; }
.h-\[2px\]   { height: 2px; }
.w-\[3px\]   { width: 3px; }
.h-\[3px\]   { height: 3px; }
.w-\[40px\]  { width: 40px; }
.h-\[40px\]  { height: 40px; }
.w-\[48px\]  { width: 48px; }
.h-\[48px\]  { height: 48px; }
.w-\[60px\]  { width: 60px; }
.h-\[60px\]  { height: 60px; }
.w-\[80px\]  { width: 80px; }
.h-\[80px\]  { height: 80px; }
.max-w-\[1220px\] { max-width: 1220px; }

/* ── Marquee strip ── */
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 40s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }

/* ── Numbered section counters ── */
.section-number {
  font-family: 'Editorial New','Fraunces',serif;
  font-size: clamp(5rem,12vw,9rem);
  color: #0F1923;
  opacity: 0.05;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

/* ── Vertical text label ── */
.rotate-label {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  font-size: 0.625rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #8A9BAD;
}

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

/* ── Swiper overrides ── */
.swiper-pagination-bullet { background: #8A9BAD; opacity: 0.4; }
.swiper-pagination-bullet-active { background: #b45309; opacity: 1; }

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

/* ── Print ── */
@media print {
  .no-print { display: none !important; }
}

/* ══════════════════════════════════════════
   RESPONSIVE — sm: (640px)
   ══════════════════════════════════════════ */
@media (min-width: 640px) {
  .sm\:flex       { display: flex; }
  .sm\:hidden     { display: none; }
  .sm\:block      { display: block; }
  .sm\:grid-cols-1{ grid-template-columns: repeat(1,minmax(0,1fr)); }
  .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\:flex-col   { flex-direction: column; }
  .sm\:items-center{ align-items: center; }
  .sm\:justify-center { justify-content: center; }
  .sm\:gap-4      { gap: 1rem; }
  .sm\:gap-6      { gap: 1.5rem; }
  .sm\:px-6       { padding-inline: 1.5rem; }
  .sm\:py-8       { padding-block: 2rem; }
  .sm\:text-sm    { font-size: 0.875rem; line-height: 1.25rem; }
  .sm\:text-base  { font-size: 1rem; line-height: 1.5rem; }
  .sm\:text-lg    { font-size: 1.125rem; line-height: 1.75rem; }
  .sm\:text-2xl   { font-size: 1.5rem; line-height: 2rem; }
  .sm\:text-3xl   { font-size: 1.875rem; line-height: 2.25rem; }
  .sm\:w-auto     { width: auto; }
  .sm\:col-span-1 { grid-column: span 1 / span 1; }
  .sm\:col-span-2 { grid-column: span 2 / span 2; }
}

/* ══════════════════════════════════════════
   RESPONSIVE — md: (768px)
   ══════════════════════════════════════════ */
@media (min-width: 768px) {
  .md\:flex         { display: flex; }
  .md\:hidden       { display: none; }
  .md\:block        { display: block; }
  .md\:inline-block { display: inline-block; }
  .md\:grid         { display: grid; }
  .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\:grid-cols-5  { grid-template-columns: repeat(5,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-5   { grid-column: span 5 / span 5; }
  .md\:row-span-2   { grid-row: span 2 / span 2; }
  .md\:flex-row     { flex-direction: row; }
  .md\:flex-col     { flex-direction: column; }
  .md\:flex-nowrap  { flex-wrap: nowrap; }
  .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-4    { gap: 1rem; }
  .md\:gap-5    { gap: 1.25rem; }
  .md\:gap-6    { gap: 1.5rem; }
  .md\:gap-8    { gap: 2rem; }
  .md\:gap-10   { gap: 2.5rem; }
  .md\:gap-12   { gap: 3rem; }
  .md\:gap-16   { gap: 4rem; }
  .md\:gap-0    { gap: 0; }
  .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-inline: 2rem; }
  .md\:px-12    { padding-inline: 3rem; }
  .md\:px-16    { padding-inline: 4rem; }
  .md\:py-4     { padding-block: 1rem; }
  .md\:py-6     { padding-block: 1.5rem; }
  .md\:py-8     { padding-block: 2rem; }
  .md\:py-10    { padding-block: 2.5rem; }
  .md\:py-12    { padding-block: 3rem; }
  .md\:py-16    { padding-block: 4rem; }
  .md\:py-20    { padding-block: 5rem; }
  .md\:py-24    { padding-block: 6rem; }
  .md\:py-28    { padding-block: 7rem; }
  .md\:pt-0     { padding-top: 0; }
  .md\:pt-8     { padding-top: 2rem; }
  .md\:pt-12    { padding-top: 3rem; }
  .md\:aspect-\[21\/9\] { aspect-ratio: 21/9; }
  .md\:aspect-\[16\/9\] { aspect-ratio: 16/9; }
  .md\:text-sm   { font-size: 0.875rem; line-height: 1.25rem; }
  .md\:text-base { font-size: 1rem; line-height: 1.5rem; }
  .md\:text-lg   { font-size: 1.125rem; line-height: 1.75rem; }
  .md\:text-xl   { font-size: 1.25rem; line-height: 1.75rem; }
  .md\:text-2xl  { font-size: 1.5rem; line-height: 2rem; }
  .md\:text-3xl  { font-size: 1.875rem; line-height: 2.25rem; }
  .md\:text-4xl  { font-size: 2.25rem; line-height: 2.5rem; }
  .md\:text-5xl  { font-size: 3rem; line-height: 1; }
  .md\:text-left    { text-align: left; }
  .md\:text-right   { text-align: right; }
  .md\:text-center  { text-align: center; }
  .md\:w-auto   { width: auto; }
  .md\:w-1\/2   { width: 50%; }
  .md\:w-1\/3   { width: 33.333333%; }
  .md\:w-2\/3   { width: 66.666667%; }
  .md\:min-h-\[70vh\] { min-height: 70vh; }
  .md\:min-h-\[80vh\] { min-height: 80vh; }
  .md\:max-w-xl  { max-width: 36rem; }
  .md\:max-w-2xl { max-width: 42rem; }
  .md\:max-w-3xl { max-width: 48rem; }
  .md\:sticky    { position: sticky; }
  .md\:top-8     { top: 2rem; }
  .md\:justify-end { justify-content: flex-end; }
}

/* ══════════════════════════════════════════
   RESPONSIVE — lg: (1024px)
   ══════════════════════════════════════════ */
@media (min-width: 1024px) {
  .lg\:flex           { display: flex; }
  .lg\:hidden         { display: none; }
  .lg\:block          { display: block; }
  .lg\:grid-cols-2    { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .lg\:grid-cols-3    { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .lg\:grid-cols-4    { grid-template-columns: repeat(4,minmax(0,1fr)); }
  .lg\:grid-cols-5    { grid-template-columns: repeat(5,minmax(0,1fr)); }
  .lg\:col-span-1     { grid-column: span 1 / span 1; }
  .lg\:col-span-2     { grid-column: span 2 / span 2; }
  .lg\:col-span-3     { grid-column: span 3 / span 3; }
  .lg\:col-span-4     { grid-column: span 4 / span 4; }
  .lg\:flex-row       { flex-direction: row; }
  .lg\:items-start    { align-items: flex-start; }
  .lg\:items-center   { align-items: center; }
  .lg\:justify-between{ justify-content: space-between; }
  .lg\:gap-8          { gap: 2rem; }
  .lg\:gap-12         { gap: 3rem; }
  .lg\:gap-16         { gap: 4rem; }
  .lg\:px-8           { padding-inline: 2rem; }
  .lg\:py-16          { padding-block: 4rem; }
  .lg\:py-20          { padding-block: 5rem; }
  .lg\:py-24          { padding-block: 6rem; }
  .lg\:py-32          { padding-block: 8rem; }
  .lg\:text-base      { font-size: 1rem; line-height: 1.5rem; }
  .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\:w-1\/2         { width: 50%; }
  .lg\:w-auto         { width: auto; }
  .lg\:max-w-2xl      { max-width: 42rem; }
  .lg\:max-w-3xl      { max-width: 48rem; }
  .lg\:min-h-\[80vh\] { min-height: 80vh; }
  .lg\:sticky         { position: sticky; }
  .lg\:top-8          { top: 2rem; }
}

/* ══════════════════════════════════════════
   RESPONSIVE — xl: (1280px)
   ══════════════════════════════════════════ */
@media (min-width: 1280px) {
  .xl\:grid-cols-4  { grid-template-columns: repeat(4,minmax(0,1fr)); }
  .xl\:grid-cols-5  { grid-template-columns: repeat(5,minmax(0,1fr)); }
  .xl\:col-span-3   { grid-column: span 3 / span 3; }
  .xl\:gap-12       { gap: 3rem; }
  .xl\:px-0         { padding-inline: 0; }
  .xl\:text-5xl     { font-size: 3rem; line-height: 1; }
  .xl\:text-6xl     { font-size: 3.75rem; line-height: 1; }
}
