/* Cosmano Japan — dense, full-width, top day nav */
:root {
  --bg: #0b0e14;
  --bg-elevated: #121722;
  --bg-card: #161c2a;
  --text: #f3efe6;
  --text-muted: #a9a296;
  --line: rgba(243, 239, 230, 0.12);
  --gold: #e8b86d;
  --sakura: #f0b7c8;
  --tokyo: #7eb8ff;
  --kanazawa: #8fd0a8;
  --kyoto: #d4a0c8;
  --travel: #e8b86d;
  --shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
  --radius: 14px;
  --radius-sm: 10px;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "DM Sans", "Noto Sans JP", system-ui, sans-serif;
  --header-h: 52px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --city-accent: var(--tokyo);
  --page-max: 1400px;
  --content-max: 1100px;
}

html[data-theme="light"] {
  --bg: #f7f1e8;
  --bg-elevated: #fffdf9;
  --bg-card: #ffffff;
  --text: #1a1720;
  --text-muted: #5c564e;
  --line: rgba(26, 23, 32, 0.1);
  --shadow: 0 8px 24px rgba(40, 30, 20, 0.08);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(900px 400px at 8% -8%, color-mix(in srgb, var(--city-accent) 14%, transparent), transparent 55%),
    var(--bg);
  line-height: 1.5;
}

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

a {
  color: var(--city-accent);
}

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--gold);
  color: #111;
  padding: 0.5rem 0.75rem;
  z-index: 1000;
}

.skip-link:focus {
  left: 0.5rem;
  top: 0.5rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 0.4rem 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-height: var(--header-h);
}

.brand {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--text);
  line-height: 1.1;
  flex-shrink: 0;
}

.brand-jp {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.65rem;
  color: var(--gold);
  letter-spacing: 0.1em;
}

.brand-en {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
}

.nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: nowrap;
  min-width: 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.nav::-webkit-scrollbar {
  display: none;
}

.nav > a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
}

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

.nav-sep {
  width: 1px;
  height: 1.25rem;
  background: var(--line);
  flex-shrink: 0;
  margin: 0 0.15rem;
}

.nav-days {
  display: flex;
  gap: 0.25rem;
  flex-shrink: 0;
}

.nav-day {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--text-muted);
  border: 1px solid var(--line);
  background: var(--bg-card);
  border-radius: 8px;
  min-width: 2.15rem;
  padding: 0.2rem 0.28rem;
  line-height: 1.05;
  transition: all 0.15s ease;
}

.nav-day-n {
  font-weight: 800;
  font-size: 0.78rem;
  color: var(--text);
}

.nav-day-c {
  font-size: 0.55rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 700;
}

.nav-day:hover {
  border-color: var(--city-accent);
  color: var(--text);
}

.nav-day.is-active {
  background: var(--city-accent);
  border-color: transparent;
  color: #111;
}

.nav-day.is-active .nav-day-n,
.nav-day.is-active .nav-day-c {
  color: #111;
}

.theme-toggle {
  border: 1px solid var(--line);
  background: var(--bg-elevated);
  color: var(--text);
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 999px;
  cursor: pointer;
  flex-shrink: 0;
}

/* Hero — shorter */
.hero {
  position: relative;
  min-height: min(48vh, 420px);
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero-img.is-active {
  opacity: 1;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 14, 20, 0.3) 0%, rgba(11, 14, 20, 0.88) 100%);
}

html[data-theme="light"] .hero-scrim {
  background: linear-gradient(180deg, rgba(247, 241, 232, 0.2) 0%, rgba(247, 241, 232, 0.92) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 2.25rem 1rem 1.75rem;
  width: 100%;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.7rem;
  color: var(--gold);
  font-weight: 600;
  margin: 0 0 0.4rem;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  line-height: 1.15;
  font-weight: 600;
}

h1 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin: 0 0 0.5rem;
  max-width: 16ch;
}

.h1-sub {
  display: block;
  margin-top: 0.4rem;
  font-size: clamp(0.9rem, 1.6vw, 1.05rem);
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--sakura);
}

.hero-lead {
  max-width: 52ch;
  color: var(--text-muted);
  font-size: 0.98rem;
  margin: 0 0 0.9rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.season-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.badge {
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--bg-elevated) 70%, transparent);
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.animate-in {
  animation: rise 0.7s var(--ease) both;
}

.delay-1 { animation-delay: 0.08s; }
.delay-2 { animation-delay: 0.14s; }
.delay-3 { animation-delay: 0.2s; }
.delay-4 { animation-delay: 0.26s; }

@keyframes rise {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: none; }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.5rem 0.95rem;
  font-weight: 600;
  font-size: 0.88rem;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  font-family: inherit;
  color: inherit;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), #f0d09a);
  color: #1a140a;
}

.btn-ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--text);
}

.text-link {
  color: var(--city-accent);
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
}

/* About */
.section {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 1.75rem 1rem;
}

.section-about {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.about-intro {
  max-width: 62ch;
  margin-bottom: 1.15rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 1rem;
  align-items: start;
}

.about-grid-secondary {
  margin-top: 1rem;
  grid-template-columns: 1fr 1fr;
}

.season-when {
  margin-top: 1rem;
  width: 100%;
  padding: 1.35rem 1.5rem 1.5rem;
}

.season-when h3 {
  font-size: 1.2rem;
  margin-bottom: 0.45rem;
}

.season-when-lead {
  font-size: 1.02rem;
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0 0 1rem;
  max-width: none;
}

.season-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  width: 100%;
}

.season-option {
  background: var(--bg, rgba(0, 0, 0, 0.18));
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) - 2px);
  padding: 1.05rem 1.15rem 1.15rem;
}

.season-option-label {
  margin: 0 0 0.2rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent, #c45c26);
}

.season-option h4 {
  margin: 0 0 0.35rem;
  font-size: 1.15rem;
  font-family: var(--font-display, inherit);
}

.season-weather {
  margin: 0 0 0.65rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  opacity: 0.92;
}

.season-option > p {
  margin: 0 0 0.65rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.season-option > p:last-child {
  margin-bottom: 0;
}

.season-why {
  padding-top: 0.55rem;
  border-top: 1px solid var(--line);
  font-size: 0.92rem !important;
}

.season-when-foot {
  margin: 1rem 0 0;
  font-size: 0.92rem;
}

.section-head.tight {
  margin-bottom: 0.85rem;
}

.section-head h2,
.section-about h2 {
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
  margin: 0 0 0.4rem;
}

.section-lead {
  color: var(--text-muted);
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
}

.crew-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}

.crew-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.9rem 0.95rem 1rem;
  box-shadow: var(--shadow);
}

.crew-avatar {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.5rem;
  background: color-mix(in srgb, var(--city-accent) 22%, var(--bg));
  border: 1px solid var(--line);
}

.crew-card h3 {
  margin: 0 0 0.15rem;
  font-size: 1.1rem;
}

.crew-role {
  margin: 0 0 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
}

.crew-card p:last-child {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.season-compact {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.9rem 1rem;
}

.season-compact h3 {
  margin: 0 0 0.4rem;
  font-size: 1rem;
}

.season-compact p {
  margin: 0 0 0.45rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.season-compact p:last-child {
  margin-bottom: 0;
}

.muted {
  opacity: 0.9;
}

/* Journey — full width of page max */
.journey-section {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 0 0.75rem 1.5rem;
}

.journey-days {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

/* City chapter breaks */
.city-chapter {
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) 1.2fr;
  gap: 0;
  border-radius: calc(var(--radius) + 6px);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: var(--bg-card);
  scroll-margin-top: calc(var(--header-h) + 0.5rem);
}

.city-chapter--tokyo {
  border-color: color-mix(in srgb, var(--tokyo) 45%, var(--line));
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--tokyo) 20%, transparent), var(--shadow);
}

.city-chapter--kanazawa {
  border-color: color-mix(in srgb, var(--kanazawa) 45%, var(--line));
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--kanazawa) 20%, transparent), var(--shadow);
}

.city-chapter--kyoto {
  border-color: color-mix(in srgb, var(--kyoto) 45%, var(--line));
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--kyoto) 20%, transparent), var(--shadow);
}

.city-chapter-media {
  position: relative;
  min-height: 280px;
}

.city-chapter-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 280px;
}

.city-chapter-media-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.72));
}

.city-chapter-media-label {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 1;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.city-chapter-ja {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.city-chapter-kicker {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold);
  font-weight: 700;
}

.city-chapter-body {
  padding: 1.15rem 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.city-chapter-role {
  margin: 0;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 700;
}

.city-chapter-name {
  margin: 0;
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  line-height: 1.1;
}

.city-chapter--tokyo .city-chapter-name { color: var(--tokyo); }
.city-chapter--kanazawa .city-chapter-name { color: var(--kanazawa); }
.city-chapter--kyoto .city-chapter-name { color: var(--kyoto); }

.city-chapter-days {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
}

.city-chapter-blurb {
  margin: 0.15rem 0 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
  max-width: 62ch;
}

.city-chapter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.chapter-pill {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.22rem 0.6rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  background: var(--bg-elevated);
}

.city-chapter-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  margin-top: 0.25rem;
}

.city-chapter-facts h4,
.chapter-excursions h4 {
  margin: 0 0 0.3rem;
  font-size: 0.88rem;
}

.city-chapter-facts p {
  margin: 0;
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.chapter-excursions {
  margin-top: 0.35rem;
  padding: 0.75rem 0.85rem;
  border-radius: var(--radius-sm);
  border: 1px dashed color-mix(in srgb, var(--gold) 55%, var(--line));
  background: color-mix(in srgb, var(--gold) 8%, transparent);
}

.chapter-excursions-none {
  border-style: solid;
  border-color: var(--line);
  background: var(--bg-elevated);
}

.chapter-excursions-lead {
  margin: 0 0 0.55rem;
  font-size: 0.84rem;
  color: var(--text-muted);
}

.chapter-excursions ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.chapter-excursions li {
  display: grid;
  gap: 0.12rem;
}

.chapter-excursions li strong {
  font-size: 0.92rem;
}

.chapter-exc-meta {
  font-size: 0.75rem;
  color: var(--gold);
  font-weight: 600;
}

.chapter-exc-sum {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.chapter-start-btn {
  align-self: flex-start;
  margin-top: 0.35rem;
  text-decoration: none;
}

.day-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 0.3rem;
}

.city-chip--travel {
  background: color-mix(in srgb, var(--travel) 35%, rgba(0, 0, 0, 0.35));
  border-color: color-mix(in srgb, var(--travel) 60%, transparent);
}

.day-page--travel {
  border-color: color-mix(in srgb, var(--travel) 40%, var(--line));
}

/* Unified activity kinds — one badge, consistent colors */
.kind-badge {
  position: absolute;
  top: 0.45rem;
  right: 0.45rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.22rem 0.5rem;
  border-radius: 999px;
  z-index: 2;
}

.kind-hint {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.35rem 0.75rem;
  margin: 0 0 0.55rem;
  padding: 0.4rem 0.55rem;
  border-radius: 8px;
  font-size: 0.8rem;
  line-height: 1.35;
  border: 1px solid var(--line);
  background: var(--bg);
  color: var(--text-muted);
}

.kind-time {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
}

/* Landmark — indigo */
.kind-badge.kind-landmark {
  background: #3d5a80;
  color: #f0f4f8;
}
.option-full.kind-landmark {
  border-color: color-mix(in srgb, #3d5a80 55%, var(--line));
}
.kind-hint.kind-landmark {
  border-color: color-mix(in srgb, #3d5a80 40%, var(--line));
  background: color-mix(in srgb, #3d5a80 12%, var(--bg));
}

/* Around town — teal */
.kind-badge.kind-wander {
  background: #2a9d8f;
  color: #f2fffc;
}
.option-full.kind-wander {
  border-color: color-mix(in srgb, #2a9d8f 50%, var(--line));
}
.kind-hint.kind-wander {
  border-color: color-mix(in srgb, #2a9d8f 40%, var(--line));
  background: color-mix(in srgb, #2a9d8f 12%, var(--bg));
}

/* Reservation — amber */
.kind-badge.kind-booked {
  background: #c9a227;
  color: #1a1408;
}
.option-full.kind-booked {
  border-color: color-mix(in srgb, #c9a227 55%, var(--line));
}
.kind-hint.kind-booked {
  border-color: color-mix(in srgb, #c9a227 45%, var(--line));
  background: color-mix(in srgb, #c9a227 12%, var(--bg));
}

/* Walk-in — coral */
.kind-badge.kind-walkin {
  background: #e07a5f;
  color: #1a0f0c;
}
.option-full.kind-walkin {
  border-color: color-mix(in srgb, #e07a5f 50%, var(--line));
}
.kind-hint.kind-walkin {
  border-color: color-mix(in srgb, #e07a5f 40%, var(--line));
  background: color-mix(in srgb, #e07a5f 12%, var(--bg));
}

/* After dark — plum */
.kind-badge.kind-night {
  background: #7b2cbf;
  color: #f8f0ff;
}
.option-full.kind-night {
  border-color: color-mix(in srgb, #7b2cbf 45%, var(--line));
}
.kind-hint.kind-night {
  border-color: color-mix(in srgb, #7b2cbf 35%, var(--line));
  background: color-mix(in srgb, #7b2cbf 12%, var(--bg));
}

/* Getting there — slate */
.kind-badge.kind-transit {
  background: #5c6770;
  color: #f0f2f4;
}
.option-full.kind-transit {
  border-color: color-mix(in srgb, #5c6770 45%, var(--line));
}
.kind-hint.kind-transit {
  border-color: color-mix(in srgb, #5c6770 35%, var(--line));
  background: color-mix(in srgb, #5c6770 10%, var(--bg));
}

.tag-excursion {
  border-color: color-mix(in srgb, var(--gold) 50%, var(--line));
  color: var(--gold);
  font-weight: 700;
}

.day-stage-loading {
  padding: 2rem;
  text-align: center;
  color: var(--text-muted);
}

.day-page {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  scroll-margin-top: calc(var(--header-h) + 0.5rem);
}

.day-page.is-current {
  border-color: color-mix(in srgb, var(--city-accent) 40%, var(--line));
}

.day-page-hero {
  position: relative;
  min-height: 200px;
  max-height: 260px;
  display: flex;
  align-items: flex-end;
}

.day-page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.day-page-hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 10%, rgba(0, 0, 0, 0.82));
}

.day-page-hero-text {
  position: relative;
  z-index: 1;
  padding: 1rem 1.15rem 1.1rem;
  color: #fff;
  width: 100%;
}

.city-chip {
  display: inline-block;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  padding: 0.15rem 0.55rem;
  font-size: 0.72rem;
  margin-bottom: 0.3rem;
}

.day-kicker {
  margin: 0;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}

.day-page-hero-text h3 {
  margin: 0.2rem 0;
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
}

.day-sub {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.92rem;
}

.day-page-body {
  padding: 0.9rem 1.1rem 1.15rem;
}

.day-story {
  margin: 0 0 0.75rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 85ch;
}

.slot-jump {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  margin-bottom: 0.9rem;
  position: sticky;
  top: var(--header-h);
  z-index: 4;
  padding: 0.35rem 0;
  background: color-mix(in srgb, var(--bg-card) 94%, transparent);
  backdrop-filter: blur(8px);
}

.slot-jump a {
  text-decoration: none;
  border: 1px solid var(--line);
  background: var(--bg-elevated);
  color: var(--text-muted);
  border-radius: 999px;
  padding: 0.28rem 0.6rem;
  font-size: 0.75rem;
  font-weight: 600;
}

.slot-jump a:hover {
  color: var(--text);
  border-color: var(--city-accent);
}

.slot-block {
  margin-bottom: 1.15rem;
  scroll-margin-top: calc(var(--header-h) + 2.5rem);
}

.slot-block-head {
  margin-bottom: 0.55rem;
  padding-bottom: 0.35rem;
  border-bottom: 2px solid color-mix(in srgb, var(--city-accent) 40%, var(--line));
}

.slot-block.is-meal .slot-block-head {
  border-bottom-color: color-mix(in srgb, var(--gold) 65%, var(--line));
}

.slot-block-head h4 {
  margin: 0;
  font-size: 1.15rem;
}

.slot-tip {
  margin: 0.25rem 0 0;
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* Options: 2-col on wide screens to cut vertical length */
.options-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.option-full {
  display: grid;
  grid-template-columns: 1fr;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

@media (min-width: 720px) {
  .option-full {
    grid-template-columns: 180px 1fr;
  }
}

.option-full-media {
  position: relative;
  min-height: 160px;
}

.option-full-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 160px;
}

.option-letter {
  position: absolute;
  top: 0.4rem;
  left: 0.4rem;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 0.15rem 0.4rem;
  border-radius: 999px;
}

.option-full-body {
  padding: 0.9rem 1rem 1.05rem;
  min-width: 0;
}

.option-full-body h5 {
  margin: 0 0 0.35rem;
  font-size: 1.12rem;
  line-height: 1.25;
}

.option-subtitle {
  margin: 0 0 0.65rem;
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--text);
  font-weight: 500;
  padding: 0.45rem 0.55rem;
  border-radius: 8px;
  background: color-mix(in srgb, var(--city-accent) 10%, var(--bg));
  border-left: 3px solid var(--city-accent);
}

.option-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  margin-bottom: 0.55rem;
}

.day-story-note {
  margin: -0.25rem 0 0.85rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  font-style: italic;
}

.tag {
  font-size: 0.65rem;
  border-radius: 999px;
  padding: 0.12rem 0.4rem;
  border: 1px solid var(--line);
  color: var(--text-muted);
}

.tag-time {
  color: var(--text);
  border-color: color-mix(in srgb, var(--city-accent) 40%, var(--line));
}

.prose p {
  margin: 0 0 0.55rem;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.prose p:last-child {
  margin-bottom: 0;
}

/* Full descriptions visible — more space is intentional */
.option-prose {
  max-height: none;
  overflow: visible;
  padding-right: 0;
}

.reviews-hint {
  margin: 0.4rem 0 0;
  font-size: 0.78rem;
  font-style: italic;
  color: var(--text-muted);
  border-left: 2px solid var(--sakura);
  padding-left: 0.5rem;
}

.option-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.5rem;
}

.star-btn {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  border-radius: 999px;
  padding: 0.4rem 0.7rem;
  cursor: pointer;
  font: inherit;
  font-size: 0.8rem;
}

.star-btn.is-on {
  border-color: var(--gold);
  color: var(--gold);
}

.day-page-footer {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  flex-wrap: wrap;
  padding-top: 0.65rem;
  border-top: 1px solid var(--line);
  margin-top: 0.35rem;
}

.day-page-footer .btn {
  text-decoration: none;
}

/* Videos / tips */
.video-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0.75rem;
}

.video-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.65rem;
}

.video-meta h3 {
  margin: 0.3rem 0 0;
  font-size: 0.92rem;
}

.video-embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: #000;
  margin-top: 0.4rem;
}

.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
}

.tip-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.7rem 0.8rem;
}

.tip-card h3 {
  margin: 0 0 0.25rem;
  font-size: 0.95rem;
}

.tip-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.review-bottom {
  margin: 0.85rem 0 0;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.section-links {
  padding-top: 0.5rem;
  padding-bottom: 1.25rem;
}

.resource-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  font-size: 0.9rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 1rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.88rem;
}

.site-footer p {
  margin: 0;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .animate-in,
  .hero-img {
    animation: none !important;
    transition: none !important;
  }
}

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

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

  .city-chapter {
    grid-template-columns: 1fr;
  }

  .city-chapter-media {
    min-height: 180px;
  }

  .city-chapter-media img {
    min-height: 180px;
  }

  .city-chapter-facts {
    grid-template-columns: 1fr;
  }

  .options-stack {
    grid-template-columns: 1fr;
  }

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

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

  .season-options {
    grid-template-columns: 1fr;
  }

  .option-full {
    grid-template-columns: 1fr;
  }

  .option-full-media img {
    min-height: 180px;
  }

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

  .nav > a {
    display: none;
  }

  .nav-sep {
    display: none;
  }

  .day-page-hero {
    min-height: 160px;
    max-height: 200px;
  }
}
