/* ============================================================
   Salox Review — css/style.css
   Prebuilt Tailwind v4.1.5 utility output
   Design system: Industrial/Workshop + Space Grotesk + Inter
   Palette: cool-white bg, emerald-leaning near-neutral accent
   ============================================================ */

/* ── 1. @theme DESIGN TOKENS ── */
@theme {
  --color-bg-primary: #F8FAFC;
  --color-bg-secondary: #EFF2F6;
  --color-ink-primary: #0F172A;
  --color-ink-muted: #64748B;
  --color-accent: #1E293B;
  --color-accent-green: #059669;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'Space Mono', monospace;
  --radius-sm: 0px;
  --radius-md: 0px;
  --shadow-hard: 4px 4px 0px #0F172A;
  --shadow-hard-lg: 8px 8px 0px #0F172A;
}

/* ── 2. BASE RESET / @layer base ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  background-color: #F8FAFC;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #F8FAFC;
  color: #0F172A;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

address {
  font-style: normal;
}

button {
  cursor: pointer;
  font-family: inherit;
}

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

p {
  line-height: 1.7;
}

/* ── 3. UTILITY CLASSES — Layout ── */

.flex { display: flex; }
.inline-flex { display: inline-flex; }
.grid { display: grid; }
.block { display: block; }
.inline-block { display: inline-block; }
.hidden { display: none; }
.contents { display: contents; }

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

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

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

.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-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-2 { grid-row: span 2 / span 2; }

.gap-0 { gap: 0; }
.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-7 { gap: 1.75rem; }
.gap-8 { gap: 2rem; }
.gap-10 { gap: 2.5rem; }
.gap-12 { gap: 3rem; }
.gap-16 { gap: 4rem; }
.gap-x-4 { column-gap: 1rem; }
.gap-x-6 { column-gap: 1.5rem; }
.gap-x-8 { column-gap: 2rem; }
.gap-y-2 { row-gap: 0.5rem; }
.gap-y-4 { row-gap: 1rem; }
.gap-y-6 { row-gap: 1.5rem; }
.gap-y-8 { row-gap: 2rem; }

.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.sticky { position: sticky; }
.static { position: static; }

.inset-0 { inset: 0; }
.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%; }

.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.z-30 { z-index: 30; }
.z-40 { z-index: 40; }
.z-50 { z-index: 50; }

.overflow-hidden { overflow: hidden; }
.overflow-x-hidden { overflow-x: hidden; }
.overflow-auto { overflow: auto; }

.w-full { width: 100%; }
.w-auto { width: auto; }
.w-1\/2 { width: 50%; }
.w-1\/3 { width: 33.333333%; }
.w-2\/3 { width: 66.666667%; }
.w-3\/4 { width: 75%; }
.w-10 { width: 2.5rem; }
.w-12 { width: 3rem; }
.w-16 { width: 4rem; }
.w-20 { width: 5rem; }
.w-24 { width: 6rem; }
.w-px { width: 1px; }

.h-full { height: 100%; }
.h-auto { height: auto; }
.h-px { height: 1px; }
.h-1 { height: 0.25rem; }
.h-2 { height: 0.5rem; }
.h-4 { height: 1rem; }
.h-10 { height: 2.5rem; }
.h-12 { height: 3rem; }
.h-16 { height: 4rem; }
.h-20 { height: 5rem; }
.h-24 { height: 6rem; }
.h-48 { height: 12rem; }
.h-64 { height: 16rem; }
.h-80 { height: 20rem; }
.h-96 { height: 24rem; }
.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-h-\[500px\] { min-height: 500px; }
.min-h-\[600px\] { min-height: 600px; }
.max-w-xs { max-width: 20rem; }
.max-w-sm { max-width: 24rem; }
.max-w-md { max-width: 28rem; }
.max-w-lg { max-width: 32rem; }
.max-w-xl { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-6xl { max-width: 72rem; }
.max-w-7xl { max-width: 80rem; }
.max-w-none { max-width: none; }
.max-w-\[520px\] { max-width: 520px; }
.max-w-\[640px\] { max-width: 640px; }
.max-w-\[720px\] { max-width: 720px; }
.max-w-\[760px\] { max-width: 760px; }
.max-w-\[800px\] { max-width: 800px; }
.max-w-\[900px\] { max-width: 900px; }
.max-w-\[960px\] { max-width: 960px; }
.max-w-\[1220px\] { max-width: 1220px; }
.max-w-\[1280px\] { max-width: 1280px; }

.mx-auto { margin-left: auto; margin-right: auto; }
.my-auto { margin-top: auto; margin-bottom: auto; }
.ml-auto { margin-left: auto; }
.mr-auto { margin-right: auto; }
.mt-auto { margin-top: auto; }
.mb-auto { margin-bottom: auto; }

/* ── 3b. SPACING — Margin ── */
.m-0 { margin: 0; }
.m-1 { margin: 0.25rem; }
.m-2 { margin: 0.5rem; }
.m-4 { margin: 1rem; }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-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-0 { margin-bottom: 0; }
.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; }
.mb-20 { margin-bottom: 5rem; }
.mb-24 { margin-bottom: 6rem; }
.ml-0 { margin-left: 0; }
.ml-2 { margin-left: 0.5rem; }
.ml-3 { margin-left: 0.75rem; }
.ml-4 { margin-left: 1rem; }
.ml-6 { margin-left: 1.5rem; }
.mr-0 { margin-right: 0; }
.mr-2 { margin-right: 0.5rem; }
.mr-3 { margin-right: 0.75rem; }
.mr-4 { margin-right: 1rem; }
.my-0 { margin-top: 0; margin-bottom: 0; }
.my-2 { margin-top: 0.5rem; margin-bottom: 0.5rem; }
.my-4 { margin-top: 1rem; margin-bottom: 1rem; }
.my-6 { margin-top: 1.5rem; margin-bottom: 1.5rem; }
.my-8 { margin-top: 2rem; margin-bottom: 2rem; }
.my-12 { margin-top: 3rem; margin-bottom: 3rem; }
.my-16 { margin-top: 4rem; margin-bottom: 4rem; }
.mx-0 { margin-left: 0; margin-right: 0; }
.mx-2 { margin-left: 0.5rem; margin-right: 0.5rem; }
.mx-4 { margin-left: 1rem; margin-right: 1rem; }
.mx-6 { margin-left: 1.5rem; margin-right: 1.5rem; }

/* ── 3c. SPACING — Padding ── */
.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; }
.px-0 { padding-left: 0; padding-right: 0; }
.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-0 { padding-top: 0; padding-bottom: 0; }
.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-0 { padding-top: 0; }
.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-10 { padding-top: 2.5rem; }
.pt-12 { padding-top: 3rem; }
.pt-16 { padding-top: 4rem; }
.pt-20 { padding-top: 5rem; }
.pb-0 { padding-bottom: 0; }
.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-10 { padding-bottom: 2.5rem; }
.pb-12 { padding-bottom: 3rem; }
.pb-16 { padding-bottom: 4rem; }
.pb-20 { padding-bottom: 5rem; }
.pb-24 { padding-bottom: 6rem; }
.pl-0 { padding-left: 0; }
.pl-2 { padding-left: 0.5rem; }
.pl-4 { padding-left: 1rem; }
.pl-5 { padding-left: 1.25rem; }
.pl-6 { padding-left: 1.5rem; }
.pl-8 { padding-left: 2rem; }
.pr-0 { padding-right: 0; }
.pr-2 { padding-right: 0.5rem; }
.pr-4 { padding-right: 1rem; }
.pr-6 { padding-right: 1.5rem; }
.pr-8 { padding-right: 2rem; }

/* ── 3d. TYPOGRAPHY ── */
.font-display { font-family: 'Space Grotesk', sans-serif; }
.font-body { font-family: 'Inter', sans-serif; }
.font-mono { font-family: 'Space Mono', monospace; }
.font-sans { font-family: 'Inter', 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-9xl { font-size: 8rem; line-height: 1; }
.text-\[11px\] { font-size: 11px; }
.text-\[12px\] { font-size: 12px; }
.text-\[13px\] { font-size: 13px; }
.text-\[14px\] { font-size: 14px; }
.text-\[15px\] { font-size: 15px; }
.text-\[16px\] { font-size: 16px; }
.text-\[18px\] { font-size: 18px; }
.text-\[20px\] { font-size: 20px; }
.text-\[22px\] { font-size: 22px; }
.text-\[24px\] { font-size: 24px; }
.text-\[28px\] { font-size: 28px; }
.text-\[32px\] { font-size: 32px; }
.text-\[36px\] { font-size: 36px; }
.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; }
.text-\[clamp\(2rem\,5vw\,4rem\)\] { font-size: clamp(2rem, 5vw, 4rem); }
.text-\[clamp\(2\.5rem\,6vw\,5rem\)\] { font-size: clamp(2.5rem, 6vw, 5rem); }
.text-\[clamp\(3rem\,7vw\,6rem\)\] { font-size: clamp(3rem, 7vw, 6rem); }
.text-\[clamp\(1\.25rem\,3vw\,2rem\)\] { font-size: clamp(1.25rem, 3vw, 2rem); }
.text-\[clamp\(1rem\,2\.5vw\,1\.5rem\)\] { font-size: clamp(1rem, 2.5vw, 1.5rem); }

.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\.15\] { line-height: 1.15; }
.leading-\[1\.2\] { line-height: 1.2; }
.leading-\[1\.4\] { line-height: 1.4; }
.leading-\[1\.6\] { line-height: 1.6; }
.leading-\[1\.7\] { line-height: 1.7; }
.leading-\[1\.8\] { line-height: 1.8; }

.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\.01em\] { letter-spacing: -0.01em; }
.tracking-\[-0\.02em\] { letter-spacing: -0.02em; }
.tracking-\[-0\.03em\] { letter-spacing: -0.03em; }
.tracking-\[-0\.04em\] { letter-spacing: -0.04em; }
.tracking-\[0\.14em\] { letter-spacing: 0.14em; }
.tracking-\[0\.18em\] { letter-spacing: 0.18em; }
.tracking-\[0\.2em\] { letter-spacing: 0.2em; }

.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; }
.underline-offset-4 { text-underline-offset: 4px; }

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

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

/* ── 3e. COLORS ── */

/* Text colors */
.text-\[\#0F172A\] { color: #0F172A; }
.text-\[\#1E293B\] { color: #1E293B; }
.text-\[\#334155\] { color: #334155; }
.text-\[\#475569\] { color: #475569; }
.text-\[\#64748B\] { color: #64748B; }
.text-\[\#94A3B8\] { color: #94A3B8; }
.text-\[\#CBD5E1\] { color: #CBD5E1; }
.text-\[\#E2E8F0\] { color: #E2E8F0; }
.text-\[\#F8FAFC\] { color: #F8FAFC; }
.text-\[\#EFF2F6\] { color: #EFF2F6; }
.text-\[\#059669\] { color: #059669; }
.text-\[\#047857\] { color: #047857; }
.text-\[\#D8E2DC\] { color: #D8E2DC; }
.text-\[\#ffffff\] { color: #ffffff; }
.text-white { color: #ffffff; }
.text-inherit { color: inherit; }

/* Background colors */
.bg-\[\#F8FAFC\] { background-color: #F8FAFC; }
.bg-\[\#EFF2F6\] { background-color: #EFF2F6; }
.bg-\[\#E2E8F0\] { background-color: #E2E8F0; }
.bg-\[\#0F172A\] { background-color: #0F172A; }
.bg-\[\#1E293B\] { background-color: #1E293B; }
.bg-\[\#334155\] { background-color: #334155; }
.bg-\[\#059669\] { background-color: #059669; }
.bg-\[\#047857\] { background-color: #047857; }
.bg-\[\#ffffff\] { background-color: #ffffff; }
.bg-white { background-color: #ffffff; }
.bg-transparent { background-color: transparent; }
.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); }

/* Border colors */
.border-\[\#0F172A\] { border-color: #0F172A; }
.border-\[\#1E293B\] { border-color: #1E293B; }
.border-\[\#64748B\] { border-color: #64748B; }
.border-\[\#E2E8F0\] { border-color: #E2E8F0; }
.border-\[\#059669\] { border-color: #059669; }
.border-\[rgba\(100\,116\,139\,0\.2\)\] { border-color: rgba(100, 116, 139, 0.2); }
.border-\[rgba\(100\,116\,139\,0\.35\)\] { border-color: rgba(100, 116, 139, 0.35); }
.border-\[rgba\(255\,255\,255\,0\.180\)\] { border-color: rgba(255, 255, 255, 0.180); }
.border-\[rgba\(216\,226\,220\,0\.280\)\] { border-color: rgba(216, 226, 220, 0.280); }

/* ── 3f. 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-t-2 { border-top-width: 2px; border-top-style: solid; }
.border-b { border-bottom-width: 1px; border-bottom-style: solid; }
.border-b-2 { border-bottom-width: 2px; border-bottom-style: solid; }
.border-l { border-left-width: 1px; border-left-style: solid; }
.border-l-2 { border-left-width: 2px; border-left-style: solid; }
.border-l-4 { border-left-width: 4px; border-left-style: solid; }
.border-r { border-right-width: 1px; border-right-style: solid; }
.border-r-2 { border-right-width: 2px; border-right-style: solid; }

.divide-y > * + * { border-top: 1px solid; }

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

/* ── 3g. EFFECTS ── */
.shadow { box-shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06); }
.shadow-md { box-shadow: 0 4px 6px rgba(0,0,0,0.07), 0 2px 4px rgba(0,0,0,0.06); }
.shadow-lg { box-shadow: 0 10px 15px rgba(0,0,0,0.1), 0 4px 6px rgba(0,0,0,0.05); }
.shadow-xl { box-shadow: 0 20px 25px rgba(0,0,0,0.1), 0 10px 10px rgba(0,0,0,0.04); }
.shadow-none { box-shadow: none; }
.shadow-\[4px_4px_0px_\#0F172A\] { box-shadow: 4px 4px 0px #0F172A; }
.shadow-\[8px_8px_0px_\#0F172A\] { box-shadow: 8px 8px 0px #0F172A; }
.shadow-\[2px_2px_0px_\#0F172A\] { box-shadow: 2px 2px 0px #0F172A; }
.shadow-\[0_20px_60px_rgba\(15\,23\,42\,0\.24\)\] { box-shadow: 0 20px 60px rgba(15, 23, 42, 0.24); }

.opacity-0 { opacity: 0; }
.opacity-50 { opacity: 0.5; }
.opacity-60 { opacity: 0.6; }
.opacity-70 { opacity: 0.7; }
.opacity-75 { opacity: 0.75; }
.opacity-80 { opacity: 0.8; }
.opacity-85 { opacity: 0.85; }
.opacity-90 { opacity: 0.9; }
.opacity-100 { opacity: 1; }

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

/* ── 3h. TRANSFORMS ── */
.rotate-90 { transform: rotate(90deg); }
.rotate-180 { transform: rotate(180deg); }
.-rotate-90 { transform: rotate(-90deg); }
.rotate-\[-90deg\] { transform: rotate(-90deg); }
.rotate-\[90deg\] { transform: rotate(90deg); }
.scale-100 { transform: scale(1); }
.scale-105 { transform: scale(1.05); }
.scale-110 { transform: scale(1.1); }
.scale-95 { transform: scale(0.95); }
.-translate-x-1\/2 { transform: translateX(-50%); }
.-translate-y-1\/2 { transform: translateY(-50%); }
.translate-y-0 { transform: translateY(0); }
.translate-y-1 { transform: translateY(0.25rem); }
.-translate-y-1 { transform: translateY(-0.25rem); }

/* ── 3i. 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: 150ms; }
.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 { 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); }

/* ── 3j. ASPECT RATIO & OBJECT FIT ── */
.aspect-square { aspect-ratio: 1 / 1; }
.aspect-video { aspect-ratio: 16 / 9; }
.aspect-\[3\/2\] { aspect-ratio: 3 / 2; }
.aspect-\[4\/3\] { aspect-ratio: 4 / 3; }
.aspect-\[16\/9\] { aspect-ratio: 16 / 9; }
.aspect-\[21\/9\] { aspect-ratio: 21 / 9; }
.object-cover { object-fit: cover; }
.object-contain { object-fit: contain; }
.object-center { object-position: center; }
.object-top { object-position: top; }

/* ── 3k. CURSOR / POINTER EVENTS ── */
.cursor-pointer { cursor: pointer; }
.cursor-default { cursor: default; }
.pointer-events-none { pointer-events: none; }

/* ── 3l. MISC LAYOUT ── */
.list-none { list-style: none; }
.list-disc { list-style: disc; }
.list-decimal { list-style: decimal; }
.list-inside { list-style-position: inside; }
.list-outside { list-style-position: outside; }

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

.w-\[calc\(100\%-1\.5rem\)\] { width: calc(100% - 1.5rem); }

.group { position: relative; }
.group:hover .group-hover\:scale-105 { transform: scale(1.05); }
.group:hover .group-hover\:underline { text-decoration: underline; }
.group:hover .group-hover\:opacity-80 { opacity: 0.8; }

/* ── 4. ARBITRARY VALUE CLASSES (JIT output) ── */

.bg-\[\#F8FAFC\]\/50 { background-color: rgba(248, 250, 252, 0.5); }
.bg-\[\#EFF2F6\]\/50 { background-color: rgba(239, 242, 246, 0.5); }
.bg-\[\#0F172A\]\/5 { background-color: rgba(15, 23, 42, 0.05); }
.bg-\[\#0F172A\]\/10 { background-color: rgba(15, 23, 42, 0.10); }

.border-\[\#0F172A\]\/10 { border-color: rgba(15, 23, 42, 0.10); }
.border-\[\#0F172A\]\/20 { border-color: rgba(15, 23, 42, 0.20); }
.border-\[\#64748B\]\/20 { border-color: rgba(100, 116, 139, 0.20); }
.border-\[\#64748B\]\/30 { border-color: rgba(100, 116, 139, 0.30); }

.text-\[\#0F172A\]\/70 { color: rgba(15, 23, 42, 0.70); }
.text-\[\#64748B\]\/80 { color: rgba(100, 116, 139, 0.80); }

/* ── 5. STATE VARIANTS ── */

.hover\:text-\[\#059669\]:hover { color: #059669; }
.hover\:text-\[\#0F172A\]:hover { color: #0F172A; }
.hover\:text-\[\#1E293B\]:hover { color: #1E293B; }
.hover\:text-\[\#F8FAFC\]:hover { color: #F8FAFC; }
.hover\:bg-\[\#0F172A\]:hover { background-color: #0F172A; }
.hover\:bg-\[\#059669\]:hover { background-color: #059669; }
.hover\:bg-\[\#EFF2F6\]:hover { background-color: #EFF2F6; }
.hover\:bg-transparent:hover { background-color: transparent; }
.hover\:border-\[\#0F172A\]:hover { border-color: #0F172A; }
.hover\:border-\[\#059669\]:hover { border-color: #059669; }
.hover\:opacity-90:hover { opacity: 0.9; }
.hover\:scale-105:hover { transform: scale(1.05); }
.hover\:underline:hover { text-decoration: underline; }
.hover\:shadow-\[4px_4px_0px_\#0F172A\]:hover { box-shadow: 4px 4px 0px #0F172A; }

.focus\:outline-none:focus { outline: none; }
.focus\:border-\[\#059669\]:focus { border-color: #059669; }
.focus\:border-\[\#0F172A\]:focus { border-color: #0F172A; }
.focus\:ring-0:focus { box-shadow: none; }

.active\:scale-95:active { transform: scale(0.95); }

/* ── 6. RESPONSIVE VARIANTS ── */

@media (min-width: 640px) {
  .sm\:flex { display: flex; }
  .sm\:hidden { display: none; }
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sm\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .sm\:text-5xl { font-size: 3rem; line-height: 1; }
  .sm\:text-6xl { font-size: 3.75rem; line-height: 1; }
  .sm\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
  .sm\:py-12 { padding-top: 3rem; padding-bottom: 3rem; }
  .sm\:col-span-2 { grid-column: span 2 / span 2; }
  .sm\:flex-row { flex-direction: row; }
  .sm\:items-center { align-items: center; }
  .sm\:justify-between { justify-content: space-between; }
}

@media (min-width: 768px) {
  .md\:flex { display: flex; }
  .md\:block { display: block; }
  .md\:hidden { display: none; }
  .md\:inline-block { display: inline-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\: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\: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\: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\:mt-0 { margin-top: 0; }
  .md\:px-8 { padding-left: 2rem; padding-right: 2rem; }
  .md\:py-16 { padding-top: 4rem; padding-bottom: 4rem; }
  .md\:py-20 { padding-top: 5rem; padding-bottom: 5rem; }
  .md\:py-24 { padding-top: 6rem; padding-bottom: 6rem; }
  .md\:pt-24 { padding-top: 6rem; }
  .md\:pb-24 { padding-bottom: 6rem; }
  .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-\[56px\] { font-size: 56px; }
  .md\:text-\[64px\] { font-size: 64px; }
  .md\:text-\[72px\] { font-size: 72px; }
  .md\:aspect-\[21\/9\] { aspect-ratio: 21 / 9; }
  .md\:w-1\/2 { width: 50%; }
  .md\:w-2\/3 { width: 66.666667%; }
  .md\:w-1\/3 { width: 33.333333%; }
  .md\:max-w-\[640px\] { max-width: 640px; }
  .md\:max-w-\[720px\] { max-width: 720px; }
}

@media (min-width: 1024px) {
  .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\:col-span-4 { grid-column: span 4 / span 4; }
  .lg\:col-span-7 { grid-column: span 7 / span 7; }
  .lg\:col-span-8 { grid-column: span 8 / span 8; }
  .lg\:gap-12 { gap: 3rem; }
  .lg\:gap-16 { gap: 4rem; }
  .lg\:px-12 { padding-left: 3rem; padding-right: 3rem; }
  .lg\:px-16 { padding-left: 4rem; padding-right: 4rem; }
  .lg\:py-24 { padding-top: 6rem; padding-bottom: 6rem; }
  .lg\:py-32 { padding-top: 8rem; padding-bottom: 8rem; }
  .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\:w-1\/2 { width: 50%; }
  .lg\:flex-row { flex-direction: row; }
  .lg\:items-center { align-items: center; }
}

@media (min-width: 1280px) {
  .xl\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .xl\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .xl\:gap-16 { gap: 4rem; }
  .xl\:text-\[96px\] { font-size: 96px; }
  .xl\:px-0 { padding-left: 0; padding-right: 0; }
}

/* ── 7. COMPONENT PATTERNS (structural, not named classes) ── */

/* Header */
.header-base {
  width: 100%;
  border-bottom: 1px solid rgba(100, 116, 139, 0.2);
  background-color: #F8FAFC;
  position: sticky;
  top: 0;
  z-index: 40;
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-brand {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: #0F172A;
  text-decoration: none;
  line-height: 1;
}

.header-nav {
  display: none;
  align-items: center;
  gap: 2rem;
  font-size: 0.875rem;
  color: #0F172A;
}

@media (min-width: 768px) {
  .header-nav { display: flex; }
}

.header-nav a {
  color: #0F172A;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: -0.01em;
  transition: color 0.15s ease;
}

.header-nav a:hover { color: #059669; }

.header-phone {
  display: none;
  font-family: 'Space Mono', monospace;
  font-size: 0.8125rem;
  letter-spacing: -0.01em;
  color: #0F172A;
  text-decoration: none;
  transition: color 0.15s ease;
}

@media (min-width: 768px) {
  .header-phone { display: inline-block; }
}

.header-phone:hover { color: #059669; }

.header-hamburger {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
  color: #0F172A;
  padding: 0.5rem;
  line-height: 1;
}

@media (min-width: 768px) {
  .header-hamburger { display: none; }
}

.mobile-nav {
  border-top: 1px solid rgba(100, 116, 139, 0.2);
  background-color: #F8FAFC;
}

.mobile-nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 1rem;
  color: #0F172A;
}

.mobile-nav-inner a {
  color: #0F172A;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.15s ease;
}

.mobile-nav-inner a:hover { color: #059669; }

.mobile-nav-phone {
  font-family: 'Space Mono', monospace;
  font-size: 0.8125rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(100, 116, 139, 0.2);
}

/* Marquee strip */
.marquee-strip {
  width: 100%;
  overflow: hidden;
  background-color: #0F172A;
  border-top: 1px solid rgba(100, 116, 139, 0.2);
  border-bottom: 1px solid rgba(100, 116, 139, 0.2);
  padding: 0.625rem 0;
}

.marquee-track {
  display: inline-flex;
  animation: marquee-scroll 32s linear infinite;
  white-space: nowrap;
}

.marquee-track span {
  display: inline-block;
  font-family: 'Space Mono', monospace;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #F8FAFC;
  padding: 0 2.5rem;
  opacity: 0.85;
}

.marquee-track span::after {
  content: '·';
  margin-left: 2.5rem;
  opacity: 0.5;
}

@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Section metadata label */
.section-meta-label {
  font-size: 0.6875rem;
  font-family: 'Space Mono', monospace;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #64748B;
  margin-bottom: 0.875rem;
}

/* Section container */
.section-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Article card */
.article-card {
  display: block;
  text-decoration: none;
  color: inherit;
  border: 1px solid rgba(100, 116, 139, 0.2);
  background-color: #F8FAFC;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.article-card:hover {
  border-color: #0F172A;
  box-shadow: 4px 4px 0px #0F172A;
}

/* Stats number */
.stat-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  color: #0F172A;
  letter-spacing: -0.04em;
  line-height: 1;
}

.stat-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #64748B;
  margin-top: 0.5rem;
}

/* Blueprint grid overlay for Industrial family */
.blueprint-grid {
  background-image:
    linear-gradient(rgba(100, 116, 139, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(100, 116, 139, 0.06) 1px, transparent 1px);
  background-size: 40px 40px;
}

/* Hard offset shadow card */
.offset-card {
  border: 1px solid #0F172A;
  background-color: #F8FAFC;
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}

.offset-card:hover {
  box-shadow: 6px 6px 0px #0F172A;
  transform: translate(-2px, -2px);
}

/* Numbered section marker */
.section-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  color: rgba(15, 23, 42, 0.08);
  letter-spacing: -0.05em;
  line-height: 1;
  user-select: none;
}

/* Pull quote */
.pull-quote {
  border-left: 3px solid #0F172A;
  padding: 1.5rem 2rem;
  background-color: #EFF2F6;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.125rem, 2.5vw, 1.375rem);
  font-weight: 700;
  color: #0F172A;
  letter-spacing: -0.02em;
  line-height: 1.4;
}

/* Inline key-takeaways */
.key-takeaways {
  border: 1px solid #0F172A;
  padding: 2rem;
  background-color: #F8FAFC;
}

.key-takeaways h3 {
  font-family: 'Space Mono', monospace;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #64748B;
  margin-bottom: 1rem;
}

.key-takeaways ul {
  list-style: none;
  padding: 0;
}

.key-takeaways ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: #0F172A;
  line-height: 1.6;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(100, 116, 139, 0.15);
}

.key-takeaways ul li:last-child { border-bottom: none; }

.key-takeaways ul li::before {
  content: '—';
  font-family: 'Space Mono', monospace;
  color: #64748B;
  flex-shrink: 0;
  margin-top: 0.05em;
}

/* Author bio box */
.author-bio {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  border: 1px solid rgba(100, 116, 139, 0.2);
  padding: 2rem;
  background-color: #EFF2F6;
}

@media (max-width: 640px) {
  .author-bio { flex-direction: column; }
}

.author-bio__avatar {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  overflow: hidden;
  background-color: rgba(100, 116, 139, 0.2);
}

.author-bio__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-bio__name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 0.375rem;
}

.author-bio__text {
  font-size: 0.875rem;
  color: #64748B;
  line-height: 1.65;
}

/* FAQ accordion */
.faq-item {
  border-bottom: 1px solid rgba(100, 116, 139, 0.2);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  cursor: pointer;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #0F172A;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
}

.faq-question:hover { color: #059669; }

.faq-answer {
  padding: 0 0 1.25rem;
  font-size: 0.9375rem;
  color: #64748B;
  line-height: 1.7;
  display: none;
}

.faq-answer.open { display: block; }

/* Form inputs */
.form-input {
  width: 100%;
  background-color: #F8FAFC;
  border: 1px solid rgba(100, 116, 139, 0.3);
  padding: 0.875rem 1rem;
  font-size: 0.9375rem;
  color: #0F172A;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color 0.15s ease;
  border-radius: 0;
  -webkit-appearance: none;
}

.form-input:focus {
  border-color: #059669;
}

.form-input::placeholder { color: #94A3B8; }

.form-label {
  display: block;
  font-family: 'Space Mono', monospace;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #64748B;
  margin-bottom: 0.5rem;
}

/* CTA buttons */
.btn-ink {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #0F172A;
  color: #F8FAFC;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  padding: 0.875rem 2rem;
  border: 2px solid #0F172A;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease;
  letter-spacing: 0.01em;
  text-decoration: none;
  border-radius: 0;
}

.btn-ink:hover {
  background-color: transparent;
  color: #0F172A;
}

.btn-green {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #059669;
  color: #F8FAFC;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  padding: 0.875rem 2rem;
  border: 2px solid #059669;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease;
  letter-spacing: 0.01em;
  text-decoration: none;
  border-radius: 0;
}

.btn-green:hover {
  background-color: transparent;
  color: #059669;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: transparent;
  color: #0F172A;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  padding: 0.875rem 2rem;
  border: 2px solid rgba(100, 116, 139, 0.35);
  cursor: pointer;
  transition: border-color 0.15s ease, color 0.15s ease;
  letter-spacing: 0.01em;
  text-decoration: none;
  border-radius: 0;
}

.btn-outline:hover {
  border-color: #0F172A;
  color: #0F172A;
}

/* Footer */
.footer-base {
  width: 100%;
  background-color: #EFF2F6;
  border-top: 1px solid rgba(100, 116, 139, 0.2);
  margin-top: auto;
}

.footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 4rem 2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
}

.footer-brand {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #0F172A;
  letter-spacing: -0.025em;
  margin-bottom: 0.875rem;
}

.footer-statement {
  font-size: 0.875rem;
  color: #64748B;
  line-height: 1.65;
}

.footer-section-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #64748B;
  margin-bottom: 0.875rem;
}

.footer-contact {
  font-size: 0.875rem;
  color: #0F172A;
  line-height: 1.8;
}

.footer-contact a { color: #0F172A; text-decoration: none; transition: color 0.15s ease; }
.footer-contact a:hover { color: #059669; }

.footer-hours {
  padding-top: 0.75rem;
  color: #64748B;
  font-size: 0.8125rem;
  line-height: 1.6;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.875rem;
}

.footer-nav a { color: #0F172A; text-decoration: none; transition: color 0.15s ease; }
.footer-nav a:hover { color: #059669; }

.footer-bottom {
  border-top: 1px solid rgba(100, 116, 139, 0.2);
}

.footer-bottom-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 768px) {
  .footer-bottom-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  font-size: 0.75rem;
  color: #64748B;
}

.footer-legal-links a { color: #64748B; text-decoration: none; transition: color 0.15s ease; }
.footer-legal-links a:hover { color: #059669; }

.footer-copyright {
  font-size: 0.75rem;
  color: #64748B;
}

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

/* AOS override — ensure elements start visible if JS fails */
[data-aos] { opacity: 1 !important; transform: none !important; }

/* Print */
@media print {
  .marquee-strip,
  [data-target="cookies.banner"],
  .header-hamburger { display: none !important; }
}
