/* ============================================
   부산 페스티벌 가이드 — 공통 스타일시트
   에디토리얼 매거진 스타일
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;500;700&family=Noto+Serif+KR:wght@400;600;700;900&family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,600;0,9..144,900;1,9..144,400&display=swap');

:root {
  --paper: #FAF7F2;
  --paper-dim: #F0EBE3;
  --ink: #1A1A1A;
  --ink-soft: #4A4A4A;
  --ink-faint: #8A8A8A;
  --rule: #DDD5C7;
  --navy: #1D3557;
  --terracotta: #C44536;
  --sky: #A8DADC;
  --sand: #E8E0D0;
  --accent: #C44536;

  --serif: 'Noto Serif KR', 'Fraunces', Georgia, serif;
  --sans: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, sans-serif;
  --display: 'Fraunces', 'Noto Serif KR', Georgia, serif;

  --max-width: 1280px;
  --gutter: clamp(1.5rem, 4vw, 3.5rem);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5 {
  font-family: var(--serif);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.display-xl {
  font-family: var(--serif);
  font-weight: 900;
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.display-l {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(2.25rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
}

.display-m {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.eyebrow {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
}

.lead {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.125rem, 1.6vw, 1.375rem);
  line-height: 1.55;
  color: var(--ink-soft);
}

.italic-display {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
}

/* ============================================
   LAYOUT
   ============================================ */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.container-narrow {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

section { padding: clamp(4rem, 8vw, 7rem) 0; }
section.tight { padding: clamp(2.5rem, 5vw, 4rem) 0; }

.rule {
  height: 1px;
  background: var(--rule);
  border: 0;
  margin: 0;
}

.rule-thick {
  height: 2px;
  background: var(--ink);
  border: 0;
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
  backdrop-filter: blur(8px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem var(--gutter);
  max-width: var(--max-width);
  margin: 0 auto;
}

.logo {
  font-family: var(--serif);
  font-weight: 900;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1;
}

.logo-mark {
  color: var(--terracotta);
}

.nav {
  display: flex;
  gap: 2.25rem;
  align-items: center;
}

.nav a {
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  padding: 0.25rem 0;
  transition: color 0.2s ease;
}

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

.nav a.active {
  color: var(--terracotta);
}

.nav a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--terracotta);
}

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0.5rem;
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink);
}

@media (max-width: 760px) {
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--paper);
    border-bottom: 1px solid var(--rule);
    padding: 1.5rem var(--gutter);
    gap: 1.25rem;
    align-items: flex-start;
  }
  .nav.is-open { display: flex; }
  .menu-toggle { display: block; }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(4rem, 7vw, 6rem);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: end;
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 7fr 5fr;
    gap: 4rem;
  }
}

.hero-headline {
  font-family: var(--serif);
  font-weight: 900;
  font-size: clamp(2.75rem, 8vw, 6.5rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin-bottom: 1.5rem;
}

.hero-headline em {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  color: var(--terracotta);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--rule);
}

.hero-meta-item .label {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-faint);
  display: block;
  margin-bottom: 0.4rem;
}

.hero-meta-item .value {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--ink);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 0.95rem 1.6rem;
  border-radius: 999px;
  border: 1.5px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn:hover {
  background: var(--terracotta);
  border-color: var(--terracotta);
  color: var(--paper);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
}

.btn-ghost:hover {
  background: var(--ink);
  color: var(--paper);
}

.btn::after {
  content: '→';
  font-size: 1rem;
  transition: transform 0.2s ease;
}

.btn:hover::after { transform: translateX(3px); }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

/* ============================================
   SEASON CARDS
   ============================================ */
.seasons {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--rule);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

@media (min-width: 700px) { .seasons { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .seasons { grid-template-columns: repeat(4, 1fr); } }

.season {
  background: var(--paper);
  padding: 2.5rem var(--gutter);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-height: 320px;
  position: relative;
  transition: background 0.3s ease;
}

.season:hover { background: var(--paper-dim); }

.season-num {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: 2rem;
  color: var(--terracotta);
  line-height: 1;
}

.season h3 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.75rem;
  letter-spacing: -0.02em;
  margin-bottom: 0.25rem;
}

.season-months {
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-faint);
  font-weight: 600;
}

.season ul {
  list-style: none;
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid var(--rule);
}

.season li {
  font-size: 0.95rem;
  padding: 0.35rem 0;
  color: var(--ink-soft);
}

.season li::before {
  content: '— ';
  color: var(--terracotta);
  font-weight: 700;
}

/* ============================================
   FEATURE / EVENT CARDS
   ============================================ */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 900px) {
  .feature-grid { grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
}

.feature {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-num {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: 3rem;
  color: var(--terracotta);
  line-height: 1;
}

.feature-tag {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.feature h3 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
}

.feature p {
  color: var(--ink-soft);
  font-size: 0.98rem;
}

.feature-meta {
  font-family: var(--sans);
  font-size: 0.85rem;
  color: var(--ink-faint);
  margin-top: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--rule);
}

.feature-meta strong {
  color: var(--ink);
  font-weight: 600;
  display: inline-block;
  min-width: 4rem;
}

/* ============================================
   EVENT LIST (calendar style)
   ============================================ */
.event-list {
  list-style: none;
  border-top: 1px solid var(--ink);
}

.event-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 1.5rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--rule);
  align-items: start;
}

@media (min-width: 780px) {
  .event-row {
    grid-template-columns: 140px 1fr 200px;
    gap: 2.5rem;
    align-items: center;
  }
}

.event-date {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: 1.5rem;
  color: var(--terracotta);
  line-height: 1.1;
}

.event-date small {
  display: block;
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-faint);
  font-weight: 600;
  margin-top: 0.25rem;
}

.event-body h3 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 0.4rem;
  letter-spacing: -0.015em;
}

.event-body p {
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.55;
}

.event-place {
  font-family: var(--sans);
  font-size: 0.85rem;
  color: var(--ink-faint);
  text-align: left;
}

@media (min-width: 780px) {
  .event-place { text-align: right; }
}

.event-place strong {
  display: block;
  color: var(--ink);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

/* ============================================
   REGION BLOCKS
   ============================================ */
.region {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 3rem 0;
  border-bottom: 1px solid var(--rule);
}

@media (min-width: 900px) {
  .region { grid-template-columns: 1fr 2fr; gap: 4rem; }
}

.region:first-of-type { border-top: 1px solid var(--ink); }

.region-name {
  font-family: var(--serif);
  font-weight: 900;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  letter-spacing: -0.02em;
  line-height: 1;
}

.region-name em {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  color: var(--terracotta);
  display: block;
  font-size: 0.55em;
  margin-top: 0.5rem;
  letter-spacing: 0.02em;
}

.region-meta {
  margin-top: 1.25rem;
  font-family: var(--sans);
  font-size: 0.85rem;
  color: var(--ink-faint);
  line-height: 1.6;
}

.region-meta strong { color: var(--ink); font-weight: 600; }

.region-body h4 {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin: 1.5rem 0 0.75rem;
}

.region-body h4:first-child { margin-top: 0; }

.region-body p {
  font-size: 1rem;
  color: var(--ink-soft);
  line-height: 1.7;
}

.region-body ul {
  list-style: none;
  margin-top: 0.5rem;
}

.region-body li {
  padding: 0.4rem 0;
  font-size: 0.95rem;
  color: var(--ink);
  border-bottom: 1px dashed var(--rule);
}

.region-body li:last-child { border-bottom: 0; }

.region-body li strong {
  display: inline-block;
  min-width: 9rem;
  font-weight: 600;
  font-family: var(--serif);
}

/* ============================================
   FAQ
   ============================================ */
.faq {
  border-top: 1px solid var(--ink);
}

.faq-item {
  border-bottom: 1px solid var(--rule);
  padding: 1.75rem 0;
}

.faq-q {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.015em;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-q::-webkit-details-marker { display: none; }

.faq-q::after {
  content: '+';
  font-family: var(--display);
  font-weight: 400;
  font-size: 1.75rem;
  color: var(--terracotta);
  transition: transform 0.25s ease;
  flex-shrink: 0;
  line-height: 1;
}

.faq-item[open] .faq-q::after { transform: rotate(45deg); }

.faq-a {
  margin-top: 1rem;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.7;
  max-width: 56em;
}

/* ============================================
   NEWS / BLOG CARDS
   ============================================ */
.news-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--ink);
}

@media (min-width: 800px) {
  .news-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }
}

.news-card {
  padding: 2.25rem var(--gutter) 2.25rem 0;
  border-bottom: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: background 0.2s ease;
}

@media (min-width: 800px) {
  .news-card { padding-right: 2.5rem; }
  .news-card:nth-child(odd) { border-right: 1px solid var(--rule); }
  .news-card:nth-child(even) { padding-left: 2.5rem; padding-right: 0; }
}

.news-card:hover { background: var(--paper-dim); }

.news-card-meta {
  display: flex;
  gap: 1rem;
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-faint);
  font-weight: 600;
}

.news-card-meta .cat { color: var(--terracotta); }

.news-card h3 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.news-card p {
  color: var(--ink-soft);
  font-size: 0.96rem;
  line-height: 1.65;
}

.news-card .read-more {
  margin-top: auto;
  padding-top: 0.75rem;
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
  border-top: 1px solid var(--rule);
}

.news-card .read-more::after {
  content: ' →';
  color: var(--terracotta);
}

/* Featured article */
.featured-article {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--ink);
  margin-bottom: 3rem;
}

@media (min-width: 900px) {
  .featured-article { grid-template-columns: 5fr 7fr; gap: 4rem; }
}

.featured-article-img {
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--navy) 0%, var(--terracotta) 100%);
  position: relative;
  overflow: hidden;
}

.featured-article-img::after {
  content: 'BIFF';
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: 4rem;
  color: rgba(255,255,255,0.95);
  letter-spacing: -0.04em;
}

.featured-article-body .display-l {
  margin: 0.75rem 0 1.25rem;
}

.featured-article-body .lead {
  margin-bottom: 1.5rem;
}

/* ============================================
   ABOUT BLOCK
   ============================================ */
.about-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 3rem;
  background: var(--navy);
  color: var(--paper);
  border-radius: 4px;
}

@media (min-width: 800px) {
  .about-block {
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    padding: 4rem;
  }
}

.about-block h2 {
  color: var(--paper);
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  letter-spacing: -0.02em;
}

.about-block h2 em {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  color: var(--sky);
}

.about-block p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  margin-bottom: 1rem;
}

.about-block .stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.2);
}

.about-block .stat .num {
  font-family: var(--display);
  font-style: italic;
  font-weight: 600;
  font-size: 2.5rem;
  color: var(--sky);
  line-height: 1;
  display: block;
}

.about-block .stat .label {
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-top: 0.5rem;
  display: block;
}

/* ============================================
   NEWSLETTER
   ============================================ */
.newsletter {
  background: var(--sand);
  padding: clamp(3rem, 5vw, 4.5rem) var(--gutter);
  text-align: center;
  border-radius: 4px;
}

.newsletter h2 {
  margin-bottom: 0.75rem;
}

.newsletter p {
  max-width: 38em;
  margin: 0 auto 2rem;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
  max-width: 480px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}

.newsletter-form input {
  flex: 1 1 220px;
  font-family: var(--sans);
  font-size: 0.95rem;
  padding: 0.95rem 1.25rem;
  border: 1.5px solid var(--ink);
  background: var(--paper);
  border-radius: 999px;
  color: var(--ink);
  outline: none;
}

.newsletter-form input:focus { border-color: var(--terracotta); }

.newsletter-form button {
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.95rem 1.6rem;
  border-radius: 999px;
  border: 1.5px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  cursor: pointer;
  transition: all 0.2s ease;
}

.newsletter-form button:hover {
  background: var(--terracotta);
  border-color: var(--terracotta);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(3rem, 6vw, 5rem) 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

@media (min-width: 700px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
}

.footer-brand .logo {
  color: var(--paper);
  font-size: 1.5rem;
}

.footer-brand .logo-mark { color: var(--terracotta); }

.footer-brand p {
  margin-top: 1rem;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  max-width: 28em;
}

.footer-col h4 {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col li { margin-bottom: 0.6rem; }

.footer-col a {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  transition: color 0.2s ease;
}

.footer-col a:hover { color: var(--sky); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 2rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}

.footer-bottom .disclaimer {
  max-width: 36em;
}

/* ============================================
   PAGE HEADER (subpages)
   ============================================ */
.page-header {
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid var(--rule);
}

.page-header .eyebrow {
  margin-bottom: 1rem;
}

.page-header h1 {
  font-family: var(--serif);
  font-weight: 900;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1;
  letter-spacing: -0.03em;
}

.page-header h1 em {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  color: var(--terracotta);
}

.page-header .lead {
  max-width: 36em;
  margin-top: 1.5rem;
}

/* ============================================
   UTILS
   ============================================ */
.section-label {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--ink);
}

.section-label h2 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  letter-spacing: -0.02em;
}

.section-label .count {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: 1.1rem;
  color: var(--ink-faint);
}

.text-center { text-align: center; }
.mt-sm { margin-top: 1rem; }
.mt-md { margin-top: 2rem; }
.mt-lg { margin-top: 3rem; }

/* ============================================
   NEW: BREADCRUMB
   ============================================ */
.breadcrumb {
  background: var(--paper-dim);
  border-bottom: 1px solid var(--rule);
  padding: 0.85rem 0;
  font-family: var(--sans);
  font-size: 0.85rem;
  color: var(--ink-faint);
}

.breadcrumb a {
  color: var(--ink-soft);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}
.breadcrumb a:hover { border-bottom-color: var(--terracotta); color: var(--terracotta); }

.breadcrumb .sep {
  margin: 0 0.65rem;
  color: var(--ink-faint);
}

/* ============================================
   NEW: ANCHOR NAV (in-page jumps)
   ============================================ */
.anchor-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--rule);
}

.anchor-nav a {
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.55rem 1rem;
  border: 1px solid var(--rule);
  border-radius: 999px;
  color: var(--ink);
  transition: all 0.2s ease;
}

.anchor-nav a:hover {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

/* ============================================
   NEW: IN-CONTENT LINKS
   (links inside paragraphs/lists/FAQ)
   ============================================ */
.event-body p a,
.feature-meta a,
.region-body p a,
.region-body li a,
.faq-a a,
.news-card p a,
.feature p a,
.lead a,
.featured-article-body p a {
  color: var(--ink);
  border-bottom: 1px solid var(--terracotta);
  padding-bottom: 1px;
  transition: all 0.15s ease;
}

.event-body p a:hover,
.feature-meta a:hover,
.region-body p a:hover,
.region-body li a:hover,
.faq-a a:hover,
.news-card p a:hover,
.feature p a:hover,
.lead a:hover,
.featured-article-body p a:hover {
  color: var(--terracotta);
  border-bottom-width: 2px;
}

/* ============================================
   NEW: CROSSLINKS (bottom of page)
   ============================================ */
.crosslinks {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

@media (min-width: 800px) {
  .crosslinks { grid-template-columns: repeat(3, 1fr); }
}

.crosslink {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 2rem var(--gutter) 2rem 0;
  border-bottom: 1px solid var(--rule);
  color: var(--ink);
  transition: background 0.2s ease;
  border-bottom-width: 1px;
}

@media (min-width: 800px) {
  .crosslink {
    padding: 2.25rem;
    border-bottom: 0;
    border-right: 1px solid var(--rule);
  }
  .crosslink:last-child { border-right: 0; }
}

.crosslink:hover {
  background: var(--paper-dim);
}

.crosslink-num {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: 2rem;
  color: var(--terracotta);
  line-height: 1;
  flex-shrink: 0;
}

.crosslink-tag {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 0.4rem;
}

.crosslink h3 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.015em;
  margin-bottom: 0.5rem;
  transition: color 0.2s ease;
}

.crosslink:hover h3 { color: var(--terracotta); }

.crosslink p {
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.55;
}

/* ============================================
   NEW: WIDER FOOTER (5-column on desktop)
   ============================================ */
@media (min-width: 900px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  }
}

/* ============================================
   NEW: SEASON CARDS as links
   ============================================ */
a.season {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

a.season h3 { transition: color 0.25s ease; }
a.season:hover h3 { color: var(--terracotta); }
a.season:hover .season-num { transform: translateY(-2px); transition: transform 0.25s ease; }
