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

/* ============================================================
   ORAVELIN QUARTERLY — css/style.css
   Prebuilt Tailwind v4.1.5 output
   Design Family: Industrial/Workshop (K_FAMILY=4)
   Palette: Warm Cream + Burgundy-Wine
   ============================================================ */

@theme {
  --color-bg-primary: #F7F3EE;
  --color-bg-secondary: #EDE8E1;
  --color-ink-primary: #1C1612;
  --color-ink-muted: #6B5E53;
  --color-accent: #7D2340;
  --font-display: 'Archivo Black', 'Arial Black', sans-serif;
  --font-body: 'Archivo', 'Arial', sans-serif;
  --radius-sm: 2px;
  --radius-md: 4px;
  --shadow-hard: 4px 4px 0px #1C1612;
  --shadow-hard-accent: 4px 4px 0px #7D2340;
}

/* ============================================================
   BASE RESET
   ============================================================ */

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

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

body {
  font-family: 'Archivo', 'Arial', sans-serif;
  background-color: #F7F3EE;
  color: #1C1612;
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Archivo Black', 'Arial Black', sans-serif;
  line-height: 1.15;
}

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

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

.container { width: 100%; margin-left: auto; margin-right: auto; padding-left: 1rem; padding-right: 1rem; }
.max-w-7xl { max-width: 80rem; }
.max-w-6xl { max-width: 72rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-xl  { max-width: 36rem; }
.max-w-lg  { max-width: 32rem; }
.max-w-md  { max-width: 28rem; }
.max-w-sm  { max-width: 24rem; }
.mx-auto   { margin-left: auto; margin-right: auto; }
.px-4      { padding-left: 1rem; padding-right: 1rem; }
.px-6      { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8      { padding-left: 2rem; padding-right: 2rem; }
.py-2      { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.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; }
.py-32     { padding-top: 8rem; padding-bottom: 8rem; }
.pt-2      { padding-top: 0.5rem; }
.pt-4      { padding-top: 1rem; }
.pt-6      { padding-top: 1.5rem; }
.pt-8      { padding-top: 2rem; }
.pt-12     { padding-top: 3rem; }
.pt-16     { padding-top: 4rem; }
.pt-24     { padding-top: 6rem; }
.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; }
.pb-24     { padding-bottom: 6rem; }
.pl-4      { padding-left: 1rem; }
.pl-6      { padding-left: 1.5rem; }
.pr-4      { padding-right: 1rem; }
.pr-6      { padding-right: 1.5rem; }
.mt-1      { margin-top: 0.25rem; }
.mt-2      { margin-top: 0.5rem; }
.mt-3      { margin-top: 0.75rem; }
.mt-4      { margin-top: 1rem; }
.mt-6      { margin-top: 1.5rem; }
.mt-8      { margin-top: 2rem; }
.mt-12     { margin-top: 3rem; }
.mt-16     { margin-top: 4rem; }
.mt-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-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; }
.mb-24     { margin-bottom: 6rem; }
.ml-auto   { margin-left: auto; }
.mr-auto   { margin-right: auto; }
.ml-2      { margin-left: 0.5rem; }
.ml-4      { margin-left: 1rem; }
.mr-2      { margin-right: 0.5rem; }
.mr-4      { margin-right: 1rem; }

/* 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; }
.flex-1       { flex: 1 1 0%; }
.flex-shrink-0{ flex-shrink: 0; }
.flex-grow    { flex-grow: 1; }
.self-start   { align-self: flex-start; }
.self-center  { align-self: center; }
.self-end     { align-self: flex-end; }

/* 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-9    { grid-column: span 9 / span 9; }
.col-span-12   { grid-column: span 12 / span 12; }
.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; }
.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; }
.gap-y-12      { row-gap: 3rem; }

/* Sizing */
.w-full     { width: 100%; }
.w-1\/2     { width: 50%; }
.w-1\/3     { width: 33.333333%; }
.w-2\/3     { width: 66.666667%; }
.w-1\/4     { width: 25%; }
.w-3\/4     { width: 75%; }
.w-auto     { width: auto; }
.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-64       { width: 16rem; }
.w-72       { width: 18rem; }
.w-80       { width: 20rem; }
.h-full     { height: 100%; }
.h-auto     { height: auto; }
.h-1        { height: 0.25rem; }
.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-16       { height: 4rem; }
.h-20       { height: 5rem; }
.h-24       { height: 6rem; }
.h-32       { height: 8rem; }
.h-40       { height: 10rem; }
.h-48       { height: 12rem; }
.h-64       { height: 16rem; }
.h-72       { height: 18rem; }
.h-80       { height: 20rem; }
.h-96       { height: 24rem; }
.h-screen   { height: 100vh; }
.min-h-screen { min-height: 100vh; }
.min-h-\[60vh\] { min-height: 60vh; }
.min-h-\[70vh\] { min-height: 70vh; }
.min-h-\[80vh\] { min-height: 80vh; }
.min-w-0    { min-width: 0; }
.max-w-none { max-width: none; }
.aspect-\[3\/2\]  { aspect-ratio: 3/2; }
.aspect-\[16\/9\] { aspect-ratio: 16/9; }
.aspect-\[21\/9\] { aspect-ratio: 21/9; }
.aspect-\[4\/3\]  { aspect-ratio: 4/3; }
.aspect-\[1\/1\]  { aspect-ratio: 1/1; }
.aspect-square    { aspect-ratio: 1/1; }

/* Position */
.relative   { position: relative; }
.absolute   { position: absolute; }
.fixed      { position: fixed; }
.sticky     { position: sticky; }
.static     { position: static; }
.inset-0    { top: 0; right: 0; bottom: 0; left: 0; }
.top-0      { top: 0; }
.top-4      { top: 1rem; }
.top-8      { top: 2rem; }
.bottom-0   { bottom: 0; }
.bottom-4   { bottom: 1rem; }
.bottom-8   { bottom: 2rem; }
.left-0     { left: 0; }
.left-4     { left: 1rem; }
.left-1\/2  { left: 50%; }
.right-0    { right: 0; }
.right-4    { right: 1rem; }
.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; }
.-translate-x-1\/2 { transform: translateX(-50%); }
.translate-y-4     { transform: translateY(1rem); }
.-translate-y-full { transform: translateY(-100%); }

/* Display */
.block        { display: block; }
.inline-block { display: inline-block; }
.inline       { display: inline; }
.hidden       { display: none; }
.overflow-hidden  { overflow: hidden; }
.overflow-auto    { overflow: auto; }
.overflow-x-auto  { overflow-x: auto; }
.overflow-x-hidden{ overflow-x: hidden; }

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

.font-display { font-family: 'Archivo Black', 'Arial Black', sans-serif; }
.font-body    { font-family: 'Archivo', 'Arial', sans-serif; }
.font-mono    { font-family: 'Courier New', Courier, monospace; }
.font-black   { font-weight: 900; }
.font-bold    { font-weight: 700; }
.font-semibold{ font-weight: 600; }
.font-medium  { font-weight: 500; }
.font-normal  { font-weight: 400; }
.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-9xl  { font-size: 8rem; line-height: 1; }
.text-\[11px\] { font-size: 11px; }
.text-\[13px\] { font-size: 13px; }
.text-\[15px\] { font-size: 15px; }
.text-\[18px\] { font-size: 18px; }
.text-\[20px\] { font-size: 20px; }
.text-\[22px\] { font-size: 22px; }
.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-\[96px\] { font-size: 96px; }

.leading-none    { line-height: 1; }
.leading-tight   { line-height: 1.25; }
.leading-snug    { line-height: 1.375; }
.leading-normal  { line-height: 1.5; }
.leading-relaxed { line-height: 1.625; }
.leading-loose   { line-height: 2; }
.leading-6       { line-height: 1.5rem; }
.leading-7       { line-height: 1.75rem; }
.leading-8       { line-height: 2rem; }
.leading-\[1\.1\]   { line-height: 1.1; }
.leading-\[1\.15\]  { line-height: 1.15; }
.leading-\[1\.2\]   { line-height: 1.2; }
.leading-\[1\.3\]   { line-height: 1.3; }
.leading-\[1\.4\]   { line-height: 1.4; }

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

.text-left    { text-align: left; }
.text-center  { text-align: center; }
.text-right   { text-align: right; }
.text-justify { text-align: justify; }
.uppercase    { text-transform: uppercase; }
.lowercase    { text-transform: lowercase; }
.capitalize   { text-transform: capitalize; }
.normal-case  { text-transform: none; }
.underline    { text-decoration: underline; }
.no-underline { text-decoration: none; }
.line-through { text-decoration: 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; }
.break-words  { word-break: break-word; }
.list-none    { list-style: none; }
.list-disc    { list-style: disc; }
.list-decimal { list-style: decimal; }

/* ============================================================
   COLORS — Text
   ============================================================ */

.text-\[\#F7F3EE\] { color: #F7F3EE; }
.text-\[\#EDE8E1\] { color: #EDE8E1; }
.text-\[\#1C1612\] { color: #1C1612; }
.text-\[\#6B5E53\] { color: #6B5E53; }
.text-\[\#7D2340\] { color: #7D2340; }
.text-\[\#9B2D50\] { color: #9B2D50; }
.text-\[\#5C1A2F\] { color: #5C1A2F; }
.text-\[\#ffffff\] { color: #ffffff; }
.text-\[\#000000\] { color: #000000; }
.text-\[\#D8CFC8\] { color: #D8CFC8; }
.text-\[\#C4B8AE\] { color: #C4B8AE; }
.text-\[\#3D2B1F\] { color: #3D2B1F; }
.text-inherit { color: inherit; }

/* ============================================================
   COLORS — Background
   ============================================================ */

.bg-\[\#F7F3EE\] { background-color: #F7F3EE; }
.bg-\[\#EDE8E1\] { background-color: #EDE8E1; }
.bg-\[\#E3DDD5\] { background-color: #E3DDD5; }
.bg-\[\#1C1612\] { background-color: #1C1612; }
.bg-\[\#2A211A\] { background-color: #2A211A; }
.bg-\[\#3D2B1F\] { background-color: #3D2B1F; }
.bg-\[\#6B5E53\] { background-color: #6B5E53; }
.bg-\[\#7D2340\] { background-color: #7D2340; }
.bg-\[\#9B2D50\] { background-color: #9B2D50; }
.bg-\[\#5C1A2F\] { background-color: #5C1A2F; }
.bg-\[\#ffffff\] { background-color: #ffffff; }
.bg-\[\#000000\] { background-color: #000000; }
.bg-\[\#D8CFC8\] { background-color: #D8CFC8; }
.bg-\[\#C4B8AE\] { background-color: #C4B8AE; }
.bg-transparent  { background-color: transparent; }

/* ============================================================
   COLORS — Border
   ============================================================ */

.border-\[\#1C1612\]    { border-color: #1C1612; }
.border-\[\#6B5E53\]    { border-color: #6B5E53; }
.border-\[\#7D2340\]    { border-color: #7D2340; }
.border-\[\#EDE8E1\]    { border-color: #EDE8E1; }
.border-\[\#D8CFC8\]    { border-color: #D8CFC8; }
.border-\[\#C4B8AE\]    { border-color: #C4B8AE; }
.border-\[\#F7F3EE\]    { border-color: #F7F3EE; }

/* Opacity variants */
.border-\[\#1C1612\]\/20 { border-color: rgba(28, 22, 18, 0.20); }
.border-\[\#1C1612\]\/30 { border-color: rgba(28, 22, 18, 0.30); }
.border-\[\#1C1612\]\/40 { border-color: rgba(28, 22, 18, 0.40); }
.border-\[\#6B5E53\]\/20 { border-color: rgba(107, 94, 83, 0.20); }
.border-\[\#6B5E53\]\/30 { border-color: rgba(107, 94, 83, 0.30); }
.border-\[\#6B5E53\]\/40 { border-color: rgba(107, 94, 83, 0.40); }
.border-\[\#7D2340\]\/30 { border-color: rgba(125, 35, 64, 0.30); }
.border-\[\#EDE8E1\]\/40 { border-color: rgba(237, 232, 225, 0.40); }

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

.border     { border-width: 1px; border-style: solid; }
.border-0   { border-width: 0; }
.border-2   { border-width: 2px; border-style: solid; }
.border-4   { border-width: 4px; 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-t-2 { border-top-width: 2px; border-top-style: solid; }
.border-b-2 { border-bottom-width: 2px; border-bottom-style: solid; }
.border-l-4 { border-left-width: 4px; border-left-style: solid; }
.border-t-4 { border-top-width: 4px; border-top-style: solid; }

.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(28, 22, 18, 0.08); }
.shadow       { box-shadow: 0 2px 8px rgba(28, 22, 18, 0.12); }
.shadow-md    { box-shadow: 0 4px 16px rgba(28, 22, 18, 0.14); }
.shadow-lg    { box-shadow: 0 8px 32px rgba(28, 22, 18, 0.16); }
.shadow-xl    { box-shadow: 0 16px 48px rgba(28, 22, 18, 0.20); }
.shadow-hard  { box-shadow: 4px 4px 0px #1C1612; }
.shadow-hard-accent { box-shadow: 4px 4px 0px #7D2340; }
.shadow-hard-6 { box-shadow: 6px 6px 0px #1C1612; }
.shadow-hard-8 { box-shadow: 8px 8px 0px #1C1612; }

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

.opacity-0    { opacity: 0; }
.opacity-20   { opacity: 0.2; }
.opacity-40   { opacity: 0.4; }
.opacity-50   { opacity: 0.5; }
.opacity-60   { opacity: 0.6; }
.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-md { backdrop-filter: blur(12px); }

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

.rotate-90     { transform: rotate(90deg); }
.rotate-180    { transform: rotate(180deg); }
.-rotate-90    { transform: rotate(-90deg); }
.scale-95      { transform: scale(0.95); }
.scale-100     { transform: scale(1); }
.scale-105     { transform: scale(1.05); }
.scale-110     { transform: scale(1.1); }
.translate-x-0 { transform: translateX(0); }
.-translate-x-full { transform: translateX(-100%); }

/* ============================================================
   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-transform{ transition-property: transform; transition-timing-function: cubic-bezier(0.4,0,0.2,1); transition-duration: 300ms; }
.transition-opacity  { transition-property: opacity; 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; }
.duration-700  { transition-duration: 700ms; }
.ease-in-out   { transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); }
.ease-out      { transition-timing-function: cubic-bezier(0, 0, 0.2, 1); }

/* ============================================================
   INTERACTIVE STATES
   ============================================================ */

.cursor-pointer { cursor: pointer; }
.cursor-default { cursor: default; }
.cursor-not-allowed { cursor: not-allowed; }
.select-none    { user-select: none; }
.pointer-events-none { pointer-events: none; }
.focus\:outline-none:focus  { outline: none; }
.focus\:border-\[\#7D2340\]:focus { border-color: #7D2340; }
.focus\:ring-2:focus        { box-shadow: 0 0 0 2px #7D2340; }
.focus\:ring-\[\#7D2340\]:focus { box-shadow: 0 0 0 2px #7D2340; }

/* Hover states */
.hover\:text-\[\#7D2340\]:hover  { color: #7D2340; }
.hover\:text-\[\#9B2D50\]:hover  { color: #9B2D50; }
.hover\:text-\[\#1C1612\]:hover  { color: #1C1612; }
.hover\:text-\[\#F7F3EE\]:hover  { color: #F7F3EE; }
.hover\:bg-\[\#7D2340\]:hover    { background-color: #7D2340; }
.hover\:bg-\[\#5C1A2F\]:hover    { background-color: #5C1A2F; }
.hover\:bg-\[\#EDE8E1\]:hover    { background-color: #EDE8E1; }
.hover\:bg-\[\#1C1612\]:hover    { background-color: #1C1612; }
.hover\:border-\[\#7D2340\]:hover { border-color: #7D2340; }
.hover\:border-\[\#1C1612\]:hover { border-color: #1C1612; }
.hover\:underline:hover          { text-decoration: underline; }
.hover\:opacity-90:hover         { opacity: 0.9; }
.hover\:scale-105:hover          { transform: scale(1.05); }
.hover\:scale-\[1\.02\]:hover    { transform: scale(1.02); }
.hover\:shadow-hard:hover        { box-shadow: 4px 4px 0px #1C1612; }
.hover\:shadow-hard-accent:hover { box-shadow: 4px 4px 0px #7D2340; }
.hover\:translate-x-1:hover      { transform: translateX(0.25rem); }
.hover\:-translate-y-1:hover     { transform: translateY(-0.25rem); }

/* Group hover */
.group:hover .group-hover\:scale-105   { transform: scale(1.05); }
.group:hover .group-hover\:underline   { text-decoration: underline; }
.group:hover .group-hover\:text-\[\#7D2340\] { color: #7D2340; }
.group:hover .group-hover\:opacity-70  { opacity: 0.7; }

/* ============================================================
   OBJECT FIT / MISC
   ============================================================ */

.object-cover   { object-fit: cover; }
.object-contain { object-fit: contain; }
.object-center  { object-position: center; }
.object-top     { object-position: top; }

/* ============================================================
   INDUSTRIAL/WORKSHOP COMPONENTS
   ============================================================ */

/* Hard border boxes */
.box-hard {
  border: 2px solid #1C1612;
  box-shadow: 4px 4px 0px #1C1612;
}
.box-hard-accent {
  border: 2px solid #7D2340;
  box-shadow: 4px 4px 0px #7D2340;
}

/* Section number markers */
.section-number {
  font-family: 'Archivo Black', sans-serif;
  font-size: 4rem;
  line-height: 1;
  color: rgba(125, 35, 64, 0.15);
  letter-spacing: -0.05em;
}

/* Marquee strip */
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 28s linear infinite;
}
@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.marquee-strip {
  overflow: hidden;
  background-color: #1C1612;
  color: #F7F3EE;
  border-top: 2px solid #1C1612;
  border-bottom: 2px solid #1C1612;
}
.marquee-strip-accent {
  overflow: hidden;
  background-color: #7D2340;
  color: #F7F3EE;
  border-top: 2px solid #7D2340;
  border-bottom: 2px solid #7D2340;
}

/* Blueprint grid overlay */
.blueprint-grid {
  background-image: linear-gradient(rgba(28,22,18,0.05) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(28,22,18,0.05) 1px, transparent 1px);
  background-size: 32px 32px;
}

/* Stencil chip */
.chip-stencil {
  display: inline-block;
  font-family: 'Archivo Black', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.25rem 0.625rem;
  border: 1px solid currentColor;
}

/* Hard-line divider */
.divider-hard {
  border: none;
  border-top: 2px solid #1C1612;
  margin: 0;
}
.divider-dotted {
  border: none;
  border-top: 1px dashed rgba(107, 94, 83, 0.4);
  margin: 0;
}

/* Rotated label */
.label-rotated {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-family: 'Archivo Black', sans-serif;
}

/* Stats strip */
.stat-number {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1;
  letter-spacing: -0.04em;
  color: #7D2340;
}

/* Pull quote */
.pull-quote {
  border-left: 4px solid #7D2340;
  padding-left: 1.5rem;
  font-family: 'Archivo Black', sans-serif;
  font-size: 1.25rem;
  line-height: 1.4;
  color: #1C1612;
}

/* Form inputs */
.form-input {
  width: 100%;
  background-color: #F7F3EE;
  border: 2px solid rgba(28, 22, 18, 0.3);
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-family: 'Archivo', sans-serif;
  color: #1C1612;
  transition: border-color 150ms;
  outline: none;
  border-radius: 0;
}
.form-input:focus { border-color: #7D2340; }

/* Article body typography */
.prose-oravelin h2 {
  font-family: 'Archivo Black', sans-serif;
  font-size: 1.5rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: #1C1612;
  border-bottom: 2px solid rgba(28,22,18,0.15);
  padding-bottom: 0.5rem;
}
.prose-oravelin h3 {
  font-family: 'Archivo Black', sans-serif;
  font-size: 1.2rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: #1C1612;
}
.prose-oravelin p {
  font-size: 1rem;
  line-height: 1.75;
  color: #1C1612;
  margin-bottom: 1.25rem;
}
.prose-oravelin ul, .prose-oravelin ol {
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
}
.prose-oravelin li {
  font-size: 1rem;
  line-height: 1.75;
  color: #1C1612;
  margin-bottom: 0.5rem;
}
.prose-oravelin strong { font-weight: 700; }
.prose-oravelin em     { font-style: italic; }

/* FAQ accordion */
.faq-item { border-bottom: 1px solid rgba(28,22,18,0.15); }
.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.25rem 0;
  font-family: 'Archivo Black', sans-serif;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  color: #1C1612;
}
.faq-answer {
  font-size: 0.95rem;
  line-height: 1.75;
  color: #6B5E53;
  padding-bottom: 1.25rem;
  display: none;
}
.faq-answer.open { display: block; }

/* CTA button — hard-edge industrial */
.btn-primary {
  display: inline-block;
  background-color: #7D2340;
  color: #F7F3EE;
  font-family: 'Archivo Black', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.875rem 2rem;
  border: 2px solid #7D2340;
  box-shadow: 4px 4px 0 #1C1612;
  transition: box-shadow 150ms, transform 150ms;
  cursor: pointer;
}
.btn-primary:hover {
  box-shadow: 2px 2px 0 #1C1612;
  transform: translate(2px, 2px);
}
.btn-outline {
  display: inline-block;
  background-color: transparent;
  color: #1C1612;
  font-family: 'Archivo Black', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.875rem 2rem;
  border: 2px solid #1C1612;
  box-shadow: 4px 4px 0 #1C1612;
  transition: box-shadow 150ms, transform 150ms, background-color 150ms, color 150ms;
  cursor: pointer;
}
.btn-outline:hover {
  background-color: #1C1612;
  color: #F7F3EE;
  box-shadow: 2px 2px 0 #1C1612;
  transform: translate(2px, 2px);
}

/* Header nav link */
.nav-link {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: 'Archivo Black', sans-serif;
  color: #1C1612;
  position: relative;
  transition: color 150ms;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #7D2340;
  transition: width 200ms ease-out;
}
.nav-link:hover::after { width: 100%; }
.nav-link:hover        { color: #7D2340; }
.nav-link.active::after{ width: 100%; }

/* Card bento */
.bento-card {
  background-color: #EDE8E1;
  border: 2px solid #1C1612;
  padding: 1.5rem;
}
.bento-card-accent {
  background-color: #7D2340;
  border: 2px solid #7D2340;
  color: #F7F3EE;
  padding: 1.5rem;
}
.bento-card-dark {
  background-color: #1C1612;
  border: 2px solid #1C1612;
  color: #F7F3EE;
  padding: 1.5rem;
}

/* Tag / category chip */
.tag {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-family: 'Archivo Black', sans-serif;
  color: #7D2340;
  border: 1px solid #7D2340;
  padding: 0.2rem 0.6rem;
}

/* Author box */
.author-box {
  background-color: #EDE8E1;
  border: 2px solid #1C1612;
  border-left: 6px solid #7D2340;
  padding: 1.5rem 2rem;
}

/* ============================================================
   RESPONSIVE — TABLET (md: 768px+)
   ============================================================ */

@media (min-width: 768px) {
  .md\:flex         { display: flex; }
  .md\:hidden       { display: none; }
  .md\:block        { display: block; }
  .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; }
  .md\:col-span-2   { grid-column: span 2; }
  .md\:col-span-3   { grid-column: span 3; }
  .md\:col-span-4   { grid-column: span 4; }
  .md\:col-span-6   { grid-column: span 6; }
  .md\:row-span-2   { grid-row: span 2; }
  .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\:w-1\/2       { width: 50%; }
  .md\:w-1\/3       { width: 33.333%; }
  .md\:w-2\/3       { width: 66.666%; }
  .md\:w-auto       { width: auto; }
  .md\:mt-0         { margin-top: 0; }
  .md\:mb-0         { margin-bottom: 0; }
  .md\:ml-auto      { margin-left: auto; }
  .md\:px-8         { padding-left: 2rem; padding-right: 2rem; }
  .md\:py-24        { padding-top: 6rem; padding-bottom: 6rem; }
  .md\:py-32        { padding-top: 8rem; padding-bottom: 8rem; }
  .md\:pt-32        { padding-top: 8rem; }
  .md\:pb-24        { padding-bottom: 6rem; }
  .md\:gap-8        { gap: 2rem; }
  .md\:gap-12       { gap: 3rem; }
  .md\:gap-16       { gap: 4rem; }
  .md\:text-left    { text-align: left; }
  .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-8xl     { font-size: 6rem; line-height: 1; }
  .md\:text-\[56px\] { font-size: 56px; }
  .md\:text-\[72px\] { font-size: 72px; }
  .md\:text-\[80px\] { font-size: 80px; }
  .md\:text-\[96px\] { font-size: 96px; }
  .md\:inline-block { display: inline-block; }
  .md\:aspect-\[21\/9\] { aspect-ratio: 21/9; }
}

/* ============================================================
   RESPONSIVE — DESKTOP (lg: 1024px+)
   ============================================================ */

@media (min-width: 1024px) {
  .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; }
  .lg\:col-span-3   { grid-column: span 3; }
  .lg\:col-span-4   { grid-column: span 4; }
  .lg\:flex         { display: flex; }
  .lg\:hidden       { display: none; }
  .lg\:px-8         { padding-left: 2rem; padding-right: 2rem; }
  .lg\:py-32        { padding-top: 8rem; padding-bottom: 8rem; }
  .lg\:text-6xl     { font-size: 3.75rem; line-height: 1; }
  .lg\:text-7xl     { font-size: 4.5rem; line-height: 1; }
  .lg\:text-8xl     { font-size: 6rem; line-height: 1; }
  .lg\:text-\[80px\] { font-size: 80px; }
  .lg\:text-\[96px\] { font-size: 96px; }
  .lg\:gap-16        { gap: 4rem; }
}

/* ============================================================
   UTILITY EXTRAS
   ============================================================ */

.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; }
.divide-y > * + * { border-top-width: 1px; border-top-style: solid; border-color: rgba(28,22,18,0.15); }

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

/* Clamp helpers */
.text-clamp-hero { font-size: clamp(2.5rem, 8vw, 6rem); }
.text-clamp-display { font-size: clamp(1.8rem, 5vw, 4rem); }
.text-clamp-subhead { font-size: clamp(1.1rem, 2.5vw, 1.5rem); }

/* Loading lazy placeholder */
img[loading="lazy"] { background-color: #EDE8E1; }

/* ============================================================
   COOKIE BANNER SUPPORT
   ============================================================ */

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

/* ============================================================
   PRINT
   ============================================================ */

@media print {
  .no-print { display: none !important; }
  body { background: #fff; color: #000; }
}
