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

@theme {
  --color-bg-primary: #F5F1EB;
  --color-bg-secondary: #EDE8DF;
  --color-ink-primary: #1A1612;
  --color-ink-muted: #7A7062;
  --color-accent: #7B3F6E;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Space Mono', monospace;
  --radius-sm: 0px;
  --radius-md: 0px;
  --shadow-hard: 4px 4px 0px #1A1612;
  --shadow-hard-lg: 6px 6px 0px #1A1612;
}

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

html { scroll-behavior: smooth; }

body {
  background-color: #F5F1EB;
  color: #1A1612;
  font-family: 'Space Mono', monospace;
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

.text-display-xl { font-family: 'Space Grotesk', sans-serif; font-size: clamp(2.8rem, 6vw, 5.5rem); font-weight: 700; line-height: 1.05; letter-spacing: -0.02em; }
.text-display-lg { font-family: 'Space Grotesk', sans-serif; font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; }
.text-display-md { font-family: 'Space Grotesk', sans-serif; font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 700; line-height: 1.2; }
.text-display-sm { font-family: 'Space Grotesk', sans-serif; font-size: 1.25rem; font-weight: 700; line-height: 1.3; }
.text-label { font-family: 'Space Mono', monospace; font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; }
.text-body { font-family: 'Space Mono', monospace; font-size: 0.9rem; line-height: 1.7; }
.text-body-sm { font-family: 'Space Mono', monospace; font-size: 0.8rem; line-height: 1.6; }

/* ── LAYOUT ── */
.container-site { max-width: 1200px; margin-left: auto; margin-right: auto; padding-left: 1.5rem; padding-right: 1.5rem; }
.container-narrow { max-width: 760px; margin-left: auto; margin-right: auto; padding-left: 1.5rem; padding-right: 1.5rem; }
.container-wide { max-width: 1440px; margin-left: auto; margin-right: auto; padding-left: 1.5rem; padding-right: 1.5rem; }

.flex { display: flex; }
.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; }
.flex-shrink-0 { flex-shrink: 0; }
.flex-grow { flex-grow: 1; }

.grid { display: grid; }
.grid-cols-1 { grid-template-columns: repeat(1, 1fr); }
.grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
.col-span-1 { grid-column: span 1; }
.col-span-2 { grid-column: span 2; }
.col-span-3 { grid-column: span 3; }

/* ── GAPS & SPACING ── */
.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-20 { gap: 5rem; }
.gap-24 { gap: 6rem; }

.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; }
.p-16 { padding: 4rem; }
.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.px-10 { padding-left: 2.5rem; padding-right: 2.5rem; }
.px-12 { padding-left: 3rem; padding-right: 3rem; }
.py-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-1 { padding-top: 0.25rem; }
.pt-2 { padding-top: 0.5rem; }
.pt-3 { padding-top: 0.75rem; }
.pt-4 { padding-top: 1rem; }
.pt-6 { padding-top: 1.5rem; }
.pt-8 { padding-top: 2rem; }
.pt-12 { padding-top: 3rem; }
.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; }

.m-0 { margin: 0; }
.m-auto { margin: auto; }
.mx-auto { margin-left: auto; margin-right: auto; }
.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; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }
.mt-16 { margin-top: 4rem; }
.mt-20 { margin-top: 5rem; }
.mt-24 { margin-top: 6rem; }
.mt-auto { margin-top: auto; }
.ml-auto { margin-left: auto; }
.mr-auto { margin-right: auto; }

/* ── SIZING ── */
.w-full { width: 100%; }
.w-auto { width: auto; }
.w-1\/2 { width: 50%; }
.w-1\/3 { width: 33.333%; }
.w-2\/3 { width: 66.666%; }
.w-1\/4 { width: 25%; }
.w-3\/4 { width: 75%; }
.w-8 { width: 2rem; }
.w-10 { width: 2.5rem; }
.w-12 { width: 3rem; }
.w-16 { width: 4rem; }
.w-20 { width: 5rem; }
.w-24 { width: 6rem; }
.w-32 { width: 8rem; }
.w-48 { width: 12rem; }
.w-64 { width: 16rem; }
.h-auto { height: auto; }
.h-full { height: 100%; }
.h-screen { height: 100vh; }
.h-1 { height: 0.25rem; }
.h-2 { height: 0.5rem; }
.h-4 { height: 1rem; }
.h-8 { height: 2rem; }
.h-10 { height: 2.5rem; }
.h-12 { height: 3rem; }
.h-16 { height: 4rem; }
.h-20 { height: 5rem; }
.h-24 { height: 6rem; }
.h-32 { height: 8rem; }
.h-48 { height: 12rem; }
.h-64 { height: 16rem; }
.h-72 { height: 18rem; }
.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; }
.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; }

/* ── COLORS ── */
.bg-bg-primary { background-color: #F5F1EB; }
.bg-bg-secondary { background-color: #EDE8DF; }
.bg-ink-primary { background-color: #1A1612; }
.bg-accent { background-color: #7B3F6E; }
.bg-accent-muted { background-color: #f0e9ee; }
.bg-white { background-color: #ffffff; }
.bg-transparent { background-color: transparent; }
.bg-[#F5F1EB] { background-color: #F5F1EB; }
.bg-[#EDE8DF] { background-color: #EDE8DF; }
.bg-[#1A1612] { background-color: #1A1612; }
.bg-[#7B3F6E] { background-color: #7B3F6E; }
.bg-[#7A7062] { background-color: #7A7062; }
.bg-[#f0e9ee] { background-color: #f0e9ee; }
.bg-[#e8dfe5] { background-color: #e8dfe5; }
.bg-[#2a2320] { background-color: #2a2320; }
.bg-[#faf7f3] { background-color: #faf7f3; }

.text-ink-primary { color: #1A1612; }
.text-ink-muted { color: #7A7062; }
.text-accent { color: #7B3F6E; }
.text-bg-primary { color: #F5F1EB; }
.text-white { color: #ffffff; }
.text-[#1A1612] { color: #1A1612; }
.text-[#7A7062] { color: #7A7062; }
.text-[#7B3F6E] { color: #7B3F6E; }
.text-[#F5F1EB] { color: #F5F1EB; }
.text-[#EDE8DF] { color: #EDE8DF; }
.text-[#ffffff] { color: #ffffff; }
.text-[#d4b8cd] { color: #d4b8cd; }

/* ── BORDERS ── */
.border { border: 1px solid; }
.border-0 { border: 0; }
.border-2 { border: 2px solid; }
.border-4 { border: 4px solid; }
.border-t { border-top: 1px solid; }
.border-b { border-bottom: 1px solid; }
.border-l { border-left: 1px solid; }
.border-r { border-right: 1px solid; }
.border-t-2 { border-top: 2px solid; }
.border-b-2 { border-bottom: 2px solid; }
.border-l-4 { border-left: 4px solid; }
.border-ink-primary { border-color: #1A1612; }
.border-ink-muted { border-color: #7A7062; }
.border-accent { border-color: #7B3F6E; }
.border-bg-primary { border-color: #F5F1EB; }
.border-[#1A1612] { border-color: #1A1612; }
.border-[#7A7062] { border-color: #7A7062; }
.border-[#7B3F6E] { border-color: #7B3F6E; }
.border-[#EDE8DF] { border-color: #EDE8DF; }
.border-[rgba(26,22,18,0.15)] { border-color: rgba(26,22,18,0.15); }
.border-[rgba(26,22,18,0.2)] { border-color: rgba(26,22,18,0.2); }
.border-[rgba(26,22,18,0.3)] { border-color: rgba(26,22,18,0.3); }
.border-[rgba(122,112,98,0.2)] { border-color: rgba(122,112,98,0.2); }
.border-[rgba(122,112,98,0.3)] { border-color: rgba(122,112,98,0.3); }
.divide-y > * + * { border-top: 1px solid; }
.divide-[#1A1612] > * + * { border-color: #1A1612; }
.divide-[rgba(26,22,18,0.15)] > * + * { border-color: rgba(26,22,18,0.15); }
.rounded-none { border-radius: 0; }
.rounded-sm { border-radius: 0; }
.rounded { border-radius: 0; }
.rounded-full { border-radius: 9999px; }

/* ── EFFECTS ── */
.shadow-hard { box-shadow: 4px 4px 0px #1A1612; }
.shadow-hard-lg { box-shadow: 6px 6px 0px #1A1612; }
.shadow-hard-accent { box-shadow: 4px 4px 0px #7B3F6E; }
.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; }
.overflow-hidden { overflow: hidden; }
.overflow-auto { overflow: auto; }
.overflow-x-hidden { overflow-x: hidden; }
.overflow-x-auto { overflow-x: auto; }
.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; }
.top-0 { top: 0; }
.top-4 { top: 1rem; }
.bottom-0 { bottom: 0; }
.bottom-4 { bottom: 1rem; }
.left-0 { left: 0; }
.left-4 { left: 1rem; }
.right-0 { right: 0; }
.right-4 { right: 1rem; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.z-0 { z-index: 0; }
.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.z-30 { z-index: 30; }
.z-40 { z-index: 40; }
.z-50 { z-index: 50; }

/* ── TEXT UTILITIES ── */
.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-xs { font-size: 0.75rem; }
.text-sm { font-size: 0.875rem; }
.text-base { font-size: 1rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }
.text-5xl { font-size: 3rem; }
.text-6xl { font-size: 3.75rem; }
.text-7xl { font-size: 4.5rem; }
.text-8xl { font-size: 6rem; }
.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-black { font-weight: 900; }
.italic { font-style: italic; }
.not-italic { font-style: normal; }
.uppercase { text-transform: uppercase; }
.lowercase { text-transform: lowercase; }
.capitalize { text-transform: capitalize; }
.normal-case { text-transform: none; }
.tracking-tight { letter-spacing: -0.025em; }
.tracking-normal { letter-spacing: 0; }
.tracking-wide { letter-spacing: 0.025em; }
.tracking-wider { letter-spacing: 0.05em; }
.tracking-widest { letter-spacing: 0.15em; }
.leading-none { line-height: 1; }
.leading-tight { line-height: 1.2; }
.leading-snug { line-height: 1.375; }
.leading-normal { line-height: 1.5; }
.leading-relaxed { line-height: 1.7; }
.leading-loose { line-height: 2; }
.underline { text-decoration: underline; }
.no-underline { text-decoration: none; }
.line-through { text-decoration: line-through; }
.truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.whitespace-nowrap { white-space: nowrap; }
.break-words { word-break: break-word; }

/* ── DISPLAY ── */
.block { display: block; }
.inline-block { display: inline-block; }
.inline { display: inline; }
.hidden { display: none; }
.contents { display: contents; }

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

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

/* ── IMAGES ── */
img { max-width: 100%; display: block; }
.object-cover { object-fit: cover; }
.object-center { object-position: center; }

/* ── LINKS ── */
a { color: inherit; text-decoration: none; }
a.underline { text-decoration: underline; }

/* ── HOVER STATES ── */
.hover\:text-accent:hover { color: #7B3F6E; }
.hover\:text-[#7B3F6E]:hover { color: #7B3F6E; }
.hover\:bg-accent:hover { background-color: #7B3F6E; }
.hover\:bg-[#1A1612]:hover { background-color: #1A1612; }
.hover\:bg-[#7B3F6E]:hover { background-color: #7B3F6E; }
.hover\:text-[#F5F1EB]:hover { color: #F5F1EB; }
.hover\:text-[#1A1612]:hover { color: #1A1612; }
.hover\:border-accent:hover { border-color: #7B3F6E; }
.hover\:border-[#7B3F6E]:hover { border-color: #7B3F6E; }
.hover\:opacity-90:hover { opacity: 0.9; }
.hover\:shadow-hard-lg:hover { box-shadow: 6px 6px 0px #1A1612; }
.hover\:shadow-hard-accent:hover { box-shadow: 4px 4px 0px #7B3F6E; }
.hover\:underline:hover { text-decoration: underline; }
.hover\:-translate-y-1:hover { transform: translateY(-0.25rem); }
.group:hover .group-hover\:text-accent { color: #7B3F6E; }
.group:hover .group-hover\:opacity-100 { opacity: 1; }

/* ── FOCUS ── */
.focus\:outline-none:focus { outline: none; }
.focus\:border-accent:focus { border-color: #7B3F6E; }
.focus\:border-[#7B3F6E]:focus { border-color: #7B3F6E; }
.focus\:ring-0:focus { box-shadow: none; }

/* ── CURSOR ── */
.cursor-pointer { cursor: pointer; }

/* ── ADDRESS ── */
address { font-style: normal; }

/* ── FORMS ── */
input, textarea, select {
  font-family: 'Space Mono', monospace;
  font-size: 0.875rem;
  background-color: #F5F1EB;
  color: #1A1612;
  border: 2px solid #1A1612;
  outline: none;
  width: 100%;
  padding: 0.75rem 1rem;
  transition: border-color 0.15s ease;
}
input:focus, textarea:focus, select:focus { border-color: #7B3F6E; }
label { font-family: 'Space Mono', monospace; font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: #7A7062; display: block; margin-bottom: 0.5rem; }
textarea { resize: vertical; }
select { appearance: none; cursor: pointer; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  background-color: #1A1612;
  color: #F5F1EB;
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.875rem 2rem;
  border: 2px solid #1A1612;
  box-shadow: 4px 4px 0px #7B3F6E;
  transition: all 0.15s ease;
  cursor: pointer;
}
.btn-primary:hover { box-shadow: 2px 2px 0px #7B3F6E; transform: translate(2px, 2px); }

.btn-outline {
  display: inline-block;
  background-color: transparent;
  color: #1A1612;
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.875rem 2rem;
  border: 2px solid #1A1612;
  box-shadow: 4px 4px 0px #1A1612;
  transition: all 0.15s ease;
  cursor: pointer;
}
.btn-outline:hover { background-color: #1A1612; color: #F5F1EB; box-shadow: 2px 2px 0px #1A1612; transform: translate(2px, 2px); }

.btn-accent {
  display: inline-block;
  background-color: #7B3F6E;
  color: #F5F1EB;
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.875rem 2rem;
  border: 2px solid #7B3F6E;
  box-shadow: 4px 4px 0px #1A1612;
  transition: all 0.15s ease;
  cursor: pointer;
}
.btn-accent:hover { box-shadow: 2px 2px 0px #1A1612; transform: translate(2px, 2px); }

/* ── SWISS BRUTALIST COMPONENTS ── */
.hard-card {
  background-color: #F5F1EB;
  border: 2px solid #1A1612;
  box-shadow: 5px 5px 0px #1A1612;
  padding: 1.5rem;
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}
.hard-card:hover { box-shadow: 3px 3px 0px #1A1612; transform: translate(2px, 2px); }

.hard-card-accent {
  background-color: #F5F1EB;
  border: 2px solid #7B3F6E;
  box-shadow: 5px 5px 0px #7B3F6E;
  padding: 1.5rem;
}

.accent-block {
  background-color: #7B3F6E;
  color: #F5F1EB;
  border: 2px solid #7B3F6E;
  box-shadow: 5px 5px 0px #1A1612;
  padding: 1.5rem;
}

.ink-block {
  background-color: #1A1612;
  color: #F5F1EB;
  border: 2px solid #1A1612;
  padding: 1.5rem;
}

.section-rule { border-top: 2px solid #1A1612; }
.section-rule-muted { border-top: 1px solid rgba(26,22,18,0.2); }

.rotated-label {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #7A7062;
}

.marquee-track { overflow: hidden; border-top: 2px solid #1A1612; border-bottom: 2px solid #1A1612; background-color: #1A1612; color: #F5F1EB; }
.marquee-inner { display: flex; gap: 3rem; white-space: nowrap; animation: marquee 28s linear infinite; }
.marquee-inner span { font-family: 'Space Mono', monospace; font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: #F5F1EB; padding: 0.75rem 0; }
.marquee-sep { color: #7B3F6E; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.stat-num { font-family: 'Space Grotesk', sans-serif; font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 700; color: #7B3F6E; line-height: 1; }
.stat-label { font-family: 'Space Mono', monospace; font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: #7A7062; margin-top: 0.5rem; }

.section-num { font-family: 'Space Grotesk', sans-serif; font-size: 4rem; font-weight: 700; color: rgba(26,22,18,0.08); line-height: 1; user-select: none; }

/* ── HEADER & NAV ── */
.site-header { background-color: #F5F1EB; border-bottom: 2px solid #1A1612; position: sticky; top: 0; z-index: 40; }
.nav-link { font-family: 'Space Mono', monospace; font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: #1A1612; transition: color 0.15s ease; padding-bottom: 0.125rem; border-bottom: 2px solid transparent; }
.nav-link:hover, .nav-link.active { color: #7B3F6E; border-bottom-color: #7B3F6E; }
.nav-phone { font-family: 'Space Mono', monospace; font-size: 0.78rem; color: #1A1612; letter-spacing: 0.04em; transition: color 0.15s ease; }
.nav-phone:hover { color: #7B3F6E; }

/* ── FOOTER ── */
.site-footer { background-color: #EDE8DF; border-top: 2px solid #1A1612; }

/* ── HERO ── */
.hero-section { min-height: 80vh; display: flex; align-items: center; position: relative; background-color: #F5F1EB; border-bottom: 2px solid #1A1612; overflow: hidden; }

/* ── IMAGE PLACEHOLDERS ── */
.img-placeholder { background-color: #EDE8DF; border: 2px solid #1A1612; width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.img-placeholder img { width: 100%; height: 100%; object-fit: cover; }

/* ── FAQ ACCORDION ── */
.accordion-item { border-bottom: 2px solid #1A1612; }
.accordion-trigger { display: flex; align-items: center; justify-content: space-between; width: 100%; padding: 1.25rem 0; font-family: 'Space Mono', monospace; font-size: 0.875rem; font-weight: 700; color: #1A1612; background: transparent; border: none; cursor: pointer; text-align: left; }
.accordion-trigger:hover { color: #7B3F6E; }
.accordion-content { overflow: hidden; font-family: 'Space Mono', monospace; font-size: 0.85rem; line-height: 1.7; color: #7A7062; padding: 0 0 1.25rem 0; display: none; }
.accordion-item.open .accordion-content { display: block; }
.accordion-icon { width: 1.25rem; height: 1.25rem; border: 2px solid #1A1612; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background-color 0.15s ease; }
.accordion-item.open .accordion-icon { background-color: #7B3F6E; border-color: #7B3F6E; color: #F5F1EB; }

/* ── PROCESS STEPS ── */
.process-step { position: relative; padding-left: 3.5rem; }
.process-num { position: absolute; left: 0; top: 0; font-family: 'Space Grotesk', sans-serif; font-size: 0.75rem; font-weight: 700; background-color: #7B3F6E; color: #F5F1EB; width: 2rem; height: 2rem; display: flex; align-items: center; justify-content: center; }

/* ── RESPONSIVE ── */
@media (max-width: 767px) {
  .md\:hidden { display: block; }
  .md\:flex { display: none !important; }
  .md\:grid-cols-2 { grid-template-columns: repeat(1, 1fr); }
  .md\:grid-cols-3 { grid-template-columns: repeat(1, 1fr); }
  .md\:grid-cols-4 { grid-template-columns: repeat(1, 1fr); }
  .md\:col-span-2 { grid-column: span 1; }
  .md\:flex-row { flex-direction: column; }
  .md\:text-left { text-align: left; }
  .md\:px-8 { padding-left: 1.5rem; padding-right: 1.5rem; }
  .md\:py-16 { padding-top: 4rem; padding-bottom: 4rem; }
  .md\:items-center { align-items: flex-start; }
  .md\:justify-between { justify-content: flex-start; }
  .md\:inline-block { display: none !important; }
  .text-display-xl { font-size: clamp(2rem, 8vw, 2.8rem); }
  .text-display-lg { font-size: clamp(1.6rem, 6vw, 2rem); }
  .hero-section { min-height: 60vh; }
}
@media (min-width: 768px) {
  .md\:hidden { display: none !important; }
  .md\:block { display: block; }
  .md\:flex { display: flex; }
  .md\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
  .md\:grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
  .md\:col-span-2 { grid-column: span 2; }
  .md\:flex-row { flex-direction: row; }
  .md\:items-center { align-items: center; }
  .md\:justify-between { justify-content: space-between; }
  .md\:text-left { text-align: left; }
  .md\:px-8 { padding-left: 2rem; padding-right: 2rem; }
  .md\:py-16 { padding-top: 4rem; padding-bottom: 4rem; }
  .md\:inline-block { display: inline-block; }
  .md\:aspect-\[21\/9\] { aspect-ratio: 21/9; }
}
@media (min-width: 1024px) {
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
  .lg\:col-span-2 { grid-column: span 2; }
  .lg\:flex { display: flex; }
  .lg\:text-left { text-align: left; }
  .lg\:px-12 { padding-left: 3rem; padding-right: 3rem; }
}

/* ── BACKDROP BLUR ── */
.backdrop-blur-xl { backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); }

/* ── COOKIE BANNER extra ── */
[data-target="cookies.banner"] { font-family: 'Space Mono', monospace; }

/* ── MISC ── */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.pointer-events-none { pointer-events: none; }
.select-none { user-select: none; }
.list-none { list-style: none; }
.list-disc { list-style: disc; padding-left: 1.5rem; }
.list-decimal { list-style: decimal; padding-left: 1.5rem; }
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-5 > * + * { margin-top: 1.25rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-8 > * + * { margin-top: 2rem; }
.space-y-10 > * + * { margin-top: 2.5rem; }
.space-y-12 > * + * { margin-top: 3rem; }
.space-x-2 > * + * { margin-left: 0.5rem; }
.space-x-3 > * + * { margin-left: 0.75rem; }
.space-x-4 > * + * { margin-left: 1rem; }
.space-x-6 > * + * { margin-left: 1.5rem; }
.space-x-8 > * + * { margin-left: 2rem; }
.decoration-1 { text-decoration-thickness: 1px; }
.underline-offset-4 { text-underline-offset: 4px; }
.italic { font-style: italic; }
.not-italic { font-style: normal; }

/* ── AOS overrides ── */
[data-aos] { transition-property: opacity, transform; }
