/* Skrunevi — static news magazine */
:root {
  --bg: #f5f2ec;
  --bg-2: #ece7dc;
  --paper: #fbf8f1;
  --ink: #14120f;
  --ink-2: rgba(20, 18, 15, 0.78);
  --mute: rgba(20, 18, 15, 0.55);
  --line: rgba(20, 18, 15, 0.12);
  --line-2: rgba(20, 18, 15, 0.28);
  --brand: #cc3b2d;
  --brand-soft: rgba(204, 59, 45, 0.1);
  --accent: #1e3a8a;
  --radius: 2px;
  --max: 1180px;
  --font-display: "Fraunces", "Cormorant Garamond", Georgia, serif;
  --font-body: "Inter", ui-sans-serif, system-ui, sans-serif;
  --font-meta: "JetBrains Mono", ui-monospace, monospace;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  background-image:
    radial-gradient(circle at 92% 4%, rgba(204, 59, 45, 0.06) 0 220px, transparent 221px),
    repeating-linear-gradient(0deg, rgba(20, 18, 15, 0.015) 0 1px, transparent 1px 5px);
  background-attachment: fixed;
  min-height: 100vh;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input { font: inherit; }

::selection { background: var(--ink); color: var(--paper); }

.wrap {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.12;
  color: var(--ink);
}

.italic-serif {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  color: var(--brand);
}

.meta {
  font-family: var(--font-meta);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mute);
}

.cat {
  font-family: var(--font-meta);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brand);
}

.caps {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-meta);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brand);
}
.caps::before {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--brand);
}

.text-link {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.text-link:hover { color: var(--brand); }

/* ——— Top bar ——— */
.topbar {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}
.topbar .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.45rem 0;
  font-family: var(--font-meta);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mute);
}
.live-dot {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--brand);
}
.live-dot::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

/* ——— Header / masthead ——— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(245, 242, 236, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-2);
}
.masthead-rule {
  display: flex;
  gap: 0.4rem;
  height: 4px;
  padding-top: 0.35rem;
}
.masthead-rule span:nth-child(1) { flex: 8; background: var(--ink); }
.masthead-rule span:nth-child(2) { flex: 1; background: var(--brand); }
.masthead-rule span:nth-child(3) { flex: 2; background: #b8842e; }

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 4rem;
  padding-bottom: 0.35rem;
}

.brand {
  display: flex;
  align-items: baseline;
  gap: 0.55rem;
  flex-shrink: 0;
}
.brand-name {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 1.75rem);
  letter-spacing: -0.03em;
  font-weight: 500;
  color: var(--ink);
}
.brand-loc {
  font-family: var(--font-meta);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--brand);
}

.nav {
  display: none;
  align-items: center;
  gap: 1.5rem;
}
.nav a {
  font-family: var(--font-meta);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-2);
  padding: 0.35rem 0;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--ink);
  border-bottom-color: var(--brand);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-meta);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.75rem 1.15rem;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  cursor: pointer;
}
.btn:hover { background: var(--brand); border-color: var(--brand); }
.btn-sm { padding: 0.55rem 0.85rem; font-size: 10px; }
.btn-outline {
  background: transparent;
  color: var(--ink);
}
.btn-outline:hover {
  background: var(--ink);
  color: var(--paper);
}
.btn-brand {
  background: var(--brand);
  border-color: var(--brand);
}
.btn-brand:hover {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  padding: 0.4rem;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
}

@media (min-width: 860px) {
  .nav { display: flex; }
  .nav-toggle { display: none; }
  .brand-loc { display: inline; }
}
.brand-loc { display: none; }
@media (min-width: 860px) {
  .brand-loc { display: inline; }
}

.nav.is-open {
  display: flex;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  background: var(--paper);
  border-bottom: 1px solid var(--line-2);
  padding: 0.75rem 1.25rem 1.25rem;
}
.nav.is-open a {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--line);
}

/* ——— Ticker ——— */
.ticker {
  border-bottom: 1px solid var(--line-2);
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
}
.ticker-inner {
  display: flex;
  align-items: center;
  gap: 0;
  min-height: 2.6rem;
}
.ticker-label {
  flex-shrink: 0;
  padding: 0.55rem 1rem;
  background: var(--brand);
  font-family: var(--font-meta);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.ticker-track {
  display: flex;
  gap: 0;
  overflow-x: auto;
  flex: 1;
  scrollbar-width: none;
}
.ticker-track::-webkit-scrollbar { display: none; }
.ticker a {
  flex-shrink: 0;
  padding: 0.55rem 1.15rem;
  font-size: 0.9rem;
  border-left: 1px solid rgba(251, 248, 241, 0.18);
  white-space: nowrap;
  transition: color 0.2s;
}
.ticker a:hover { color: #e8b8b0; }
.ticker a strong {
  font-family: var(--font-meta);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #e8b8b0;
  margin-right: 0.55rem;
  font-weight: 500;
}

/* ——— Banner ——— */
.banner {
  padding: 1.75rem 0 2rem;
}
.banner-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 960px) {
  .banner-grid {
    grid-template-columns: 1.55fr 1fr;
    gap: 1.75rem;
    align-items: stretch;
  }
}

.featured {
  background: var(--paper);
  border: 1px solid var(--line-2);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.featured-media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  background: var(--bg-2);
  overflow: hidden;
}
.featured-media-embed {
  aspect-ratio: 16 / 9;
  background: #000;
}
.featured-media-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: unset;
}
.featured-media img,
.featured-media iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
}
.featured-media iframe { aspect-ratio: auto; }
.play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, transparent 40%, rgba(20, 18, 15, 0.55));
  transition: background 0.25s;
}
.featured-media:hover .play-overlay {
  background: linear-gradient(180deg, transparent 30%, rgba(20, 18, 15, 0.65));
}
.play-btn {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--brand);
  color: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  transition: transform 0.2s, background 0.2s;
}
.play-btn:hover,
.featured-media:hover .play-btn {
  transform: scale(1.06);
  background: var(--ink);
}
.featured-body {
  padding: 1.25rem 1.35rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  flex: 1;
}
.featured-body h2 {
  font-size: clamp(1.45rem, 2.6vw, 2rem);
  line-height: 1.15;
}
.featured-body h2 a:hover { color: var(--brand); }
.featured-dek {
  color: var(--ink-2);
  font-size: 1rem;
  line-height: 1.55;
  max-width: 42rem;
}
.featured-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  align-items: center;
  margin-top: auto;
  padding-top: 0.75rem;
}

.side-rail {
  background: var(--paper);
  border: 1px solid var(--line-2);
  padding: 1.15rem 1.2rem 1.25rem;
  display: flex;
  flex-direction: column;
}
.side-rail-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding-bottom: 0.85rem;
  border-bottom: 2px solid var(--ink);
  margin-bottom: 0.25rem;
}
.side-rail-head h2 {
  font-size: 1.25rem;
}
.story-list {
  display: flex;
  flex-direction: column;
  list-style: none;
}
.story-list li {
  border-bottom: 1px solid var(--line);
}
.story-list li:last-child { border-bottom: 0; }
.story-list a {
  display: block;
  padding: 0.95rem 0;
  transition: color 0.2s;
}
.story-list a:hover h3 { color: var(--brand); }
.story-list .num { display: none; }
.story-list h3 {
  font-size: 1.05rem;
  line-height: 1.28;
  font-weight: 500;
}
.story-list .meta { margin-top: 0.35rem; }

/* ——— Section heads ——— */
.section {
  padding: 2.25rem 0;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  padding-bottom: 1rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid var(--line-2);
}
.section-head h2 {
  font-size: clamp(1.55rem, 3vw, 2.1rem);
  margin-top: 0.4rem;
}
.section-link {
  font-family: var(--font-meta);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  white-space: nowrap;
}
.section-link:hover { color: var(--brand); }

/* ——— Story cards (image-left denser list) ——— */
.feed {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--line);
}
.story-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
@media (min-width: 700px) {
  .story-card {
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 1.6rem;
    align-items: center;
  }
}
@media (min-width: 960px) {
  .story-card {
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 1.85rem;
  }
}
.story-card-media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--bg-2);
}
.story-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.story-card:hover .story-card-media img { transform: scale(1.04); }
.story-card-body { min-width: 0; }
.story-card-top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  margin-bottom: 0.45rem;
}
.story-card h3 {
  font-size: clamp(1.2rem, 2.1vw, 1.55rem);
  line-height: 1.18;
  letter-spacing: -0.01em;
}
.story-card h3 a:hover { color: var(--brand); }
.story-card p {
  margin-top: 0.5rem;
  color: var(--ink-2);
  font-size: 0.95rem;
  line-height: 1.55;
  max-width: 42rem;
}
.story-card .read {
  display: inline-block;
  margin-top: 0.75rem;
  font-family: var(--font-meta);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand);
}
.story-card:hover .read { color: var(--ink); }

/* Video archive as editorial list */
.video-feed .story-card-media {
  aspect-ratio: 16 / 9;
  background: #111;
}
.video-feed .play-mini {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: var(--brand);
  color: var(--paper);
  display: grid;
  place-items: center;
  font-size: 13px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  pointer-events: none;
}
.video-feed .story-card:hover .play-mini {
  background: var(--ink);
}

/* ——— Category chips ——— */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  padding: 0.5rem 0 0.25rem;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: 1px solid var(--line-2);
  background: var(--paper);
  padding: 0.45rem 0.85rem;
  font-family: var(--font-meta);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.chip::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
}
.chip:hover {
  border-color: var(--ink);
  color: var(--brand);
}

/* ——— Newsletter ——— */
.newsletter {
  background: var(--ink);
  color: var(--paper);
  margin-top: 1rem;
}
.newsletter .wrap {
  display: grid;
  gap: 1.5rem;
  padding: 2.5rem 0;
  align-items: center;
}
@media (min-width: 800px) {
  .newsletter .wrap {
    grid-template-columns: 1.3fr 1fr;
    gap: 2rem;
  }
}
.newsletter h2 { color: var(--paper); font-size: clamp(1.6rem, 3vw, 2.2rem); margin-top: 0.5rem; }
.newsletter .caps { color: #e8b8b0; }
.newsletter .caps::before { background: #e8b8b0; }
.newsletter p { color: rgba(251, 248, 241, 0.78); margin-top: 0.75rem; max-width: 32rem; }
.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
@media (min-width: 520px) {
  .newsletter-form { flex-direction: row; }
}
.field {
  flex: 1;
  background: transparent;
  border: 1px solid rgba(251, 248, 241, 0.35);
  color: var(--paper);
  padding: 0.85rem 1rem;
}
.field::placeholder { color: rgba(251, 248, 241, 0.45); }
.field:focus { outline: none; border-color: var(--brand); }

/* ——— Footer ——— */
.site-footer {
  margin-top: 3rem;
  border-top: 1px solid var(--line-2);
  background: var(--bg-2);
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--line);
  align-items: flex-start;
}
@media (min-width: 720px) {
  .footer-brand {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.footer-brand .brand-name { font-size: clamp(2.2rem, 5vw, 3rem); }
.footer-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-meta);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.footer-tag::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
}
.footer-grid {
  display: grid;
  gap: 2rem;
  padding: 2.25rem 0;
}
@media (min-width: 800px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1.2fr 1fr; }
}
.footer-grid h3 {
  font-family: var(--font-meta);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brand);
  font-weight: 500;
  margin-bottom: 0.9rem;
}
.footer-grid p {
  font-size: 0.9rem;
  color: var(--ink-2);
  line-height: 1.55;
  max-width: 18rem;
}
.footer-grid ul { display: flex; flex-direction: column; gap: 0.45rem; }
.footer-grid a {
  font-size: 0.9rem;
  color: var(--ink-2);
}
.footer-grid a:hover { color: var(--brand); }
.footer-grid .meta-block {
  font-size: 0.9rem;
  color: var(--ink-2);
  line-height: 1.7;
}
.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 1rem 0 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-family: var(--font-meta);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mute);
}
@media (min-width: 720px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* ——— Article pages ——— */
.article-hero {
  padding: 2rem 0 1.5rem;
  border-bottom: 1px solid var(--line);
}
.article-hero .wrap { max-width: 760px; }
.article-hero h1 {
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  margin-top: 0.85rem;
  line-height: 1.1;
}
.article-hero .dek {
  margin-top: 1rem;
  font-size: 1.15rem;
  color: var(--ink-2);
  line-height: 1.55;
}
.article-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.1rem;
  margin-top: 1.25rem;
  align-items: center;
}

.article-embed {
  padding: 1.5rem 0 0;
}
.article-embed .wrap { max-width: 920px; }
.embed-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--ink);
  border: 1px solid var(--line-2);
  overflow: hidden;
}
.embed-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-cover {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #111;
  max-width: 920px;
  margin: 0 auto;
}
.video-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}
.video-cover:hover img { transform: scale(1.03); }
.video-cover .play-mini {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 999px;
  background: var(--brand);
  color: var(--paper);
  display: grid;
  place-items: center;
  font-size: 18px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.4);
}
.video-cover:hover .play-mini { background: var(--ink); }

.article-body {
  padding: 2rem 0 3rem;
}
.article-body .wrap {
  max-width: 680px;
}
.article-body p {
  color: var(--ink-2);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 1.15rem;
}
.article-body p:first-of-type::first-letter {
  float: left;
  font-family: var(--font-display);
  font-size: 3.6rem;
  line-height: 0.85;
  color: var(--brand);
  margin: 0.25rem 0.55rem 0 0;
  font-weight: 500;
}
.article-body h2 {
  font-size: 1.45rem;
  margin: 2rem 0 0.85rem;
}
.article-body blockquote {
  border-left: 3px solid var(--brand);
  padding: 0.35rem 0 0.35rem 1.15rem;
  margin: 1.5rem 0;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--ink);
  line-height: 1.4;
}
.related {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line-2);
}
.related h2 {
  font-size: 1.2rem;
  margin-bottom: 0.85rem;
}
.related ul { display: flex; flex-direction: column; gap: 0.55rem; }
.related a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.related a:hover { color: var(--brand); }

/* ——— Archive / static pages ——— */
.page-hero {
  padding: 2.25rem 0 1.5rem;
  border-bottom: 1px solid var(--line);
}
.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin-top: 0.75rem;
}
.page-hero p {
  margin-top: 0.9rem;
  color: var(--ink-2);
  font-size: 1.1rem;
  max-width: 40rem;
  line-height: 1.55;
}

.lead-feature {
  margin: 1.75rem 0;
  background: var(--paper);
  border: 1px solid var(--line-2);
  overflow: hidden;
}
.lead-feature-media {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--ink);
}
.lead-feature-media iframe,
.lead-feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
}
.lead-feature-body { padding: 1.25rem 1.35rem 1.5rem; }
.lead-feature-body h2 { font-size: clamp(1.35rem, 2.5vw, 1.85rem); margin-top: 0.4rem; }
.lead-feature-body h2 a:hover { color: var(--brand); }
.lead-feature-body p { margin-top: 0.65rem; color: var(--ink-2); }

.prose {
  padding: 2rem 0 3rem;
  max-width: 680px;
}
.prose p {
  color: var(--ink-2);
  line-height: 1.7;
  margin-bottom: 1rem;
  font-size: 1.05rem;
}
.prose h2 {
  font-size: 1.4rem;
  margin: 1.75rem 0 0.65rem;
}
.prose ul {
  list-style: disc;
  padding-left: 1.25rem;
  margin: 0.75rem 0 1.25rem;
  color: var(--ink-2);
}
.prose li { margin-bottom: 0.4rem; line-height: 1.55; }

.contact-grid {
  display: grid;
  gap: 1rem;
  margin: 1.5rem 0;
}
@media (min-width: 700px) {
  .contact-grid { grid-template-columns: 1fr 1fr; }
}
.contact-card {
  background: var(--paper);
  border: 1px solid var(--line-2);
  padding: 1.35rem;
}
.contact-card.dark {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.contact-card.dark .caps { color: #e8b8b0; }
.contact-card.dark .caps::before { background: #e8b8b0; }
.contact-card.dark a { color: var(--paper); }
.contact-card.dark a:hover { color: #e8b8b0; }
.contact-card .big {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  margin-top: 0.65rem;
  word-break: break-word;
}
.contact-card p {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: var(--ink-2);
  line-height: 1.5;
}
.contact-card.dark p { color: rgba(251, 248, 241, 0.72); }

.form-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
  max-width: 720px;
}
@media (min-width: 700px) {
  .form-grid { grid-template-columns: 1fr 1fr; }
  .form-grid .full { grid-column: 1 / -1; }
}
.form-grid label {
  display: block;
  font-family: var(--font-meta);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin-bottom: 0.35rem;
}
.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  background: var(--paper);
  border: 1px solid var(--line-2);
  color: var(--ink);
  padding: 0.8rem 0.95rem;
}
.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  outline: none;
  border-color: var(--brand);
}
.form-grid textarea { min-height: 140px; resize: vertical; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  white-space: nowrap;
}

.video-caption {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  font-weight: 500;
  margin: 0 0 1rem;
  line-height: 1.2;
}

.video-feed {
  max-width: 920px;
}
.archive-more {
  padding: 1.75rem 0 0.5rem;
  display: flex;
  justify-content: flex-start;
}
