/*
Theme Name: Jeri's Korea
Theme URI: https://jeriskorea.com
Author: Jeri
Description: A Korean local's travel & food blog. Custom photo-forward design.
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
License: GNU GPL v2 or later
Text Domain: jeris-korea
*/

/* ============================================================
   JERI'S KOREA — Consolidated Design System
   All post-type CSS included. De-duplicated shared base.
   Motion policy: transform/opacity only, gated behind
   prefers-reduced-motion: no-preference. Reveal-hiding gated
   behind html.js so everything renders with JS off.
   ============================================================ */

/* ============ DESIGN TOKENS ============ */
:root {
  --cream:       #FBF3E3;
  --cream-2:     #F5E9D2;
  --paper:       #FFFDF6;
  --ink:         #33241C;
  --ink-soft:    #6B5A4E;
  --pink:        #F5B8C4;
  --pink-deep:   #DE7A92;
  --persimmon:   #E8663C;
  --persimmon-d: #C94F28;
  --matcha:      #7C9885;
  --matcha-soft: #E7EDDF;
  --sun:         #F2C14E;
  --r-lg: 24px;
  --r-md: 18px;
  --shadow-soft: 0 10px 30px -14px rgba(51,36,28,.28);
  --font-d: "Fraunces", Georgia, serif;
  --font-s: "Caveat", cursive;
  --font-b: "Inter", -apple-system, sans-serif;
  --header-h: 58px;
}

/* ============ RESET & BASE ============ */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body {
  font-family: var(--font-b);
  background: var(--cream);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button { font: inherit; color: inherit; cursor: pointer; }
:focus-visible { outline: 3px solid var(--persimmon); outline-offset: 3px; border-radius: 4px; }

/* film grain — tiny feTurbulence tile at ~3.5% */
body::after {
  content: ""; position: fixed; inset: 0; z-index: 2000; pointer-events: none; opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
}

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 3000;
  background: var(--ink); color: var(--cream); padding: .6rem 1rem; border-radius: 0 0 12px 12px;
  font-weight: 600; text-decoration: none;
}
.skip-link:focus { top: 0; }

.wrap { width: min(1180px, 92vw); margin-inline: auto; }

/* ============ TYPE HELPERS ============ */
.display {
  font-family: var(--font-d);
  font-variation-settings: "SOFT" 85, "WONK" 1;
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -.015em;
}
.eyebrow {
  font-family: var(--font-s); font-weight: 700; font-size: 1.5rem;
  color: var(--persimmon); display: inline-block; transform: rotate(-2deg); --rest: rotate(-2deg);
}
.rv-rot { --tilt: 2.5deg; }
.rv-rot-neg { --tilt: -2.5deg; }
.script { font-family: var(--font-s); }
h2.display { font-size: clamp(2rem, 4.6vw, 3.3rem); }

.u { position: relative; text-decoration: none; font-weight: 600; }
.u::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -3px; height: 2px;
  background: currentColor; transform: scaleX(0); transform-origin: left;
}
.u:hover::after, .u:focus-visible::after { transform: scaleX(1); }

.ar { display: inline-block; }
a:hover .ar, a:focus-visible .ar, button:hover .ar { transform: translateX(5px); }

/* ============ HEADER ============ */
.site-head {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251,243,227,.86);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-bottom: 1.5px solid rgba(51,36,28,.09);
}
.site-head .wrap { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .85rem 0; }
.logo {
  font-family: var(--font-d); font-variation-settings: "SOFT" 100,"WONK" 1;
  font-weight: 900; font-size: 1.55rem; text-decoration: none; letter-spacing: -.02em;
  display: flex; align-items: baseline; gap: .15rem;
}
.logo .spark { color: var(--persimmon); font-size: 1.1rem; }
.site-nav ul { display: flex; gap: 1.6rem; list-style: none; align-items: center; }
.site-nav a { font-size: .95rem; }
.site-nav .current { font-weight: 700; }
.btn {
  display: inline-block; text-decoration: none; font-weight: 700; font-size: .95rem;
  background: var(--ink); color: var(--cream); border: none;
  padding: .65rem 1.25rem; border-radius: 999px;
}
.btn:hover { transform: scale(.96); }
.btn-persimmon { background: var(--persimmon); color: #fff; }

/* mobile nav toggle */
.nav-toggle {
  display: none; background: none; border: 2px solid var(--ink);
  border-radius: 8px; padding: .4rem .5rem; cursor: pointer;
  flex-direction: column; gap: 4px;
}
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--ink); border-radius: 2px; }
@media (max-width: 680px) {
  .site-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; z-index: 200;
    background: var(--cream); border-bottom: 1.5px solid rgba(51,36,28,.09);
    padding: 1rem; }
  .site-nav.open { display: block; }
  .site-nav ul { flex-direction: column; gap: .8rem; }
  .nav-toggle { display: flex; }
}

/* ============ SECTIONS ============ */
section { position: relative; }
.section-pad { padding: clamp(3rem,7vw,5.5rem) 0; }
.sec-head { margin-bottom: clamp(1.6rem,3vw,2.6rem); }
.sec-head .display { margin-top: .2rem; }

/* ============ WAVE DIVIDERS ============ */
.wave { display: block; width: 100%; height: 60px; }
.wave path { fill: var(--cream-2); }
.wave-matcha path { fill: var(--matcha-soft); }
.wave-ink path { fill: var(--ink); }

/* ============ NEWSLETTER ============ */
.news-sec .panel {
  background: var(--persimmon); color: var(--cream);
  border-radius: 32px; padding: clamp(2.2rem,5vw,4rem);
  text-align: center; position: relative; overflow: hidden;
}
.news-sec .panel .blob-n { position: absolute; width: 260px; color: var(--persimmon-d); top: -70px; right: -70px; opacity: .6; }
.news-sec h2 { font-size: clamp(1.9rem,4vw,3rem); position: relative; }
.news-sec .sub { font-family: var(--font-s); font-weight: 700; font-size: 1.5rem; color: var(--pink); margin: .4rem 0 1.6rem; position: relative; }
.news-form { display: flex; gap: .7rem; justify-content: center; flex-wrap: wrap; position: relative; }
.news-form input {
  font: inherit; padding: .85rem 1.3rem; border-radius: 999px; border: 2px solid var(--ink);
  min-width: min(320px, 80vw); background: var(--paper); color: var(--ink);
}
.news-form input::placeholder { color: var(--ink-soft); }
.news-form button {
  border: 2px solid var(--ink); background: var(--sun); color: var(--ink);
  font-weight: 700; padding: .85rem 1.5rem; border-radius: 999px; box-shadow: 3px 3px 0 var(--ink);
}
.news-form button:hover { transform: translate(2px,2px); box-shadow: 1px 1px 0 var(--ink); }
.news-fine { font-size: .82rem; opacity: .85; margin-top: 1rem; position: relative; }

/* ============ FOOTER ============ */
.site-foot { background: var(--ink); color: var(--cream); padding: 3rem 0 2.2rem; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2rem; }
.foot-brand .logo { color: var(--cream); font-size: 1.7rem; }
.foot-brand p { font-size: .92rem; opacity: .75; margin-top: .6rem; max-width: 22rem; }
.site-foot h3 { font-family: var(--font-s); font-weight: 700; font-size: 1.35rem; color: var(--pink); margin-bottom: .7rem; }
.site-foot ul { list-style: none; display: grid; gap: .45rem; font-size: .92rem; }
.site-foot a { text-decoration: none; opacity: .85; }
.foot-bottom {
  margin-top: 2.6rem; padding-top: 1.4rem; border-top: 1px solid rgba(251,243,227,.18);
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  font-size: .82rem; opacity: .7;
}
@media (max-width: 820px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .foot-grid { grid-template-columns: 1fr; } }

/* ============================================================
   HOMEPAGE — HERO
   ============================================================ */
.hero { position: relative; padding: clamp(2.2rem,5vw,4.5rem) 0 clamp(3rem,6vw,5.5rem); }
.hero .wrap {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem,4vw,4rem); align-items: center;
}
.hero-title { font-size: clamp(2.6rem, 6.3vw, 5rem); margin: .7rem 0 1.4rem; }
.hw { display: inline-block; }
.hw-script {
  font-family: var(--font-s); font-weight: 700; color: var(--persimmon);
  font-size: 1.18em; transform: rotate(-2deg); --rest: rotate(-2deg); position: relative; padding: 0 .06em;
}
.hw-script .squiggle {
  position: absolute; left: 0; right: 0; bottom: -.14em; width: 100%; height: .22em;
  color: var(--pink-deep);
}
.hero-intro { font-size: clamp(1.02rem,1.4vw,1.2rem); color: var(--ink-soft); max-width: 34rem; }
.hero-intro strong { color: var(--ink); }
.chip-label { margin-top: 1.6rem; font-family: var(--font-s); font-size: 1.35rem; font-weight: 700; color: var(--matcha); transform: rotate(-1.5deg); display: inline-block; }
.chips { display: flex; flex-wrap: wrap; gap: .55rem; margin-top: .55rem; list-style: none; }
.chips a {
  display: inline-block; text-decoration: none; font-weight: 600; font-size: .92rem;
  background: var(--paper); border: 1.5px solid var(--ink); border-radius: 999px;
  padding: .5rem 1.05rem; box-shadow: 2.5px 2.5px 0 var(--ink);
}
.chips li:nth-child(1) a:hover { background: var(--pink); }
.chips li:nth-child(2) a:hover { background: var(--sun); }
.chips li:nth-child(3) a:hover { background: var(--matcha-soft); }
.chips li:nth-child(4) a:hover { background: var(--pink); }
.chips li:nth-child(5) a:hover { background: var(--sun); }
.chips a:hover { transform: translate(1.5px,1.5px) rotate(-1deg); box-shadow: 1px 1px 0 var(--ink); }

.hero-media { position: relative; }
.hero-photo {
  width: 100%; height: auto; border-radius: var(--r-lg);
  border: 2px solid var(--ink); box-shadow: 8px 8px 0 var(--pink);
  aspect-ratio: 11/13; object-fit: cover;
}
.polaroid {
  position: absolute; bottom: -2rem; left: -2.4rem; width: min(200px, 42%);
  background: #fff; padding: .55rem .55rem 0; border-radius: 10px;
  transform: rotate(4deg); box-shadow: 0 14px 30px -10px rgba(51,36,28,.4);
}
.polaroid img { width: 100%; height: auto; aspect-ratio: 8/7; object-fit: cover; border-radius: 5px; }
.polaroid figcaption {
  font-family: var(--font-s); font-weight: 700; font-size: 1.15rem;
  text-align: center; padding: .25rem 0 .45rem; color: var(--ink);
}
.polaroid:hover { transform: rotate(0deg) scale(1.04); }

.blob { position: absolute; z-index: -1; pointer-events: none; }
.blob-1 { top: -3rem; right: -6rem; width: 340px; color: var(--pink); opacity: .55; }
.blob-2 { bottom: -4rem; left: -7rem; width: 300px; color: var(--matcha-soft); opacity: .9; }
.spark-deco { position: absolute; font-size: 1.6rem; color: var(--persimmon); }
.spark-a { top: 12%; right: 44%; } .spark-b { bottom: 18%; right: 2%; color: var(--pink-deep); }

@media (max-width: 860px) {
  .hero .wrap { grid-template-columns: 1fr; }
  .hero-media { order: -1; margin-bottom: 1.4rem; }
  .hero-photo { aspect-ratio: 4/3; }
  .polaroid { left: auto; right: -.4rem; bottom: -1.6rem; }
  .blob-1 { right: -9rem; }
}

/* ============ MARQUEE ============ */
.mq-band { background: var(--persimmon); transform: rotate(-1.2deg) scale(1.03); margin: 1.2rem 0 0; }
.mq { overflow: hidden; padding: .8rem 0; }
.mq-track { display: flex; width: max-content; will-change: transform; }
.mq-seq {
  display: flex; align-items: center; gap: 1.4rem; padding-right: 1.4rem;
  font-family: var(--font-d); font-variation-settings: "SOFT" 60,"WONK" 1;
  font-weight: 900; font-size: clamp(1.25rem,2.4vw,1.9rem);
  color: var(--cream); letter-spacing: .04em; white-space: nowrap;
}
.mq-seq .st { color: var(--pink); font-size: .8em; }

/* ============ BENTO ============ */
.bento-sec { background: var(--cream-2); }
.bento {
  display: grid; grid-template-columns: repeat(12,1fr);
  grid-auto-rows: 150px; grid-auto-flow: dense; gap: 18px;
}
.tile {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  background: var(--paper);
}
.tile::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  box-shadow: 0 26px 48px -18px rgba(51,36,28,.42); opacity: 0; z-index: 3;
}
.tile:hover { transform: scale(.975); }
.tile:hover::before { opacity: 1; }
.tile-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.tile-cap {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 2.4rem 1.3rem 1.1rem;
  background: linear-gradient(to top, rgba(30,18,12,.78), rgba(30,18,12,0));
  color: #fff;
}
.tile-cap h3, .tile-cap p { margin: 0; }
.tile-cap h3 { font-family: var(--font-d); font-variation-settings: "SOFT" 80,"WONK" 1; font-weight: 800; font-size: 1.35rem; line-height: 1.15; }
.tile-cap .mini { font-size: .85rem; opacity: .9; margin-top: .2rem; }
.tile a.cover { position: absolute; inset: 0; z-index: 4; text-indent: -999em; }
.tile-sticker {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  font-family: var(--font-s); font-weight: 700; font-size: 1.15rem;
  background: var(--sun); color: var(--ink); padding: .15rem .8rem; border-radius: 999px;
  transform: rotate(-4deg); border: 1.5px solid var(--ink);
}
.t-jeju { grid-column: span 7; grid-row: span 2; }
.t-neon { grid-column: span 5; grid-row: span 3; }
.t-stat { grid-column: span 4; grid-row: span 1; background: var(--persimmon); color: var(--cream); padding: 1.2rem 1.4rem; display: flex; gap: .9rem; align-items: center; }
.t-map  { grid-column: span 3; grid-row: span 2; padding: 1.2rem 1.2rem 1rem; display: flex; flex-direction: column; }
.t-news { grid-column: span 4; grid-row: span 1; background: var(--pink); padding: 1.2rem 1.4rem; display: flex; flex-direction: column; justify-content: center; }
.t-food { grid-column: span 5; grid-row: span 1; }
.t-stat .won {
  font-family: var(--font-d); font-variation-settings: "SOFT" 100,"WONK" 1;
  font-weight: 900; font-size: 3.6rem; line-height: 1; flex: 0 0 auto;
}
.t-stat p { font-size: .95rem; line-height: 1.4; font-weight: 500; }
.t-stat p b { display: block; font-size: 1.02rem; }
.t-map h3 { font-family: var(--font-d); font-variation-settings: "SOFT" 80,"WONK" 1; font-weight: 800; font-size: 1.25rem; }
.t-map .mini { font-size: .82rem; color: var(--ink-soft); margin-top: .15rem; }
.kmap { flex: 1; min-height: 0; margin-top: .5rem; align-self: center; height: 100%; max-width: 100%; }
.kmap .land { fill: var(--matcha-soft); stroke: var(--matcha); stroke-width: 2.5; }
.kmap .pin { fill: var(--persimmon); }
.kmap .pin-core { fill: #fff; }
.kmap .pulse { fill: none; stroke: var(--persimmon); stroke-width: 2; opacity: 0; transform-box: fill-box; transform-origin: center; }
.t-news h3 { font-family: var(--font-d); font-variation-settings: "SOFT" 80,"WONK" 1; font-weight: 800; font-size: 1.3rem; }
.t-news p { font-size: .9rem; margin: .15rem 0 .5rem; }
.t-news a { font-weight: 700; font-size: .95rem; }

@media (max-width: 1020px) {
  .bento { grid-template-columns: repeat(6,1fr); grid-auto-rows: 140px; }
  .t-jeju { grid-column: span 6; }
  .t-neon { grid-column: span 3; }
  .t-stat, .t-news { grid-column: span 3; grid-row: span 1; }
  .t-map { grid-column: span 3; }
  .t-food { grid-column: span 3; grid-row: span 2; }
}
@media (max-width: 700px) {
  .bento { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .tile { grid-column: 1 / -1 !important; grid-row: auto !important; }
  .t-jeju { aspect-ratio: 4/3; }
  .t-neon { aspect-ratio: 3/4; }
  .t-food { aspect-ratio: 16/9; }
  .t-map { min-height: 340px; }
  .t-stat { min-height: 120px; }
}

/* ============ RAIL ============ */
.rail-sec .sec-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; }
.rail-btns { display: flex; gap: .6rem; flex: 0 0 auto; }
.rail-btn {
  width: 48px; height: 48px; border-radius: 50%;
  border: 2px solid var(--ink); background: var(--paper);
  font-size: 1.25rem; line-height: 1; box-shadow: 3px 3px 0 var(--ink);
}
.rail-btn:hover { transform: translate(2px,2px); box-shadow: 1px 1px 0 var(--ink); background: var(--pink); }
.rail-btn:disabled { opacity: .35; cursor: default; box-shadow: 3px 3px 0 var(--ink); transform: none; background: var(--paper); }
.rail {
  display: flex; gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 10px 4px 26px; scrollbar-width: none;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}
.rail::-webkit-scrollbar { display: none; }
.rail-card {
  flex: 0 0 min(300px, 76vw); scroll-snap-align: start;
  background: var(--paper); border-radius: var(--r-md); overflow: hidden;
  border: 2px solid var(--ink); box-shadow: 5px 5px 0 rgba(51,36,28,.14); position: relative;
}
.rail-card:hover { transform: rotate(-1deg) scale(.985); }
.rail-card img { width: 100%; height: auto; aspect-ratio: 4/5; object-fit: cover; }
.rail-body { padding: .95rem 1.1rem 1.15rem; }
.rail-body h3 { font-family: var(--font-d); font-variation-settings: "SOFT" 80,"WONK" 1; font-weight: 800; font-size: 1.2rem; line-height: 1.2; }
.rail-body p { font-size: .88rem; color: var(--ink-soft); margin: .35rem 0 .55rem; }
.rail-tag {
  display: inline-block; font-size: .78rem; font-weight: 700;
  background: var(--matcha-soft); color: var(--ink); border-radius: 999px; padding: .18rem .7rem;
}
.rail-card a.cover { position: absolute; inset: 0; text-indent: -999em; }

/* ============ SEASONS ============ */
.seasons { background: var(--sea-soft); --sea: var(--persimmon); --sea-soft: #F8E0D3; }
.seasons[data-season="spring"] { --sea: #DE7A92; --sea-soft: #FAE3E9; }
.seasons[data-season="summer"] { --sea: #5F9367; --sea-soft: #E4EEDD; }
.seasons[data-season="autumn"] { --sea: #E8663C; --sea-soft: #F8E0D3; }
.seasons[data-season="winter"] { --sea: #5B7FA6; --sea-soft: #E2EBF4; }
.seasons .eyebrow { color: var(--sea); }
.season-btns { display: flex; gap: clamp(.8rem,3vw,2rem); flex-wrap: wrap; margin: 1.6rem 0 2rem; }
.season-btn {
  background: none; border: none; text-align: center; padding: 0;
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
}
.season-ph {
  position: relative; width: clamp(88px,18vw,120px); height: clamp(88px,18vw,120px);
  border-radius: 50%; overflow: hidden; border: 3px solid transparent;
  box-shadow: 0 8px 18px -8px rgba(51,36,28,.35);
}
.season-btn[aria-pressed="true"] .season-ph { border-color: var(--sea); box-shadow: 0 0 0 4px var(--sea-soft), 0 0 0 6px var(--sea); }
.season-ph img { width: 100%; height: 100%; object-fit: cover; }
.season-ph .emo {
  position: absolute; right: -2px; bottom: -2px; font-size: 1.5rem;
  background: var(--paper); border-radius: 50%; width: 2rem; height: 2rem;
  display: grid; place-items: center; border: 1.5px solid var(--ink);
}
.season-btn span.lbl { font-weight: 700; font-size: .95rem; }
.season-panel {
  background: var(--paper); border-radius: var(--r-lg); border: 2px solid var(--sea);
  padding: clamp(1.4rem,3vw,2.2rem); max-width: 46rem;
  box-shadow: 7px 7px 0 var(--sea);
}
.season-panel .kicker { font-family: var(--font-s); font-weight: 700; font-size: 1.3rem; color: var(--sea); }
.season-panel h3 { font-family: var(--font-d); font-variation-settings: "SOFT" 85,"WONK" 1; font-weight: 800; font-size: clamp(1.4rem,2.6vw,1.9rem); margin: .15rem 0 .5rem; }
.season-panel p { color: var(--ink-soft); }
.season-panel a { display: inline-block; margin-top: .8rem; color: var(--sea); font-weight: 700; text-decoration: none; }

/* ============ FEATURED GUIDES ============ */
.guides-sec { background: var(--matcha-soft); }
.guides-grid { display: grid; grid-template-columns: repeat(12,1fr); }
.guide-card {
  background: var(--paper); border-radius: var(--r-lg); overflow: hidden;
  border: 2px solid var(--ink); position: relative; box-shadow: var(--shadow-soft);
}
.guide-card:hover { transform: scale(.98) rotate(0deg); }
.guide-1 { grid-column: 1 / 8; transform: rotate(-1deg); --rest: rotate(-1deg); --tilt: -3.5deg; z-index: 2; }
.guide-2 { grid-column: 6 / 13; margin-top: clamp(2rem,8vw,7rem); transform: rotate(1.2deg); --rest: rotate(1.2deg); --tilt: 3.5deg; z-index: 3; }
.guide-card img { width: 100%; height: auto; aspect-ratio: 3/2; object-fit: cover; }
.guide-body { padding: 1.3rem 1.5rem 1.6rem; }
.guide-body h3 { font-family: var(--font-d); font-variation-settings: "SOFT" 85,"WONK" 1; font-weight: 800; font-size: clamp(1.4rem,2.4vw,1.85rem); line-height: 1.15; }
.guide-body p { color: var(--ink-soft); font-size: .95rem; margin: .5rem 0 .8rem; }
.guide-body .meta { font-size: .82rem; font-weight: 600; color: var(--matcha); }
.sticker {
  position: absolute; top: -16px; right: 22px; z-index: 4;
  font-family: var(--font-s); font-weight: 700; font-size: 1.25rem;
  padding: .25rem 1rem; border-radius: 999px; border: 2px solid var(--ink);
  transform: rotate(-5deg); box-shadow: 3px 3px 0 var(--ink);
}
.sticker-pink { background: var(--pink); } .sticker-sun { background: var(--sun); }
.guide-card a.cover { position: absolute; inset: 0; z-index: 5; text-indent: -999em; }
@media (max-width: 820px) {
  .guide-1, .guide-2 { grid-column: 1/-1; margin-top: 0; }
  .guide-2 { margin-top: 1.6rem; }
}

/* ============ AFFILIATES ============ */
.book-sec .sec-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.hand-note {
  font-family: var(--font-s); font-weight: 700; font-size: 1.5rem; color: var(--pink-deep);
  transform: rotate(-3deg); flex: 0 0 auto;
}
.book-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.book-card {
  display: block; text-decoration: none;
  background: var(--paper); border: 2px solid var(--ink); border-radius: var(--r-md);
  padding: 1.3rem 1.3rem 1.4rem; box-shadow: 4px 4px 0 var(--ink); position: relative;
}
.book-card:hover { transform: translate(2px,2px) rotate(-.6deg); box-shadow: 1px 1px 0 var(--ink); }
.book-card .bi {
  width: 52px; height: 52px; border-radius: 16px; display: grid; place-items: center;
  font-size: 1.5rem; margin-bottom: .8rem; border: 1.5px solid var(--ink);
}
.bi-1 { background: var(--pink); } .bi-2 { background: var(--sun); } .bi-3 { background: var(--matcha-soft); } .bi-4 { background: #F8E0D3; }
.book-card h3 { font-family: var(--font-d); font-variation-settings: "SOFT" 80,"WONK" 1; font-weight: 800; font-size: 1.25rem; }
.book-card p { font-size: .88rem; color: var(--ink-soft); margin-top: .25rem; }
.book-card .go { position: absolute; top: 1.1rem; right: 1.15rem; font-weight: 700; }
@media (max-width: 960px) { .book-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 520px) { .book-grid { grid-template-columns: 1fr; } }

/* ============ ABOUT ============ */
.about-sec { background: var(--cream-2); }
.about { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2rem,5vw,4.5rem); align-items: center; }
.about-photo { position: relative; transform: rotate(-2deg); --rest: rotate(-2deg); }
.about-photo img {
  width: 100%; height: auto; aspect-ratio: 9/7; object-fit: cover;
  border-radius: var(--r-md); border: 2px solid var(--ink); box-shadow: 8px 8px 0 var(--matcha);
}
.tape {
  position: absolute; width: 110px; height: 32px; opacity: .85;
  background: var(--pink); top: -14px; left: 8%; transform: rotate(-8deg); border-radius: 2px;
}
.tape-2 { background: var(--sun); left: auto; right: 6%; top: -12px; transform: rotate(6deg); }
.about-photo figcaption {
  font-family: var(--font-s); font-weight: 700; font-size: 1.25rem;
  text-align: center; margin-top: .9rem; color: var(--ink-soft); transform: rotate(1deg);
}
.about-text p { color: var(--ink-soft); margin-top: .9rem; max-width: 36rem; }
.about-text p strong { color: var(--ink); }
.signature { font-family: var(--font-s); font-weight: 700; font-size: 2.2rem; color: var(--persimmon); margin-top: 1.2rem; transform: rotate(-2deg); display: inline-block; }
@media (max-width: 820px) { .about { grid-template-columns: 1fr; } }

/* ============================================================
   ITINERARY POST STYLES
   ============================================================ */
.preview-banner {
  background: var(--sun); border-bottom: 2px solid var(--ink);
  padding: .75rem 1rem; text-align: center;
  font-family: var(--font-s); font-weight: 700; font-size: 1.1rem;
  color: var(--ink); position: relative; z-index: 50;
}
.preview-banner strong { font-weight: 700; }
.preview-banner span { opacity: .75; font-weight: 500; font-family: var(--font-b); font-size: .88rem; margin-left: .5rem; }

.breadcrumb-wrap { padding: 1.2rem 0 .5rem; }
.breadcrumb {
  display: flex; gap: .4rem; align-items: center; list-style: none;
  font-size: .85rem; color: var(--ink-soft); flex-wrap: wrap;
}
.breadcrumb li + li::before { content: "›"; margin-right: .4rem; color: var(--ink-soft); opacity: .5; }
.breadcrumb a { text-decoration: none; font-weight: 500; }
.breadcrumb a:hover { color: var(--persimmon); }
.breadcrumb li:last-child { color: var(--ink); font-weight: 600; }

.article-outer { max-width: 900px; margin-inline: auto; }
.article-wrap { width: min(760px, 92vw); margin-inline: auto; }
.article-mid { width: min(960px, 92vw); margin-inline: auto; }

.article-header { padding: 1rem 0 1.5rem; }
.article-tag {
  display: inline-block; font-family: var(--font-s); font-weight: 700; font-size: 1.25rem;
  color: var(--persimmon); transform: rotate(-1.5deg); margin-bottom: .6rem;
}
.article-h1 {
  font-family: var(--font-d); font-variation-settings: "SOFT" 80,"WONK" 1;
  font-weight: 900; font-size: clamp(2rem, 5.5vw, 3.4rem);
  line-height: 1.06; letter-spacing: -.018em; color: var(--ink);
  margin: .2rem 0 1.1rem; max-width: 820px;
}
.byline-strip {
  display: flex; align-items: center; gap: .75rem; flex-wrap: wrap;
  font-size: .9rem; color: var(--ink-soft);
}
.byline-authors { font-family: var(--font-s); font-weight: 700; font-size: 1.15rem; color: var(--ink); }
.byline-sep { color: var(--pink-deep); font-size: .9rem; }
.byline-chip {
  display: inline-flex; align-items: center; gap: .3rem;
  background: var(--matcha-soft); border: 1.5px solid var(--matcha);
  border-radius: 999px; padding: .18rem .7rem;
  font-size: .82rem; font-weight: 600; color: var(--ink);
}

.article-hero-wrap { margin: 0 0 2rem; }
.article-hero {
  width: 100%; aspect-ratio: 16/9; object-fit: cover;
  border-radius: var(--r-lg); border: 2px solid var(--ink); box-shadow: 8px 8px 0 var(--pink);
}
.hero-caption { font-family: var(--font-s); font-size: 1rem; color: var(--ink-soft); margin-top: .65rem; font-weight: 500; padding-left: .3rem; }

.factbox {
  background: var(--paper); border: 2px solid var(--ink);
  border-radius: var(--r-lg); padding: 1.6rem 2rem;
  box-shadow: 6px 6px 0 var(--persimmon); margin: 0 0 2.5rem;
}
.factbox-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1.1rem; padding-bottom: .9rem;
  border-bottom: 1.5px dashed rgba(51,36,28,.15);
}
.factbox-title { font-family: var(--font-s); font-weight: 700; font-size: 1.35rem; color: var(--persimmon); }
.factbox-total {
  font-family: var(--font-d); font-variation-settings: "SOFT" 100,"WONK" 1;
  font-weight: 900; font-size: 1.8rem; color: var(--ink); line-height: 1;
}
.factbox-total small { font-family: var(--font-b); font-size: .75rem; font-weight: 600; color: var(--ink-soft); display: block; margin-top: .1rem; }
.fact-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: .8rem 1.5rem; }
.fact-label { font-family: var(--font-s); font-weight: 700; font-size: 1rem; color: var(--matcha); margin-bottom: .1rem; }
.fact-value { font-size: .92rem; font-weight: 500; color: var(--ink); line-height: 1.4; }
@media (max-width: 560px) {
  .factbox { padding: 1.2rem 1.3rem; }
  .factbox-header { flex-direction: column; align-items: flex-start; gap: .5rem; }
}

.highlights-band { margin: 0 0 2.5rem; }
.highlights-label { font-family: var(--font-s); font-weight: 700; font-size: 1.3rem; color: var(--ink-soft); margin-bottom: .85rem; display: flex; align-items: center; gap: .5rem; }
.hl-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.hl-tile {
  position: relative; border-radius: var(--r-md); overflow: hidden;
  border: 2px solid var(--ink); aspect-ratio: 4/5;
}
.hl-tile img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.hl-cap {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 1.4rem .8rem .7rem;
  background: linear-gradient(to top, rgba(30,18,12,.8), transparent);
  color: #fff;
}
.hl-cap span { font-family: var(--font-b); font-size: .78rem; font-weight: 600; display: block; line-height: 1.3; }
.hl-tile:hover { transform: scale(.97); }
.hl-tile::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  box-shadow: 0 20px 40px -12px rgba(51,36,28,.45); opacity: 0; z-index: 3; pointer-events: none;
}
.hl-tile:hover::before { opacity: 1; }
@media (max-width: 680px) { .hl-row { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 400px) { .hl-row { grid-template-columns: 1fr 1fr; gap: 8px; } }

/* TIMELINE */
.timeline-section { margin: 1rem 0 3rem; }
.timeline-intro { font-size: 1.05rem; color: var(--ink-soft); margin-bottom: 2.5rem; max-width: 600px; line-height: 1.7; }
.timeline-intro strong { color: var(--ink); }
.timeline { position: relative; padding-left: 56px; }
.timeline::before {
  content: ""; position: absolute;
  left: 20px; top: 0; bottom: 0; width: 2px;
  background: linear-gradient(to bottom, var(--pink) 0%, var(--pink) 30%, var(--persimmon) 50%, var(--persimmon) 68%, var(--matcha) 85%, var(--matcha) 100%);
  border-radius: 2px;
}
.day-block { position: relative; }
.day-block + .day-block { margin-top: 2rem; }
.day-header {
  position: relative; display: flex; align-items: baseline; gap: .6rem; flex-wrap: wrap;
  padding: 2.5rem 0 1.6rem;
}
.day-header::before {
  content: ""; position: absolute; left: -49px; top: 50%; transform: translateY(-50%);
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--persimmon); border: 3px solid var(--ink); z-index: 2;
}
.day-block:nth-child(2) .day-header::before { background: var(--pink-deep); }
.day-block:nth-child(3) .day-header::before { background: var(--matcha); }
.day-word { font-family: var(--font-s); font-weight: 700; font-size: 1.35rem; color: var(--ink-soft); align-self: center; }
.day-num { font-family: var(--font-d); font-variation-settings: "SOFT" 100,"WONK" 1; font-weight: 900; font-size: clamp(3rem, 8vw, 5.5rem); line-height: .9; color: var(--ink); letter-spacing: -.03em; }
.day-theme { font-family: var(--font-s); font-weight: 700; font-size: 1.45rem; color: var(--persimmon); flex: 1 1 100%; padding-top: .15rem; }
.day-date-label { flex: 1 1 100%; font-size: .82rem; font-weight: 600; color: var(--ink-soft); letter-spacing: .04em; text-transform: uppercase; }
.day-block:nth-child(2) .day-theme { color: var(--pink-deep); }
.day-block:nth-child(3) .day-theme { color: var(--matcha); }

.stop { position: relative; margin-bottom: 3rem; }
.stop::before {
  content: ""; position: absolute; left: -44px; top: .45rem;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--cream); border: 2.5px solid var(--ink); z-index: 2;
}
.day-block:nth-child(2) .stop::before { border-color: var(--pink-deep); }
.day-block:nth-child(3) .stop::before { border-color: var(--matcha); }
.stop-header-row { display: flex; align-items: baseline; gap: .7rem; flex-wrap: wrap; margin-bottom: .6rem; }
.stop-time { font-family: var(--font-s); font-weight: 700; font-size: 1.2rem; color: var(--persimmon); flex: 0 0 auto; }
.day-block:nth-child(2) .stop-time { color: var(--pink-deep); }
.day-block:nth-child(3) .stop-time { color: var(--matcha); }
.stop-name { font-family: var(--font-d); font-variation-settings: "SOFT" 80,"WONK" 1; font-weight: 800; font-size: 1.4rem; line-height: 1.15; color: var(--ink); }
.stop-chips-row { display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: .85rem; }
.cost-chip {
  display: inline-flex; align-items: center; background: var(--ink); color: var(--cream);
  font-size: .78rem; font-weight: 700; padding: .2rem .7rem; border-radius: 999px;
  font-family: var(--font-b); letter-spacing: .01em;
}
.vibe-tag {
  display: inline-flex; align-items: center; font-size: .78rem; font-weight: 600;
  padding: .2rem .7rem; border-radius: 999px; border: 1.5px solid var(--ink); font-family: var(--font-b);
}
.vibe-history { background: var(--matcha-soft); color: var(--ink); }
.vibe-food { background: var(--pink); color: var(--ink); }
.vibe-wander { background: var(--cream-2); color: var(--ink); }
.vibe-views { background: var(--sun); color: var(--ink); }
.vibe-culture { background: #E6E0F5; color: var(--ink); }
.vibe-night { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.vibe-chill { background: #DAF0E8; color: var(--ink); }

.stop-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem 2rem; align-items: start; }
.stop-inner.img-first .stop-img-wrap { order: 0; }
.stop-inner.img-first .stop-text { order: 1; }
.stop-text p { font-size: .97rem; color: var(--ink-soft); line-height: 1.72; }
.stop-text p + p { margin-top: .7rem; }
.stop-text strong { color: var(--ink); }
.stop-img-wrap { position: relative; }
.stop-img {
  width: 100%; height: auto; object-fit: cover; border-radius: var(--r-md);
  border: 2px solid var(--ink); aspect-ratio: 4/3; box-shadow: 4px 4px 0 rgba(51,36,28,.14); display: block;
}
.stop-img-cap { font-family: var(--font-s); font-size: .95rem; color: var(--ink-soft); margin-top: .4rem; font-weight: 500; }
@media (max-width: 700px) {
  .stop-inner { grid-template-columns: 1fr; }
  .stop-inner.img-first .stop-img-wrap { order: 0; }
  .stop-inner.img-first .stop-text { order: 1; }
  .stop-inner .stop-img-wrap { order: 0; }
  .stop-inner .stop-text { order: 1; }
}

.day-tally {
  position: relative; background: var(--ink); color: var(--cream);
  border-radius: var(--r-md); padding: 1.1rem 1.5rem 1.2rem;
  margin: 2rem 0 1.5rem; display: flex; gap: 1rem 2.5rem; flex-wrap: wrap; align-items: center;
}
.day-tally::before {
  content: ""; position: absolute; top: -8px; left: 0; right: 0; height: 8px;
  background: var(--ink);
  clip-path: polygon(0% 0%, 2% 100%, 4% 0%, 6% 100%, 8% 0%, 10% 100%, 12% 0%, 14% 100%, 16% 0%, 18% 100%, 20% 0%, 22% 100%, 24% 0%, 26% 100%, 28% 0%, 30% 100%, 32% 0%, 34% 100%, 36% 0%, 38% 100%, 40% 0%, 42% 100%, 44% 0%, 46% 100%, 48% 0%, 50% 100%, 52% 0%, 54% 100%, 56% 0%, 58% 100%, 60% 0%, 62% 100%, 64% 0%, 66% 100%, 68% 0%, 70% 100%, 72% 0%, 74% 100%, 76% 0%, 78% 100%, 80% 0%, 82% 100%, 84% 0%, 86% 100%, 88% 0%, 90% 100%, 92% 0%, 94% 100%, 96% 0%, 98% 100%, 100% 0%);
}
.tally-label { font-family: var(--font-s); font-weight: 700; font-size: 1rem; opacity: .65; flex: 0 0 auto; }
.tally-amount { font-family: var(--font-d); font-variation-settings: "SOFT" 100,"WONK" 1; font-weight: 900; font-size: 2.1rem; color: var(--sun); line-height: 1; }
.tally-pair { display: flex; flex-direction: column; gap: .1rem; }
.tally-sub { font-size: .78rem; opacity: .55; font-weight: 500; }
.tally-running-wrap { margin-left: auto; text-align: right; }
.tally-running-label { font-size: .75rem; opacity: .5; }
.tally-running-num { font-family: var(--font-d); font-variation-settings: "SOFT" 80,"WONK" 1; font-weight: 900; font-size: 1.3rem; color: var(--pink); line-height: 1.1; }

.hindsight {
  background: var(--matcha-soft); border: 2px solid var(--matcha);
  border-radius: var(--r-md); padding: 1.1rem 1.4rem; margin: 0 0 2rem; position: relative;
}
.hindsight::before {
  content: "✎ what I'd do differently";
  display: block; font-family: var(--font-s); font-weight: 700; font-size: 1.15rem;
  color: var(--matcha); margin-bottom: .35rem;
}
.hindsight p { font-family: var(--font-s); font-size: 1.2rem; font-weight: 500; color: var(--ink); margin: 0; line-height: 1.55; }

.your-take {
  background: var(--sun); border: 2px solid var(--ink);
  border-radius: 12px; padding: 1.1rem 1.4rem;
  position: relative; box-shadow: 5px 5px 0 var(--ink);
  margin: 1.2rem 0 2rem; transform: rotate(-.4deg);
}
.your-take-label { display: flex; align-items: center; gap: .4rem; font-family: var(--font-s); font-weight: 700; font-size: 1rem; color: var(--persimmon); margin-bottom: .4rem; }
.your-take p { font-family: var(--font-s); font-weight: 500; font-size: 1.15rem; color: var(--ink); margin: 0; line-height: 1.5; }
.your-take-alt { background: var(--pink); transform: rotate(.5deg); }

.day-sep { display: block; width: 100%; height: 48px; margin: 0; overflow: visible; }
.day-sep path { fill: none; stroke: var(--pink); stroke-width: 1.5; stroke-dasharray: 6 4; opacity: .5; }

/* affiliate strip (itinerary) */
.affiliate-sec {
  background: var(--cream-2); border-radius: var(--r-lg);
  padding: 2rem 2rem 2.2rem; margin: 3rem 0;
  border: 2px solid rgba(51,36,28,.08);
}
.affiliate-sec-header { margin-bottom: 1.4rem; }
.affiliate-sec-header .eyebrow { font-size: 1.2rem; }
.affiliate-sec-title { font-family: var(--font-d); font-variation-settings: "SOFT" 80,"WONK" 1; font-weight: 800; font-size: 1.5rem; margin-top: .2rem; }
.aff-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.aff-card {
  display: block; text-decoration: none;
  background: var(--paper); border: 2px solid var(--ink);
  border-radius: var(--r-md); padding: 1.1rem 1.2rem 1.25rem;
  box-shadow: 3px 3px 0 var(--ink); position: relative;
}
.aff-card:hover { transform: translate(2px,2px) rotate(-.4deg); box-shadow: 1px 1px 0 var(--ink); }
.aff-icon {
  width: 46px; height: 46px; border-radius: 14px;
  display: grid; place-items: center; font-size: 1.3rem;
  margin-bottom: .7rem; border: 1.5px solid var(--ink);
}
.aff-1 { background: var(--pink); } .aff-2 { background: var(--sun); } .aff-3 { background: var(--matcha-soft); }
.aff-icon-1 { background: var(--pink); } .aff-icon-2 { background: var(--sun); } .aff-icon-3 { background: var(--matcha-soft); }
.aff-card h3 { font-family: var(--font-d); font-variation-settings: "SOFT" 80,"WONK" 1; font-weight: 800; font-size: 1.15rem; margin-bottom: .25rem; }
.aff-card p { font-size: .86rem; color: var(--ink-soft); line-height: 1.45; }
.aff-card .aff-honest { display: inline-block; margin-top: .55rem; font-size: .75rem; font-weight: 600; color: var(--matcha); background: var(--matcha-soft); padding: .1rem .5rem; border-radius: 4px; }
.aff-arrow { position: absolute; top: 1rem; right: 1.1rem; font-weight: 700; opacity: .4; }
.aff-card .aff-go { position: absolute; top: 1rem; right: 1rem; font-weight: 700; font-size: .95rem; }
@media (max-width: 600px) {
  .aff-grid { grid-template-columns: 1fr; }
  .affiliate-sec { padding: 1.4rem 1.3rem 1.6rem; }
}

.related-sec { margin: 3rem 0; }
.related-header { margin-bottom: 1.4rem; }
.related-eyebrow { font-family: var(--font-s); font-weight: 700; font-size: 1.2rem; color: var(--persimmon); }
.related-title { font-family: var(--font-d); font-variation-settings: "SOFT" 80,"WONK" 1; font-weight: 800; font-size: 1.55rem; margin-top: .15rem; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.related-card {
  background: var(--paper); border-radius: var(--r-md); border: 2px solid var(--ink); overflow: hidden;
  position: relative; box-shadow: var(--shadow-soft); text-decoration: none; color: inherit; display: block;
}
.related-card:hover { transform: scale(.975) rotate(-.4deg); }
.related-card img { width: 100%; height: auto; aspect-ratio: 3/2; object-fit: cover; display: block; }
.related-body { padding: .9rem 1.1rem 1.1rem; }
.related-body .rtag { display: inline-block; font-size: .75rem; font-weight: 700; background: var(--matcha-soft); color: var(--ink); border-radius: 999px; padding: .15rem .6rem; margin-bottom: .4rem; }
.related-body h3 { font-family: var(--font-d); font-variation-settings: "SOFT" 80,"WONK" 1; font-weight: 800; font-size: 1.1rem; line-height: 1.25; }
.related-body p { font-size: .84rem; color: var(--ink-soft); margin-top: .3rem; }
.related-card .cover-link { position: absolute; inset: 0; text-indent: -999em; }
@media (max-width: 680px) { .related-grid { grid-template-columns: 1fr; } }

/* ============================================================
   FOOD GUIDE POST STYLES
   ============================================================ */
.post-category-badge {
  display: inline-block; font-size: .78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .07em;
  background: var(--pink); color: var(--ink); border-radius: 999px;
  padding: .22rem .95rem; border: 1.5px solid var(--ink); margin-bottom: .9rem;
}
.post-category-tag {
  display: inline-block; font-size: .8rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; background: var(--pink); color: var(--ink);
  padding: .25rem .85rem; border-radius: 999px; border: 1.5px solid var(--ink); margin-bottom: 1rem;
}
.post-title { font-size: clamp(2rem, 5.5vw, 3.7rem); max-width: 18ch; margin-bottom: 1rem; }
.post-h1 { font-size: clamp(2rem, 5.5vw, 3.6rem); margin-bottom: 1.1rem; max-width: 14em; }
.post-byline {
  display: flex; align-items: center; gap: .7rem; flex-wrap: wrap;
  font-size: .88rem; color: var(--ink-soft); margin-bottom: 1.5rem;
}
.byline { display: flex; align-items: center; gap: .85rem; flex-wrap: wrap; font-size: .88rem; color: var(--ink-soft); }
.byline strong { color: var(--ink); font-weight: 600; }
.byline-dot { opacity: .35; }
.byline-avatar {
  width: 34px; height: 34px; border-radius: 50%;
  border: 2px solid var(--ink); overflow: hidden; flex-shrink: 0;
  background: var(--cream-2);
}
.byline-avatar img { width: 100%; height: 100%; object-fit: cover; }
.post-intro { font-size: clamp(1rem, 1.35vw, 1.14rem); color: var(--ink-soft); max-width: 55ch; margin-bottom: 2rem; line-height: 1.72; }
.post-intro strong { color: var(--ink); }

.local-chip {
  display: inline-flex; align-items: center; gap: .3rem; font-size: .78rem; font-weight: 700;
  background: #EEF4FF; color: var(--ink); border: 1.5px solid rgba(51,36,28,.18);
  border-radius: 999px; padding: .2rem .75rem;
}
.local-chip.matcha { background: var(--matcha-soft); border-color: var(--ink); padding: .25rem .85rem; margin-top: .55rem; font-size: .8rem; }

.post-hero {
  border-radius: var(--r-lg); overflow: hidden;
  border: 2px solid var(--ink); box-shadow: var(--shadow-soft);
  margin-bottom: 0; position: relative;
}
.post-hero img {
  width: 100%; height: auto; display: block;
}
.post-hero img.food-hero { aspect-ratio: 21/8; object-fit: cover; object-position: center 62%; }
.post-hero img.review-hero { aspect-ratio: 16/9; object-fit: cover; }
.post-hero .hero-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 2rem 1.4rem .85rem;
  background: linear-gradient(to top, rgba(30,18,12,.65), transparent);
  color: #fff; font-family: var(--font-s); font-weight: 700; font-size: 1.1rem;
}
.post-hero figcaption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 2rem 1.2rem .9rem;
  background: linear-gradient(to top, rgba(30,18,12,.65), transparent);
  font-family: var(--font-s); font-weight: 700; font-size: 1.15rem;
  color: rgba(255,255,255,.9);
}
@media (max-width: 540px) { .post-hero img.food-hero { aspect-ratio: 4/3; } }

.filter-bar {
  position: sticky; top: var(--header-h); z-index: 90;
  background: rgba(251,243,227,.93);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-bottom: 1.5px solid rgba(51,36,28,.09); padding: .6rem 0;
}
.filter-inner { display: flex; align-items: center; gap: .9rem; }
.filter-label { font-family: var(--font-s); font-weight: 700; font-size: 1.05rem; color: var(--ink-soft); white-space: nowrap; flex-shrink: 0; }
.filter-scroll {
  display: flex; gap: .45rem; overflow-x: auto; padding-bottom: 2px; scrollbar-width: none;
  -webkit-mask-image: linear-gradient(90deg, #000 88%, transparent);
  mask-image: linear-gradient(90deg, #000 88%, transparent);
}
.filter-scroll::-webkit-scrollbar { display: none; }
.filter-chip {
  flex-shrink: 0; white-space: nowrap; display: inline-flex; align-items: center; gap: .35rem;
  font-size: .84rem; font-weight: 700; padding: .42rem .95rem;
  border-radius: 999px; border: 1.5px solid var(--ink); background: var(--paper); box-shadow: 2px 2px 0 var(--ink);
}
.filter-chip[aria-pressed="true"] { background: var(--ink); color: var(--cream); box-shadow: none; }
.chip-dot { width: 7px; height: 7px; border-radius: 50%; display: inline-block; }
.dot-coffee   { background: #8B5E3C; }
.dot-brunch   { background: #D4A21A; }
.dot-dinner   { background: var(--persimmon); }
.dot-dessert  { background: var(--pink-deep); }
.dot-latenight{ background: #5B7FA6; }
.js .place-card.is-hidden { display: none; }

.article-body { padding: clamp(2rem,5vw,3.5rem) 0 clamp(2rem,4vw,3rem); }

.map-tile {
  background: var(--paper); border: 2px solid var(--ink);
  border-radius: var(--r-lg); padding: 1.5rem 1.8rem;
  box-shadow: var(--shadow-soft); margin-bottom: 2.8rem;
  display: grid; grid-template-columns: 1fr 1.5fr; gap: 2rem; align-items: center;
}
.map-tile-text h2 { font-family: var(--font-d); font-variation-settings: "SOFT" 85,"WONK" 1; font-weight: 800; font-size: 1.45rem; line-height: 1.2; margin-bottom: .35rem; }
.map-tile-text > p { font-size: .88rem; color: var(--ink-soft); margin-bottom: .95rem; }
.map-legend { list-style: none; display: grid; gap: .38rem; }
.map-legend li { font-size: .82rem; display: flex; align-items: center; gap: .55rem; color: var(--ink-soft); }
.map-legend li strong { color: var(--ink); }
.pin-num {
  width: 20px; height: 20px; border-radius: 50%; background: var(--persimmon); color: #fff;
  display: grid; place-items: center; flex-shrink: 0;
  font-family: var(--font-d); font-variation-settings: "SOFT" 80,"WONK" 1; font-weight: 900; font-size: .68rem;
}
.map-svg-wrap { background: var(--matcha-soft); border-radius: var(--r-md); border: 1.5px solid var(--matcha); padding: .6rem; aspect-ratio: 4/3; overflow: hidden; }
.nbhd-map { width: 100%; height: 100%; }
@media (max-width: 620px) { .map-tile { grid-template-columns: 1fr; } .map-svg-wrap { order: -1; aspect-ratio: 16/9; } }

.place-list { display: grid; gap: 1.8rem; }
.place-card {
  display: grid; grid-template-columns: 76px minmax(0,1fr) minmax(0,2fr);
  background: var(--paper); border: 2px solid var(--ink);
  border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-soft); position: relative;
}
.place-card[data-category="coffee"]    { border-top: 4px solid #C9956A; }
.place-card[data-category="brunch"]    { border-top: 4px solid var(--sun); }
.place-card[data-category="dessert"]   { border-top: 4px solid var(--pink-deep); }
.place-card[data-category="dinner"]    { border-top: 4px solid var(--persimmon); }
.place-card[data-category="latenight"] { border-top: 4px solid #5B7FA6; }
.place-card[data-category="coffee"]    .place-num-col { background: #EDD9C8; }
.place-card[data-category="brunch"]    .place-num-col { background: #FAF0C0; }
.place-card[data-category="dessert"]   .place-num-col { background: var(--pink); }
.place-card[data-category="dinner"]    .place-num-col { background: #F8D5C8; }
.place-card[data-category="latenight"] .place-num-col { background: #D4E3F0; }
.place-num-col {
  display: flex; align-items: flex-start; justify-content: center;
  padding: 1.5rem .4rem 1.5rem .8rem; border-right: 1.5px solid rgba(51,36,28,.1);
}
.place-num { font-family: var(--font-d); font-variation-settings: "SOFT" 100,"WONK" 1; font-weight: 900; font-size: 2.3rem; line-height: 1; color: var(--ink); opacity: .6; }
.place-photo-col { position: relative; overflow: hidden; min-height: 200px; }
.place-photo-col img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.place-meta-col { padding: 1.4rem 1.5rem; display: flex; flex-direction: column; gap: .6rem; }
.place-name-row { display: flex; align-items: flex-start; gap: .55rem; flex-wrap: wrap; }
.place-name { font-family: var(--font-d); font-variation-settings: "SOFT" 85,"WONK" 1; font-weight: 800; font-size: clamp(1.15rem,1.9vw,1.45rem); line-height: 1.15; }
.cat-chip {
  display: inline-block; font-size: .73rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .055em; border-radius: 999px; padding: .2rem .78rem; border: 1.5px solid var(--ink);
  align-self: flex-start; margin-top: .15rem;
}
.cat-chip.coffee    { background: #EDD9C8; }
.cat-chip.brunch    { background: var(--sun); }
.cat-chip.dinner    { background: #F8D5C8; }
.cat-chip.dessert   { background: var(--pink); }
.cat-chip.latenight { background: #D4E3F0; }
.chips-row { display: flex; gap: .4rem; flex-wrap: wrap; }
.meta-chip { display: inline-block; font-size: .76rem; font-weight: 600; border-radius: 999px; padding: .2rem .75rem; border: 1.5px solid rgba(51,36,28,.16); background: var(--cream-2); }
.meta-chip.price { font-family: var(--font-d); font-variation-settings: "SOFT" 80,"WONK" 1; font-weight: 900; }
.meta-chip.order  { background: var(--matcha-soft); }
.meta-chip.vibe   { background: var(--cream); font-style: italic; color: var(--ink-soft); }
.place-review { font-size: .94rem; color: var(--ink-soft); line-height: 1.65; flex: 1; }
.place-review strong { color: var(--ink); }
.place-handnote { font-family: var(--font-s); font-weight: 700; font-size: 1.2rem; color: var(--persimmon); transform: rotate(-1.2deg); display: inline-block; line-height: 1.25; }
.place-foot { display: flex; align-items: center; justify-content: space-between; gap: .8rem; flex-wrap: wrap; margin-top: auto; padding-top: .35rem; }
.place-addr { font-size: .8rem; color: var(--ink-soft); }
.find-link { display: inline-flex; align-items: center; gap: .3rem; font-weight: 700; font-size: .88rem; text-decoration: none; color: var(--persimmon); border-bottom: 1.5px solid var(--pink); padding-bottom: .1rem; }
@media (max-width: 680px) {
  .place-card { grid-template-columns: 1fr; grid-template-rows: auto auto auto; }
  .place-num-col { flex-direction: row; gap: .6rem; padding: .75rem 1.2rem; border-right: none; border-bottom: 1.5px solid rgba(51,36,28,.1); align-items: center; }
  .place-num { font-size: 1.9rem; }
  .place-photo-col { min-height: 200px; position: relative; }
  .place-meta-col { padding: 1.1rem 1.2rem; }
}
@media (min-width: 681px) and (max-width: 900px) {
  .place-card { grid-template-columns: 60px minmax(0,1fr) minmax(0,1.8fr); }
}

.callout-matcha {
  background: var(--matcha-soft); border: 2px solid var(--matcha);
  border-radius: var(--r-lg); padding: 1.8rem 2.1rem;
  box-shadow: 6px 6px 0 var(--matcha); margin: 2.4rem 0;
}
.callout-matcha h2 { font-family: var(--font-d); font-variation-settings: "SOFT" 85,"WONK" 1; font-weight: 800; font-size: 1.35rem; margin-bottom: 1rem; line-height: 1.2; }
.callout-matcha ul { list-style: none; display: grid; gap: .75rem; }
.callout-matcha li { display: flex; gap: .75rem; align-items: flex-start; font-size: .94rem; color: var(--ink-soft); line-height: 1.6; }
.callout-matcha li::before { content: "✦"; color: var(--matcha); font-size: .85rem; flex-shrink: 0; margin-top: .22rem; }
.callout-matcha li strong { color: var(--ink); }

/* sticky-note (food guide variant — no ::before emoji) */
.sticky-note {
  background: var(--sun); border: 1.5px solid var(--ink);
  border-radius: 4px 18px 18px 4px; padding: 1.1rem 1.4rem;
  box-shadow: 4px 4px 0 rgba(51,36,28,.12); margin: 1.4rem 0; position: relative;
}
.sticky-note::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--persimmon); border-radius: 4px 0 0 4px; }
.sticky-note p { font-family: var(--font-s); font-weight: 700; font-size: 1.18rem; color: var(--ink); line-height: 1.45; }
.sticky-note.pink { background: var(--pink); }
.sticky-note.pink::before { background: var(--pink-deep); }

/* affiliate strip (food guide) */
.affiliate-strip {
  background: var(--cream-2); border: 2px solid var(--ink);
  border-radius: var(--r-lg); padding: 1.6rem 2rem; margin: 2.4rem 0; box-shadow: var(--shadow-soft);
}
.aff-head { display: flex; align-items: baseline; gap: .8rem; margin-bottom: 1.2rem; flex-wrap: wrap; }
.aff-head h2 { font-family: var(--font-d); font-variation-settings: "SOFT" 85,"WONK" 1; font-weight: 800; font-size: 1.3rem; line-height: 1.2; }
.aff-note-small { font-size: .78rem; color: var(--ink-soft); }
.aff-section { margin: 2.8rem 0; }
.aff-head-title { font-family: var(--font-d); font-variation-settings: "SOFT" 80,"WONK" 1; font-weight: 800; font-size: 1.35rem; margin-bottom: .35rem; }
.aff-sub { font-size: .85rem; color: var(--ink-soft); margin-bottom: 1.1rem; }
.affiliate-strip .aff-card { display: flex; align-items: center; gap: .8rem; background: var(--paper); border: 1.5px solid var(--ink); border-radius: var(--r-md); padding: .9rem 1rem; text-decoration: none; box-shadow: 3px 3px 0 var(--ink); }
.affiliate-strip .aff-icon { font-size: 1.5rem; flex-shrink: 0; width: 42px; height: 42px; border-radius: 12px; border: 1.5px solid var(--ink); background: var(--cream-2); display: grid; place-items: center; }
.aff-text { flex: 1; min-width: 0; }
.aff-text strong { display: block; font-weight: 700; font-size: .92rem; }
.aff-text span { font-size: .78rem; color: var(--ink-soft); }
.aff-arrow-icon { color: var(--persimmon); font-size: 1.1rem; flex-shrink: 0; }
@media (max-width: 580px) { .aff-grid { grid-template-columns: 1fr; } }
@media (min-width: 581px) and (max-width: 800px) { .aff-grid { grid-template-columns: 1fr 1fr; } }

/* ============================================================
   REVIEW POST STYLES
   ============================================================ */
.post-body { padding: 2.4rem 0 3rem; }
.post-body p { font-size: 1.05rem; line-height: 1.78; color: var(--ink); margin-bottom: 1.3rem; }
.post-body p:last-child { margin-bottom: 0; }
.post-body h2 { font-family: var(--font-d); font-variation-settings: "SOFT" 80,"WONK" 1; font-weight: 800; font-size: clamp(1.5rem,2.8vw,2rem); line-height: 1.15; margin: 2.4rem 0 .9rem; }
.post-body h3 { font-family: var(--font-d); font-variation-settings: "SOFT" 70,"WONK" 1; font-weight: 700; font-size: 1.25rem; margin: 1.8rem 0 .6rem; }
.post-head { padding: 1.5rem 0 0; }
.post-header { padding: 1.6rem 0 2rem; }

.verdict-box {
  background: var(--paper); border: 2px solid var(--ink); border-radius: 28px;
  padding: clamp(1.6rem,4vw,2.4rem); box-shadow: 8px 8px 0 var(--persimmon);
  margin: 2.4rem 0; position: relative; overflow: hidden;
}
.verdict-box::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 5px;
  background: linear-gradient(90deg, var(--persimmon), var(--pink), var(--sun));
}
.verdict-inner { display: grid; grid-template-columns: auto 1fr; gap: clamp(1.4rem,3vw,2.2rem); align-items: start; }
.verdict-score-col { display: flex; flex-direction: column; align-items: center; gap: .6rem; flex: 0 0 auto; }
.score-ring { position: relative; width: 110px; height: 110px; }
.score-ring svg { width: 110px; height: 110px; overflow: visible; }
.score-track { fill: none; stroke: var(--cream-2); stroke-width: 8; stroke-linecap: round; }
.score-fill {
  fill: none; stroke: var(--persimmon); stroke-width: 8; stroke-linecap: round;
  stroke-dasharray: 240.33 42.41;
  transform: rotate(-90deg); transform-box: fill-box; transform-origin: center;
}
.score-num { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; font-family: var(--font-d); font-variation-settings: "SOFT" 80,"WONK" 1; font-weight: 900; }
.score-big { font-size: 1.9rem; line-height: 1; color: var(--persimmon); }
.score-denom { font-size: .75rem; color: var(--ink-soft); font-weight: 500; }
.score-label { font-family: var(--font-s); font-weight: 700; font-size: 1.1rem; color: var(--ink); text-align: center; line-height: 1.2; }
.verdict-facts { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: .75rem 1.2rem; }
.vf-item { display: flex; flex-direction: column; gap: .15rem; }
.vf-label { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .09em; color: var(--ink-soft); }
.vf-val { font-size: .97rem; font-weight: 600; color: var(--ink); line-height: 1.3; }
.vf-skip .vf-val { color: var(--pink-deep); }
.vf-best .vf-val { color: var(--matcha); }
@media (max-width: 560px) {
  .verdict-inner { grid-template-columns: 1fr; }
  .verdict-score-col { flex-direction: row; align-items: center; }
  .score-label { text-align: left; }
}

.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; margin: 2rem 0; }
.pc-card { border-radius: var(--r-md); padding: 1.4rem 1.5rem; border: 2px solid var(--ink); }
.pc-card.pros { background: var(--matcha-soft); box-shadow: 4px 4px 0 var(--matcha); }
.pc-card.cons { background: var(--pink); box-shadow: 4px 4px 0 var(--pink-deep); }
.pc-head { font-family: var(--font-s); font-weight: 700; font-size: 1.35rem; display: flex; align-items: center; gap: .4rem; margin-bottom: .9rem; }
.pc-card.pros .pc-head { color: var(--matcha); }
.pc-card.cons .pc-head { color: var(--pink-deep); }
.pc-list { list-style: none; display: grid; gap: .6rem; }
.pc-list li { font-size: .95rem; line-height: 1.45; display: flex; align-items: flex-start; gap: .5rem; }
.pc-list li::before { content: ""; flex: 0 0 6px; height: 6px; border-radius: 50%; margin-top: .55em; background: currentColor; }
.pc-card.pros .pc-list li, .pc-card.cons .pc-list li { color: var(--ink); }
@media (max-width: 560px) { .pros-cons { grid-template-columns: 1fr; } }

.for-skip { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin: 1.8rem 0; }
.fs-panel { border-radius: var(--r-md); padding: 1.3rem 1.4rem; border: 2px solid var(--ink); }
.fs-panel.for-panel { background: #EEF5EC; }
.fs-panel.skip-panel { background: #FFF0F0; }
.fs-label { font-family: var(--font-s); font-weight: 700; font-size: 1.2rem; margin-bottom: .6rem; display: block; }
.fs-panel.for-panel .fs-label { color: var(--matcha); }
.fs-panel.skip-panel .fs-label { color: var(--pink-deep); }
.fs-panel ul { list-style: none; display: grid; gap: .5rem; font-size: .92rem; color: var(--ink-soft); }
.fs-panel ul li { padding-left: 1.1rem; position: relative; }
.fs-panel ul li::before { content: "·"; position: absolute; left: 0; color: inherit; }
@media (max-width: 500px) { .for-skip { grid-template-columns: 1fr; } }

.gallery-section { margin: 2.6rem 0; }
.gallery-title { font-family: var(--font-s); font-weight: 700; font-size: 1.55rem; color: var(--ink-soft); margin-bottom: 1rem; display: flex; align-items: center; gap: .4rem; }
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 220px; gap: 12px; }
.g-item { position: relative; overflow: hidden; border-radius: var(--r-md); border: 1.5px solid rgba(51,36,28,.12); background: var(--cream-2); }
.g-item img { width: 100%; height: 100%; object-fit: cover; display: block; }
.g-item.g-wide { grid-column: span 2; }
.g-item.g-tall { grid-row: span 2; }
.g-caption { position: absolute; bottom: 0; left: 0; right: 0; padding: 1.4rem .85rem .6rem; background: linear-gradient(to top, rgba(30,18,12,.6), transparent); font-family: var(--font-s); font-weight: 700; font-size: 1.05rem; color: #fff; pointer-events: none; }
@media (max-width: 640px) { .gallery { grid-template-columns: repeat(2,1fr); grid-auto-rows: 160px; } .g-item.g-wide { grid-column: span 2; } .g-item.g-tall { grid-row: span 1; } }
@media (max-width: 420px) { .gallery { grid-template-columns: 1fr; grid-auto-rows: 220px; } .g-item.g-wide { grid-column: span 1; } }

.transit-box { background: var(--paper); border: 2px solid var(--ink); border-radius: var(--r-lg); padding: 1.5rem 1.7rem; box-shadow: 5px 5px 0 var(--matcha-soft); margin: 2rem 0; }
.transit-head { font-family: var(--font-d); font-variation-settings: "SOFT" 80,"WONK" 1; font-weight: 800; font-size: 1.2rem; margin-bottom: 1rem; display: flex; align-items: center; gap: .5rem; }
.transit-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: .85rem; }
.tg-item { display: flex; flex-direction: column; gap: .2rem; }
.tg-icon { width: 36px; height: 36px; border-radius: 12px; background: var(--matcha-soft); border: 1.5px solid var(--ink); display: grid; place-items: center; font-size: 1.15rem; margin-bottom: .35rem; }
.tg-label { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-soft); }
.tg-val { font-size: .93rem; font-weight: 600; color: var(--ink); line-height: 1.35; }
.tg-sub { font-size: .8rem; color: var(--ink-soft); }

/* sticky-note review variant (with pencil emoji) */
.sticky-note.review-note { background: var(--sun); border: 2px solid var(--ink); border-radius: var(--r-md); padding: 1.25rem 1.5rem; box-shadow: 4px 4px 0 rgba(51,36,28,.2); margin: 1.8rem 0; }
.sticky-note.review-note::before { content: "✏️"; position: absolute; top: -14px; right: 20px; font-size: 1.4rem; line-height: 1; background: none; width: auto; height: auto; border-radius: 0; }
.sticky-note-label { font-family: var(--font-s); font-weight: 700; font-size: .95rem; color: var(--ink-soft); text-transform: uppercase; letter-spacing: .06em; margin-bottom: .35rem; }

.verdict-callout { background: var(--persimmon); color: #fff; border-radius: var(--r-lg); padding: 2rem 2.2rem; margin: 2.4rem 0; position: relative; overflow: hidden; }
.verdict-callout::before { content: ""; position: absolute; top: -40px; right: -40px; width: 140px; height: 140px; border-radius: 50%; background: var(--persimmon-d); opacity: .5; pointer-events: none; }
.verdict-callout-label { font-family: var(--font-s); font-weight: 700; font-size: 1.15rem; opacity: .85; margin-bottom: .5rem; position: relative; }
.verdict-callout h3 { font-family: var(--font-d); font-variation-settings: "SOFT" 90,"WONK" 1; font-weight: 900; font-size: clamp(1.4rem,2.8vw,1.85rem); line-height: 1.15; margin-bottom: .8rem; position: relative; }
.verdict-callout p { font-size: 1.05rem; line-height: 1.7; opacity: .95; position: relative; }

.related-section { padding: 2.8rem 0; }
.related-head { margin-bottom: 1.4rem; }
.related-eyebrow { font-family: var(--font-s); font-weight: 700; font-size: 1.35rem; color: var(--persimmon); display: inline-block; margin-bottom: .2rem; }
.related-card-body { padding: .9rem 1.1rem 1.1rem; }
.related-card-tag { display: inline-block; font-size: .75rem; font-weight: 700; background: var(--matcha-soft); color: var(--ink); border-radius: 999px; padding: .15rem .65rem; margin-bottom: .4rem; }
.related-card-body h3 { font-family: var(--font-d); font-variation-settings: "SOFT" 80,"WONK" 1; font-weight: 800; font-size: 1.1rem; line-height: 1.2; }
.related-card-body p { font-size: .84rem; color: var(--ink-soft); margin-top: .3rem; }
@media (max-width: 680px) { .related-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 440px) { .related-grid { grid-template-columns: 1fr; } }

/* ============ POST CONTENT ============ */
.post-content h2 { font-family: var(--font-d); font-variation-settings: "SOFT" 80,"WONK" 1; font-weight: 800; font-size: clamp(1.5rem,2.8vw,2rem); line-height: 1.15; margin: 2.4rem 0 .9rem; }
.post-content h3 { font-family: var(--font-d); font-variation-settings: "SOFT" 70,"WONK" 1; font-weight: 700; font-size: 1.25rem; margin: 1.8rem 0 .6rem; }
.post-content p { font-size: 1.05rem; line-height: 1.78; color: var(--ink); margin-bottom: 1.3rem; }
.post-content img { border-radius: var(--r-md); margin: 1.5rem 0; }
.post-content ul, .post-content ol { margin: 1rem 0 1rem 1.5rem; }
.post-content li { margin-bottom: .4rem; line-height: 1.65; }

/* ============ BLOG LISTING ============ */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 2rem; }
.blog-card {
  background: var(--paper); border-radius: var(--r-md); overflow: hidden;
  border: 2px solid var(--ink); box-shadow: 5px 5px 0 rgba(51,36,28,.14);
  position: relative; display: block; text-decoration: none; color: inherit;
}
.blog-card:hover { transform: rotate(-1deg) scale(.985); }
.blog-card img { width: 100%; height: auto; aspect-ratio: 4/3; object-fit: cover; display: block; }
.blog-card-body { padding: 1rem 1.2rem 1.3rem; }
.blog-card-body .cat { display: inline-block; font-size: .75rem; font-weight: 700; background: var(--matcha-soft); color: var(--ink); border-radius: 999px; padding: .15rem .6rem; margin-bottom: .5rem; }
.blog-card-body h2 { font-family: var(--font-d); font-variation-settings: "SOFT" 80,"WONK" 1; font-weight: 800; font-size: 1.15rem; line-height: 1.25; margin-bottom: .4rem; }
.blog-card-body .meta { font-size: .8rem; color: var(--ink-soft); }
@media (max-width: 900px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .blog-grid { grid-template-columns: 1fr; } }

/* ============================================================
   MOTION — all animations live here
   transform/opacity only. Marquee pauses on hover.
   ============================================================ */
@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }

  .btn, .chips a, .rail-btn, .book-card, .polaroid, .rail-card,
  .guide-card, .season-ph, .news-form button, .filter-chip,
  .aff-card, .hl-tile, .related-card, .blog-card {
    transition: transform .3s cubic-bezier(.3,.8,.3,1);
  }
  .u::after { transition: transform .32s cubic-bezier(.3,.8,.3,1); }
  .ar { transition: transform .25s cubic-bezier(.3,.8,.3,1); }
  .tile { transition: transform .35s cubic-bezier(.3,.8,.3,1); }
  .tile::before { transition: opacity .35s ease; }
  .g-item img { transition: transform .45s cubic-bezier(.3,.8,.3,1); }
  .find-link { transition: color .2s ease; }
  .hl-tile { transition: transform .35s cubic-bezier(.3,.8,.3,1); }
  .hl-tile::before { transition: opacity .35s ease; }

  .filter-chip:not([aria-pressed="true"]):hover { transform: translate(1px,1px); box-shadow: 1px 1px 0 var(--ink); background: var(--pink); }
  .aff-card:hover { transform: translate(2px,2px); box-shadow: 1px 1px 0 var(--ink); }
  .g-item:hover img { transform: scale(1.06); }

  /* scroll reveal — hidden ONLY when .js present */
  .js .reveal:not(.in) { opacity: 0; transform: translateY(28px) rotate(var(--tilt,0deg)); }
  .js .reveal.in {
    animation: revealIn .7s cubic-bezier(.22,.8,.3,1) backwards;
    animation-delay: calc(var(--i,0) * 90ms);
  }
  @keyframes revealIn {
    from { opacity: 0; transform: translateY(28px) rotate(var(--tilt,0deg)); }
    to   { opacity: 1; transform: var(--rest,none); }
  }

  /* hero choreography */
  .js .hw { animation: wordIn .65s cubic-bezier(.2,.7,.25,1.15) backwards; animation-delay: calc(120ms + var(--i,0) * 75ms); }
  .js .hero-eyebrow { animation: fadeUp .6s ease-out backwards; }
  .js .hero-intro { animation: fadeUp .7s .68s ease-out backwards; }
  .js .hero-chips { animation: fadeUp .7s .84s ease-out backwards; }
  .js .polaroid { animation: polaroidIn .7s .95s cubic-bezier(.2,.7,.3,1.25) backwards; }
  @keyframes wordIn { from { opacity: 0; transform: translateY(.55em) rotate(3deg); } to { opacity: 1; transform: var(--rest,none); } }
  @keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: var(--rest,none); } }
  @keyframes polaroidIn { from { opacity: 0; transform: rotate(12deg) translateY(24px) scale(.85); } to { opacity: 1; transform: rotate(4deg); } }

  /* article header choreography */
  .js .article-tag { animation: fadeUp .55s .1s ease-out backwards; }
  .js .byline-strip { animation: fadeUp .6s .55s ease-out backwards; }

  /* blobs */
  .js .blob-1 { animation: floaty 9s ease-in-out infinite alternate; }
  .js .blob-2 { animation: floaty 11s 1s ease-in-out infinite alternate-reverse; }
  @keyframes floaty { to { transform: translateY(-20px) rotate(7deg); } }

  /* marquee — duplicated track, pauses on hover */
  .mq-track { animation: mq 26s linear infinite; }
  .mq:hover .mq-track, .mq:focus-within .mq-track { animation-play-state: paused; }
  @keyframes mq { to { transform: translateX(-50%); } }

  /* Ken Burns on big bento tile */
  .js .kenburns { animation: kb 24s ease-in-out infinite alternate; }
  @keyframes kb { from { transform: scale(1); } to { transform: scale(1.12) translate3d(-2%,1.5%,0); } }

  /* map pin pulse */
  .js .pulse { animation: pulse 2.6s ease-out infinite; animation-delay: calc(var(--i,0) * .5s); }
  @keyframes pulse { 0% { transform: scale(.6); opacity: .9; } 70% { transform: scale(2.1); opacity: 0; } 100% { opacity: 0; } }

  /* season buttons wobble */
  .season-btn:hover .season-ph, .season-btn:focus-visible .season-ph { animation: wobble .55s ease; }
  @keyframes wobble { 25% { transform: rotate(-5deg) scale(1.05); } 60% { transform: rotate(4deg) scale(1.02); } 100% { transform: none; } }

  /* season panel swap */
  .js .season-panel.swap .swap-in { animation: panelIn .45s cubic-bezier(.2,.7,.3,1.1) both; }
  @keyframes panelIn { from { opacity: 0; transform: translateY(14px) rotate(.6deg); } to { opacity: 1; transform: none; } }

  /* score ring draw-in */
  .js .score-fill.draw { animation: ringDraw .9s .3s cubic-bezier(.4,0,.2,1) backwards; }
  @keyframes ringDraw {
    from { stroke-dasharray: 0 282.74; }
    to   { stroke-dasharray: 240.33 42.41; }
  }

  /* verdict callout */
  .js .verdict-callout.in { animation: calloutIn .55s cubic-bezier(.2,.8,.3,1.2) backwards; }
  @keyframes calloutIn { from { opacity: 0; transform: translateY(20px) scale(.97); } to { opacity: 1; transform: none; } }

  /* sticky note wiggle */
  .js .sticky-note.in { animation: noteIn .6s cubic-bezier(.2,.7,.3,1.25) backwards; }
  @keyframes noteIn { from { opacity: 0; transform: translateY(18px) rotate(-3deg); } to { opacity: 1; transform: var(--rest, rotate(-0.5deg)); } }
}
