:root {
  --ink: #070707;
  --muted: #595959;
  --paper: #fbfbf8;
  --line: #d8d8d0;
  --blue: #c2dee3;
  --mint: #d7ef85;
  --peach: #ffd1b8;
  --lavender: #d8d2ff;
  --yellow: #f7e27c;
  --card-radius: 8px;
  --soft-radius: 24px;
  --shadow: 0 16px 42px rgba(20, 20, 20, 0.07);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

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

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  height: 100%;
  width: 100%;
  object-fit: cover;
  filter: grayscale(25%) sepia(20%) contrast(1.1);
  transition: filter 0.4s ease, transform 0.4s ease;
}

a:hover img,
button:hover img {
  filter: grayscale(0%) sepia(0%) contrast(1);
}

button {
  border: 0;
  color: inherit;
  font: inherit;
}

.site-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 17px clamp(18px, 3vw, 34px);
  border-bottom: 1px solid rgba(7, 7, 7, 0.08);
}

.brand {
  font-size: clamp(1.45rem, 2vw, 1.9rem);
  font-weight: 900;
  letter-spacing: -0.06em;
  transform: skewX(-8deg);
}

.primary-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(14px, 1.8vw, 27px);
  font-size: 0.82rem;
}

.primary-nav a {
  position: relative;
  padding-block: 6px;
}

.primary-nav span {
  color: var(--muted);
  font-size: 0.72em;
}

.primary-nav a:last-child::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  background: var(--ink);
  content: "";
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.icon-button,
.menu-button,
.round-link,
.plus-button {
  display: inline-grid;
  place-items: center;
  cursor: pointer;
}

.icon-button,
.round-link,
.plus-button {
  width: 42px;
  height: 42px;
  border-radius: 999px;
}

.search-button {
  position: relative;
  background: var(--ink);
}

.search-button::before {
  width: 13px;
  height: 13px;
  border: 2px solid #fff;
  border-radius: 999px;
  content: "";
}

.search-button::after {
  position: absolute;
  width: 8px;
  height: 2px;
  margin-top: 14px;
  margin-left: 14px;
  background: #fff;
  border-radius: 2px;
  content: "";
  transform: rotate(45deg);
}

.menu-button {
  min-height: 42px;
  padding: 0 21px;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  background: transparent;
  font-size: 0.95rem;
}

.search-is-open {
  overflow: hidden;
}

.menu-is-open {
  overflow: hidden;
}

.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: start center;
  overflow-y: auto;
  padding: clamp(18px, 4vw, 48px);
  background: rgba(7, 7, 7, 0.38);
  backdrop-filter: blur(10px);
}

.search-overlay[hidden] {
  display: none;
}

.search-panel {
  width: min(920px, 100%);
  margin-top: clamp(28px, 6vh, 72px);
  border: 1.5px solid var(--ink);
  border-radius: 18px;
  background: var(--paper);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.22);
  overflow: hidden;
}

.search-panel-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: start;
  padding: clamp(20px, 3vw, 32px);
  border-bottom: 1px solid var(--line);
}

.search-panel h2 {
  max-width: 680px;
  margin: 14px 0 0;
  font-size: clamp(2.7rem, 7vw, 5.8rem);
  line-height: 0.9;
  letter-spacing: -0.07em;
  transform: skewX(-8deg);
}

.search-close {
  position: relative;
  width: 44px;
  height: 44px;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  background: #fff;
  cursor: pointer;
}

.search-close::before,
.search-close::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  content: "";
}

.search-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.search-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.search-field {
  display: grid;
  gap: 10px;
  padding: clamp(18px, 3vw, 30px) clamp(20px, 3vw, 32px) 14px;
  font-size: 0.82rem;
  font-weight: 850;
}

.search-field input {
  width: 100%;
  min-height: 62px;
  padding: 0 18px;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  outline: 0;
}

.search-field input:focus {
  box-shadow: 0 0 0 4px var(--yellow);
}

.search-status {
  padding: 0 clamp(20px, 3vw, 32px) 16px;
  color: var(--muted);
  font-size: 0.9rem;
}

.search-results {
  display: grid;
  max-height: min(54vh, 620px);
  overflow-y: auto;
  border-top: 1px solid var(--line);
}

.search-result {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: clamp(14px, 2vw, 24px);
  padding: clamp(15px, 2vw, 22px) clamp(20px, 3vw, 32px);
  border-bottom: 1px solid var(--line);
  background: #fff;
  transition: background 0.2s ease, transform 0.2s ease;
}

.search-result:hover {
  background: var(--mint);
  transform: translateX(5px);
}

.search-result img {
  aspect-ratio: 1 / 1;
  height: auto;
  border: 1px solid rgba(7, 7, 7, 0.12);
  border-radius: 8px;
}

.search-result span {
  display: grid;
  align-content: center;
  gap: 7px;
  min-width: 0;
}

.search-result small,
.search-result em {
  color: var(--muted);
  font-size: 0.76rem;
  font-style: normal;
  font-weight: 800;
}

.search-result strong {
  font-size: clamp(1.15rem, 2vw, 1.65rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.search-result p,
.search-empty p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.search-empty {
  padding: clamp(24px, 4vw, 42px) clamp(20px, 3vw, 32px);
  background: var(--blue);
}

.search-empty h3 {
  margin: 0 0 8px;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  letter-spacing: -0.05em;
}

.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 75;
  display: grid;
  justify-items: end;
  padding: clamp(12px, 2vw, 24px);
  background: rgba(7, 7, 7, 0.36);
  backdrop-filter: blur(8px);
}

.menu-overlay[hidden] {
  display: none;
}

.menu-panel {
  display: grid;
  grid-template-rows: auto 1fr auto;
  width: min(430px, 100%);
  min-height: min(720px, 100%);
  border: 1.5px solid var(--ink);
  border-radius: 18px;
  background: var(--paper);
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.24);
  overflow: hidden;
}

.menu-panel-top,
.menu-panel-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 22px;
}

.menu-panel-top {
  border-bottom: 1px solid var(--line);
}

.menu-panel-top h2 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 0.9;
  letter-spacing: -0.065em;
  transform: skewX(-8deg);
}

.menu-close {
  position: relative;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  background: #fff;
  cursor: pointer;
}

.menu-close::before,
.menu-close::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  content: "";
}

.menu-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.menu-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.menu-panel-nav {
  display: grid;
  align-content: start;
}

.menu-panel-nav a {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
  font-size: clamp(1.35rem, 4vw, 2rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.055em;
  transition: background 0.2s ease, padding-left 0.2s ease;
}

.menu-panel-nav a:hover {
  padding-left: 30px;
  background: var(--yellow);
}

.menu-panel-nav span {
  color: var(--muted);
  font-size: 0.48em;
  letter-spacing: 0;
}

.menu-panel-footer {
  border-top: 1px solid var(--ink);
  background: var(--ink);
}

.menu-panel-footer a {
  display: inline-grid;
  place-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: #fff;
  font-weight: 900;
  font-size: 0.86rem;
}

main {
  overflow: hidden;
}

.hero-section,
.editors-section,
.category-section,
.media-section,
.pulse-section,
.latest-section {
  padding-inline: clamp(18px, 3vw, 34px);
}

.topic-strip {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 15px clamp(18px, 3vw, 34px) 0;
  scrollbar-width: none;
}

.topic-strip::-webkit-scrollbar {
  display: none;
}

.topic-strip a {
  flex: 0 0 auto;
  padding: 8px 14px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 850;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.topic-strip a:first-child {
  background: var(--ink);
  color: var(--paper);
}

.topic-strip a:hover {
  background: var(--ink);
  color: var(--paper);
  transform: translateY(-2px) skewX(-5deg);
}

.hero-section {
  padding-top: clamp(34px, 5vw, 74px);
}

.section-heading {
  display: flex;
  align-items: baseline;
  gap: 18px;
  margin-bottom: clamp(24px, 3.2vw, 44px);
}

.section-heading h1,
.category-title-row h2,
.compact-heading h2 {
  margin: 0;
  font-weight: 950;
  letter-spacing: -0.085em;
  line-height: 0.92;
}

.section-heading h1 {
  font-size: clamp(3.8rem, 8.4vw, 8rem);
  transform: skewX(-8deg);
}

.text-link {
  font-size: 0.86rem;
  font-weight: 760;
  white-space: nowrap;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.38fr);
  gap: clamp(16px, 2.1vw, 28px);
  align-items: stretch;
}

.feature-card,
.pick-card,
.rail-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--soft-radius);
  background: #e9e8e1;
  box-shadow: var(--shadow);
  transition: transform 280ms ease, box-shadow 280ms ease;
}

.feature-card > img,
.pick-card > img {
  position: absolute;
  inset: 0;
  transition: filter 280ms ease, transform 520ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.feature-card:hover,
.pick-card:hover,
.rail-card-feature:hover,
.image-loop-card:hover {
  z-index: 5;
  transform: translateY(-5px) scale(1.012);
  box-shadow: 0 24px 58px rgba(20, 20, 20, 0.14);
}

.feature-card:hover > img,
.pick-card:hover > img,
.rail-card-feature:hover img,
.image-loop-card:hover img {
  filter: saturate(1.08) contrast(1.02);
  transform: scale(1.045);
}

.large-card {
  min-height: clamp(410px, 39vw, 575px);
}

.floating-meta {
  position: absolute;
  z-index: 2;
  display: grid;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 800;
}

.top-left {
  top: 24px;
  left: 24px;
}

.top-right {
  top: 24px;
  right: 24px;
  justify-items: end;
}

.floating-meta span:first-child,
.ghost-pill,
.outline-pill,
.category-chip {
  width: max-content;
  border-radius: 999px;
}

.floating-meta span:first-child {
  padding: 9px 14px;
  background: rgba(255, 255, 255, 0.92);
}

.ghost-pill {
  padding: 7px 14px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  color: #fff;
  backdrop-filter: blur(8px);
}

.story-title {
  position: absolute;
  top: 26px;
  right: 26px;
  z-index: 3;
  max-width: min(390px, 58%);
  transition: transform 260ms ease;
}

.feature-card:hover .story-title {
  transform: translate(-7px, 6px) rotate(-1deg);
}

.label-stack {
  display: grid;
  justify-items: start;
}

.tiny-dot,
.story-title h2 {
  background: #fff;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.tiny-dot {
  padding: 8px 14px 4px;
  border-radius: 12px 12px 0 0;
  font-size: 0.83rem;
  font-weight: 900;
}

.tiny-dot::before {
  content: "* ";
}

.story-title h2 {
  margin: 0;
  padding: 8px 18px 14px;
  border-radius: 0 14px 14px 14px;
  font-size: clamp(1.85rem, 2.8vw, 3.35rem);
  line-height: 0.95;
  letter-spacing: -0.075em;
}

.round-link {
  position: relative;
  z-index: 4;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.92);
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1;
  transition: background 180ms ease, color 180ms ease, transform 220ms ease;
}

.round-link:hover {
  background: var(--ink);
  color: #fff;
  transform: rotate(8deg) scale(1.06);
}

.arrow-loop span {
  display: block;
  transition: transform 260ms ease, opacity 260ms ease;
}

.arrow-loop::after {
  position: absolute;
  display: grid;
  inset: 0;
  place-items: center;
  content: "\2197";
  opacity: 0;
  transform: translate(-58%, 58%);
  transition: transform 260ms ease, opacity 260ms ease;
}

.arrow-loop:hover span {
  opacity: 0;
  transform: translate(58%, -58%);
}

.arrow-loop:hover::after {
  opacity: 1;
  transform: translate(0, 0);
}

.bottom-right {
  position: absolute;
  right: 24px;
  bottom: 24px;
}

.side-stack {
  display: grid;
  grid-template-rows: 0.9fr 1.1fr;
  gap: clamp(16px, 2.1vw, 28px);
}

.ad-panel {
  display: grid;
  grid-template-rows: auto auto auto 1fr;
  align-content: stretch;
  gap: 10px;
  min-height: 230px;
  padding: clamp(21px, 2.3vw, 28px);
  border-radius: var(--soft-radius);
  background: var(--blue);
}

.ad-topline {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 16px;
}

.outline-pill {
  padding: 5px 14px;
  border: 1.5px solid var(--ink);
  font-size: 0.77rem;
  font-weight: 900;
}

.plus-button {
  position: relative;
  background: #fff;
  transition: transform 220ms ease, background 180ms ease;
}

.plus-button:hover {
  background: var(--mint);
  transform: rotate(90deg) scale(1.04);
}

.plus-button::before,
.plus-button::after {
  position: absolute;
  width: 13px;
  height: 2px;
  background: var(--ink);
  border-radius: 3px;
  content: "";
}

.plus-button::after {
  transform: rotate(90deg);
}

.ad-panel p {
  max-width: 185px;
  margin: 12px 0 0;
  font-size: 0.96rem;
  line-height: 1.18;
}

.ad-panel h2 {
  max-width: 270px;
  margin: 0;
  font-size: clamp(1.48rem, 1.95vw, 2.25rem);
  line-height: 0.98;
  letter-spacing: -0.065em;
  text-wrap: balance;
}

.ad-panel a {
  align-self: end;
  justify-self: end;
  margin-top: 8px;
  border-bottom: 1.5px solid var(--ink);
  font-size: 0.88rem;
  font-weight: 850;
  line-height: 1.1;
}

.pick-card {
  min-height: 300px;
}

.issue-badge {
  position: absolute;
  top: 27px;
  right: 27px;
  display: grid;
  width: 45px;
  height: 45px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 999px;
  color: #fff;
  font-size: 0.82rem;
}

.pick-cta {
  position: absolute;
  right: 20px;
  bottom: 20px;
  padding: 18px 24px;
  border-radius: 999px;
  background: #fff;
  font-size: clamp(1.05rem, 1.35vw, 1.45rem);
  font-weight: 900;
  letter-spacing: -0.06em;
  transition: transform 220ms ease, background 180ms ease;
}

.text-arrow span {
  display: inline-block;
  transition: transform 220ms ease;
}

.text-arrow:hover {
  background: var(--mint);
  transform: translateY(-3px);
}

.text-arrow:hover span {
  transform: translateX(7px);
}

.editors-section {
  padding-top: clamp(58px, 7vw, 98px);
}

.editors-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr 1.15fr;
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.loop-card {
  position: relative;
  min-height: 290px;
  overflow: hidden;
  padding: clamp(20px, 2.4vw, 30px);
  background: var(--paper);
}

.image-loop-card {
  display: grid;
  align-content: end;
  color: #fff;
  transition: transform 280ms ease, box-shadow 280ms ease;
}

a.image-loop-card {
  text-decoration: none;
}

.image-loop-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 35%, rgba(0, 0, 0, 0.64));
  content: "";
}

.image-loop-card img {
  position: absolute;
  inset: 0;
  transition: filter 280ms ease, transform 520ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.image-loop-card .category-chip,
.image-loop-card h3 {
  position: relative;
  z-index: 2;
}

.loop-card h3 {
  margin: 0;
  font-size: clamp(1.55rem, 2.15vw, 2.45rem);
  line-height: 0.98;
  letter-spacing: -0.07em;
}

.text-loop-card {
  display: grid;
  align-content: space-between;
  gap: 28px;
  transition: background 220ms ease, transform 220ms ease;
}

.text-loop-card:hover {
  background: var(--yellow);
  transform: translateY(-4px);
}

.text-loop-card p {
  max-width: 28ch;
  margin: 0;
  color: var(--muted);
  line-height: 1.43;
}

.mint-card {
  background: var(--mint);
}

.issue-label {
  width: max-content;
  padding: 7px 12px;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 900;
}

.category-section {
  padding-top: clamp(64px, 8vw, 110px);
}

.category-title-row {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 16px;
  margin-bottom: clamp(30px, 4.5vw, 58px);
}

.category-title-row h2 {
  font-size: clamp(3.6rem, 7.4vw, 7.2rem);
  transform: skewX(-8deg);
}

.category-title-row span {
  font-size: 0.84rem;
  font-weight: 800;
}

.story-rail {
  display: grid;
  grid-template-columns: minmax(230px, 0.42fr) minmax(430px, 1fr) minmax(230px, 0.42fr);
  gap: clamp(18px, 2.4vw, 32px);
  align-items: start;
}

.rail-card {
  box-shadow: none;
}

.rail-card-small {
  display: grid;
  gap: 16px;
  overflow: visible;
  background: transparent;
}

.rail-card-small img {
  height: clamp(260px, 27vw, 405px);
  border-radius: var(--soft-radius);
  transition: filter 280ms ease, transform 420ms ease;
}

.rail-card-small:hover img {
  filter: saturate(1.08) contrast(1.03);
  transform: translateY(-5px) scale(1.025);
}

.rail-card-small:hover {
  z-index: 4;
}

.rail-card-small .round-link {
  position: absolute;
  top: 26px;
  right: 24px;
}

.rail-copy {
  padding-inline: 8px;
}

.rail-copy span {
  display: block;
  margin-bottom: 10px;
  font-size: 0.88rem;
  font-weight: 850;
}

.rail-copy span::before {
  content: "* ";
}

.rail-copy h3,
.latest-grid h3 {
  margin: 0;
  font-size: clamp(1.45rem, 1.9vw, 2.3rem);
  line-height: 0.98;
  letter-spacing: -0.07em;
}

.rail-card-feature {
  min-height: clamp(420px, 40vw, 585px);
  background: #f8e7b8;
  transition: transform 280ms ease, box-shadow 280ms ease;
}

.rail-card-feature img {
  position: absolute;
  inset: 0;
  z-index: 1;
  object-position: center bottom;
}

.rail-feature-copy {
  position: relative;
  z-index: 2;
  max-width: 520px;
  padding: clamp(25px, 3vw, 44px);
}

.rail-feature-copy h3 {
  margin: 0 0 32px;
  width: min(500px, 83%);
  font-size: clamp(1.95rem, 2.75vw, 3.5rem);
  line-height: 0.98;
  letter-spacing: -0.075em;
}

.media-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) 1fr;
  gap: clamp(22px, 3vw, 44px);
  padding-top: clamp(60px, 7vw, 96px);
}

.media-heading h2 {
  max-width: 600px;
  margin: 0 0 18px;
  font-size: clamp(3rem, 5.5vw, 6rem);
  line-height: 0.94;
  letter-spacing: -0.085em;
  transform: skewX(-8deg);
}

.media-heading p {
  max-width: 33ch;
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.45;
}

.media-grid {
  display: grid;
  gap: 1px;
  border: 1px solid var(--ink);
  background: var(--ink);
}

.media-grid article {
  display: grid;
  grid-template-columns: 108px 1fr auto;
  align-items: center;
  gap: 20px;
  min-height: 112px;
  padding: 22px;
  background: var(--yellow);
  transition: transform 220ms ease, filter 220ms ease;
}

.media-grid article:hover {
  z-index: 2;
  filter: saturate(1.08);
  transform: translateX(8px);
}

.media-grid article a {
  transition: transform 180ms ease;
}

.media-grid article:hover a {
  transform: translateX(5px);
}

.media-grid article:nth-child(2) {
  background: var(--lavender);
}

.media-grid article:nth-child(3) {
  background: var(--blue);
}

.media-grid span,
.media-grid a {
  font-size: 0.78rem;
  font-weight: 900;
}

.media-grid h3 {
  margin: 0;
  font-size: clamp(1.35rem, 1.9vw, 2.2rem);
  line-height: 1;
  letter-spacing: -0.065em;
}

.pulse-section {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: clamp(18px, 2.4vw, 32px);
  padding-top: clamp(58px, 7vw, 96px);
}

.pulse-panel {
  padding: clamp(22px, 3vw, 36px);
  border: 1.5px solid var(--ink);
  border-radius: var(--soft-radius);
  background: var(--paper);
}

.pulse-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.pulse-heading h2 {
  margin: 0;
  font-size: clamp(2.5rem, 4.7vw, 5.2rem);
  line-height: 0.92;
  letter-spacing: -0.085em;
  transform: skewX(-8deg);
}

.trend-list {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.trend-list li {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  align-items: center;
  min-height: 76px;
  border-bottom: 1px solid var(--line);
  transition: background 190ms ease, min-height 220ms ease, padding-inline 220ms ease;
}

.trend-list li:hover {
  min-height: 88px;
  padding-inline: 12px;
  background: #fff;
}

.trend-list span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
  transition: background 180ms ease, color 180ms ease, transform 220ms ease;
}

.trend-list li:hover span {
  background: var(--ink);
  color: var(--paper);
  transform: rotate(-8deg);
}

.trend-list a {
  font-size: clamp(1.35rem, 2vw, 2.15rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.065em;
  transition: transform 220ms ease;
}

.trend-list li:hover a {
  transform: translateX(6px);
}

.category-directory {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1.5px solid var(--ink);
  border-radius: var(--soft-radius);
  background: var(--ink);
}

.category-directory a {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  background: var(--blue);
  font-size: clamp(1.05rem, 1.4vw, 1.35rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  transition: filter 180ms ease, transform 220ms ease;
}

.category-directory a:hover {
  z-index: 2;
  filter: saturate(1.12);
  transform: scale(1.035) rotate(-1deg);
}

.category-directory a:nth-child(4n + 2),
.category-directory a:nth-child(4n + 3) {
  background: var(--peach);
}

.category-directory a:nth-child(5n) {
  background: var(--mint);
}

.category-directory span {
  display: grid;
  min-width: 34px;
  height: 28px;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 0.74rem;
  letter-spacing: 0;
}

.latest-section {
  padding-top: clamp(58px, 7vw, 96px);
  padding-bottom: clamp(50px, 7vw, 80px);
}

.compact-heading {
  margin-bottom: 34px;
}

.compact-heading h2 {
  font-size: clamp(2.85rem, 5.8vw, 5.8rem);
  transform: skewX(-8deg);
}

.latest-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.latest-grid article {
  min-height: 190px;
  padding: clamp(21px, 2.6vw, 31px);
  background: var(--paper);
}

.category-chip {
  display: inline-block;
  margin-bottom: 24px;
  padding: 8px 14px;
  background: var(--lavender);
  font-size: 0.78rem;
  font-weight: 900;
}

.category-chip.lime {
  background: var(--mint);
}

.category-chip.peach {
  background: var(--peach);
}

.latest-grid p {
  max-width: 31ch;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.45;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(300px, 0.8fr) minmax(220px, 0.7fr);
  gap: clamp(24px, 4vw, 70px);
  align-items: start;
  padding: clamp(32px, 5vw, 62px) clamp(18px, 3vw, 34px);
  border-top: 1.5px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
}

.footer-brand p {
  max-width: 34ch;
  margin: 18px 0 0;
  color: rgba(251, 251, 248, 0.7);
  line-height: 1.45;
}

.newsletter-form {
  display: grid;
  gap: 14px;
}

.newsletter-form label {
  font-size: clamp(1.55rem, 2.3vw, 2.6rem);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.newsletter-form div {
  display: grid;
  grid-template-columns: 1fr auto;
  overflow: hidden;
  border: 1px solid rgba(251, 251, 248, 0.45);
  border-radius: 999px;
  transition: border-color 180ms ease, box-shadow 220ms ease;
}

.newsletter-form div:focus-within {
  border-color: var(--mint);
  box-shadow: 0 0 0 4px rgba(215, 239, 133, 0.14);
}

.newsletter-form input,
.newsletter-form button {
  min-height: 48px;
  border: 0;
}

.newsletter-form input {
  min-width: 0;
  padding: 0 18px;
  background: transparent;
  color: var(--paper);
  outline: 0;
}

.newsletter-form input::placeholder {
  color: rgba(251, 251, 248, 0.55);
}

.newsletter-form button {
  padding: 0 22px;
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
  font-weight: 900;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 22px;
  font-size: 0.9rem;
  font-weight: 760;
}

.footer-nav a,
.text-link {
  transition: color 180ms ease, transform 180ms ease;
}

.text-link {
  display: inline-block;
}

.text-link:hover,
.footer-nav a:hover {
  color: var(--mint);
  transform: translateX(4px);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 520ms ease, transform 520ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.page-main {
  overflow: hidden;
  padding-inline: clamp(18px, 3vw, 34px);
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.62fr);
  gap: clamp(22px, 4vw, 64px);
  align-items: end;
  padding-block: clamp(46px, 6.5vw, 86px) clamp(34px, 5vw, 66px);
}

.page-kicker {
  display: inline-block;
  margin-bottom: 20px;
  padding: 8px 14px;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 900;
}

.page-hero h1 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(3.45rem, 7.2vw, 7.65rem);
  font-weight: 950;
  line-height: 0.91;
  letter-spacing: -0.09em;
  text-wrap: balance;
  transform: skewX(-8deg);
}

.page-hero p {
  max-width: 43ch;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  line-height: 1.42;
}

.about-grid,
.pitch-grid,
.partner-grid,
.contact-layout {
  display: grid;
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.about-grid,
.pitch-grid,
.partner-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about-grid article,
.pitch-grid article,
.partner-grid article {
  display: grid;
  align-content: start;
  gap: 18px;
  min-height: 285px;
  padding: clamp(24px, 3vw, 38px);
  background: var(--paper);
  transition: background 220ms ease, transform 220ms ease;
}

.about-grid article:nth-child(2),
.pitch-grid article:nth-child(2),
.partner-grid article:nth-child(2) {
  background: var(--blue);
}

.about-grid article:nth-child(3),
.pitch-grid article:nth-child(3),
.partner-grid article:nth-child(3) {
  background: var(--peach);
}

.about-grid article:hover,
.pitch-grid article:hover,
.partner-grid article:hover {
  z-index: 2;
  background: var(--mint);
  transform: translateY(-5px);
}

.about-grid h2,
.pitch-grid h2,
.partner-grid h2,
.mission-band h2,
.submission-panel h2,
.rate-card h2,
.contact-cards h2 {
  margin: 0;
  font-size: clamp(1.8rem, 2.8vw, 3.55rem);
  line-height: 0.96;
  letter-spacing: -0.075em;
}

.about-grid p,
.pitch-grid p,
.partner-grid p,
.submission-panel p,
.rate-card p,
.contact-cards p,
.feature-list p,
.stat-strip p,
.process-list p {
  max-width: 34ch;
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.deep-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 70px);
  align-items: start;
  padding-block: clamp(46px, 7vw, 88px);
}

.deep-section h2,
.process-list h2 {
  max-width: 650px;
  margin: 0;
  font-size: clamp(2.6rem, 5vw, 5.8rem);
  line-height: 0.94;
  letter-spacing: -0.085em;
  text-wrap: balance;
  transform: skewX(-8deg);
}

.feature-list {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--soft-radius);
  background: var(--line);
}

.feature-list article {
  display: grid;
  gap: 12px;
  min-height: 140px;
  padding: clamp(22px, 3vw, 34px);
  background: var(--paper);
  transition: background 220ms ease, transform 220ms ease;
}

.feature-list article:nth-child(2) {
  background: var(--blue);
}

.feature-list article:nth-child(3) {
  background: var(--peach);
}

.feature-list article:hover {
  z-index: 2;
  background: var(--mint);
  transform: translateX(6px);
}

.feature-list h3 {
  margin: 0;
  font-size: clamp(1.55rem, 2.3vw, 2.65rem);
  line-height: 0.98;
  letter-spacing: -0.07em;
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin-bottom: clamp(42px, 7vw, 86px);
  border: 1.5px solid var(--ink);
  border-radius: var(--soft-radius);
  background: var(--ink);
}

.stat-strip div {
  min-height: 190px;
  padding: clamp(22px, 3vw, 34px);
  background: var(--yellow);
}

.stat-strip div:nth-child(2) {
  background: var(--blue);
}

.stat-strip div:nth-child(3) {
  background: var(--lavender);
}

.stat-strip span {
  display: block;
  margin-bottom: 28px;
  font-size: clamp(2.4rem, 4.8vw, 5.4rem);
  font-weight: 950;
  line-height: 0.9;
  letter-spacing: -0.085em;
  transform: skewX(-8deg);
}

.mission-band,
.submission-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-block: clamp(42px, 7vw, 86px);
  padding: clamp(26px, 4vw, 54px);
  border-radius: var(--soft-radius);
  background: var(--ink);
  color: var(--paper);
}

.mission-band h2,
.submission-panel h2 {
  max-width: 780px;
}

.mission-band a,
.submission-panel a {
  width: max-content;
  padding: 17px 23px;
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
  font-weight: 900;
}

.submission-panel {
  background: var(--yellow);
  color: var(--ink);
}

.submission-panel p {
  margin-top: 13px;
}

.submission-panel a {
  background: var(--ink);
  color: var(--paper);
}

.contact-layout {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.68fr);
  margin-bottom: clamp(52px, 7vw, 90px);
}

.contact-form,
.contact-cards {
  background: var(--paper);
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 3vw, 38px);
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 900;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1.5px solid var(--ink);
  border-radius: 18px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  outline: 0;
  padding: 14px 16px;
  transition: box-shadow 180ms ease, border-color 180ms ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 4px rgba(215, 239, 133, 0.42);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form button {
  justify-self: start;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  cursor: pointer;
  font-weight: 900;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.contact-form button:hover {
  background: var(--mint);
  color: var(--ink);
  transform: translateY(-2px);
}

.contact-cards {
  display: grid;
}

.contact-cards article {
  display: grid;
  align-content: start;
  gap: 16px;
  min-height: 190px;
  padding: clamp(24px, 3vw, 34px);
  border-bottom: 1px solid var(--line);
}

.contact-cards article:last-child {
  border-bottom: 0;
}

.rate-card {
  display: grid;
  grid-template-columns: minmax(220px, 0.75fr) repeat(3, minmax(0, 1fr)) auto;
  gap: 1px;
  overflow: hidden;
  margin-block: clamp(42px, 7vw, 86px);
  border: 1.5px solid var(--ink);
  border-radius: var(--soft-radius);
  background: var(--ink);
}

.rate-card > * {
  min-height: 185px;
  padding: clamp(22px, 3vw, 34px);
  background: var(--paper);
}

.rate-card > div:nth-of-type(1) {
  background: var(--yellow);
}

.rate-card > div:nth-of-type(2) {
  background: var(--blue);
}

.rate-card > div:nth-of-type(3) {
  background: var(--peach);
}

.rate-card span {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 0.8rem;
  font-weight: 900;
}

.rate-card a {
  display: grid;
  align-content: center;
  background: var(--ink);
  color: var(--paper);
  font-weight: 900;
}

.process-list {
  display: grid;
  grid-template-columns: minmax(250px, 0.45fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 70px);
  align-items: start;
  padding-block: clamp(18px, 3vw, 42px) clamp(34px, 5vw, 70px);
}

.process-list ol {
  display: grid;
  gap: 1px;
  margin: 0;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--soft-radius);
  overflow: hidden;
  background: var(--line);
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  align-items: start;
  min-height: 118px;
  padding: clamp(20px, 2.6vw, 30px);
  background: var(--paper);
}

.process-list li:nth-child(2) {
  background: var(--blue);
}

.process-list li:nth-child(3) {
  background: var(--peach);
}

.process-list span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
}

.article-tools {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: clamp(28px, 4vw, 48px);
  scrollbar-width: none;
}

.article-tools::-webkit-scrollbar {
  display: none;
}

.article-tools a {
  flex: 0 0 auto;
  padding: 9px 15px;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 900;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.article-tools a:hover,
.article-tools a:first-child {
  background: var(--ink);
  color: var(--paper);
  transform: translateY(-2px);
}

.article-feature-grid {
  padding-bottom: clamp(44px, 6vw, 76px);
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1.5px solid var(--ink);
  border-radius: var(--soft-radius);
  background: var(--ink);
}

.article-card {
  display: grid;
  grid-template-columns: minmax(220px, 0.48fr) minmax(0, 1fr);
  min-height: 310px;
  background: var(--paper);
}

.article-card.is-featured {
  grid-column: span 2;
  min-height: 390px;
}

.article-image-slot {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  background: var(--peach);
}

.article-image-slot span {
  position: absolute;
  top: 22px;
  left: 22px;
  z-index: 2;
  width: max-content;
  padding: 7px 12px;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  font-size: 0.78rem;
  font-weight: 900;
}

.article-image-slot img {
  position: absolute;
  inset: 0;
  transition: filter 280ms ease, transform 520ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.article-card:hover .article-image-slot img {
  filter: saturate(1.08) contrast(1.03);
  transform: scale(1.045);
}

.blue-slot {
  background: var(--blue);
}

.lime-slot {
  background: var(--mint);
}

.article-copy {
  display: grid;
  align-content: space-between;
  gap: 18px;
  padding: clamp(24px, 3vw, 38px);
}

.article-copy h3,
.article-index h2,
.article-table h3 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 3.8rem);
  line-height: 0.95;
  letter-spacing: -0.08em;
  text-wrap: balance;
}

.article-copy p {
  max-width: 45ch;
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.45;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.article-meta span {
  padding: 7px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 850;
}

.article-read-link {
  justify-self: start;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  font-weight: 900;
}

.article-index {
  padding-bottom: clamp(54px, 7vw, 92px);
}

.article-index h2 {
  max-width: 720px;
  margin-bottom: 28px;
  transform: skewX(-8deg);
}

.article-table {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--soft-radius);
  background: var(--line);
}

.article-table article {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr) minmax(220px, 0.58fr);
  gap: 24px;
  align-items: center;
  min-height: 94px;
  padding: 18px 22px;
  background: var(--paper);
  transition: background 180ms ease, transform 180ms ease;
}

.article-table article:hover {
  z-index: 2;
  background: var(--mint);
  transform: translateX(6px);
}

.article-table span {
  width: max-content;
  padding: 7px 12px;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 900;
}

.article-table h3 {
  font-size: clamp(1.25rem, 1.8vw, 2rem);
}

.article-table p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.35;
}

.article-main {
  overflow: hidden;
  padding-inline: clamp(18px, 3vw, 34px);
}

.article-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.78fr);
  gap: clamp(24px, 4vw, 66px);
  align-items: end;
  padding-block: clamp(44px, 6vw, 82px) clamp(32px, 5vw, 70px);
}

.article-hero-copy h1 {
  max-width: 960px;
  margin: 0;
  font-size: clamp(3.2rem, 6.9vw, 7.5rem);
  font-weight: 950;
  line-height: 0.9;
  letter-spacing: -0.09em;
  text-wrap: balance;
  transform: skewX(-8deg);
}

.article-hero-copy > p {
  max-width: 54ch;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.55vw, 1.35rem);
  line-height: 1.42;
}

.article-byline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}

.article-byline span {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 850;
}

.article-hero-image {
  position: relative;
  min-height: clamp(420px, 46vw, 620px);
  margin: 0;
  overflow: hidden;
  border-radius: var(--soft-radius);
  background: var(--peach);
  box-shadow: var(--shadow);
}

.article-hero-image img {
  position: absolute;
  inset: 0;
}

.article-hero-image figcaption {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  z-index: 2;
  max-width: 42ch;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.25;
}

.article-body-layout {
  display: block;
  padding-top: clamp(36px, 5vw, 60px);
  padding-bottom: clamp(56px, 8vw, 104px);
  border-top: 1px solid var(--line);
}

.article-sidebar {
  position: sticky;
  top: 24px;
  display: grid;
  gap: 14px;
  align-self: start;
}

.sidebar-card {
  display: grid;
  gap: 12px;
  padding: 22px;
  border: 1.5px solid var(--ink);
  border-radius: var(--soft-radius);
  background: var(--yellow);
}

.article-sidebar p {
  margin: 0;
  color: rgba(7, 7, 7, 0.68);
  font-size: 0.92rem;
  line-height: 1.35;
}

.article-jump {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1.5px solid var(--ink);
  border-radius: var(--soft-radius);
  background: var(--ink);
}

.article-jump a {
  padding: 14px 16px;
  background: var(--paper);
  font-size: 0.88rem;
  font-weight: 900;
  transition: background 180ms ease, transform 180ms ease;
}

.article-jump a:hover {
  background: var(--mint);
  transform: translateX(4px);
}

.sidebar-next {
  background: var(--blue);
}

.sidebar-next h2 {
  margin: 0;
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.sidebar-next a {
  justify-self: start;
  margin-top: 4px;
  font-size: 0.88rem;
  font-weight: 900;
}

.article-content {
  max-width: 830px;
  margin-inline: auto;
}

.article-content p,
.article-content li {
  color: #2e2e2b;
  font-size: clamp(1.1rem, 1.45vw, 1.28rem);
  line-height: 1.74;
}

.article-content p {
  margin: 0 0 26px;
}

.article-content .lede {
  color: var(--ink);
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  font-weight: 760;
  line-height: 1.3;
  letter-spacing: -0.035em;
}

.article-content h2 {
  margin: 48px 0 18px;
  font-size: clamp(2rem, 3.8vw, 4.2rem);
  line-height: 0.96;
  letter-spacing: -0.08em;
  transform: skewX(-8deg);
}

.article-content blockquote {
  margin: 42px 0;
  padding: clamp(24px, 4vw, 42px);
  border-radius: var(--soft-radius);
  background: var(--ink);
  color: var(--paper);
  font-size: clamp(2rem, 4.2vw, 4.8rem);
  font-weight: 950;
  line-height: 0.95;
  letter-spacing: -0.085em;
  text-wrap: balance;
  transform: skewX(-6deg);
}

.article-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 8px 0 38px;
}

.article-tag-row a {
  padding: 8px 12px;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  background: var(--paper);
  font-size: 0.8rem;
  font-weight: 900;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.article-tag-row a:hover {
  background: var(--ink);
  color: var(--paper);
  transform: translateY(-2px);
}

.article-image-break {
  position: relative;
  min-height: clamp(330px, 43vw, 540px);
  margin: 38px 0;
  overflow: hidden;
  border-radius: var(--soft-radius);
  background: var(--peach);
}

.article-image-break img {
  position: absolute;
  inset: 0;
}

.article-image-break figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  width: max-content;
  max-width: min(420px, calc(100% - 36px));
  padding: 11px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  font-size: 0.82rem;
  font-weight: 850;
  line-height: 1.25;
}

.quote-sticker {
  max-width: 88%;
  margin: 34px auto;
  padding: clamp(22px, 3.5vw, 36px);
  border-radius: var(--soft-radius);
  background: var(--ink);
  color: var(--paper);
  font-size: clamp(1.65rem, 3vw, 3.2rem);
  font-weight: 950;
  line-height: 0.97;
  letter-spacing: -0.08em;
  text-wrap: balance;
  transform: rotate(-0.5deg) skewX(-4deg);
}

.embed-block,
.poll-block {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(220px, 0.58fr);
  gap: 1px;
  overflow: hidden;
  margin: 38px 0;
  border: 1.5px solid var(--ink);
  border-radius: var(--soft-radius);
  background: var(--ink);
}

.embed-block > div,
.embed-block ol,
.poll-block > div,
.poll-options {
  margin: 0;
  padding: clamp(20px, 3vw, 30px);
  background: var(--blue);
}

.embed-block ol,
.poll-options {
  background: var(--yellow);
}

.embed-block h2,
.poll-block h2 {
  margin: 16px 0 10px;
  font-size: clamp(1.7rem, 2.9vw, 3.1rem);
  line-height: 0.96;
  letter-spacing: -0.075em;
  transform: none;
}

.embed-block p {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.4;
}

.embed-block ol {
  display: grid;
  align-content: center;
  gap: 10px;
  list-style: none;
}

.embed-block li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 10px;
  align-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  font-size: 0.95rem;
  font-weight: 900;
  line-height: 1.1;
}

.embed-block li::before {
  content: none;
}

.embed-block li span,
.save-card-grid span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
}

.save-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin: 0 0 38px;
  border: 1px solid var(--line);
  border-radius: var(--soft-radius);
  background: var(--line);
}

.save-card-grid article {
  display: grid;
  gap: 14px;
  min-height: 170px;
  padding: clamp(20px, 2.7vw, 30px);
  background: var(--paper);
}

.save-card-grid article:nth-child(2),
.save-card-grid article:nth-child(3) {
  background: var(--peach);
}

.save-card-grid h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2vw, 2.1rem);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.save-card-grid p {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.35;
}

.poll-block {
  grid-template-columns: minmax(0, 0.72fr) minmax(280px, 0.68fr);
}

.poll-block > div {
  background: var(--lavender);
}

.poll-options {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.poll-options button {
  min-height: 48px;
  padding: 10px 12px;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  background: #fff;
  cursor: pointer;
  font-weight: 900;
  transition: background 180ms ease, transform 180ms ease;
}

.poll-options button:hover {
  background: var(--ink);
  color: var(--paper);
  transform: translateY(-2px);
}

.related-articles {
  padding-top: clamp(36px, 5vw, 60px);
  padding-bottom: clamp(54px, 7vw, 92px);
  border-top: 2px solid var(--ink);
}

/* ─── 980px: Tablet ─────────────────────────────────────────── */
@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .primary-nav {
    gap: 14px;
    font-size: 0.78rem;
  }

  /* Grids → 2 columns on tablet, 1 column later */
  .editors-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-grid,
  .story-rail {
    grid-template-columns: 1fr;
  }

  /* Footer → 2-col at tablet (not 3) */
  .site-footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(24px, 3vw, 44px);
  }

  .media-section,
  .pulse-section,
  .page-hero,
  .deep-section,
  .process-list,
  .article-hero,
  .article-body-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .about-grid,
  .pitch-grid,
  .partner-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stat-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .article-grid {
    grid-template-columns: 1fr;
  }

  .rate-card {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .article-card,
  .article-card.is-featured,
  .embed-block,
  .poll-block {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .article-table article {
    grid-template-columns: auto 1fr;
  }

  .article-card {
    min-height: auto;
  }

  .article-image-slot {
    min-height: 220px;
  }

  .article-sidebar {
    position: static;
  }

  .mission-band,
  .submission-panel {
    gap: 20px;
  }

  .side-stack {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .story-title {
    max-width: 72%;
  }

  .rail-card-feature {
    min-height: 480px;
  }

  .media-grid article {
    grid-template-columns: 90px 1fr;
    gap: 14px;
    min-height: 100px;
  }

  .category-directory {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  /* Article page hero — reduce padding on tablet */
  .article-hero {
    padding-block: clamp(32px, 4.5vw, 60px) clamp(24px, 3.5vw, 48px);
  }

  /* Latest grid → 2 columns on tablet */
  .latest-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* ─── 840px: Hide nav, keep header compact ───────────────────── */
@media (max-width: 840px) {
  .site-header {
    grid-template-columns: 1fr auto;
    padding-inline: clamp(16px, 3.5vw, 28px);
    gap: 12px;
  }

  .primary-nav {
    display: none;
  }

  .menu-button {
    min-height: 42px;
    padding-inline: 18px;
  }
}

/* ─── 768px: Mid-size (small tablets / large phones) ─────────── */
@media (max-width: 768px) {
  .editors-grid,
  .latest-grid {
    grid-template-columns: 1fr;
  }

  .about-grid,
  .pitch-grid,
  .partner-grid {
    grid-template-columns: 1fr;
  }

  .rate-card {
    grid-template-columns: 1fr;
  }

  .rate-card > * {
    min-height: auto;
  }

  .article-table article {
    grid-template-columns: auto 1fr;
    gap: 14px;
    padding: 16px 18px;
  }

  /* Hide the meta column in the article table — keep category + title */
  .article-table p {
    display: none;
  }

  .story-rail {
    gap: clamp(16px, 2.5vw, 24px);
  }

  .pulse-section {
    gap: 20px;
  }
}

/* ─── 680px: Mobile ──────────────────────────────────────────── */
@media (max-width: 680px) {
  .site-header {
    gap: 14px;
    padding-block: 14px;
    padding-inline: clamp(16px, 4vw, 24px);
  }

  .menu-button {
    min-height: 40px;
    padding-inline: 16px;
    font-size: 0.88rem;
  }

  .icon-button {
    width: 40px;
    height: 40px;
  }

  /* Section headings */
  .section-heading {
    display: grid;
    gap: 10px;
    margin-bottom: 24px;
  }

  .section-heading h1 {
    font-size: clamp(3.2rem, 16vw, 4.8rem);
  }

  .hero-section {
    padding-top: 26px;
  }

  .large-card {
    min-height: 460px;
  }

  .story-title {
    top: auto;
    right: 18px;
    bottom: 72px;
    left: 18px;
    max-width: none;
  }

  .story-title h2 {
    font-size: clamp(2rem, 10vw, 3.2rem);
  }

  .top-left {
    top: 18px;
    left: 18px;
  }

  .side-stack {
    grid-template-columns: 1fr;
  }

  .ad-panel,
  .pick-card,
  .feature-card,
  .rail-card-small img,
  .rail-card-feature {
    border-radius: 20px;
  }

  .category-title-row {
    justify-content: start;
    margin-bottom: 28px;
  }

  .category-title-row h2,
  .compact-heading h2 {
    font-size: clamp(3rem, 15vw, 4.6rem);
  }

  .rail-card-feature {
    min-height: 420px;
  }

  .rail-feature-copy h3 {
    width: 92%;
    font-size: clamp(1.85rem, 9.5vw, 3rem);
  }

  .loop-card {
    min-height: 220px;
  }

  .latest-grid article {
    min-height: 150px;
  }

  .pulse-heading {
    display: grid;
    gap: 10px;
  }

  .pulse-section {
    grid-template-columns: 1fr;
  }

  .trend-list li {
    grid-template-columns: 44px 1fr;
    min-height: 66px;
  }

  .trend-list a {
    font-size: clamp(1.15rem, 6.5vw, 1.65rem);
  }

  .category-directory {
    grid-template-columns: 1fr;
  }

  .category-directory a {
    min-height: 56px;
    font-size: clamp(0.95rem, 4.5vw, 1.2rem);
  }

  /* Footer → 1-col on phone */
  .site-footer {
    grid-template-columns: 1fr;
    padding-block: 36px 40px;
    padding-inline: clamp(16px, 4vw, 24px);
  }

  .footer-nav {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px 16px;
  }

  /* Page hero */
  .page-hero {
    padding-block: clamp(30px, 5vw, 50px) clamp(20px, 3.5vw, 34px);
  }

  .page-hero h1 {
    font-size: clamp(2.8rem, 13vw, 4.8rem);
  }

  .page-kicker {
    margin-bottom: 14px;
  }

  /* Article hero */
  .article-hero {
    padding-block: clamp(26px, 4vw, 44px) clamp(16px, 3vw, 28px);
  }

  .article-hero-copy h1 {
    font-size: clamp(2.6rem, 12.5vw, 4.4rem);
  }

  /* On mobile: show image first, then copy (natural source order reversed visually) */
  .article-hero {
    display: flex;
    flex-direction: column-reverse;
    gap: 22px;
  }

  .article-hero-image {
    width: 100%;
    min-height: 0;
    aspect-ratio: 4 / 3;
    border-radius: 20px;
    flex: 0 0 auto;
  }

  .article-hero-image img {
    position: static;
    height: 100%;
    width: 100%;
    object-fit: cover;
  }

  /* Article body */
  .article-body-layout {
    padding-top: clamp(24px, 4vw, 38px);
    border-top: none;
  }

  /* Quote sticker */
  .quote-sticker {
    max-width: 100%;
    margin: 28px 0;
    font-size: clamp(1.45rem, 7vw, 2.4rem);
    transform: rotate(-0.3deg) skewX(-3deg);
  }

  /* Embed & poll blocks */
  .embed-block,
  .poll-block {
    grid-template-columns: 1fr;
  }

  .embed-block > div,
  .embed-block ol,
  .poll-block > div,
  .poll-options {
    min-width: 0;
  }

  /* Save card grid & poll options → 1-col */
  .save-card-grid,
  .poll-options {
    grid-template-columns: 1fr;
  }

  .poll-options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  /* Mission / submission CTA bands */
  .mission-band,
  .submission-panel {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: clamp(22px, 4vw, 34px);
  }

  .mission-band a,
  .submission-panel a {
    width: 100%;
    text-align: center;
    padding: 16px 20px;
  }

  /* About / pitch / partner grids */
  .about-grid article,
  .pitch-grid article,
  .partner-grid article,
  .rate-card > *,
  .contact-cards article {
    min-height: auto;
  }

  /* Article table on phone: stack badge + title */
  .article-table article {
    grid-template-columns: auto 1fr;
    gap: 12px;
    min-height: 80px;
    padding: 14px 16px;
  }

  /* Media grid on phone */
  .media-grid article {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 18px;
  }

  /* Stat strip → 1-col on phone */
  .stat-strip {
    grid-template-columns: 1fr;
  }

  /* Process list */
  .process-list {
    grid-template-columns: 1fr;
  }

  /* Article content on phone */
  .article-content p,
  .article-content li {
    font-size: 1.06rem;
    line-height: 1.68;
  }

  .article-content h2 {
    margin: 34px 0 14px;
    font-size: clamp(1.75rem, 8.5vw, 3rem);
  }

  .article-content .lede {
    font-size: clamp(1.2rem, 5.5vw, 1.55rem);
  }

  /* Related articles grid on article page */
  .related-articles .latest-grid {
    grid-template-columns: 1fr;
  }

  /* Article image break — cap height on phones */
  .article-image-break {
    min-height: 240px;
    margin: 26px 0;
  }

  /* Tags row */
  .article-tag-row {
    margin-bottom: 28px;
  }

  /* Byline */
  .article-byline {
    margin-top: 18px;
  }
}

/* ─── 420px: Small phones (iPhone SE, Galaxy A-series) ───────── */
@media (max-width: 420px) {
  .brand {
    font-size: 1.35rem;
  }

  .section-heading h1 {
    font-size: clamp(2.8rem, 18vw, 4rem);
  }

  .article-hero-copy h1 {
    font-size: clamp(2.2rem, 13.5vw, 3.2rem);
  }

  .page-hero h1 {
    font-size: clamp(2.2rem, 13.5vw, 3.2rem);
  }

  .category-title-row h2,
  .compact-heading h2 {
    font-size: clamp(2.6rem, 15vw, 3.8rem);
  }

  .newsletter-form label {
    font-size: clamp(1.3rem, 7vw, 1.8rem);
  }

  .footer-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .large-card {
    min-height: 380px;
  }

  .article-hero-image {
    aspect-ratio: 1 / 1;
    min-height: 0;
  }

  .rail-card-feature {
    min-height: 360px;
  }

  .poll-options {
    grid-template-columns: 1fr;
  }

  .category-directory a {
    min-height: 52px;
    font-size: 0.92rem;
  }

  .mission-band h2,
  .submission-panel h2 {
    font-size: clamp(1.5rem, 7.5vw, 2.4rem);
  }

  .embed-block h2,
  .poll-block h2 {
    font-size: clamp(1.4rem, 7vw, 2rem);
  }

  .quote-sticker {
    font-size: clamp(1.3rem, 7vw, 2rem);
    padding: 18px 20px;
  }

  .article-content h2 {
    font-size: clamp(1.6rem, 9vw, 2.4rem);
  }

  .article-tools a {
    padding: 8px 13px;
    font-size: 0.78rem;
  }

  .topic-strip a {
    padding: 7px 12px;
    font-size: 0.75rem;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 680px) {
  .search-overlay {
    align-items: stretch;
    padding: 10px;
  }

  .search-panel {
    margin-top: 0;
    border-radius: 14px;
  }

  .search-panel-top {
    padding: 18px;
  }

  .search-panel h2 {
    font-size: clamp(2.4rem, 15vw, 4rem);
  }

  .search-field {
    padding: 16px 18px 12px;
  }

  .search-field input {
    min-height: 56px;
    border-radius: 18px;
  }

  .search-status {
    padding-inline: 18px;
  }

  .search-results {
    max-height: none;
  }

  .search-result {
    grid-template-columns: 74px 1fr;
    padding: 14px 18px;
  }

  .search-result p {
    display: none;
  }
}
