:root {
  --bg: #0f0f11;
  --surface: #17171a;
  --surface-alt: #1e1e22;
  --text: #f2f2f4;
  --text-muted: #a8a8ae;
  --border: rgba(242, 242, 244, 0.13);
  --accent: #cbb26a;
  --accent-2: #5a6070;
  --secondary: #0a0a0c;
  --on-accent: #0f0f11;
  --deep: #070708;
  --radius: 0px;
  --btn-radius: 6px;
  --content: 1060px;
  --rail: 220px;
  --font-head: Constantia, Georgia, serif;
  --font-body: Calibri, "Segoe UI", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.64;
  color: var(--text);
  background-color: var(--bg);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  min-height: 100vh;
}

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

a {
  color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--text);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: -0.3px;
  line-height: 1.2;
  margin: 0 0 0.6em;
}

h1 {
  font-size: clamp(34px, 5.2vw, 56px);
  line-height: 1.12;
}

h2 {
  font-size: clamp(23px, 3.4vw, 34px);
}

h3 {
  font-size: clamp(18px, 2.2vw, 22px);
}

p {
  margin: 0 0 1em;
}

ul,
ol {
  margin: 0 0 1em;
  padding-left: 1.25em;
}

.utility-strip {
  background: var(--deep);
  border-bottom: 1px solid var(--border);
  padding: 0.35rem 1.25rem;
  text-align: right;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.utility-strip a {
  color: var(--text-muted);
  text-decoration: none;
}

.utility-strip a:hover {
  color: var(--accent);
}

.site-header {
  position: relative;
  z-index: 40;
  background: var(--secondary);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 1.25rem;
  max-width: none;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--text);
  flex-shrink: 0;
}

.brand img {
  width: 36px;
  height: 41px;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-name {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-variant: small-caps;
  letter-spacing: 0.12em;
  text-transform: lowercase;
  font-weight: 700;
}

.brand-desc {
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: lowercase;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  width: 42px;
  height: 42px;
  border-radius: var(--btn-radius);
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
}

.nav-toggle-bars {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  position: relative;
}

.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--text);
}

.nav-toggle-bars::before {
  top: -6px;
}

.nav-toggle-bars::after {
  top: 6px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem 1.1rem;
  flex-wrap: wrap;
}

.site-nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 400;
  font-size: 0.95rem;
  padding: 0.2rem 0;
}

.site-nav a:hover {
  color: var(--accent);
}

.site-nav a[aria-current="page"] {
  color: var(--accent);
  border-bottom: 1px solid var(--accent);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-left: 0.35rem;
}

.nav-cta .pill {
  display: inline-block;
  background: var(--accent);
  color: var(--on-accent);
  text-decoration: none;
  font-size: 0.8rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-weight: 600;
}

.nav-cta .pill:hover {
  color: var(--on-accent);
  filter: brightness(1.05);
}

.nav-cta .micro-mail {
  font-size: 0.68rem;
  color: var(--text-muted);
  text-decoration: none;
}

.nav-cta .micro-mail:hover {
  color: var(--accent);
}

.page-shell {
  min-width: 0;
}

.wrap {
  width: min(100% - 2.5rem, var(--content));
  margin-inline: auto;
}

.section {
  padding: 80px 0;
}

.section-tight {
  padding: 56px 0;
}

.kicker {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 0.75rem;
}

.btn {
  display: inline-block;
  background: var(--accent);
  color: var(--on-accent);
  text-decoration: none;
  border: 1px solid var(--accent);
  border-radius: var(--btn-radius);
  padding: 0.65rem 1.15rem;
  font-size: 0.95rem;
  font-family: var(--font-body);
  cursor: pointer;
  line-height: 1.2;
}

.btn:hover {
  color: var(--on-accent);
  filter: brightness(1.06);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.btn-ghost:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.hero-framed {
  text-align: center;
  padding: 72px 0 56px;
}

.hero-framed h1 {
  margin-bottom: 1.25rem;
}

.hero-framed .hero-photo {
  width: min(420px, 78vw);
  margin: 0 auto 1.35rem;
  border: 1px solid var(--border);
}

.hero-framed .hero-photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.hero-framed .standfirst {
  max-width: 38rem;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.venue-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.venue-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.venue-card-media {
  position: relative;
  border-bottom: 1px solid var(--border);
}

.venue-card-media img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.rating-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: var(--deep);
  color: var(--accent);
  border: 1px solid var(--border);
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
}

.venue-card-body {
  padding: 1rem 1.05rem 1.15rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.55rem;
}

.venue-card-body .kicker {
  margin: 0;
}

.venue-card-body h2 {
  font-size: clamp(20px, 2.4vw, 26px);
  margin: 0;
}

.venue-card-body h2 a {
  color: var(--text);
  text-decoration: none;
}

.venue-card-body h2 a:hover {
  color: var(--accent);
}

.venue-card-body .place {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
}

.venue-card-body .blurb {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0;
  flex: 1;
}

.venue-card-body .card-link {
  margin-top: 0.35rem;
  align-self: flex-start;
}

.prose-col {
  max-width: 40rem;
}

.method-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 2rem;
}

.method-item {
  border-top: 1px solid var(--border);
  padding-top: 0.85rem;
}

.method-item strong {
  display: block;
  font-family: var(--font-head);
  margin-bottom: 0.25rem;
}

.method-item p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.quote-stack {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.quote-item {
  border-left: 3px solid var(--accent);
  padding: 0.15rem 0 0.15rem 1.1rem;
}

.quote-item blockquote {
  margin: 0 0 0.5rem;
  font-family: var(--font-head);
  font-size: 1.05rem;
  line-height: 1.5;
}

.quote-item cite {
  font-style: normal;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.writers-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.85rem;
}

.writer-tile {
  text-align: center;
  text-decoration: none;
  color: var(--text);
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 1rem 0.5rem;
}

.writer-tile:hover {
  border-color: var(--accent);
  color: var(--text);
}

.monogram {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface-alt);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 0.85rem;
  color: var(--accent);
  letter-spacing: 0.04em;
}

.writer-tile .name {
  display: block;
  margin-top: 0.65rem;
  font-size: 0.85rem;
  font-family: var(--font-head);
}

.writer-tile .role {
  display: block;
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

.dual-band {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.25rem;
  align-items: stretch;
}

.panel-bordered {
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 1.25rem 1.35rem;
}

.notice-band {
  background: var(--deep);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.35rem 0;
}

.notice-band p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.85rem;
  max-width: 52rem;
}

.site-footer {
  background: var(--surface-alt);
  padding: 3.5rem 0 0;
  text-align: center;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--text);
  margin-bottom: 1rem;
}

.footer-brand img {
  width: 32px;
  height: 36px;
}

.footer-blurb {
  max-width: 28rem;
  margin: 0 auto 1.75rem;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.footer-invite {
  margin: 0 0 1.5rem;
  font-size: 0.95rem;
}

.footer-name-row {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0.85rem 0;
  margin: 0 0 1.75rem;
  font-family: var(--font-head);
  font-variant: small-caps;
  letter-spacing: 0.22em;
  text-transform: lowercase;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer-groups {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.footer-group h3 {
  font-size: 1rem;
  margin: 0 auto 0.65rem;
  display: inline-block;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.35rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem 1rem;
  font-size: 0.88rem;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-email {
  margin: 0 0 1.5rem;
  font-size: 0.9rem;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 0.85rem 1.25rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  text-align: left;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.footer-bottom-right {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.85rem;
  justify-content: flex-end;
}

.footer-bottom a,
.footer-bottom button {
  color: var(--text-muted);
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  text-decoration: none;
}

.footer-bottom a:hover,
.footer-bottom button:hover {
  color: var(--accent);
}

.rg-line {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 1.5rem 0 0;
}

.review-header {
  padding: 2.5rem 0 1.5rem;
  border-bottom: 1px solid var(--border);
}

.review-meta {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0 0 0.35rem;
}

.review-rating {
  color: var(--accent);
  font-size: 0.95rem;
  margin: 0;
}

.review-cat {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-2);
}

.reviews-open {
  padding: 2.5rem 0 1rem;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.review-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-height: 100%;
}

.review-card .stars {
  color: var(--accent);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}

.review-card blockquote {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  white-space: pre-wrap;
}

.guest-photos {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.guest-photo-btn {
  border: 1px solid var(--border);
  background: var(--surface-alt);
  padding: 0;
  cursor: zoom-in;
  max-width: 140px;
}

.guest-photo-btn img {
  width: 140px;
  height: 105px;
  object-fit: cover;
}

.guest-photo-cap {
  font-size: 0.7rem;
  color: var(--text-muted);
  padding: 0.25rem 0.35rem;
  text-align: left;
}

.review-card .attribution {
  margin-top: auto;
  font-size: 0.82rem;
  color: var(--text-muted);
  padding-top: 0.35rem;
}

.lead-photo {
  margin: 2rem auto;
  max-width: 720px;
  border: 1px solid var(--border);
}

.lead-photo img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.lead-photo figcaption {
  font-size: 0.8rem;
  color: var(--text-muted);
  padding: 0.55rem 0.75rem;
  border-top: 1px solid var(--border);
  background: var(--surface);
}

.byline {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin: 1.5rem 0 2rem;
  padding: 0.85rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.byline a {
  color: var(--text);
  text-decoration: none;
}

.byline a:hover {
  color: var(--accent);
}

.byline .role {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.article-body {
  max-width: 42rem;
}

.article-body h2 {
  margin-top: 1.75rem;
}

.article-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin: 1.75rem 0;
}

.article-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid var(--border);
}

.aboard-block {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 1.5rem 1.35rem;
  margin: 2.5rem 0;
}

.facts-panel {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem 1.5rem;
  border: 1px solid var(--border);
  background: var(--surface-alt);
  padding: 1.25rem 1.35rem;
  margin: 2rem 0;
}

.facts-panel dt {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0;
}

.facts-panel dd {
  margin: 0.15rem 0 0.65rem;
}

.cta-block {
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 2rem 1.5rem;
  margin: 2.5rem 0 1rem;
  text-align: center;
}

.cta-block address {
  font-style: normal;
  color: var(--text-muted);
  margin: 0.75rem 0 1.25rem;
}

.map-slot {
  margin: 1.25rem 0;
  border: 1px solid var(--border);
  background: var(--surface-alt);
  min-height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.25rem;
}

.map-slot iframe {
  width: 100%;
  height: 340px;
  border: 0;
  display: block;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1rem;
}

.editorial-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 2.5rem;
  align-items: start;
  padding: 2.5rem 0 4rem;
}

.toc {
  position: sticky;
  top: 1rem;
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 1rem;
}

.toc h2 {
  font-size: 0.85rem;
  margin: 0 0 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.toc ol {
  margin: 0;
  padding-left: 1.1em;
  font-size: 0.9rem;
}

.toc a {
  color: var(--text-muted);
  text-decoration: none;
}

.toc a:hover {
  color: var(--accent);
}

.editorial-prose h2 {
  scroll-margin-top: 1rem;
}

.authors-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 2.5rem 0 4rem;
}

.author-entry {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.15rem;
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 1.25rem;
}

.author-entry h2 {
  margin: 0 0 0.25rem;
  font-size: clamp(20px, 2.5vw, 26px);
}

.author-entry .role {
  color: var(--accent);
  font-size: 0.9rem;
  margin: 0 0 0.65rem;
}

.form-page {
  max-width: 560px;
  margin: 0 auto;
  padding: 2.5rem 0 4rem;
}

.form-set {
  margin-bottom: 1.5rem;
}

.form-set legend {
  font-family: var(--font-head);
  font-size: 1.15rem;
  padding: 0;
  margin-bottom: 0.85rem;
}

.form-rule {
  border: 0;
  border-top: 1px solid var(--border);
  margin: 1.5rem 0;
}

.form-row {
  margin-bottom: 1rem;
}

.form-row label {
  display: block;
  font-size: 0.88rem;
  margin-bottom: 0.35rem;
  color: var(--text-muted);
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: var(--btn-radius);
  padding: 0.65rem 0.75rem;
  font: inherit;
}

.form-row textarea {
  min-height: 120px;
  resize: vertical;
}

.agree-row {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  margin: 1.25rem 0;
  font-size: 0.92rem;
}

.agree-row input {
  margin-top: 0.3rem;
  flex-shrink: 0;
}

.form-error {
  color: #e8a0a0;
  font-size: 0.85rem;
  margin: 0.35rem 0 0;
}

.confirm-panel {
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 1.75rem 1.35rem;
}

.legal-body {
  padding: 2.5rem 0 4rem;
  max-width: 42rem;
}

.legal-body h1 {
  margin-bottom: 0.5rem;
}

.sitemap-list {
  padding: 2.5rem 0 4rem;
  max-width: 40rem;
}

.sitemap-list ol {
  line-height: 2;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(7, 7, 8, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.lightbox.is-open {
  display: flex;
}

.lightbox-inner {
  position: relative;
  max-width: 92vw;
  text-align: center;
}

.lightbox-inner img {
  max-width: 92vw;
  max-height: 88vh;
  width: auto;
  height: auto;
  object-fit: contain;
  margin: 0 auto;
}

.lightbox-cap {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 0.75rem;
}

.lightbox-close {
  position: absolute;
  top: -2.5rem;
  right: 0;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  width: 36px;
  height: 36px;
  border-radius: var(--btn-radius);
  cursor: pointer;
  font-size: 1.2rem;
  line-height: 1;
}

.consent {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 80;
  display: none;
  background: rgba(23, 23, 26, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  padding: 1.15rem 1.25rem;
}

.consent.is-visible {
  display: block;
}

.consent-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1rem 1.25rem;
  align-items: center;
  max-width: 1060px;
  margin: 0 auto;
}

.consent-copy {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.5;
}

.consent-divider {
  width: 1px;
  align-self: stretch;
  background: var(--border);
}

.consent-controls {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.consent-btns {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.45rem;
}

.consent-btns button,
.consent-manage,
.consent-back {
  font: inherit;
  cursor: pointer;
  border-radius: var(--btn-radius);
  border: 1px solid var(--border);
  background: var(--surface-alt);
  color: var(--text);
  padding: 0.55rem 0.45rem;
  font-size: 0.8rem;
}

.consent-btns .consent-allow {
  background: var(--accent);
  color: var(--on-accent);
  border-color: var(--accent);
}

.consent-manage,
.consent-back {
  background: transparent;
  text-align: left;
  padding-left: 0;
  border: none;
  color: var(--text-muted);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.consent-policy {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.consent-cats {
  display: none;
  flex-direction: column;
  gap: 0.65rem;
}

.consent-cats.is-open {
  display: flex;
}

.consent-step-main.is-hidden {
  display: none;
}

.consent-cat {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.88rem;
}

.consent-cat input:disabled {
  opacity: 0.7;
}

.page-title-band {
  padding: 2.75rem 0 1.5rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 0;
}

.page-title-band p {
  color: var(--text-muted);
  max-width: 36rem;
  margin: 0;
}

@media (min-width: 1101px) {
  .utility-wrap {
    position: static;
  }

  .utility-strip {
    position: relative;
    z-index: 60;
    margin-left: 0;
  }

  .site-header {
    position: fixed;
    top: 28px;
    left: 0;
    bottom: 0;
    width: var(--rail);
    border-bottom: none;
    border-right: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    padding: 0;
    overflow-y: auto;
    z-index: 50;
  }

  .header-inner {
    flex-direction: column;
    align-items: stretch;
    padding: 1.25rem 1rem;
    gap: 1.5rem;
    height: 100%;
  }

  .brand {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-toggle {
    display: none !important;
  }

  .site-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
    flex: 1;
  }

  .site-nav a {
    display: block;
  }

  .nav-cta {
    flex-direction: column;
    align-items: flex-start;
    margin: auto 0 0;
    gap: 0.35rem;
  }

  .page-shell {
    margin-left: var(--rail);
  }
}

@media (max-width: 1100px) {
  .site-header {
    position: sticky;
    top: 0;
  }
}

@media (max-width: 1024px) {
  .writers-row {
    grid-template-columns: repeat(3, 1fr);
  }

  .dual-band {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .editorial-layout {
    grid-template-columns: 1fr;
  }

  .toc {
    position: static;
  }
}

@media (max-width: 860px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--secondary);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.25rem 1.25rem;
    gap: 0.75rem;
  }

  .site-nav.is-open {
    display: flex;
  }

  .nav-cta {
    margin-left: 0;
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .venue-grid,
  .method-grid,
  .reviews-grid,
  .article-gallery,
  .facts-panel {
    grid-template-columns: 1fr;
  }

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

  .consent-grid {
    grid-template-columns: 1fr;
  }

  .consent-divider {
    width: 100%;
    height: 1px;
  }

  .consent-btns {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom-right {
    justify-content: center;
  }

  .section {
    padding: 56px 0;
  }
}

@media (max-width: 480px) {
  .wrap {
    width: min(100% - 1.5rem, var(--content));
  }

  .writers-row {
    grid-template-columns: 1fr 1fr;
  }

  .author-entry {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .author-entry .monogram {
    margin: 0 auto;
  }

  .guest-photo-btn {
    max-width: 120px;
  }

  .guest-photo-btn img {
    width: 120px;
    height: 90px;
  }
}
