/* MARENA REVIEW — css/style.css */
/* =============================================================
   Marena Press — css/style.css
   Prebuilt Tailwind v4-style utility sheet
   Design: Documentary/Archive · Warm Cream · Cobalt-Navy accent
   Fonts: Fraunces (display) + Manrope (body)
   ============================================================= */

/* 1. @theme tokens */
:root {
  --color-bg-primary:    #F5F0EB;
  --color-bg-secondary:  #EDE7E0;
  --color-ink-primary:   #1C1412;
  --color-ink-muted:     #7A6F6A;
  --color-accent:        #2B4C8C;
  --font-display:        'Fraunces', Georgia, serif;
  --font-body:           'Manrope', system-ui, sans-serif;
  --radius-sm:           0.25rem;
  --radius-md:           0.5rem;
  --radius-lg:           1rem;
  --shadow-sm:           0 1px 3px rgba(28,20,18,0.08);
  --shadow-md:           0 4px 16px rgba(28,20,18,0.10);
  --shadow-lg:           0 12px 40px rgba(28,20,18,0.12);
}

/* 2. Base reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); font-weight: 400; background-color: var(--color-bg-primary); color: var(--color-ink-primary); line-height: 1.6; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
img, video { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; }
ul, ol { list-style: none; }
table { border-collapse: collapse; }

/* 3. Layout utilities */
.container { width: 100%; max-width: 1280px; margin-inline: auto; padding-inline: 1rem; }
@media (min-width: 640px)  { .container { padding-inline: 1.5rem; } }
@media (min-width: 1024px) { .container { padding-inline: 2rem; } }

.flex          { display: flex; }
.flex-col      { display: flex; flex-direction: column; }
.inline-flex   { display: inline-flex; }
.grid          { display: grid; }
.block         { display: block; }
.inline-block  { display: inline-block; }
.hidden        { display: none; }

.items-start   { align-items: flex-start; }
.items-center  { align-items: center; }
.items-end     { align-items: flex-end; }
.items-stretch { align-items: stretch; }
.justify-start  { justify-content: flex-start; }
.justify-center { justify-content: center; }
.justify-end    { justify-content: flex-end; }
.justify-between{ justify-content: space-between; }
.flex-wrap     { flex-wrap: wrap; }
.flex-1        { flex: 1 1 0%; }
.flex-shrink-0 { flex-shrink: 0; }
.flex-grow     { flex-grow: 1; }

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

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

@media (min-width: 640px) {
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sm\:flex-row    { flex-direction: row; }
  .sm\:hidden      { display: none; }
  .sm\:block       { display: block; }
}
@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\:flex        { display: flex; }
  .md\:hidden      { display: none; }
  .md\:block       { display: block; }
  .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\: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\:gap-8       { gap: 2rem; }
  .md\:gap-12      { gap: 3rem; }
  .md\:mt-0        { margin-top: 0; }
  .md\:px-8        { padding-inline: 2rem; }
  .md\:py-16       { padding-block: 4rem; }
  .md\:text-left   { text-align: left; }
  .md\:text-5xl    { font-size: 3rem; }
  .md\:aspect-\[21\/9\] { aspect-ratio: 21/9; }
}
@media (min-width: 1024px) {
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .lg\:col-span-2  { grid-column: span 2 / span 2; }
  .lg\:flex-row    { flex-direction: row; }
  .lg\:text-6xl    { font-size: 3.75rem; }
  .lg\:text-7xl    { font-size: 4.5rem; }
  .lg\:px-0        { padding-inline: 0; }
}

/* Position */
.relative  { position: relative; }
.absolute  { position: absolute; }
.fixed     { position: fixed; }
.sticky    { position: sticky; }
.inset-0   { inset: 0; }
.top-0     { top: 0; }
.bottom-0  { bottom: 0; }
.left-0    { left: 0; }
.right-0   { right: 0; }
.bottom-4  { bottom: 1rem; }
.z-10      { z-index: 10; }
.z-20      { z-index: 20; }
.z-40      { z-index: 40; }
.z-50      { z-index: 50; }

/* Overflow */
.overflow-hidden  { overflow: hidden; }
.overflow-auto    { overflow: auto; }
.overflow-x-auto  { overflow-x: auto; }

/* 4. Spacing */
.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; }
.px-2 { padding-inline: 0.5rem; }
.px-3 { padding-inline: 0.75rem; }
.px-4 { padding-inline: 1rem; }
.px-5 { padding-inline: 1.25rem; }
.px-6 { padding-inline: 1.5rem; }
.px-8 { padding-inline: 2rem; }
.py-2 { padding-block: 0.5rem; }
.py-3 { padding-block: 0.75rem; }
.py-4 { padding-block: 1rem; }
.py-5 { padding-block: 1.25rem; }
.py-6 { padding-block: 1.5rem; }
.py-8 { padding-block: 2rem; }
.py-10{ padding-block: 2.5rem; }
.py-12{ padding-block: 3rem; }
.py-16{ padding-block: 4rem; }
.py-20{ padding-block: 5rem; }
.py-24{ padding-block: 6rem; }
.pt-2 { padding-top: 0.5rem; }
.pt-4 { padding-top: 1rem; }
.pt-6 { padding-top: 1.5rem; }
.pt-8 { padding-top: 2rem; }
.pb-2 { padding-bottom: 0.5rem; }
.pb-4 { padding-bottom: 1rem; }
.pb-6 { padding-bottom: 1.5rem; }
.pb-8 { padding-bottom: 2rem; }
.pl-4 { padding-left: 1rem; }
.pl-6 { padding-left: 1.5rem; }

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

/* 5. Sizing */
.w-full    { width: 100%; }
.w-auto    { width: auto; }
.w-1       { width: 0.25rem; }
.w-2       { width: 0.5rem; }
.w-4       { width: 1rem; }
.w-6       { width: 1.5rem; }
.w-8       { width: 2rem; }
.w-10      { width: 2.5rem; }
.w-12      { width: 3rem; }
.w-16      { width: 4rem; }
.w-24      { width: 6rem; }
.w-32      { width: 8rem; }
.w-48      { width: 12rem; }
.w-64      { width: 16rem; }
.w-\[calc\(100\%-1\.5rem\)\] { width: calc(100% - 1.5rem); }
.h-full    { height: 100%; }
.h-auto    { height: auto; }
.h-1       { height: 0.25rem; }
.h-2       { height: 0.5rem; }
.h-4       { height: 1rem; }
.h-6       { height: 1.5rem; }
.h-8       { height: 2rem; }
.h-10      { height: 2.5rem; }
.h-12      { height: 3rem; }
.h-16      { height: 4rem; }
.h-24      { height: 6rem; }
.h-px      { height: 1px; }
.min-h-screen { min-height: 100vh; }
.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; }

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

/* 6. Typography */
.font-display { font-family: var(--font-display); }
.font-body    { font-family: var(--font-body); }
.font-mono    { font-family: 'Space Mono', 'Courier New', monospace; }

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

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

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

.tracking-tighter { letter-spacing: -0.05em; }
.tracking-tight   { letter-spacing: -0.025em; }
.tracking-normal  { letter-spacing: 0; }
.tracking-wide    { letter-spacing: 0.025em; }
.tracking-wider   { letter-spacing: 0.05em; }
.tracking-widest  { letter-spacing: 0.15em; }
.tracking-\[0\.18em\] { letter-spacing: 0.18em; }
.tracking-\[0\.04em\] { letter-spacing: 0.04em; }

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

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

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

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

/* 7. Colors — design tokens */
.bg-\[var\(--color-bg-primary\)\]   { background-color: var(--color-bg-primary); }
.bg-\[var\(--color-bg-secondary\)\] { background-color: var(--color-bg-secondary); }
.bg-\[var\(--color-accent\)\]       { background-color: var(--color-accent); }
.text-\[var\(--color-ink-primary\)\] { color: var(--color-ink-primary); }
.text-\[var\(--color-ink-muted\)\]   { color: var(--color-ink-muted); }
.text-\[var\(--color-accent\)\]      { color: var(--color-accent); }
.border-\[var\(--color-ink-muted\)\]\/20 { border-color: rgba(122,111,106,0.2); }

/* Hardcoded palette classes used in markup */
.bg-\[\#F5F0EB\]  { background-color: #F5F0EB; }
.bg-\[\#EDE7E0\]  { background-color: #EDE7E0; }
.bg-\[\#1C1412\]  { background-color: #1C1412; }
.bg-\[\#2B4C8C\]  { background-color: #2B4C8C; }
.bg-\[\#7A6F6A\]  { background-color: #7A6F6A; }
.text-\[\#F5F0EB\]{ color: #F5F0EB; }
.text-\[\#EDE7E0\]{ color: #EDE7E0; }
.text-\[\#1C1412\]{ color: #1C1412; }
.text-\[\#2B4C8C\]{ color: #2B4C8C; }
.text-\[\#7A6F6A\]{ color: #7A6F6A; }
.text-\[\#3A2F2A\]{ color: #3A2F2A; }
.text-\[\#D8E2DC\]{ color: #D8E2DC; }
.border-\[\#2B4C8C\] { border-color: #2B4C8C; }
.border-\[\#7A6F6A\]\/20 { border-color: rgba(122,111,106,0.2); }
.border-\[\#7A6F6A\]\/30 { border-color: rgba(122,111,106,0.3); }

/* 8. Borders & Radius */
.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-3 { border-left-width: 3px; border-left-style: solid; }
.border-\[\#EDE7E0\]     { border-color: #EDE7E0; }
.border-\[rgba\(122\,111\,106\,0\.2\)\] { border-color: rgba(122,111,106,0.2); }
.border-\[rgba\(255\,255\,255\,0\.18\)\] { border-color: rgba(255,255,255,0.18); }

.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; }
.rounded-none { border-radius: 0; }

/* 9. Effects */
.shadow     { box-shadow: var(--shadow-sm); }
.shadow-md  { box-shadow: var(--shadow-md); }
.shadow-lg  { box-shadow: var(--shadow-lg); }
.shadow-none{ box-shadow: none; }

.opacity-0   { opacity: 0; }
.opacity-50  { opacity: 0.5; }
.opacity-75  { opacity: 0.75; }
.opacity-90  { opacity: 0.9; }
.opacity-100 { opacity: 1; }

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

/* 10. Transforms & Transitions */
.transition         { transition-property: color, background-color, border-color, opacity, box-shadow, transform; transition-duration: 150ms; transition-timing-function: ease; }
.transition-all     { transition: all 150ms ease; }
.transition-colors  { transition: color, background-color, border-color 150ms ease; }
.transition-opacity { transition: opacity 150ms ease; }
.transition-transform { transition: transform 300ms 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; }

.scale-105  { transform: scale(1.05); }
.rotate-90  { transform: rotate(90deg); }
.-rotate-90 { transform: rotate(-90deg); }
.translate-x-\[-50\%\] { transform: translateX(-50%); }
.-translate-x-1\/2    { transform: translateX(-50%); }

.group:hover .group-hover\:scale-105 { transform: scale(1.05); }

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

/* 12. Interactivity */
.cursor-pointer { cursor: pointer; }
.cursor-default { cursor: default; }
.select-none    { user-select: none; }
.pointer-events-none { pointer-events: none; }

.focus\:outline-none:focus { outline: none; }
.focus\:border-\[\#2B4C8C\]:focus { border-color: #2B4C8C; }
.focus\:ring-2:focus { box-shadow: 0 0 0 2px rgba(43,76,140,0.4); }

.hover\:opacity-90:hover   { opacity: 0.9; }
.hover\:text-\[\#2B4C8C\]:hover { color: #2B4C8C; }
.hover\:underline:hover    { text-decoration: underline; }
.hover\:scale-105:hover    { transform: scale(1.05); }
.hover\:bg-\[\#EDE7E0\]:hover { background-color: #EDE7E0; }

/* 13. Accessibility */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border-width: 0; }
.not-sr-only { position: static; width: auto; height: auto; padding: 0; margin: 0; overflow: visible; clip: auto; white-space: normal; }

/* 14. Dividers */
.divide-y > * + *   { border-top-width: 1px; border-top-style: solid; }
.divide-\[\#EDE7E0\] > * + * { border-color: #EDE7E0; }

/* 15. Component helpers — article, cards, archival metadata */
.article-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--color-ink-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.article-meta span.sep::before { content: '·'; margin-inline: 0.25rem; }

.eyebrow-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-ink-muted);
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.eyebrow-label::before {
  content: '';
  display: inline-block;
  width: 1.75rem;
  height: 1px;
  background-color: var(--color-ink-muted);
  flex-shrink: 0;
}

.category-tag {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-accent);
  font-weight: 500;
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--color-ink-primary);
}
.stat-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-ink-muted);
  margin-top: 0.4rem;
}

.pull-quote {
  border-left: 3px solid var(--color-accent);
  padding: 1.25rem 1.5rem;
  margin-block: 2rem;
  background-color: var(--color-bg-secondary);
}
.pull-quote p {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.55;
  color: var(--color-ink-primary);
}
.pull-quote cite {
  display: block;
  margin-top: 0.75rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-ink-muted);
  font-style: normal;
}

.key-takeaways {
  background-color: var(--color-bg-secondary);
  padding: 1.5rem 2rem;
  border-top: 2px solid var(--color-ink-primary);
}
.key-takeaways h3 {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-ink-muted);
  margin-bottom: 1rem;
}
.key-takeaways ul { padding-left: 1.25rem; list-style: disc; }
.key-takeaways li {
  font-size: 0.875rem;
  color: var(--color-ink-primary);
  line-height: 1.7;
  margin-bottom: 0.35rem;
}

.accordion-item { border-bottom: 1px solid rgba(122,111,106,0.2); }
.accordion-trigger {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-ink-primary);
  text-align: left;
  cursor: pointer;
  letter-spacing: -0.01em;
}
.accordion-trigger i { font-size: 0.8rem; color: var(--color-ink-muted); transition: transform 200ms ease; }
.accordion-content { font-size: 0.875rem; color: #3A2F2A; line-height: 1.8; padding-bottom: 1.25rem; }

.marquee-outer { width: 100%; overflow: hidden; border-top: 1px solid rgba(122,111,106,0.2); border-bottom: 1px solid rgba(122,111,106,0.2); padding-block: 0.75rem; background-color: var(--color-bg-secondary); }
.marquee-track { display: flex; gap: 3rem; animation: marquee-scroll 28s linear infinite; white-space: nowrap; width: max-content; }
.marquee-track span { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.16em; color: var(--color-ink-muted); flex-shrink: 0; }
.marquee-track .sep { color: var(--color-accent); }
@keyframes marquee-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.section-number { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.18em; color: var(--color-ink-muted); }

.methodology-step { display: flex; gap: 1.5rem; padding-block: 2rem; border-bottom: 1px solid rgba(122,111,106,0.2); }
.methodology-step:last-child { border-bottom: none; }
.step-index { font-family: var(--font-display); font-size: 2.5rem; font-weight: 700; color: rgba(122,111,106,0.25); line-height: 1; min-width: 3rem; }
.step-content h3 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; color: var(--color-ink-primary); margin-bottom: 0.6rem; letter-spacing: -0.015em; }
.step-content p { font-size: 0.875rem; color: #3A2F2A; line-height: 1.8; }

.author-bio-box { display: flex; gap: 1.25rem; align-items: flex-start; background-color: var(--color-bg-secondary); padding: 1.5rem; border-top: 2px solid var(--color-ink-primary); }
.author-bio-box img { width: 4rem; height: 4rem; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.author-bio-box .name { font-family: var(--font-display); font-size: 0.95rem; font-weight: 700; color: var(--color-ink-primary); margin-bottom: 0.35rem; }
.author-bio-box .bio  { font-size: 0.825rem; color: #3A2F2A; line-height: 1.7; }
.author-bio-box .more { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--color-accent); margin-top: 0.5rem; display: inline-block; }
.author-bio-box .more:hover { text-decoration: underline; }

.contact-form-field { display: flex; flex-direction: column; gap: 0.5rem; }
.contact-form-field label { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.15em; color: var(--color-ink-muted); }
.contact-form-field input,
.contact-form-field textarea,
.contact-form-field select {
  width: 100%;
  background-color: var(--color-bg-primary);
  border: 1px solid rgba(122,111,106,0.3);
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-family: var(--font-body);
  color: var(--color-ink-primary);
  outline: none;
  transition: border-color 150ms ease;
  border-radius: 0;
  -webkit-appearance: none;
}
.contact-form-field input:focus,
.contact-form-field textarea:focus,
.contact-form-field select:focus { border-color: var(--color-accent); }

.submit-btn {
  background-color: var(--color-accent);
  color: #ffffff;
  border: none;
  padding: 0.875rem 2.25rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: opacity 150ms ease;
}
.submit-btn:hover { opacity: 0.88; }

/* 16. Responsive display helpers */
@media (max-width: 767px) {
  .hide-mobile { display: none; }
}
@media (min-width: 768px) {
  .hide-desktop { display: none; }
}
