/* Homepage-specific layout. Built on system.css tokens. */

/* ── Utility strip (live ticker) ────────────────────────────────── */
.util-strip {
  background: var(--ink);
  color: var(--paper);
  font-family: var(--ff-mono);
  font-size: var(--fs-12);
  letter-spacing: 0.04em;
  overflow: hidden;
  position: relative;
  contain: layout paint;
  isolation: isolate;
}
.util-strip::before,
.util-strip::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 56px;
  pointer-events: none;
  z-index: 2;
}
.util-strip::before { left: 0;  background: linear-gradient(90deg, var(--ink), transparent); }
.util-strip::after  { right: 0; background: linear-gradient(270deg, var(--ink), transparent); }
.util-strip__inner {
  display: flex;
  align-items: center;
  gap: var(--s-5);
  padding: 8px 0;
  white-space: nowrap;
  width: max-content;
  max-width: none;
  animation: tickerScroll 56s linear infinite;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}
.util-strip:hover .util-strip__inner { animation-play-state: paused; }
/* Stretched link: makes an entire card clickable via the title link. */
.stretched-link::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}
/* Static (JS-rebuilt) strip: real data, no marquee → no blank/flash on load. */
.util-strip__inner--static {
  animation: none !important;
  width: 100%;
  justify-content: center;
  flex-wrap: wrap;
}
.util-strip__item { display: inline-flex; align-items: center; gap: 6px; flex-shrink: 0; }
@keyframes tickerScroll {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .util-strip__inner { animation: none; }
}
.util-strip__item .swatch {
  width: 7px; height: 7px; border-radius: 50%;
}
.util-strip__item .swatch--live { background: var(--accent); box-shadow: 0 0 0 3px rgba(224,122,60,0.25); }
.util-strip__item .swatch--ok { background: #59c285; }
.util-strip__item .swatch--warn { background: var(--warn); }
.util-strip__sep { color: var(--ink-soft); }
@media (max-width: 640px) {
  .util-strip__inner { gap: 14px; padding-inline: var(--gutter); }
}

/* ── Top nav ────────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(251, 246, 236, 0.94);
  backdrop-filter: blur(8px) saturate(140%);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
  padding-block: 14px;
}
.nav__links {
  display: flex;
  gap: var(--s-6);
  align-items: center;
}
.nav__link {
  font-family: var(--ff-sans);
  font-weight: 500;
  font-size: var(--fs-15);
  color: var(--ink-2);
  text-decoration: none;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: color 120ms ease, border-color 120ms ease;
}
.nav__link:hover { color: var(--ink); border-bottom-color: var(--accent); }
.nav__link[aria-current="page"] { color: var(--ink); border-bottom-color: var(--accent); }

.nav__cta { display: flex; gap: var(--s-2); align-items: center; }
.nav__search {
  width: 38px; height: 38px;
  border-radius: var(--r-2);
  border: 1px solid var(--line);
  background: var(--paper);
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer;
}
.nav__search:hover { border-color: var(--ink); }
.nav__menu { display: none; }
@media (max-width: 920px) {
  .nav__links { display: none; }
  .nav__menu { display: inline-flex; }
  .nav__cta .btn:not(.btn--icon) { padding-inline: 14px; font-size: var(--fs-14); }
}

/* ── Hero ───────────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding-block: var(--s-8) var(--s-12);
}
.hero__grid {
  display: grid;
  gap: var(--gutter-lg);
  grid-template-columns: 1.05fr 1fr;
  align-items: end;
}
.hero__image {
  position: relative;
  border-radius: var(--r-3);
  overflow: hidden;
  box-shadow: var(--sh-3);
  order: 1;
  aspect-ratio: 4 / 5;
}
.hero__image .img { height: 100%; width: 100%; }
.hero__image .img__cap { font-size: var(--fs-13); }
.hero__copy { order: 2; }
@media (min-width: 901px) {
  .hero__copy { padding-bottom: 12px; }
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent-deep);
}
.hero__eyebrow::before {
  content: ""; width: 32px; height: 1.5px;
  background: var(--accent);
}
.hero h1 {
  margin-top: var(--s-4);
  font-size: clamp(2.5rem, 5vw + 0.5rem, 4.25rem);
  letter-spacing: -0.025em;
  line-height: 0.98;
}
.hero__lead { margin-top: var(--s-5); max-width: 52ch; }
.hero__cta { margin-top: var(--s-6); display: flex; flex-direction: column; gap: var(--s-3); max-width: 480px; }
.hero__trust {
  margin-top: var(--s-3);
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-4);
  font-family: var(--ff-mono);
  font-size: var(--fs-12);
  color: var(--muted);
  letter-spacing: 0.04em;
}
.hero__trust span { display: inline-flex; align-items: center; gap: 6px; }
.hero__trust svg { color: var(--positive); }

@media (max-width: 900px) {
  .hero { padding-top: var(--s-6); padding-bottom: var(--s-8); }
  .hero__grid { grid-template-columns: 1fr; gap: var(--s-6); }
  .hero__image { aspect-ratio: 4 / 3; order: 1; }
  .hero__copy { order: 2; }
  .hero h1 { margin-top: var(--s-3); }
}

/* ── Category jump strip ────────────────────────────────────────── */
.cat-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--s-3);
  margin-top: var(--s-2);
}
.cat-strip__item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--r-2);
  background: var(--paper);
  text-decoration: none;
  color: var(--ink);
  transition: border-color 120ms ease, transform 120ms ease, box-shadow 120ms ease;
}
.cat-strip__item:hover { border-color: var(--ink); transform: translateY(-2px); box-shadow: var(--sh-1); }
.cat-strip__item .eyebrow { color: var(--accent-deep); }
.cat-strip__item .label {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: var(--fs-18);
  line-height: 1.2;
}
.cat-strip__item .arrow {
  font-family: var(--ff-sans);
  font-size: var(--fs-13);
  color: var(--muted);
  margin-top: 4px;
}
@media (max-width: 900px) {
  .cat-strip { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; gap: var(--s-3); margin-inline: calc(-1 * var(--gutter)); padding-inline: var(--gutter); padding-bottom: 8px; }
  .cat-strip__item { min-width: 200px; scroll-snap-align: start; flex-shrink: 0; }
}

/* ── Top picks ──────────────────────────────────────────────────── */
.picks {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--s-5);
}
.picks__feature .img { aspect-ratio: 16 / 10; }
.picks__feature .card__title { font-size: var(--fs-30); line-height: 1.1; }
.picks__feature .card__body { padding: var(--s-5); gap: var(--s-3); }

.picks__list { display: flex; flex-direction: column; gap: var(--s-4); justify-content: space-between; min-height: 100%; }
.event-card { display: flex; flex-direction: column; }
.event-card .img { aspect-ratio: 16 / 9; }
.event-card .card__body { gap: 8px; }
.event-card__meta {
  display: flex; gap: 8px; flex-wrap: wrap; align-items: center;
  font-family: var(--ff-mono); font-size: var(--fs-12); color: var(--muted); letter-spacing: 0.04em;
}

/* small event row variant for compact list */
.event-row {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: var(--s-3);
  padding: var(--s-3);
  border: 1px solid var(--line);
  border-radius: var(--r-2);
  background: var(--paper);
  text-decoration: none;
  color: inherit;
}
.event-row:hover { border-color: var(--ink); box-shadow: var(--sh-1); }
.event-row .img { aspect-ratio: 1 / 1; border-radius: var(--r-1); height: 100%; }
.event-row__title { font-family: var(--ff-display); font-weight: 600; font-size: var(--fs-18); line-height: 1.2; margin-top: 4px; }
.event-row__meta { font-family: var(--ff-mono); font-size: var(--fs-12); color: var(--muted); letter-spacing: 0.04em; margin-top: 4px; }

@media (max-width: 900px) {
  .picks { grid-template-columns: 1fr; }
  .picks__feature .card__title { font-size: var(--fs-24); }
}

.see-all-rail {
  margin-top: var(--s-6);
  padding: var(--s-4) var(--s-5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--s-3);
  background: var(--paper-2);
  border-radius: var(--r-2);
  flex-wrap: wrap;
}
.see-all-rail__text { font-size: var(--fs-15); color: var(--ink-2); }

/* ── Good news ──────────────────────────────────────────────────── */
.news {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: var(--s-5);
}
.news__feature .img { aspect-ratio: 16 / 9; }
.news__feature .card__title { font-size: var(--fs-30); line-height: 1.12; }
.news__list { display: flex; flex-direction: column; gap: var(--s-3); justify-content: space-between; min-height: 100%; }

.news-row {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: var(--s-3);
  padding: var(--s-3);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-2);
  align-items: center;
  text-decoration: none;
  color: inherit;
}
.news-row:hover { border-color: var(--ink); box-shadow: var(--sh-1); }
.news-row .img { aspect-ratio: 1 / 1; height: 100%; border-radius: var(--r-1); }
.news-row__kind { font-family: var(--ff-mono); font-size: var(--fs-12); color: var(--accent-deep); letter-spacing: 0.08em; text-transform: uppercase; }
.news-row__title { font-family: var(--ff-display); font-weight: 600; font-size: var(--fs-16); line-height: 1.25; margin-top: 4px; }
@media (max-width: 900px) {
  .news { grid-template-columns: 1fr; }
}

/* ── Restaurants / Eat beat ─────────────────────────────────────── */
.eat {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: var(--s-5);
  align-items: stretch;
}
.eat__review { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-2); padding: var(--s-5); display: flex; flex-direction: column; gap: var(--s-3); }
.eat__review-head { display: flex; justify-content: space-between; gap: var(--s-3); align-items: baseline; }
.eat__review h3 { font-size: clamp(1.5rem, 1vw + 1.25rem, 1.875rem); line-height: 1.15; }
.eat__review-body { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-4); align-items: start; margin-top: var(--s-2); }
.eat__review .img { aspect-ratio: 4 / 3; border-radius: var(--r-1); }
.eat__review blockquote {
  margin: 0;
  padding-left: var(--s-4);
  border-left: 3px solid var(--accent);
  font-family: var(--ff-display);
  font-size: var(--fs-20);
  line-height: 1.3;
  color: var(--ink);
  font-style: italic;
}
.eat__review cite { display: block; margin-top: var(--s-3); font-style: normal; font-family: var(--ff-mono); font-size: var(--fs-12); letter-spacing: 0.08em; color: var(--muted); text-transform: uppercase; }
.eat__list { display: flex; flex-direction: column; gap: var(--s-2); }
.eat__list h4 { font-size: var(--fs-14); font-family: var(--ff-mono); letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-bottom: var(--s-2); font-weight: 500; }
.eat-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--s-3);
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: var(--r-2);
  background: var(--paper);
  text-decoration: none;
  color: inherit;
}
.eat-row:hover { border-color: var(--ink); box-shadow: var(--sh-1); }
.eat-row__name { font-family: var(--ff-display); font-size: var(--fs-18); font-weight: 600; line-height: 1.2; }
.eat-row__meta { font-family: var(--ff-mono); font-size: var(--fs-12); color: var(--muted); margin-top: 2px; letter-spacing: 0.04em; }
.eat-row__price { font-family: var(--ff-mono); font-size: var(--fs-13); color: var(--ink-2); }

.reso-rail { margin-top: var(--s-6); }
.reso-card .img { aspect-ratio: 4 / 3; }
.reso-card .card__title { font-size: var(--fs-18); }

@media (max-width: 900px) {
  .eat { grid-template-columns: 1fr; }
  .eat__review-body { grid-template-columns: 1fr; }
}

/* ── Best of LI block ───────────────────────────────────────────── */
.bestof {
  background:
    radial-gradient(ellipse 50% 35% at 100% 0%, rgba(226,207,159,0.35), transparent 65%),
    radial-gradient(ellipse 60% 40% at 0% 100%, rgba(224,122,60,0.08), transparent 65%),
    linear-gradient(180deg, var(--paper) 0%, var(--sand-pale) 100%);
  color: var(--ink);
  border: 1px solid var(--sand);
  border-radius: var(--r-3);
  padding: clamp(36px, 5vw, 64px) clamp(28px, 4vw, 56px);
  position: relative;
  overflow: hidden;
}
.bestof::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--grain);
  background-size: 280px 280px;
  opacity: 0.05;
  pointer-events: none;
  mix-blend-mode: multiply;
}
.bestof > * { position: relative; z-index: 2; }

.bestof__head {
  text-align: center;
  border-bottom: 1px solid var(--line);
  padding-bottom: var(--s-6);
  margin-bottom: var(--s-4);
}
.bestof__head::before {
  content: "";
  display: block;
  width: 44px;
  height: 24px;
  margin: 0 auto var(--s-4);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 44 24' fill='none'><path d='M22 4 L24 11 L31 11 L25.5 15 L27.5 22 L22 18 L16.5 22 L18.5 15 L13 11 L20 11 Z' fill='%23e07a3c'/><path d='M4 12 Q8 4 16 8' stroke='%23c45920' stroke-width='1.5' stroke-linecap='round' fill='none'/><path d='M40 12 Q36 4 28 8' stroke='%23c45920' stroke-width='1.5' stroke-linecap='round' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
}
.bestof__eyebrow { color: var(--accent-deep); }
.bestof h2 {
  color: var(--ink);
  line-height: 1.05;
  font-size: clamp(2rem, 3vw + 1rem, 3rem);
  margin-top: var(--s-2);
}
.bestof h2 em {
  font-style: italic;
  font-weight: 700;
  color: var(--accent-deep);
  background: none;
  padding: 0;
  display: inline;
}
.bestof__lead {
  color: var(--muted);
  font-family: var(--ff-display);
  font-size: var(--fs-18);
  margin: var(--s-3) auto 0;
  max-width: 54ch;
}
.bestof__lead strong {
  background: var(--accent);
  color: #fff;
  padding: 2px 10px;
  border-radius: 4px;
  font-weight: 700;
}

/* Editorial leaderboard rows */
.bestof-leaders {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}
.bestof-leader {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  align-items: center;
  gap: var(--s-5);
  padding: var(--s-5) var(--s-2);
  border-bottom: 1px dashed var(--sand);
  transition: background 120ms ease, padding 120ms ease;
  cursor: pointer;
}
.bestof-leader:hover {
  background: rgba(255,255,255,0.55);
}
.bestof-leader:last-of-type { border-bottom: 0; }
.bestof-leader__rank {
  display: grid;
  place-items: center;
  width: 56px; height: 56px;
  background: radial-gradient(circle at 35% 30%, #f4d488 0%, #e0a64a 70%, #c08a2a 100%);
  color: var(--ink);
  border-radius: 50%;
  font-family: var(--ff-display);
  font-size: var(--fs-24);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  box-shadow:
    0 4px 10px rgba(196, 89, 32, 0.22),
    inset 0 -3px 6px rgba(196, 89, 32, 0.18),
    inset 0 2px 3px rgba(255,255,255,0.5);
  position: relative;
}
.bestof-leader__rank::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid rgba(196, 89, 32, 0.25);
}
.bestof-leader__body { min-width: 0; }
.bestof-leader__cat {
  font-family: var(--ff-mono);
  font-size: var(--fs-12);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-deep);
}
.bestof-leader__name {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: clamp(1.25rem, 1vw + 0.875rem, 1.625rem);
  color: var(--ink);
  line-height: 1.15;
  margin-top: 6px;
  letter-spacing: -0.005em;
}
.bestof-leader__town {
  font-size: var(--fs-13);
  color: var(--muted);
  margin-top: 4px;
}
.bestof-leader__votes {
  font-family: var(--ff-mono);
  font-size: var(--fs-12);
  color: var(--muted);
  text-align: right;
  white-space: nowrap;
  padding-left: var(--s-5);
  border-left: 1px solid var(--line);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
}
.bestof-leader__votes strong {
  font-family: var(--ff-display);
  font-size: var(--fs-24);
  color: var(--ink);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.01em;
}

/* CTA bar at the bottom — horizontal, full-width */
.bestof__cta {
  margin-top: var(--s-6);
  padding: clamp(20px, 2.5vw, 32px) clamp(24px, 3vw, 40px);
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--r-2);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: var(--s-5);
  position: relative;
  overflow: hidden;
}
.bestof__cta::before {
  content: "";
  position: absolute;
  right: -10%; top: -50%;
  width: 50%; aspect-ratio: 1/1;
  background: radial-gradient(circle, rgba(224,122,60,0.22) 0%, transparent 65%);
  pointer-events: none;
}
.bestof__cta > * { position: relative; z-index: 2; }
.bestof__cta-copy { display: flex; flex-direction: column; gap: 4px; align-items: flex-start; }
.bestof__cta p {
  font-family: var(--ff-display);
  font-size: var(--fs-20);
  color: var(--paper);
  line-height: 1.3;
  margin: 6px 0;
  max-width: 50ch;
}
.bestof__cta .btn--ghost {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.bestof__cta .btn--ghost:hover {
  background: var(--accent-deep);
  border-color: var(--accent-deep);
  color: #fff;
}
.bestof__stat {
  font-family: var(--ff-mono);
  font-size: var(--fs-12);
  color: rgba(251,246,236,0.6);
  letter-spacing: 0.04em;
}

@media (max-width: 720px) {
  .bestof-leader { grid-template-columns: 44px 1fr; gap: var(--s-3); padding: var(--s-4) 0; }
  .bestof-leader__rank { width: 44px; height: 44px; font-size: var(--fs-18); }
  .bestof-leader__votes {
    grid-column: 1 / -1;
    border-left: 0;
    border-top: 1px dashed var(--line);
    padding-left: 0;
    padding-top: var(--s-2);
    text-align: left;
    flex-direction: row;
    align-items: baseline;
    gap: 6px;
  }
  .bestof-leader__votes strong { font-size: var(--fs-18); }
  .bestof__cta { grid-template-columns: 1fr; text-align: center; }
  .bestof__cta-copy { align-items: center; }
}

/* ── Towns directory ────────────────────────────────────────────── */
.towns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-6);
  padding: var(--s-6);
  background: var(--paper-2);
  border-radius: var(--r-3);
}
.towns__col h4 {
  font-family: var(--ff-mono);
  font-size: var(--fs-12);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: var(--s-3);
  font-weight: 500;
}
.towns__chips { display: flex; flex-wrap: wrap; gap: 6px; }
.town-chip {
  font-family: var(--ff-sans);
  font-size: var(--fs-13);
  background: var(--paper);
  color: var(--ink-2);
  padding: 6px 12px;
  border-radius: var(--r-pill);
  border: 1px solid var(--line);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.town-chip:hover { border-color: var(--ink); background: #fff; color: var(--ink); }
.town-chip__count { color: var(--muted); font-family: var(--ff-mono); font-size: var(--fs-12); }
@media (max-width: 900px) { .towns { grid-template-columns: repeat(2, 1fr); padding: var(--s-5); } }
@media (max-width: 540px) { .towns { grid-template-columns: 1fr; } }

/* ── Cheat sheet ────────────────────────────────────────────────── */
.cheat {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--s-5);
  align-items: stretch;
}
.cheat__list {
  background: linear-gradient(170deg, var(--sand-pale), var(--paper));
  border: 1px solid var(--sand);
  border-radius: var(--r-3);
  padding: var(--s-5) var(--s-6);
  list-style: none;
  margin: 0;
}
.cheat__list li {
  padding: 14px 0 14px 22px;
  border-bottom: 1px dashed var(--sand-deep);
  font-family: var(--ff-display);
  font-size: var(--fs-18);
  line-height: 1.4;
  color: var(--ink);
  position: relative;
}
.cheat__list li:last-child { border-bottom: 0; }
.cheat__list li strong { font-weight: 700; color: var(--ink); }
.cheat__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 22px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.cheat__visual { position: relative; border-radius: var(--r-3); overflow: hidden; min-height: 320px; }
.cheat__visual .img { height: 100%; }
.cheat__list-locked {
  position: relative;
  color: var(--ink-2);
  filter: blur(1.5px);
}
.cheat__list-locked--strong {
  filter: blur(3.5px);
}
/* Paywall fade — vertical white gradient over the locked region (last 2 items),
   starting almost transparent at the top edge and going to fully paper at the bottom. */
.cheat__list {
  position: relative;
  isolation: isolate;
}
.cheat__list::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: 0;
  height: 38%;
  background: linear-gradient(180deg,
    rgba(243,232,201,0) 0%,
    rgba(243,232,201,0.35) 20%,
    rgba(243,232,201,0.75) 55%,
    rgba(243,232,201,0.96) 85%,
    var(--paper-2) 100%);
  pointer-events: none;
  border-radius: 0 0 var(--r-3) var(--r-3);
  z-index: 1;
}
.cheat__lock {
  position: absolute;
  bottom: 18px; left: 18px; right: 18px;
  background: rgba(14,35,48,0.92);
  backdrop-filter: blur(8px);
  color: var(--paper);
  padding: 18px 20px;
  border-radius: var(--r-2);
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}
.cheat__lock p { font-size: var(--fs-13); color: rgba(251,246,236,0.86); line-height: 1.4; }
.cheat__lock .btn { background: var(--accent); color: #fff; border-color: var(--accent); }
.cheat__lock .btn:hover { background: var(--accent-deep); border-color: var(--accent-deep); }
@media (max-width: 900px) { .cheat { grid-template-columns: 1fr; } }

/* ── Insider pricing ────────────────────────────────────────────── */
.insider {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: var(--s-6);
  align-items: stretch;
  background: linear-gradient(180deg, var(--paper-2), var(--paper));
  border: 1px solid var(--sand);
  border-radius: var(--r-3);
  padding: clamp(28px, 4vw, 48px);
  position: relative;
  overflow: hidden;
}
.insider__copy { display: flex; flex-direction: column; }
.insider__copy h2 { font-size: clamp(1.75rem, 2vw + 1rem, 2.5rem); }
.insider__copy .lead { margin-top: var(--s-3); max-width: 48ch; }
.insider__features { margin-top: var(--s-5); list-style: none; padding: 0; display: flex; flex-direction: column; gap: 14px; flex: 1; justify-content: space-between; }
.insider__features li { display: flex; gap: 10px; font-size: var(--fs-15); align-items: flex-start; }
.insider__features svg { color: var(--accent); flex-shrink: 0; margin-top: 4px; }

.tiers { display: grid; grid-template-columns: 1fr; gap: var(--s-3); align-self: stretch; }
.tier {
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: var(--r-2);
  padding: var(--s-4) var(--s-5);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.tier--featured { border-color: var(--accent); background: linear-gradient(170deg, #fff, var(--paper)); box-shadow: var(--sh-2); position: relative; }
.tier--featured::after {
  content: "Most popular";
  position: absolute;
  top: -10px; right: 16px;
  background: var(--accent); color: #fff;
  font-family: var(--ff-mono); font-size: var(--fs-12); font-weight: 500; letter-spacing: 0.04em;
  padding: 3px 10px; border-radius: var(--r-pill);
}
.tier__name { font-family: var(--ff-mono); font-size: var(--fs-12); letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.tier__price { font-family: var(--ff-display); font-size: var(--fs-30); font-weight: 700; line-height: 1; }
.tier__price small { font-family: var(--ff-sans); font-size: var(--fs-14); font-weight: 500; color: var(--muted); margin-left: 4px; }
.tier__sub { font-size: var(--fs-13); color: var(--muted); }
.tier__features { list-style: none; padding: 0; margin: 6px 0 0; display: flex; flex-direction: column; gap: 4px; font-size: var(--fs-14); color: var(--ink-2); }
.tier__features li::before { content: "✓"; color: var(--positive); margin-right: 6px; font-weight: 700; }
.tier .btn { margin-top: 6px; }

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

/* ── Social strip ───────────────────────────────────────────────── */
.social {
  display: grid;
  gap: var(--s-4);
}
.social__head { display: flex; justify-content: space-between; align-items: flex-end; gap: var(--s-3); flex-wrap: wrap; }
.social__rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(160px, 1fr);
  gap: var(--s-3);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  margin-inline: calc(-1 * var(--gutter));
  padding-inline: var(--gutter);
  padding-bottom: 8px;
}
.social__rail .img { aspect-ratio: 9 / 16; border-radius: var(--r-2); scroll-snap-align: start; }
@media (min-width: 900px) {
  .social__rail { display: grid; grid-template-columns: repeat(6, 1fr); margin-inline: 0; padding-inline: 0; }
}

/* ── Newsletter reprise ─────────────────────────────────────────── */
.nl-block {
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--r-3);
  padding: clamp(28px, 4vw, 56px);
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: var(--gutter);
  align-items: center;
}
.nl-block h2 { color: var(--paper); }
.nl-block .lead { color: rgba(251,246,236,0.84); }
.nl-block .field { border-color: var(--paper); background: var(--paper); }
@media (max-width: 900px) { .nl-block { grid-template-columns: 1fr; } }

/* ── Footer ─────────────────────────────────────────────────────── */
.foot {
  background: var(--ink);
  color: var(--paper);
  padding-block: var(--s-12) var(--s-6);
  margin-top: var(--s-12);
}
.foot__cols {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--gutter-lg);
}
.foot__brand .lh-mark { color: var(--paper); margin-bottom: var(--s-3); }
.foot__brand p { color: rgba(251,246,236,0.7); font-size: var(--fs-14); margin-top: var(--s-3); max-width: 32ch; }
.foot__brand .socials { display: flex; gap: 8px; margin-top: var(--s-4); }
.foot__brand .socials a {
  width: 36px; height: 36px;
  border-radius: var(--r-2);
  border: 1px solid rgba(251,246,236,0.2);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--paper); text-decoration: none;
}
.foot__brand .socials a:hover { background: rgba(251,246,236,0.1); border-color: rgba(251,246,236,0.4); }

.foot__col h4 {
  font-family: var(--ff-mono); font-size: var(--fs-12); letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--sand); margin-bottom: var(--s-3); font-weight: 500;
}
.foot__col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.foot__col li a { color: rgba(251,246,236,0.84); text-decoration: none; font-size: var(--fs-14); }
.foot__col li a:hover { color: var(--paper); text-decoration: underline; }

.foot__legal {
  margin-top: var(--s-8);
  padding-top: var(--s-5);
  border-top: 1px solid rgba(251,246,236,0.16);
  display: flex; flex-wrap: wrap; gap: var(--s-4); justify-content: space-between;
  font-family: var(--ff-mono); font-size: var(--fs-12); color: rgba(251,246,236,0.55);
  letter-spacing: 0.04em;
}
.foot__legal a { color: rgba(251,246,236,0.7); }

@media (max-width: 900px) {
  .foot__cols { grid-template-columns: repeat(2, 1fr); gap: var(--s-6); }
}
@media (max-width: 540px) {
  .foot__cols { grid-template-columns: 1fr; }
}

/* ── Mobile sticky CTA (shows on small viewports) ───────────────── */
.sticky-cta {
  display: none;
  position: fixed;
  left: 12px; right: 12px; bottom: 12px;
  z-index: 40;
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--r-3);
  padding: 10px 12px 10px 16px;
  align-items: center;
  gap: var(--s-3);
  box-shadow: var(--sh-3);
}
.sticky-cta__text { flex: 1; }
.sticky-cta__eyebrow { font-family: var(--ff-mono); font-size: 10px; color: var(--sand); letter-spacing: 0.12em; text-transform: uppercase; }
.sticky-cta__label { font-family: var(--ff-display); font-size: var(--fs-15); font-weight: 600; line-height: 1.2; }
@media (max-width: 700px) {
  .sticky-cta { display: flex; }
  body { padding-bottom: 70px; }
}

/* ── Insider · gating UI ────────────────────────────────────────── */

/* Inline "Insider exclusive" pill */
.insider-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--ff-mono);
  font-size: var(--fs-12);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--r-pill);
  background: var(--ink);
  color: var(--paper);
  text-decoration: none;
}
.insider-pill svg { color: var(--accent); }
.insider-pill--accent { background: var(--accent); color: #fff; }
.insider-pill--accent svg { color: #fff; }
.insider-pill--outline { background: transparent; color: var(--ink); border: 1px solid var(--ink); }

/* The "unlock the rest" CTA card — sits beneath gated preview content */
.unlock-card {
  margin-top: var(--s-5);
  padding: clamp(20px, 3vw, 32px) clamp(22px, 3vw, 40px);
  background: linear-gradient(110deg, var(--ink) 0%, #0a1a24 100%);
  color: var(--paper);
  border-radius: var(--r-3);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: var(--s-5);
  position: relative;
  overflow: hidden;
}
.unlock-card::before {
  content: "";
  position: absolute;
  right: -20%; top: -40%;
  width: 70%; aspect-ratio: 1/1;
  background: radial-gradient(circle, rgba(224,122,60,0.18) 0%, transparent 65%);
  pointer-events: none;
}
.unlock-card__copy { position: relative; }
.unlock-card .eyebrow { color: var(--sand); }
.unlock-card h3 {
  color: var(--paper);
  font-size: clamp(1.25rem, 1.5vw + 0.6rem, 1.75rem);
  line-height: 1.18;
  margin-top: 4px;
  max-width: 36ch;
}
.unlock-card p {
  color: rgba(251,246,236,0.72);
  font-size: var(--fs-14);
  margin-top: 8px;
  max-width: 52ch;
}
.unlock-card__cta { display: flex; flex-direction: column; gap: 6px; align-items: flex-end; position: relative; }
.unlock-card__cta .price { font-family: var(--ff-mono); font-size: var(--fs-12); color: rgba(251,246,236,0.6); letter-spacing: 0.04em; }
@media (max-width: 700px) {
  .unlock-card { grid-template-columns: 1fr; gap: var(--s-3); padding: var(--s-5); }
  .unlock-card__cta { align-items: stretch; }
}

/* Section-level lock — fade-out preview + overlay CTA */
.lock-preview {
  position: relative;
}
.lock-preview > .lock-content {
  position: relative;
  max-height: 360px;
  overflow: hidden;
  mask-image: linear-gradient(180deg, #000 0%, #000 60%, transparent 95%);
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 60%, transparent 95%);
  pointer-events: none;
  /* Children get pointer-events: none via the parent — re-enabling them when insider unlocks */
}
html.is-insider .lock-preview > .lock-content,
body.is-insider .lock-preview > .lock-content,
.lock-preview > .lock-content.is-unlocked {
  pointer-events: auto !important;
  max-height: none !important;
  overflow: visible !important;
  -webkit-mask-image: none !important;
  mask-image: none !important;
}
.lock-preview > .lock-cta {
  margin-top: -60px;
  position: relative;
  z-index: 2;
}

/* Briefing banner — clarifies the free weekly value prop above hero CTA */
.hero__briefing-banner {
  margin-top: var(--s-5);
  padding: 12px 16px;
  border: 1px dashed var(--accent);
  border-radius: var(--r-2);
  background: rgba(224,122,60,0.06);
  display: flex;
  gap: var(--s-3);
  align-items: center;
  font-size: var(--fs-13);
  color: var(--ink-2);
  max-width: 480px;
}
.hero__briefing-banner svg { color: var(--accent); flex-shrink: 0; }

/* Restaurant of the week — single big card */
.reso-week {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--s-5);
  align-items: stretch;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-3);
  overflow: hidden;
}
.reso-week__img { position: relative; min-height: 320px; }
.reso-week__img .img { height: 100%; }
.reso-week__body { padding: clamp(24px, 3vw, 40px); display: flex; flex-direction: column; justify-content: center; gap: var(--s-3); }
.reso-week__body h3 {
  font-size: clamp(1.75rem, 2vw + 1rem, 2.5rem);
  line-height: 1.05;
  margin-top: 4px;
}
.reso-week__body .lead { color: var(--ink-2); }
.reso-week__meta { display: flex; gap: var(--s-3); align-items: center; flex-wrap: wrap; font-family: var(--ff-mono); font-size: var(--fs-13); color: var(--muted); letter-spacing: 0.04em; }
@media (max-width: 900px) {
  .reso-week { grid-template-columns: 1fr; }
  .reso-week__img { min-height: 260px; aspect-ratio: 4/3; }
}
