
.site-header { width: var(--shell); margin: 18px auto 0; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 16px 20px; background: rgba(248,251,253,.88); border: 1px solid rgba(255,255,255,.8); box-shadow: 0 10px 30px rgba(63,98,116,.11); border-radius: 20px; backdrop-filter: blur(12px); position: sticky; top: 14px; z-index: 100; }
.art-banner { display: grid; place-items: center; padding-top: clamp(26px, 5vw, 64px); }
.art-banner img { width: min(100%, 980px); border-radius: 24px; box-shadow: var(--shadow); }
.brand { text-decoration: none; display: flex; flex-direction: column; line-height: 1; }
.brand-script { font-family: var(--script); font-size: 2.1rem; color: var(--berry-dark); }
.brand-kicker { font-size: .62rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 700; margin-top: 4px; }
.site-nav ul { display: flex; align-items: center; gap: 5px; list-style: none; padding: 0; margin: 0; }
.site-nav a { text-decoration: none; padding: 10px 12px; border-radius: 999px; font-weight: 600; font-size: .9rem; }
.site-nav a:hover, .site-nav a[aria-current="page"] { background: var(--sky); }
.menu-button { display: none; background: transparent; border: 0; width: 44px; height: 44px; place-items: center; padding: 8px; }
.menu-button span:not(.sr-only) { display: block; width: 24px; height: 2px; margin: 4px auto; background: var(--ink); }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 12px 20px; border-radius: 999px; text-decoration: none; font-weight: 700; border: 1px solid transparent; cursor: pointer; }
.button.primary { background: var(--berry); color: #fff; box-shadow: 0 10px 24px rgba(184,83,115,.25); }
.button.primary:hover { background: var(--berry-dark); }
.button.ghost { background: rgba(248,251,253,.7); border-color: var(--ink); }
.button.ghost:hover { background: var(--paper); }
.text-link { font-weight: 700; color: var(--berry-dark); }
.story-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 22px; }
.story-card { position: relative; display: flex; flex-direction: column; padding: 28px; min-height: 330px; background: var(--paper); border: 1px solid rgba(255,255,255,.92); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }
.story-card::after { content: ""; position: absolute; right: -25px; bottom: -35px; width: 110px; height: 110px; border: 1px solid var(--line); border-radius: 50%; }
.story-card h3 a { text-decoration: none; }
.story-card h3 a:hover { color: var(--berry-dark); text-decoration: underline; }
.story-card > p:not(.eyebrow) { color: var(--ink-soft); }
.story-meta { display: flex; justify-content: space-between; gap: 12px; align-items: flex-end; margin-top: auto; padding-top: 20px; border-top: 1px solid var(--line); font-size: .78rem; color: var(--ink-soft); }
.story-meta span:last-child { text-align: right; max-width: 65%; }
.site-footer { width: var(--shell); margin: 0 auto 28px; padding: 30px; background: var(--ink); color: #eef6fa; border-radius: var(--radius); display: flex; justify-content: space-between; gap: 30px; align-items: end; }
.footer-script { font-family: var(--script); font-size: 2rem; margin-bottom: 8px; }
.site-credit { font-size: .82rem; color: rgba(238,246,250,.78); }
.site-credit + .site-credit { margin-top: 3px; }
.site-footer p { margin: 0; }
.footer-links { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-links a { color: white; }
.filter-row { display: flex; flex-wrap: wrap; gap: 10px; }
.filter-chip { border: 1px solid var(--ink); background: rgba(248,251,253,.55); border-radius: 999px; padding: 9px 15px; cursor: pointer; font-weight: 700; }
.filter-chip:hover, .filter-chip.active { background: var(--ink); color: white; }
label span { display: block; font-size: .82rem; font-weight: 700; margin-bottom: 7px; }
input, select, textarea { width: 100%; border: 1px solid rgba(31,52,65,.35); border-radius: 14px; background: var(--paper); color: var(--ink); padding: 13px 14px; }
textarea { resize: vertical; }
.form-status { min-height: 1.5em; font-weight: 600; color: var(--berry-dark); }
.notice { background: var(--paper); padding: 20px; border-radius: 16px; }
.has-mic-cursor, .has-mic-cursor a, .has-mic-cursor button, .has-mic-cursor input, .has-mic-cursor select, .has-mic-cursor textarea { cursor: none; }
.mic-cursor { position: fixed; left: 0; top: 0; z-index: 9999; pointer-events: none; font-size: 28px; line-height: 1; filter: drop-shadow(0 3px 4px rgba(31,52,65,.3)); transform: translate(-8px, -4px) rotate(-12deg); transition: scale 120ms ease; }
.mic-cursor.is-clicking { scale: .86; }
@media (max-width: 920px) {
  .story-grid { grid-template-columns: 1fr 1fr; }
  .menu-button { display: block; }
  .site-nav { position: absolute; left: 0; right: 0; top: calc(100% + 8px); background: var(--paper); border-radius: 18px; box-shadow: var(--shadow); padding: 12px; display: none; }
  .site-nav.open { display: block; }
  .site-nav ul { flex-direction: column; align-items: stretch; }
  .site-nav a { display: block; }
}
@media (max-width: 640px) {
  .story-grid { grid-template-columns: 1fr; }
  .site-header { padding: 13px 15px; }
  .brand-script { font-size: 1.8rem; }
  .brand-kicker { display: none; }
  .site-footer { flex-direction: column; align-items: flex-start; }
}

@media (pointer: coarse) {
  .mic-cursor { display: none; }
  .has-mic-cursor, .has-mic-cursor a, .has-mic-cursor button, .has-mic-cursor input, .has-mic-cursor select, .has-mic-cursor textarea { cursor: auto; }
}

@media (prefers-reduced-motion: reduce) {
  .mic-cursor { transition: none; }
}
