:root {
  --paper: #f4ecd8;
  --paper-2: #efe5cd;
  --paper-3: #e1cfac;
  --card: #fbf6e9;
  --ink: #27201a;
  --ink-soft: #5b4f42;
  --ink-faint: #8a7c69;
  --cinnabar: #9e2b25;
  --cinnabar-deep: #661e19;
  --gold: #9a7b3f;
  --jade: #315f55;
  --moss: #4e6138;
  --line: #d8c9a8;
  --line-dark: rgba(75, 48, 26, 0.34);
  --night: #211812;
  --shadow: 0 22px 54px rgba(60, 42, 20, 0.18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background-color: var(--paper);
  background-image:
    radial-gradient(circle at 18% 12%, rgba(255,255,255,.36), transparent 36%),
    radial-gradient(circle at 88% 74%, rgba(158,43,37,.07), transparent 36%),
    linear-gradient(180deg, rgba(251,246,233,.72), rgba(225,207,172,.48)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.92' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='.045'/%3E%3C/svg%3E");
  font-family: "Noto Serif SC", "Songti SC", "STSong", "SimSun", serif;
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
}
body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(92, 62, 34, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(92, 62, 34, .035) 1px, transparent 1px),
    radial-gradient(circle at center, transparent 58%, rgba(60, 42, 20, .08));
  background-size: 42px 42px, 42px 42px, 100% 100%;
}
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; }
::selection { background: rgba(158, 43, 37, .18); }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px clamp(18px, 4vw, 58px);
  color: #fbf3e6;
  border-bottom: 1px solid rgba(216, 201, 168, .2);
  background: linear-gradient(180deg, rgba(32, 22, 16, .88), rgba(32, 22, 16, .18));
  backdrop-filter: blur(10px);
}
.brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Ma Shan Zheng", "Noto Serif SC", serif;
  font-size: 26px;
  letter-spacing: .14em;
}
.brand::before {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--cinnabar);
  background: rgba(251, 246, 233, .88);
  border: 2px solid var(--cinnabar);
  border-radius: 4px;
  box-shadow: inset 0 0 0 1px rgba(158,43,37,.24);
  content: "潮";
  font-size: 18px;
  letter-spacing: 0;
  transform: rotate(-4deg);
}
.nav-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px 18px; font-size: 14px; font-weight: 700; }
.nav-links a { padding: 5px 0; border-bottom: 1px solid transparent; color: rgba(251,246,233,.86); }
.nav-links a:hover { color: #fff; border-color: var(--gold); }

.hero {
  position: relative;
  display: grid;
  min-height: 92vh;
  overflow: hidden;
  color: #fbf3e6;
  background: var(--night);
}
.hero-bg,
.hero-overlay { position: absolute; inset: 0; }
.hero-bg {
  background:
    linear-gradient(90deg, rgba(24, 14, 9, .96), rgba(45, 25, 16, .68) 48%, rgba(24, 14, 9, .88)),
    url("assets/xiaogongyuan.jpg") center / cover;
  filter: sepia(.18) saturate(.72) contrast(1.08);
  transform: scale(1.03);
}
.hero-overlay {
  background-image:
    linear-gradient(180deg, transparent 58%, rgba(24, 14, 9, .97)),
    repeating-linear-gradient(90deg, rgba(216,201,168,.08) 0 1px, transparent 1px 96px),
    repeating-linear-gradient(0deg, rgba(216,201,168,.045) 0 1px, transparent 1px 96px);
}
.hero::before {
  position: absolute;
  inset: 24px;
  z-index: 1;
  pointer-events: none;
  content: "";
  border: 1px solid rgba(216, 201, 168, .36);
  box-shadow: inset 0 0 0 6px rgba(158, 43, 37, .12);
}
.hero::after {
  position: absolute;
  right: clamp(30px, 7vw, 96px);
  top: 108px;
  z-index: 1;
  width: 90px;
  height: 90px;
  display: grid;
  place-items: center;
  color: rgba(251,246,233,.78);
  border: 3px solid rgba(158,43,37,.84);
  border-radius: 8px;
  box-shadow: inset 0 0 0 1px rgba(158,43,37,.25);
  content: "潮汕\A文化";
  white-space: pre;
  font-family: "Ma Shan Zheng", serif;
  font-size: 22px;
  line-height: 1.05;
  transform: rotate(5deg);
}
.hero-content {
  position: relative;
  z-index: 2;
  align-self: center;
  width: min(1080px, calc(100% - 44px));
  margin: 96px auto 122px;
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--cinnabar);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .24em;
}
.hero .eyebrow { color: #d6b46f; text-shadow: 0 2px 12px rgba(0,0,0,.45); }
.hero h1 {
  width: auto;
  max-width: 780px;
  margin: 0;
  color: #f7ead0;
  font-family: "Ma Shan Zheng", "Noto Serif SC", serif;
  font-size: clamp(72px, 11vw, 146px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: .06em;
  text-shadow: 0 18px 48px rgba(0,0,0,.42);
}
.hero h1::after {
  display: block;
  width: 150px;
  height: 12px;
  margin-top: 18px;
  background: linear-gradient(90deg, var(--cinnabar), var(--gold), transparent);
  content: "";
}
.hero-copy {
  max-width: 760px;
  margin: 24px 0 0;
  color: rgba(251,246,233,.86);
  font-size: clamp(20px, 2.3vw, 28px);
  font-weight: 600;
  line-height: 1.48;
  text-shadow: 0 2px 18px rgba(0,0,0,.46);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  color: var(--ink);
  background: var(--card);
  border: 1px solid var(--line-dark);
  border-radius: 2px;
  box-shadow: inset 0 0 0 4px rgba(154,123,63,.08);
  font-weight: 800;
  letter-spacing: .04em;
}
.button:hover { transform: translateY(-1px); box-shadow: var(--shadow); }
.button.primary { color: #fbf3e6; background: var(--cinnabar); border-color: rgba(251,246,233,.46); }
.button.secondary { color: #fbf3e6; background: rgba(251,246,233,.08); border-color: rgba(251,246,233,.46); }
.button.ink { margin-top: 18px; color: #fbf3e6; background: var(--cinnabar); border-color: var(--cinnabar-deep); }
.hero-strip {
  position: absolute;
  right: clamp(24px, 4vw, 58px);
  bottom: 28px;
  left: clamp(24px, 4vw, 58px);
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  background: rgba(24, 14, 9, .42);
  border: 1px solid rgba(216,201,168,.32);
}
.hero-strip span {
  min-height: 64px;
  display: grid;
  place-items: center;
  padding: 12px 10px;
  border-right: 1px solid rgba(216,201,168,.22);
  color: rgba(251,246,233,.9);
  font-size: 18px;
  font-weight: 700;
  text-align: center;
}
.hero-strip span:last-child { border-right: 0; }

.section { position: relative; padding: clamp(70px, 9vw, 126px) clamp(18px, 5vw, 72px); }
.section::before {
  position: absolute;
  inset: 24px;
  pointer-events: none;
  content: "";
  border: 1px solid rgba(154,123,63,.16);
}
.section-heading { position: relative; z-index: 1; max-width: 980px; margin: 0 auto 44px; }
.section-heading.compact { display: grid; grid-template-columns: .38fr 1fr; gap: 30px; align-items: start; max-width: 1180px; }
h2, h3, p { overflow-wrap: anywhere; }
h2 { margin: 0; font-size: clamp(32px, 5vw, 58px); line-height: 1.18; font-weight: 900; }
h3 { margin: 0; font-size: 25px; line-height: 1.28; font-weight: 900; }
p { color: var(--ink-soft); font-size: 17px; line-height: 1.9; }

.dialect-portal-section {
  color: #fbf3e6;
  background:
    linear-gradient(135deg, rgba(33,24,18,.96), rgba(76,32,24,.92)),
    var(--night);
}
.dialect-portal-section::before { border-color: rgba(216,201,168,.22); }
.dialect-portal {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}
.dialect-portal h2 { color: #fbf3e6; }
.dialect-portal-copy p:not(.eyebrow) { color: rgba(251,246,233,.76); font-size: 19px; }
.dialect-phrase-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.dialect-phrase-grid article {
  position: relative;
  min-height: 178px;
  padding: 26px;
  color: #fbf3e6;
  background:
    linear-gradient(180deg, rgba(251,246,233,.07), rgba(251,246,233,.02)),
    #2a1d15;
  border: 1px solid rgba(216,201,168,.28);
  box-shadow: inset 0 0 0 5px rgba(158,43,37,.12);
}
.dialect-phrase-grid article::after {
  position: absolute;
  right: 16px;
  bottom: 6px;
  color: rgba(158,43,37,.16);
  content: "潮";
  font-family: "Ma Shan Zheng", serif;
  font-size: 72px;
}
.dialect-phrase-grid strong { display: block; font-family: "Ma Shan Zheng", "Noto Serif SC", serif; font-size: clamp(38px, 5vw, 62px); font-weight: 400; line-height: 1; }
.dialect-phrase-grid span { display: block; margin-top: 18px; color: rgba(251,246,233,.74); font-weight: 700; line-height: 1.65; }

.intro-section,
.detail-section,
.editorial-section { background: rgba(251,246,233,.74); }
.intro-grid,
.editorial-grid,
.calendar-list,
.story-route-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1px;
  max-width: 1180px;
  margin: 0 auto;
  background: var(--line);
  border: 1px solid var(--line);
}
.intro-grid { grid-template-columns: repeat(4, 1fr); }
.intro-grid article,
.editorial-card,
.calendar-list article,
.story-route-list article {
  min-height: 260px;
  padding: 28px;
  background: rgba(251,246,233,.86);
}
.marker { display: inline-block; margin-bottom: 56px; color: var(--cinnabar); font-weight: 900; }

.chapters-section {
  background:
    linear-gradient(180deg, rgba(251,246,233,.62), rgba(225,207,172,.52)),
    var(--paper-2);
}
.chapter-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: 1260px;
  margin: 0 auto;
}
.chapter-card,
.chapter-card.large {
  position: relative;
  grid-column: span 1;
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  min-height: 360px;
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--line-dark);
  border-radius: 2px;
  box-shadow: var(--shadow);
}
.chapter-card::before {
  position: absolute;
  inset: 10px;
  z-index: 2;
  pointer-events: none;
  content: "";
  border: 1px solid rgba(154,123,63,.24);
}
.chapter-card img,
.chapter-card.large img {
  height: 100%;
  min-height: 360px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-right: 1px solid var(--line);
  filter: sepia(.18) saturate(.76) contrast(1.04);
}
.chapter-body { position: relative; z-index: 1; display: flex; flex-direction: column; justify-content: center; min-width: 0; padding: 32px 30px 30px; }
.chapter-ornament { width: 82px; height: 42px; margin-bottom: 16px; opacity: .92; background-repeat: no-repeat; background-position: left center; background-size: contain; }
.chapter-label { margin: 0 0 10px; color: var(--cinnabar); font-family: "Ma Shan Zheng", "Noto Serif SC", serif; font-size: clamp(52px, 5vw, 76px); font-weight: 400; line-height: .92; }
.chapter-body h3 { font-size: clamp(22px, 2.2vw, 32px); line-height: 1.24; }
.chapter-body p { margin-top: 16px; font-size: 16px; line-height: 1.76; }
.chapter-body ul { margin: 16px 0 0; padding-left: 18px; color: var(--ink-soft); font-size: 15px; line-height: 1.72; }
.pattern-card { background: #f2e6cf; }
.house-graphic { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; height: 100%; min-height: 360px; padding: 36px; background: linear-gradient(135deg, rgba(158,43,37,.14), transparent 42%), linear-gradient(45deg, rgba(49,95,85,.15), transparent 50%), #e2c79f; border-right: 1px solid var(--line); }
.house-graphic span { border: 2px solid rgba(53,39,29,.54); background: rgba(251,246,233,.42); }
.dialect-graphic { display: flex; flex-direction: column; justify-content: center; min-height: 360px; padding: 32px; color: #fbf3e6; background: linear-gradient(135deg, rgba(78,97,56,.96), rgba(49,95,85,.94)); }
.dialect-graphic strong { font-family: "Ma Shan Zheng", serif; font-size: 60px; font-weight: 400; line-height: 1; }
.dialect-graphic span { margin-top: 18px; font-size: 18px; font-weight: 700; }
.chapter-card:hover { transform: translateY(-3px); box-shadow: 0 26px 58px rgba(56,34,16,.22); }

.chapter-tea .chapter-ornament { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='60' viewBox='0 0 120 60'%3E%3Cg fill='none' stroke='%239e2b25' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 34h52c0 12-10 20-26 20S18 46 18 34Z'/%3E%3Cpath d='M70 36c12-2 20 2 20 9 0 6-7 10-17 8'/%3E%3Cpath d='M34 24c-4-6-1-12 5-16M50 24c-4-7 0-13 7-18'/%3E%3Cpath d='M12 54h88'/%3E%3C/g%3E%3C/svg%3E"); }
.chapter-porridge .chapter-ornament { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='60' viewBox='0 0 120 60'%3E%3Cg fill='none' stroke='%23315f55' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 32h62c0 14-12 22-31 22S18 46 18 32Z'/%3E%3Cpath d='M28 32c5-8 14-12 22-12s17 4 22 12'/%3E%3Cpath d='M84 15l20 34'/%3E%3Cpath d='M92 14l20 34'/%3E%3Cpath d='M35 20c-2-5 0-9 4-12M52 19c-2-5 0-9 5-12'/%3E%3C/g%3E%3C/svg%3E"); }
.chapter-house .chapter-ornament { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='60' viewBox='0 0 120 60'%3E%3Cg fill='none' stroke='%239a7b3f' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 30 60 8l48 22'/%3E%3Cpath d='M24 29v24h72V29'/%3E%3Cpath d='M48 53V35h24v18'/%3E%3Cpath d='M34 38h8M78 38h8'/%3E%3C/g%3E%3C/svg%3E"); }
.chapter-custom .chapter-ornament { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='60' viewBox='0 0 120 60'%3E%3Cg fill='none' stroke='%239e2b25' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M24 12c16 2 27 10 34 24M96 12c-16 2-27 10-34 24'/%3E%3Cpath d='M38 42c14-12 30-12 44 0'/%3E%3Cpath d='M60 8v44'/%3E%3Cpath d='M18 52h84'/%3E%3C/g%3E%3C/svg%3E"); }
.chapter-qiaopi .chapter-ornament { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='60' viewBox='0 0 120 60'%3E%3Cg fill='none' stroke='%234e6138' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 14h74v40H18z'/%3E%3Cpath d='m18 16 37 24 37-24'/%3E%3Cpath d='M76 46h30'/%3E%3Cpath d='M84 36h22'/%3E%3C/g%3E%3C/svg%3E"); }
.chapter-craft .chapter-ornament { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='60' viewBox='0 0 120 60'%3E%3Cg fill='none' stroke='%239a7b3f' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M60 8c8 12 18 18 32 18-10 8-15 17-14 28-9-8-20-11-36-6 7-12 7-24 18-40Z'/%3E%3Cpath d='M24 46c15-4 26-13 34-27'/%3E%3Cpath d='M28 18c8 8 16 13 27 15'/%3E%3Cpath d='M18 52h86'/%3E%3C/g%3E%3C/svg%3E"); }

.detail-row { position: relative; z-index: 1; display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(24px, 5vw, 72px); max-width: 1160px; margin: 0 auto; padding: 42px 0; border-top: 1px solid var(--line); }
.detail-row:last-child { border-bottom: 1px solid var(--line); }
.detail-row p:last-child { margin-top: 0; font-size: 19px; }

.places-section,
.stories-section,
.calendar-section,
.sources-section { background: rgba(225,207,172,.7); }
.places-grid,
.stories-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; max-width: 1160px; margin: 0 auto; }
.place-card,
.story-card,
.route-card {
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--line-dark);
  border-radius: 2px;
  box-shadow: var(--shadow);
}
.place-card { display: grid; grid-template-columns: .9fr 1.1fr; min-height: 320px; }
.place-card img { height: 100%; min-height: 320px; object-fit: cover; filter: sepia(.14) saturate(.78) contrast(1.05); }
.place-card div { display: flex; flex-direction: column; justify-content: center; padding: 28px; }

.feature-section,
.story-route { color: #fbf3e6; background: linear-gradient(135deg, #211812, #3a1d17); }
.feature-section h2,
.story-route h2,
.story-route h3 { color: #fbf3e6; }
.feature-section::before,
.story-route::before { border-color: rgba(216,201,168,.22); }
.feature-list { position: relative; z-index: 1; max-width: 1120px; margin: 0 auto; border-top: 1px solid rgba(216,201,168,.24); }
.feature-list a { display: grid; grid-template-columns: 70px 1fr .8fr; gap: 24px; align-items: center; min-height: 96px; border-bottom: 1px solid rgba(216,201,168,.24); }
.feature-list span,
.story-route-list span { color: #d6b46f; font-weight: 900; }
.feature-list strong { font-size: 22px; font-weight: 900; }
.feature-list em { color: rgba(251,246,233,.68); font-style: normal; line-height: 1.6; }

.story-card img { height: 340px; object-fit: cover; filter: sepia(.12) saturate(.78) contrast(1.04); }
.story-card-body { padding: 28px; }
.story-meta { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 18px; }
.story-meta span,
.editorial-card span,
.editorial-card em,
.calendar-list span { color: var(--cinnabar); font-size: 13px; font-style: normal; font-weight: 900; }
.text-link { display: inline-flex; width: fit-content; margin-top: 14px; color: var(--jade); font-weight: 900; border-bottom: 1px solid currentColor; }

.editorial-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.editorial-card { min-height: 250px; }
.editorial-card div { display: flex; justify-content: space-between; gap: 16px; margin-bottom: 36px; }
.calendar-list { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.calendar-list h3 { margin-top: 34px; }
.route-section { background: linear-gradient(90deg, rgba(244,236,216,.96), rgba(244,236,216,.76)), url("assets/teochew-opera.jpg") center / cover; }
.route-card { position: relative; z-index: 1; max-width: 960px; padding: clamp(28px, 5vw, 56px); }
.route-line { display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; margin-top: 30px; }
.route-line span { display: flex; align-items: center; justify-content: center; min-height: 58px; padding: 10px; color: #fbf3e6; background: var(--jade); border-radius: 2px; font-weight: 900; text-align: center; }
.sources-list { position: relative; z-index: 1; max-width: 960px; margin: 0 auto; padding-left: 22px; color: var(--ink-soft); font-size: 16px; line-height: 1.9; }
.site-footer { display: flex; justify-content: space-between; gap: 24px; padding: 30px clamp(18px, 5vw, 72px); color: #fbf3e6; background: #211812; border-top: 1px solid rgba(216,201,168,.24); }
.site-footer strong { font-family: "Ma Shan Zheng", serif; font-size: 24px; font-weight: 400; }
.site-footer span { color: rgba(251,246,233,.68); }

.story-page { background: var(--paper); }
.story-header { background: rgba(33,24,18,.94); backdrop-filter: blur(10px); }
.story-root { padding-top: 78px; }
.story-hero { position: relative; min-height: 78vh; overflow: hidden; color: #fbf3e6; background: var(--night); }
.story-hero img { position: absolute; inset: 0; height: 100%; object-fit: cover; opacity: .58; filter: sepia(.16) saturate(.76); }
.story-hero::after { position: absolute; inset: 0; content: ""; background: linear-gradient(90deg, rgba(24,14,9,.92), rgba(24,14,9,.36)), linear-gradient(180deg, transparent 45%, rgba(24,14,9,.92)); }
.story-hero-content { position: relative; z-index: 1; display: flex; flex-direction: column; justify-content: center; width: min(980px, calc(100% - 36px)); min-height: 78vh; margin: 0 auto; padding: 64px 0; }
.story-hero h1 { max-width: 920px; margin: 0; font-size: clamp(44px, 7vw, 92px); line-height: 1.08; }
.story-hero p { max-width: 760px; color: rgba(251,246,233,.84); font-size: clamp(19px, 2.4vw, 28px); font-weight: 700; }
.story-intro,
.story-tips { display: grid; grid-template-columns: .55fr 1fr; gap: clamp(24px, 5vw, 72px); max-width: 1100px; margin: 0 auto; padding: clamp(64px, 8vw, 110px) clamp(18px, 5vw, 72px); }
.story-intro > p:last-child { margin: 0; color: var(--ink); font-size: clamp(24px, 3.6vw, 40px); font-weight: 900; line-height: 1.36; }
.story-blocks { background: rgba(239,229,205,.82); }
.story-block { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(24px, 5vw, 64px); align-items: center; max-width: 1180px; margin: 0 auto; padding: clamp(44px, 7vw, 82px) clamp(18px, 5vw, 72px); border-top: 1px solid var(--line); }
.story-block:nth-child(even) img { order: 2; }
.story-block img { height: 420px; object-fit: cover; border-radius: 2px; box-shadow: var(--shadow); filter: sepia(.12) saturate(.78); }
.story-route { position: relative; padding: clamp(64px, 9vw, 120px) clamp(18px, 5vw, 72px); }
.story-route-list { grid-template-columns: repeat(5, minmax(0, 1fr)); background: rgba(216,201,168,.22); border-color: rgba(216,201,168,.22); }
.story-route-list article { background: rgba(33,24,18,.96); }
.story-tips { background: rgba(251,246,233,.76); }
.story-tips ul { margin: 0; padding-left: 22px; color: var(--ink-soft); font-size: 18px; line-height: 1.9; }
.story-empty { max-width: 840px; min-height: 70vh; margin: 0 auto; padding: 160px 24px 80px; }

@media (max-width: 920px) {
  .site-header { align-items: flex-start; }
  .nav-links { gap: 6px 12px; }
  .hero-strip,
  .dialect-portal,
  .intro-grid,
  .section-heading.compact,
  .detail-row,
  .places-grid,
  .place-card,
  .feature-list a,
  .stories-grid,
  .story-intro,
  .story-block,
  .story-route-list,
  .story-tips,
  .editorial-grid,
  .calendar-list,
  .route-line,
  .site-footer { grid-template-columns: 1fr; }
  .hero-strip { position: relative; right: auto; bottom: auto; left: auto; margin: 0 22px 24px; grid-template-columns: repeat(2, 1fr); }
  .hero-content { margin-bottom: 38px; }
  .feature-list a { gap: 8px; padding: 20px 0; }
  .story-block:nth-child(even) img { order: 0; }
  .story-block img,
  .story-card img { height: 280px; }
}
@media (max-width: 760px) {
  .chapter-grid { grid-template-columns: 1fr; }
  .chapter-card,
  .chapter-card.large { grid-template-columns: 1fr; }
  .chapter-card img,
  .chapter-card.large img,
  .house-graphic,
  .dialect-graphic { height: 240px; min-height: 240px; border-right: 0; border-bottom: 1px solid var(--line); }
  .chapter-body { padding: 24px; }
}
@media (max-width: 560px) {
  body,
  .hero {
    overflow-x: hidden;
  }
  .site-header { position: absolute; }
  .nav-links {
    display: flex;
    width: 100%;
    justify-content: flex-start;
    gap: 8px 14px;
    font-size: 12px;
  }
  .nav-links a {
    padding: 2px 0;
  }
  .brand { font-size: 22px; }
  .hero { min-height: 100vh; }
  .hero::before { inset: 14px; }
  .hero::after { right: 26px; top: 92px; width: 66px; height: 66px; font-size: 16px; }
  .hero-content { width: calc(100% - 32px); margin-top: 118px; margin-bottom: 28px; }
  .hero h1 {
    max-width: 100%;
    font-size: clamp(52px, 14vw, 68px);
    letter-spacing: .02em;
  }
  .hero h1::after { width: 126px; height: 9px; margin-top: 12px; }
  .hero .eyebrow {
    font-size: 12px;
    letter-spacing: .12em;
  }
  .hero-copy {
    width: min(100%, 340px);
    max-width: calc(100vw - 48px);
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.62;
    overflow-wrap: anywhere;
    word-break: break-all;
  }
  .hero-actions { flex-direction: column; }
  .button { width: 100%; min-height: 48px; }
  .hero-strip {
    margin: 0 16px 18px;
  }
  .hero-strip span {
    min-height: 54px;
    font-size: 16px;
  }
  .dialect-phrase-grid { grid-template-columns: 1fr; }
  .section::before { inset: 12px; }
  .section {
    padding-top: 58px;
    padding-bottom: 58px;
  }
  h2 {
    font-size: clamp(28px, 8vw, 38px);
  }
  p {
    font-size: 16px;
    line-height: 1.78;
  }
}
