@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@700&family=Space+Mono:wght@400&display=swap');

/* ============================================================
   OTALIVEN — Prebuilt Tailwind v4.1.5 Output
   Design Family: Editorial Minimalist
   Palette: Warm Cream / Mustard Amber
   ============================================================ */

@theme {
  --color-bg-primary: #F6F2E9;
  --color-bg-secondary: #EDE8DA;
  --color-ink-primary: #1C1A14;
  --color-ink-muted: #7A7060;
  --color-accent: #C97B04;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Space Mono', monospace;
  --radius-sm: 2px;
  --radius-md: 4px;
  --radius-lg: 8px;
  --shadow-sm: 0 1px 3px rgba(28,26,20,0.07);
  --shadow-md: 0 4px 16px rgba(28,26,20,0.09);
  --shadow-lg: 0 8px 32px rgba(28,26,20,0.12);
  --spacing-1: 0.25rem;
  --spacing-2: 0.5rem;
  --spacing-3: 0.75rem;
  --spacing-4: 1rem;
  --spacing-5: 1.25rem;
  --spacing-6: 1.5rem;
  --spacing-8: 2rem;
  --spacing-10: 2.5rem;
  --spacing-12: 3rem;
  --spacing-16: 4rem;
  --spacing-20: 5rem;
  --spacing-24: 6rem;
}

/* ============================================================
   BASE LAYER
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: 'Space Mono', monospace;
  background-color: #F6F2E9;
  color: #1C1A14;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #1C1A14;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }
address { font-style: normal; }

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */

.container { width: 100%; margin-left: auto; margin-right: auto; padding-left: 1rem; padding-right: 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-full { max-width: 100%; }
.max-w-none { max-width: none; }
.w-full { width: 100%; }
.w-auto { width: auto; }
.w-1\/2 { width: 50%; }
.w-1\/3 { width: 33.3333%; }
.w-2\/3 { width: 66.6667%; }
.w-1\/4 { width: 25%; }
.w-3\/4 { width: 75%; }
.h-full { height: 100%; }
.h-auto { height: auto; }
.h-screen { height: 100vh; }
.min-h-screen { min-height: 100vh; }
.min-h-0 { min-height: 0; }
.min-w-0 { min-width: 0; }
.mx-auto { margin-left: auto; margin-right: auto; }
.overflow-hidden { overflow: hidden; }
.overflow-auto { overflow: auto; }
.overflow-x-hidden { overflow-x: hidden; }
.overflow-y-auto { overflow-y: auto; }
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.sticky { position: sticky; }
.top-0 { top: 0; }
.bottom-0 { bottom: 0; }
.bottom-4 { bottom: 1rem; }
.left-0 { left: 0; }
.right-0 { right: 0; }
.left-1\/2 { left: 50%; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.z-50 { z-index: 50; }
.z-100 { z-index: 100; }

/* Flex */
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.flex-wrap { flex-wrap: wrap; }
.flex-nowrap { flex-wrap: nowrap; }
.items-start { align-items: flex-start; }
.items-center { align-items: center; }
.items-end { align-items: flex-end; }
.items-stretch { align-items: stretch; }
.justify-start { justify-content: flex-start; }
.justify-center { justify-content: center; }
.justify-end { justify-content: flex-end; }
.justify-between { justify-content: space-between; }
.justify-around { justify-content: space-around; }
.self-start { align-self: flex-start; }
.self-center { align-self: center; }
.self-end { align-self: flex-end; }
.self-stretch { align-self: stretch; }
.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; }
.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-2 { column-gap: 0.5rem; }
.gap-x-4 { column-gap: 1rem; }
.gap-x-6 { column-gap: 1.5rem; }
.gap-x-8 { column-gap: 2rem; }
.gap-y-2 { row-gap: 0.5rem; }
.gap-y-4 { row-gap: 1rem; }
.gap-y-6 { row-gap: 1.5rem; }
.gap-y-8 { row-gap: 2rem; }

/* Grid */
.grid { display: 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-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; }
.row-span-3 { grid-row: span 3 / span 3; }
.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; }

/* Display */
.block { display: block; }
.inline-block { display: inline-block; }
.inline { display: inline; }
.hidden { display: none; }
.table { display: table; }

/* ============================================================
   SPACING UTILITIES
   ============================================================ */

.p-0 { padding: 0; }
.p-1 { padding: 0.25rem; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.p-10 { padding: 2.5rem; }
.p-12 { padding: 3rem; }
.p-16 { padding: 4rem; }
.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.px-10 { padding-left: 2.5rem; padding-right: 2.5rem; }
.px-12 { padding-left: 3rem; padding-right: 3rem; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-2\.5 { padding-top: 0.625rem; padding-bottom: 0.625rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-10 { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }
.pt-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; }
.pb-2 { padding-bottom: 0.5rem; }
.pb-3 { padding-bottom: 0.75rem; }
.pb-4 { padding-bottom: 1rem; }
.pb-6 { padding-bottom: 1.5rem; }
.pb-8 { padding-bottom: 2rem; }
.pb-12 { padding-bottom: 3rem; }
.pl-4 { padding-left: 1rem; }
.pr-4 { padding-right: 1rem; }
.m-0 { margin: 0; }
.m-1 { margin: 0.25rem; }
.m-2 { margin: 0.5rem; }
.m-4 { margin: 1rem; }
.m-auto { margin: auto; }
.mx-1 { margin-left: 0.25rem; margin-right: 0.25rem; }
.mx-2 { margin-left: 0.5rem; margin-right: 0.5rem; }
.mx-4 { margin-left: 1rem; margin-right: 1rem; }
.my-2 { margin-top: 0.5rem; margin-bottom: 0.5rem; }
.my-4 { margin-top: 1rem; margin-bottom: 1rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.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-16 { margin-top: 4rem; }
.mt-20 { margin-top: 5rem; }
.mt-24 { margin-top: 6rem; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.25rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.ml-1 { margin-left: 0.25rem; }
.ml-2 { margin-left: 0.5rem; }
.ml-4 { margin-left: 1rem; }
.ml-auto { margin-left: auto; }
.mr-1 { margin-right: 0.25rem; }
.mr-2 { margin-right: 0.5rem; }
.mr-4 { margin-right: 1rem; }
.mr-auto { margin-right: auto; }

/* ============================================================
   SIZING
   ============================================================ */

.w-2 { width: 0.5rem; }
.w-3 { width: 0.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; }
.h-2 { height: 0.5rem; }
.h-3 { height: 0.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-48 { height: 12rem; }
.h-56 { height: 14rem; }
.h-64 { height: 16rem; }
.h-72 { height: 18rem; }
.h-80 { height: 20rem; }
.h-96 { height: 24rem; }
.min-h-\[200px\] { min-height: 200px; }
.min-h-\[300px\] { min-height: 300px; }
.min-h-\[400px\] { min-height: 400px; }
.min-h-\[500px\] { min-height: 500px; }
.min-h-\[600px\] { min-height: 600px; }
.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; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */

.font-display { font-family: 'Space Grotesk', sans-serif; }
.font-body { font-family: 'Space Mono', monospace; }
.font-mono { font-family: 'Space Mono', monospace; }
.font-sans { font-family: 'Space Grotesk', sans-serif; }
.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; }
.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-\[11px\] { font-size: 11px; }
.text-\[13px\] { font-size: 13px; }
.text-\[15px\] { font-size: 15px; }
.text-\[28px\] { font-size: 28px; }
.text-\[32px\] { font-size: 32px; }
.text-\[40px\] { font-size: 40px; }
.text-\[48px\] { font-size: 48px; }
.text-\[56px\] { font-size: 56px; }
.text-\[64px\] { font-size: 64px; }
.text-\[72px\] { font-size: 72px; }
.text-\[80px\] { font-size: 80px; }
.text-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; }
.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\.15em\] { letter-spacing: 0.15em; }
.tracking-\[0\.2em\] { letter-spacing: 0.2em; }
.leading-none { line-height: 1; }
.leading-tight { line-height: 1.25; }
.leading-snug { line-height: 1.375; }
.leading-normal { line-height: 1.5; }
.leading-relaxed { line-height: 1.625; }
.leading-loose { line-height: 2; }
.leading-\[1\.1\] { line-height: 1.1; }
.leading-\[1\.3\] { line-height: 1.3; }
.leading-\[1\.7\] { line-height: 1.7; }
.leading-6 { line-height: 1.5rem; }
.leading-7 { line-height: 1.75rem; }
.leading-8 { line-height: 2rem; }
.underline { text-decoration-line: underline; }
.no-underline { text-decoration-line: none; }
.line-through { text-decoration-line: line-through; }
.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-wrap { white-space: pre-wrap; }
.break-words { overflow-wrap: break-word; }

/* ============================================================
   COLORS
   ============================================================ */

/* Background colors */
.bg-transparent { background-color: transparent; }
.bg-white { background-color: #ffffff; }
.bg-black { background-color: #000000; }
.bg-\[\#F6F2E9\] { background-color: #F6F2E9; }
.bg-\[\#EDE8DA\] { background-color: #EDE8DA; }
.bg-\[\#E5DEC8\] { background-color: #E5DEC8; }
.bg-\[\#D9D0BB\] { background-color: #D9D0BB; }
.bg-\[\#1C1A14\] { background-color: #1C1A14; }
.bg-\[\#2A2620\] { background-color: #2A2620; }
.bg-\[\#C97B04\] { background-color: #C97B04; }
.bg-\[\#A86203\] { background-color: #A86203; }
.bg-\[\#7A7060\] { background-color: #7A7060; }
.bg-\[\#F0EBE0\] { background-color: #F0EBE0; }
.bg-\[\#FAF8F2\] { background-color: #FAF8F2; }
.bg-\[\#F9F5ED\] { background-color: #F9F5ED; }
.bg-\[\#FFFDF8\] { background-color: #FFFDF8; }

/* Text colors */
.text-white { color: #ffffff; }
.text-black { color: #000000; }
.text-\[\#F6F2E9\] { color: #F6F2E9; }
.text-\[\#EDE8DA\] { color: #EDE8DA; }
.text-\[\#1C1A14\] { color: #1C1A14; }
.text-\[\#2A2620\] { color: #2A2620; }
.text-\[\#C97B04\] { color: #C97B04; }
.text-\[\#A86203\] { color: #A86203; }
.text-\[\#7A7060\] { color: #7A7060; }
.text-\[\#5C5347\] { color: #5C5347; }
.text-\[\#FAF8F2\] { color: #FAF8F2; }
.text-\[\#D8C89A\] { color: #D8C89A; }
.text-\[\#B8A880\] { color: #B8A880; }

/* Border colors */
.border-\[\#1C1A14\] { border-color: #1C1A14; }
.border-\[\#C97B04\] { border-color: #C97B04; }
.border-\[\#7A7060\] { border-color: #7A7060; }
.border-\[\#EDE8DA\] { border-color: #EDE8DA; }
.border-\[\#D9D0BB\] { border-color: #D9D0BB; }
.border-white { border-color: #ffffff; }

/* ============================================================
   BORDERS
   ============================================================ */

.border { border-width: 1px; border-style: solid; }
.border-0 { border-width: 0; }
.border-2 { border-width: 2px; }
.border-4 { border-width: 4px; }
.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-t-0 { border-top-width: 0; }
.border-b-0 { border-bottom-width: 0; }
.border-l-0 { border-left-width: 0; }
.border-r-0 { border-right-width: 0; }
.border-l-4 { border-left-width: 4px; border-left-style: solid; }
.border-l-\[\#C97B04\] { border-left-color: #C97B04; }
.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; }
.divide-y > * + * { border-top-width: 1px; border-top-style: solid; }
.divide-\[\#EDE8DA\] > * + * { border-top-color: #EDE8DA; }
.divide-\[\#D9D0BB\] > * + * { border-top-color: #D9D0BB; }

/* Opacity border utilities */
.border-\[\#1C1A14\]\/10 { border-color: rgba(28,26,20,0.10); }
.border-\[\#1C1A14\]\/20 { border-color: rgba(28,26,20,0.20); }
.border-\[\#1C1A14\]\/30 { border-color: rgba(28,26,20,0.30); }
.border-\[\#7A7060\]\/20 { border-color: rgba(122,112,96,0.20); }
.border-\[\#7A7060\]\/30 { border-color: rgba(122,112,96,0.30); }
.border-\[\#7A7060\]\/40 { border-color: rgba(122,112,96,0.40); }
.border-\[rgba\(255\,255\,255\,0\.180\)\] { border-color: rgba(255,255,255,0.18); }
.border-\[rgba\(216\,226\,220\,0\.280\)\] { border-color: rgba(216,226,220,0.28); }

/* ============================================================
   EFFECTS
   ============================================================ */

.shadow-sm { box-shadow: 0 1px 3px rgba(28,26,20,0.07); }
.shadow { box-shadow: 0 2px 8px rgba(28,26,20,0.08); }
.shadow-md { box-shadow: 0 4px 16px rgba(28,26,20,0.09); }
.shadow-lg { box-shadow: 0 8px 32px rgba(28,26,20,0.12); }
.shadow-none { box-shadow: none; }
.opacity-0 { opacity: 0; }
.opacity-50 { opacity: 0.5; }
.opacity-70 { opacity: 0.7; }
.opacity-80 { opacity: 0.80; }
.opacity-90 { opacity: 0.9; }
.opacity-100 { opacity: 1; }
.backdrop-blur-xl { backdrop-filter: blur(24px); }
.backdrop-blur-sm { backdrop-filter: blur(4px); }
.object-cover { object-fit: cover; }
.object-contain { object-fit: contain; }
.object-center { object-position: center; }
.object-top { object-position: top; }

/* ============================================================
   TRANSFORMS
   ============================================================ */

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

/* ============================================================
   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-property: all; transition-timing-function: cubic-bezier(0.4,0,0.2,1); transition-duration: 150ms; }
.transition-colors { transition-property: color, background-color, border-color; transition-timing-function: cubic-bezier(0.4,0,0.2,1); transition-duration: 150ms; }
.transition-opacity { transition-property: opacity; transition-timing-function: cubic-bezier(0.4,0,0.2,1); transition-duration: 150ms; }
.transition-transform { transition-property: transform; transition-timing-function: cubic-bezier(0.4,0,0.2,1); transition-duration: 150ms; }
.duration-150 { transition-duration: 150ms; }
.duration-200 { transition-duration: 200ms; }
.duration-300 { transition-duration: 300ms; }
.duration-500 { transition-duration: 500ms; }
.ease-in { transition-timing-function: 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); }
.cursor-pointer { cursor: pointer; }
.cursor-default { cursor: default; }
.select-none { user-select: none; }
.pointer-events-none { pointer-events: none; }
.resize-none { resize: none; }

/* ============================================================
   PSEUDO-STATES (hover, focus, active, group)
   ============================================================ */

.hover\:text-\[\#C97B04\]:hover { color: #C97B04; }
.hover\:text-\[\#1C1A14\]:hover { color: #1C1A14; }
.hover\:text-\[\#F6F2E9\]:hover { color: #F6F2E9; }
.hover\:bg-\[\#C97B04\]:hover { background-color: #C97B04; }
.hover\:bg-\[\#A86203\]:hover { background-color: #A86203; }
.hover\:bg-\[\#EDE8DA\]:hover { background-color: #EDE8DA; }
.hover\:bg-\[\#1C1A14\]:hover { background-color: #1C1A14; }
.hover\:border-\[\#C97B04\]:hover { border-color: #C97B04; }
.hover\:opacity-90:hover { opacity: 0.9; }
.hover\:opacity-80:hover { opacity: 0.8; }
.hover\:scale-105:hover { transform: scale(1.05); }
.hover\:shadow-md:hover { box-shadow: 0 4px 16px rgba(28,26,20,0.09); }
.hover\:underline:hover { text-decoration-line: underline; }
.focus\:outline-none:focus { outline: none; }
.focus\:border-\[\#C97B04\]:focus { border-color: #C97B04; }
.focus\:ring-2:focus { box-shadow: 0 0 0 2px rgba(201,123,4,0.3); }
.active\:opacity-80:active { opacity: 0.8; }

/* Group hover */
.group:hover .group-hover\:text-\[\#C97B04\] { color: #C97B04; }
.group:hover .group-hover\:opacity-100 { opacity: 1; }

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

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

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

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

@media (min-width: 1280px) {
  .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\:px-8 { padding-left: 2rem; padding-right: 2rem; }
  .xl\:gap-16 { gap: 4rem; }
}

/* ============================================================
   ARBITRARY VALUE CLASSES — JIT generated
   ============================================================ */

.w-\[calc\(100\%-1\.5rem\)\] { width: calc(100% - 1.5rem); }
.max-w-\[1220px\] { max-width: 1220px; }
.max-w-\[680px\] { max-width: 680px; }
.max-w-\[760px\] { max-width: 760px; }
.max-w-\[900px\] { max-width: 900px; }
.max-w-\[400px\] { max-width: 400px; }
.min-h-\[320px\] { min-height: 320px; }
.min-h-\[420px\] { min-height: 420px; }
.min-h-\[480px\] { min-height: 480px; }
.min-h-\[560px\] { min-height: 560px; }
.h-\[1px\] { height: 1px; }
.h-\[2px\] { height: 2px; }
.h-\[40px\] { height: 40px; }
.h-\[48px\] { height: 48px; }
.h-\[56px\] { height: 56px; }
.h-\[80px\] { height: 80px; }
.h-\[120px\] { height: 120px; }
.h-\[160px\] { height: 160px; }
.h-\[200px\] { height: 200px; }
.h-\[240px\] { height: 240px; }
.h-\[280px\] { height: 280px; }
.h-\[320px\] { height: 320px; }
.h-\[360px\] { height: 360px; }
.h-\[400px\] { height: 400px; }
.h-\[440px\] { height: 440px; }
.h-\[480px\] { height: 480px; }
.w-\[48px\] { width: 48px; }
.w-\[56px\] { width: 56px; }
.w-\[80px\] { width: 80px; }
.w-\[120px\] { width: 120px; }
.top-\[50\%\] { top: 50%; }
.left-\[50\%\] { left: 50%; }
.-translate-y-\[50\%\] { transform: translateY(-50%); }
.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; }

/* Background opacity shorthand */
.bg-\[\#C97B04\]\/10 { background-color: rgba(201,123,4,0.10); }
.bg-\[\#C97B04\]\/20 { background-color: rgba(201,123,4,0.20); }
.bg-\[\#1C1A14\]\/5 { background-color: rgba(28,26,20,0.05); }
.bg-\[\#1C1A14\]\/10 { background-color: rgba(28,26,20,0.10); }
.bg-\[\#1C1A14\]\/90 { background-color: rgba(28,26,20,0.90); }
.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); }

/* Text opacity */
.text-\[\#1C1A14\]\/70 { color: rgba(28,26,20,0.70); }
.text-\[\#7A7060\]\/80 { color: rgba(122,112,96,0.80); }

/* ============================================================
   MARQUEE / SCROLLING STRIP
   ============================================================ */

.marquee-track { display: flex; width: max-content; animation: marquee-scroll 30s linear infinite; }
@keyframes marquee-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.marquee-container { overflow: hidden; }

/* ============================================================
   ROTATED LABELS
   ============================================================ */

.rotate-label { writing-mode: vertical-rl; text-orientation: mixed; transform: rotate(180deg); }
.vertical-text { writing-mode: vertical-lr; text-orientation: mixed; }

/* ============================================================
   HAIRLINE BORDERS (Editorial Minimalist)
   ============================================================ */

.hairline { border: 1px solid rgba(28,26,20,0.15); }
.hairline-t { border-top: 1px solid rgba(28,26,20,0.15); }
.hairline-b { border-bottom: 1px solid rgba(28,26,20,0.15); }

/* ============================================================
   MONO TERMINAL LABELS
   ============================================================ */

.mono-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #7A7060;
}

/* ============================================================
   NUMBERED SECTION MARKERS
   ============================================================ */

.section-marker {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #C97B04;
}

/* ============================================================
   BENTO GRID SYSTEM
   ============================================================ */

.bento-grid { display: grid; gap: 1px; background-color: rgba(28,26,20,0.10); }
.bento-card { background-color: #F6F2E9; padding: 1.5rem; }
.bento-card-accent { background-color: #1C1A14; color: #F6F2E9; padding: 1.5rem; }

/* ============================================================
   ACCORDION COMPONENT
   ============================================================ */

.accordion-item { border-bottom: 1px solid rgba(28,26,20,0.15); }
.accordion-trigger { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 1.25rem 0; cursor: pointer; background: none; border: none; font-family: 'Space Grotesk', sans-serif; font-size: 1rem; font-weight: 700; color: #1C1A14; text-align: left; }
.accordion-content { overflow: hidden; max-height: 0; transition: max-height 0.3s ease-out; }
.accordion-content.open { max-height: 400px; }
.accordion-content p { padding-bottom: 1.25rem; font-family: 'Space Mono', monospace; font-size: 0.875rem; color: #7A7060; line-height: 1.7; }

/* ============================================================
   CAPTION OVERLAY
   ============================================================ */

.caption-overlay { position: absolute; bottom: 0; left: 0; right: 0; padding: 0.75rem 1rem; background: rgba(28,26,20,0.65); }
.caption-text { font-family: 'Space Mono', monospace; font-size: 0.6875rem; color: rgba(246,242,233,0.85); text-transform: uppercase; letter-spacing: 0.08em; }

/* ============================================================
   FORM ELEMENTS
   ============================================================ */

input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select {
  font-family: 'Space Mono', monospace;
  font-size: 0.875rem;
  color: #1C1A14;
  background-color: #F6F2E9;
  border: 1px solid rgba(28,26,20,0.25);
  padding: 0.75rem 1rem;
  width: 100%;
  transition: border-color 0.15s ease;
  outline: none;
  border-radius: 0;
  -webkit-appearance: none;
}
input:focus, textarea:focus, select:focus { border-color: #C97B04; }
label { font-family: 'Space Mono', monospace; font-size: 0.6875rem; text-transform: uppercase; letter-spacing: 0.1em; color: #7A7060; display: block; margin-bottom: 0.5rem; }

/* ============================================================
   NAVIGATION
   ============================================================ */

nav a { transition: color 0.15s ease; }
nav a:hover { color: #C97B04; }
nav a.active { color: #C97B04; }

/* ============================================================
   BUTTON STYLES
   ============================================================ */

.btn-primary {
  display: inline-block;
  background-color: #C97B04;
  color: #F6F2E9;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.875rem 2rem;
  border: 1px solid #C97B04;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease;
  text-decoration: none;
}
.btn-primary:hover { background-color: #A86203; border-color: #A86203; }

.btn-secondary {
  display: inline-block;
  background-color: transparent;
  color: #1C1A14;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.875rem 2rem;
  border: 1px solid rgba(28,26,20,0.40);
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  text-decoration: none;
}
.btn-secondary:hover { border-color: #1C1A14; }

/* ============================================================
   STAT NUMBER DISPLAY
   ============================================================ */

.stat-number {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1;
  color: #1C1A14;
  letter-spacing: -0.03em;
}
.stat-unit {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  color: #C97B04;
}

/* ============================================================
   CHIP / BADGE
   ============================================================ */

.chip {
  display: inline-flex;
  align-items: center;
  font-family: 'Space Mono', monospace;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.625rem;
  border: 1px solid rgba(28,26,20,0.20);
  color: #7A7060;
}
.chip-accent {
  border-color: rgba(201,123,4,0.40);
  color: #C97B04;
  background-color: rgba(201,123,4,0.07);
}

/* ============================================================
   HERO SECTION
   ============================================================ */

.hero-image-wrap { position: relative; overflow: hidden; }
.hero-image-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ============================================================
   TIMELINE / PROCESS STEPS
   ============================================================ */

.process-step { display: flex; gap: 1.5rem; padding: 1.5rem 0; border-top: 1px solid rgba(28,26,20,0.12); }
.process-num { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 0.75rem; color: #C97B04; text-transform: uppercase; letter-spacing: 0.1em; min-width: 2.5rem; padding-top: 0.1rem; }
.process-body h4 { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 1rem; color: #1C1A14; margin-bottom: 0.5rem; }
.process-body p { font-family: 'Space Mono', monospace; font-size: 0.8125rem; color: #7A7060; line-height: 1.7; }

/* ============================================================
   PRODUCT CARD
   ============================================================ */

.product-card { background-color: #F6F2E9; border: 1px solid rgba(28,26,20,0.12); overflow: hidden; transition: box-shadow 0.2s ease; }
.product-card:hover { box-shadow: 0 4px 20px rgba(28,26,20,0.10); }
.product-card-img { position: relative; overflow: hidden; background-color: #EDE8DA; }
.product-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.product-card:hover .product-card-img img { transform: scale(1.03); }
.product-card-body { padding: 1.25rem; }

/* ============================================================
   FOOTER
   ============================================================ */

footer a:hover { color: #C97B04; }

/* ============================================================
   COOKIE BANNER HELPERS
   ============================================================ */

.cookie-btn-accept { background-color: #C97B04; color: #F6F2E9; border-radius: 999px; border: 1px solid rgba(255,255,255,0.18); font-weight: 600; font-size: 0.875rem; padding: 0.625rem 1rem; cursor: pointer; transition: opacity 0.15s ease; }
.cookie-btn-accept:hover { opacity: 0.9; }

/* ============================================================
   PRINT / 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 #C97B04; outline-offset: 2px; }

/* ============================================================
   MISC UTILITIES
   ============================================================ */

.list-disc { list-style-type: disc; }
.list-inside { list-style-position: inside; }
.list-outside { list-style-position: outside; }
.pl-5 { padding-left: 1.25rem; }
.pl-6 { padding-left: 1.5rem; }
.text-\[\#D8E2DC\] { color: #D8E2DC; }
.decoration-\[\#D8E2DC\] { text-decoration-color: #D8E2DC; }
.border-radius-\[26px\] { border-radius: 26px; }
