:root {
  --ink: #241b16;
  --muted: #75665d;
  --paper: #f7f0df;
  --paper-deep: #eadfc9;
  --red: #a62f25;
  --red-dark: #711c17;
  --green: #3d4d39;
  --line: #c9bba2;
  --white: #fffaf0;
  --shadow: 0 18px 48px rgba(64, 39, 27, 0.14);
  --content: 1220px;
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: light;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
  font-family: "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
  font-size: 17px;
  line-height: 1.62;
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.27;
  background-image: repeating-linear-gradient(0deg, transparent 0, transparent 3px, rgba(91, 59, 38, 0.035) 4px);
}

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

a {
  color: inherit;
  text-decoration-color: rgba(166, 47, 37, 0.45);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--red-dark);
  text-decoration-color: currentColor;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(166, 47, 37, 0.38);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 8px 12px;
  color: var(--white);
  background: var(--red-dark);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  border-top: 7px solid var(--red);
  background: rgba(247, 240, 223, 0.96);
}

.utility-row,
.masthead,
.section-inner,
.site-footer-inner,
.article-shell,
.category-shell {
  width: min(calc(100% - 40px), var(--content));
  margin-inline: auto;
}

.utility-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 38px;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.utility-row p {
  margin: 0;
}

.search-open {
  display: inline-grid;
  width: 36px;
  height: 36px;
  padding: 0;
  place-items: center;
  color: var(--ink);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 1.15rem;
}

.masthead {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  gap: 24px;
  padding: 18px 0 15px;
}

.brand {
  grid-column: 2;
  text-align: center;
  text-decoration: none;
}

.brand-name {
  display: block;
  color: var(--red-dark);
  font-size: clamp(2.6rem, 6vw, 5.25rem);
  font-weight: 400;
  line-height: 0.88;
  letter-spacing: 0;
  text-transform: lowercase;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--red);
}

.edition-note {
  align-self: center;
  max-width: 180px;
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.35;
  text-transform: uppercase;
}

.main-nav {
  border-block: 1px solid var(--ink);
}

.main-nav ul {
  display: flex;
  width: min(calc(100% - 40px), var(--content));
  min-height: 43px;
  margin: 0 auto;
  padding: 0;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 5vw, 64px);
  list-style: none;
}

.main-nav a {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
}

.main-nav a[aria-current="page"] {
  color: var(--red);
}

.ticker {
  overflow: hidden;
  color: var(--white);
  background: var(--red-dark);
}

.ticker-inner {
  display: flex;
  width: min(calc(100% - 40px), var(--content));
  min-height: 38px;
  margin-inline: auto;
  align-items: center;
  gap: 18px;
  font-size: 0.8rem;
}

.ticker-label {
  flex: 0 0 auto;
  padding-right: 18px;
  border-right: 1px solid rgba(255,255,255,0.4);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ticker a {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  text-decoration: none;
}

.eyebrow,
.kicker {
  color: var(--red);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.homepage-lead {
  padding: 26px 0 40px;
  border-bottom: 1px solid var(--ink);
}

.lead-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(260px, 0.65fr);
  gap: 34px;
}

.lead-story {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(230px, 0.65fr);
  grid-template-rows: auto 1fr;
  gap: 20px 26px;
}

.lead-story figure {
  grid-row: 1 / 3;
  margin: 0;
}

.lead-story img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.lead-copy {
  align-self: end;
}

.lead-copy h1 {
  max-width: 12ch;
  margin: 8px 0 16px;
  font-size: clamp(2.35rem, 4.8vw, 4.55rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0;
}

.lead-copy p {
  margin: 0 0 16px;
  color: #574840;
  font-size: 1.02rem;
}

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

.read-link {
  display: inline-block;
  margin-top: 10px;
  color: var(--red-dark);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.side-stories {
  display: grid;
  align-content: start;
  border-top: 5px solid var(--red);
}

.side-story {
  display: grid;
  grid-template-columns: 108px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.side-story img {
  width: 108px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.side-story h2 {
  margin: 4px 0 7px;
  font-size: 1.28rem;
  font-weight: 400;
  line-height: 1.12;
}

.side-story p {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.45;
}

.section-band {
  padding: 38px 0 46px;
  border-bottom: 1px solid var(--line);
}

.section-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
  padding-bottom: 8px;
  border-bottom: 3px double var(--ink);
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 400;
  line-height: 1;
}

.section-heading a {
  color: var(--red-dark);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.story-ledger {
  counter-reset: ledger;
}

.ledger-row {
  counter-increment: ledger;
  display: grid;
  grid-template-columns: 48px minmax(240px, 0.85fr) minmax(0, 1.35fr) 200px;
  gap: 22px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.ledger-row::before {
  content: "0" counter(ledger);
  align-self: start;
  color: var(--red);
  font-size: 0.8rem;
  font-weight: 700;
}

.ledger-row h3 {
  margin: 4px 0 0;
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  font-weight: 400;
  line-height: 1.1;
}

.ledger-row p {
  margin: 0;
  color: #625248;
  font-size: 0.96rem;
}

.ledger-row img {
  width: 200px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.manifesto-band {
  color: var(--white);
  background: var(--green);
}

.manifesto-inner {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
  padding-block: 42px;
}

.manifesto-inner h2 {
  margin: 0;
  color: #f4d6b7;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
  line-height: 1;
}

.manifesto-inner p {
  max-width: 62ch;
  margin: 0;
  font-size: 1.05rem;
}

.category-shell {
  padding: 34px 0 64px;
}

.category-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.6fr);
  gap: 40px;
  align-items: end;
  padding: 26px 0 30px;
  border-bottom: 5px solid var(--red);
}

.category-intro h1 {
  max-width: 12ch;
  margin: 6px 0 0;
  font-size: clamp(2.7rem, 7vw, 5.8rem);
  font-weight: 400;
  line-height: 0.94;
}

.category-intro p {
  margin: 0;
  color: #5e4f46;
  font-size: 1.08rem;
}

.category-list .ledger-row {
  grid-template-columns: 48px minmax(240px, 0.9fr) minmax(0, 1.2fr) 260px;
  padding-block: 28px;
}

.category-list .ledger-row img {
  width: 260px;
}

.article-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 760px) minmax(170px, 0.35fr);
  gap: 34px;
  padding: 34px 0 70px;
}

.article-header {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 40px;
  align-items: end;
  padding-bottom: 34px;
  border-bottom: 1px solid var(--ink);
}

.article-header-copy {
  padding-top: 18px;
  border-top: 5px solid var(--red);
}

.article-header h1 {
  margin: 10px 0 18px;
  font-size: clamp(2.6rem, 6vw, 5.4rem);
  font-weight: 400;
  line-height: 0.96;
}

.article-deck {
  margin: 0 0 20px;
  color: #5b4a40;
  font-size: 1.18rem;
  line-height: 1.45;
}

.article-header figure {
  margin: 0;
}

.article-header img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.article-header figcaption {
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.72rem;
  font-style: italic;
}

.article-rail {
  grid-column: 1;
  align-self: start;
  position: sticky;
  top: 20px;
  padding-top: 14px;
  border-top: 1px solid var(--ink);
}

.article-rail h2,
.related-rail h2 {
  margin: 0 0 10px;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-rail ul,
.related-rail ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.article-rail li,
.related-rail li {
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.83rem;
  line-height: 1.3;
}

.article-rail a,
.related-rail a {
  text-decoration: none;
}

.article-body {
  grid-column: 2;
  min-width: 0;
}

.article-body > p:first-child::first-letter {
  float: left;
  margin: 0.08em 0.1em 0 0;
  color: var(--red);
  font-size: 4.5rem;
  line-height: 0.72;
}

.article-body p {
  margin: 0 0 1.2em;
}

.article-body h2 {
  margin: 1.7em 0 0.55em;
  padding-top: 0.5em;
  border-top: 3px double var(--line);
  font-size: clamp(1.9rem, 4vw, 2.75rem);
  font-weight: 400;
  line-height: 1.08;
}

.article-body h3 {
  margin: 1.5em 0 0.45em;
  color: var(--red-dark);
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.2;
}

.article-body h4 {
  margin: 1.4em 0 0.35em;
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.article-body ul,
.article-body ol {
  margin: 0 0 1.35em;
  padding-left: 1.25em;
}

.article-body li {
  margin-bottom: 0.45em;
  padding-left: 0.25em;
}

.article-body blockquote {
  margin: 2em 0;
  padding: 18px 0 18px 24px;
  color: var(--red-dark);
  border-left: 5px solid var(--red);
  font-size: 1.35rem;
  line-height: 1.35;
}

.tip-box {
  margin: 2em 0;
  padding: 20px 24px;
  background: var(--paper-deep);
  border-block: 1px solid var(--line);
}

.tip-box strong {
  color: var(--red-dark);
}

.related-rail {
  grid-column: 3;
  align-self: start;
  padding-top: 14px;
  border-top: 1px solid var(--ink);
}

.site-footer {
  color: var(--white);
  background: var(--red-dark);
  border-top: 8px solid var(--ink);
}

.site-footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 38px 0;
}

.footer-brand {
  color: #f8dfc4;
  font-size: 2.8rem;
  line-height: 1;
}

.site-footer p {
  max-width: 50ch;
  margin: 8px 0 0;
  color: #ead8ca;
  font-size: 0.86rem;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.78rem;
  text-transform: uppercase;
}

.search-dialog {
  width: min(680px, calc(100% - 28px));
  max-height: min(760px, calc(100vh - 40px));
  padding: 0;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--ink);
  box-shadow: var(--shadow);
}

.search-dialog::backdrop {
  background: rgba(36, 27, 22, 0.72);
}

.search-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
}

.search-head h2 {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 400;
}

.search-close {
  width: 36px;
  height: 36px;
  color: var(--ink);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 1.5rem;
}

.search-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  padding: 20px;
}

.search-form input {
  width: 100%;
  min-width: 0;
  padding: 11px 12px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--ink);
  border-radius: 0;
}

.search-form button {
  padding: 10px 17px;
  color: var(--white);
  background: var(--red-dark);
  border: 1px solid var(--red-dark);
  border-radius: 0;
  cursor: pointer;
}

.search-status {
  margin: 0;
  padding: 0 20px 12px;
  color: var(--muted);
  font-size: 0.83rem;
}

.search-results {
  margin: 0;
  padding: 0 20px 20px;
  list-style: none;
}

.search-results li {
  padding: 15px 0;
  border-top: 1px solid var(--line);
}

.search-results a {
  display: block;
  font-size: 1.2rem;
  line-height: 1.2;
}

.search-results span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.8rem;
}

@media (max-width: 980px) {
  .lead-grid,
  .article-header {
    grid-template-columns: 1fr;
  }

  .lead-story {
    grid-template-columns: minmax(0, 1.1fr) minmax(220px, 0.9fr);
  }

  .side-stories {
    grid-template-columns: repeat(2, 1fr);
    gap: 0 24px;
  }

  .article-shell {
    grid-template-columns: minmax(150px, 0.35fr) minmax(0, 1fr);
  }

  .article-header {
    grid-column: 1 / -1;
  }

  .article-rail {
    grid-column: 1;
  }

  .article-body {
    grid-column: 2;
  }

  .related-rail {
    grid-column: 2;
    margin-top: 10px;
  }

  .ledger-row,
  .category-list .ledger-row {
    grid-template-columns: 38px minmax(220px, 0.8fr) minmax(0, 1.2fr) 180px;
  }

  .ledger-row img,
  .category-list .ledger-row img {
    display: block;
    width: 180px;
  }
}

@media (max-width: 720px) {
  body {
    font-size: 16px;
  }

  .utility-row,
  .masthead,
  .section-inner,
  .site-footer-inner,
  .article-shell,
  .category-shell {
    width: min(calc(100% - 28px), var(--content));
  }

  .utility-row p:first-child {
    display: none;
  }

  .utility-row {
    justify-content: flex-end;
  }

  .masthead {
    grid-template-columns: 1fr;
    padding-block: 15px 12px;
  }

  .brand {
    grid-column: 1;
  }

  .edition-note {
    display: none;
  }

  .brand-name {
    font-size: 3.4rem;
  }

  .main-nav {
    overflow: visible;
  }

  .main-nav ul {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
    min-width: 0;
    padding-inline: 8px;
    gap: 0;
  }

  .main-nav a {
    display: grid;
    min-height: 50px;
    padding: 6px;
    place-items: center;
    font-size: 0.7rem;
    line-height: 1.1;
    text-align: center;
  }

  .ticker-inner {
    width: calc(100% - 28px);
  }

  .lead-grid,
  .lead-story,
  .side-stories,
  .manifesto-inner,
  .category-intro,
  .site-footer-inner,
  .article-shell,
  .article-header {
    grid-template-columns: 1fr;
  }

  .lead-story figure {
    grid-row: auto;
  }

  .lead-story img {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .lead-copy h1 {
    max-width: 14ch;
    font-size: 2.65rem;
  }

  .side-stories {
    border-top-width: 3px;
  }

  .side-story {
    grid-template-columns: 92px 1fr;
  }

  .side-story img {
    width: 92px;
  }

  .section-heading {
    align-items: flex-end;
  }

  .ledger-row,
  .category-list .ledger-row {
    grid-template-columns: 32px 1fr;
    gap: 12px;
  }

  .ledger-row p {
    grid-column: 2;
  }

  .ledger-row > a:last-child {
    grid-column: 2;
    width: 100%;
  }

  .ledger-row img,
  .category-list .ledger-row img {
    width: 100%;
    aspect-ratio: 16 / 9;
  }

  .manifesto-inner {
    gap: 20px;
  }

  .category-intro {
    gap: 18px;
  }

  .category-intro h1 {
    font-size: 3.5rem;
  }

  .article-shell {
    display: block;
    padding-top: 20px;
  }

  .article-header {
    display: flex;
    flex-direction: column-reverse;
    gap: 20px;
  }

  .article-header h1 {
    font-size: 3rem;
  }

  .article-rail {
    position: static;
    margin: 22px 0;
  }

  .article-rail ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 16px;
  }

  .related-rail {
    margin-top: 36px;
  }

  .site-footer-inner {
    gap: 22px;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 420px) {
  .ticker-label {
    display: none;
  }

  .side-story h2 {
    font-size: 1.13rem;
  }

  .article-header h1 {
    font-size: 2.55rem;
  }

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

  .search-form {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

/* editorial-core-v1 */
.editorial-core {
  --editorial-core-accent: var(--accent, var(--red, var(--primary, currentColor)));
  width: min(calc(100% - 32px), var(--max, var(--max-width, 1180px)));
  margin: clamp(40px, 6vw, 78px) auto;
  padding: clamp(24px, 3vw, 42px) 0;
  border-top: 3px solid currentColor;
  border-bottom: 1px solid currentColor;
}
.editorial-core__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(24px, 3vw, 38px);
}
.editorial-core__head p,
.editorial-core__kicker {
  margin: 0 0 6px;
  color: var(--editorial-core-accent);
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
}
.editorial-core__head h2 {
  margin: 0;
  max-width: 18ch;
  font-size: 3rem;
  line-height: 1;
}
.editorial-core__head > span {
  flex: none;
  padding-bottom: 4px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}
.editorial-core :is(h3, p) {
  overflow-wrap: break-word;
  hyphens: none;
}
.editorial-core a {
  color: inherit;
}
.editorial-core__feature {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  min-width: 0;
  margin: 0 0 clamp(24px, 3vw, 38px);
  border: 1px solid currentColor;
  background: rgba(127, 127, 127, 0.06);
}
.editorial-core__feature > a,
.editorial-core__card > a {
  display: block;
  min-width: 0;
  text-decoration: none;
}
.editorial-core__media {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 220px;
  overflow: hidden;
  background: rgba(127, 127, 127, 0.12);
}
.editorial-core__feature .editorial-core__media {
  height: clamp(300px, 34vw, 460px);
}
.editorial-core__media img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
}
.editorial-core__feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: clamp(24px, 3.5vw, 48px);
}
.editorial-core__feature h3 {
  margin: 0 0 16px;
  font-size: 2rem;
  line-height: 1.04;
}
.editorial-core__feature-copy > p:not(.editorial-core__kicker) {
  margin: 0 0 22px;
}
.editorial-core__read {
  width: max-content;
  max-width: 100%;
  margin-top: auto;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}
.editorial-core__spotlight,
.editorial-core__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 30px);
}
.editorial-core__spotlight {
  margin-bottom: clamp(24px, 3vw, 38px);
}
.editorial-core__card {
  min-width: 0;
  margin: 0;
  border-bottom: 1px solid currentColor;
}
.editorial-core__card .editorial-core__media {
  min-height: 0;
  height: clamp(170px, 18vw, 250px);
}
.editorial-core__card-copy {
  padding: 18px 0 22px;
}
.editorial-core__card h3 {
  margin: 0 0 10px;
  font-size: 1.25rem;
  line-height: 1.18;
}
.editorial-core__card-copy > p:not(.editorial-core__kicker) {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
}
.editorial-core__card--compact {
  display: grid;
  grid-template-columns: minmax(110px, 0.7fr) minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}
.editorial-core__card--compact .editorial-core__media {
  height: 130px;
}
.editorial-core__card--compact .editorial-core__card-copy {
  padding-top: 0;
}
.editorial-core__card--compact h3 {
  font-size: 1rem;
}
.editorial-core__card--compact .editorial-core__card-copy > p:not(.editorial-core__kicker) {
  display: none;
}
@media (max-width: 900px) {
  .editorial-core__feature {
    grid-template-columns: 1fr;
  }
  .editorial-core__spotlight,
  .editorial-core__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 620px) {
  .editorial-core {
    width: min(calc(100% - 24px), var(--max, var(--max-width, 1180px)));
    margin-block: 32px;
    padding-block: 24px;
  }
  .editorial-core__head {
    align-items: start;
  }
  .editorial-core__head h2 {
    font-size: 2rem;
  }
  .editorial-core__head > span {
    white-space: nowrap;
  }
  .editorial-core__feature .editorial-core__media {
    height: min(72vw, 340px);
  }
  .editorial-core__feature-copy {
    padding: 22px;
  }
  .editorial-core__feature h3 {
    font-size: 1.75rem;
  }
  .editorial-core__spotlight,
  .editorial-core__grid {
    grid-template-columns: 1fr;
  }
  .editorial-core__card {
    display: grid;
    grid-template-columns: minmax(110px, 0.72fr) minmax(0, 1fr);
    gap: 14px;
    align-items: start;
  }
  .editorial-core__card .editorial-core__media {
    height: 122px;
  }
  .editorial-core__card-copy {
    padding-top: 0;
  }
  .editorial-core__card-copy > p:not(.editorial-core__kicker) {
    display: none;
  }
}

/* editorial-diversity-v2 */
.editorial-core--diverse {
  --ec-tint: rgba(127, 127, 127, 0.08);
  --ec-strong-tint: rgba(127, 127, 127, 0.15);
  counter-reset: editorial-card 1;
  gap: var(--ec-gap);
  isolation: isolate;
}
.editorial-core--diverse .editorial-core__media {
  display: block !important;
  overflow: hidden;
  border-radius: var(--ec-radius);
}
.editorial-core--diverse .editorial-core__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--ec-image-position);
}
.editorial-core--diverse .editorial-core__card {
  counter-increment: editorial-card;
}
.editorial-core--diverse .editorial-core__kicker::before {
  content: counter(editorial-card, decimal-leading-zero) " / ";
  opacity: 0.62;
}
.editorial-core--diverse .editorial-core__feature .editorial-core__kicker::before {
  content: "01 / ";
}
.editorial-core--diverse.ec-image-landscape .editorial-core__card .editorial-core__media { aspect-ratio: 16 / 10; }
.editorial-core--diverse.ec-image-portrait .editorial-core__card .editorial-core__media { aspect-ratio: 4 / 5; }
.editorial-core--diverse.ec-image-square .editorial-core__card .editorial-core__media { aspect-ratio: 1; }
.editorial-core--diverse.ec-image-panorama .editorial-core__card .editorial-core__media { aspect-ratio: 2 / 1; }
.editorial-core--diverse.ec-image-soft .editorial-core__media { border-radius: 8px; }
.editorial-core--diverse.ec-image-cut .editorial-core__media { clip-path: polygon(0 0, 94% 0, 100% 12%, 100% 100%, 6% 100%, 0 88%); }

.editorial-core--diverse.ec-cards-rules .editorial-core__card { border-top: 1px solid currentColor; border-bottom: 0; padding-top: 12px; }
.editorial-core--diverse.ec-cards-blocks .editorial-core__card { background: var(--ec-tint); border: 0; padding: 12px; }
.editorial-core--diverse.ec-cards-quiet .editorial-core__card { border: 0; }
.editorial-core--diverse.ec-cards-numbered .editorial-core__card { border-left: 4px solid currentColor; border-bottom: 0; padding-left: 14px; }
.editorial-core--diverse.ec-cards-frames .editorial-core__card { border: 1px solid currentColor; padding: 10px; }
.editorial-core--diverse.ec-heading-center .editorial-core__head { align-items: center; text-align: center; flex-direction: column; }
.editorial-core--diverse.ec-heading-center .editorial-core__head h2 { max-width: none; }
.editorial-core--diverse.ec-heading-rail .editorial-core__head { border-left: 8px solid currentColor; padding-left: 18px; }
.editorial-core--diverse.ec-heading-oversized .editorial-core__head h2 { font-size: 3.7rem; max-width: 12ch; }

/* Folio: a calm lead spread followed by an even reading shelf. */
.editorial-core--diverse.ec-layout-folio .editorial-core__feature { grid-template-columns: minmax(0, var(--ec-lead)) minmax(280px, 1fr); }
.editorial-core--diverse.ec-layout-folio .editorial-core__spotlight { grid-template-columns: 1.35fr 0.85fr 0.85fr; }

/* Ledger: section heading acts as a permanent editorial rail. */
.editorial-core--diverse.ec-layout-ledger {
  display: grid;
  grid-template-columns: minmax(180px, 0.28fr) minmax(0, 1fr);
  align-items: start;
}
.editorial-core--diverse.ec-layout-ledger .editorial-core__head { grid-row: 1 / 4; display: block; position: sticky; top: 18px; padding-right: 22px; }
.editorial-core--diverse.ec-layout-ledger .editorial-core__head > span { display: block; margin-top: 22px; }
.editorial-core--diverse.ec-layout-ledger .editorial-core__feature,
.editorial-core--diverse.ec-layout-ledger .editorial-core__spotlight,
.editorial-core--diverse.ec-layout-ledger .editorial-core__grid { grid-column: 2; }

/* Mosaic: large blocks with staggered image proportions. */
.editorial-core--diverse.ec-layout-mosaic .editorial-core__feature { grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr); }
.editorial-core--diverse.ec-layout-mosaic .editorial-core__feature > a { order: 2; }
.editorial-core--diverse.ec-layout-mosaic .editorial-core__spotlight { grid-template-columns: 1.4fr 0.8fr 0.8fr; align-items: end; }
.editorial-core--diverse.ec-layout-mosaic .editorial-core__spotlight .editorial-core__card:first-child .editorial-core__media { height: 340px; }

/* Dispatch: image-led front page with a readable overlay. */
.editorial-core--diverse.ec-layout-dispatch .editorial-core__feature { position: relative; display: block; min-height: 520px; color: white; border: 0; }
.editorial-core--diverse.ec-layout-dispatch .editorial-core__feature > a,
.editorial-core--diverse.ec-layout-dispatch .editorial-core__feature .editorial-core__media { position: absolute; inset: 0; }
.editorial-core--diverse.ec-layout-dispatch .editorial-core__feature-copy { position: relative; z-index: 1; width: min(620px, 74%); min-height: 520px; justify-content: end; background: linear-gradient(90deg, rgba(10, 10, 10, 0.88), rgba(10, 10, 10, 0.5), transparent); }
.editorial-core--diverse.ec-layout-dispatch .editorial-core__kicker { color: white; }

/* Catalog: text-first lead and compact product-like rows. */
.editorial-core--diverse.ec-layout-catalog .editorial-core__feature { grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr); }
.editorial-core--diverse.ec-layout-catalog .editorial-core__feature > a { order: 2; }
.editorial-core--diverse.ec-layout-catalog .editorial-core__spotlight { grid-template-columns: 1fr; }
.editorial-core--diverse.ec-layout-catalog .editorial-core__spotlight .editorial-core__card { display: grid; grid-template-columns: 180px minmax(0, 1fr); gap: 20px; }
.editorial-core--diverse.ec-layout-catalog .editorial-core__spotlight .editorial-core__media { height: 120px; }

/* Journal: broad photography and generous article notes. */
.editorial-core--diverse.ec-layout-journal .editorial-core__feature { display: block; max-width: 980px; border: 0; }
.editorial-core--diverse.ec-layout-journal .editorial-core__feature .editorial-core__media { height: 500px; }
.editorial-core--diverse.ec-layout-journal .editorial-core__feature-copy { max-width: 720px; margin: -76px 0 0 auto; position: relative; background: var(--paper, var(--background, white)); border: 1px solid currentColor; }
.editorial-core--diverse.ec-layout-journal .editorial-core__spotlight { grid-template-columns: repeat(2, minmax(0, 1fr)); }

/* Ribbon: reversed lead with strong horizontal movement. */
.editorial-core--diverse.ec-layout-ribbon .editorial-core__feature { grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr); }
.editorial-core--diverse.ec-layout-ribbon .editorial-core__feature > a { order: 2; }
.editorial-core--diverse.ec-layout-ribbon .editorial-core__spotlight { display: flex; overflow-x: auto; padding-bottom: 14px; }
.editorial-core--diverse.ec-layout-ribbon .editorial-core__spotlight .editorial-core__card { flex: 0 0 min(380px, 72vw); }

/* Portrait: one tall cover beside a stack of current stories. */
.editorial-core--diverse.ec-layout-portrait {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  align-items: start;
}
.editorial-core--diverse.ec-layout-portrait .editorial-core__head,
.editorial-core--diverse.ec-layout-portrait .editorial-core__grid { grid-column: 1 / -1; }
.editorial-core--diverse.ec-layout-portrait .editorial-core__feature { display: block; margin-right: var(--ec-gap); }
.editorial-core--diverse.ec-layout-portrait .editorial-core__feature .editorial-core__media { height: 620px; }
.editorial-core--diverse.ec-layout-portrait .editorial-core__spotlight { grid-template-columns: 1fr; }
.editorial-core--diverse.ec-layout-portrait .editorial-core__spotlight .editorial-core__card { display: grid; grid-template-columns: 140px minmax(0, 1fr); gap: 16px; }
.editorial-core--diverse.ec-layout-portrait .editorial-core__spotlight .editorial-core__media { height: 120px; }

/* Panorama: cinema-wide lead followed by a dense magazine grid. */
.editorial-core--diverse.ec-layout-panorama .editorial-core__feature { grid-template-columns: 1fr; }
.editorial-core--diverse.ec-layout-panorama .editorial-core__feature .editorial-core__media { height: 420px; }
.editorial-core--diverse.ec-layout-panorama .editorial-core__feature-copy { max-width: 820px; }
.editorial-core--diverse.ec-layout-panorama .editorial-core__spotlight { grid-template-columns: repeat(3, minmax(0, 1fr)); }

/* Index: images and numbered headlines read like an editorial contents page. */
.editorial-core--diverse.ec-layout-index .editorial-core__feature { border: 0; border-top: 1px solid currentColor; border-bottom: 1px solid currentColor; background: transparent; }
.editorial-core--diverse.ec-layout-index .editorial-core__spotlight,
.editorial-core--diverse.ec-layout-index .editorial-core__grid { grid-template-columns: 1fr; gap: 0; }
.editorial-core--diverse.ec-layout-index .editorial-core__card,
.editorial-core--diverse.ec-layout-index .editorial-core__card--compact { display: grid; grid-template-columns: 180px minmax(0, 1fr); gap: 20px; padding: 15px 0; border-left: 0; border-top: 1px solid currentColor; }
.editorial-core--diverse.ec-layout-index .editorial-core__card .editorial-core__media { height: 110px; }
.editorial-core--diverse.ec-layout-index .editorial-core__card-copy { padding: 0; }

/* Notebook: tactile, offset cards with breathing room. */
.editorial-core--diverse.ec-layout-notebook .editorial-core__feature { max-width: 1040px; margin-left: auto; transform: rotate(-0.35deg); box-shadow: 12px 12px 0 var(--ec-strong-tint); }
.editorial-core--diverse.ec-layout-notebook .editorial-core__spotlight .editorial-core__card:nth-child(2) { transform: translateY(28px); }
.editorial-core--diverse.ec-layout-notebook .editorial-core__grid { margin-top: 36px; grid-template-columns: repeat(2, minmax(0, 1fr)); }

/* Gallery: photography is the main navigation surface. */
.editorial-core--diverse.ec-layout-gallery .editorial-core__feature { grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr); }
.editorial-core--diverse.ec-layout-gallery .editorial-core__feature > a { order: 2; }
.editorial-core--diverse.ec-layout-gallery .editorial-core__spotlight,
.editorial-core--diverse.ec-layout-gallery .editorial-core__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.editorial-core--diverse.ec-layout-gallery .editorial-core__card--compact { display: block; }
.editorial-core--diverse.ec-layout-gallery .editorial-core__card--compact .editorial-core__media { height: 210px; }
.editorial-core--diverse.ec-layout-gallery .editorial-core__card-copy > p:not(.editorial-core__kicker) { display: none; }

@media (max-width: 900px) {
  .editorial-core--diverse.ec-layout-ledger,
  .editorial-core--diverse.ec-layout-portrait { display: block; }
  .editorial-core--diverse.ec-layout-ledger .editorial-core__head { position: static; }
  .editorial-core--diverse.ec-layout-gallery .editorial-core__spotlight,
  .editorial-core--diverse.ec-layout-gallery .editorial-core__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 620px) {
  .editorial-core--diverse { margin-block: 28px; }
  .editorial-core--diverse .editorial-core__spotlight,
  .editorial-core--diverse .editorial-core__grid {
    grid-template-columns: minmax(0, 1fr) !important;
  }
  .editorial-core--diverse .editorial-core__card,
  .editorial-core--diverse .editorial-core__card-copy,
  .editorial-core--diverse .editorial-core__feature-copy {
    min-width: 0;
  }
  .editorial-core--diverse h3 {
    overflow-wrap: break-word;
    hyphens: none;
  }
  .editorial-core--diverse .editorial-core__head h2,
  .editorial-core--diverse.ec-heading-oversized .editorial-core__head h2 { font-size: 2rem; }
  .editorial-core--diverse .editorial-core__head > span { white-space: normal; text-align: right; }
  .editorial-core--diverse .editorial-core__card,
  .editorial-core--diverse .editorial-core__card--compact {
    display: grid;
    grid-template-columns: minmax(112px, 0.72fr) minmax(0, 1fr);
    gap: 14px;
  }
  .editorial-core--diverse .editorial-core__card .editorial-core__media,
  .editorial-core--diverse .editorial-core__card--compact .editorial-core__media { height: 126px; }
  .editorial-core--diverse .editorial-core__card-copy { padding-top: 0; }

  .editorial-core--diverse.ec-mobile-cover .editorial-core__feature { position: relative; display: block; min-height: 520px; color: white; border: 0; }
  .editorial-core--diverse.ec-mobile-cover .editorial-core__feature > a,
  .editorial-core--diverse.ec-mobile-cover .editorial-core__feature .editorial-core__media { position: absolute; inset: 0; height: 100%; }
  .editorial-core--diverse.ec-mobile-cover .editorial-core__feature-copy { position: absolute; z-index: 1; inset: auto 12px 12px; padding: 20px; background: rgba(10, 10, 10, 0.82); color: white; }
  .editorial-core--diverse.ec-mobile-cover .editorial-core__kicker { color: white; }

  .editorial-core--diverse.ec-mobile-split .editorial-core__feature { display: grid; grid-template-columns: 42% 58%; }
  .editorial-core--diverse.ec-mobile-split .editorial-core__feature .editorial-core__media { height: 100%; min-height: 320px; }
  .editorial-core--diverse.ec-mobile-split .editorial-core__feature-copy { padding: 18px; }
  .editorial-core--diverse.ec-mobile-split .editorial-core__feature h3 { font-size: 1.35rem; }

  .editorial-core--diverse.ec-mobile-rail .editorial-core__feature { grid-template-columns: 34% 66%; }
  .editorial-core--diverse.ec-mobile-rail .editorial-core__feature .editorial-core__media { min-height: 360px; height: 100%; }
  .editorial-core--diverse.ec-mobile-rail .editorial-core__feature-copy { padding: 18px; }
  .editorial-core--diverse.ec-mobile-rail .editorial-core__feature h3 { font-size: 1.4rem; }

  .editorial-core--diverse.ec-mobile-poster .editorial-core__feature { display: flex; flex-direction: column; border-width: 5px 0 0; }
  .editorial-core--diverse.ec-mobile-poster .editorial-core__feature > a { order: 2; }
  .editorial-core--diverse.ec-mobile-poster .editorial-core__feature-copy { order: 1; padding: 20px 0; }
  .editorial-core--diverse.ec-mobile-poster .editorial-core__feature .editorial-core__media { height: 290px; }

  .editorial-core--diverse.ec-mobile-magazine .editorial-core__feature { display: block; transform: none; box-shadow: none; border: 0; }
  .editorial-core--diverse.ec-mobile-magazine .editorial-core__feature .editorial-core__media { height: 330px; }
  .editorial-core--diverse.ec-mobile-magazine .editorial-core__feature-copy { position: relative; width: calc(100% - 24px); margin: -68px 0 0 24px; padding: 20px; border: 1px solid currentColor; background: var(--paper, var(--background, white)); }

  .editorial-core--diverse.ec-mobile-tiles .editorial-core__spotlight,
  .editorial-core--diverse.ec-mobile-tiles .editorial-core__grid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; gap: 12px; }
  .editorial-core--diverse.ec-mobile-tiles .editorial-core__card,
  .editorial-core--diverse.ec-mobile-tiles .editorial-core__card--compact { display: block; }
  .editorial-core--diverse.ec-mobile-tiles .editorial-core__card .editorial-core__media { height: 150px; }

  .editorial-core--diverse.ec-mobile-stream .editorial-core__feature { display: grid; grid-template-columns: 1fr; border-left: 0; border-right: 0; }
  .editorial-core--diverse.ec-mobile-stream .editorial-core__feature .editorial-core__media { height: 230px; }
  .editorial-core--diverse.ec-mobile-stream .editorial-core__feature-copy { padding: 20px 0; }
  .editorial-core--diverse.ec-mobile-stream .editorial-core__spotlight,
  .editorial-core--diverse.ec-mobile-stream .editorial-core__grid { display: block; }
  .editorial-core--diverse.ec-mobile-stream .editorial-core__card,
  .editorial-core--diverse.ec-mobile-stream .editorial-core__card--compact { grid-template-columns: 92px minmax(0, 1fr); padding: 12px 0; }
  .editorial-core--diverse.ec-mobile-stream .editorial-core__card .editorial-core__media { height: 82px; }

  .editorial-core--diverse.ec-mobile-stack .editorial-core__feature { grid-template-columns: 1fr; }
  .editorial-core--diverse.ec-mobile-stack .editorial-core__feature .editorial-core__media { height: 300px; }

  .editorial-core--diverse.ec-layout-gallery .editorial-core__card,
  .editorial-core--diverse.ec-layout-gallery .editorial-core__card--compact {
    display: block;
  }
  .editorial-core--diverse.ec-layout-gallery .editorial-core__spotlight,
  .editorial-core--diverse.ec-layout-gallery .editorial-core__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  .editorial-core--diverse.ec-layout-gallery .editorial-core__card .editorial-core__media,
  .editorial-core--diverse.ec-layout-gallery .editorial-core__card--compact .editorial-core__media {
    height: 158px;
  }
}

/* bespoke-gaiwan-start */
.gaiwan-tearoom{--g-ink:#24342e;--g-muted:#65736b;--g-paper:#f5f1e6;--g-cream:#fffdf8;--g-line:#d3d8c8;--g-sage:#b9c8af;--g-tea:#6e805a;background:var(--g-paper);color:var(--g-ink);font-family:Georgia,"Times New Roman",serif}.gaiwan-tearoom a{color:inherit}.tea-header{background:var(--g-cream);border-bottom:1px solid var(--g-line)}.tea-top,.tea-masthead,.tea-nav,.tea-hero,.tea-routes,.tea-journal,.tea-note,.tea-signpost,.tea-footer{width:min(calc(100% - 44px),1180px);margin-inline:auto}.tea-top{display:flex;justify-content:space-between;gap:18px;align-items:center;padding:12px 0;border-bottom:1px solid var(--g-line);font:600 .68rem/1.3 system-ui,sans-serif;letter-spacing:.12em;text-transform:uppercase;color:var(--g-muted)}.search-open{border:0;background:none;color:var(--g-ink);font:700 .68rem system-ui;letter-spacing:.12em;text-transform:uppercase;cursor:pointer}.tea-masthead{display:flex;align-items:end;justify-content:space-between;padding:30px 0 22px}.tea-brand{display:flex;flex-direction:column;text-decoration:none}.tea-brand span{font-size:clamp(3.4rem,8vw,7rem);line-height:.78;letter-spacing:-.06em}.tea-brand small{margin-top:14px;color:var(--g-tea);font:700 .72rem system-ui;letter-spacing:.2em;text-transform:uppercase}.tea-masthead p{max-width:220px;margin:0;color:var(--g-muted);font-size:1rem}.tea-nav{display:flex;gap:30px;padding:13px 0;border-top:1px solid var(--g-ink);font:700 .7rem system-ui;letter-spacing:.1em;text-transform:uppercase}.tea-nav a{text-decoration:none}.tea-hero{display:grid;grid-template-columns:1fr 1fr;gap:58px;align-items:center;padding:80px 0 92px}.tea-hero__copy h1{max-width:650px;margin:0;font-size:clamp(3rem,6.5vw,6.8rem);font-weight:400;line-height:.92;letter-spacing:-.055em}.eyebrow{margin:0 0 15px;color:var(--g-tea);font:700 .68rem/1.2 system-ui;letter-spacing:.16em;text-transform:uppercase}.tea-hero__copy>p:not(.eyebrow){max-width:540px;margin:28px 0 0;color:var(--g-muted);font-size:1.15rem;line-height:1.65}.hero-link,.read-more{display:inline-flex;gap:12px;align-items:center;margin-top:26px;color:var(--g-tea);font:700 .76rem system-ui;letter-spacing:.09em;text-transform:uppercase;text-decoration:none}.tea-hero__image{margin:0}.tea-hero__image img{width:100%;aspect-ratio:4/3;object-fit:cover;background:var(--g-sage)}.tea-hero__image figcaption{margin-top:12px;color:var(--g-muted);font:600 .68rem system-ui;letter-spacing:.08em;text-transform:uppercase}.tea-routes,.tea-journal{padding-bottom:90px}.section-intro{border-bottom:1px solid var(--g-line);padding-bottom:18px;margin-bottom:28px}.section-intro h2{max-width:760px;margin:0;font-size:clamp(2rem,4vw,4rem);font-weight:400;line-height:1}.section-intro--split{display:flex;align-items:end;justify-content:space-between;gap:20px}.section-intro--split>span{color:var(--g-muted);font:700 .7rem system-ui;letter-spacing:.1em;text-transform:uppercase}.route-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:14px}.route-tile{display:flex;min-height:190px;flex-direction:column;padding:22px;background:var(--g-cream);border-top:5px solid var(--g-tea);text-decoration:none}.route-tile--2{border-color:#9a694a}.route-tile--3{border-color:#9eac83}.route-number{color:var(--g-muted);font-size:1.7rem}.route-tile strong{margin-top:30px;font-size:1.55rem;font-weight:400}.route-tile small{margin-top:8px;color:var(--g-muted);font-size:.95rem}.route-count{margin-top:auto;padding-top:20px;color:var(--g-tea);font:700 .65rem system-ui;letter-spacing:.1em;text-transform:uppercase}.tea-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:26px 18px}.tea-card{background:var(--g-cream);border-bottom:1px solid var(--g-line)}.tea-card__media{display:block;overflow:hidden;aspect-ratio:4/3;background:var(--g-sage)}.tea-card__media img{width:100%;height:100%;object-fit:cover;transition:transform .3s}.tea-card:hover img{transform:scale(1.035)}.tea-card__body{padding:17px 18px 22px}.tea-card h3{margin:0;font-size:1.55rem;font-weight:400;line-height:1.08}.tea-card h3 a{text-decoration:none}.tea-card__body>p:not(.eyebrow){margin:13px 0 0;color:var(--g-muted);font-size:.96rem;line-height:1.55}.read-more{margin-top:18px;font-size:.65rem}.tea-note{display:grid;grid-template-columns:1fr 1fr;gap:60px;padding:62px 0;border-block:1px solid var(--g-line);margin-bottom:82px}.tea-note h2{max-width:520px;margin:0;font-size:clamp(2.1rem,4vw,4rem);font-weight:400;line-height:.98}.tea-note>p{align-self:end;max-width:440px;margin:0;color:var(--g-muted);font-size:1.1rem}.tea-signpost{padding-bottom:90px}.tea-signpost>div{display:grid;grid-template-columns:repeat(2,1fr);gap:0 28px}.tea-signpost a{display:grid;grid-template-columns:110px 1fr 20px;gap:14px;padding:18px 0;border-bottom:1px solid var(--g-line);text-decoration:none}.tea-signpost a span{color:var(--g-tea);font:700 .65rem system-ui;text-transform:uppercase;letter-spacing:.08em}.tea-signpost strong{font-size:1.2rem;font-weight:400}.tea-signpost b{color:var(--g-tea)}.tea-footer{display:flex;justify-content:space-between;gap:30px;padding:35px 0 55px;border-top:1px solid var(--g-ink)}.tea-footer strong{font-size:1.8rem;font-weight:400}.tea-footer p{margin:8px 0 0;color:var(--g-muted)}.tea-footer nav{display:flex;gap:20px;font:700 .7rem system-ui;text-transform:uppercase;letter-spacing:.08em}.tea-footer nav a{text-decoration:none}
@media(max-width:760px){.tea-top,.tea-masthead,.tea-nav,.tea-hero,.tea-routes,.tea-journal,.tea-note,.tea-signpost,.tea-footer{width:min(calc(100% - 32px),1180px)}.tea-top span:nth-child(2){display:none}.tea-masthead{align-items:start;padding:24px 0 18px}.tea-masthead p{display:none}.tea-nav{gap:18px;overflow:auto;white-space:nowrap}.tea-hero{display:flex;flex-direction:column;gap:32px;align-items:stretch;padding:54px 0 62px}.tea-hero__copy h1{font-size:clamp(3rem,15vw,5rem)}.tea-hero__copy>p:not(.eyebrow){font-size:1rem}.tea-hero__image{order:-1}.tea-hero__image img{aspect-ratio:5/4}.route-grid,.tea-grid{grid-template-columns:1fr}.tea-routes,.tea-journal{padding-bottom:62px}.route-tile{min-height:145px}.section-intro--split{display:block}.section-intro--split>span{display:block;margin-top:10px}.tea-card__body{padding:16px 16px 21px}.tea-card h3{font-size:1.45rem}.tea-note{display:block;padding:42px 0;margin-bottom:58px}.tea-note>p{margin-top:26px;font-size:1rem}.tea-signpost>div{display:block}.tea-signpost a{grid-template-columns:88px 1fr 16px}.tea-footer{display:block;padding-bottom:38px}.tea-footer nav{margin-top:25px}}
.tea-nav a[aria-current="page"] { color: var(--g-tea); }
.gaiwan-category-main { width: min(calc(100% - 44px), 1180px); margin-inline: auto; padding: 54px 0 76px; }
.gaiwan-category-intro { display: grid; grid-template-columns: minmax(0, 1fr) minmax(260px, .55fr); gap: 48px; align-items: end; padding-bottom: 28px; border-bottom: 1px solid var(--g-ink); }
.gaiwan-category-intro h1 { max-width: 13ch; margin: 0; font-size: clamp(2.5rem, 4.4vw, 4rem); font-weight: 400; line-height: .98; }
.gaiwan-category-intro > p { max-width: 430px; margin: 0; color: var(--g-muted); font-size: 1.05rem; }
.gaiwan-category-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1px; margin-top: 28px; background: var(--g-line); border: 1px solid var(--g-line); }
.gaiwan-category-card { display: flex; min-width: 0; flex-direction: column; background: var(--g-cream); }
.gaiwan-category-card__media { display: block; aspect-ratio: 16 / 10; overflow: hidden; background: var(--g-sage); }
.gaiwan-category-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.gaiwan-category-card:hover img { transform: scale(1.025); }
.gaiwan-category-card__body { display: flex; flex: 1; flex-direction: column; padding: 18px; }
.gaiwan-category-card h2 { margin: 0; font-size: 1.45rem; font-weight: 400; line-height: 1.12; }
.gaiwan-category-card h2 a { text-decoration: none; }
.gaiwan-category-card__body > p:not(.eyebrow) { margin: 12px 0 0; color: var(--g-muted); font-size: .9rem; line-height: 1.5; }
.gaiwan-category-card .read-more { margin-top: auto; padding-top: 18px; font-size: .63rem; }
.category-intro h1 { font-size: clamp(2.5rem, 4.4vw, 4rem); }
.article-header h1 { font-size: clamp(2.5rem, 4.75vw, 4.75rem); }
.tea-hero__copy h1 { font-size: clamp(3rem, 4.75vw, 4.75rem); }
@media (max-width: 900px) {
  .category-intro h1 { font-size: clamp(2.5rem, 5.5vw, 3.5rem); }
  .article-header h1, .tea-hero__copy h1 { font-size: clamp(2.5rem, 6.5vw, 4rem); }
  .gaiwan-category-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 760px) {
  .gaiwan-category-main { width: min(calc(100% - 32px), 1180px); padding: 38px 0 58px; }
  .gaiwan-category-intro { display: block; }
  .gaiwan-category-intro > p { margin-top: 20px; }
  .gaiwan-category-grid { grid-template-columns: 1fr; }
  .gaiwan-category-card { display: grid; grid-template-columns: 132px minmax(0, 1fr); }
  .gaiwan-category-card__media { height: 100%; min-height: 190px; aspect-ratio: auto; }
  .gaiwan-category-card__body > p:not(.eyebrow) { display: none; }
}
@media (max-width: 480px) {
  .category-intro h1, .gaiwan-category-intro h1 { font-size: 2.65rem; }
  .article-header h1, .tea-hero__copy h1 { font-size: 3rem; }
  .section-intro h2, .tea-note h2 { font-size: 2.5rem; }
  .gaiwan-category-card { grid-template-columns: 112px minmax(0, 1fr); }
  .gaiwan-category-card__media { min-height: 176px; }
  .gaiwan-category-card__body { padding: 15px; }
  .gaiwan-category-card h2 { font-size: 1.25rem; }
}
/* bespoke-gaiwan-end */
