:root {
  --cream: #f3eadc;
  --paper: #fff8ee;
  --ink: #2c221c;
  --ink-soft: #5a4c43;
  --burgundy: #6e1c28;
  --burgundy-deep: #4a1018;
  --gold: #c4a056;
  --gold-dim: #a07e3a;
  --blush: #ead8c8;
  --rule: rgba(44, 34, 28, 0.12);
  --shadow: 0 16px 36px rgba(110, 28, 40, 0.08);
  --serif: "Fraunces", Georgia, serif;
  --sans: "Outfit", system-ui, sans-serif;
  --script: "Great Vibes", cursive;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6.5rem;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  line-height: 1.55;
}

:focus-visible {
  outline: 2px solid var(--burgundy);
  outline-offset: 3px;
}

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

.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;
}

a {
  color: var(--burgundy);
}

.skip {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 40;
  transform: translateY(-200%);
}

.skip:focus {
  transform: none;
  background: #fff;
  padding: 8px 12px;
  border-radius: 0.4rem;
  box-shadow: var(--shadow);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem max(5vw, calc(50% - 36rem));
  background: rgba(243, 234, 220, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--rule);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  color: inherit;
  flex-shrink: 0;
  min-width: max-content;
}

.brand-mark {
  width: 88px;
  height: 88px;
  max-width: none;
  object-fit: contain;
  background: transparent;
  flex-shrink: 0;
  display: block;
  visibility: visible;
}

.brand-text {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  line-height: 1;
}

.brand-philly,
.brand-stage {
  font-family: var(--sans);
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  text-transform: uppercase;
}

.brand-philly {
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--ink);
}

.brand-stage {
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--burgundy);
}

.nav-toggle {
  display: none;
  cursor: pointer;
  font: inherit;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--burgundy);
  background: none;
  border: 0;
  padding: 0.35rem 0;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.1rem;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

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

.nav a[aria-current="page"] {
  color: var(--burgundy);
  font-weight: 700;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(240px, 0.8fr);
  gap: 1.5rem;
  align-items: center;
  padding: 3.6rem max(5vw, calc(50% - 36rem)) 4.2rem;
  color: var(--ink);
  background:
    radial-gradient(900px 380px at 85% -10%, rgba(110, 28, 40, 0.12), transparent 55%),
    linear-gradient(180deg, #eadcc8 0%, var(--cream) 72%);
}

.kicker {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin: 0 0 0.75rem;
}

.hero h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.4rem, 5.5vw, 4.4rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  max-width: 12ch;
  margin: 0 0 1rem;
}

.hero h1 em {
  font-family: var(--script);
  font-style: normal;
  font-weight: 400;
  color: var(--burgundy);
  font-size: 0.92em;
}

.lede {
  max-width: 36rem;
  font-size: 1.08rem;
  color: var(--ink-soft);
  margin: 0 0 1.6rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.78rem 1.2rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.82rem;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--burgundy);
  color: #f8efe4;
}

.btn-primary:hover {
  background: var(--burgundy-deep);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: rgba(44, 34, 28, 0.22);
}

.btn-ghost:hover {
  background: rgba(110, 28, 40, 0.08);
  border-color: var(--burgundy);
}

.intimate-box {
  background: #fff8ee;
  border: 1px solid var(--rule);
  border-radius: 1.1rem;
  padding: 1.3rem 1.4rem;
  box-shadow: var(--shadow);
}

.intimate-box ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.9rem;
}

.intimate-box li {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.intimate-box li span {
  display: block;
  color: var(--burgundy);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.72rem;
  margin-bottom: 0.15rem;
}

.section {
  padding: 3.4rem max(5vw, calc(50% - 36rem));
  scroll-margin-top: 6rem;
}

.section h1,
.section h2 {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  margin: 0 0 0.5rem;
}

.section-intro {
  max-width: 40rem;
  color: var(--ink-soft);
  margin: 0 0 2rem;
}

.section-cream {
  background: var(--cream);
  color: var(--ink);
}

.section-lilac {
  background: var(--blush);
  color: var(--ink);
}

.pairing-night {
  display: grid;
  grid-template-columns: minmax(20rem, 0.92fr) minmax(22rem, 1.08fr);
  align-items: stretch;
  min-height: 100dvh;
  padding: 0;
  background: var(--blush);
  color: var(--ink);
  scroll-margin-top: 0;
}

.pairing-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: none;
  padding: clamp(1.6rem, 5vh, 4rem) clamp(1.35rem, 5vw, 4.5rem) clamp(1.8rem, 5vh, 4rem);
}

.pairing-copy h2 {
  font-family: var(--serif);
  font-size: clamp(1.85rem, 3.4vw, 3rem);
  margin: 0 0 0.65rem;
  max-width: 16ch;
}

.pairing-lede,
.pairing-beats {
  max-width: 38rem;
}

.pairing-hero {
  margin: 0;
  position: relative;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  min-height: 100%;
  background: #2c221c;
}

.pairing-hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 50% 28%;
  opacity: 1;
  transition: opacity 0.28s ease;
}

.pairing-hero img.is-on {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .pairing-hero img {
    transition: none;
  }
}

.pairing-lede {
  margin-bottom: 1.5rem;
}

.pairing-beats {
  display: grid;
  gap: 1rem;
  margin: 0 0 1.75rem;
}

.pairing-beats p {
  margin: 0;
  color: var(--ink-soft);
}

.pairing-beats strong {
  display: block;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

@media (min-width: 901px) and (max-height: 740px) {
  .pairing-copy {
    padding-top: 1.15rem;
    padding-bottom: 1.15rem;
  }

  .pairing-beats {
    gap: 0.7rem;
    margin-bottom: 1.2rem;
  }

  .pairing-lede {
    margin-bottom: 1rem;
  }
}

.featured-card.has-art {
  padding: 0 0 1.2rem;
  overflow: hidden;
}

.show-art {
  width: 100%;
  aspect-ratio: 16 / 10;
  height: auto;
  max-height: 220px;
  object-fit: cover;
  display: block;
  background: #2c221c;
}

.show-art-link,
.venue-thumb-link {
  display: block;
  line-height: 0;
}

.featured-card-copy h3 a {
  color: inherit;
  text-decoration: none;
}

.featured-card-copy h3 a:hover {
  text-decoration: underline;
}

.prose {
  max-width: 40rem;
}

.prose h2 {
  font-family: var(--serif);
  font-size: 1.25rem;
  margin: 1.6rem 0 0.45rem;
}

.prose p {
  color: var(--ink-soft);
  margin: 0 0 0.9rem;
}

.season-groups {
  display: grid;
  gap: 1.4rem;
  margin: 2rem 0 0;
}

.season-groups h2 {
  font-family: var(--serif);
  font-size: 1.2rem;
  margin: 0 0 0.4rem;
}

.season-groups ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.35rem;
}
}

.show-art-link:hover .show-art,
.venue-thumb-link:hover .venue-thumb {
  opacity: 0.92;
}

.show-art-fallback {
  background:
    radial-gradient(circle at 70% 20%, rgba(196, 160, 86, 0.35), transparent 45%),
    linear-gradient(160deg, #6e1c28, #4a1018);
}

.card-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  background: var(--burgundy);
  color: #f8efe4 !important;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.card-cta:hover {
  background: var(--burgundy-deep);
  color: #f8efe4 !important;
}

.dinner-find {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(110, 28, 40, 0.45);
  background: transparent;
  color: var(--burgundy) !important;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
}

.dinner-find:hover {
  background: rgba(110, 28, 40, 0.08);
  border-color: var(--burgundy);
}

.card-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem;
  margin-top: auto;
}

.plan-night {
  min-width: 0;
}

.plan-night > summary {
  list-style: none;
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--burgundy);
}

.plan-night > summary::-webkit-details-marker {
  display: none;
}

.plan-night[open] > summary {
  color: var(--burgundy-deep);
}

.plan-night-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.85rem;
  margin: 0.5rem 0 0;
}

.plan-night-panel a,
.plan-night-panel button {
  appearance: none;
  border: 0;
  padding: 0;
  background: none;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--burgundy);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.plan-night-panel a:hover,
.plan-night-panel button:hover {
  color: var(--burgundy-deep);
}

.share-show {
  max-width: 22rem;
}

.venue-card,
.featured-card {
  scroll-margin-top: 6rem;
}

.venue-card.is-map-focus,
.featured-card.is-map-focus {
  border-color: var(--burgundy);
  box-shadow: 0 0 0 3px rgba(110, 28, 40, 0.22), var(--shadow);
}

.venue-usual,
.venue-residents {
  font-size: 0.92rem;
  color: var(--ink-soft);
  margin: 0 0 0.55rem;
}

.venue-card.has-art {
  padding: 0 0 1.2rem;
  overflow: hidden;
}

.venue-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
}

.venue-card.has-art .venue-card-body {
  padding: 0.9rem 1.25rem 0;
}

.venue-thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  max-height: 168px;
  max-width: none;
  object-fit: cover;
  border-radius: 0;
  margin: 0;
  background: #4a1018;
  display: block;
}

.venue-address {
  font-size: 0.88rem;
}

.venue-address a {
  font-weight: 400;
  color: var(--ink-soft);
}

.footer-copy {
  margin-top: 0.85rem !important;
  font-size: 0.82rem;
}

.featured-card.has-art .featured-card-copy {
  padding: 1rem 1.25rem 1.15rem;
}

.featured-card:not(.has-art) .featured-card-copy {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.featured-card-copy {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.featured-card-copy p {
  margin: 0 0 0.75rem;
  color: var(--ink-soft);
}

.show-blurb {
  font-size: 0.95rem;
  line-height: 1.45;
}

.featured-card-copy a:last-child {
  margin-top: auto;
}

.filter-status {
  margin: -0.75rem 0 1.25rem;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.featured-card .kicker {
  margin-bottom: 0.35rem;
  color: var(--gold-dim);
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
}

.card[hidden],
.featured-card[hidden] {
  display: none !important;
}

.card,
.how-list li {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 1.1rem;
  padding: 1.2rem 1.25rem 1.3rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  text-align: left;
}

.how-list li {
  position: relative;
  padding: 0 0 1.2rem;
  overflow: hidden;
}

.card:hover,
.how-list li:hover {
  border-color: rgba(110, 28, 40, 0.28);
}

.card h3,
.how-list h3 {
  font-family: var(--serif);
  font-size: 1.28rem;
  margin: 0.15rem 0 0.35rem;
}

.card h3 a {
  color: inherit;
  font-weight: inherit;
}

.card h3 a:hover {
  color: var(--burgundy);
}

.card > p,
.venue-card-body p {
  margin: 0 0 0.85rem;
  color: var(--ink-soft);
}

.card > p:last-of-type,
.venue-card-body > p:last-of-type,
.featured-card-copy > p:not(.kicker) {
  flex: 1;
}

.card a {
  font-weight: 600;
  text-decoration: none;
  color: var(--burgundy);
}

.card a:hover {
  color: var(--gold-dim);
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.65rem;
}

.chip {
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: rgba(110, 28, 40, 0.16);
  color: #4a1219;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1rem;
}

.venues-tools {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin: 0 0 1rem;
}

.venues-tools .filters {
  margin: 0;
  gap: 0.35rem;
}

.venues-tools .filter-status {
  margin: 0;
}

.date-caveat {
  margin: 0.15rem 0 0;
  max-width: 40rem;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.venues-tools .date-caveat {
  margin: 0;
}

.when-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 0.45rem 0.75rem;
}

.when-chips {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
  flex: 1 1 16rem;
}

.when-date-label {
  flex: 0 1 11rem;
  min-width: 10rem;
}

.when-date-label input[type="date"] {
  padding-right: 0.65rem;
}

.sort-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 0.5rem;
  margin: 0 0 0.85rem;
}

.sort-bar.is-venues {
  margin: 0;
  gap: 0.45rem 0.65rem;
}

.sort-label {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  font-size: 0.85rem;
}

.sort-label select {
  font: inherit;
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--rule);
  border-radius: 0.55rem;
  background: #fff8ee;
  min-height: 2.5rem;
  min-width: 16rem;
}

.near-bar,
.sort-near {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.5rem;
  align-items: flex-end;
  margin: 0;
  flex: 1 1 22rem;
}

.near-bar {
  margin: 0 0 0.5rem;
}

.company-search {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 0.5rem 0.65rem;
  margin: 0 0 0.85rem;
}

.company-search .near-label {
  flex: 1 1 18rem;
}

.company-search .filter-btn {
  margin-bottom: 0.05rem;
}

.near-label {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  font-size: 0.85rem;
  min-width: min(100%, 16rem);
  flex: 1 1 16rem;
}

.near-label input {
  font: inherit;
  padding: 0.45rem 2.1rem 0.45rem 0.75rem;
  border: 1px solid var(--rule);
  border-radius: 0.55rem;
  background: #fff8ee;
  min-height: 2.25rem;
  width: 100%;
}

.near-field {
  position: relative;
  display: block;
}

.near-field input::-webkit-search-cancel-button {
  appearance: none;
}

.near-field-clear {
  position: absolute;
  right: 0.35rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.7rem;
  height: 1.7rem;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--ink-soft);
  font: inherit;
  font-size: 1.15rem;
  line-height: 1;
  cursor: pointer;
}

.near-field-clear:hover {
  background: rgba(44, 34, 28, 0.08);
  color: var(--ink);
}

.near-status {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.near-status:empty,
.near-status[hidden] {
  display: none;
}

.near-within {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
  flex: 1 1 100%;
}

.near-within-label {
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin-right: 0.15rem;
}

.walk-filters {
  margin: 0;
}

.venues-tools .filter-btn,
.venues-map-head .filter-btn {
  padding: 0.32rem 0.7rem;
  min-height: 2.1rem;
  font-size: 0.82rem;
}

.venues-map-panel {
  margin: 0 0 1.75rem;
}

.venues-map-panel.is-closed {
  margin-bottom: 1rem;
}

.venues-map-panel.is-closed .venues-map,
.venues-map-panel.is-closed .venues-map-legend {
  display: none;
}

.venues-map-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.45rem 1rem;
  margin-bottom: 0.55rem;
}

.venues-map-head .walk-filters {
  margin: 0;
}

.venues-map-legend {
  margin: 0;
  font-size: 0.82rem;
  color: var(--ink-soft);
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.85rem;
  align-items: center;
}

.map-swatch,
.map-pin {
  display: inline-block;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  border: 2px solid #fff8ee;
  box-shadow: 0 1px 3px rgba(44, 34, 28, 0.25);
  vertical-align: middle;
}

.map-swatch {
  width: 0.72rem;
  height: 0.72rem;
}

.map-pin {
  width: 1.35rem;
  height: 1.35rem;
  border-width: 3px;
  box-shadow: 0 2px 6px rgba(44, 34, 28, 0.35);
}

.map-swatch.is-short,
.map-pin.is-short {
  background: var(--gold);
}

.map-swatch.is-walk,
.map-pin.is-walk {
  background: var(--burgundy);
}

.map-swatch.is-far,
.map-pin.is-far {
  background: #8a7468;
}

.venues-map {
  height: min(28rem, 62vh);
  border-radius: 1.1rem;
  overflow: hidden;
  border: 1px solid var(--rule);
  background: #ead8c8;
  z-index: 1;
}

.map-pin-wrap {
  background: none;
  border: 0;
}

.leaflet-popup-content-wrapper {
  border-radius: 0.85rem;
  font-family: var(--sans);
  color: var(--ink);
}

.leaflet-popup-content h3 {
  font-family: var(--serif);
  font-size: 1.15rem;
  margin: 0 0 0.35rem;
}

.leaflet-popup-content h3 a {
  color: inherit;
}

.leaflet-popup-content h3 a:hover {
  color: var(--burgundy);
}

.leaflet-popup-content p {
  margin: 0 0 0.4rem;
}

.map-popup-kicker {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dim);
}

.map-popup-dinner {
  color: var(--burgundy-deep);
}

.map-popup-shows {
  margin: 0 0 0.45rem;
  padding-left: 1.1rem;
}

.map-popup-shows li {
  margin: 0.15rem 0;
}

.near-distance {
  margin: 0 0 0.45rem !important;
  color: var(--burgundy);
  font-weight: 600;
  font-size: 0.9rem;
  flex: 0 0 auto !important;
}

.empty-note {
  color: var(--ink-soft);
  margin: 0.5rem 0 1.25rem;
}

.filter-btn {
  border: 1px solid var(--rule);
  background: #fff8ee;
  color: var(--ink-soft);
  border-radius: 999px;
  padding: 0.5rem 0.95rem;
  min-height: 2.5rem;
  cursor: pointer;
  font: inherit;
  font-size: 0.88rem;
  flex-shrink: 0;
}

.filter-btn:hover {
  border-color: var(--burgundy);
}

.filter-btn[aria-pressed="true"] {
  background: var(--burgundy);
  color: #f8efe4;
  border-color: var(--burgundy);
}

.filter-btn-primary {
  background: var(--burgundy);
  color: #f8efe4;
  border-color: var(--burgundy);
}

.filter-btn-primary:hover {
  background: #5c1621;
}

.how-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1rem;
  padding: 0;
  margin: 0 0 1.75rem;
  list-style: none;
}

.how-step {
  position: absolute;
  top: 0.7rem;
  left: 0.75rem;
  z-index: 1;
  font-family: var(--serif);
  color: var(--burgundy);
  background: rgba(248, 239, 228, 0.92);
  padding: 0.12rem 0.55rem;
  border-radius: 999px;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}

.how-art {
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
  object-position: center 40%;
  display: block;
  background: #4a1018;
}

.how-copy {
  padding: 0.95rem 1.25rem 0;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.how-list p {
  margin: 0;
  color: var(--ink-soft);
}

.season-steps {
  margin-top: 0.5rem;
}

.season-steps li {
  padding: 1.35rem 1.3rem 1.4rem;
  overflow: visible;
}

.season-steps .how-copy {
  padding: 1.85rem 0 0;
}

.season-steps .cta-row {
  margin-top: 1rem;
}

.season-head {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 1.5rem 2rem;
  align-items: start;
  margin-bottom: 2rem;
}

.season-head .section-intro {
  margin-bottom: 0;
}

.season-points {
  display: grid;
  gap: 0.75rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.season-points li {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 1rem;
  padding: 0.85rem 1rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.season-points strong {
  display: block;
  color: var(--burgundy);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.season-dir-label {
  font-family: var(--serif);
  font-size: 1.35rem;
  margin: 0 0 1rem;
}

.season-group {
  margin-bottom: 1.15rem;
}

.season-group-name {
  margin: 0 0 0.45rem;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-dim);
}

.season-links {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 0.55rem;
}

.season-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.8rem 1rem;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 0.9rem;
  text-decoration: none;
  color: var(--ink);
}

.season-link:hover {
  border-color: var(--burgundy);
}

.season-link-copy {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.season-link-name {
  font-weight: 600;
}

.season-link-meta {
  font-size: 0.78rem;
  color: var(--ink-soft);
}

.season-link-cta {
  flex-shrink: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--burgundy);
}

@media (max-width: 900px) {
  .season-head {
    grid-template-columns: 1fr;
  }
}

.site-footer {
  padding: 2.4rem max(5vw, calc(50% - 36rem)) 5.5rem;
  background: #efe4d2;
  color: var(--ink-soft);
  font-size: 0.92rem;
  border-top: 1px solid var(--rule);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(200px, 1.15fr) minmax(170px, 0.85fr) minmax(220px, 1.2fr);
  gap: 1.5rem 2rem;
}

.footer-stack {
  display: grid;
  gap: 1.35rem;
  align-content: start;
}

.footer-tp {
  margin-top: 0.85rem;
}

.site-footer h3 {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--ink);
  margin: 0 0 0.45rem;
}

.site-footer p {
  margin: 0;
}

.brand-footer {
  min-width: 0;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
}

.brand-footer .brand-mark {
  width: 72px;
  height: 72px;
  max-width: none;
  flex-shrink: 0;
}

.mobile-bar {
  display: none;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 2.4rem;
  }

  .pairing-night {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .pairing-copy {
    padding: 2.4rem max(5vw, calc(50% - 36rem)) 1.4rem;
  }

  .pairing-copy h2 {
    max-width: none;
  }

  .pairing-hero {
    min-height: min(52vh, 28rem);
    aspect-ratio: 4 / 3;
  }

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

@media (max-width: 760px) {
  .brand-mark {
    width: 72px;
    height: 72px;
    max-width: none;
    display: block;
  }

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

  .nav {
    display: none;
    width: 100%;
    flex-direction: column;
    padding-bottom: 0.6rem;
  }

  .nav.is-open {
    display: flex;
  }

  .site-header {
    flex-wrap: wrap;
    padding: 0.4rem max(4vw, calc(50% - 36rem));
  }

  body {
    padding-bottom: 3.5rem;
  }

  .pairing-hero {
    min-height: 38vh;
    aspect-ratio: 5 / 4;
  }

  .filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.4rem;
    scrollbar-width: thin;
  }

  .mobile-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--cream);
    z-index: 25;
    border-top: 1px solid var(--rule);
  }

  .mobile-bar a {
    text-align: center;
    padding: 0.75rem 0.4rem;
    font-size: 0.68rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--burgundy);
  }

  .mobile-bar a[aria-current="page"] {
    font-weight: 700;
  }
}
