/* ChuaVoice — Kopi Broadcast */
@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,600;12..96,700&family=DM+Mono:wght@500&family=Hanken+Grotesk:wght@400;600&display=swap');

:root {
  --charcoal: #2C2A32;
  --bone: #FAFAF8;
  --white: #FDFCFA;
  --surface-soft: #F5F4F1;
  --surface-muted: #F0EEEA;
  --orange: #C7502A;
  --teal: #4A6B67;
  --clay: #B8845C;
  --grey: #6F6C66;
  --measure: min(68ch, 100%);
  --section-pad: clamp(4rem, 7vw, 6rem);
  --header-h: 4.1rem;
  --shadow-card: 0 4px 18px rgba(44, 42, 50, 0.06);
  --shadow-lift: 0 8px 28px rgba(44, 42, 50, 0.08);
  --hairline: 1px solid rgba(44, 42, 50, 0.08);
  --font-display: 'Bricolage Grotesque', system-ui, sans-serif;
  --font-body: 'Hanken Grotesk', system-ui, sans-serif;
  --font-mono: 'DM Mono', ui-monospace, monospace;
  --radius: 6px;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: auto;
  font-size: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(1.1rem, 1.02rem + 0.2vw, 1.2rem);
  line-height: 1.7;
  color: var(--charcoal);
  background: var(--white);
  min-height: 100vh;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.surface-bone,
.surface-cream {
  background: transparent;
  color: var(--charcoal);
}

/* Former accent blocks — now soft, eye-friendly whites */
.surface-charcoal:not(.site-footer):not(.cookie-banner),
.surface-ink:not(.site-footer):not(.cookie-banner),
.surface-teal:not(.site-footer):not(.cookie-banner),
.surface-orange:not(.site-footer):not(.cookie-banner) {
  background: var(--surface-soft);
  color: var(--charcoal);
}

.site-footer.surface-charcoal,
.site-footer.surface-ink {
  background: var(--surface-muted);
  color: var(--charcoal);
}

.section + .section,
.more-strip {
  border-top: var(--hairline);
}

main > .section:first-child,
main > .hero-home:first-child,
.article-wrap .section:first-child {
  border-top: none;
}

.surface-bone a,
.surface-cream a,
.surface-charcoal a,
.surface-ink a,
.surface-teal a,
.surface-orange a {
  color: var(--teal);
}

.surface-bone a:hover,
.surface-cream a:hover,
.surface-charcoal a:hover,
.surface-ink a:hover,
.surface-teal a:hover,
.surface-orange a:hover {
  color: var(--orange);
}

a {
  color: var(--teal);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover { color: var(--orange); }

.mark-key,
.signal-word,
.hero-tagline .highlight {
  background: linear-gradient(transparent 62%, rgba(199, 80, 42, 0.18) 62%, rgba(199, 80, 42, 0.18) 92%, transparent 92%);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  padding-inline: 0.06em;
}

.scroll-line {
  display: none;
}

.eyebrow,
.dateline,
.card-meta,
.datestamp {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow,
.card-meta {
  color: var(--orange);
  margin: 0 0 0.85rem;
}

.post-card .card-meta,
.journal-card .card-meta,
.card .card-meta,
.featured-card .card-meta {
  color: rgba(111, 108, 102, 0.88);
  font-weight: 500;
}

.dateline,
.datestamp {
  color: var(--grey);
  margin: 0 0 1.25rem;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.025em;
  margin: 0 0 0.95rem;
}

h1 { font-size: clamp(2.2rem, 4.5vw, 3.85rem); }
h2 { font-size: clamp(1.55rem, 2.6vw, 2.2rem); font-weight: 600; }
h3 { font-size: clamp(1.15rem, 1.8vw, 1.35rem); font-weight: 600; }

p { margin: 0 0 1.15rem; }
p:last-child { margin-bottom: 0; }

.lead,
.welcome {
  font-size: 1.05em;
  max-width: var(--measure);
  color: var(--grey);
}

.prose { max-width: var(--measure); }

.article-header .content-wrap,
.article-body .content-wrap,
.prose {
  max-width: var(--measure);
}

.prose p,
.article-body p { margin-bottom: 1.15rem; }

.hairline {
  border: none;
  border-top: var(--hairline);
  margin: 2.25rem 0;
}

.section {
  padding: var(--section-pad) clamp(1.25rem, 4vw, 2rem);
  position: relative;
}

.section-wide,
.content-wrap,
.page-wrap,
.article-wrap {
  max-width: 1120px;
  margin-inline: auto;
}

.page-wrap,
.article-wrap,
.content-wrap {
  padding-inline: clamp(1.25rem, 4vw, 2rem);
}

.section .content-wrap { padding-inline: 0; }

.section-head { margin-bottom: clamp(1.75rem, 3.5vw, 2.5rem); }
.section-head p {
  max-width: var(--measure);
  color: var(--grey);
}

.surface-orange .section-head p,
.surface-orange .lead,
.surface-orange .welcome,
.surface-charcoal .section-head p,
.surface-teal .section-head p,
.surface-teal .more-strip p {
  color: var(--grey);
}

.surface-orange .eyebrow,
.surface-orange .section-head .eyebrow,
.surface-charcoal .eyebrow,
.surface-teal .eyebrow,
.surface-teal .more-strip .eyebrow {
  color: var(--orange);
  border-left-color: rgba(199, 80, 42, 0.45);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: var(--hairline);
  background: rgba(253, 252, 250, 0.96);
  min-height: var(--header-h);
}

.site-header.surface-bone,
.site-header.surface-cream {
  background: rgba(253, 252, 250, 0.96);
}

.site-header.surface-charcoal,
.site-header.surface-ink {
  background: rgba(253, 252, 250, 0.96);
  border-bottom-color: rgba(44, 42, 50, 0.08);
}

.header-inner {
  max-width: 1120px;
  margin-inline: auto;
  padding: 0.95rem clamp(1.25rem, 4vw, 2rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  min-height: var(--header-h);
}

.site-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  color: inherit;
  text-decoration: none;
  letter-spacing: -0.02em;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(0.85rem, 2vw, 1.35rem);
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav a {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: inherit;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current='page'] {
  color: var(--orange);
}

/* Buttons — white text on orange */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.78rem 1.45rem;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  border-radius: var(--radius);
}

.btn-primary,
.btn.btn-primary {
  background: var(--orange);
  color: #fff !important;
  border-color: var(--orange);
}

.btn-primary:hover,
.btn.btn-primary:hover {
  background: #d14f22;
  border-color: #d14f22;
  color: #fff !important;
}

.surface-orange .btn-primary,
.surface-orange .btn.btn-primary {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff !important;
}

.surface-orange .btn-primary:hover,
.surface-orange .btn.btn-primary:hover {
  background: #d14f22;
  border-color: #d14f22;
  color: #fff !important;
}

.btn-secondary,
.btn.btn-secondary {
  background: transparent;
  color: inherit;
  border-color: rgba(33, 31, 38, 0.28);
}

.btn-secondary:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.surface-charcoal .btn-secondary,
.surface-ink .btn-secondary,
.surface-teal .btn-secondary,
.surface-orange .btn-secondary {
  border-color: rgba(44, 42, 50, 0.22);
  color: var(--charcoal);
}

.surface-charcoal .btn-secondary:hover,
.surface-ink .btn-secondary:hover,
.surface-teal .btn-secondary:hover,
.surface-orange .btn-secondary:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(199, 80, 42, 0.06);
}

.btn:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}

.hero-home,
.hero {
  position: relative;
  padding: var(--section-pad) clamp(1.25rem, 4vw, 2rem);
  overflow: hidden;
}

.hero-inner {
  max-width: 1120px;
  margin-inline: auto;
  display: grid;
  gap: clamp(1.75rem, 3.5vw, 2.75rem);
  align-items: center;
}

@media (min-width: 768px) {
  .hero-inner { grid-template-columns: 1.1fr 0.9fr; }
}

.hero-copy { position: relative; z-index: 2; }

.hero-image-wrap,
.hero-image {
  position: relative;
  border: 1px solid rgba(33, 31, 38, 0.12);
  box-shadow: var(--shadow-lift);
  border-radius: var(--radius);
  overflow: hidden;
  max-width: 480px;
  margin-inline: auto;
}

.hero-image-wrap img,
.hero-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  max-height: 260px;
}

.hero-image-wrap {
  max-width: 380px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.featured-card {
  display: grid;
  gap: clamp(1.25rem, 2.5vw, 1.85rem);
  padding: clamp(1.25rem, 2.5vw, 1.85rem);
  margin: clamp(1.5rem, 3vw, 2.25rem) 0;
  border: var(--hairline);
  box-shadow: var(--shadow-card);
  border-radius: var(--radius);
  text-decoration: none;
  color: inherit;
  background: var(--white);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.featured-card:hover {
  box-shadow: var(--shadow-lift);
  border-color: rgba(199, 80, 42, 0.25);
  color: inherit;
}

.featured-card p {
  color: var(--grey);
  opacity: 1;
}

@media (min-width: 768px) {
  .featured-card {
    grid-template-columns: minmax(200px, 280px) 1fr;
    align-items: center;
  }
}

.featured-card img,
.featured-card-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: var(--hairline);
  border-radius: 4px;
  max-height: 170px;
}

.featured-card-body h2 { margin-top: 0.25rem; }
.featured-card .card-meta { margin-bottom: 0.55rem; }

.about-teaser,
.about-strip {
  display: grid;
  gap: clamp(1.25rem, 2.5vw, 1.85rem);
  align-items: center;
  padding: clamp(1.75rem, 3.5vw, 2.5rem) 0;
}

@media (min-width: 640px) {
  .about-teaser,
  .about-strip { grid-template-columns: minmax(120px, 180px) 1fr; }
}

.about-teaser img,
.about-strip img,
.portrait {
  width: 100%;
  max-width: 150px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border: 1px solid rgba(33, 31, 38, 0.12);
  box-shadow: var(--shadow-card);
  border-radius: 6px;
}

.post-feed,
.card-grid {
  display: grid;
  gap: clamp(1.1rem, 2vw, 1.45rem);
}

@media (min-width: 640px) {
  .post-feed.two-up,
  .card-grid.two-up,
  .post-feed,
  .card-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 960px) {
  .post-feed,
  .card-grid.three-up,
  .post-feed.three-up { grid-template-columns: repeat(3, 1fr); }
}

.post-card,
.card {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
  border: 1px solid rgba(33, 31, 38, 0.1);
  box-shadow: var(--shadow-card);
  text-decoration: none;
  color: inherit;
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.post-card:hover,
.card:hover {
  box-shadow: var(--shadow-lift);
  border-color: rgba(232, 93, 42, 0.45);
  color: inherit;
}

.post-card .card-meta,
.post-card h3,
.post-card p,
.card .card-meta,
.card h3,
.card p {
  padding-inline: 1.1rem;
}

.post-card .card-meta,
.card .card-meta {
  padding-top: 1rem;
  margin: 0;
}

.post-card h3,
.card h3 {
  margin: 0.35rem 0 0.5rem;
}

.post-card p:last-child,
.card p:last-child {
  padding-bottom: 1.1rem;
  margin: 0;
  opacity: 1;
  color: var(--grey);
}

.surface-orange .post-card,
.surface-teal .post-card,
.surface-charcoal .post-card {
  background: var(--white);
  border-color: rgba(44, 42, 50, 0.08);
  color: var(--charcoal);
}

.surface-orange .post-card p:last-child,
.surface-teal .post-card p:last-child,
.surface-charcoal .post-card p:last-child {
  color: var(--grey);
}

.surface-orange .post-card .card-meta,
.surface-teal .post-card .card-meta,
.surface-charcoal .post-card .card-meta {
  color: rgba(111, 108, 102, 0.88);
}

.surface-orange .post-card:hover,
.surface-teal .post-card:hover {
  border-color: rgba(199, 80, 42, 0.28);
}

.post-card img,
.card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border: none;
  border-radius: 0;
  max-height: 130px;
}

.journal-list {
  display: flex;
  flex-direction: column;
  gap: clamp(1.1rem, 2vw, 1.45rem);
}

.journal-card {
  display: grid;
  gap: 1.15rem;
  padding: clamp(1rem, 2vw, 1.25rem);
  border: 1px solid rgba(33, 31, 38, 0.1);
  box-shadow: var(--shadow-card);
  text-decoration: none;
  color: inherit;
  background: #fff;
  border-radius: 6px;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.journal-card p {
  margin: 0;
  opacity: 1;
  color: var(--charcoal);
}

.journal-card:hover {
  box-shadow: var(--shadow-lift);
  border-color: rgba(232, 93, 42, 0.4);
  color: inherit;
}

@media (min-width: 640px) {
  .journal-card {
    grid-template-columns: minmax(150px, 200px) 1fr;
    align-items: start;
  }
}

.journal-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid rgba(33, 31, 38, 0.08);
  border-radius: 4px;
  max-height: 110px;
}

.journal-card.featured {
  border-color: rgba(232, 93, 42, 0.35);
  box-shadow: var(--shadow-lift);
}

.article-header { margin-bottom: clamp(1.5rem, 3vw, 2.25rem); }

.article-photo,
.inline-photo {
  margin: clamp(1.5rem, 2.5vw, 2rem) auto;
  border: 1px solid rgba(33, 31, 38, 0.12);
  box-shadow: var(--shadow-card);
  border-radius: 6px;
  overflow: hidden;
  max-width: min(420px, 100%);
}

.article-photo img,
.inline-photo img {
  width: 100%;
  max-height: 240px;
  object-fit: cover;
}

.article-photo figcaption,
.inline-photo figcaption {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  color: var(--grey);
  padding: 0.7rem 0.85rem;
  background: var(--surface-soft);
}

.more-strip {
  padding: clamp(2.25rem, 4.5vw, 3rem) clamp(1.25rem, 4vw, 2rem);
  border-top: var(--hairline);
}

.more-strip-inner {
  max-width: 1120px;
  margin-inline: auto;
}

.surface-teal .more-strip p,
.surface-teal .section-head p {
  color: var(--grey);
}

.surface-teal .eyebrow {
  color: var(--orange);
}

.article-lede,
.lead {
  color: var(--grey);
  max-width: var(--measure);
}

.contact-form,
form[action='/send.php'] {
  max-width: 560px;
  margin-top: 1.75rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #fff;
  border: 1px solid rgba(33, 31, 38, 0.1);
  border-radius: 8px;
  box-shadow: var(--shadow-card);
}

.form-group { margin-bottom: 1.35rem; }

.form-group:not(.form-consent) label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  color: var(--charcoal);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.82rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.5;
  border: 1px solid rgba(126, 122, 116, 0.4);
  background: var(--bone);
  color: var(--charcoal);
  border-radius: 6px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(126, 122, 116, 0.72);
}

.form-group textarea {
  min-height: 148px;
  resize: vertical;
}

.form-group input:focus-visible,
.form-group textarea:focus-visible,
.form-group select:focus-visible {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(232, 93, 42, 0.16);
}

.form-consent {
  margin: 1.5rem 0 1.25rem;
  padding: 1rem 1.1rem;
  background: rgba(245, 241, 232, 0.85);
  border: 1px solid rgba(232, 93, 42, 0.28);
  border-radius: 6px;
}

.form-consent-label {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 0.85rem;
  margin: 0;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: normal;
  text-transform: none;
  color: var(--charcoal);
}

.form-consent-label input[type='checkbox'] {
  flex: 0 0 auto;
  width: 1.1rem;
  height: 1.1rem;
  margin: 0.2rem 0 0;
  accent-color: var(--orange);
  cursor: pointer;
}

.form-consent-text {
  flex: 1 1 auto;
  min-width: 0;
}

.form-consent-text a {
  color: var(--teal);
  text-decoration-color: var(--orange);
}

.form-consent-text a:hover {
  color: var(--orange);
}

.form-actions {
  margin-top: 0.25rem;
}

.form-check {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  max-width: 36rem;
}

.form-check input[type='checkbox'] {
  width: auto;
  flex-shrink: 0;
  margin-top: 0.3rem;
  accent-color: var(--orange);
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.form-msg {
  padding: 1rem 1.1rem;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(31, 78, 74, 0.35);
  background: rgba(31, 78, 74, 0.08);
  max-width: 36rem;
  border-radius: var(--radius);
}

.form-msg.error {
  border-color: rgba(232, 93, 42, 0.45);
  background: rgba(232, 93, 42, 0.08);
}

/* Footer */
.site-footer {
  border-top: var(--hairline);
  padding: clamp(2.5rem, 5vw, 3.5rem) clamp(1.25rem, 4vw, 2rem) clamp(1.75rem, 3vw, 2.25rem);
  margin-top: 0;
  background: var(--surface-muted);
  color: var(--charcoal);
}

.site-footer::before {
  display: none;
}

.footer-inner {
  max-width: 1120px;
  margin-inline: auto;
  font-size: 0.95rem;
  line-height: 1.65;
}

.footer-grid {
  display: grid;
  gap: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: clamp(1.75rem, 3vw, 2.25rem);
}

.footer-col {
  padding: 1.15rem 1.25rem;
  border: var(--hairline);
  border-radius: var(--radius);
  background: var(--white);
}

@media (min-width: 720px) {
  .footer-grid {
    grid-template-columns: 1.3fr 1.2fr 0.8fr;
    align-items: stretch;
  }
}

.footer-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.45rem, 2.4vw, 1.8rem);
  margin: 0 0 0.35rem;
}

.footer-byline {
  margin: 0 0 0.75rem;
  color: var(--orange);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-note {
  margin: 0;
  color: var(--grey);
  font-size: 0.9rem;
}

.footer-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin: 0 0 0.75rem;
}

.footer-address {
  margin: 0;
  color: var(--charcoal);
  font-size: 0.92rem;
}

.footer-address a {
  color: var(--teal);
  text-decoration-color: var(--orange);
}

.footer-address a:hover { color: var(--orange); }

.footer-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.footer-nav a {
  text-decoration: none;
  color: var(--charcoal);
}

.footer-nav a:hover { color: var(--orange); }

.footer-disclaimer {
  font-size: 0.86rem;
  color: var(--grey);
  max-width: 72ch;
  margin: 0 0 1.5rem;
  padding: 1.15rem 1.25rem;
  border: var(--hairline);
  border-radius: var(--radius);
  background: var(--white);
  line-height: 1.6;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: var(--hairline);
}

.footer-copy {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  color: var(--grey);
  margin: 0;
}

.footer-links { margin: 0; }

.footer-links a {
  color: var(--charcoal);
  text-decoration: none;
}

.footer-links a:hover { color: var(--orange); }

.cookie-banner {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 200;
  padding: 1.1rem clamp(1.25rem, 4vw, 2rem);
  background: rgba(253, 252, 250, 0.98);
  color: var(--charcoal);
  border-top: var(--hairline);
  box-shadow: 0 -4px 20px rgba(44, 42, 50, 0.06);
}

.cookie-banner[hidden] { display: none; }

.cookie-inner {
  max-width: 1120px;
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  background: transparent !important;
  color: inherit !important;
}

.cookie-inner p {
  margin: 0;
  flex: 1 1 280px;
  font-size: 0.88rem;
  line-height: 1.55;
  max-width: 62ch;
}

.cookie-inner a { color: var(--clay); }

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.cookie-panel {
  max-width: 1120px;
  margin: 1rem auto 0;
  padding-top: 1rem;
  border-top: var(--hairline);
  width: 100%;
}

.cookie-panel[hidden] { display: none; }

.cookie-panel label {
  display: flex;
  gap: 0.55rem;
  align-items: center;
  margin-bottom: 0.55rem;
  font-size: 0.875rem;
}

.cookie-panel input[type='checkbox'] { accent-color: var(--orange); }

.js .reveal {
  transform: none;
  transition: none;
}

.js .reveal.is-visible {
  transform: none;
}

.page-404 {
  min-height: 55vh;
  display: flex;
  align-items: center;
}

.page-404 .content-wrap {
  padding-block: clamp(3rem, 8vw, 5rem);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-kopi-broadcast {
  background: var(--white);
  color: var(--charcoal);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .scroll-line { display: none; }
  .js .reveal {
    transform: none !important;
    transition: none !important;
  }
  .btn,
  .post-card,
  .card,
  .journal-card,
  .featured-card {
    transition: none !important;
  }
}

:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}
