/* =====================================================================
 * Cater PGH — theme.css (Round 2)
 *
 * Visual idiom: PRINTED WEDDING PROGRAM / PRIX-FIXE MENU.
 * Single-column centered editorial grammar. No card containers, no
 * sidebar, no chip-stuffed grids. Sections are bound by hairline
 * horizontal rules and centered Trajan-style serif headings. Status is
 * carried by **dot-leader typography** (... line-fill connecting label
 * to value), the way a real prix-fixe menu binds dish to price.
 *
 * Grammar separation from prior 9 sites:
 *  - great-lakes-sprinkler / zerox-smog / blue-storm-security: dashboard
 *    + matrix grids
 *  - honduras-collectibles: institutional sans modern grid
 *  - no-mark-remediation: industrial dossier, asymmetric grid
 *  - manhattan-trust: case-folder dossier, vellum + dual-column
 *  - irvine-tint-lab: editorial review magazine, single-column long-form
 *  - lagos-ftz: cargo dispatch board, 14-section
 *  - chelle-on-wheels: notary journal, chapter ribbon + 12 sections
 *  - cater-pgh (Round 1): cover sheet + 12 sections (RETIRED)
 *  - cater-pgh (Round 2 / this): printed wedding-program, centered
 *    single column, dot-leader, hairline rules, drop-caps,
 *    roman numerals. NO sidebar, NO mono font, NO chips/cards,
 *    NO matrix grids.
 *
 * Palette: paper white + near-black ink + single deep emerald accent.
 * Type: Marcellus (display) + Inter (body). No mono.
 * ===================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Marcellus&family=Marcellus+SC&family=Inter:wght@400;500;600;700&family=Cormorant+Garamond:ital,wght@0,400;0,500;1,400;1,500&display=swap');

:root {
  --cpgh-white: #ffffff;
  --cpgh-paper: #fafafa;
  --cpgh-paper-warm: #f5f3ee;
  --cpgh-rule: #e6e6e6;
  --cpgh-rule-soft: #efefef;
  --cpgh-rule-strong: #0e0e0e;
  --cpgh-ink: #0e0e0e;
  --cpgh-ink-soft: #4a4a4a;
  --cpgh-ink-fade: #8a8a8a;
  --cpgh-ink-faint: #c4c4c4;
  --cpgh-emerald: #1a4d3e;
  --cpgh-emerald-deep: #0e3328;
  --cpgh-emerald-pale: #e8efeb;

  --cpgh-page: 740px;
  --cpgh-page-wide: 980px;
  --cpgh-tracking-wide: 0.18em;
  --cpgh-tracking-tight: 0.02em;

  --cpgh-serif: 'Marcellus', 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --cpgh-italic: 'Cormorant Garamond', 'Marcellus', Georgia, serif;
  --cpgh-body: 'Inter', system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  background: var(--cpgh-white);
  color: var(--cpgh-ink);
  font-family: var(--cpgh-body);
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: var(--cpgh-tracking-tight);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
  max-width: 100vw;
}

body { min-height: 100vh; }

a { color: var(--cpgh-emerald); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
a:hover { color: var(--cpgh-emerald-deep); }

p { margin: 0 0 18px; }
img { max-width: 100%; height: auto; display: block; }

::selection { background: var(--cpgh-emerald); color: var(--cpgh-white); }

/* ---------- Centered shell (single column page width) ---------- */
.cpgh-page-shell {
  width: 100%;
  max-width: var(--cpgh-page);
  margin: 0 auto;
  padding: 0 24px;
}
.cpgh-wide-shell {
  width: 100%;
  max-width: var(--cpgh-page-wide);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Smallcaps utility ---------- */
.cpgh-smallcaps {
  font-family: 'Marcellus SC', var(--cpgh-serif);
  font-size: 12px;
  letter-spacing: var(--cpgh-tracking-wide);
  text-transform: uppercase;
  color: var(--cpgh-ink-fade);
  display: inline-block;
}
.cpgh-smallcaps--ink { color: var(--cpgh-ink); }
.cpgh-smallcaps--emerald { color: var(--cpgh-emerald); }

.cpgh-flourish {
  display: block;
  text-align: center;
  font-family: var(--cpgh-italic);
  font-size: 22px;
  color: var(--cpgh-emerald);
  line-height: 1;
  margin: 28px 0;
  letter-spacing: 0.4em;
}
.cpgh-flourish::before { content: '\2766'; } /* ❦ floral heart */

/* ---------- Hairline section rule ---------- */
.cpgh-rule {
  border: 0;
  border-top: 0.6px solid var(--cpgh-ink);
  margin: 48px 0;
  position: relative;
  text-align: center;
  height: 0.6px;
}
.cpgh-rule--soft { border-top-color: var(--cpgh-rule); }
.cpgh-rule--double {
  border-top-width: 0.6px;
  border-bottom: 0.6px solid var(--cpgh-ink);
  height: 4px;
  margin: 56px 0;
}

/* ---------- Section heading (centered Trajan-style) ---------- */
.cpgh-heading {
  text-align: center;
  margin: 56px 0 28px;
}
.cpgh-heading h2 {
  font-family: var(--cpgh-serif);
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--cpgh-ink);
  margin: 0;
  padding: 0;
}
.cpgh-heading h2 span {
  display: block;
  font-family: var(--cpgh-italic);
  font-style: italic;
  font-size: 26px;
  letter-spacing: 0.01em;
  text-transform: none;
  color: var(--cpgh-emerald);
  margin-top: 8px;
}
.cpgh-heading--no-italic h2 span { display: none; }

/* ---------- Buttons (text-link only — minimal) ---------- */
.cpgh-link {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  font-family: var(--cpgh-body);
  font-weight: 500;
  font-size: 14px;
  color: var(--cpgh-ink);
  text-decoration: none;
  border-bottom: 0.6px solid var(--cpgh-ink);
  padding-bottom: 1px;
  transition: color .14s ease, border-color .14s ease;
  letter-spacing: 0.02em;
}
.cpgh-link:hover { color: var(--cpgh-emerald); border-bottom-color: var(--cpgh-emerald); }
.cpgh-link--emerald {
  color: var(--cpgh-emerald);
  border-bottom-color: var(--cpgh-emerald);
}
.cpgh-link--emerald:hover { color: var(--cpgh-emerald-deep); border-bottom-color: var(--cpgh-emerald-deep); }
.cpgh-link::after {
  content: '\00A0\2192'; /*  → */
  font-family: var(--cpgh-body);
}
.cpgh-link--noarrow::after { content: ''; }

.cpgh-link-set {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  font-family: var(--cpgh-body);
  font-size: 14px;
  letter-spacing: 0.04em;
}
.cpgh-link-set a {
  text-decoration: none;
  color: var(--cpgh-ink);
  border-bottom: 0.6px solid var(--cpgh-ink);
  padding-bottom: 1px;
  margin: 0 18px;
  transition: color .14s ease, border-color .14s ease;
}
.cpgh-link-set a:hover { color: var(--cpgh-emerald); border-bottom-color: var(--cpgh-emerald); }
.cpgh-link-set a + a {
  position: relative;
}
.cpgh-link-set a + a::before {
  content: '\00B7'; /* · */
  position: absolute;
  left: -22px;
  top: 0;
  color: var(--cpgh-ink-faint);
  border: 0;
}

/* ---------- Header (minimal centered) ---------- */
.cpgh-header {
  background: var(--cpgh-white);
  border-bottom: 0.6px solid var(--cpgh-rule);
  padding: 18px 0 16px;
}
.cpgh-header__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.cpgh-header__left {
  font-family: var(--cpgh-italic);
  font-style: italic;
  font-size: 14px;
  color: var(--cpgh-ink-fade);
  letter-spacing: 0.02em;
}
.cpgh-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  justify-content: center;
}
.cpgh-brand img { width: 38px; height: 38px; display: block; }
.cpgh-brand__words {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cpgh-brand__name {
  font-family: var(--cpgh-serif);
  font-weight: 400;
  font-size: 22px;
  letter-spacing: 0.12em;
  color: var(--cpgh-ink);
  line-height: 1;
  text-transform: uppercase;
}
.cpgh-brand__tag {
  font-family: var(--cpgh-italic);
  font-style: italic;
  font-size: 11.5px;
  letter-spacing: 0.04em;
  color: var(--cpgh-ink-fade);
  margin-top: 2px;
}
.cpgh-header__right {
  text-align: right;
  font-family: var(--cpgh-italic);
  font-style: italic;
  font-size: 14px;
  color: var(--cpgh-ink-fade);
  letter-spacing: 0.02em;
}

.cpgh-nav {
  border-top: 0.6px solid var(--cpgh-rule);
  border-bottom: 0.6px solid var(--cpgh-rule);
  padding: 12px 0;
  margin-top: 16px;
}
.cpgh-nav__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
}
.cpgh-nav a {
  font-family: 'Marcellus SC', var(--cpgh-serif);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cpgh-ink);
  text-decoration: none;
  margin: 0 22px;
  position: relative;
  padding: 4px 0;
}
.cpgh-nav a:hover { color: var(--cpgh-emerald); }
.cpgh-nav a[data-current="1"] {
  color: var(--cpgh-emerald);
}
.cpgh-nav a[data-current="1"]::after {
  content: '\2009\2766\2009';
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--cpgh-italic);
  font-size: 9px;
  color: var(--cpgh-emerald);
}

.cpgh-burger-toggle { position: absolute; left: -9999px; }
.cpgh-burger {
  display: none;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 0;
  background: transparent;
  position: absolute;
  top: 16px;
  right: 24px;
}
.cpgh-burger-bars {
  width: 22px;
  height: 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  pointer-events: none;
}
.cpgh-burger-bars span {
  display: block;
  width: 100%;
  height: 1.4px;
  background: var(--cpgh-ink);
}

.cpgh-drawer-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(14,14,14,0.36);
  z-index: 90;
  cursor: pointer;
}
.cpgh-drawer {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 88vw;
  max-width: 360px;
  height: 100vh;
  background: var(--cpgh-white);
  z-index: 95;
  flex-direction: column;
  border-left: 0.6px solid var(--cpgh-ink);
}
.cpgh-drawer__head {
  padding: 22px 24px 18px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-bottom: 0.6px solid var(--cpgh-rule);
}
.cpgh-drawer__head .cpgh-brand__name { font-size: 16px; }
.cpgh-drawer__close-btn {
  position: relative;
  width: 32px;
  height: 32px;
  cursor: pointer;
}
.cpgh-drawer__close-btn::before,
.cpgh-drawer__close-btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 22px;
  height: 1.4px;
  background: var(--cpgh-ink);
  transform-origin: center;
}
.cpgh-drawer__close-btn::before { transform: translate(-50%, -50%) rotate(45deg); }
.cpgh-drawer__close-btn::after  { transform: translate(-50%, -50%) rotate(-45deg); }
.cpgh-drawer__nav {
  display: flex;
  flex-direction: column;
  padding: 8px 24px;
  flex: 1;
}
.cpgh-drawer__nav a {
  display: block;
  padding: 18px 0;
  font-family: var(--cpgh-serif);
  font-size: 22px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cpgh-ink);
  border-bottom: 0.6px solid var(--cpgh-rule);
  text-decoration: none;
}
.cpgh-drawer__nav a:hover { color: var(--cpgh-emerald); }
.cpgh-drawer__cta {
  display: block;
  margin: 24px 24px 28px;
  padding: 16px;
  border: 0.6px solid var(--cpgh-ink);
  text-align: center;
  font-family: 'Marcellus SC', var(--cpgh-serif);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cpgh-ink);
  text-decoration: none;
}
.cpgh-drawer__cta:hover { background: var(--cpgh-emerald); color: var(--cpgh-white); border-color: var(--cpgh-emerald); }

#cpgh-burger-toggle:checked ~ .cpgh-drawer-backdrop,
#cpgh-burger-toggle:checked ~ .cpgh-drawer {
  display: flex;
}
#cpgh-burger-toggle:checked ~ .cpgh-drawer-backdrop { display: block; }
body:has(#cpgh-burger-toggle:checked) { overflow: hidden; }

/* =====================================================================
 * HOTEL DETAIL — single-column printed-program grammar
 * ===================================================================== */
.cpgh-detail-page { padding: 56px 0 80px; }

/* PLATE — caterer hero */
.cpgh-plate {
  text-align: center;
  margin-bottom: 56px;
}
.cpgh-plate__loc {
  font-family: 'Marcellus SC', var(--cpgh-serif);
  font-size: 12px;
  letter-spacing: 0.32em;
  color: var(--cpgh-ink-fade);
  text-transform: uppercase;
  display: block;
  margin-bottom: 26px;
}
.cpgh-plate__name {
  font-family: var(--cpgh-serif);
  font-weight: 400;
  font-size: 56px;
  line-height: 1.05;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--cpgh-ink);
  margin: 0 0 18px;
  padding: 0 6%;
}
.cpgh-plate__italic {
  font-family: var(--cpgh-italic);
  font-style: italic;
  font-size: 22px;
  color: var(--cpgh-emerald);
  margin: 0 0 22px;
  letter-spacing: 0.01em;
}
.cpgh-plate__phone {
  font-family: var(--cpgh-italic);
  font-style: italic;
  font-size: 17px;
  color: var(--cpgh-ink-soft);
  margin: 0 0 26px;
}
.cpgh-plate__cta {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-top: 22px;
  font-size: 13px;
  letter-spacing: 0.03em;
}
.cpgh-plate__cta a {
  color: var(--cpgh-ink);
  text-decoration: none;
  border-bottom: 0.6px solid var(--cpgh-ink);
  padding: 1px 0 2px;
  margin: 0 22px;
  font-family: var(--cpgh-body);
}
.cpgh-plate__cta a:hover { color: var(--cpgh-emerald); border-bottom-color: var(--cpgh-emerald); }
.cpgh-plate__cta a + a::before {
  content: '\00B7';
  position: absolute;
  margin-left: -24px;
  margin-top: -2px;
  color: var(--cpgh-ink-faint);
}
.cpgh-plate__tier {
  display: inline-block;
  margin-top: 22px;
  padding: 7px 18px;
  border: 0.6px solid var(--cpgh-emerald);
  color: var(--cpgh-emerald);
  font-family: 'Marcellus SC', var(--cpgh-serif);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}
.cpgh-plate__tier[data-on="0"] {
  border-color: var(--cpgh-ink-fade);
  color: var(--cpgh-ink-fade);
}

/* Photo (single 21:9, optional empty state) */
.cpgh-photo {
  margin: 36px 0 0;
  aspect-ratio: 21 / 9;
  overflow: hidden;
}
.cpgh-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cpgh-photo--empty {
  border-top: 0.6px solid var(--cpgh-ink);
  border-bottom: 0.6px solid var(--cpgh-ink);
  text-align: center;
  padding: 44px 24px;
  color: var(--cpgh-ink-fade);
  font-family: var(--cpgh-italic);
  font-style: italic;
  font-size: 16px;
  aspect-ratio: auto;
  background: var(--cpgh-paper);
}
.cpgh-photo--empty span {
  display: block;
  font-family: 'Marcellus SC', var(--cpgh-serif);
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.24em;
  color: var(--cpgh-emerald);
  margin-bottom: 8px;
}

/* Limited callout */
.cpgh-limited {
  margin: 32px auto 0;
  padding: 22px 28px;
  border-top: 0.6px solid var(--cpgh-ink);
  border-bottom: 0.6px solid var(--cpgh-ink);
  text-align: center;
}
.cpgh-limited p {
  margin: 0;
  font-family: var(--cpgh-italic);
  font-style: italic;
  font-size: 16px;
  line-height: 1.55;
  color: var(--cpgh-ink-soft);
}
.cpgh-limited::before {
  content: 'NOTICE';
  display: block;
  font-family: 'Marcellus SC', var(--cpgh-serif);
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.32em;
  color: var(--cpgh-emerald);
  margin-bottom: 10px;
}

/* Standing service — long-form essay with drop cap */
.cpgh-standing {
  font-family: var(--cpgh-body);
  font-size: 17px;
  line-height: 1.78;
  color: var(--cpgh-ink-soft);
  text-align: justify;
  hyphens: auto;
}
.cpgh-standing p { margin: 0 0 18px; }
.cpgh-standing p:first-of-type::first-letter {
  font-family: var(--cpgh-serif);
  font-size: 56px;
  line-height: 0.85;
  float: left;
  margin: 6px 12px 0 0;
  color: var(--cpgh-emerald);
  font-weight: 400;
}

/* THE MENU — dot-leader rows binding event types to evidence source */
.cpgh-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cpgh-menu-list li {
  display: flex;
  align-items: baseline;
  padding: 18px 0;
  border-bottom: 0.6px dotted var(--cpgh-rule);
  gap: 0;
}
.cpgh-menu-list li:last-child { border-bottom: 0; }
.cpgh-menu-list__num {
  width: 56px;
  font-family: var(--cpgh-italic);
  font-style: italic;
  font-size: 16px;
  color: var(--cpgh-emerald);
  flex-shrink: 0;
  letter-spacing: 0;
}
.cpgh-menu-list__title {
  font-family: var(--cpgh-serif);
  font-size: 21px;
  color: var(--cpgh-ink);
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.cpgh-menu-list__leader {
  flex: 1;
  position: relative;
  height: 1px;
  margin: 0 14px;
  align-self: center;
  background-image: radial-gradient(circle, var(--cpgh-ink-fade) 0.6px, transparent 0.7px);
  background-size: 6px 100%;
  background-repeat: repeat-x;
}
.cpgh-menu-list__src {
  font-family: 'Marcellus SC', var(--cpgh-serif);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cpgh-ink-fade);
  flex-shrink: 0;
  white-space: nowrap;
}
.cpgh-menu-list li[data-detected="1"] .cpgh-menu-list__src {
  color: var(--cpgh-emerald);
}
.cpgh-menu-list li[data-detected="0"] .cpgh-menu-list__title {
  color: var(--cpgh-ink-faint);
}
.cpgh-menu-list li[data-detected="0"] .cpgh-menu-list__num {
  color: var(--cpgh-ink-faint);
}
.cpgh-menu-list li[data-detected="0"] .cpgh-menu-list__leader {
  background-image: radial-gradient(circle, var(--cpgh-ink-faint) 0.5px, transparent 0.6px);
}

/* House notes — indented blockquotes */
.cpgh-notes-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cpgh-notes-list li {
  padding: 18px 36px;
  margin-bottom: 18px;
  position: relative;
}
.cpgh-notes-list li:not(:last-child)::after {
  content: '\2766';
  display: block;
  text-align: center;
  color: var(--cpgh-emerald);
  font-family: var(--cpgh-italic);
  font-size: 14px;
  margin-top: 28px;
}
.cpgh-notes-list blockquote {
  margin: 0 0 8px;
  font-family: var(--cpgh-italic);
  font-style: italic;
  font-size: 19px;
  line-height: 1.55;
  color: var(--cpgh-ink);
  text-align: center;
}
.cpgh-notes-list blockquote::before { content: '\201C'; }
.cpgh-notes-list blockquote::after  { content: '\201D'; }
.cpgh-notes-list cite {
  display: block;
  text-align: center;
  font-style: normal;
  font-family: 'Marcellus SC', var(--cpgh-serif);
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--cpgh-ink-fade);
  margin-top: 6px;
}

/* Mise en place — dot-leader booking facts */
.cpgh-facts {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
.cpgh-facts li {
  display: flex;
  align-items: baseline;
  padding: 12px 0;
  border-bottom: 0.6px dotted var(--cpgh-rule);
}
.cpgh-facts li:last-child { border-bottom: 0; }
.cpgh-facts__label {
  font-family: 'Marcellus SC', var(--cpgh-serif);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cpgh-ink-fade);
  flex-shrink: 0;
  white-space: nowrap;
}
.cpgh-facts__leader {
  flex: 1;
  height: 1px;
  margin: 0 12px;
  align-self: center;
  background-image: radial-gradient(circle, var(--cpgh-ink-faint) 0.5px, transparent 0.6px);
  background-size: 5px 100%;
  background-repeat: repeat-x;
}
.cpgh-facts__value {
  font-family: var(--cpgh-body);
  font-size: 14px;
  color: var(--cpgh-ink);
  flex-shrink: 0;
  text-align: right;
  max-width: 50%;
  word-break: break-word;
}
.cpgh-facts__value a { color: var(--cpgh-ink); border-bottom: 0.6px solid var(--cpgh-ink); text-decoration: none; }
.cpgh-facts__value a:hover { color: var(--cpgh-emerald); border-bottom-color: var(--cpgh-emerald); }

/* Map (single thin embed) */
.cpgh-map {
  margin: 24px 0 0;
  border: 0.6px solid var(--cpgh-rule);
  height: 320px;
}
.cpgh-map iframe { width: 100%; height: 100%; border: 0; display: block; }

/* Regional practice — single paragraph, italic small lead */
.cpgh-region p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--cpgh-ink-soft);
  text-align: justify;
}

/* Roman-numeral consider list */
.cpgh-consider {
  counter-reset: cpgh-roman;
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 600px;
}
.cpgh-consider li {
  counter-increment: cpgh-roman;
  position: relative;
  padding: 14px 0 14px 56px;
  border-bottom: 0.6px dotted var(--cpgh-rule);
  font-family: var(--cpgh-body);
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--cpgh-ink-soft);
}
.cpgh-consider li:last-child { border-bottom: 0; }
.cpgh-consider li::before {
  content: counter(cpgh-roman, lower-roman) ".";
  position: absolute;
  left: 0;
  top: 14px;
  font-family: var(--cpgh-italic);
  font-style: italic;
  font-size: 17px;
  color: var(--cpgh-emerald);
  letter-spacing: 0;
}

/* Table-questions — inline Q+A */
.cpgh-faq-list {
  margin: 0;
}
.cpgh-faq-list dt {
  font-family: var(--cpgh-serif);
  font-size: 19px;
  color: var(--cpgh-ink);
  margin: 28px 0 6px;
  letter-spacing: 0.005em;
}
.cpgh-faq-list dt:first-child { margin-top: 0; }
.cpgh-faq-list dt::before {
  content: '\2014\00A0';
  color: var(--cpgh-emerald);
}
.cpgh-faq-list dd {
  margin: 0 0 12px;
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--cpgh-ink-soft);
  padding-left: 0;
}

/* Other kitchens — text-driven roster row */
.cpgh-others {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cpgh-others li {
  border-bottom: 0.6px dotted var(--cpgh-rule);
}
.cpgh-others li:last-child { border-bottom: 0; }
.cpgh-others a {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 14px 0;
  text-decoration: none;
  color: var(--cpgh-ink);
}
.cpgh-others__thumb {
  width: 60px;
  height: 60px;
  background: var(--cpgh-paper);
  background-size: cover;
  background-position: center;
  border: 0.6px solid var(--cpgh-rule);
  border-radius: 50%;
}
.cpgh-others__name {
  font-family: var(--cpgh-serif);
  font-size: 18px;
  letter-spacing: 0.005em;
  color: var(--cpgh-ink);
  display: block;
}
.cpgh-others__loc {
  font-family: var(--cpgh-italic);
  font-style: italic;
  font-size: 14px;
  color: var(--cpgh-ink-fade);
  display: block;
  margin-top: 2px;
}
.cpgh-others__arrow {
  font-family: 'Marcellus SC', var(--cpgh-serif);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--cpgh-ink-fade);
  text-transform: uppercase;
}
.cpgh-others a:hover .cpgh-others__name { color: var(--cpgh-emerald); }

/* =====================================================================
 * INDEX (HOME) — editorial menu cover
 * ===================================================================== */
.cpgh-cover-page {
  padding: 80px 0 64px;
  text-align: center;
}
.cpgh-cover-page__eyebrow {
  font-family: 'Marcellus SC', var(--cpgh-serif);
  font-size: 12px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--cpgh-emerald);
  margin-bottom: 28px;
  display: block;
}
.cpgh-cover-page h1 {
  font-family: var(--cpgh-serif);
  font-weight: 400;
  font-size: 76px;
  line-height: 1.02;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  margin: 0 0 26px;
  color: var(--cpgh-ink);
}
.cpgh-cover-page__italic {
  font-family: var(--cpgh-italic);
  font-style: italic;
  font-size: 26px;
  color: var(--cpgh-emerald);
  display: block;
  margin: 14px 0 28px;
  letter-spacing: 0.005em;
  text-transform: none;
}
.cpgh-cover-page__lede {
  font-size: 17.5px;
  line-height: 1.65;
  color: var(--cpgh-ink-soft);
  max-width: 600px;
  margin: 0 auto 34px;
  text-align: justify;
  hyphens: auto;
}
.cpgh-cover-page__count {
  font-family: var(--cpgh-italic);
  font-style: italic;
  font-size: 19px;
  color: var(--cpgh-ink);
  margin: 36px 0 8px;
}
.cpgh-cover-page__count strong {
  font-style: normal;
  font-family: var(--cpgh-serif);
  font-size: 28px;
  letter-spacing: 0.04em;
  color: var(--cpgh-emerald);
}

/* The Six Courses (home menu) */
.cpgh-courses {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}
.cpgh-courses li {
  display: flex;
  align-items: baseline;
  padding: 22px 0;
  border-bottom: 0.6px solid var(--cpgh-rule);
  text-decoration: none;
  color: inherit;
}
.cpgh-courses li:last-child { border-bottom: 0; }
.cpgh-courses li:first-child { border-top: 0.6px solid var(--cpgh-ink); }
.cpgh-courses li:nth-child(6) { border-bottom: 0.6px solid var(--cpgh-ink); }
.cpgh-courses a {
  display: flex;
  width: 100%;
  align-items: baseline;
  text-decoration: none;
  color: inherit;
  padding: 0;
  gap: 0;
}
.cpgh-courses__num {
  width: 64px;
  font-family: var(--cpgh-italic);
  font-style: italic;
  font-size: 18px;
  color: var(--cpgh-emerald);
  flex-shrink: 0;
}
.cpgh-courses__name {
  font-family: var(--cpgh-serif);
  font-size: 23px;
  color: var(--cpgh-ink);
  flex-shrink: 0;
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.cpgh-courses__leader {
  flex: 1;
  height: 1px;
  margin: 0 16px;
  align-self: center;
  background-image: radial-gradient(circle, var(--cpgh-ink-faint) 0.5px, transparent 0.6px);
  background-size: 6px 100%;
}
.cpgh-courses__count {
  font-family: var(--cpgh-italic);
  font-style: italic;
  font-size: 16px;
  color: var(--cpgh-ink-fade);
  flex-shrink: 0;
}
.cpgh-courses a:hover .cpgh-courses__name { color: var(--cpgh-emerald); }

/* The Roster — 50 states banquet seating chart */
.cpgh-roster {
  columns: 4;
  column-gap: 28px;
  text-align: left;
  font-family: var(--cpgh-italic);
  font-style: italic;
  font-size: 15px;
  color: var(--cpgh-ink-soft);
  letter-spacing: 0.005em;
}
.cpgh-roster a {
  display: flex;
  align-items: baseline;
  padding: 6px 0;
  text-decoration: none;
  color: var(--cpgh-ink);
  border: 0;
  break-inside: avoid;
}
.cpgh-roster a:hover { color: var(--cpgh-emerald); }
.cpgh-roster__name {
  flex-shrink: 0;
  white-space: nowrap;
}
.cpgh-roster__leader {
  flex: 1;
  height: 1px;
  margin: 0 8px;
  align-self: center;
  background-image: radial-gradient(circle, var(--cpgh-ink-faint) 0.5px, transparent 0.6px);
  background-size: 5px 100%;
}
.cpgh-roster__count {
  font-style: normal;
  font-family: var(--cpgh-body);
  font-size: 12px;
  color: var(--cpgh-ink-fade);
  flex-shrink: 0;
}

/* Featured strip — 3 horizontal photo+name+location */
.cpgh-featured {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.cpgh-featured a {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 32px;
  padding: 24px 0;
  text-decoration: none;
  color: inherit;
  align-items: center;
  border-bottom: 0.6px dotted var(--cpgh-rule);
}
.cpgh-featured a:last-child { border-bottom: 0; }
.cpgh-featured a:first-child { border-top: 0.6px solid var(--cpgh-ink); }
.cpgh-featured__cover {
  width: 200px;
  height: 140px;
  background: var(--cpgh-paper);
  background-size: cover;
  background-position: center;
}
.cpgh-featured__no {
  font-family: var(--cpgh-italic);
  font-style: italic;
  font-size: 14px;
  color: var(--cpgh-emerald);
  letter-spacing: 0;
  margin-bottom: 6px;
  display: block;
}
.cpgh-featured__name {
  font-family: var(--cpgh-serif);
  font-size: 26px;
  color: var(--cpgh-ink);
  margin: 0 0 6px;
  letter-spacing: 0.01em;
}
.cpgh-featured__loc {
  font-family: var(--cpgh-italic);
  font-style: italic;
  font-size: 15px;
  color: var(--cpgh-ink-fade);
}
.cpgh-featured a:hover .cpgh-featured__name { color: var(--cpgh-emerald); }

/* Notes preview — 3 horizontal */
.cpgh-notes-preview {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.cpgh-notes-preview a {
  display: block;
  padding: 22px 0;
  text-decoration: none;
  color: inherit;
  border-bottom: 0.6px dotted var(--cpgh-rule);
}
.cpgh-notes-preview a:last-child { border-bottom: 0; }
.cpgh-notes-preview a:first-child { border-top: 0.6px solid var(--cpgh-ink); }
.cpgh-notes-preview__cat {
  font-family: 'Marcellus SC', var(--cpgh-serif);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cpgh-emerald);
  display: block;
  margin-bottom: 8px;
}
.cpgh-notes-preview__title {
  font-family: var(--cpgh-serif);
  font-size: 24px;
  color: var(--cpgh-ink);
  margin: 0 0 6px;
  letter-spacing: 0.005em;
}
.cpgh-notes-preview__excerpt {
  font-family: var(--cpgh-italic);
  font-style: italic;
  font-size: 15.5px;
  color: var(--cpgh-ink-soft);
  margin: 0;
}
.cpgh-notes-preview a:hover .cpgh-notes-preview__title { color: var(--cpgh-emerald); }

/* =====================================================================
 * DESTINATIONS (LISTING) — text-driven roster
 * ===================================================================== */
.cpgh-listing-page { padding: 56px 0 80px; }
.cpgh-listing-hero {
  text-align: center;
  margin-bottom: 56px;
}
.cpgh-listing-hero h1 {
  font-family: var(--cpgh-serif);
  font-weight: 400;
  font-size: 56px;
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 0 0 18px;
}
.cpgh-listing-hero__lede {
  font-size: 16px;
  line-height: 1.6;
  color: var(--cpgh-ink-soft);
  max-width: 580px;
  margin: 0 auto 28px;
}
.cpgh-listing-hero__count {
  font-family: var(--cpgh-italic);
  font-style: italic;
  font-size: 16px;
  color: var(--cpgh-ink);
  margin: 0;
}
.cpgh-listing-hero__count strong {
  font-style: normal;
  font-family: var(--cpgh-serif);
  font-size: 22px;
  letter-spacing: 0.04em;
  color: var(--cpgh-emerald);
}

.cpgh-filters {
  border-top: 0.6px solid var(--cpgh-ink);
  border-bottom: 0.6px solid var(--cpgh-ink);
  padding: 20px 0;
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cpgh-filters__row {
  display: flex;
  align-items: baseline;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
}
.cpgh-filters__row > strong {
  font-family: 'Marcellus SC', var(--cpgh-serif);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cpgh-ink-fade);
  font-weight: 400;
  margin-right: 4px;
}
.cpgh-filters__row a {
  font-family: var(--cpgh-italic);
  font-style: italic;
  font-size: 15px;
  color: var(--cpgh-ink-soft);
  text-decoration: none;
  border-bottom: 0;
  padding: 0 2px;
}
.cpgh-filters__row a:hover {
  color: var(--cpgh-emerald);
}
.cpgh-filters__row a[data-active="1"] {
  color: var(--cpgh-emerald);
  font-style: normal;
  font-family: var(--cpgh-serif);
  border-bottom: 0.6px solid var(--cpgh-emerald);
}
.cpgh-filters__clear {
  display: inline-block;
  font-family: 'Marcellus SC', var(--cpgh-serif);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cpgh-emerald);
  text-decoration: none;
  border-bottom: 0.6px solid var(--cpgh-emerald);
  margin-top: 6px;
}

/* Listing rows — text-driven, no image, dot-leader */
.cpgh-roster-rows {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: cpgh-row;
}
.cpgh-roster-rows li {
  counter-increment: cpgh-row;
  border-bottom: 0.6px solid var(--cpgh-rule);
}
.cpgh-roster-rows li:first-child { border-top: 0.6px solid var(--cpgh-ink); }
.cpgh-roster-rows a {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 18px;
  align-items: baseline;
  padding: 22px 0;
  text-decoration: none;
  color: inherit;
}
.cpgh-roster-rows__no {
  font-family: var(--cpgh-italic);
  font-style: italic;
  font-size: 15px;
  color: var(--cpgh-emerald);
}
.cpgh-roster-rows__no::before {
  content: counter(cpgh-row, decimal-leading-zero);
  font-family: var(--cpgh-italic);
}
.cpgh-roster-rows__body {}
.cpgh-roster-rows__name {
  font-family: var(--cpgh-serif);
  font-size: 24px;
  letter-spacing: 0.01em;
  color: var(--cpgh-ink);
  margin: 0 0 4px;
  line-height: 1.15;
}
.cpgh-roster-rows__loc {
  font-family: var(--cpgh-italic);
  font-style: italic;
  font-size: 14.5px;
  color: var(--cpgh-ink-soft);
  display: block;
  margin-bottom: 6px;
}
.cpgh-roster-rows__sig {
  font-family: var(--cpgh-body);
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--cpgh-ink-fade);
  display: block;
  max-width: 70ch;
}
.cpgh-roster-rows__sig em {
  font-family: var(--cpgh-italic);
  font-style: italic;
  color: var(--cpgh-emerald);
}
.cpgh-roster-rows__tier {
  font-family: 'Marcellus SC', var(--cpgh-serif);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cpgh-ink-fade);
  white-space: nowrap;
  align-self: center;
}
.cpgh-roster-rows__tier[data-on="1"] {
  color: var(--cpgh-emerald);
}
.cpgh-roster-rows a:hover .cpgh-roster-rows__name { color: var(--cpgh-emerald); }

/* Pagination */
.cpgh-pagination {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 0;
  margin-top: 56px;
  padding-top: 24px;
  font-family: 'Marcellus SC', var(--cpgh-serif);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.cpgh-pagination a, .cpgh-pagination span {
  margin: 0 22px;
  color: var(--cpgh-ink);
  text-decoration: none;
  border-bottom: 0.6px solid var(--cpgh-ink);
  padding-bottom: 1px;
}
.cpgh-pagination span {
  font-family: var(--cpgh-italic);
  font-style: italic;
  letter-spacing: 0.01em;
  color: var(--cpgh-ink-fade);
  border: 0;
  text-transform: none;
  font-size: 14px;
}
.cpgh-pagination a:hover { color: var(--cpgh-emerald); border-bottom-color: var(--cpgh-emerald); }
.cpgh-pagination a[aria-disabled="true"] { color: var(--cpgh-ink-faint); border-bottom-color: var(--cpgh-ink-faint); pointer-events: none; }

/* =====================================================================
 * STATIC pages (about, contact, 404, policy, blog list, blog detail)
 * ===================================================================== */
.cpgh-static {
  padding: 56px 0 64px;
}
.cpgh-static__breadcrumb {
  font-family: var(--cpgh-italic);
  font-style: italic;
  font-size: 13px;
  color: var(--cpgh-ink-fade);
  margin-bottom: 24px;
  text-align: center;
}
.cpgh-static__breadcrumb a {
  color: var(--cpgh-ink-fade);
  text-decoration: none;
  border-bottom: 0.6px solid var(--cpgh-ink-fade);
}
.cpgh-static__breadcrumb a:hover { color: var(--cpgh-emerald); border-bottom-color: var(--cpgh-emerald); }
.cpgh-static h1 {
  font-family: var(--cpgh-serif);
  font-weight: 400;
  font-size: 50px;
  line-height: 1.07;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 0 0 18px;
  text-align: center;
}
.cpgh-static__lede {
  font-family: var(--cpgh-italic);
  font-style: italic;
  font-size: 21px;
  line-height: 1.5;
  color: var(--cpgh-emerald);
  margin: 0 auto 32px;
  text-align: center;
  max-width: 620px;
}
.cpgh-static h2 {
  font-family: 'Marcellus SC', var(--cpgh-serif);
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  margin: 36px 0 12px;
  color: var(--cpgh-ink);
  text-align: center;
}
.cpgh-static p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--cpgh-ink-soft);
  text-align: justify;
  hyphens: auto;
}
.cpgh-static ul, .cpgh-static ol {
  font-size: 16px;
  line-height: 1.75;
  color: var(--cpgh-ink-soft);
  padding-left: 22px;
}

.cpgh-static__contact-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  margin: 28px 0;
}
.cpgh-static__contact-pair > div {
  text-align: center;
}
.cpgh-static__contact-pair h3 {
  font-family: 'Marcellus SC', var(--cpgh-serif);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin: 0 0 8px;
  font-weight: 400;
  color: var(--cpgh-emerald);
}
.cpgh-static__contact-pair p {
  text-align: center;
  font-size: 15px;
}

.cpgh-404-block {
  text-align: center;
  padding: 72px 0;
}
.cpgh-404-block .cpgh-smallcaps {
  display: block;
  margin-bottom: 22px;
  font-size: 13px;
  letter-spacing: 0.32em;
  color: var(--cpgh-emerald);
}
.cpgh-404-block h1 {
  font-family: var(--cpgh-serif);
  font-weight: 400;
  font-size: 78px;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 14px;
}
.cpgh-404-block__copy {
  font-family: var(--cpgh-italic);
  font-style: italic;
  font-size: 19px;
  color: var(--cpgh-ink-soft);
  max-width: 520px;
  margin: 0 auto 28px;
  line-height: 1.5;
  text-align: center;
}

/* Blog list (centered editorial listing) */
.cpgh-blog-listing {
  padding-top: 56px;
}
.cpgh-blog-listing__roster {
  list-style: none;
  padding: 0;
  margin: 36px 0 0;
}
.cpgh-blog-listing__roster li {
  border-top: 0.6px solid var(--cpgh-rule);
  padding: 26px 0;
}
.cpgh-blog-listing__roster li:first-child { border-top: 0.6px solid var(--cpgh-ink); }
.cpgh-blog-listing__roster li:last-child { border-bottom: 0.6px solid var(--cpgh-ink); }
.cpgh-blog-listing__roster a {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 24px;
  align-items: start;
  text-decoration: none;
  color: inherit;
}
.cpgh-blog-listing__thumb {
  display: block;
  width: 140px;
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  background-color: var(--cpgh-paper-deep, #f0ece0);
  border: 0.6px solid var(--cpgh-rule);
}
.cpgh-blog-listing__thumb--blank {
  background-image:
    repeating-linear-gradient(45deg,
      var(--cpgh-rule) 0 1px,
      transparent 1px 12px);
}
.cpgh-blog-listing__text {
  display: block;
  min-width: 0;
}
@media (max-width: 640px) {
  .cpgh-blog-listing__roster a { grid-template-columns: 1fr; gap: 14px; }
  .cpgh-blog-listing__thumb { width: 100%; aspect-ratio: 16 / 9; }
}
.cpgh-blog-listing__cat {
  font-family: 'Marcellus SC', var(--cpgh-serif);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cpgh-emerald);
  display: block;
  margin-bottom: 6px;
}
.cpgh-blog-listing__title {
  font-family: var(--cpgh-serif);
  font-size: 26px;
  margin: 0 0 6px;
  letter-spacing: 0.005em;
}
.cpgh-blog-listing__excerpt {
  font-family: var(--cpgh-italic);
  font-style: italic;
  font-size: 16px;
  color: var(--cpgh-ink-soft);
  margin: 0;
}
.cpgh-blog-listing__roster a:hover .cpgh-blog-listing__title { color: var(--cpgh-emerald); }

/* Blog detail */
.cpgh-blog-detail {
  padding: 56px 0;
  text-align: center;
}
.cpgh-blog-detail__back {
  display: inline-block;
  font-family: var(--cpgh-italic);
  font-style: italic;
  font-size: 14px;
  color: var(--cpgh-emerald);
  text-decoration: none;
  border-bottom: 0.6px solid var(--cpgh-emerald);
  margin-bottom: 24px;
}
.cpgh-blog-detail__meta {
  font-family: 'Marcellus SC', var(--cpgh-serif);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cpgh-ink-fade);
  margin-bottom: 18px;
  display: block;
}
.cpgh-blog-detail h1 {
  font-family: var(--cpgh-serif);
  font-weight: 400;
  font-size: 50px;
  line-height: 1.07;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 0 0 22px;
}
.cpgh-blog-detail__excerpt {
  font-family: var(--cpgh-italic);
  font-style: italic;
  font-size: 22px;
  line-height: 1.45;
  color: var(--cpgh-emerald);
  margin: 0 auto 36px;
  max-width: 580px;
}
.cpgh-blog-detail__cover {
  width: 100%;
  max-width: 920px;
  margin: 0 auto 36px;
  aspect-ratio: 16 / 9;
  background: var(--cpgh-paper);
  background-size: cover;
  background-position: center;
}
.cpgh-blog-detail__body {
  text-align: left;
  font-size: 17px;
  line-height: 1.78;
  color: var(--cpgh-ink-soft);
}
.cpgh-blog-detail__body p { margin: 0 0 20px; }
.cpgh-blog-detail__body p:first-of-type::first-letter {
  font-family: var(--cpgh-serif);
  font-size: 56px;
  line-height: 0.85;
  float: left;
  margin: 6px 12px 0 0;
  color: var(--cpgh-emerald);
}
.cpgh-blog-detail__body h2 {
  font-family: 'Marcellus SC', var(--cpgh-serif);
  font-size: 13px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin: 36px 0 12px;
  text-align: center;
  color: var(--cpgh-ink);
  font-weight: 400;
}
.cpgh-blog-detail__body h3 {
  font-family: var(--cpgh-serif);
  font-size: 22px;
  margin: 28px 0 8px;
  color: var(--cpgh-ink);
}
.cpgh-blog-detail__promo {
  margin: 36px 0;
  padding: 24px 0;
  border-top: 0.6px solid var(--cpgh-ink);
  border-bottom: 0.6px solid var(--cpgh-ink);
  text-align: center;
}
.cpgh-blog-detail__promo span {
  font-family: 'Marcellus SC', var(--cpgh-serif);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cpgh-emerald);
  display: block;
  margin-bottom: 6px;
}
.cpgh-blog-detail__promo h4 {
  font-family: var(--cpgh-serif);
  font-size: 22px;
  margin: 0 0 6px;
  letter-spacing: 0.01em;
}
.cpgh-blog-detail__promo p {
  font-family: var(--cpgh-italic);
  font-style: italic;
  font-size: 14.5px;
  color: var(--cpgh-ink-soft);
  margin: 0 auto 12px;
  max-width: 520px;
  text-align: center;
}

/* =====================================================================
 * Footer (centered minimal)
 * ===================================================================== */
.cpgh-footer {
  border-top: 0.6px solid var(--cpgh-ink);
  margin-top: 80px;
  padding: 40px 0 32px;
  text-align: center;
}
.cpgh-footer__brand {
  font-family: var(--cpgh-serif);
  font-size: 22px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cpgh-ink);
  display: inline-block;
  margin-bottom: 8px;
}
.cpgh-footer__tag {
  font-family: var(--cpgh-italic);
  font-style: italic;
  font-size: 14px;
  color: var(--cpgh-ink-fade);
  margin-bottom: 24px;
}
.cpgh-footer__nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  margin: 18px 0 24px;
}
.cpgh-footer__nav a {
  font-family: 'Marcellus SC', var(--cpgh-serif);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cpgh-ink);
  text-decoration: none;
  margin: 4px 18px;
}
.cpgh-footer__nav a:hover { color: var(--cpgh-emerald); }
.cpgh-footer__states {
  font-family: var(--cpgh-italic);
  font-style: italic;
  font-size: 13px;
  color: var(--cpgh-ink-fade);
  margin: 24px auto 18px;
  max-width: 740px;
  line-height: 1.85;
}
.cpgh-footer__states a {
  color: var(--cpgh-ink-soft);
  text-decoration: none;
  border-bottom: 0;
  margin: 0 6px;
}
.cpgh-footer__states a:hover { color: var(--cpgh-emerald); }
.cpgh-footer__bottom {
  font-family: var(--cpgh-italic);
  font-style: italic;
  font-size: 13px;
  color: var(--cpgh-ink-fade);
  border-top: 0.6px solid var(--cpgh-rule);
  padding-top: 16px;
  margin-top: 24px;
}

/* =====================================================================
 * Mobile breakpoints
 * ===================================================================== */
@media (max-width: 880px) {
  .cpgh-header__inner { grid-template-columns: 1fr; gap: 8px; }
  .cpgh-header__left, .cpgh-header__right { display: none; }
  .cpgh-nav { display: none; }
  .cpgh-burger { display: flex; }
  .cpgh-roster { columns: 3; }
  .cpgh-static__contact-pair { grid-template-columns: 1fr; gap: 16px; }
  .cpgh-cover-page { padding: 56px 0 44px; }
  .cpgh-cover-page h1 { font-size: 48px; }
  .cpgh-cover-page__italic { font-size: 22px; }
  .cpgh-listing-hero h1 { font-size: 38px; }
  .cpgh-static h1 { font-size: 38px; }
  .cpgh-blog-detail h1 { font-size: 36px; }
  .cpgh-plate__name { font-size: 36px; padding: 0; }
  .cpgh-plate__italic { font-size: 19px; }
  .cpgh-plate__cta { flex-direction: column; gap: 14px; }
  .cpgh-plate__cta a { margin: 0; }
  .cpgh-plate__cta a + a::before { display: none; }
  .cpgh-photo { aspect-ratio: 16 / 9; }
  .cpgh-roster-rows a { grid-template-columns: 40px 1fr; gap: 12px; padding: 18px 0; }
  .cpgh-roster-rows__tier { display: none; }
  .cpgh-roster-rows__name { font-size: 19px; }
  .cpgh-featured a { grid-template-columns: 1fr; gap: 16px; }
  .cpgh-featured__cover { width: 100%; height: 200px; }
  .cpgh-courses__num { width: 40px; font-size: 15px; }
  .cpgh-courses__name { font-size: 18px; }
  .cpgh-courses__count { font-size: 13px; }
  .cpgh-menu-list__num { width: 40px; font-size: 14px; }
  .cpgh-menu-list__title { font-size: 17px; }
  .cpgh-menu-list__src { font-size: 9.5px; letter-spacing: 0.14em; }
  .cpgh-menu-list__leader { margin: 0 8px; }
  .cpgh-others a { grid-template-columns: 48px 1fr; }
  .cpgh-others__thumb { width: 48px; height: 48px; }
  .cpgh-others__arrow { display: none; }
  .cpgh-facts__value { font-size: 13px; }
  .cpgh-filters__row { gap: 10px; }
  .cpgh-filters__row a { font-size: 13.5px; }
  .cpgh-pagination a, .cpgh-pagination span { margin: 0 12px; }
}

@media (max-width: 520px) {
  .cpgh-cover-page h1 { font-size: 38px; }
  .cpgh-listing-hero h1 { font-size: 30px; }
  .cpgh-static h1 { font-size: 30px; }
  .cpgh-blog-detail h1 { font-size: 28px; }
  .cpgh-plate__name { font-size: 28px; }
  .cpgh-plate__loc { font-size: 11px; letter-spacing: 0.24em; }
  .cpgh-roster { columns: 2; }
  .cpgh-courses a { flex-wrap: wrap; }
  .cpgh-courses__leader { display: none; }
  .cpgh-courses__count { margin-left: auto; }
  .cpgh-menu-list li { flex-wrap: wrap; }
  .cpgh-menu-list__leader { display: none; }
  .cpgh-menu-list__src { margin-left: auto; }
}
