@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,700&family=Manrope:wght@400;500&display=swap');

@theme {
  --color-bg-primary: #0D0B12;
  --color-bg-secondary: #161320;
  --color-ink-primary: #F0EBF8;
  --color-ink-muted: #8B7FA0;
  --color-accent: #A855B5;
  --font-display: 'Fraunces', serif;
  --font-body: 'Manrope', sans-serif;
  --radius-sm: 0px;
  --radius-md: 0px;
  --shadow-brutal: 4px 4px 0px #A855B5;
  --shadow-brutal-lg: 6px 6px 0px #A855B5;
}

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

html { scroll-behavior: smooth; }

body {
  background-color: #0D0B12;
  color: #F0EBF8;
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ─── Layout ─────────────────────────────────────────────── */
.container { width: 100%; max-width: 1280px; 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-center { align-items: center; }
.items-start { align-items: flex-start; }
.items-end { align-items: flex-end; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-end { justify-content: flex-end; }
.justify-start { justify-content: flex-start; }
.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)); }
.col-span-1 { grid-column: span 1; }
.col-span-2 { grid-column: span 2; }
.col-span-3 { grid-column: span 3; }
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.sticky { position: sticky; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 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-50 { z-index: 50; }
.overflow-hidden { overflow: hidden; }
.overflow-x-hidden { overflow-x: hidden; }
.block { display: block; }
.inline-block { display: inline-block; }
.hidden { display: none; }
.w-full { width: 100%; }
.h-full { height: 100%; }
.h-screen { height: 100vh; }
.min-h-screen { min-height: 100vh; }
.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-prose { max-width: 65ch; }
.mx-auto { margin-left: auto; margin-right: auto; }
.aspect-\[3\/2\] { aspect-ratio: 3/2; }
.aspect-\[16\/9\] { aspect-ratio: 16/9; }
.aspect-\[21\/9\] { aspect-ratio: 21/9; }
.aspect-\[1\/1\] { aspect-ratio: 1/1; }
.aspect-square { aspect-ratio: 1/1; }

/* ─── Spacing ─────────────────────────────────────────────── */
.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; }
.p-0 { padding: 0; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.p-10 { padding: 2.5rem; }
.p-12 { padding: 3rem; }
.px-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; }
.px-10 { padding-left: 2.5rem; padding-right: 2.5rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-2\.5 { padding-top: 0.625rem; padding-bottom: 0.625rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-10 { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }
.pt-2 { padding-top: 0.5rem; }
.pt-4 { padding-top: 1rem; }
.pt-6 { padding-top: 1.5rem; }
.pt-8 { padding-top: 2rem; }
.pb-4 { padding-bottom: 1rem; }
.pb-6 { padding-bottom: 1.5rem; }
.pb-8 { padding-bottom: 2rem; }
.pb-16 { padding-bottom: 4rem; }
.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-24 { margin-bottom: 6rem; }
.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-24 { margin-top: 6rem; }
.ml-auto { margin-left: auto; }
.mr-2 { margin-right: 0.5rem; }
.mr-3 { margin-right: 0.75rem; }
.not-italic { font-style: normal; }

/* ─── Typography ─────────────────────────────────────────── */
.font-display { font-family: 'Fraunces', serif; }
.font-body { font-family: 'Manrope', sans-serif; }
.font-mono { font-family: 'Courier New', Courier, monospace; }
.text-xs { font-size: 0.75rem; line-height: 1.5; }
.text-sm { font-size: 0.875rem; line-height: 1.6; }
.text-base { font-size: 1rem; line-height: 1.6; }
.text-lg { font-size: 1.125rem; line-height: 1.5; }
.text-xl { font-size: 1.25rem; line-height: 1.4; }
.text-2xl { font-size: 1.5rem; line-height: 1.3; }
.text-3xl { font-size: 1.875rem; line-height: 1.2; }
.text-4xl { font-size: 2.25rem; line-height: 1.1; }
.text-5xl { font-size: 3rem; line-height: 1.05; }
.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; }
.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; }
.uppercase { text-transform: uppercase; }
.lowercase { text-transform: lowercase; }
.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; }
.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; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-balance { text-wrap: balance; }
.text-pretty { text-wrap: pretty; }
.underline { text-decoration: underline; }
.no-underline { text-decoration: none; }
.decoration-1 { text-decoration-thickness: 1px; }
.underline-offset-4 { text-underline-offset: 4px; }
.line-clamp-2 { overflow: hidden; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
.line-clamp-3 { overflow: hidden; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; }
.whitespace-nowrap { white-space: nowrap; }
.truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* ─── Colors ─────────────────────────────────────────────── */
.text-\[\#F0EBF8\] { color: #F0EBF8; }
.text-\[\#8B7FA0\] { color: #8B7FA0; }
.text-\[\#A855B5\] { color: #A855B5; }
.text-\[\#0D0B12\] { color: #0D0B12; }
.text-\[\#161320\] { color: #161320; }
.text-\[\#ffffff\] { color: #ffffff; }
.text-\[\#D8E2DC\] { color: #D8E2DC; }
.bg-\[\#0D0B12\] { background-color: #0D0B12; }
.bg-\[\#161320\] { background-color: #161320; }
.bg-\[\#A855B5\] { background-color: #A855B5; }
.bg-\[\#F0EBF8\] { background-color: #F0EBF8; }
.bg-\[\#1f1a2e\] { background-color: #1f1a2e; }
.bg-\[\#2a1f38\] { background-color: #2a1f38; }
.border-\[\#8B7FA0\] { border-color: #8B7FA0; }
.border-\[\#A855B5\] { border-color: #A855B5; }
.border-\[\#F0EBF8\] { border-color: #F0EBF8; }
.fill-\[\#A855B5\] { fill: #A855B5; }

/* ─── Borders ─────────────────────────────────────────────── */
.border { border-width: 1px; border-style: solid; }
.border-0 { border-width: 0; }
.border-t { border-top-width: 1px; border-top-style: solid; }
.border-b { border-bottom-width: 1px; border-bottom-style: solid; }
.border-l { border-left-width: 1px; border-left-style: solid; }
.border-r { border-right-width: 1px; border-right-style: solid; }
.border-2 { border-width: 2px; border-style: solid; }
.border-l-2 { border-left-width: 2px; border-left-style: solid; }
.border-l-4 { border-left-width: 4px; border-left-style: solid; }
.rounded-none { border-radius: 0; }
.rounded { border-radius: 0; }
.rounded-full { border-radius: 9999px; }
.divide-y > * + * { border-top-width: 1px; border-top-style: solid; }

/* ─── Opacity / Alpha helpers ─────────────────────────────── */
.border-\[\#8B7FA0\]\/20 { border-color: rgba(139, 127, 160, 0.2); }
.border-\[\#8B7FA0\]\/30 { border-color: rgba(139, 127, 160, 0.3); }
.border-\[\#8B7FA0\]\/40 { border-color: rgba(139, 127, 160, 0.4); }
.border-\[\#F0EBF8\]\/10 { border-color: rgba(240, 235, 248, 0.1); }
.border-\[\#F0EBF8\]\/20 { border-color: rgba(240, 235, 248, 0.2); }
.border-\[\#A855B5\]\/30 { border-color: rgba(168, 85, 181, 0.3); }
.border-\[\#A855B5\]\/50 { border-color: rgba(168, 85, 181, 0.5); }
.bg-\[\#A855B5\]\/10 { background-color: rgba(168, 85, 181, 0.1); }
.bg-\[\#A855B5\]\/20 { background-color: rgba(168, 85, 181, 0.2); }
.bg-\[\#161320\]\/80 { background-color: rgba(22, 19, 32, 0.8); }
.text-\[\#8B7FA0\]\/70 { color: rgba(139, 127, 160, 0.7); }

/* ─── Effects ─────────────────────────────────────────────── */
.shadow-\[4px_4px_0px_\#A855B5\] { box-shadow: 4px 4px 0px #A855B5; }
.shadow-\[6px_6px_0px_\#A855B5\] { box-shadow: 6px 6px 0px #A855B5; }
.shadow-\[2px_2px_0px_\#A855B5\] { box-shadow: 2px 2px 0px #A855B5; }
.shadow-\[-4px_-4px_0px_\#A855B5\] { box-shadow: -4px -4px 0px #A855B5; }
.opacity-0 { opacity: 0; }
.opacity-50 { opacity: 0.5; }
.opacity-70 { opacity: 0.7; }
.opacity-80 { opacity: 0.8; }
.opacity-90 { opacity: 0.9; }
.opacity-100 { opacity: 1; }
.backdrop-blur-xl { backdrop-filter: blur(24px); }
.backdrop-blur-sm { backdrop-filter: blur(4px); }
.blur-3xl { filter: blur(64px); }

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

/* ─── Transitions ─────────────────────────────────────────── */
.transition { transition-property: color, background-color, border-color, opacity, transform; transition-duration: 150ms; transition-timing-function: ease; }
.transition-all { transition-property: all; transition-duration: 150ms; transition-timing-function: ease; }
.transition-colors { transition-property: color, background-color, border-color; transition-duration: 150ms; transition-timing-function: ease; }
.transition-transform { transition-property: transform; transition-timing-function: ease; }
.transition-opacity { transition-property: opacity; transition-duration: 300ms; transition-timing-function: ease; }
.duration-150 { transition-duration: 150ms; }
.duration-300 { transition-duration: 300ms; }
.duration-500 { transition-duration: 500ms; }
.ease-in-out { transition-timing-function: ease-in-out; }

/* ─── Hover states ─────────────────────────────────────────── */
.hover\:text-\[\#A855B5\]:hover { color: #A855B5; }
.hover\:text-\[\#F0EBF8\]:hover { color: #F0EBF8; }
.hover\:bg-\[\#A855B5\]:hover { background-color: #A855B5; }
.hover\:bg-\[\#2a1f38\]:hover { background-color: #2a1f38; }
.hover\:opacity-90:hover { opacity: 0.9; }
.hover\:underline:hover { text-decoration: underline; }
.hover\:scale-105:hover { transform: scale(1.05); }
.hover\:shadow-\[6px_6px_0px_\#A855B5\]:hover { box-shadow: 6px 6px 0px #A855B5; }
.hover\:border-\[\#A855B5\]:hover { border-color: #A855B5; }
.focus\:outline-none:focus { outline: none; }
.focus\:border-\[\#A855B5\]:focus { border-color: #A855B5; }

/* ─── 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-\[\#A855B5\] { color: #A855B5; }

/* ─── Object ─────────────────────────────────────────────── */
.object-cover { object-fit: cover; }
.object-center { object-position: center; }
.object-top { object-position: top; }

/* ─── Misc ─────────────────────────────────────────────── */
.cursor-pointer { cursor: pointer; }
.select-none { user-select: none; }
.list-none { list-style: none; }
.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; }
.address { font-style: normal; }
address.not-italic { font-style: normal; }

/* ─── Swiss Brutalist specifics ─────────────────────────── */
.brutalist-border { border: 2px solid #F0EBF8; }
.brutalist-offset { box-shadow: 4px 4px 0px #A855B5; }
.brutalist-offset-lg { box-shadow: 6px 6px 0px #A855B5; }
.hard-rule { border: 0; border-top: 2px solid #F0EBF8; }

/* Marquee */
.marquee-wrapper { overflow: hidden; width: 100%; border-top: 1px solid rgba(139,127,160,0.2); border-bottom: 1px solid rgba(139,127,160,0.2); }
.marquee-track { display: flex; width: max-content; animation: marquee 32s linear infinite; }
.marquee-track:hover { animation-play-state: paused; }
.marquee-item { white-space: nowrap; padding: 0 2.5rem; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

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

/* Numbered section markers */
.section-number { font-family: 'Fraunces', serif; font-size: 4.5rem; font-weight: 700; color: rgba(168, 85, 181, 0.15); line-height: 1; letter-spacing: -0.05em; }

/* ─── Header ─────────────────────────────────────────────── */
header { background-color: #0D0B12; border-bottom: 1px solid rgba(139, 127, 160, 0.2); }
header a { text-decoration: none; color: #F0EBF8; transition: color 150ms ease; }
header a:hover { color: #A855B5; }
nav a { text-decoration: none; }

/* ─── Footer ─────────────────────────────────────────────── */
footer { background-color: #161320; border-top: 1px solid rgba(139, 127, 160, 0.2); }
footer a { text-decoration: none; color: #8B7FA0; transition: color 150ms ease; }
footer a:hover { color: #A855B5; }

/* ─── Article body ─────────────────────────────────────────── */
.article-body h2 { font-family: 'Fraunces', serif; font-size: 1.75rem; font-weight: 700; color: #F0EBF8; margin-top: 2.5rem; margin-bottom: 1rem; line-height: 1.2; }
.article-body h3 { font-family: 'Fraunces', serif; font-size: 1.375rem; font-weight: 700; color: #F0EBF8; margin-top: 2rem; margin-bottom: 0.75rem; }
.article-body p { font-size: 1.0625rem; line-height: 1.8; color: #c9bfdf; margin-bottom: 1.5rem; }
.article-body ul { list-style: none; margin-bottom: 1.5rem; padding-left: 0; }
.article-body ul li { padding: 0.4rem 0 0.4rem 1.25rem; position: relative; color: #c9bfdf; font-size: 1.0625rem; line-height: 1.7; }
.article-body ul li::before { content: '—'; position: absolute; left: 0; color: #A855B5; }
.article-body blockquote { border-left: 3px solid #A855B5; padding: 1rem 1.5rem; margin: 2rem 0; background-color: rgba(168,85,181,0.06); }
.article-body blockquote p { color: #F0EBF8; font-style: italic; font-family: 'Fraunces', serif; font-size: 1.2rem; margin-bottom: 0; }
.article-body a { color: #A855B5; text-decoration: underline; }
.article-body strong { color: #F0EBF8; font-weight: 700; }

/* ─── FAQ Accordion ─────────────────────────────────────── */
.accordion-item { border: 1px solid rgba(139, 127, 160, 0.2); margin-bottom: 0.5rem; }
.accordion-trigger { width: 100%; background: none; border: none; cursor: pointer; text-align: left; padding: 1.25rem 1.5rem; font-family: 'Manrope', sans-serif; font-size: 0.9375rem; font-weight: 500; color: #F0EBF8; display: flex; justify-content: space-between; align-items: center; }
.accordion-trigger:hover { background-color: rgba(168, 85, 181, 0.05); }
.accordion-trigger .icon { transition: transform 300ms ease; }
.accordion-trigger.open .icon { transform: rotate(45deg); }
.accordion-content { display: none; padding: 0 1.5rem 1.25rem; font-size: 0.9375rem; color: #8B7FA0; line-height: 1.7; }
.accordion-content.open { display: block; }

/* ─── Forms ─────────────────────────────────────────────── */
input, textarea, select { font-family: 'Manrope', sans-serif; font-size: 0.875rem; background-color: #0D0B12; color: #F0EBF8; border: 1px solid rgba(139,127,160,0.3); padding: 0.75rem 1rem; width: 100%; transition: border-color 150ms ease; }
input:focus, textarea:focus, select:focus { outline: none; border-color: #A855B5; }
input::placeholder, textarea::placeholder { color: #8B7FA0; opacity: 0.7; }
label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: #8B7FA0; display: block; margin-bottom: 0.5rem; }
button[type="submit"] { font-family: 'Manrope', sans-serif; cursor: pointer; }

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

/* ─── Stats strip ─────────────────────────────────────────── */
.stat-number { font-family: 'Fraunces', serif; font-size: 3rem; font-weight: 700; color: #A855B5; line-height: 1; }
.stat-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: #8B7FA0; margin-top: 0.5rem; }

/* ─── Author bio ─────────────────────────────────────────── */
.author-bio { border: 1px solid rgba(139,127,160,0.2); padding: 1.5rem 2rem; display: flex; gap: 1.5rem; align-items: flex-start; background-color: #161320; }
.author-avatar { width: 80px; height: 80px; object-fit: cover; flex-shrink: 0; border: 2px solid rgba(168,85,181,0.4); }

/* ─── Pull quote ─────────────────────────────────────────── */
.pull-quote { font-family: 'Fraunces', serif; font-size: 1.5rem; font-style: italic; color: #F0EBF8; line-height: 1.4; text-align: center; padding: 2rem 0; border-top: 2px solid #A855B5; border-bottom: 2px solid #A855B5; margin: 2.5rem 0; }

/* ─── Tag / chip ─────────────────────────────────────────── */
.tag { display: inline-block; font-size: 0.65rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; padding: 0.2rem 0.6rem; border: 1px solid rgba(168,85,181,0.5); color: #A855B5; }

/* ─── Responsive ─────────────────────────────────────────── */
@media (min-width: 640px) {
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sm\:flex-row { flex-direction: row; }
  .sm\:text-5xl { font-size: 3rem; line-height: 1.05; }
  .sm\:text-6xl { font-size: 3.75rem; line-height: 1; }
  .sm\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
}

@media (min-width: 768px) {
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .md\:col-span-1 { grid-column: span 1; }
  .md\:col-span-2 { grid-column: span 2; }
  .md\:col-span-3 { grid-column: span 3; }
  .md\:flex { display: flex; }
  .md\:hidden { display: none; }
  .md\:inline-block { display: inline-block; }
  .md\:flex-row { flex-direction: row; }
  .md\:items-center { align-items: center; }
  .md\:justify-between { justify-content: space-between; }
  .md\:justify-end { justify-content: flex-end; }
  .md\:mt-0 { margin-top: 0; }
  .md\:gap-4 { gap: 1rem; }
  .md\:gap-6 { gap: 1.5rem; }
  .md\:gap-8 { gap: 2rem; }
  .md\:gap-12 { gap: 3rem; }
  .md\:px-8 { padding-left: 2rem; padding-right: 2rem; }
  .md\:py-12 { padding-top: 3rem; padding-bottom: 3rem; }
  .md\:py-16 { padding-top: 4rem; padding-bottom: 4rem; }
  .md\:py-20 { padding-top: 5rem; padding-bottom: 5rem; }
  .md\:py-24 { padding-top: 6rem; padding-bottom: 6rem; }
  .md\:text-3xl { font-size: 1.875rem; line-height: 1.2; }
  .md\:text-4xl { font-size: 2.25rem; line-height: 1.1; }
  .md\:text-5xl { font-size: 3rem; line-height: 1.05; }
  .md\:text-6xl { font-size: 3.75rem; line-height: 1; }
  .md\:text-7xl { font-size: 4.5rem; line-height: 1; }
  .md\:aspect-\[21\/9\] { aspect-ratio: 21/9; }
  .md\:w-1\/2 { width: 50%; }
  .md\:w-2\/5 { width: 40%; }
  .md\:w-3\/5 { width: 60%; }
  .md\:flex-1 { flex: 1; }
  .md\:max-w-2xl { max-width: 42rem; }
  .md\:max-w-3xl { max-width: 48rem; }
}

@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\:text-4xl { font-size: 2.25rem; line-height: 1.1; }
  .lg\:text-5xl { font-size: 3rem; line-height: 1.05; }
  .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\:px-8 { padding-left: 2rem; padding-right: 2rem; }
  .lg\:py-20 { padding-top: 5rem; padding-bottom: 5rem; }
  .lg\:py-32 { padding-top: 8rem; padding-bottom: 8rem; }
  .lg\:gap-16 { gap: 4rem; }
  .lg\:flex-row { flex-direction: row; }
  .lg\:w-3\/5 { width: 60%; }
  .lg\:w-2\/5 { width: 40%; }
}

@media (min-width: 1280px) {
  .xl\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .xl\:text-8xl { font-size: 6rem; line-height: 1; }
  .xl\:text-9xl { font-size: 8rem; line-height: 1; }
}

/* ─── Arbitrary value classes ──────────────────────────────── */
.w-\[calc\(100\%-1\.5rem\)\] { width: calc(100% - 1.5rem); }
.max-w-\[1220px\] { max-width: 1220px; }
.text-\[14px\] { font-size: 14px; }
.text-\[13px\] { font-size: 13px; }
.text-\[11px\] { font-size: 11px; }
.text-\[0\.65rem\] { font-size: 0.65rem; }
.border-\[1px\] { border-width: 1px; }
.border-\[2px\] { border-width: 2px; }
.h-\[1px\] { height: 1px; }
.h-\[2px\] { height: 2px; }
.h-\[400px\] { height: 400px; }
.h-\[500px\] { height: 500px; }
.h-\[560px\] { height: 560px; }
.h-\[600px\] { height: 600px; }
.h-\[80px\] { height: 80px; }
.w-\[80px\] { width: 80px; }
.w-\[120px\] { width: 120px; }
.min-h-\[400px\] { min-height: 400px; }
.min-h-\[320px\] { min-height: 320px; }
.p-\[1rem_1\.25rem\] { padding: 1rem 1.25rem; }
.top-\[50\%\] { top: 50%; }
.left-\[50\%\] { left: 50%; }
.bg-\[rgba\(27\,38\,44\,0\.780\)\] { background-color: rgba(27,38,44,0.780); }
.line-height-\[1\] { line-height: 1; }
.flex-shrink-0 { flex-shrink: 0; }
.flex-1 { flex: 1; }
.self-start { align-self: flex-start; }
.pointer-events-none { pointer-events: none; }

/* ─── Specific utility for category tags ────────────────── */
.category-tag { font-size: 0.65rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; color: #A855B5; display: inline-block; margin-bottom: 0.75rem; }

/* ─── Meta strip ─────────────────────────────────────────── */
.meta-strip { font-size: 0.75rem; color: #8B7FA0; display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; }

/* ─── Key takeaways box ──────────────────────────────────── */
.takeaways-box { border: 1px solid rgba(168,85,181,0.3); padding: 1.5rem 2rem; background-color: rgba(168,85,181,0.05); margin: 2rem 0; }
.takeaways-box h4 { font-family: 'Fraunces', serif; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: #A855B5; margin-bottom: 1rem; }
.takeaways-box ul { list-style: none; padding: 0; }
.takeaways-box ul li { padding: 0.3rem 0 0.3rem 1.25rem; position: relative; color: #c9bfdf; font-size: 0.9375rem; }
.takeaways-box ul li::before { content: '→'; position: absolute; left: 0; color: #A855B5; }

/* ─── Related reading ─────────────────────────────────────── */
.related-card { border: 1px solid rgba(139,127,160,0.2); padding: 1.25rem; transition: border-color 150ms ease, box-shadow 150ms ease; text-decoration: none; display: block; }
.related-card:hover { border-color: rgba(168,85,181,0.5); box-shadow: 4px 4px 0px #A855B5; }

/* ─── Page hero (non-homepage) ───────────────────────────── */
.page-hero { padding: 5rem 0 4rem; border-bottom: 1px solid rgba(139,127,160,0.2); }

/* ─── Methodology steps ──────────────────────────────────── */
.method-step { display: flex; gap: 2rem; align-items: flex-start; padding: 2rem 0; border-bottom: 1px solid rgba(139,127,160,0.15); }
.method-step-num { font-family: 'Fraunces', serif; font-size: 3rem; font-weight: 700; color: rgba(168,85,181,0.25); line-height: 1; flex-shrink: 0; width: 4rem; }

/* ─── Contact details ─────────────────────────────────────── */
.contact-detail-item { display: flex; align-items: flex-start; gap: 1rem; padding: 1.25rem 0; border-bottom: 1px solid rgba(139,127,160,0.15); }
.contact-detail-icon { color: #A855B5; width: 1.25rem; flex-shrink: 0; padding-top: 2px; }

/* ─── Legal page styles ───────────────────────────────────── */
.legal-section h2 { font-family: 'Fraunces', serif; font-size: 1.375rem; font-weight: 700; color: #F0EBF8; margin-top: 2.5rem; margin-bottom: 0.75rem; }
.legal-section p { font-size: 0.9375rem; line-height: 1.8; color: #8B7FA0; margin-bottom: 1.25rem; }
.legal-section ul { padding-left: 1.25rem; margin-bottom: 1.25rem; }
.legal-section ul li { font-size: 0.9375rem; line-height: 1.7; color: #8B7FA0; margin-bottom: 0.4rem; }
.legal-section a { color: #A855B5; text-decoration: underline; }

/* ─── 404 page ─────────────────────────────────────────── */
.error-404-num { font-family: 'Fraunces', serif; font-size: 8rem; font-weight: 700; color: rgba(168,85,181,0.2); line-height: 1; letter-spacing: -0.05em; }
@media (min-width: 768px) { .error-404-num { font-size: 12rem; } }

/* ─── Swiper overrides ─────────────────────────────────── */
.swiper-pagination-bullet { background-color: #8B7FA0; opacity: 0.5; }
.swiper-pagination-bullet-active { background-color: #A855B5; opacity: 1; }
