:root {
  --bg: #f6f0e7;
  --paper: #fbf7f1;
  --paper-2: #f1e7d8;
  --panel: rgba(255, 251, 245, 0.9);
  --ink: #1e1916;
  --ink-soft: #4f433a;
  --ink-muted: #75675d;
  --line: rgba(61, 41, 27, 0.14);

  --brand: #5f1f1f;
  --brand-2: #9b6b2f;
  --brand-3: #133d35;
  --accent: #c79b47;
  --accent-2: #7a9a88;
  --gold-wash: linear-gradient(135deg, #d7b067 0%, #b78631 45%, #efd59b 100%);

  --shadow-sm: 0 10px 28px rgba(35, 19, 9, 0.06);
  --shadow-md: 0 22px 60px rgba(29, 17, 10, 0.12);
  --shadow-lg: 0 34px 90px rgba(24, 16, 10, 0.16);

  --radius-sm: 12px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --radius-xl: 48px;

  --max: 1240px;
  --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", serif;
  --sans: Inter, "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Yu Gothic", "Noto Sans JP", sans-serif;
  --display: "Baskerville", "Times New Roman", "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", serif;
}

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

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

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(184, 129, 60, 0.08), transparent 38%),
    radial-gradient(circle at top right, rgba(44, 88, 76, 0.07), transparent 32%),
    linear-gradient(180deg, #faf4ec 0%, #f5ece0 38%, #f2e8dc 100%);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.72;
  letter-spacing: 0.01em;
  text-rendering: optimizeLegibility;
}

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

a {
  color: var(--brand);
  text-decoration: none;
  text-underline-offset: 0.18em;
  transition: color 0.22s ease, opacity 0.22s ease, border-color 0.22s ease;
}

a:hover,
a:focus-visible {
  color: #8b2f2f;
}

p,
li,
dd {
  color: var(--ink-soft);
  font-size: 1.02rem;
}

strong,
b {
  color: var(--ink);
  font-weight: 700;
}

em {
  font-style: italic;
}

::selection {
  background: rgba(199, 155, 71, 0.22);
  color: var(--ink);
}

.site-shell {
  min-height: 100vh;
  overflow: clip;
}

.wrap,
.container,
.page-wrap {
  width: min(calc(100% - 32px), var(--max));
  margin-inline: auto;
}

.narrow {
  width: min(calc(100% - 32px), 820px);
  margin-inline: auto;
}

header.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: saturate(145%) blur(18px);
  -webkit-backdrop-filter: saturate(145%) blur(18px);
  background: rgba(249, 244, 237, 0.78);
  border-bottom: 1px solid rgba(61, 41, 27, 0.08);
}

.site-header .inner {
  width: min(calc(100% - 24px), var(--max));
  margin: 0 auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.site-brand img,
.site-brand .brand-mark {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(65, 37, 12, 0.12);
}

.site-title {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.site-title .eyebrow {
  margin: 0 0 3px;
  font-size: 0.73rem;
  line-height: 1.1;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-2);
}

.site-title .name {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.25rem, 1.7vw, 1.62rem);
  line-height: 1.05;
  letter-spacing: 0.01em;
  color: var(--ink);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 0.94rem;
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  color: var(--ink);
  background: rgba(95, 31, 31, 0.07);
}

.hero {
  position: relative;
  isolation: isolate;
  padding: clamp(34px, 5vw, 58px) 0 clamp(46px, 8vw, 86px);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(18, 12, 8, 0.18), rgba(18, 12, 8, 0.32)),
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.18), transparent 32%);
  z-index: -1;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero .inner {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  display: grid;
  gap: 26px;
  align-items: end;
  min-height: min(82vh, 880px);
}

.hero-panel {
  width: min(760px, 100%);
  background: linear-gradient(180deg, rgba(22, 13, 9, 0.38), rgba(22, 13, 9, 0.58));
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-xl);
  padding: clamp(22px, 3vw, 38px);
  color: #fffaf3;
}

.kicker,
.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  font-size: 0.78rem;
  line-height: 1.1;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.kicker::before,
.section-kicker::before {
  content: "";
  width: 30px;
  height: 1px;
  background: currentColor;
  opacity: 0.8;
}

.hero h1,
.page-hero h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.35rem, 6vw, 5.45rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.hero .dek,
.page-hero .dek {
  margin: 18px 0 0;
  max-width: 62ch;
  font-size: clamp(1.03rem, 1.5vw, 1.2rem);
  line-height: 1.82;
  color: rgba(255, 248, 240, 0.92);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-meta span,
.tag,
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 248, 240, 0.1);
  color: #fff6e8;
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.88rem;
}

main {
  padding: clamp(28px, 4vw, 46px) 0 90px;
}

section,
.page-section {
  margin-top: clamp(36px, 6vw, 74px);
}

.section-head {
  display: grid;
  gap: 14px;
  margin-bottom: 24px;
}

.section-head h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 3.15rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.section-head p {
  margin: 0;
  max-width: 68ch;
  font-size: 1.03rem;
  color: var(--ink-muted);
}

.grid {
  display: grid;
  gap: 22px;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card,
.feature-card,
.story-card,
.place-card {
  position: relative;
  background: linear-gradient(180deg, rgba(255, 251, 246, 0.92), rgba(250, 244, 235, 0.96));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.card:hover,
.feature-card:hover,
.story-card:hover,
.place-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.card,
.feature-card,
.story-card,
.place-card,
.article-hero-card,
.quote-card,
.fact-card {
  transition: transform 0.26s ease, box-shadow 0.26s ease, border-color 0.26s ease;
}

.card-media,
.story-card img,
.feature-card img,
.place-card img {
  aspect-ratio: 1.24 / 1;
  width: 100%;
  object-fit: cover;
}

.card-body {
  padding: 18px 18px 20px;
}

.card h3,
.feature-card h3,
.story-card h3,
.place-card h3,
.related h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.22rem, 2vw, 1.62rem);
  line-height: 1.14;
  color: var(--ink);
  text-wrap: balance;
}

.card p,
.feature-card p,
.story-card p,
.place-card p {
  margin: 12px 0 0;
  color: var(--ink-soft);
}

.card .meta,
.story-card .meta,
.feature-card .meta {
  margin-top: 14px;
  color: var(--brand-2);
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-hero-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: clamp(22px, 3vw, 34px);
  box-shadow: var(--shadow-md);
}

.article-hero-card .lede {
  font-size: clamp(1.07rem, 1.35vw, 1.16rem);
  line-height: 1.9;
  color: var(--ink-soft);
}

.prose {
  max-width: 760px;
}

.prose > *:first-child {
  margin-top: 0;
}

.prose h2,
.prose h3,
.prose h4 {
  color: var(--ink);
  font-family: var(--display);
  line-height: 1.08;
  text-wrap: balance;
}

.prose h2 {
  margin: 56px 0 18px;
  font-size: clamp(1.84rem, 3vw, 3rem);
}

.prose h3 {
  margin: 34px 0 14px;
  font-size: clamp(1.34rem, 2.2vw, 2rem);
}

.prose h4 {
  margin: 28px 0 12px;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
}

.prose p,
.prose ul,
.prose ol,
.prose blockquote,
.prose figure {
  margin: 0 0 1.3em;
}

.prose ul,
.prose ol {
  padding-left: 1.25em;
}

.prose li {
  margin: 0.45em 0;
}

.prose blockquote {
  margin: 2em 0;
  padding: 18px 20px 18px 22px;
  border-left: 3px solid var(--accent);
  background: rgba(255, 248, 236, 0.82);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}

.prose blockquote p {
  color: var(--ink);
  font-size: 1.06rem;
}

.prose figure {
  margin: 34px 0;
}

.prose figure img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.prose figcaption {
  padding-top: 10px;
  color: var(--ink-muted);
  font-size: 0.92rem;
}

.dropcap:first-letter,
.prose .dropcap:first-letter {
  float: left;
  margin: 0.08em 0.1em 0 0;
  font-family: var(--display);
  font-size: 4.3em;
  line-height: 0.78;
  color: var(--brand);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: clamp(22px, 4vw, 48px);
  align-items: start;
}

.sticky-rail {
  position: sticky;
  top: 104px;
}

.info-panel,
.sidebar-card,
.quote-card,
.fact-card {
  background: linear-gradient(180deg, rgba(255, 251, 245, 0.96), rgba(246, 238, 226, 0.97));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 18px 18px 20px;
}

.info-panel h3,
.sidebar-card h3,
.quote-card h3,
.fact-card h3 {
  margin: 0 0 12px;
  font-family: var(--display);
  font-size: 1.26rem;
  line-height: 1.12;
}

.info-panel p:last-child,
.sidebar-card p:last-child,
.quote-card p:last-child,
.fact-card p:last-child {
  margin-bottom: 0;
}

.quote-card {
  position: relative;
  overflow: hidden;
}

.quote-card::before {
  content: "“";
  position: absolute;
  top: 10px;
  right: 18px;
  font-family: var(--display);
  font-size: 5rem;
  line-height: 1;
  color: rgba(95, 31, 31, 0.08);
}

.facts {
  display: grid;
  gap: 12px;
}

.fact {
  display: grid;
  gap: 4px;
  padding: 12px 0;
  border-top: 1px solid rgba(61, 41, 27, 0.1);
}

.fact:first-child {
  border-top: 0;
  padding-top: 0;
}

.fact dt {
  margin: 0;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--brand-2);
}

.fact dd {
  margin: 0;
  color: var(--ink);
  font-size: 1rem;
}

.callout {
  display: grid;
  gap: 14px;
  padding: clamp(22px, 3vw, 30px);
  background:
    linear-gradient(180deg, rgba(28, 22, 18, 0.86), rgba(28, 22, 18, 0.92)),
    var(--gold-wash);
  color: #fff9f0;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.callout h2,
.callout h3 {
  margin: 0;
  color: #fffaf2;
}

.callout p,
.callout li {
  color: rgba(255, 247, 235, 0.92);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.button,
.btn,
button,
input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  font: inherit;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}

.button:hover,
.btn:hover,
button:hover,
input[type="submit"]:hover {
  transform: translateY(-1px);
}

.button-primary,
.btn-primary {
  background: linear-gradient(135deg, #7d2626 0%, #561717 100%);
  color: #fff8f0;
  box-shadow: 0 12px 28px rgba(95, 31, 31, 0.22);
}

.button-primary:hover,
.btn-primary:hover {
  color: #fff;
  box-shadow: 0 18px 34px rgba(95, 31, 31, 0.26);
}

.button-secondary,
.btn-secondary {
  background: rgba(255, 250, 242, 0.84);
  color: var(--ink);
  border-color: rgba(61, 41, 27, 0.14);
}

.button-secondary:hover,
.btn-secondary:hover {
  background: #fff;
}

.image-frame,
.figure-frame {
  position: relative;
  padding: 10px;
  background: linear-gradient(180deg, rgba(255, 252, 246, 0.98), rgba(240, 230, 214, 0.98));
  border: 1px solid rgba(61, 41, 27, 0.12);
  border-radius: calc(var(--radius-lg) + 6px);
  box-shadow: var(--shadow-md);
}

.image-frame img,
.figure-frame img {
  width: 100%;
  border-radius: var(--radius-lg);
}

.mosaic {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 16px;
}

.mosaic .stack {
  display: grid;
  gap: 16px;
}

.table-wrap {
  width: 100%;
  overflow-x: auto;
  background: rgba(255, 251, 245, 0.76);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 680px;
}

th,
td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(61, 41, 27, 0.09);
  vertical-align: top;
}

th {
  background: rgba(95, 31, 31, 0.04);
  color: var(--ink);
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

tbody tr:hover {
  background: rgba(199, 155, 71, 0.05);
}

.place-list {
  display: grid;
  gap: 18px;
}

.place-item {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 18px;
  padding: 16px;
  border-radius: var(--radius-lg);
  background: rgba(255, 251, 245, 0.92);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.place-item img {
  width: 100%;
  height: 100%;
  max-height: 140px;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.place-item h3 {
  margin: 0 0 8px;
}

.place-meta {
  margin-top: 10px;
  font-size: 0.94rem;
  color: var(--ink-muted);
}

.place-meta a {
  color: var(--brand-3);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}

.gallery > * {
  grid-column: span 4;
}

.gallery .wide {
  grid-column: span 8;
}

.gallery .tall img {
  aspect-ratio: 0.78 / 1;
}

.gallery img {
  width: 100%;
  aspect-ratio: 1 / 0.92;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.page-hero {
  position: relative;
  padding: clamp(28px, 5vw, 48px) 0 clamp(34px, 6vw, 56px);
}

.page-hero .box {
  padding: clamp(22px, 3vw, 34px);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 251, 245, 0.92), rgba(247, 239, 227, 0.96));
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}

.inline-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.inline-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(95, 31, 31, 0.06);
  color: var(--ink);
  font-size: 0.92rem;
}

.inline-nav a:hover {
  background: rgba(95, 31, 31, 0.12);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--ink-muted);
  font-size: 0.88rem;
}

.breadcrumbs a {
  color: var(--ink-muted);
}

.breadcrumbs a:hover {
  color: var(--brand);
}

footer.site-footer {
  margin-top: 76px;
  border-top: 1px solid rgba(61, 41, 27, 0.1);
  background:
    linear-gradient(180deg, rgba(243, 235, 223, 0.7), rgba(239, 228, 213, 0.96));
}

.site-footer .inner {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  padding: 34px 0 42px;
  display: grid;
  gap: 22px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr 0.85fr;
  gap: 22px;
}

.site-footer h2,
.site-footer h3 {
  margin: 0 0 10px;
  font-family: var(--display);
  line-height: 1.08;
  color: var(--ink);
}

.site-footer p,
.site-footer li,
.site-footer a {
  font-size: 0.96rem;
  color: var(--ink-soft);
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.site-footer a:hover {
  color: var(--brand);
}

.footer-note {
  padding-top: 18px;
  border-top: 1px solid rgba(61, 41, 27, 0.08);
  color: var(--ink-muted);
  font-size: 0.88rem;
}

hr {
  border: 0;
  border-top: 1px solid rgba(61, 41, 27, 0.1);
  margin: 34px 0;
}

.embed,
.video-frame,
.map-frame {
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(61, 41, 27, 0.1);
  background: #fff;
}

.video-frame iframe,
.map-frame iframe,
.embed iframe {
  display: block;
  width: 100%;
  min-height: 420px;
  border: 0;
}

.notice,
.editor-note {
  padding: 14px 16px;
  border-left: 3px solid var(--accent);
  background: rgba(255, 248, 236, 0.88);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  color: var(--ink-soft);
}

.cover-card {
  position: relative;
  min-height: 540px;
  display: grid;
  align-items: end;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  background: #1f1812;
}

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

.cover-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(13, 8, 5, 0.08), rgba(13, 8, 5, 0.72)),
    linear-gradient(90deg, rgba(13, 8, 5, 0.28), transparent 44%);
}

.cover-card .content {
  position: relative;
  z-index: 1;
  padding: clamp(22px, 3vw, 34px);
  color: #fff8ee;
}

.cover-card h2,
.cover-card h3 {
  margin: 0;
  color: #fff8ee;
}

.cover-card p {
  margin: 14px 0 0;
  color: rgba(255, 246, 234, 0.9);
}

.hero-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.hero-strip .mini {
  min-height: 150px;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.hero-strip .mini img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-strip .mini::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(10, 6, 3, 0.5));
}

.hero-strip .mini span {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 12px;
  z-index: 1;
  color: #fff8ef;
  font-size: 0.92rem;
  line-height: 1.35;
  text-wrap: balance;
}

@media (max-width: 1120px) {
  .footer-grid,
  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split,
  .mosaic {
    grid-template-columns: 1fr;
  }

  .sticky-rail {
    position: static;
  }

  .gallery > *,
  .gallery .wide {
    grid-column: span 6;
  }
}

@media (max-width: 820px) {
  header.site-header {
    position: relative;
  }

  .site-header .inner {
    min-height: auto;
    padding: 14px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: thin;
  }

  .hero .inner {
    min-height: 72vh;
  }

  .hero-panel {
    width: 100%;
    border-radius: 28px;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .footer-grid,
  .hero-strip {
    grid-template-columns: 1fr;
  }

  .place-item {
    grid-template-columns: 1fr;
  }

  .gallery > *,
  .gallery .wide {
    grid-column: span 12;
  }

  .video-frame iframe,
  .map-frame iframe,
  .embed iframe {
    min-height: 320px;
  }
}

@media (max-width: 640px) {
  body {
    line-height: 1.76;
  }

  p,
  li,
  dd {
    font-size: 1rem;
  }

  .wrap,
  .container,
  .page-wrap,
  .narrow,
  .site-footer .inner {
    width: min(calc(100% - 20px), var(--max));
  }

  .hero {
    padding-top: 20px;
    padding-bottom: 32px;
  }

  .hero .inner {
    min-height: 62vh;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(2rem, 11vw, 3rem);
    line-height: 0.98;
  }

  .section-head h2,
  .prose h2 {
    font-size: clamp(1.55rem, 8vw, 2.05rem);
  }

  .prose h3 {
    font-size: 1.38rem;
  }

  .card-body,
  .info-panel,
  .sidebar-card,
  .quote-card,
  .fact-card,
  .page-hero .box,
  .article-hero-card {
    padding: 16px;
  }

  .cover-card {
    min-height: 420px;
  }

  .tag,
  .badge,
  .hero-meta span {
    font-size: 0.82rem;
  }

  .kicker,
  .eyebrow,
  .section-kicker {
    font-size: 0.72rem;
    letter-spacing: 0.16em;
  }

  .site-title .name {
    font-size: 1.24rem;
  }

  .site-title .eyebrow {
    font-size: 0.68rem;
  }

  .button,
  .btn,
  button,
  input[type="submit"] {
    width: 100%;
  }

  .button-row {
    display: grid;
  }

  .prose blockquote {
    padding: 14px 14px 14px 16px;
  }
}

/* Utility classes */
.center {
  text-align: center;
}

.right {
  text-align: right;
}

.muted {
  color: var(--ink-muted) !important;
}

.lead {
  font-size: clamp(1.08rem, 1.4vw, 1.18rem);
  line-height: 1.88;
  color: var(--ink-soft);
}

.underline-link {
  text-decoration: underline;
}

.surface {
  background: rgba(255, 251, 245, 0.84);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.spaced > * + * {
  margin-top: 1rem;
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}
