/* ==========================================================================
   VoteMattShoemaker.com
   Pulse Political. Warm paper, black, Hornet gold. Archivo display type,
   Source Serif body. The printed logo lockup is the brand; the page around
   it is quiet, sentence-case and deliberately uneven.
   ========================================================================== */

/* --------------------------------------------------------------- tokens -- */
:root {
  --paper: #F3EEE4;
  --paper-2: #FBF9F4;
  --ink: #1B1917;
  --ink-2: #3A3632;
  --gold: #F2B233;        /* Hornet gold: buttons, rules, CTA band */
  /* Dark gold for SMALL TEXT ON PAPER. SPEC-v2 names #9A6B06, but that measures
     4.05:1 on --paper and fails AA for 12-13px text, so it is darkened one step
     on the same hue: 5.34:1 on --paper, 5.05:1 on the About clipping stock. */
  --gold-deep: #815A05;
  --gold-soft: #F7D98A;   /* tint for hover states on gold surfaces */
  --muted: #6E675E;
  --needs-client: #D0021B;

  --hair: rgba(27, 25, 23, 0.18);

  --wrap: 1180px;
  --gutter: 24px;
  --section: 96px;

  --display: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --serif: "Source Serif 4", Georgia, "Times New Roman", serif;
}

/* ---------------------------------------------------------------- reset -- */
*,
*::before,
*::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.125rem;
  line-height: 1.6;
  font-synthesis-weight: none;
}

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

h1, h2, h3, h4, p, ul, ol, figure, blockquote { margin: 0; }

a { color: var(--gold-deep); text-underline-offset: 3px; text-decoration-thickness: 1px; }
a:hover { color: var(--ink); }

:focus-visible {
  outline: 3px solid var(--gold-deep);
  outline-offset: 3px;
}
/* gold-deep does not clear 3:1 against ink or against the gold band, so the
   ring flips to the opposite pole on those surfaces */
.site-footer :focus-visible { outline-color: var(--gold); }
.band-gold :focus-visible { outline-color: var(--ink); }

/* -------------------------------------------------------------- helpers -- */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.measure { max-width: 720px; }

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

.skip-link {
  position: absolute;
  left: 12px;
  top: -100px;
  z-index: 100;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 12px 18px;
  transition: top 0.15s ease;
}
.skip-link:focus { top: 12px; color: var(--paper); }

.needs-client { color: var(--needs-client); }

/* ----------------------------------------------------------- type scale -- */
/* Sentence case everywhere. The logo lockup is the only all-caps display
   element on the page; buttons and nav stay caps because they read as UI. */
h1, h2, h3 {
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.05;
  text-wrap: balance;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); }
h3 { font-size: 1.25rem; line-height: 1.15; }

.lead {
  font-size: clamp(1.15rem, 1.5vw, 1.25rem);
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 34em;
}

.prose { color: var(--ink-2); }
.prose p { max-width: 62ch; }
.prose p + p { margin-top: 1.15em; }

.meta {
  font-size: 0.95rem;
  color: var(--muted);
  font-style: italic;
}

/* a sentence link, not a component */
.text-link {
  font-family: var(--serif);
  font-size: 1.08rem;
  color: var(--gold-deep);
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}
.text-link:hover { color: var(--ink); text-decoration-color: var(--ink); }

/* bold Archivo lead-in inside a serif paragraph */
.prose strong,
.lead-in {
  font-family: var(--display);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.005em;
}

/* -------------------------------------------------------------- photos --- */
/* One framed photo on the whole site (About, "Michigan, start to finish").
   Everything else is a plain picture with a 2px radius. */
.frame {
  position: relative;
  display: block;
  margin: 0 10px 10px 0;
}
.frame::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translate(10px, 10px);
  border: 1px solid var(--gold);
  pointer-events: none;
}
.frame img {
  position: relative;
  z-index: 1;
  border: 1px solid var(--ink);
  width: 100%;
  height: auto;
}

.photo-plain img { border-radius: 2px; width: 100%; height: auto; }

figure { margin: 0; }
figcaption {
  margin-top: 10px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.92rem;
  line-height: 1.45;
  color: var(--muted);
}

/* -------------------------------------------------------------- buttons -- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 26px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1.5px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.btn--solid { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.btn--solid:hover { background: var(--ink); color: var(--gold); border-color: var(--ink); }

.btn--outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--outline:hover { background: var(--ink); color: var(--paper); }

/* button that sits on the gold CTA band */
.btn--ink { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.btn--ink:hover { background: var(--ink-2); color: var(--paper); border-color: var(--ink-2); }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

/* ------------------------------------------------------------ masthead --- */
.site-header {
  background: var(--paper);
  border-bottom: 1px solid var(--ink);
}

.masthead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 16px;
}

.logo { display: block; line-height: 0; }
.logo img { width: 250px; height: auto; }

.nav-toggle {
  display: none;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 10px 14px;
  background: transparent;
  border: 1px solid var(--ink);
  border-radius: 2px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  cursor: pointer;
}
.nav-toggle .bars { display: block; width: 18px; }
.nav-toggle .bars i {
  display: block;
  height: 2px;
  background: var(--ink);
  margin: 3px 0;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-list a {
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
  padding-block: 8px;
  display: inline-block;
  border-bottom: 3px solid transparent;
}
.nav-list a:hover { color: var(--ink); border-bottom-color: var(--gold); }
.nav-list a[aria-current="page"] { color: var(--ink); border-bottom-color: var(--gold); }

.nav-list .nav-cta a {
  background: var(--gold);
  color: var(--ink);
  border: 1.5px solid var(--gold);
  border-radius: 2px;
  padding: 13px 20px;
}
.nav-list .nav-cta a:hover { background: var(--ink); border-color: var(--ink); color: var(--gold); }
.nav-list .nav-cta a[aria-current="page"] { color: var(--ink); border-bottom-color: var(--ink); }

/* ------------------------------------------------------------- sections -- */
/* Deliberately uneven: --section is the roomy one, --tight is the short one. */
.section { padding-block: var(--section); }
.section--tight { padding-block: 56px; }
.section--flush-top { padding-top: 0; }

.split {
  display: grid;
  gap: 56px;
  align-items: start;
}
.split--7-5 { grid-template-columns: 7fr 5fr; }
.split--5-7 { grid-template-columns: 5fr 7fr; }
.split--6-6 { grid-template-columns: 1fr 1fr; }

/* ----------------------------------------------------------------- hero -- */
.hero { padding-block: clamp(48px, 6vw, 88px) clamp(44px, 5vw, 76px); }
.hero .split { align-items: center; gap: 60px; }

.hero h1 { margin-bottom: 22px; }

/* the one gold rule on the site, echoing the rule inside the logo */
.hero-rule {
  width: 64px;
  height: 3px;
  background: var(--gold);
  margin-bottom: 26px;
}

.hero .lead { max-width: 33em; }

.hero-sign {
  margin-top: 16px;
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--ink-2);
}

.hero-creds {
  margin-top: 20px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.5;
  letter-spacing: -0.005em;
  color: var(--ink);
}

.hero-when {
  margin-top: 16px;
  font-style: italic;
  font-size: 0.98rem;
  color: var(--muted);
}

.hero-photo img {
  border-radius: 2px;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 14%;
}

/* ------------------------------------------------------ why I'm running -- */
/* Not a two-column system: a column of text with a picture floated into it. */
.why { max-width: 1040px; display: flow-root; }
.why h2 { max-width: 16ch; margin-bottom: 26px; }
.why p { max-width: 68ch; }
.why-photo {
  float: right;
  width: 46%;
  margin: 6px 0 20px 46px;
}
.why-photo img { border-radius: 2px; }

/* ----------------------------------------------------------- photo band -- */
.photo-band figure { margin: 0; }
.photo-band img {
  width: 100%;
  height: clamp(300px, 42vw, 520px);
  object-fit: cover;
}
.photo-band figcaption {
  margin-top: 12px;
  text-align: right;
}

/* ------------------------------------------------- where I stand (home) -- */
/* centered, with the logo's home plate standing in for a bullet */
.stand { max-width: 680px; margin: 0 auto; text-align: center; }
.stand h2 { margin-bottom: 14px; }
.stand .intro { color: var(--ink-2); margin-bottom: 40px; }
.plates { list-style: none; margin: 0; padding: 0; }
.plates li + li { margin-top: 40px; }
.plates .plate { display: block; width: 30px; height: auto; margin: 0 auto 12px; }
.plates strong {
  display: block;
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.2rem;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.plates p { color: var(--ink-2); max-width: 58ch; margin: 0 auto; }
.stand .more { margin-top: 40px; }
.page-head + .tear-sec { padding-top: 8px; }

/* ------------------------------------------------------------- cta band -- */
.band-gold { background: var(--gold); color: var(--ink); }
.cta { padding-block: 64px; }
.cta > * { max-width: 760px; }
.cta h2 { color: var(--ink); margin-bottom: 14px; }
.cta p { color: var(--ink); max-width: 48ch; font-size: 1.05rem; }
.cta .btn-row { margin-top: 26px; align-items: center; gap: 14px 22px; }
.cta .or {
  font-family: var(--serif);
  font-size: 1.02rem;
  color: var(--ink);
}
.cta .or a { color: var(--ink); text-decoration-thickness: 1.5px; }
.cta .or a:hover { color: #4a3a12; }

/* -------------------------------------------------------------- footer --- */
.site-footer { background: var(--ink); color: var(--paper); }
.footer-inner { padding-block: 58px 36px; }

.footer-top {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 40px;
  align-items: center;
}
.site-footer .logo img { width: 220px; }

.footer-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-end;
}
.footer-nav a {
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--paper);
  padding-block: 12px;
  display: inline-block;
}
.footer-nav a:hover { color: var(--gold); }

.footer-vote {
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid var(--gold);
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}
.footer-vote a { color: var(--paper); text-decoration: underline; }
.footer-vote a:hover { color: var(--gold); }
.footer-vote .sep { color: var(--gold); padding-inline: 8px; }

/* Michigan paid-for disclaimer: committee name + address, quiet but legible */
.footer-disclaimer {
  margin-top: 16px;
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(243, 238, 228, 0.78);
}
.footer-disclaimer .needs-client {
  display: inline-block;
  background: var(--paper);
  padding: 5px 10px;
  border-radius: 2px;
}

/* --------------------------------------------------------- page headers -- */
.page-head { padding-block: clamp(44px, 5vw, 76px) clamp(28px, 3vw, 44px); }
.page-head h1 { margin-bottom: 22px; }
.page-head .lead { max-width: 40em; }

/* --------------------------------------------------------- about page ---- */
.about-sec { padding-block: clamp(52px, 5.5vw, 88px); }
.about-sec--tight { padding-block: clamp(40px, 4vw, 56px); }
.about-sec h2 { margin-bottom: 24px; }

.pullbox {
  border-left: 4px solid var(--gold);
  padding: 6px 0 6px 28px;
  margin-top: 6px;
}
.pullbox p {
  font-size: clamp(1.2rem, 1.9vw, 1.45rem);
  line-height: 1.45;
  color: var(--ink);
  max-width: 44ch;
}

.pair {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 28px;
  margin-top: 44px;
  align-items: start;
}
.pair img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 2px;
}
/* the two photos are deliberately not the same shape or height */
.pair figure:first-child img { aspect-ratio: 3 / 4; }

.wide-photo { margin-top: 44px; }
.wide-photo--inset { max-width: 940px; }
.wide-photo img { width: 100%; height: auto; border-radius: 2px; }
.wide-photo figcaption { font-size: 0.95rem; }

.home-saline .photo-plain { max-width: 420px; justify-self: end; }
@media (max-width: 960px) { .home-saline .photo-plain { justify-self: start; } }

.brings p + p { margin-top: 1.3em; }

/* ------------------------------------------ about: torn-paper quote --- */
/* A photographed torn sheet (transparent PNG/WebP) sits behind the quote.
   background-size 100% 100% lets the sheet stretch to the text on narrow
   screens; the drop-shadow filter follows the torn silhouette. */
.tear-sec {
  background: var(--paper);
  padding-block: clamp(64px, 7vw, 104px);
}

.tear {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  padding: clamp(56px, 9%, 84px) clamp(36px, 9%, 84px) clamp(60px, 9.5%, 90px);
  background: url("img/torn-paper.png") center / 100% 100% no-repeat;
  transform: rotate(-1.4deg);
  filter: drop-shadow(0 14px 22px rgba(27, 25, 23, 0.16))
          drop-shadow(0 2px 4px rgba(27, 25, 23, 0.10));
}
@supports (background-image: url("a.webp")) {
  .tear { background-image: url("img/torn-paper.webp"); }
}

.tear-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.45rem, 3vw, 2.2rem);
  line-height: 1.3;
  color: var(--ink);
  text-align: center;
  text-indent: -0.42em; /* the opening quote mark hangs slightly left */
  max-width: 22ch;
  margin: 0 auto;
  transform: rotate(1.4deg); /* counter the sheet so the type sits level */
}

.hero-h1 { margin-bottom: 30px; }
.hero-h1 .why { color: var(--gold-deep); }
/* homepage hero variant: narrower column, longer quote */
.tear--hero { max-width: 560px; margin: 0; padding: 58px 48px 62px; }
.tear--hero .tear-quote { font-size: clamp(1.15rem, 1.7vw, 1.38rem); line-height: 1.42; max-width: none; text-indent: -0.4em; }
.tear--hero + .hero-creds { margin-top: 28px; }

.tear-attrib {
  display: block;
  margin-top: 24px;
  font-family: var(--display);
  font-weight: 700;
  font-style: normal;
  font-size: 0.86rem;
  letter-spacing: 0.02em;
  text-align: center;
  color: var(--gold-deep);
  transform: rotate(1.4deg);
}

/* -------------------------------------------------------- issues page ---- */
.issue { padding-block: 0 clamp(40px, 4.5vw, 60px); }
.issue h2 { scroll-margin-top: 110px; margin-bottom: 20px; }
.issue .prose p { font-size: 1.08rem; max-width: 66ch; }

/* ------------------------------------------------------- contact page ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 64px;
  align-items: start;
}

.reach-label {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.005em;
  color: var(--ink);
}
.reach-email {
  font-family: var(--serif);
  font-size: 1.3rem;
  line-height: 1.35;
  margin-top: 6px;
  word-break: break-word;
}
.reach-when { margin-top: 24px; font-size: 1.08rem; color: var(--ink); }
.reach-vote { margin-top: 12px; }
.reach-signs { margin-top: 18px; font-size: 1.05rem; color: var(--ink-2); max-width: 36ch; }

.contact-photo { margin-top: 40px; max-width: 420px; }

form h2 { margin-bottom: 26px; }

form .field { margin-bottom: 24px; }
form label,
form legend {
  display: block;
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin-bottom: 8px;
  padding: 0;
}
form .hint {
  display: block;
  font-family: var(--serif);
  font-size: 0.92rem;
  font-style: italic;
  letter-spacing: 0;
  color: var(--muted);
  font-weight: 400;
  margin-top: 3px;
}
form .req { color: var(--gold-deep); font-weight: 700; }

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  width: 100%;
  font-family: var(--serif);
  font-size: 1.05rem;
  line-height: 1.5;
  color: var(--ink);
  background: var(--paper-2);
  border: 1px solid var(--ink);
  border-radius: 2px;
  padding: 14px 16px;
  min-height: 52px;
}
textarea { min-height: 140px; resize: vertical; }
input:focus, textarea:focus { background: #fff; }

fieldset { border: 0; margin: 0 0 26px; padding: 0; }
.checks { display: grid; gap: 4px; }
.checks label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: 0;
  color: var(--ink);
  min-height: 46px;
  margin: 0;
  cursor: pointer;
}
.checks input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: var(--ink);
  flex: none;
  margin: 0;
}

.form-note { margin-top: 14px; font-size: 0.92rem; color: var(--muted); }

/* honeypot */
.hp {
  position: absolute !important;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  overflow: hidden;
}

/* -------------------------------------------------------- thanks page ---- */
.thanks { padding-block: clamp(72px, 10vw, 140px) clamp(72px, 10vw, 130px); }
.thanks .inner { max-width: 640px; }
.thanks h1 { margin-bottom: 22px; }
.thanks p { font-size: 1.2rem; color: var(--ink-2); max-width: 36ch; }

/* ================================================================ mobile == */
@media (max-width: 960px) {
  .split--7-5,
  .split--5-7,
  .split--6-6,
  .contact-grid,
  .footer-top { grid-template-columns: 1fr; }

  .split { gap: 40px; }
  .hero .split { gap: 36px; }

  /* hero: candid photo first on mobile */
  .hero-photo { order: -1; }
  .hero-photo img { aspect-ratio: 5 / 4; object-position: 50% 16%; }

  .footer-nav { justify-content: flex-start; }
  .footer-top { gap: 26px; align-items: start; }

  /* Meet Matt teaser: keep photo after text on small screens */
  .order-text { order: -1; }

  .why-photo { float: none; width: 100%; margin: 0 0 28px; }
  .why h2 { max-width: 100%; }
}

@media (max-width: 760px) {
  :root { --section: 64px; --gutter: 20px; }

  body { font-size: 1.0625rem; }

  .nav-toggle { display: inline-flex; }

  .masthead > nav { width: 100%; }

  .nav-list {
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
    padding-bottom: 14px;
  }
  .nav-list.is-open { display: flex; }
  .nav-list li { border-top: 1px solid var(--hair); }
  .nav-list a {
    display: block;
    padding: 16px 0;
    border-bottom: 0;
    min-height: 52px;
  }
  .nav-list a:hover { border-bottom: 0; }
  .nav-list .nav-cta { border-top: 0; padding-top: 14px; }
  .nav-list .nav-cta a { text-align: center; padding: 16px 20px; }

  .masthead { flex-wrap: wrap; gap: 0 16px; padding-block: 12px; }
  .logo img { width: 170px; }
  .nav-toggle { padding: 10px 12px; font-size: 0.72rem; gap: 8px; }

  .section--tight { padding-block: 44px; }

  .pair { grid-template-columns: 1fr; gap: 26px; }

  .photo-band img { height: clamp(260px, 80vw, 380px); }

  .pullbox { padding-left: 20px; }
  .tear { transform: rotate(-1deg); padding: 44px 26px 50px; }
  .tear--hero { padding: 42px 28px 48px; }
  .tear-quote, .tear-attrib { transform: rotate(1deg); }

  .site-footer .logo img { width: 200px; }
  .footer-inner { padding-block: 46px 30px; }
  .footer-nav { gap: 14px 22px; }
  .footer-vote { margin-top: 28px; }

  .contact-photo { margin-top: 32px; }
}

@media (max-width: 520px) {
  .btn { width: 100%; }
  .cta .btn-row { display: block; }
  .cta .or { display: block; margin-top: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
}

@media print {
  .site-header, .nav-toggle, .skip-link { display: none; }
  body { background: #fff; }
}

/* Where I Stand: last issue's own bottom padding already spaces it from the
   CTA band, so the list container adds nothing more — every gap stays equal */
.issues-list { padding-bottom: 0; }

/* -------------------------------------------------- recommended by --- */
.recs { background: var(--paper-2); border-block: 1px solid var(--hair); padding-block: clamp(40px, 5vw, 60px); }
.recs-h { text-align: center; font-size: clamp(1.4rem, 2.4vw, 1.8rem); margin-bottom: 28px; }
.recs-grid { display: grid; grid-template-columns: repeat(3, 1fr); align-items: center; max-width: 980px; margin: 0 auto; }
.rec { text-align: center; padding: 8px 28px; }
.rec + .rec { border-left: 1px solid var(--hair); }
.rec img { height: 76px; width: auto; margin: 0 auto 12px; }
.rec-mark { font-family: var(--display); font-weight: 800; font-size: 3rem; line-height: 76px; height: 76px; margin-bottom: 12px; color: var(--ink); letter-spacing: -0.01em; }
.rec-name { font-family: var(--display); font-weight: 700; font-size: 1rem; line-height: 1.3; color: var(--ink); }
.rec-sub { font-style: italic; font-size: 0.95rem; color: var(--muted); margin-top: 4px; }
@media (max-width: 760px) {
  .recs-grid { grid-template-columns: 1fr; gap: 26px; }
  .rec + .rec { border-left: 0; border-top: 1px solid var(--hair); padding-top: 26px; }
  .rec img, .rec-mark { height: 60px; line-height: 60px; }
}
