:root {
  color-scheme: light;
  --ink: #2f292b;
  --muted: #6f6267;
  --line: #eaded4;
  --paper: #fbf7f0;
  --soft: #f3e8de;
  --accent: #b76f76;
  --accent-strong: #78444b;
  --warm: #c08b62;
  --sun: #e1bd73;
  --leaf: #7f9f88;
  --berry: #b76f76;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  padding: 0 24px;
  background: rgba(255, 250, 248, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.brand {
  font-weight: 800;
  text-decoration: none;
  font-size: 1.2rem;
}

.nav {
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
}

.nav a {
  color: var(--muted);
  text-decoration: none;
}

.nav a:hover {
  color: var(--accent);
}

.hero {
  min-height: 72vh;
  display: grid;
  align-items: center;
  padding: 72px 24px 64px;
  background:
    linear-gradient(120deg, rgba(127, 59, 77, 0.9), rgba(47, 41, 43, 0.74)),
    url("/assets/images/grocery-shelves-pixabay-stevepb.jpg");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.home-hero {
  min-height: 74vh;
  display: grid;
  align-items: end;
  padding: 96px 24px 72px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(79, 40, 51, 0.88), rgba(127, 59, 77, 0.58), rgba(47, 41, 43, 0.14)),
    url("/assets/images/grocery-shelves-pixabay-stevepb.jpg");
  background-position: center;
  background-size: cover;
}

.home-hero__content {
  width: min(1080px, 100%);
  margin: 0 auto;
}

.home-strip {
  padding-top: 56px;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.quick-card {
  min-height: 210px;
  padding: 20px;
  border: 1px solid var(--line);
  border-top: 5px solid var(--accent);
  border-radius: 8px;
  background: #fff;
  color: inherit;
  text-decoration: none;
}

.quick-card:nth-child(2) {
  border-top-color: var(--leaf);
}

.quick-card:nth-child(3) {
  border-top-color: var(--berry);
}

.quick-card:nth-child(4) {
  border-top-color: var(--sun);
}

.quick-card span {
  display: block;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
}

.quick-card strong {
  display: block;
  margin-top: 12px;
  font-size: 1.15rem;
  line-height: 1.35;
}

.quick-card p {
  margin: 14px 0 0;
  color: var(--muted);
}

.feature-band {
  padding: 72px 24px;
  background: #fff;
  border-block: 1px solid var(--line);
}

.feature-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(260px, 0.55fr);
  gap: 22px;
  width: min(1080px, 100%);
  margin: 0 auto;
}

.feature-main {
  display: grid;
  grid-template-columns: minmax(260px, 0.86fr) 1fr;
  gap: 26px;
  align-items: center;
}

.feature-main img,
.lane img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  object-fit: cover;
}

.feature-main h2 {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.16;
}

.feature-main h2 a {
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.feature-main p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--muted);
}

.feature-side {
  display: grid;
  align-content: center;
  gap: 10px;
}

.feature-side a {
  display: block;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  color: var(--accent-strong);
  font-weight: 800;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.lane-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.lane {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.lane h3 {
  margin: 16px 0 10px;
  font-size: 1.16rem;
}

.lane ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding-left: 1.1rem;
}

.lane a {
  color: var(--ink);
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.home-latest {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.home-latest article {
  min-height: 190px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.home-latest h3 {
  margin: 0 0 10px;
  line-height: 1.34;
}

.home-latest p {
  margin: 0;
  color: var(--muted);
}

.hero-inner,
.section {
  width: min(1080px, 100%);
  margin: 0 auto;
}

.hero-inner {
  padding-bottom: 24px;
}

.hero-magazine .hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.72fr);
  gap: 32px;
  align-items: end;
}

.hero-panel {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.22);
}

.panel-title {
  margin: 0 0 16px;
  font-weight: 800;
  line-height: 1.55;
}

.hero-panel ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-panel li {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 10px;
  align-items: center;
}

.hero-panel strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  border-radius: 999px;
  background: var(--soft);
  color: var(--accent-strong);
  font-size: 0.9rem;
}

.hero-panel span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--warm);
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.hero .eyebrow {
  color: #f0c56a;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(2.4rem, 8vw, 4.8rem);
  line-height: 1.08;
}

.lead {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
}

.button.primary {
  color: var(--accent-strong);
  background: #fff;
}

.button.secondary {
  color: #fff;
}

.section {
  padding: 72px 24px;
}

.band {
  width: 100%;
  max-width: none;
  padding-right: max(24px, calc((100% - 1080px) / 2));
  padding-left: max(24px, calc((100% - 1080px) / 2));
  background: var(--soft);
  border-block: 1px solid var(--line);
}

.section-head h2 {
  margin: 0;
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  line-height: 1.2;
}

.split-head {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(260px, 0.45fr);
  gap: 24px;
  align-items: end;
}

.split-head > p {
  margin: 0;
  color: var(--muted);
}

.theme-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.decision-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
  margin-top: 30px;
}

.decision-card {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 18px;
  min-height: 172px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.decision-card.large {
  grid-row: span 3;
  grid-template-columns: 1fr;
  align-content: start;
}

.decision-card .card-media {
  width: 100%;
  margin: 0;
  border-radius: 6px;
}

.decision-card.large .card-media {
  aspect-ratio: 4 / 3;
}

.decision-card h3 {
  margin: 0 0 10px;
  line-height: 1.32;
}

.decision-card p {
  margin: 0;
  color: var(--muted);
}

.shelf-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.shelf {
  min-height: 136px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.72)),
    var(--paper);
  text-decoration: none;
}

.shelf:nth-child(2) {
  border-top: 5px solid var(--berry);
}

.shelf:nth-child(3) {
  border-top: 5px solid var(--leaf);
}

.shelf:nth-child(4) {
  border-top: 5px solid var(--sun);
}

.shelf span {
  display: block;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
}

.shelf strong {
  display: block;
  margin-top: 10px;
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.4;
}

.category-hero {
  padding: 72px 24px 36px;
  background:
    linear-gradient(135deg, rgba(184, 95, 117, 0.13), rgba(240, 197, 106, 0.18)),
    var(--paper);
}

.category-hero .section-head {
  width: min(1080px, 100%);
  margin: 0 auto;
}

.category-hub {
  padding-top: 44px;
}

.category-clusters {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.category-cluster {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.category-cluster:nth-child(3n + 2) {
  background: #fffdf6;
}

.category-cluster:nth-child(3n) {
  background: #f8fbf8;
}

.cluster-kicker {
  margin: 0 0 8px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
}

.category-cluster h2 {
  margin: 0;
  font-size: clamp(1.25rem, 3vw, 1.7rem);
  line-height: 1.25;
}

.category-cluster p {
  margin: 12px 0 0;
  color: var(--muted);
}

.cluster-list {
  display: grid;
  gap: 9px;
  margin: 18px 0 0;
  padding-left: 1.1rem;
}

.cluster-list a {
  color: var(--ink);
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.card,
.article-list article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.card {
  padding: 24px;
}

.card-media {
  display: block;
  aspect-ratio: 16 / 9;
  margin: -24px -24px 18px;
  width: calc(100% + 48px);
  border-radius: 8px 8px 0 0;
  object-fit: cover;
}

.card h3,
.article-list h3 {
  margin: 0 0 10px;
  line-height: 1.35;
}

.article-list h3 a {
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.card p,
.article-list p,
.operation p {
  margin: 0;
  color: var(--muted);
}

.article-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.article-list article {
  padding: 22px;
}

.article-list article.priority {
  border-left: 5px solid var(--accent);
}

.tag {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--accent);
  font-weight: 800;
  font-size: 0.78rem;
}

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

.operation {
  max-width: 820px;
  margin-top: 24px;
}

.operation ul {
  margin: 22px 0 0;
  padding-left: 1.2rem;
}

.operation li + li {
  margin-top: 8px;
}

.search-box {
  display: grid;
  gap: 8px;
  margin-top: 28px;
  max-width: 680px;
}

.search-box label {
  color: var(--muted);
  font-weight: 800;
}

.search-box input {
  min-height: 48px;
  width: 100%;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.popular-terms {
  margin-top: 18px;
}

.popular-terms h2 {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 1rem;
}

.term-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.term-list button {
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--accent-strong);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.term-list button:hover,
.term-list button:focus-visible {
  border-color: var(--accent);
  outline: none;
  box-shadow: 0 0 0 3px rgba(184, 95, 117, 0.16);
}

.footer {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  justify-content: space-between;
  padding: 24px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
}

.footer p {
  margin: 0;
}

.article {
  width: min(900px, 100%);
  margin: 0 auto;
  padding: 64px 24px 80px;
}

.article-header {
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.article-header h1 {
  max-width: 860px;
  color: var(--ink);
  font-size: clamp(2rem, 5vw, 3.4rem);
}

.article-lead {
  max-width: 820px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.article-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0 0;
}

.article-meta div {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.article-meta dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.article-meta dd {
  margin: 4px 0 0;
}

.article-image {
  margin: 28px 0 0;
}

.article-image img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  object-fit: cover;
}

.article-body {
  margin-top: 36px;
}

.article-body section + section,
.related {
  margin-top: 42px;
}

.article-body h2 {
  margin: 0 0 14px;
  font-size: clamp(1.45rem, 3vw, 2rem);
  line-height: 1.3;
}

.article-body p,
.article-body li {
  color: var(--muted);
}

.article-body code {
  padding: 0.08em 0.32em;
  border-radius: 4px;
  background: var(--soft);
  color: var(--ink);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.92em;
}

.article-body pre {
  overflow-x: auto;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #2f292b;
  color: #fff;
}

.article-body pre code {
  padding: 0;
  background: transparent;
  color: inherit;
}

.table-wrap {
  overflow-x: auto;
}

.article-body table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}

.article-body th,
.article-body td {
  padding: 12px;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.article-body th {
  color: var(--ink);
  background: var(--soft);
}

.related {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.related h2 {
  margin-bottom: 8px;
}

.related a {
  color: var(--accent-strong);
  font-weight: 800;
}

.home-editorial {
  background:
    linear-gradient(180deg, #fbf7f0 0%, #fffdf9 38%, #f7efe6 100%);
}

.editorial-header {
  min-height: 78px;
  padding: 0 38px;
  background: rgba(251, 247, 240, 0.88);
}

.brand-wordmark {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.editorial-nav {
  align-items: center;
  gap: 22px;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.editorial-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr);
  gap: clamp(26px, 5vw, 72px);
  align-items: stretch;
  width: min(1220px, 100%);
  min-height: calc(100vh - 78px);
  margin: 0 auto;
  padding: clamp(42px, 7vw, 92px) 28px 52px;
}

.editorial-hero__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 16px 0 70px;
}

.home-editorial .eyebrow {
  color: var(--warm);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.editorial-hero h1,
.editorial-section-head h2,
.collection-intro h2,
.concept-copy h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0;
}

.editorial-hero h1 {
  max-width: 680px;
  font-size: clamp(3rem, 5.7vw, 5.4rem);
  line-height: 1.05;
}

.editorial-hero .lead {
  max-width: 560px;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.16rem);
}

.editorial-button {
  min-width: 168px;
  border-color: var(--accent-strong);
}

.editorial-button.primary {
  color: #fff;
  background: var(--accent-strong);
}

.editorial-button.secondary {
  color: var(--accent-strong);
  background: rgba(255, 255, 255, 0.45);
}

.editorial-hero__image {
  min-height: 560px;
  margin: 0;
}

.editorial-hero__image img,
.concept-section img,
.topic-card img,
.pickup-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.editorial-hero__image img {
  border-radius: 0 0 120px 0;
  box-shadow: 0 36px 90px rgba(79, 54, 39, 0.18);
}

.editorial-hero__note {
  position: absolute;
  right: min(5vw, 62px);
  bottom: 42px;
  width: min(320px, 78vw);
  padding: 18px 20px;
  border: 1px solid rgba(234, 222, 212, 0.92);
  border-radius: 8px;
  background: rgba(255, 253, 249, 0.88);
  backdrop-filter: blur(12px);
}

.editorial-hero__note span,
.topic-card span,
.collection-card span,
.collection-card p {
  display: block;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.editorial-hero__note strong {
  display: block;
  margin-top: 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.18rem;
  font-weight: 500;
  line-height: 1.35;
}

.editorial-topics,
.pickup-section {
  width: min(1180px, 100%);
}

.editorial-section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(280px, 0.55fr);
  gap: 32px;
  align-items: end;
}

.editorial-section-head .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -18px;
}

.editorial-section-head h2 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4.7rem);
  line-height: 1;
}

.editorial-section-head p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
}

.topic-rack {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  gap: 18px;
  margin-top: 34px;
}

.topic-card {
  display: grid;
  min-height: 260px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 249, 0.72);
  text-decoration: none;
}

.topic-card--large {
  grid-row: span 2;
  min-height: 620px;
  padding: 0;
  overflow: hidden;
}

.topic-card--large img {
  height: 390px;
}

.topic-card:not(.topic-card--large) {
  align-content: end;
}

.topic-card--large span,
.topic-card--large strong,
.topic-card--large p {
  margin-right: 28px;
  margin-left: 28px;
}

.topic-card--large span {
  margin-top: 24px;
}

.topic-card strong,
.collection-card h3,
.pickup-card h3 {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.2;
}

.topic-card strong {
  display: block;
  margin-top: 12px;
  font-size: clamp(1.4rem, 3vw, 2.3rem);
}

.topic-card p,
.pickup-card p {
  margin: 14px 0 0;
  color: var(--muted);
}

.collection-section {
  margin: 48px 0;
  padding: 74px max(24px, calc((100% - 1180px) / 2));
  background: #2f292b;
  color: #fffdf9;
}

.collection-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(280px, 0.5fr);
  gap: 30px;
  align-items: end;
}

.collection-intro .eyebrow {
  grid-column: 1 / -1;
}

.collection-intro h2 {
  margin: 0;
  font-size: clamp(2.5rem, 6vw, 5.4rem);
  line-height: 1;
}

.collection-intro p:not(.eyebrow) {
  margin: 0;
  color: rgba(255, 253, 249, 0.72);
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 42px;
  background: rgba(255, 253, 249, 0.22);
}

.collection-card {
  min-height: 280px;
  padding: 26px;
  background: #2f292b;
  color: inherit;
  text-decoration: none;
}

.collection-card span {
  color: rgba(255, 253, 249, 0.54);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.2rem;
  font-weight: 500;
  letter-spacing: 0;
}

.collection-card p {
  margin: 80px 0 12px;
  color: var(--sun);
}

.collection-card h3 {
  margin: 0;
  color: #fffdf9;
  font-size: clamp(1.6rem, 3vw, 2.25rem);
}

.concept-section {
  display: grid;
  grid-template-columns: minmax(180px, 0.42fr) minmax(280px, 0.62fr) minmax(180px, 0.42fr);
  gap: clamp(18px, 4vw, 42px);
  align-items: center;
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 86px 24px;
}

.concept-section figure {
  height: min(52vw, 620px);
  margin: 0;
}

.concept-section figure:first-child {
  align-self: end;
  height: min(38vw, 460px);
}

.concept-section img {
  border-radius: 8px;
}

.concept-copy h2 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4.9rem);
  line-height: 1.05;
}

.concept-copy p:not(.eyebrow) {
  margin: 24px 0 0;
  color: var(--muted);
}

.pickup-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.pickup-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf9;
}

.pickup-card img {
  height: 190px;
}

.pickup-card div {
  padding: 18px;
}

.pickup-card h3 {
  margin: 8px 0 0;
  font-size: 1.25rem;
}

.pickup-card a {
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.home-link-shelf {
  padding-top: 42px;
}

.home-link-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.home-link-grid section {
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.home-link-grid h3 {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: 1.2rem;
}

.home-link-grid ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.home-link-grid a {
  color: var(--ink);
  font-size: 0.92rem;
  line-height: 1.55;
  text-decoration-color: rgba(130, 71, 87, 0.35);
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

@media (max-width: 760px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
    padding: 12px 18px;
  }

  .nav {
    width: 100%;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero {
    min-height: 68vh;
    padding: 52px 18px;
  }

  .section {
    padding: 52px 18px;
  }

  .band {
    padding-right: 18px;
    padding-left: 18px;
  }

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

  .hero-magazine .hero-inner,
  .feature-layout,
  .feature-main,
  .split-head,
  .decision-grid,
  .decision-card,
  .shelf-grid,
  .category-clusters,
  .quick-grid,
  .lane-grid,
  .home-latest {
    grid-template-columns: 1fr;
  }

  .home-hero {
    min-height: 68vh;
    padding: 64px 18px 54px;
  }

  .hero-panel {
    margin-top: 10px;
  }

  .button {
    width: 100%;
  }

  .article {
    padding: 44px 18px 60px;
  }

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

@media (max-width: 920px) {
  .editorial-hero,
  .topic-rack,
  .editorial-section-head,
  .collection-intro,
  .concept-section,
  .pickup-grid,
  .home-link-grid {
    grid-template-columns: 1fr;
  }

  .editorial-hero {
    min-height: auto;
    padding-top: 34px;
  }

  .editorial-hero__copy {
    padding-bottom: 0;
  }

  .editorial-hero__image {
    min-height: 390px;
  }

  .editorial-hero__note {
    position: static;
    width: 100%;
    margin-top: -32px;
  }

  .topic-card--large {
    grid-row: auto;
    min-height: auto;
  }

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

  .concept-section figure,
  .concept-section figure:first-child {
    height: 320px;
  }
}

@media (max-width: 760px) {
  .editorial-header {
    padding: 14px 18px;
  }

  .editorial-nav {
    gap: 16px;
    font-size: 0.74rem;
  }

  .editorial-hero {
    padding: 30px 18px 44px;
  }

  .editorial-hero h1 {
    font-size: clamp(3rem, 15vw, 4.8rem);
  }

  .editorial-hero__image {
    min-height: 310px;
  }

  .editorial-hero__image img {
    border-radius: 0 0 58px 0;
  }

  .editorial-section-head .eyebrow {
    margin-bottom: 0;
  }

  .topic-card,
  .collection-card {
    min-height: auto;
    padding: 20px;
  }

  .topic-card--large {
    padding: 0;
  }

  .topic-card--large img {
    height: 260px;
  }

  .topic-card--large span,
  .topic-card--large strong,
  .topic-card--large p {
    margin-right: 20px;
    margin-left: 20px;
  }

  .topic-card--large p {
    margin-bottom: 20px;
  }

  .collection-section {
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .collection-card p {
    margin-top: 46px;
  }

  .concept-section {
    padding: 58px 18px;
  }
}
