/*
Theme Name: ElosWP
Author: ElosWP
Version: 1.4.9
*/
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=EB+Garamond:ital,wght@0,400;0,500;0,700;1,400&family=Poppins:wght@400;500;600;700&family=Caveat:wght@400;600&display=swap');

:root {
  --pozaro-bg: #F2EFE9;
  --pozaro-bg-alt: #E5E1D8;
  --pozaro-text: #191614;
  --pozaro-text-secondary: #5C544D;
  --pozaro-accent: #9C4A2B;
  --pozaro-accent-light: #F5E5DD;
  --pozaro-accent-dark: #6F341E;
  --pozaro-border: #CCC5B5;
  --pozaro-card-bg: #FBF9F4;
  --pozaro-radius: 0px;
  --pozaro-radius-lg: 0px;
  --pozaro-shadow: none;
  --pozaro-shadow-lg: none;
  --pozaro-font-display: 'DM Serif Display', serif;
  --pozaro-font-body: 'Poppins', sans-serif;
  --pozaro-font-ui: 'Poppins', sans-serif;
}

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

body {
  background: var(--pozaro-bg);
  color: var(--pozaro-text);
  font-family: var(--pozaro-font-body);
  font-size: 1.05rem;
  line-height: 1.7;
}

h1 { font-family: var(--pozaro-font-display); font-size: 3.2rem; line-height: 1.15; }
h2 { font-family: var(--pozaro-font-display); font-size: 2rem; line-height: 1.25; }
h3 { font-family: var(--pozaro-font-display); font-size: 1.35rem; line-height: 1.3; }

a { color: var(--pozaro-accent); text-decoration: none; }
a:hover { text-decoration: underline; }

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

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* Swiss Modular Grid */
.grid-12 { display: grid; grid-template-columns: repeat(12, 1fr); gap: 1.5rem; }

/* Section labels */
.section-label {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  font-family: var(--pozaro-font-ui);
  color: var(--pozaro-text-secondary);
  font-weight: 600;
}

/* Numeric section tracker */
.section-tracker {
  font-family: monospace;
  font-size: 0.75rem;
  color: var(--pozaro-text-secondary);
  letter-spacing: 0.1em;
}

/* Numbered step divider */
.section-number {
  font-family: var(--pozaro-font-display);
  font-size: 3rem;
  color: var(--pozaro-accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}

/* Navigation */
.site-nav {
  background: var(--pozaro-bg);
  border-bottom: 1px solid var(--pozaro-border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 64px;
}

.nav-left, .nav-right { display: flex; gap: 1.5rem; align-items: center; }
.nav-right { justify-content: flex-end; }

.nav-center { display: flex; align-items: center; justify-content: center; gap: 8px; }

.logo-mark {
  width: 14px;
  height: 14px;
  background: var(--pozaro-accent);
  flex-shrink: 0;
}

.logo {
  font-family: var(--pozaro-font-display);
  font-size: 1.4rem;
  color: var(--pozaro-text);
  font-weight: 400;
  white-space: nowrap;
}

.nav-link {
  font-family: var(--pozaro-font-ui);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--pozaro-text);
  font-weight: 500;
}

.burger-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 5px;
}

.burger-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--pozaro-text);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: var(--pozaro-bg);
  border-left: 1px solid var(--pozaro-border);
  z-index: 200;
  padding: 2rem;
  flex-direction: column;
  gap: 1rem;
  transition: right 0.3s ease;
}

.mobile-menu.open { right: 0; }

.mobile-menu .nav-link {
  display: block;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--pozaro-border);
  font-size: 1rem;
}

@media (max-width: 768px) {
  .burger-btn { display: flex; }
  .nav-left, .nav-right { display: none; }
  .nav-inner { grid-template-columns: auto 1fr auto; }
  .nav-center { justify-content: flex-start; }
  .mobile-menu { display: flex; }
}

/* Hero Side Channel Ornament */
.hero-side-channel {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateX(-100%) translateY(-50%) rotate(-90deg);
  transform-origin: right center;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pozaro-accent-dark);
  font-family: var(--pozaro-font-ui);
  white-space: nowrap;
  font-weight: 600;
}

/* Hero */
.hero {
  position: relative;
  padding: 5rem 0 4rem;
  border-bottom: 2px solid var(--pozaro-border);
  overflow: hidden;
}

.hero-kicker {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--pozaro-accent);
  font-family: var(--pozaro-font-ui);
  font-weight: 600;
  margin-bottom: 1rem;
  display: block;
}

.hero h1 {
  max-width: 820px;
  margin-bottom: 1rem;
  text-align: left;
}

.hero-byline {
  font-family: monospace;
  font-size: 0.85rem;
  color: var(--pozaro-text-secondary);
  text-align: right;
  margin-top: 1rem;
  letter-spacing: 0.05em;
}

/* Letter from editor layout */
.letter-body {
  max-width: 640px;
  margin: 0 auto;
  padding: 3rem 0;
}

.letter-standfirst {
  font-style: italic;
  font-size: 1.15rem;
  color: var(--pozaro-text-secondary);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.letter-signature {
  font-family: 'Caveat', cursive;
  font-size: 1.8rem;
  color: var(--pozaro-accent-dark);
  margin-top: 2rem;
}

.em-dash-divider {
  text-align: center;
  margin-block: 4rem;
  color: var(--pozaro-text-secondary);
  font-size: 1.2rem;
  letter-spacing: 0.3em;
}

.pull-quote-panel {
  background: var(--pozaro-accent);
  color: #fff;
  padding: 4rem 2rem;
  text-align: center;
  margin: 0 -1.5rem;
}

.pull-quote-panel blockquote {
  font-family: var(--pozaro-font-display);
  font-size: 1.8rem;
  font-style: italic;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.4;
}

.issue-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 3rem 0;
}

.issue-card {
  background: var(--pozaro-card-bg);
  border: 1px solid var(--pozaro-border);
  padding: 1.5rem;
}

.issue-card .kicker {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--pozaro-accent);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.observation-list {
  list-style: none;
  counter-reset: obs;
  margin: 2rem 0;
}

.observation-list li {
  counter-increment: obs;
  display: grid;
  grid-template-columns: 2rem 1fr;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid var(--pozaro-border);
  font-size: 1rem;
}

.observation-list li::before {
  content: counter(obs);
  font-family: monospace;
  font-size: 0.85rem;
  color: var(--pozaro-accent);
  font-weight: 700;
  padding-top: 0.1rem;
}

.mailroom-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
}

.mailroom-card {
  background: var(--pozaro-bg-alt);
  border: 1px solid var(--pozaro-border);
  padding: 1.5rem;
  font-style: italic;
}

.mailroom-card cite {
  display: block;
  font-style: normal;
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 1rem;
  color: var(--pozaro-text-secondary);
}

.masthead-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
}

.masthead-card {
  background: var(--pozaro-card-bg);
  border: 1px solid var(--pozaro-border);
  padding: 1.5rem;
  text-align: center;
}

.masthead-card h3 { margin-top: 1rem; font-size: 1rem; }
.masthead-card .role {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--pozaro-accent);
  margin-top: 0.25rem;
}

/* Two-column article layout */
.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
  align-items: start;
}

.article-main { max-width: 100%; }

.article-sidebar {
  position: sticky;
  top: 80px;
}

/* Sidebar blocks */
.sidebar-block {
  background: var(--pozaro-card-bg);
  border: 1px solid var(--pozaro-border);
  padding: 1.25rem;
  margin-bottom: 1.5rem;
}

.sidebar-block h4 {
  font-family: var(--pozaro-font-ui);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 700;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--pozaro-accent);
  color: var(--pozaro-text);
}

.sidebar-newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.sidebar-newsletter-form input {
  padding: 0.6rem 0.8rem;
  border: 1px solid var(--pozaro-border);
  background: var(--pozaro-bg);
  font-family: var(--pozaro-font-ui);
  font-size: 0.9rem;
  color: var(--pozaro-text);
  width: 100%;
}

.sidebar-newsletter-form input:focus { outline: 2px solid var(--pozaro-accent); }

.sidebar-latest-item, .sidebar-popular-item {
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--pozaro-border);
  font-size: 0.9rem;
}

.sidebar-latest-item:last-child, .sidebar-popular-item:last-child { border-bottom: none; }

.sidebar-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.sidebar-cat-tag {
  background: var(--pozaro-bg-alt);
  border: 1px solid var(--pozaro-border);
  padding: 0.25rem 0.6rem;
  font-size: 0.8rem;
  font-family: var(--pozaro-font-ui);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--pozaro-text-secondary);
}

/* Button */
.c-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.6rem;
  border-radius: var(--pozaro-radius);
  border: 2px solid transparent;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  min-height: 44px;
  min-width: 120px;
  box-sizing: border-box;
  white-space: nowrap;
  flex-shrink: 0;
  line-height: 1.2;
  font-family: var(--pozaro-font-ui);
  font-size: 0.9rem;
  text-decoration: none;
}

.c-btn-primary {
  background: var(--pozaro-accent);
  color: #fff;
  border-color: var(--pozaro-accent);
}

.c-btn-primary:hover {
  background: var(--pozaro-accent-dark);
  border-color: var(--pozaro-accent-dark);
  text-decoration: none;
  color: #fff;
}

.c-btn-outline {
  background: transparent;
  color: var(--pozaro-accent);
  border-color: var(--pozaro-accent);
}

.c-btn-outline:hover {
  background: var(--pozaro-accent);
  color: #fff;
  text-decoration: none;
}

.c-btn-ghost {
  background: transparent;
  color: var(--pozaro-text-secondary);
  border-color: var(--pozaro-border);
}

.c-btn-ghost:hover {
  background: var(--pozaro-bg-alt);
  text-decoration: none;
}

/* CTA Section */
.cta-section {
  background: var(--pozaro-accent-light);
  border-top: 2px solid var(--pozaro-border);
  border-bottom: 2px solid var(--pozaro-border);
  padding: 4rem 0;
  text-align: center;
}

.cta-section h2 { margin-bottom: 1rem; }
.cta-section p { margin-bottom: 2rem; color: var(--pozaro-text-secondary); max-width: 500px; margin-inline: auto; margin-bottom: 2rem; }

/* Footer */
.site-footer {
  background: var(--pozaro-accent-dark);
  color: #fff;
  padding: 3rem 0 1.5rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.footer-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 1.5rem;
}

.footer-card h4 {
  font-family: var(--pozaro-font-ui);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 700;
  margin-bottom: 1rem;
  color: rgba(255,255,255,0.6);
}

.footer-card p, .footer-card address {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  font-style: normal;
  line-height: 1.6;
}

.footer-card a {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  display: block;
  margin-bottom: 0.4rem;
}

.footer-card a:hover { color: #fff; text-decoration: underline; }

.footer-bottom {
  max-width: 1200px;
  margin: 1.5rem auto 0;
  padding: 1rem 1.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.15);
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}

/* Contact Bento Grid */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(160px, auto);
  gap: 1.25rem;
  margin: 3rem 0;
}

.bento-a { grid-column: 1 / 3; grid-row: 1 / 3; }
.bento-b { grid-column: 3 / 5; grid-row: 1 / 2; }
.bento-c { grid-column: 3 / 4; grid-row: 2 / 3; }
.bento-d { grid-column: 4 / 5; grid-row: 2 / 3; }
.bento-e { grid-column: 1 / 3; grid-row: 3 / 4; }
.bento-f { grid-column: 3 / 5; grid-row: 3 / 4; }
.bento-g { grid-column: 1 / 5; grid-row: 4 / 5; }

.bento-cell {
  background: var(--pozaro-card-bg);
  border: 1px solid var(--pozaro-border);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bento-cell h3 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--pozaro-text-secondary);
  margin-bottom: 0.75rem;
  font-family: var(--pozaro-font-ui);
  font-weight: 700;
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group { display: flex; flex-direction: column; gap: 0.4rem; }

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--pozaro-text-secondary);
  font-family: var(--pozaro-font-ui);
}

.form-group input, .form-group select, .form-group textarea {
  padding: 0.7rem 1rem;
  border: 1px solid var(--pozaro-border);
  background: var(--pozaro-bg);
  font-family: var(--pozaro-font-body);
  font-size: 0.95rem;
  color: var(--pozaro-text);
  width: 100%;
}

.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: 2px solid var(--pozaro-accent);
  outline-offset: -1px;
}

.form-group textarea { resize: vertical; min-height: 100px; }

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  cursor: pointer;
  line-height: 1.5;
}

.checkbox-label input[type="checkbox"] { margin-top: 0.2rem; flex-shrink: 0; width: auto; }

.map-iframe {
  width: 100%;
  height: 100%;
  min-height: 200px;
  border: none;
  display: block;
}

/* Hours table */
.hours-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.hours-table td { padding: 0.4rem 0; }
.hours-table td:first-child { font-weight: 600; width: 50%; }
.hours-table tr { border-bottom: 1px solid var(--pozaro-border); }

/* FAQ Accordion */
.faq-item { border-bottom: 1px solid var(--pozaro-border); }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  cursor: pointer;
  font-weight: 600;
  font-family: var(--pozaro-font-ui);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  color: var(--pozaro-text);
  font-size: 0.95rem;
}

.faq-answer {
  display: none;
  padding: 0 0 1rem;
  color: var(--pozaro-text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-answer.open { display: block; }
.faq-icon { font-size: 1.2rem; color: var(--pozaro-accent); flex-shrink: 0; }

/* About Split Screen */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

.about-left {
  position: sticky;
  top: 2rem;
  align-self: start;
}

.about-pull-quote {
  border-left: 4px solid var(--pozaro-accent);
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  font-family: var(--pozaro-font-display);
  font-size: 1.2rem;
  color: var(--pozaro-accent-dark);
  line-height: 1.5;
}

.portrait-card {
  background: var(--pozaro-card-bg);
  border: 1px solid var(--pozaro-border);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  align-items: start;
}

.portrait-initials {
  width: 60px;
  height: 60px;
  background: var(--pozaro-accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--pozaro-font-display);
  font-size: 1.4rem;
  flex-shrink: 0;
}

.portrait-info h3 { font-size: 1rem; margin-bottom: 0.2rem; }
.portrait-role {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--pozaro-accent);
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.portrait-bio { font-size: 0.9rem; color: var(--pozaro-text-secondary); line-height: 1.6; }
.portrait-email { font-size: 0.85rem; color: var(--pozaro-accent); margin-top: 0.5rem; display: inline-block; }

.how-we-work {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

.steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.step-item {
  padding: 1.5rem;
  border-top: 3px solid var(--pozaro-accent);
}

.step-num {
  font-family: monospace;
  font-size: 2rem;
  color: var(--pozaro-accent);
  font-weight: 700;
  margin-bottom: 0.5rem;
  display: block;
}

.address-block {
  background: var(--pozaro-card-bg);
  border: 1px solid var(--pozaro-border);
  padding: 2rem;
  margin: 2rem 0;
  max-width: 1200px;
  margin-inline: auto;
  margin-block: 0;
  padding-inline: 1.5rem;
}

/* Success timeline */
.success-hero {
  padding: 5rem 0 3rem;
  border-bottom: 1px solid var(--pozaro-border);
  max-width: 1200px;
  margin: 0 auto;
  padding-inline: 1.5rem;
}

.timeline-section {
  max-width: 1200px;
  margin: 4rem auto;
  padding: 0 1.5rem;
}

.timeline-row {
  display: flex;
  justify-content: space-between;
  position: relative;
}

.timeline-row::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--pozaro-border);
}

.timeline-station {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  position: relative;
  z-index: 1;
}

.station-circle {
  width: 56px;
  height: 56px;
  border: 2px solid var(--pozaro-accent);
  background: var(--pozaro-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.station-circle.active {
  background: var(--pozaro-accent);
  color: #fff;
}

.station-label { font-weight: 600; font-size: 0.9rem; }
.station-time { font-size: 0.8rem; color: var(--pozaro-text-secondary); margin-top: 0.3rem; }

/* Post academic layout */
.post-hero {
  border-bottom: 1px solid var(--pozaro-border);
  padding: 4rem 0 3rem;
  max-width: 1200px;
  margin: 0 auto;
  padding-inline: 1.5rem;
}

.post-abstract {
  background: var(--pozaro-bg-alt);
  padding: 1.5rem;
  border-left: 4px solid var(--pozaro-accent);
  font-style: italic;
  margin: 2rem 0;
  max-width: 680px;
}

.post-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
  align-items: start;
}

.post-main { max-width: 680px; }

.post-main h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.post-main p { margin-bottom: 1.2rem; }

sup a {
  font-size: 0.7em;
  color: var(--pozaro-accent);
  text-decoration: none;
  font-weight: 600;
}

sup a:hover { text-decoration: underline; }

.post-figure {
  margin: 2.5rem 0;
  border: 1px solid var(--pozaro-border);
}

.post-figure img { width: 100%; }

.post-figure figcaption {
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
  color: var(--pozaro-text-secondary);
  border-top: 1px solid var(--pozaro-border);
  font-style: italic;
  background: var(--pozaro-bg-alt);
}

.post-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: 0.95rem;
}

.post-table th, .post-table td {
  border: 1px solid var(--pozaro-border);
  padding: 0.75rem 1rem;
  text-align: left;
}

.post-table th {
  background: var(--pozaro-bg-alt);
  font-weight: 700;
  font-family: var(--pozaro-font-ui);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.post-pull-quote {
  padding: 1rem 1.5rem;
  border-left: 3px solid var(--pozaro-border);
  margin: 2rem 0;
  font-size: 1rem;
  color: var(--pozaro-text-secondary);
}

.references-section { margin-top: 3rem; padding-top: 2rem; border-top: 2px solid var(--pozaro-border); }
.references-section ol { padding-left: 2rem; }
.references-section li { margin-bottom: 0.6rem; font-size: 0.9rem; color: var(--pozaro-text-secondary); }

.author-bio {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--pozaro-border);
  background: var(--pozaro-card-bg);
  padding: 1.5rem;
}

.author-bio h4 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--pozaro-accent);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.related-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
}

.related-card {
  background: var(--pozaro-card-bg);
  border: 1px solid var(--pozaro-border);
  padding: 1.25rem;
}

.related-card .kicker {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--pozaro-accent);
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.related-card h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.related-card .meta { font-size: 0.8rem; color: var(--pozaro-text-secondary); }

/* 404 layout */
.error-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
  align-items: start;
}

.try-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 2rem 0;
}

.try-card {
  background: var(--pozaro-card-bg);
  border: 1px solid var(--pozaro-border);
  padding: 1.25rem;
}

.try-card .kicker { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--pozaro-accent); font-weight: 600; margin-bottom: 0.4rem; }
.try-card h3 { font-size: 0.95rem; }
.try-card .meta { font-size: 0.8rem; color: var(--pozaro-text-secondary); margin-top: 0.3rem; }

/* Policy / Legal pages */
.legal-layout {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 1.5rem 5rem;
}

.legal-layout h1 { font-size: 2.5rem; margin-bottom: 1rem; }
.legal-layout h2 { font-size: 1.35rem; margin-top: 2.5rem; margin-bottom: 0.75rem; }
.legal-layout p { margin-bottom: 1rem; }
.legal-layout ul, .legal-layout ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.legal-layout li { margin-bottom: 0.4rem; }

.legal-updated {
  font-size: 0.85rem;
  color: var(--pozaro-text-secondary);
  margin-bottom: 2rem;
  font-family: var(--pozaro-font-ui);
}

/* Cookie consent banner */
#cc-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--pozaro-text);
  color: #fff;
  padding: 1.25rem 1.5rem;
  z-index: 9999;
  display: none;
}

#cc-consent.visible { display: block; }

.cc-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cc-text { font-size: 0.9rem; line-height: 1.5; flex: 1; min-width: 200px; }
.cc-text a { color: var(--pozaro-accent-light); }

.cc-btns { display: flex; gap: 0.75rem; flex-wrap: wrap; align-items: center; }

#cc-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
}

#cc-modal.visible { display: flex; }

.cc-modal-box {
  background: var(--pozaro-bg);
  color: var(--pozaro-text);
  max-width: 500px;
  width: 90%;
  padding: 2rem;
  max-height: 80vh;
  overflow-y: auto;
}

.cc-modal-box h3 {
  font-family: var(--pozaro-font-display);
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
}

.cc-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--pozaro-border);
}

.cc-toggle-label { font-weight: 600; font-size: 0.95rem; }
.cc-toggle-desc { font-size: 0.8rem; color: var(--pozaro-text-secondary); margin-top: 0.2rem; }

.toggle-switch {
  position: relative;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}

.toggle-switch input { opacity: 0; width: 0; height: 0; }

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--pozaro-border);
  transition: 0.2s;
}

.toggle-slider::before {
  content: '';
  position: absolute;
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background: #fff;
  transition: 0.2s;
}

.toggle-switch input:checked + .toggle-slider { background: var(--pozaro-accent); }
.toggle-switch input:checked + .toggle-slider::before { transform: translateX(20px); }

.cc-modal-footer { margin-top: 1.5rem; display: flex; gap: 0.75rem; justify-content: flex-end; }

/* Section padding rhythm */
.section-s1 { padding-block: 3rem; }
.section-s2 { padding-block: 6rem; }
.section-s3 { padding-block: 4rem; }
.section-s4 { padding-block: 8rem; }
.section-s5 { padding-block: 5rem; }

/* Responsive */
@media (max-width: 900px) {
  .article-layout, .post-layout, .error-layout { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }
  .issue-grid, .mailroom-grid, .masthead-grid, .related-cards { grid-template-columns: 1fr; }
  .about-split { grid-template-columns: 1fr; }
  .about-left { position: static; }
  .bento-grid {
    grid-template-columns: 1fr;
  }
  .bento-a, .bento-b, .bento-c, .bento-d, .bento-e, .bento-f, .bento-g {
    grid-column: auto;
    grid-row: auto;
  }
  .footer-inner { grid-template-columns: 1fr; }
  .timeline-row { flex-direction: column; gap: 2rem; }
  .timeline-row::before { display: none; }
  .steps-row { grid-template-columns: 1fr; }
  .try-grid { grid-template-columns: 1fr; }
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.6rem; }
}

@media (max-width: 600px) {
  .masthead-grid, .related-cards { grid-template-columns: 1fr; }
  .cc-inner { flex-direction: column; align-items: flex-start; }
  .pull-quote-panel blockquote { font-size: 1.3rem; }
}.c-table{display:grid}.c-table__row{display:grid;grid-template-columns:repeat(3,1fr);border-bottom:1px solid var(--pozaro-border)}.c-table__cell{padding:0.75rem 1rem}.c-table__cell--head{font-weight:700;background:var(--pozaro-bg-alt)}