/* =========================================================
   Florence Wedding Travel Guide — Dayoung & Bennett
   main.css · editorial "read top-to-bottom" layout
   Style: luxury Italian boutique hotel — cream, terracotta,
   olive, gold. Elegant serif headings, clean sans body.
   ========================================================= */

:root {
  --cream:        #F3EBDD;
  --cream-2:      #EBE2D2;
  --paper:        #F9F5EC;
  --terracotta:   #B15C41;
  --terracotta-2: #9A4E36;
  --olive:        #6E7150;
  --olive-2:      #464832;
  --gold:         #B08D4E;
  --gold-soft:    #D9C29A;
  --ink:          #2B2620;
  --ink-soft:     #4A4338;
  --line:         #E7DCC7;

  --photo-dim: linear-gradient(rgba(35, 30, 22, .22), rgba(35, 30, 22, .34));

  --serif: "Cormorant Garamond", "Hoefler Text", Georgia, "Times New Roman", serif;
  --sans:  "Mulish", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --readw: 44rem;   /* narrow reading column, like a book */
  --type-scale: 1.15;
}

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

html { -webkit-text-size-adjust: 100%; font-size: calc(100% * var(--type-scale)); }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background-color: var(--cream);
  background-image:
    radial-gradient(rgba(176, 141, 78, .045) 1px, transparent 1.6px),
    radial-gradient(120% 100% at 50% -8%, rgba(249, 245, 236, .5), transparent 55%);
  background-size: 28px 28px, 100% 900px;
  background-repeat: repeat, no-repeat;
  line-height: 1.75;
  font-size: 1.09375rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: var(--terracotta-2); text-decoration: none; }

h1, h2, h3 { font-family: var(--serif); font-weight: 500; margin: 0; line-height: 1.12; }

svg { fill: none; }
.ornament { fill: currentColor; stroke: none; }

/* ---------- Cover (magazine hero, Florence skyline) ---------- */
.cover {
  position: relative;
  min-height: min(96vh, 940px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: clamp(1.6rem, 4.5vh, 3.2rem) 1.5rem 2.6rem;
  background-image:
    linear-gradient(180deg, rgba(243,235,221,.78) 0%, rgba(243,235,221,.38) 22%, rgba(243,235,221,.02) 42%, rgba(35,30,22,.10) 78%, rgba(35,30,22,.32) 100%),
    linear-gradient(rgba(35, 30, 22, .08), rgba(35, 30, 22, .14)),
    url("cover-skyline.jpg");
  background-size: cover;
  background-position: center 64%;
  background-repeat: no-repeat;
  border-bottom: 1px solid var(--line);
}
.cover::after {
  content: "";
  position: absolute; inset: 0;
  background: rgba(35, 30, 22, .06);
  pointer-events: none;
}
.cover__inner { position: relative; z-index: 1; max-width: 40rem; margin: 0 auto; }
.cover__eyebrow {
  text-transform: uppercase; letter-spacing: .42em;
  font-size: .74rem; font-weight: 600; color: var(--terracotta-2);
  margin: 0 0 0.85rem; padding-left: .42em;
}
.cover__title { font-size: clamp(3.4rem, 14vw, 7rem); font-weight: 500; letter-spacing: .01em; color: var(--ink); line-height: .9; }
.cover__couple { font-family: var(--serif); font-style: italic; font-size: clamp(1.6rem, 4.8vw, 2.6rem); color: var(--terracotta); margin: .35rem 0 0; }
.cover__issue {
  margin-top: auto; position: relative; z-index: 1;
  padding-top: 2rem;
  text-transform: uppercase; letter-spacing: .34em;
  font-size: .68rem; font-weight: 600; color: #F6EEDE;
  text-shadow: 0 1px 4px rgba(35, 30, 22, .55);
}

/* ---------- Table of contents (a proper contents page) ---------- */
.toc {
  max-width: 34rem;
  margin: clamp(2.5rem, 6vw, 4rem) auto;
  padding: 0 1.5rem;
}
.toc__title { text-align: center; font-size: 2.4rem; color: var(--ink); margin-bottom: 1.6rem; }
.toc__title::after { content: ""; display: block; width: 3.5rem; height: 2px; margin: .8rem auto 0; background: var(--gold); border-radius: 2px; }
.toc__pdf {
  text-align: center;
  margin: -0.6rem 0 1.5rem;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.toc__pdf a {
  color: var(--terracotta-2);
  text-decoration: none;
  border-bottom: 1px solid var(--gold-soft);
  padding-bottom: 0.12rem;
}
.toc__pdf a:hover { color: var(--terracotta); border-bottom-color: var(--terracotta); }
.toc__list { list-style: none; margin: 0; padding: 0; }
.toc__list li {
  display: flex; align-items: baseline; gap: .85rem;
  padding: .72rem 0;
  color: var(--ink);
  border-bottom: none;
}
.toc__list li::after { display: none; }
.toc__num {
  order: 1;
  flex: none;
  font-family: var(--serif); font-weight: 600; font-style: normal;
  font-size: 1.08rem;
  color: var(--terracotta);
  min-width: 1.6rem;
  text-align: right;
  font-variant-numeric: tabular-nums;
}
.toc__label {
  order: 2;
  font-family: var(--serif);
  font-size: 1.14rem;
  line-height: 1.45;
  color: inherit;
  text-decoration: none;
}
.toc__label:hover { color: var(--terracotta); }
.toc__label:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ---------- Guide reading column ---------- */
.guide { max-width: var(--readw); margin: 0 auto; padding: 0 1.4rem; }

/* ---------- Chapters ---------- */
.chapter {
  position: relative;
  z-index: 0;
  padding: clamp(2.6rem, 6vw, 4.4rem) 0 clamp(2rem, 4vw, 3rem);
  scroll-margin-top: 1.25rem;
}
/* Old decorative line-art backdrops replaced by photo banners */
.chapter__bg { display: none; }

/* ---------- Chapter opener: text card above full-bleed photo ---------- */
.chapter__head {
  display: flex;
  flex-direction: column;
  margin-bottom: clamp(1.8rem, 4vw, 2.6rem);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 22px 48px -24px rgba(43, 38, 32, .45);
}
.chapter__head-text {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: clamp(2.8rem, 6.5vw, 4rem) clamp(2rem, 5vw, 3rem) clamp(2.4rem, 5.5vw, 3.4rem);
  background: var(--paper);
  border: 1px solid var(--line);
  border-bottom: none;
  border-radius: 16px 16px 0 0;
}
.chapter__head-photo {
  width: 100%;
  aspect-ratio: 2.15 / 1;
  min-height: 11rem;
  background-color: var(--cream-2);
  background-size: cover;
  background-position: center 56%;
  background-repeat: no-repeat;
  border: 1px solid var(--line);
  border-top: none;
  border-radius: 0 0 16px 16px;
}

#welcome      .chapter__head-photo { background-image: url("sec-welcome.jpg"); background-position: center 48%; }
#planning     .chapter__head-photo { background-image: url("sec-planning.jpg"); background-position: center center; }
#neighborhoods .chapter__head-photo { background-image: url("sec-neighborhoods.jpg"); }
#sights       .chapter__head-photo { background-image: url("sec-landmarks.jpg"); background-position: center 50%; }
#coffee       .chapter__head-photo { background-image: url("sec-coffee.jpg"); background-position: center 55%; }
#gelato       .chapter__head-photo { background-image: url("sec-gelato.jpg"); background-position: center 55%; }
#restaurants  .chapter__head-photo {
  background-image: url("sec-restaurants.jpg");
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  background-color: var(--cream-2);
  aspect-ratio: 2 / 1;
  min-height: 12rem;
}
#cocktails    .chapter__head-photo { background-image: url("sec-cocktails.jpg"); background-position: center 55%; }
#experiences  .chapter__head-photo { background-image: url("sec-experiences.jpg"); background-position: center 82%; }
#daytrips     .chapter__head-photo { background-image: url("sec-daytrips.jpg"); background-position: center 40%; }
#safety       .chapter__head-photo { background-image: url("sec-safety.jpg"); }
#italian      .chapter__head-photo { background-image: url("sec-italian.jpg"); background-position: center 50%; }

.chapter__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--paper); border: 1px solid var(--gold-soft);
  box-shadow: 0 8px 20px rgba(59, 53, 44, .18);
  margin-bottom: 1rem;
}
.chapter__icon svg { width: 25px; height: 25px; stroke: var(--terracotta); stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.chapter__kicker {
  display: inline-flex; align-items: center; gap: .8rem;
  text-transform: uppercase; letter-spacing: .34em;
  font-size: .78rem; font-weight: 600; color: var(--gold);
  margin: 0 0 .7rem; padding-left: .34em;
}
.chapter__kicker::before, .chapter__kicker::after {
  content: ""; width: 1.8rem; height: 1px; background: var(--gold-soft);
}
.chapter__title {
  font-size: clamp(2.5rem, 6.2vw, 3.6rem); color: var(--ink);
}
.chapter__lede {
  margin: .9rem auto 0; max-width: 34rem;
  font-family: var(--serif); font-style: italic;
  font-size: 1.42rem; line-height: 1.5; color: var(--olive-2);
}

/* ---------- Prose body ---------- */
.prose { }
.lead { font-size: 1.16rem; color: var(--ink); margin: 0; }
.lead::first-letter {
  float: left; font-family: var(--serif); font-weight: 600;
  font-size: 3.6em; line-height: .78; color: var(--terracotta);
  padding: .06em .12em 0 0;
}

/* ---------- Welcome magazine spread ---------- */
#welcome {
  --welcome-w: min(68rem, calc(100vw - 2.8rem));
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: var(--welcome-w);
  max-width: none;
}
#welcome .prose--spread {
  columns: 2;
  column-gap: clamp(2rem, 5vw, 3.5rem);
  text-align: left;
  padding: clamp(1.6rem, 4vw, 2.8rem) 0 clamp(2rem, 5vw, 3.2rem);
  min-height: calc(100vh - 28rem);
}
#welcome .prose--spread p {
  margin: 0 0 1.15rem;
  font-size: 1.08rem;
  line-height: 1.72;
  color: var(--ink);
  break-inside: avoid;
}
#welcome .prose--spread .lead {
  font-size: 1.14rem;
}
#welcome .welcome__signoff {
  column-span: all;
  margin: clamp(1.2rem, 3vw, 2rem) 0 0;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 1.22rem;
  line-height: 1.55;
  color: var(--terracotta);
  text-align: right;
  break-inside: avoid;
}
#welcome .welcome__signoff em { font-style: italic; }

/* Group labels within a chapter */
.group {
  display: flex; align-items: center; gap: 1rem;
  text-transform: uppercase; letter-spacing: .16em;
  font-family: var(--sans); font-weight: 600; font-size: 1rem;
  color: var(--ink);
  margin: 2.5rem 0 1.3rem;
}
.group:first-child { margin-top: .5rem; }
.group::before, .group::after {
  content: ""; height: 1px; flex: 1;
  background: linear-gradient(90deg, transparent, var(--gold-soft), transparent);
}

/* Run-in entries — reads like a guidebook paragraph */
.entry {
  margin: 0;
  padding: .72rem .4rem;
  border-bottom: 1px solid var(--line);
  line-height: 1.65;
  font-size: 1.06rem;
  color: var(--ink);
  border-radius: 8px;
  transition: background-color .15s ease;
}
.entry:hover { background-color: rgba(235, 226, 210, .45); }
.entry:last-child { border-bottom: none; }
.entry__place {
  font-family: var(--serif); font-weight: 600;
  font-size: 1.28rem; color: var(--terracotta-2);
  white-space: normal;
}
.entry__place:hover { color: var(--terracotta); }
.entry__place:hover .entry__pin {
  background: var(--terracotta);
  color: #fff;
  border-color: var(--terracotta);
  box-shadow: 0 3px 10px rgba(177, 92, 65, .22);
}
.entry__place--tel { color: var(--olive-2); }
.entry__pin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 24px; height: 24px;
  padding: 4px;
  margin-left: .45rem;
  vertical-align: -4px;
  background: var(--paper);
  color: var(--terracotta);
  border: 1px solid var(--gold-soft);
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(59, 53, 44, .1);
  stroke: currentColor; fill: none; stroke-width: 1.75;
  stroke-linecap: round; stroke-linejoin: round;
  transition: background-color .15s ease, color .15s ease, border-color .15s ease, box-shadow .15s ease;
}
.entry__place--tel .entry__pin { color: var(--olive); }
.entry__place--tel:hover .entry__pin { background: var(--olive-2); color: #fff; border-color: var(--olive-2); }
.entry__desc { color: var(--ink-soft); }

/* Reservation marker */
.rsv {
  font-family: var(--serif); font-weight: 600;
  color: var(--gold); font-size: 1.1em;
  margin-left: .12rem;
}
.tix {
  font-family: var(--serif); font-weight: 600;
  color: var(--gold); font-size: 1.1em;
  margin-left: .12rem;
}
.aside--legend { font-size: .95rem; margin: .2rem 0 1.1rem; }

.aside {
  margin: 1.4rem 0;
  font-family: var(--serif); font-style: italic;
  font-size: 1.1rem; color: var(--ink-soft);
  text-align: center;
}

/* ---------- Notes lists ---------- */
.notes { list-style: none; margin: 0; padding: 0; }
.notes li {
  position: relative;
  padding: .55rem 0 .55rem 1.6rem;
  border-bottom: 1px solid var(--line);
  font-size: 1.06rem; color: var(--ink); line-height: 1.6;
}
.notes li:last-child { border-bottom: none; }
.notes li::before {
  content: ""; position: absolute; left: .2rem; top: 1.05rem;
  width: 7px; height: 7px; border-radius: 50%; background: var(--gold);
}
.notes--warn li::before { background: var(--terracotta); border-radius: 2px; }

/* Before You Go: clean horizontal tip grid (no nested column squeeze) */
#planning .prose {
  display: flex;
  flex-direction: column;
  gap: 0;
}
#planning .notes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 1.8rem;
  row-gap: 0;
  margin: 0 0 .4rem;
}
#planning .notes li {
  padding: .7rem 0 .7rem 1.6rem;
  font-size: 1.02rem;
  line-height: 1.55;
  border-bottom: 1px solid var(--line);
}
#planning .callout {
  margin: .8rem 0 1.2rem;
}
#planning .taglist {
  gap: .55rem .65rem;
}

@media (max-width: 640px) {
  #planning .notes { grid-template-columns: 1fr; }
}

/* ---------- Callout (apps) ---------- */
.callout {
  margin: 1.6rem 0 .4rem;
  padding: 1.1rem 1.3rem;
  background: var(--cream-2);
  border-left: 3px solid var(--gold);
  border-radius: 0 12px 12px 0;
}
.callout__title {
  margin: 0 0 .7rem;
  font-family: var(--sans); text-transform: uppercase;
  letter-spacing: .14em; font-size: .9rem; font-weight: 600; color: var(--olive-2);
}
.taglist { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: .5rem; }
.taglist li {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: 999px; padding: .3rem .85rem;
  font-size: .85rem; font-weight: 500; color: var(--ink);
}

/* ---------- Phrasebook ---------- */
.phrases { margin: 0; columns: 2; column-gap: 2.6rem; }
.phrase {
  display: flex; align-items: baseline; justify-content: space-between; gap: 1.2rem;
  padding: .6rem 0;
  border-bottom: 1px solid var(--line);
  break-inside: avoid;
}
.phrase:last-child { border-bottom: none; }
.phrase dt { font-family: var(--serif); font-style: italic; font-size: 1.32rem; color: var(--terracotta); }
.phrase dd { margin: 0; color: var(--ink-soft); text-align: right; font-size: 1rem; }

/* ---------- Dividers ---------- */
.divider, .footer__rule {
  display: flex; align-items: center; justify-content: center; gap: .75rem;
  max-width: 34rem; margin: clamp(2rem, 5vw, 3.2rem) auto;
}
.divider span, .footer__rule span {
  height: 1px; flex: 1; background: linear-gradient(90deg, transparent, var(--gold-soft), transparent);
  opacity: .9;
}
.divider__mark { width: clamp(140px, 38vw, 200px); height: clamp(28px, 7vw, 40px); color: var(--gold); flex: none; }

/* ---------- Footer ---------- */
.footer {
  position: relative; overflow: hidden; text-align: center;
  padding: clamp(3rem, 8vw, 5rem) 1.5rem clamp(2.5rem, 6vw, 4rem);
  margin-top: 1rem;
  background: linear-gradient(180deg, var(--cream), var(--cream-2));
  border-top: 1px solid var(--line);
}
.footer__watermark { position: absolute; bottom: -30px; left: 50%; transform: translateX(-50%); width: 220px; height: 220px; color: var(--gold); opacity: .06; pointer-events: none; }
.footer > * { position: relative; }
.footer__rule { margin: 0 auto 1.4rem; }
.footer__names { font-family: var(--serif); font-style: italic; font-size: 2rem; color: var(--terracotta); margin: 0; }
.footer__place { text-transform: uppercase; letter-spacing: .3em; font-size: .72rem; font-weight: 600; color: var(--gold); margin: .6rem 0 1.4rem; padding-left: .3em; }
/* ---------- City center map (before closing footer) ---------- */
.mappage {
  text-align: center;
  padding: clamp(2.4rem, 6vw, 4rem) 1.2rem clamp(3rem, 8vw, 5rem);
  background: linear-gradient(180deg, var(--cream-2), var(--cream));
  border-top: 1px solid var(--line);
  scroll-margin-top: 1.25rem;
}
.mappage__kicker {
  text-transform: uppercase; letter-spacing: .34em;
  font-size: .7rem; font-weight: 600; color: var(--gold);
  margin: 0 0 .5rem; padding-left: .34em;
}
.mappage__title { font-size: clamp(1.9rem, 5vw, 2.6rem); color: var(--ink); margin: 0 0 1.6rem; }
.mappage__img {
  display: block; width: 100%; max-width: 1080px; height: auto;
  margin: 0 auto; border-radius: 14px;
  border: 1px solid var(--line);
  box-shadow: 0 24px 60px -30px rgba(59, 53, 44, .6);
}

/* ---------- Category column grid (dining chapters) ---------- */
.chapter--grid {
  --dining-w: min(68rem, calc(100vw - 2.8rem));
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: var(--dining-w);
  max-width: none;
}
.chapter--grid .prose--dining { columns: 1; }
.chapter--grid .prose--dining .aside--legend { column-span: all; }
.chapter--grid .dining-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.6rem, 3vw, 2.4rem);
  align-items: start;
}
.chapter--grid .dining-grid--two {
  grid-template-columns: repeat(2, 1fr);
}
.chapter--grid .dining-grid--strip {
  gap: clamp(1.2rem, 2.5vw, 1.8rem);
  max-width: 52rem;
  margin-inline: auto;
}
.chapter--grid .dining-col__title {
  font-family: var(--sans);
  font-weight: 600;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--gold);
  margin: 0 0 .85rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid var(--line);
}
.chapter--grid .entry--stacked {
  padding: .65rem 0;
}
.chapter--grid .entry--stacked:last-child { border-bottom: none; }
.chapter--grid .entry--stacked .entry__place {
  font-size: 1.15rem;
  display: inline;
}
.chapter--grid .entry--stacked .entry__desc {
  display: block;
  margin-top: .25rem;
  font-size: .95rem;
  line-height: 1.55;
  padding-left: 0;
}

/* Restaurants — denser directory columns */
#restaurants .entry--stacked {
  padding: .48rem 0;
}
#restaurants .entry--stacked .entry__desc {
  margin-top: .18rem;
  font-size: .92rem;
  line-height: 1.5;
}

/* Coffee — full-width category bands + run-in entries */
#coffee .dining-bands {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.2rem);
  max-width: 44rem;
  margin-inline: auto;
}
#coffee .dining-band .dining-col__title {
  margin-bottom: .55rem;
}
#coffee .dining-band .entry {
  padding: .55rem 0;
}
#coffee .dining-band .entry:last-child { border-bottom: none; }

/* Gelato — compact three-up strip */
#gelato .dining-grid--strip .entry--stacked {
  padding: .45rem 0;
}
#gelato .dining-grid--strip .entry--stacked .entry__place {
  font-size: 1.1rem;
}
#gelato .dining-grid--strip .entry--stacked .entry__desc {
  margin-top: .15rem;
  font-size: .9rem;
  line-height: 1.45;
}

/* Cocktails — two-act split */
#cocktails .dining-grid--two {
  gap: clamp(1.8rem, 3.5vw, 2.8rem);
}
#cocktails .entry--stacked {
  padding: .55rem 0;
}

/* ---------- Sights & Museums — vertical stacked list ---------- */
#sights .prose--sights { columns: 1; }
#sights .sights-section {
  margin-bottom: clamp(2.4rem, 5vw, 3.2rem);
}
#sights .sights-section:last-child { margin-bottom: 0; }
#sights .sights-section .group {
  margin-top: 0;
  margin-bottom: 1.4rem;
}
#sights .entry--stacked {
  padding: .85rem .4rem;
}
#sights .entry--stacked:last-child { border-bottom: none; }
#sights .entry--stacked .entry__place {
  font-size: 1.22rem;
  display: inline;
}
#sights .entry--stacked .entry__desc {
  display: block;
  margin-top: .35rem;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink-soft);
  padding-left: 0;
}

/* ---------- Neighborhoods — stacked entries ---------- */
#neighborhoods .entry--stacked {
  padding: .85rem .4rem;
}
#neighborhoods .entry--stacked:last-child { border-bottom: none; }
#neighborhoods .entry--stacked .entry__place {
  font-size: 1.22rem;
  display: inline;
}
#neighborhoods .entry--stacked .entry__desc {
  display: block;
  margin-top: .35rem;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink-soft);
  padding-left: 0;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .chapter--grid .dining-grid { grid-template-columns: repeat(2, 1fr); }
  .chapter--grid .dining-grid--two { grid-template-columns: repeat(2, 1fr); }
  .chapter--grid .dining-grid--strip { grid-template-columns: repeat(2, 1fr); max-width: none; }
}
@media (max-width: 640px) {
  body { font-size: 1.03125rem; }
  .cover {
    min-height: min(70vh, 640px);
    background-position: center 58%;
  }
  .chapter__head-photo {
    aspect-ratio: 4 / 3;
    min-height: 9.5rem;
    background-position: center 50%;
  }
  #restaurants .chapter__head-photo {
    aspect-ratio: 4 / 3;
    min-height: 9.5rem;
    background-size: cover;
  }
  .chapter__lede { font-size: 1.28rem; }
  .phrases { columns: 1; }
  .phrase { flex-direction: column; gap: .1rem; }
  .phrase dd { text-align: left; }
  .entry__place { font-size: 1.2rem; }
  #welcome {
    left: auto;
    transform: none;
    width: auto;
  }
  #welcome .prose--spread {
    columns: 1;
    min-height: 0;
    padding-top: 1.2rem;
  }
  #welcome .welcome__signoff { text-align: left; }
  .chapter--grid {
    left: auto;
    transform: none;
    width: auto;
  }
  .chapter--grid .dining-grid,
  .chapter--grid .dining-grid--two,
  .chapter--grid .dining-grid--strip { grid-template-columns: 1fr; }
  #coffee .dining-bands { max-width: none; }
}
