:root {
  --ink: #20211f;
  --muted: #696a64;
  --paper: #f7f4ee;
  --warm-white: #fffdf8;
  --line: #dbd7cd;
  --red: #a43b2c;
  --red-dark: #7f2b22;
  --green: #3f5a4b;
  --gold: #ca9553;
  --serif: "Libre Baskerville", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
  --brand: "DM Sans", Arial, sans-serif;
  --display: "DM Sans", Arial, sans-serif;
  --shell: min(1160px, calc(100vw - 48px));
}

* { box-sizing: border-box; }
html { scroll-behavior: auto; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--sans); }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; object-fit: cover; }
button { font: inherit; }

.site-header {
  position: sticky; top: 0; z-index: 30; height: 72px;
  border-bottom: 1px solid rgba(219, 215, 205, .8); background: rgba(255, 253, 248, .96);
  backdrop-filter: blur(12px);
}
.nav { width: var(--shell); height: 100%; margin: auto; display: flex; align-items: center; gap: 32px; }
.logo { display: flex; align-items: center; gap: 10px; font: 800 24px/.94 var(--brand); letter-spacing: 0; }
.logo-mark { width: 40px; height: 40px; object-fit: contain; }
.nav-links { display: flex; align-items: center; gap: 30px; margin-left: auto; height: 100%; }
.nav-link { height: 100%; display: flex; align-items: center; border-bottom: 2px solid transparent; color: #50514d; font-size: 13px; font-weight: 700; text-transform: uppercase; }
.nav-link:hover, .nav-link.active { color: var(--red); border-color: var(--red); }
.menu-btn { display: none; margin-left: auto; border: 0; background: transparent; color: var(--ink); cursor: pointer; }
.mobile-nav { display: none; }

.hero { padding: 54px 0 58px; background: var(--warm-white); }
.hero-inner { width: var(--shell); margin: auto; display: grid; grid-template-columns: minmax(280px, .68fr) minmax(0, 1.65fr); gap: 45px; align-items: center; }
.hero-content { padding: 10px 0; }
.hero-copy { max-width: 410px; }
.hero-media { position: relative; min-height: 510px; overflow: hidden; background: #222; color: white; }
.hero-media img, .hero-media::after { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-media img { transition: transform .35s ease; }
.hero-media:hover img { transform: scale(1.04); }
.hero-media::after { content: ""; background: linear-gradient(0deg, rgba(14,15,14,.88), transparent 54%); }
.hero-media-copy { position: absolute; right: 0; bottom: 0; left: 0; z-index: 1; padding: 27px 29px; }
.eyebrow { display: block; color: var(--red); font-size: 11px; font-weight: 700; letter-spacing: 1.7px; text-transform: uppercase; }
.hero-media .eyebrow { color: #f6ba69; }
.hero-media-copy > .eyebrow { display: none; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--serif); font-weight: 400; letter-spacing: 0; }
.hero h1 { margin: 12px 0 16px; font-family: var(--display); font-size: clamp(28px, 2.8vw, 39px); font-weight: 700; line-height: 1.02; letter-spacing: 0; }
.hero p { margin-bottom: 26px; color: var(--muted); font-size: 16px; line-height: 1.7; }
.hero-media h2 { max-width: 700px; margin: 8px 0 8px; color: white; font-size: 31px; line-height: 1.18; }
.hero-media p { max-width: 680px; margin: 0; color: rgba(255,255,255,.82); font-size: 14px; line-height: 1.55; }
.meta { display: flex; gap: 12px; align-items: center; color: #85867f; font-size: 12px; font-weight: 700; letter-spacing: .6px; text-transform: uppercase; }
.hero .meta { margin-top: 20px; }
.btn { display: inline-flex; min-height: 44px; align-items: center; gap: 9px; padding: 0 17px; border: 1px solid var(--red); background: var(--red); color: white; cursor: pointer; font-size: 12px; font-weight: 700; letter-spacing: .6px; text-transform: uppercase; transition: .2s ease; }
.btn:hover { border-color: var(--red-dark); background: var(--red-dark); }
.btn-light { border-color: white; background: white; color: var(--ink); }
.btn-light:hover { border-color: var(--paper); background: var(--paper); }
.btn-outline { background: transparent; color: var(--red); }
.btn-outline:hover { color: white; }

.section { padding: 76px 0; }
.section-white { background: var(--warm-white); }
.shell { width: var(--shell); margin: auto; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 27px; border-bottom: 1px solid var(--line); padding-bottom: 16px; }
.section-head h2 { margin: 8px 0 0; font-size: clamp(14px, 1.45vw, 19px); font-weight: 700; }
.text-link { display: inline-flex; align-items: center; gap: 7px; color: var(--red); font-size: 12px; font-weight: 700; letter-spacing: .6px; text-transform: uppercase; }
.text-link:hover { color: var(--red-dark); }

.story-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px 22px; }
.story-card { display: block; }
.story-card img { width: 100%; aspect-ratio: 4 / 3; margin-bottom: 16px; transition: transform .35s ease; }
.story-card:hover img { transform: scale(1.04); }
.story-card h3 { margin: 8px 0 9px; font-size: 20px; line-height: 1.3; transition: color .2s; }
.story-card:hover h3, .horizontal-story:hover h3 { color: var(--red); }
.story-card p { margin-bottom: 13px; color: var(--muted); font-size: 14px; line-height: 1.65; }

.city-scroll { display: grid; grid-auto-columns: minmax(250px, 1fr); grid-auto-flow: column; gap: 16px; overflow-x: auto; padding-bottom: 12px; scrollbar-color: var(--red) var(--line); }
.city-card { position: relative; min-height: 390px; overflow: hidden; background: #222; color: white; }
.city-card img { width: 100%; height: 100%; transition: transform .35s ease; }
.city-card:hover img { transform: scale(1.04); }
.city-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(14,15,14,.86), transparent 63%); }
.city-card-copy { position: absolute; z-index: 1; right: 0; bottom: 0; left: 0; padding: 20px; }
.city-card h3 { margin: 8px 0 7px; font-size: 25px; }
.city-card p { margin: 0 0 11px; color: rgba(255,255,255,.8); font-size: 13px; line-height: 1.55; }
.city-card .eyebrow { color: #f0c681; }
.image-credit { position: absolute; z-index: 2; right: 12px; bottom: 12px; padding: 4px 7px; border-radius: 999px; background: rgba(14,15,14,.58); color: rgba(255,255,255,.82); font-size: 11px; line-height: 1; }
.city-card .image-credit { bottom: auto; top: 12px; }

.food-feature { display: grid; grid-template-columns: 1.35fr .8fr; gap: 18px; }
.feature-story { min-height: 528px; }
.feature-side { display: grid; gap: 18px; }
.feature-side .food-tile { min-height: 255px; }
.food-tile { position: relative; display: flex; align-items: end; overflow: hidden; background: #222; color: white; }
.food-tile img, .food-tile::after { position: absolute; inset: 0; width: 100%; height: 100%; }
.food-tile img { transition: transform .35s ease; }
.food-tile:hover img { transform: scale(1.04); }
.food-tile::after { content: ""; background: linear-gradient(0deg, rgba(14,15,14,.9), rgba(14,15,14,.04) 78%); }
.food-copy { position: relative; z-index: 1; padding: 23px; }
.food-copy h3 { margin: 10px 0 8px; font-size: 27px; line-height: 1.22; }
.food-copy p { max-width: 680px; margin: 0; color: rgba(255,255,255,.8); font-size: 13px; line-height: 1.55; }
.feature-side h3 { font-size: 20px; }

.cta-band { position: relative; overflow: hidden; padding: 75px 24px; background: var(--green); color: white; text-align: center; }
.cta-band::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(37,65,52,.9), rgba(37,65,52,.66)); }
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { margin: 0 0 20px; font-size: clamp(14px, 1.75vw, 21px); }
.cta-band .btn { border-radius: 8px; }

.footer { padding: 50px 0 20px; background: #232a26; color: rgba(255,255,255,.75); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 36px; }
.footer .logo { color: white; }
.footer .logo-mark { width: 46px; height: 46px; }
.footer p { max-width: 310px; margin: 17px 0 0; font-size: 13px; line-height: 1.65; }
.footer h3 { margin: 0 0 15px; color: #f0c681; font: 700 11px/1 var(--sans); letter-spacing: 1px; text-transform: uppercase; }
.footer a { display: block; margin-bottom: 10px; font-size: 13px; }
.footer a:hover { color: white; }
.footer-bottom { margin-top: 35px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.14); font-size: 11px; }

.page-intro { padding: 80px 0 54px; text-align: center; }
.page-intro h1 { margin: 11px 0 13px; font-size: clamp(19px, 2.5vw, 29px); font-weight: 700; }
.page-intro p { max-width: 660px; margin: auto; color: var(--muted); font-size: 16px; line-height: 1.75; }
.cities-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.cities-grid .city-card { min-height: 430px; }
.directory { display: grid; grid-template-columns: repeat(3, 1fr); gap: 50px; }
.directory h3 { border-bottom: 2px solid var(--red); padding-bottom: 11px; font-size: 21px; }
.directory a { display: flex; justify-content: space-between; padding: 13px 0; border-bottom: 1px solid var(--line); font-size: 14px; }
.directory a:hover { color: var(--red); }
.directory span { color: var(--muted); font-size: 12px; }

.breadcrumb { display: flex; flex-wrap: wrap; gap: 7px; padding: 25px 0; color: var(--muted); font-size: 11px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; }
.breadcrumb a:hover { color: var(--red); }
.city-hero { position: relative; width: var(--shell); min-height: 430px; margin: auto; display: flex; align-items: end; overflow: hidden; color: white; }
.city-hero img, .city-hero::after { position: absolute; inset: 0; width: 100%; height: 100%; }
.city-hero::after { content: ""; background: linear-gradient(0deg, rgba(14,15,14,.9), rgba(14,15,14,.34) 48%, transparent 82%); }
.city-hero-copy { position: relative; z-index: 1; width: min(1080px, calc(100% - 72px)); margin: 0 auto 0 0; padding: 0 36px 38px; }
.city-hero h1 { max-width: 1040px; margin: 0 0 11px; font-family: var(--serif); font-size: clamp(24px, 3.2vw, 42px); font-weight: 400; line-height: 1.05; text-shadow: 0 2px 16px rgba(0,0,0,.55); }
.city-hero h1 span { display: block; }
.city-hero h1 span:first-child { margin-bottom: 5px; }
.city-hero h1 span:last-child { font-size: .72em; line-height: 1.18; white-space: nowrap; }
.city-hero p { max-width: 760px; margin: 0; color: rgba(255,255,255,.88); font-size: 16px; line-height: 1.55; text-shadow: 0 1px 12px rgba(0,0,0,.55); }
.city-profile { display: grid; grid-template-columns: 1.9fr .8fr; gap: 60px; }
.city-profile p { color: #50514d; font-family: var(--serif); font-size: 16px; line-height: 1.9; }
.city-profile-title, .fact-panel h3 { margin: 0 0 15px; font: 700 14px/1.25 var(--sans); }
.fact-panel { border-top: 4px solid var(--red); padding: 20px; background: #ece7dd; }
.fact { padding: 11px 0; border-top: 1px solid #d3ccbf; }
.fact b { display: block; margin-bottom: 5px; color: var(--red); font-size: 10px; letter-spacing: 1px; text-transform: uppercase; }
.fact span { font-size: 13px; line-height: 1.5; }
.story-list { display: grid; gap: 22px; }
.horizontal-story { display: grid; grid-template-columns: 280px 1fr; gap: 22px; align-items: center; border-bottom: 1px solid var(--line); padding-bottom: 22px; }
.horizontal-story img { width: 100%; aspect-ratio: 4/3; transition: transform .35s ease; }
.horizontal-story:hover img { transform: scale(1.04); }
.horizontal-story h3 { margin: 9px 0; font-size: 22px; }
.horizontal-story p { margin-bottom: 11px; color: var(--muted); font-size: 14px; line-height: 1.6; }

.channel-hero { display: grid; grid-template-columns: 1fr 1fr; width: var(--shell); min-height: 390px; margin: 46px auto 0; background: #ebe4d8; }
.channel-copy { display: flex; flex-direction: column; justify-content: center; padding: 45px 42px; }
.channel-copy h1 { margin: 13px 0 14px; font-size: clamp(21px, 2.5vw, 33px); font-weight: 700; }
.channel-copy p { max-width: 540px; color: var(--muted); font-size: 17px; line-height: 1.7; }
.channel-hero img { width: 100%; height: 100%; }

.article-head { max-width: 890px; margin: auto; padding: 42px 24px 30px; text-align: center; }
.article-head h1 { margin: 16px 0; font-size: clamp(18px, 2.6vw, 32px); font-weight: 700; line-height: 1.14; }
.standfirst { color: var(--muted); font-family: var(--serif); font-size: 18px; line-height: 1.75; }
.article-meta { justify-content: center; margin-top: 18px; }
.article-cover { width: min(980px, calc(100vw - 48px)); margin: 0 auto; }
.article-cover img { width: 100%; max-height: 560px; aspect-ratio: 16/9; }
.caption { margin: 9px 0 0; color: var(--muted); font-size: 11px; }
.article-layout { position: relative; width: min(900px, calc(100vw - 48px)); margin: auto; padding: 54px 0 30px; }
.share-rail { position: absolute; top: 60px; left: -84px; display: grid; gap: 10px; }
.icon-btn { display: grid; width: 38px; height: 38px; place-items: center; border: 1px solid var(--line); background: transparent; color: var(--muted); cursor: pointer; }
.icon-btn:hover { border-color: var(--red); color: var(--red); }
.article-body { max-width: 740px; margin: auto; }
.article-body p { color: #3f403d; font-family: var(--serif); font-size: 16px; line-height: 1.95; }
.article-body h2 { margin: 48px 0 14px; font-size: 22.5px; font-weight: 700; line-height: 1.25; }
.article-body h3 { margin: 30px 0 10px; font-size: 22px; }
.article-body blockquote { margin: 35px 0; border-left: 4px solid var(--red); padding: 6px 0 6px 20px; color: var(--red-dark); font: italic 20px/1.65 var(--serif); }
.info-box { margin: 35px 0; border-top: 4px solid var(--green); padding: 19px 20px; background: #e8ece5; }
.info-box h3 { margin-top: 0; color: var(--green); }
.info-box p { margin-bottom: 0; font: 14px/1.75 var(--sans); }
.tag-row { display: flex; flex-wrap: wrap; gap: 8px; max-width: 740px; margin: 30px auto; padding-top: 23px; border-top: 1px solid var(--line); }
.tag { padding: 7px 9px; border: 1px solid var(--line); color: var(--muted); font-size: 10px; font-weight: 700; letter-spacing: .6px; text-transform: uppercase; }
.share-row { display: flex; align-items: center; flex-wrap: wrap; gap: 9px; max-width: 740px; margin: 0 auto 28px; }
.share-row strong { margin-right: 8px; color: var(--muted); font-size: 11px; letter-spacing: 1px; text-transform: uppercase; }
.author-box { display: flex; gap: 19px; max-width: 740px; margin: 0 auto; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 22px 0; }
.author-box img { width: 72px; height: 72px; border-radius: 50%; }
.author-box h3 { margin: 3px 0 7px; font-size: 18px; }
.author-box p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.6; }

.simple-page { max-width: 880px; margin: auto; padding: 72px 24px; }
.simple-page h1 { font-size: clamp(19px, 2.5vw, 29px); font-weight: 700; }
.simple-page h2 { margin-top: 38px; font-size: 13px; }
.simple-page p { color: #50514d; font-size: 15px; line-height: 1.85; }
.about-hero { display: grid; grid-template-columns: 1.1fr .9fr; gap: 45px; align-items: center; }
.about-hero img { width: 100%; aspect-ratio: 4/5; }
.not-found { width: var(--shell); min-height: 68vh; margin: auto; display: grid; grid-template-columns: minmax(280px, .72fr) minmax(360px, 1fr); align-items: center; gap: 34px; padding: 58px 0 66px; }
.not-found-copy { max-width: 500px; }
.not-found h1 { margin: 10px 0 12px; font-size: clamp(19px, 2.8vw, 33px); font-weight: 700; line-height: 1.08; }
.not-found p { margin-bottom: 24px; color: var(--muted); font-size: 16px; line-height: 1.65; }
.not-found-art { margin: 0; }
.not-found-art img { width: 100%; max-height: 520px; object-fit: contain; }
.btn-row { display: flex; justify-content: center; gap: 10px; }
.not-found .btn-row { justify-content: flex-start; }

.sitemap-workbench { padding: 58px 0 78px; }
.sitemap-lede { max-width: 780px; margin-bottom: 30px; }
.sitemap-lede h1 { margin: 12px 0 14px; font-size: clamp(25px, 4vw, 52px); font-weight: 700; line-height: 1.03; }
.sitemap-lede p { max-width: 660px; color: var(--muted); font-size: 17px; line-height: 1.75; }
.sitemap-panel {
  border: 1px solid var(--line);
  background: linear-gradient(135deg, #fffdf8 0%, #efe8da 100%);
  box-shadow: 0 22px 60px rgba(62, 49, 32, .12);
}
.sitemap-controls { display: grid; grid-template-columns: minmax(220px, 1fr) auto auto; gap: 18px; align-items: end; padding: 22px; border-bottom: 1px solid var(--line); }
.sitemap-controls label { display: grid; gap: 8px; color: var(--red); font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }
.sitemap-controls input[type="url"] { width: 100%; min-height: 44px; border: 1px solid #c9c1b2; background: white; padding: 0 13px; color: var(--ink); font: 700 14px/1 var(--sans); }
.sitemap-check { align-self: center; display: flex !important; grid-auto-flow: column; gap: 9px !important; align-items: center; color: var(--ink) !important; letter-spacing: .4px !important; }
.sitemap-check input { width: 16px; height: 16px; accent-color: var(--red); }
.sitemap-actions { display: flex; flex-wrap: wrap; gap: 10px; justify-content: flex-end; }
.sitemap-actions .btn { white-space: nowrap; }
.sitemap-stats { display: grid; grid-template-columns: repeat(3, 1fr); border-bottom: 1px solid var(--line); }
.sitemap-stats div { padding: 20px 22px; border-right: 1px solid var(--line); }
.sitemap-stats div:last-child { border-right: 0; }
.sitemap-stats strong { display: block; font: 700 34px/1 var(--display); color: var(--green); }
.sitemap-stats span { display: block; margin-top: 6px; color: var(--muted); font-size: 11px; font-weight: 700; letter-spacing: .8px; text-transform: uppercase; }
.sitemap-output {
  display: block;
  width: 100%;
  min-height: 460px;
  border: 0;
  background: #1f241f;
  padding: 22px;
  color: #f7f4ee;
  font: 12px/1.6 "Consolas", "Courier New", monospace;
  resize: vertical;
}
.sitemap-index { margin-top: 54px; }
.sitemap-url-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 26px; }
.sitemap-url-list div { display: grid; grid-template-columns: minmax(140px, .7fr) minmax(0, 1fr); gap: 16px; padding: 13px 0; border-bottom: 1px solid var(--line); align-items: center; }
.sitemap-url-list span { font-size: 13px; font-weight: 700; line-height: 1.35; }
.sitemap-url-list code { overflow: hidden; color: var(--muted); font: 12px/1.4 "Consolas", "Courier New", monospace; text-overflow: ellipsis; white-space: nowrap; }

@media (max-width: 900px) {
  :root { --shell: min(100% - 32px, 780px); }
  .story-grid, .cities-grid { grid-template-columns: repeat(2, 1fr); }
  .food-feature { grid-template-columns: 1fr; }
  .feature-story { min-height: 440px; }
  .feature-side { grid-template-columns: 1fr 1fr; }
  .city-profile { grid-template-columns: 1fr; gap: 20px; }
  .directory { gap: 25px; }
  .share-rail { display: none; }
  .sitemap-controls { grid-template-columns: 1fr; align-items: stretch; }
  .sitemap-actions { justify-content: flex-start; }
  .sitemap-url-list { grid-template-columns: 1fr; }
}

@media (max-width: 1100px) {
  .hero-inner { grid-template-columns: 1fr; gap: 24px; }
  .hero-copy { max-width: 620px; }
  .hero-media { min-height: 440px; }
}

@media (max-width: 680px) {
  .site-header { height: 62px; }
  .logo { font-size: 21px; }
  .logo-mark { width: 36px; height: 36px; }
  .nav-links { display: none; }
  .menu-btn { display: grid; place-items: center; }
  .mobile-nav { position: fixed; top: 62px; right: 0; left: 0; z-index: 29; display: none; padding: 8px 16px 18px; border-bottom: 1px solid var(--line); background: var(--warm-white); }
  .mobile-nav.open { display: block; }
  .mobile-nav a { display: block; padding: 14px 0; border-bottom: 1px solid var(--line); color: var(--ink); font-size: 13px; font-weight: 700; letter-spacing: .6px; text-transform: uppercase; }
  .hero { padding: 35px 0 38px; }
  .hero-inner { gap: 21px; }
  .hero-content { padding: 0; }
  .hero h1 { font-size: 27px; line-height: 1.02; }
  .hero p { font-size: 15px; line-height: 1.6; }
  .hero-media { min-height: 330px; }
  .hero-media-copy { padding: 19px; }
  .hero-media h2 { font-size: 23px; }
  .hero-media p { display: none; }
  .section { padding: 57px 0; }
  .section-head { align-items: start; flex-direction: column; gap: 10px; }
  .story-grid, .cities-grid, .directory { grid-template-columns: 1fr; }
  .city-scroll { grid-auto-columns: 82%; }
  .city-card, .cities-grid .city-card { min-height: 385px; }
  .feature-story { min-height: 390px; }
  .feature-side { grid-template-columns: 1fr; }
  .food-copy h3 { font-size: 22px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .page-intro { padding: 60px 0 38px; }
  .city-hero { width: 100%; min-height: 360px; }
  .city-hero-copy { width: 100%; padding: 0 16px 28px; }
  .city-hero h1 { font-size: clamp(24px, 9vw, 34px); }
  .city-hero h1 span:last-child { white-space: normal; }
  .horizontal-story { grid-template-columns: 120px 1fr; gap: 14px; align-items: start; }
  .horizontal-story h3 { margin: 7px 0; font-size: 17px; }
  .horizontal-story p { display: none; }
  .channel-hero { grid-template-columns: 1fr; min-height: auto; }
  .channel-copy { padding: 50px 16px 30px; }
  .channel-hero img { height: 280px; }
  .article-head { padding-top: 28px; }
  .article-head h1 { font-size: 19px; }
  .article-cover { width: 100%; }
  .article-layout { width: min(100% - 32px, 740px); padding-top: 38px; }
  .article-body p { font-size: 15px; }
  .about-hero { grid-template-columns: 1fr; }
  .not-found { width: min(100% - 32px, 780px); min-height: auto; grid-template-columns: 1fr; gap: 24px; padding: 42px 0 52px; text-align: center; }
  .not-found-copy { max-width: none; }
  .not-found-art { order: -1; }
  .not-found-art img { max-height: 330px; }
  .not-found .btn-row { justify-content: center; }
  .btn-row { flex-wrap: wrap; }
  .sitemap-workbench { padding: 38px 0 58px; }
  .sitemap-stats { grid-template-columns: 1fr; }
  .sitemap-stats div { border-right: 0; border-bottom: 1px solid var(--line); }
  .sitemap-stats div:last-child { border-bottom: 0; }
  .sitemap-output { min-height: 380px; font-size: 11px; }
  .sitemap-url-list div { grid-template-columns: 1fr; gap: 5px; }
}
