/* ONDREKUL JOURNAL — css/style.css */

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

@theme {
  --color-bg-primary: #F7F4F0;
  --color-bg-secondary: #EDE9E3;
  --color-ink-primary: #1A1A1A;
  --color-ink-muted: #6B6560;
  --color-accent: #2C2C2C;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
}

/* ============================================================
   BASE RESET
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background-color: #F7F4F0;
}

body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
  color: #1A1A1A;
  background-color: #F7F4F0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

address {
  font-style: normal;
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.grid { display: grid; }
.block { display: block; }
.inline-block { display: inline-block; }
.hidden { display: none; }
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.sticky { position: sticky; }
.top-0 { top: 0; }
.bottom-0 { bottom: 0; }
.bottom-4 { bottom: 1rem; }
.left-0 { left: 0; }
.right-0 { right: 0; }
.left-1\/2 { left: 50%; }
.inset-0 { inset: 0; }
.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.z-50 { z-index: 50; }
.overflow-hidden { overflow: hidden; }
.overflow-x-hidden { overflow-x: hidden; }

/* ============================================================
   FLEXBOX
   ============================================================ */
.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.flex-wrap { flex-wrap: wrap; }
.items-start { align-items: flex-start; }
.items-center { align-items: center; }
.items-end { align-items: flex-end; }
.justify-start { justify-content: flex-start; }
.justify-center { justify-content: center; }
.justify-end { justify-content: flex-end; }
.justify-between { justify-content: space-between; }
.flex-1 { flex: 1 1 0%; }
.flex-shrink-0 { flex-shrink: 0; }
.self-start { align-self: flex-start; }
.self-end { align-self: flex-end; }
.self-center { align-self: center; }

/* ============================================================
   GRID
   ============================================================ */
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.col-span-1 { grid-column: span 1 / span 1; }
.col-span-2 { grid-column: span 2 / span 2; }
.col-span-3 { grid-column: span 3 / span 3; }
.col-span-full { grid-column: 1 / -1; }
.row-span-1 { grid-row: span 1 / span 1; }
.row-span-2 { grid-row: span 2 / span 2; }

/* ============================================================
   CONTAINER / MAX-WIDTH
   ============================================================ */
.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-none { max-width: none; }
.mx-auto { margin-left: auto; margin-right: auto; }
.w-full { width: 100%; }
.w-auto { width: auto; }
.w-fit { width: fit-content; }
.h-full { height: 100%; }
.h-auto { height: auto; }
.min-h-screen { min-height: 100vh; }
.aspect-\[3\/2\] { aspect-ratio: 3/2; }
.aspect-\[16\/9\] { aspect-ratio: 16/9; }
.aspect-\[21\/9\] { aspect-ratio: 21/9; }
.aspect-\[1\/1\] { aspect-ratio: 1/1; }
.object-cover { object-fit: cover; }
.object-center { object-position: center; }
.object-top { object-position: top; }

/* ============================================================
   SPACING — MARGIN
   ============================================================ */
.m-0 { margin: 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-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-auto { margin-left: auto; }
.mr-auto { margin-right: auto; }
.mr-2 { margin-right: 0.5rem; }
.mr-3 { margin-right: 0.75rem; }
.ml-2 { margin-left: 0.5rem; }
.ml-3 { margin-left: 0.75rem; }

/* ============================================================
   SPACING — PADDING
   ============================================================ */
.p-0 { padding: 0; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.p-10 { padding: 2.5rem; }
.p-12 { padding: 3rem; }
.px-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; }
.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-2 { padding-top: 0.5rem; }
.pt-4 { padding-top: 1rem; }
.pt-6 { padding-top: 1.5rem; }
.pt-8 { padding-top: 2rem; }
.pb-2 { padding-bottom: 0.5rem; }
.pb-4 { padding-bottom: 1rem; }
.pb-6 { padding-bottom: 1.5rem; }
.pb-8 { padding-bottom: 2rem; }

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

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.font-display { font-family: 'Space Grotesk', sans-serif; }
.font-body    { font-family: 'Inter', sans-serif; }
.font-mono    { font-family: 'Space Mono', 'Courier New', monospace; }

.text-xs   { font-size: 0.75rem;  line-height: 1rem; }
.text-sm   { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem;     line-height: 1.5rem; }
.text-lg   { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl   { font-size: 1.25rem;  line-height: 1.75rem; }
.text-2xl  { font-size: 1.5rem;   line-height: 2rem; }
.text-3xl  { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl  { font-size: 2.25rem;  line-height: 2.5rem; }
.text-5xl  { font-size: 3rem;     line-height: 1.1; }
.text-6xl  { font-size: 3.75rem;  line-height: 1; }
.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; }

.font-normal   { font-weight: 400; }
.font-medium   { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold     { font-weight: 700; }
.font-black    { font-weight: 900; }
.italic        { font-style: italic; }
.not-italic    { font-style: normal; }

.leading-none    { line-height: 1; }
.leading-tight   { line-height: 1.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; }

.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; }

.uppercase    { text-transform: uppercase; }
.lowercase    { text-transform: lowercase; }
.capitalize   { text-transform: capitalize; }
.normal-case  { text-transform: none; }

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

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

.text-balance { text-wrap: balance; }
.text-pretty  { text-wrap: pretty; }
.whitespace-nowrap { white-space: nowrap; }
.truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* ============================================================
   COLOR CLASSES
   ============================================================ */
/* Backgrounds */
.bg-\[\#F7F4F0\] { background-color: #F7F4F0; }
.bg-\[\#EDE9E3\] { background-color: #EDE9E3; }
.bg-\[\#1A1A1A\] { background-color: #1A1A1A; }
.bg-\[\#2C2C2C\] { background-color: #2C2C2C; }
.bg-\[\#6B6560\] { background-color: #6B6560; }
.bg-\[\#E5E0D8\] { background-color: #E5E0D8; }
.bg-\[\#D9D4CC\] { background-color: #D9D4CC; }
.bg-\[\#3A3A3A\] { background-color: #3A3A3A; }
.bg-white  { background-color: #ffffff; }
.bg-black  { background-color: #000000; }
.bg-transparent { background-color: transparent; }

/* Text colors */
.text-\[\#F7F4F0\] { color: #F7F4F0; }
.text-\[\#EDE9E3\] { color: #EDE9E3; }
.text-\[\#1A1A1A\] { color: #1A1A1A; }
.text-\[\#2C2C2C\] { color: #2C2C2C; }
.text-\[\#6B6560\] { color: #6B6560; }
.text-\[\#3A3A3A\] { color: #3A3A3A; }
.text-\[\#D9D4CC\] { color: #D9D4CC; }
.text-white  { color: #ffffff; }
.text-black  { color: #000000; }

/* ============================================================
   BORDER
   ============================================================ */
.border { border-width: 1px; border-style: solid; }
.border-0 { border-width: 0; }
.border-t { border-top-width: 1px; border-top-style: solid; }
.border-b { border-bottom-width: 1px; border-bottom-style: solid; }
.border-l { border-left-width: 1px; border-left-style: solid; }
.border-r { border-right-width: 1px; border-right-style: solid; }

.border-\[\#1A1A1A\]\/10 { border-color: rgba(26,26,26,0.10); }
.border-\[\#1A1A1A\]\/15 { border-color: rgba(26,26,26,0.15); }
.border-\[\#1A1A1A\]\/20 { border-color: rgba(26,26,26,0.20); }
.border-\[\#1A1A1A\]\/30 { border-color: rgba(26,26,26,0.30); }
.border-\[\#6B6560\]\/20 { border-color: rgba(107,101,96,0.20); }
.border-\[\#6B6560\]\/30 { border-color: rgba(107,101,96,0.30); }
.border-\[\#2C2C2C\]    { border-color: #2C2C2C; }
.border-\[\#1A1A1A\]    { border-color: #1A1A1A; }
.border-white\/18       { border-color: rgba(255,255,255,0.18); }
.border-transparent { border-color: transparent; }

/* Rounded */
.rounded-none { border-radius: 0; }
.rounded-sm   { border-radius: 0.125rem; }
.rounded      { border-radius: 0.25rem; }
.rounded-md   { border-radius: 0.375rem; }
.rounded-lg   { border-radius: 0.5rem; }
.rounded-xl   { border-radius: 0.75rem; }
.rounded-2xl  { border-radius: 1rem; }
.rounded-full { border-radius: 9999px; }

/* ============================================================
   EFFECTS / SHADOWS
   ============================================================ */
.shadow-sm { box-shadow: 0 1px 2px 0 rgba(0,0,0,0.05); }
.shadow    { box-shadow: 0 1px 3px 0 rgba(0,0,0,0.1), 0 1px 2px -1px rgba(0,0,0,0.1); }
.shadow-md { box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1); }
.shadow-\[4px_4px_0_\#1A1A1A\] { box-shadow: 4px 4px 0 #1A1A1A; }
.shadow-\[6px_6px_0_\#1A1A1A\] { box-shadow: 6px 6px 0 #1A1A1A; }
.shadow-\[2px_2px_0_\#1A1A1A\] { box-shadow: 2px 2px 0 #1A1A1A; }
.shadow-none { box-shadow: none; }

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

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

/* ============================================================
   TRANSFORMS
   ============================================================ */
.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-0 { transform: translateY(0); }
.rotate-90  { transform: rotate(90deg); }
.-rotate-90 { transform: rotate(-90deg); }
.rotate-\[-2deg\] { transform: rotate(-2deg); }
.rotate-\[2deg\] { transform: rotate(2deg); }

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

/* ============================================================
   ARBITRARY VALUE CLASSES (JIT-style for HTML usage)
   ============================================================ */
.w-\[calc\(100\%-1\.5rem\)\] { width: calc(100% - 1.5rem); }
.max-w-\[1220px\] { max-width: 1220px; }
.max-w-\[800px\]  { max-width: 800px; }
.max-w-\[680px\]  { max-width: 680px; }
.max-w-\[560px\]  { max-width: 560px; }
.h-\[1px\]  { height: 1px; }
.h-\[2px\]  { height: 2px; }
.h-\[60px\] { height: 60px; }
.h-\[80px\] { height: 80px; }
.h-\[120px\] { height: 120px; }
.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-\[520px\] { height: 520px; }
.h-\[560px\] { height: 560px; }
.h-\[600px\] { height: 600px; }
.min-h-\[200px\] { min-height: 200px; }
.min-h-\[280px\] { min-height: 280px; }
.min-h-\[320px\] { min-height: 320px; }
.min-h-\[400px\] { min-height: 400px; }
.min-h-\[480px\] { min-height: 480px; }
.w-\[1px\]  { width: 1px; }
.w-\[2px\]  { width: 2px; }
.w-\[40px\] { width: 40px; }
.w-\[48px\] { width: 48px; }
.w-\[56px\] { width: 56px; }
.w-\[64px\] { width: 64px; }
.w-\[80px\] { width: 80px; }
.text-\[\#F7F4F0\] { color: #F7F4F0; }
.text-\[\#EDE9E3\] { color: #EDE9E3; }
.text-\[\#1A1A1A\] { color: #1A1A1A; }
.text-\[\#2C2C2C\] { color: #2C2C2C; }
.text-\[\#6B6560\] { color: #6B6560; }
.text-\[\#3A3A3A\] { color: #3A3A3A; }
.bg-\[\#F7F4F0\]   { background-color: #F7F4F0; }
.bg-\[\#EDE9E3\]   { background-color: #EDE9E3; }
.bg-\[\#1A1A1A\]   { background-color: #1A1A1A; }
.bg-\[\#2C2C2C\]   { background-color: #2C2C2C; }
.bg-\[\#E5E0D8\]   { background-color: #E5E0D8; }
.bg-\[\#D9D4CC\]   { background-color: #D9D4CC; }
.border-\[\#1A1A1A\]\/20 { border-color: rgba(26,26,26,0.20); }
.border-\[\#6B6560\]\/20 { border-color: rgba(107,101,96,0.20); }
.py-\[6rem\]   { padding-top: 6rem; padding-bottom: 6rem; }
.py-\[5rem\]   { padding-top: 5rem; padding-bottom: 5rem; }
.py-\[4rem\]   { padding-top: 4rem; padding-bottom: 4rem; }
.pt-\[6rem\]   { padding-top: 6rem; }
.pb-\[6rem\]   { padding-bottom: 6rem; }
.mt-\[6rem\]   { margin-top: 6rem; }
.gap-\[2px\]   { gap: 2px; }
.gap-\[3px\]   { gap: 3px; }
.text-\[0\.65rem\]  { font-size: 0.65rem; }
.text-\[0\.7rem\]   { font-size: 0.7rem; }
.text-\[0\.8rem\]   { font-size: 0.8rem; }
.text-\[5rem\]   { font-size: 5rem; line-height: 1; }
.text-\[6rem\]   { font-size: 6rem; line-height: 1; }
.text-\[7rem\]   { font-size: 7rem; line-height: 1; }
.text-\[8rem\]   { font-size: 8rem; line-height: 1; }
.text-\[10rem\]  { font-size: 10rem; line-height: 1; }
.leading-\[1\.1\] { line-height: 1.1; }
.leading-\[1\.15\] { line-height: 1.15; }
.leading-\[1\.2\] { line-height: 1.2; }
.leading-\[1\.3\] { line-height: 1.3; }

/* ============================================================
   HOVER STATES
   ============================================================ */
.hover\:text-\[\#2C2C2C\]:hover { color: #2C2C2C; }
.hover\:text-\[\#1A1A1A\]:hover { color: #1A1A1A; }
.hover\:text-\[\#6B6560\]:hover { color: #6B6560; }
.hover\:underline:hover { text-decoration: underline; }
.hover\:opacity-80:hover { opacity: 0.8; }
.hover\:opacity-90:hover { opacity: 0.9; }
.hover\:scale-105:hover { transform: scale(1.05); }
.hover\:shadow-\[6px_6px_0_\#1A1A1A\]:hover { box-shadow: 6px 6px 0 #1A1A1A; }
.hover\:bg-\[\#1A1A1A\]:hover { background-color: #1A1A1A; }
.hover\:bg-\[\#3A3A3A\]:hover { background-color: #3A3A3A; }
.hover\:border-\[\#1A1A1A\]:hover { border-color: #1A1A1A; }
.group:hover .group-hover\:scale-105 { transform: scale(1.05); }
.group:hover .group-hover\:underline { text-decoration: underline; }
.group:hover .group-hover\:opacity-90 { opacity: 0.9; }

/* ============================================================
   FOCUS STATES
   ============================================================ */
.focus\:outline-none:focus { outline: none; }
.focus\:border-\[\#2C2C2C\]:focus { border-color: #2C2C2C; }
.focus\:ring-0:focus { box-shadow: none; }
.focus\:ring-1:focus { box-shadow: 0 0 0 1px #2C2C2C; }

/* ============================================================
   RESPONSIVE — MD breakpoint (768px+)
   ============================================================ */
@media (min-width: 768px) {
  .md\:hidden { display: none; }
  .md\:block  { display: block; }
  .md\:flex   { display: flex; }
  .md\:grid   { display: grid; }
  .md\:inline-block { display: inline-block; }
  .md\:inline-flex  { display: inline-flex; }
  .md\:flex-row { flex-direction: row; }
  .md\:flex-col { flex-direction: column; }
  .md\:items-center { align-items: center; }
  .md\:justify-between { justify-content: space-between; }
  .md\:justify-end  { justify-content: flex-end; }
  .md\:grid-cols-2  { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:grid-cols-3  { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .md\:grid-cols-4  { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .md\:col-span-1   { grid-column: span 1; }
  .md\:col-span-2   { grid-column: span 2; }
  .md\:col-span-3   { grid-column: span 3; }
  .md\:row-span-2   { grid-row: span 2; }
  .md\:px-8  { padding-left: 2rem; padding-right: 2rem; }
  .md\:py-20 { padding-top: 5rem; padding-bottom: 5rem; }
  .md\:py-24 { padding-top: 6rem; padding-bottom: 6rem; }
  .md\:pt-20 { padding-top: 5rem; }
  .md\:pb-20 { padding-bottom: 5rem; }
  .md\:mt-0  { margin-top: 0; }
  .md\:mb-0  { margin-bottom: 0; }
  .md\:gap-4  { gap: 1rem; }
  .md\:gap-6  { gap: 1.5rem; }
  .md\:gap-8  { gap: 2rem; }
  .md\:gap-12 { gap: 3rem; }
  .md\:gap-16 { gap: 4rem; }
  .md\:text-left    { text-align: left; }
  .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.1; }
  .md\:text-6xl { font-size: 3.75rem; line-height: 1; }
  .md\:text-7xl { font-size: 4.5rem; line-height: 1; }
  .md\:items-start { align-items: flex-start; }
  .md\:justify-start { justify-content: flex-start; }
  .md\:aspect-\[21\/9\] { aspect-ratio: 21/9; }
  .md\:max-w-\[560px\]  { max-width: 560px; }
  .md\:max-w-\[680px\]  { max-width: 680px; }
  .md\:max-w-\[800px\]  { max-width: 800px; }
}

/* ============================================================
   RESPONSIVE — LG breakpoint (1024px+)
   ============================================================ */
@media (min-width: 1024px) {
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .lg\:col-span-2  { grid-column: span 2; }
  .lg\:col-span-1  { grid-column: span 1; }
  .lg\:row-span-2  { grid-row: span 2; }
  .lg\:text-7xl { font-size: 4.5rem; line-height: 1; }
  .lg\:text-8xl { font-size: 6rem; line-height: 1; }
  .lg\:px-8 { padding-left: 2rem; padding-right: 2rem; }
  .lg\:gap-8 { gap: 2rem; }
}

/* ============================================================
   DECORATIVE / COMPONENT HELPERS
   ============================================================ */

/* Marquee scrolling strip */
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 28s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Section number markers */
.section-marker {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #6B6560;
}

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

/* Hard offset card (documentary family accent) */
.card-offset {
  border: 1px solid #1A1A1A;
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}
.card-offset:hover {
  box-shadow: 4px 4px 0 #1A1A1A;
  transform: translate(-2px, -2px);
}

/* Bento grid helpers */
.bento-grid {
  display: grid;
  gap: 1px;
  background-color: rgba(26,26,26,0.12);
}
.bento-cell {
  background-color: #F7F4F0;
  overflow: hidden;
}

/* Vertical rotated label */
.label-vertical {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #6B6560;
}

/* Caption overlay */
.caption-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.5rem 0.75rem;
  background-color: rgba(26,26,26,0.55);
  color: rgba(247,244,240,0.90);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Input / textarea base */
input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  background-color: #F7F4F0;
  border: 1px solid rgba(26,26,26,0.25);
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-family: 'Inter', sans-serif;
  color: #1A1A1A;
  outline: none;
  transition: border-color 0.15s ease;
  border-radius: 0;
  -webkit-appearance: none;
}
input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
  border-color: #2C2C2C;
}

/* ============================================================
   HEADER / NAV SPECIFIC
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background-color: #F7F4F0;
  border-bottom: 1px solid rgba(26,26,26,0.12);
}

/* ============================================================
   COOKIE BANNER
   ============================================================ */
[data-target="cookies.banner"] {
  display: none;
}

/* ============================================================
   PRINT
   ============================================================ */
@media print {
  .site-header, footer, [data-target="cookies.banner"] { display: none !important; }
}
