/* ==========================================================================
   Pancho's Promise — warm & emotional design system
   ========================================================================== */

:root {
  /* Warm, emotional palette */
  --cream: #FBF7F1;
  --cream-2: #F3EBDD;
  --ink: #2B201A;
  --ink-soft: #4A3A30;
  --muted: #6F6259;
  --line: #E6DCCC;

  --terracotta: #B85C38;
  --terracotta-dark: #9A4828;
  --gold: #C19434;
  --gold-soft: #E5C57E;
  --sage: #7C8F6E;

  /* Type */
  --font-display: 'Fraunces', 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;

  /* Sizing */
  --maxw: 1180px;
  --maxw-narrow: 760px;
  --radius: 14px;
  --radius-sm: 8px;

  /* Shadows */
  --shadow-sm: 0 2px 6px rgba(43, 32, 26, .06);
  --shadow-md: 0 14px 40px rgba(43, 32, 26, .14);
  --shadow-lg: 0 24px 60px rgba(43, 32, 26, .18);
}

/* Reset / base
   ========================================================================== */
*,
*::before,
*::after { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

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

a {
  color: var(--terracotta);
  text-decoration: none;
  transition: color .2s ease, opacity .2s ease;
}
a:hover { color: var(--terracotta-dark); }

/* Typography
   ========================================================================== */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  font-variation-settings: "opsz" 144, "SOFT" 50;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.12;
  margin: 0 0 .5em;
}

h1 { font-size: clamp(2.6rem, 5.6vw, 4.6rem); font-weight: 400; line-height: 1.05; }
h2 { font-size: clamp(2rem, 3.8vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2.2vw, 1.75rem); font-weight: 500; }
h4 { font-size: 1.15rem; font-weight: 600; letter-spacing: .02em; }

.eyebrow {
  font-family: var(--font-body);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin: 0 0 1rem;
}

.lede {
  font-size: clamp(1.15rem, 1.6vw, 1.35rem);
  line-height: 1.55;
  color: var(--ink-soft);
}

p { margin: 0 0 1.1em; }

blockquote {
  margin: 2rem 0;
  padding: 1.5rem 1.75rem;
  background: var(--cream-2);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--ink);
}

ul, ol { padding-left: 1.25rem; }
li + li { margin-top: .35em; }

/* Layout helpers
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow { max-width: var(--maxw-narrow); }

.section { padding: clamp(64px, 8vw, 120px) 0; }
.section--tight { padding: clamp(48px, 6vw, 80px) 0; }
.section--cream-2 { background: var(--cream-2); }
.section--ink { background: var(--ink); color: #F1E8DA; }
.section--ink h1, .section--ink h2, .section--ink h3 { color: #F8EFDD; }
.section--ink .eyebrow { color: var(--gold-soft); }

/* Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55em;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: .01em;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, color .18s ease, box-shadow .18s ease;
  white-space: nowrap;
}
.btn--primary {
  background: var(--terracotta);
  color: #fff;
  box-shadow: 0 6px 18px rgba(184, 92, 56, .28);
}
.btn--primary:hover {
  background: var(--terracotta-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(184, 92, 56, .35);
}
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: var(--cream); }
.btn--light {
  background: rgba(255,255,255,.95);
  color: var(--ink);
}
.btn--light:hover { background: #fff; transform: translateY(-1px); }
.btn--lg { padding: 17px 32px; font-size: 1.05rem; }

.btn .arrow { transition: transform .18s ease; }
.btn:hover .arrow { transform: translateX(3px); }

/* Header / nav
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 247, 241, .85);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid rgba(230, 220, 204, .6);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
}
.brand__mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--gold-soft);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0;
}
.brand__name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: -.005em;
  line-height: 1;
}
.brand__name small {
  display: block;
  font-family: var(--font-body);
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav__list {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__list li {
  margin: 0;
  padding: 0;
  display: block;
  line-height: 1;
}
.nav__link {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  font-size: .95rem;
  font-weight: 500;
  line-height: 1;
  color: var(--ink-soft);
  border-radius: 8px;
}
.nav__link:hover { color: var(--ink); background: rgba(230, 220, 204, .55); }
.nav__link.is-active { color: var(--ink); }
.nav__cta { margin-left: 8px; }

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  width: 44px;
  height: 44px;
  cursor: pointer;
  color: var(--ink);
}
.nav-toggle svg { width: 24px; height: 24px; }

@media (max-width: 880px) {
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    padding: 16px 24px 24px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }
  .nav.is-open { display: flex; }
  .nav__list { flex-direction: column; gap: 0; }
  .nav__link { padding: 12px 14px; font-size: 1rem; }
  .nav__cta { margin: 12px 0 0; align-self: flex-start; }
}

/* Hero
   ========================================================================== */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: #F8EFDD;
  isolation: isolate;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: saturate(1.05) contrast(1.02);
}
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(43,32,26,.15) 0%, rgba(43,32,26,.55) 60%, rgba(43,32,26,.85) 100%),
    linear-gradient(90deg, rgba(43,32,26,.55) 0%, rgba(43,32,26,0) 60%);
}
.hero__inner {
  position: relative;
  padding: clamp(110px, 18vw, 200px) 0 clamp(80px, 12vw, 140px);
  max-width: 760px;
}
.hero h1 {
  color: #FFF6E4;
  margin-bottom: .35em;
}
.hero__sub {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  font-style: italic;
  color: var(--gold-soft);
  margin: 0 0 1.4em;
}
.hero__lede {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  color: #EFE4D2;
  max-width: 60ch;
  margin: 0 0 2em;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* Page header (for non-home pages)
   ========================================================================== */
.page-header {
  background: var(--cream-2);
  padding: clamp(80px, 10vw, 140px) 0 clamp(40px, 5vw, 60px);
  border-bottom: 1px solid var(--line);
}
.page-header .eyebrow { color: var(--terracotta); }
.page-header h1 { max-width: 18ch; }
.page-header .lede { max-width: 60ch; margin-top: 1rem; }

/* Two-column story block
   ========================================================================== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
.split--reverse > :first-child { order: 2; }
.split__media {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 5;
}
.split__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.split__media--wide { aspect-ratio: 5 / 4; }

@media (max-width: 820px) {
  .split { grid-template-columns: 1fr; gap: 36px; }
  .split--reverse > :first-child { order: 0; }
  .split__media { aspect-ratio: 4 / 3; }
}

/* Cards / grid
   ========================================================================== */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
  display: flex;
  flex-direction: column;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.card__icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(184, 92, 56, .12);
  color: var(--terracotta);
  margin-bottom: 14px;
  font-size: 1.2rem;
}
.card h3 { margin-bottom: 8px; }
.card p { color: var(--ink-soft); margin-bottom: 0; font-size: .98rem; }

a.card { color: inherit; }
a.card:hover { color: inherit; }
a.card .card__more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  padding-top: 18px;
  font-weight: 600;
  font-size: .92rem;
  color: var(--terracotta);
}
a.card:hover .card__more { color: var(--terracotta-dark); }

/* Q&A blocks (Did You Know) and stats
   ========================================================================== */
.qa-list { display: grid; gap: 22px; }
.qa {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 30px;
  box-shadow: var(--shadow-sm);
}
.qa h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-style: italic;
  font-weight: 400;
  color: var(--terracotta);
  margin-bottom: .55em;
}
.qa p { color: var(--ink-soft); margin: 0; }
.qa p + p { margin-top: 1em; }

.stat-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin: 2.5rem 0;
}
.stat {
  background: var(--cream-2);
  border-radius: var(--radius);
  padding: 24px 22px;
  min-width: 0;
}
.stat__num {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.2vw, 1.85rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--terracotta);
  margin-bottom: 10px;
  word-break: keep-all;
  overflow-wrap: normal;
  hyphens: none;
}
.stat__lbl { color: var(--ink-soft); font-size: .98rem; }

/* List comparing licensed/unlicensed professions */
.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 2rem 0;
}
.compare__col {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 26px;
}
.compare__col h4 {
  font-family: var(--font-body);
  font-size: .8rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.compare__col--no h4 { color: var(--terracotta); }
.compare__col--yes h4 { color: var(--sage); }
.compare__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
  font-size: .98rem;
  color: var(--ink-soft);
}
.compare__col li::before {
  content: "·";
  color: var(--gold);
  font-weight: bold;
  margin-right: 8px;
}
@media (max-width: 700px) {
  .compare { grid-template-columns: 1fr; }
}

/* Requirement chips list (The Solution) */
.req-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 14px;
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}
.req-list li {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: .98rem;
  color: var(--ink-soft);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.req-list li::before {
  content: "";
  flex: 0 0 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--terracotta);
  margin-top: 9px;
}

/* CTA banner
   ========================================================================== */
.cta-banner {
  background: var(--ink);
  color: #F8EFDD;
  border-radius: var(--radius);
  padding: clamp(40px, 6vw, 64px);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  align-items: center;
}
.cta-banner h2 { color: #FFF6E4; margin-bottom: .4em; }
.cta-banner p { color: #E2D6BF; margin-bottom: 0; max-width: 50ch; }
.cta-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-self: end;
}
@media (max-width: 760px) {
  .cta-banner { grid-template-columns: 1fr; }
  .cta-banner__actions { justify-self: start; }
}

/* Form
   ========================================================================== */
.form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 44px);
  box-shadow: var(--shadow-sm);
  display: grid;
  gap: 18px;
}
.field { display: grid; gap: 6px; }
.field label {
  font-size: .9rem;
  font-weight: 600;
  color: var(--ink);
}
.field .hint { font-size: .85rem; color: var(--muted); }
.field input,
.field select,
.field textarea {
  font: inherit;
  color: inherit;
  background: var(--cream);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  width: 100%;
  transition: border-color .15s ease, background .15s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--terracotta);
  background: #fff;
}
.field textarea { min-height: 160px; resize: vertical; }
.form__actions {
  display: flex;
  gap: 12px;
  justify-content: flex-start;
  margin-top: 6px;
}

/* Footer
   ========================================================================== */
.site-footer {
  background: var(--ink);
  color: #C9BCA8;
  padding: 64px 0 28px;
}
.site-footer a { color: var(--gold-soft); }
.site-footer a:hover { color: #fff; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 36px;
}
.footer-brand p {
  margin-top: 16px;
  max-width: 36ch;
  font-size: .95rem;
}
.footer-col h4 {
  font-family: var(--font-body);
  font-size: .8rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #F1E2C2;
  margin-bottom: 14px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; font-size: .95rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
  align-items: center;
  font-size: .85rem;
  color: #8C8071;
}
@media (max-width: 760px) {
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}

/* Misc
   ========================================================================== */
.section-title {
  text-align: center;
  margin-bottom: clamp(36px, 5vw, 56px);
}
.section-title .eyebrow { display: inline-block; }
.section-title p { color: var(--ink-soft); max-width: 56ch; margin: .8rem auto 0; }

.divider {
  border: 0;
  height: 1px;
  background: var(--line);
  margin: 0;
}

/* Victory banner (HB 285 passed)
   ========================================================================== */
.victory {
  position: relative;
  background: linear-gradient(135deg, #2B201A 0%, #3A2A20 60%, #5A3A22 100%);
  color: #F8EFDD;
  padding: clamp(48px, 6vw, 80px) 0;
  border-top: 4px solid var(--gold);
  overflow: hidden;
}
.victory::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 30%, rgba(229, 197, 126, .18) 0%, transparent 55%),
    radial-gradient(circle at 10% 80%, rgba(184, 92, 56, .22) 0%, transparent 50%);
  pointer-events: none;
}
.victory__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 36px;
}
.victory__seal {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px 6px 8px;
  border-radius: 999px;
  background: rgba(229, 197, 126, .15);
  border: 1px solid rgba(229, 197, 126, .35);
  color: var(--gold-soft);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.victory__seal-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(229, 197, 126, .25);
}
.victory h2 {
  color: #FFF6E4;
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  margin-bottom: .35em;
  max-width: 22ch;
}
.victory p {
  color: #E2D6BF;
  margin: 0;
  max-width: 60ch;
  font-size: 1.05rem;
}
.victory__cta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}
.victory__meta {
  font-size: .85rem;
  color: var(--gold-soft);
  text-align: right;
  line-height: 1.5;
}
.victory__photo {
  position: relative;
  margin: 40px auto 0;
  display: grid;
  justify-items: center;
  gap: 14px;
  max-width: 720px;
}
.victory__photo img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 1px solid rgba(229, 197, 126, .22);
  box-shadow: 0 22px 44px -20px rgba(0, 0, 0, .65);
}
.victory__photo figcaption {
  font-size: .9rem;
  font-style: italic;
  line-height: 1.5;
  text-align: center;
  color: var(--gold-soft);
  max-width: 60ch;
}
@media (max-width: 760px) {
  .victory__inner { grid-template-columns: 1fr; }
  .victory__cta { align-items: flex-start; }
  .victory__meta { text-align: left; }
  .victory__photo { margin-top: 28px; }
}

/* Tribute / legislator credit
   ========================================================================== */
.tribute__inner {
  display: grid;
  grid-template-columns: minmax(280px, 420px) 1fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}
.tribute__photo {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: #fff;
}
.tribute__photo img {
  display: block;
  width: 100%;
  height: auto;
}
.tribute__photo figcaption {
  padding: 14px 18px 16px;
  font-size: .88rem;
  color: var(--ink-soft);
  text-align: center;
  border-top: 1px solid var(--line);
  background: #fff;
}
.tribute__body .eyebrow { color: var(--terracotta); }
.tribute__body h2 { margin-bottom: .35em; }
.tribute__body .lede { margin-top: 0; }
.tribute__body p { color: var(--ink-soft); }
.tribute__body p + p { margin-top: 1em; }
@media (max-width: 820px) {
  .tribute__inner { grid-template-columns: 1fr; }
  .tribute__photo { max-width: 420px; margin: 0 auto; }
}

/* Video feature
   ========================================================================== */
.video-feature__head {
  max-width: 60ch;
  margin: 0 auto 36px;
  text-align: center;
}
.video-feature__head h2 {
  margin: .35em 0 .5em;
}
.video-feature__sub {
  color: var(--gold-soft);
  font-size: 1.08rem;
  margin: 0;
}
.video-feature__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  max-width: 1180px;
  margin: 0 auto;
}
@media (max-width: 860px) {
  .video-feature__grid { grid-template-columns: 1fr; gap: 36px; }
}
.video-feature__media {
  margin: 0;
  border: 1px solid rgba(229, 197, 126, .22);
  border-radius: 14px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .45);
  display: flex;
  flex-direction: column;
}
.video-feature__media video {
  display: block;
  width: 100%;
  height: auto;
  background: #000;
}
.video-feature__media figcaption {
  padding: 18px 24px 22px;
  font-size: .95rem;
  color: var(--gold-soft);
  text-align: center;
  background: rgba(0, 0, 0, .35);
  border-top: 1px solid rgba(229, 197, 126, .18);
}
.video-feature__media figcaption strong { color: #F8EFDD; }
.video-feature__note {
  display: block;
  max-width: 62ch;
  margin: 10px auto 0;
  font-size: .9rem;
  line-height: 1.55;
  color: #D9C99A;
}

/* Press / news list
   ========================================================================== */
.press-list {
  display: grid;
  gap: 18px;
}
.press-item {
  display: grid;
  grid-template-columns: 160px 1fr auto;
  gap: 28px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.press-item:first-child { padding-top: 0; }
.press-item:last-child { border-bottom: 0; }
.press-item__meta {
  font-size: .85rem;
  color: var(--muted);
  letter-spacing: .04em;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.press-item__outlet {
  font-weight: 600;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .78rem;
}
.press-item__title {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1.6vw, 1.4rem);
  font-weight: 500;
  line-height: 1.25;
  margin: 0 0 8px;
}
.press-item__title a { color: var(--ink); }
.press-item__title a:hover { color: var(--terracotta); }
.press-item__blurb {
  color: var(--ink-soft);
  font-size: .98rem;
  margin: 0;
}
.press-item__visit {
  align-self: center;
  font-weight: 600;
  font-size: .9rem;
  white-space: nowrap;
  color: var(--terracotta);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.press-item__visit:hover { color: var(--terracotta-dark); }

@media (max-width: 760px) {
  .press-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .press-item__visit { justify-self: start; margin-top: 4px; }
}

/* Featured press quote */
.press-quote {
  background: var(--cream-2);
  border-radius: var(--radius);
  padding: clamp(32px, 4vw, 48px);
  margin: 0 0 48px;
  border-left: 4px solid var(--gold);
}
.press-quote blockquote {
  background: transparent;
  border: 0;
  padding: 0;
  margin: 0 0 16px;
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  line-height: 1.4;
}
.press-quote cite {
  display: block;
  font-style: normal;
  font-size: .9rem;
  color: var(--muted);
  letter-spacing: .04em;
}
.press-quote cite strong { color: var(--ink); font-weight: 600; }

/* Press section filter chips (jump anchors) */
.press-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 28px;
}
.press-filters a {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  font-size: .88rem;
  font-weight: 500;
  color: var(--ink-soft);
}
.press-filters a:hover {
  background: var(--cream-2);
  border-color: var(--gold);
  color: var(--ink);
}

/* Sub-section heading inside press page */
.press-section {
  scroll-margin-top: 90px;
  margin-top: clamp(40px, 5vw, 64px);
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.press-section:first-of-type { margin-top: 0; padding-top: 0; border-top: 0; }
.press-section h2 {
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  margin-bottom: 6px;
}
.press-section p.lede { margin-bottom: 28px; max-width: 60ch; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
