/* ══════════════════════════════════════════════════════════════════════════
   Site layer — structure shared by both directions. Everything that differs
   between "Clean & Modern" and "Heritage & Edwardian" lives in modern.css /
   heritage.css; this file only lays things out.

   The design canvas draws fixed 1440px frames. Here those become a fluid
   page: --gutter and --measure carry the frame's 40px edge and its column
   rhythm down to a phone.
   ══════════════════════════════════════════════════════════════════════ */

:root {
  --gutter: clamp(20px, 4vw, 40px);
  --frame: 1440px;
  --rule: 2px;
  --hairline: 1px;
  --bookbar-h: 68px;
}

/* The UA rule for [hidden] is `display: none` at attribute specificity, so any
   component class that sets `display` silently wins over it. Since the carousel,
   the changeover state and the small-screen nav are all driven by toggling
   `hidden`, promote it once here rather than patching each component. */
[hidden] { display: none !important; }

html { -webkit-text-size-adjust: 100%; }
body { overflow-x: hidden; }
img, svg { max-width: 100%; }

/* .grayscale (design system) is for photography. Where the design marked a slot
   that has no photograph yet, desaturating turns the placeholder's own ground
   grey — wrong against a tinted page — so exempt those. */
.grayscale:has(.imgslot) { filter: none; }
:where(ul, ol).plain { list-style: none; margin: 0; padding: 0; }

/* Anchors land clear of the sticky masthead. */
:target { scroll-margin-top: 96px; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

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

/* — skip link — */
.skip {
  position: absolute; left: var(--gutter); top: -100px; z-index: 200;
  padding: 10px 16px; background: var(--color-text); color: var(--color-neutral-100);
  font-weight: 800; font-size: 14px; text-decoration: none;
  transition: top 0.15s ease;
}
.skip:focus { top: 12px; }

/* — shell — */
.shell { max-width: var(--frame); margin: 0 auto; }
.pad { padding-inline: var(--gutter); }
.section { padding: clamp(28px, 4vw, 40px) var(--gutter); }
.section--tight { padding-block: clamp(22px, 3vw, 28px); }
.stack { display: flex; flex-direction: column; }
.divide-t { border-top: var(--rule) solid var(--edge); }
.divide-b { border-bottom: var(--rule) solid var(--edge); }
.measure { max-width: 62ch; }

/* Reusable eyebrow / kicker. */
.eyebrow {
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  font-weight: 800; margin: 0 0 6px;
}
.eyebrow--accent { color: var(--color-accent-700); }

/* ── masthead ─────────────────────────────────────────────────────────── */
.masthead { position: sticky; top: 0; z-index: 60; background: var(--surface-page); }
.masthead__inner {
  max-width: var(--frame); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding-inline: var(--gutter); min-height: 76px;
}
.brand { display: flex; align-items: center; gap: 14px; text-decoration: none; color: inherit; }
.brand__mark {
  width: 30px; height: 44px; flex: none; border: 2px solid currentColor;
  display: flex; align-items: flex-start; justify-content: center; padding-top: 4px;
}
.brand__mark i {
  width: 16px; height: 16px; border: 2px solid var(--accent-strong); border-radius: 50%;
}
.brand__name { line-height: 1.05; }
.brand__name b {
  display: block; font-family: var(--font-heading); font-weight: 800;
  font-size: 17px; letter-spacing: -0.01em;
}
.brand__name span { display: block; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; }

.mainnav { display: flex; align-items: center; gap: clamp(14px, 1.8vw, 28px); }
.mainnav a {
  color: inherit; text-decoration: none; font-size: 14px; font-weight: 600; white-space: nowrap;
}
.mainnav a:hover { color: var(--accent-strong); }
.mainnav a[aria-current="page"] { color: var(--accent-strong); }

.navtoggle {
  display: none; width: 44px; height: 44px; padding: 0; border: 2px solid currentColor;
  background: transparent; cursor: pointer; color: inherit;
}
.navtoggle span { display: block; width: 20px; height: 2px; margin: 0 auto; background: currentColor; }
.navtoggle span + span { margin-top: 4px; }

@media (max-width: 1080px) {
  .navtoggle { display: block; }
  .mainnav {
    position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--surface-page); border-bottom: var(--rule) solid var(--edge);
    padding: 8px var(--gutter) 20px;
  }
  .mainnav a { padding: 14px 0; border-bottom: var(--hairline) solid var(--edge); font-size: 16px; }
  .mainnav .btn { margin-top: 16px; width: 100%; }
}

/* Section nav used on the show page and inner pages. */
.subnav {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  min-height: 64px; padding-inline: var(--gutter);
  max-width: var(--frame); margin: 0 auto;
}
.subnav__links { display: flex; gap: clamp(14px, 2vw, 26px); font-size: 13px; font-weight: 600; flex-wrap: wrap; }
.subnav__links a { color: inherit; text-decoration: none; }
.subnav__links a:hover { color: var(--accent-strong); }
.subnav__links [aria-current="page"], .subnav__links [aria-current="true"] { color: var(--color-accent-700); }

/* ── hero ─────────────────────────────────────────────────────────────── */
.hero { position: relative; overflow: hidden; background: #201e1d; }
.hero__media { position: absolute; inset: 0; }
.hero__media img, .hero__media .imgslot { width: 100%; height: 100%; object-fit: cover; }
.hero__scrim { position: absolute; inset: 0; }
.hero__body {
  position: relative; display: flex; flex-direction: column; justify-content: center;
  gap: 22px; color: #f3f2f2;
  padding: clamp(40px, 6vw, 72px) var(--gutter);
  min-height: 660px; max-width: 700px;
}
.hero__title {
  font-family: var(--font-heading); font-weight: 800; line-height: 0.88; letter-spacing: -0.03em;
  font-size: clamp(52px, 8.2vw, 118px); margin: 0;
}
.hero__title--dual { font-size: clamp(46px, 6.6vw, 96px); line-height: 0.9; }
.hero__slug { height: 2px; background: var(--color-accent); width: 180px; margin: 20px 0 18px; }
.hero__lede { font-size: clamp(17px, 1.4vw, 19px); line-height: 1.5; max-width: 500px; text-wrap: pretty; margin: 0; }
.hero__actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.hero__meta { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.hero__quote { display: flex; align-items: center; gap: 10px; font-size: 13px; margin-top: 6px; }
.hero__aside {
  position: absolute; right: var(--gutter); bottom: 32px; z-index: 2;
  background: var(--color-bg); color: var(--color-text); padding: 18px 22px; max-width: 260px;
}
@media (max-width: 900px) { .hero__aside { display: none; } }

.badge {
  background: var(--color-accent); color: var(--color-bg);
  font-size: 11px; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; padding: 5px 10px;
}
.dates { font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; }
.stars { color: var(--color-accent-400); letter-spacing: 0.1em; font-size: 15px; }
.play {
  width: 0; height: 0; border-left: 11px solid currentColor;
  border-top: 7px solid transparent; border-bottom: 7px solid transparent;
}
.btn-ondark {
  border: 2px solid rgb(243 242 242 / 0.5); color: #f3f2f2; gap: 12px;
}
.btn-ondark:hover { background: rgb(243 242 242 / 0.12); }
.link-caps {
  font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 700;
  color: inherit;
}

/* ── carousel ─────────────────────────────────────────────────────────── */
.carousel { position: relative; }
.carousel__slide { animation: fadein 0.45s ease both; }
@keyframes fadein { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

.carousel__tabs {
  position: absolute; right: 0; bottom: 0; z-index: 3;
  display: flex; align-items: stretch;
  background: var(--color-bg); color: var(--color-text);
  border-left: var(--rule) solid var(--edge); border-top: var(--rule) solid var(--edge);
}
.ctab {
  width: 250px; text-align: left; background: transparent; border: 0;
  border-left: var(--hairline) solid var(--edge); padding: 16px 18px;
  cursor: pointer; font-family: var(--font-body); color: inherit;
}
.ctab:hover { background: var(--color-neutral-200); }
.ctab__top { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.ctab__status {
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  font-weight: 800; color: var(--color-accent-700);
}
.ctab__dot { width: 8px; height: 8px; background: var(--color-accent); display: block; }
.ctab__status { display: block; }
.ctab__title { display: block; font-family: var(--font-heading); font-weight: 800; font-size: 20px; margin-top: 6px; }
.ctab__dates { display: block; font-size: 12px; margin-top: 2px; }
.carousel__arrows { display: flex; border-left: var(--hairline) solid var(--edge); }
.carousel__arrows button {
  width: 52px; background: transparent; border: 0; cursor: pointer;
  font-size: 20px; font-weight: 800; color: inherit; font-family: var(--font-body);
}
.carousel__arrows button + button { border-left: var(--hairline) solid var(--edge); }
.carousel__arrows button:hover { background: var(--color-neutral-200); }

@media (max-width: 1100px) {
  .carousel__tabs { position: static; width: 100%; flex-wrap: wrap; border-left: 0; }
  .ctab { flex: 1 1 220px; width: auto; }
  .carousel__arrows { width: 100%; }
  .carousel__arrows button { flex: 1; height: 48px; }
}

/* ── facts strip ──────────────────────────────────────────────────────── */
.facts { display: grid; grid-template-columns: repeat(4, 1fr); }
.fact { padding: 22px 28px; border-right: var(--hairline) solid var(--edge); }
.fact:last-child { border-right: 0; }
.fact b { display: block; font-family: var(--font-heading); font-weight: 800; font-size: 30px; }
.fact span { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; }
@media (max-width: 760px) {
  .facts { grid-template-columns: repeat(2, 1fr); }
  .fact:nth-child(2n) { border-right: 0; }
  .fact:nth-child(-n+2) { border-bottom: var(--hairline) solid var(--edge); }
}

/* ── booking: calendar + selection ────────────────────────────────────── */
.booking { display: grid; grid-template-columns: minmax(0, 1fr) 420px; }
.booking__cal { padding: clamp(24px, 3vw, 40px); border-right: var(--rule) solid var(--edge); }
.booking__side {
  padding: clamp(24px, 3vw, 40px); display: flex; flex-direction: column; gap: 18px;
  background: var(--color-surface);
}
.booking__head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 16px; margin-bottom: 24px; flex-wrap: wrap;
}
.monthnav { display: flex; gap: 8px; }

.calendar { display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); border: var(--rule) solid var(--edge); }
.calendar__dow {
  padding: 8px 10px; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  font-weight: 800; border-right: var(--hairline) solid var(--edge);
  border-bottom: var(--rule) solid var(--edge);
}
.calendar__dow:nth-child(7n) { border-right: 0; }
.day {
  position: relative; height: 86px; text-align: left; padding: 8px 10px;
  background: transparent; border: 0;
  border-right: var(--hairline) solid var(--edge); border-bottom: var(--hairline) solid var(--edge);
  cursor: pointer; font-family: var(--font-body); color: inherit;
  display: flex; flex-direction: column; justify-content: space-between; align-items: flex-start;
}
.day:nth-child(7n) { border-right: 0; }
.day:hover { background: var(--color-accent-100); }
.day b { font-family: var(--font-heading); font-weight: 800; font-size: 20px; }
.day small { font-size: 11px; text-align: left; line-height: 1.3; }
.day__sel { position: absolute; inset: 0; border: 3px solid var(--color-accent); pointer-events: none; }
.day__low {
  position: absolute; top: 8px; right: 10px; font-size: 9px; letter-spacing: 0.08em;
  text-transform: uppercase; font-weight: 800; color: var(--color-accent-700);
}
.day--pad { background: color-mix(in srgb, var(--color-text) 4%, transparent); cursor: default; }
.day--pad:hover { background: color-mix(in srgb, var(--color-text) 4%, transparent); }
.day--dark { color: color-mix(in srgb, var(--color-text) 45%, transparent); }
.day[aria-pressed="true"] b { color: var(--color-accent-700); }

.selection__title { font-family: var(--font-heading); font-weight: 800; font-size: 26px; line-height: 1.15; }
.pricelist { display: flex; flex-direction: column; gap: 10px; font-size: 14px; margin: 0; }
.pricelist div { display: flex; justify-content: space-between; gap: 12px; }
.pricelist b { font-weight: 800; }
.finehint { font-size: 12px; line-height: 1.5; margin: 0; }

@media (max-width: 1024px) {
  .booking { grid-template-columns: 1fr; }
  .booking__cal { border-right: 0; border-bottom: var(--rule) solid var(--edge); }
}
@media (max-width: 620px) {
  .day { height: 68px; padding: 6px; }
  .day b { font-size: 15px; }
  .day small { display: none; }
  .day__low { font-size: 8px; top: 5px; right: 5px; }
  .calendar__dow { padding: 6px 4px; font-size: 9px; text-align: center; letter-spacing: 0.04em; }
}

/* ── cards / concerts ─────────────────────────────────────────────────── */
.cardgrid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.showcard {
  border-top: var(--rule) solid var(--edge); padding-top: 16px;
  text-decoration: none; color: inherit; display: block;
}
.showcard:hover { background: var(--color-neutral-200); }
.showcard__media { height: 190px; }
.showcard__when {
  font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  font-weight: 800; color: var(--color-accent-700);
}
.showcard h4 { margin: 6px 0; font-size: 21px; }
.showcard p { font-size: 14px; margin: 0; }
@media (max-width: 900px) { .cardgrid { grid-template-columns: 1fr; } }

/* ── tour band ────────────────────────────────────────────────────────── */
.tour { display: grid; grid-template-columns: 620px minmax(0, 1fr); }
.tour__body {
  padding: clamp(32px, 4vw, 48px) var(--gutter);
  display: flex; flex-direction: column; gap: 20px; align-items: flex-start;
}
.tour__title {
  font-family: var(--font-heading); font-weight: 800;
  font-size: clamp(40px, 4.4vw, 58px); line-height: 0.94; letter-spacing: -0.02em;
}
.tour__media { position: relative; min-height: 340px; }
@media (max-width: 1024px) { .tour { grid-template-columns: 1fr; } .tour__media { min-height: 260px; } }

/* ── quick links ──────────────────────────────────────────────────────── */
.quicklinks { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.quicklink {
  padding: 32px 28px; border-right: var(--hairline) solid var(--edge);
  text-decoration: none; color: inherit; display: block;
}
.quicklink:last-child { border-right: 0; }
.quicklink:hover { background: var(--color-neutral-200); }
.quicklink h4 { margin: 0 0 8px; font-size: 22px; }
.quicklink p { font-size: 14px; margin: 0; }
@media (max-width: 900px) {
  .quicklinks { grid-template-columns: 1fr; }
  .quicklink { border-right: 0; border-bottom: var(--hairline) solid var(--edge); }
  .quicklink:last-child { border-bottom: 0; }
}

/* ── listing rows (what's on) ─────────────────────────────────────────── */
.listing {
  display: grid; grid-template-columns: 300px minmax(0, 1fr) 220px;
  gap: 32px; padding: 28px var(--gutter);
  border-bottom: var(--hairline) solid var(--edge); align-items: center;
}
.listing:last-child { border-bottom: 0; }
.listing--featured { background: var(--color-accent-100); }
.listing__media { height: 150px; overflow: hidden; }
.listing__media img { width: 100%; height: 100%; object-fit: cover; }
.listing h3 { margin: 6px 0; font-size: 30px; }
.listing p { font-size: 15px; margin: 0; }
.listing__buy { display: flex; flex-direction: column; gap: 8px; align-items: stretch; }
.listing__price { font-family: var(--font-heading); font-weight: 800; font-size: 20px; }
@media (max-width: 1024px) {
  .listing { grid-template-columns: 200px minmax(0, 1fr); gap: 24px; }
  .listing__buy { grid-column: 1 / -1; flex-direction: row; align-items: center; gap: 16px; }
}
@media (max-width: 620px) {
  .listing { grid-template-columns: 1fr; }
  .listing h3 { font-size: 24px; }
}

.filters { display: flex; gap: 8px; margin-top: 24px; flex-wrap: wrap; }

/* ── show page ────────────────────────────────────────────────────────── */
.showbody { display: grid; grid-template-columns: minmax(0, 1fr) 380px; }
.showbody__main { padding: clamp(32px, 4vw, 48px) var(--gutter); border-right: var(--rule) solid var(--edge); }
.showbody__side {
  padding: clamp(28px, 3vw, 40px) clamp(24px, 2.5vw, 32px);
  background: var(--color-surface); display: flex; flex-direction: column; gap: 16px;
}
.twocol { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; font-size: 16px; line-height: 1.6; }
.threecol { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; }
.credits h5 { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 800; margin: 0 0 8px; }
.credits p { font-size: 15px; line-height: 1.7; margin: 0; }

.perf { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 12px 0; border-bottom: var(--hairline) solid var(--edge); }
.perf b { display: block; font-weight: 800; font-size: 15px; }
.perf small { font-size: 13px; }

.quotes { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.quote { padding: 28px 24px; border-right: var(--hairline) solid rgb(243 242 242 / 0.25); }
.quote:last-child { border-right: 0; }
.quote p { font-size: 15px; margin: 10px 0 0; line-height: 1.45; }
.quote cite { font-size: 12px; opacity: 0.65; margin-top: 8px; display: block; font-style: normal; }
@media (max-width: 1024px) { .quotes { grid-template-columns: 1fr 1fr; } .twocol, .threecol { grid-template-columns: 1fr; } }
@media (max-width: 620px) { .quotes { grid-template-columns: 1fr; } }
@media (max-width: 1024px) {
  .showbody { grid-template-columns: 1fr; }
  .showbody__main { border-right: 0; border-bottom: var(--rule) solid var(--edge); }
}

/* ── seating ──────────────────────────────────────────────────────────── */
.seating { display: grid; grid-template-columns: minmax(0, 1fr) 460px; }
.seating__plan { padding: clamp(24px, 3vw, 40px) var(--gutter); border-right: var(--rule) solid var(--edge); }
.seating__info { padding: clamp(24px, 3vw, 40px) var(--gutter); display: flex; flex-direction: column; gap: 20px; }
.deflist { display: flex; flex-direction: column; gap: 12px; font-size: 15px; line-height: 1.5; margin: 0; }
.deflist > div { display: grid; grid-template-columns: 150px minmax(0, 1fr); gap: 16px; }
.deflist dt { font-weight: 800; }
.deflist dd { margin: 0; }
.callout { background: var(--color-surface); padding: 20px; display: flex; flex-direction: column; gap: 10px; align-items: flex-start; }
.callout p { font-size: 14px; margin: 0; }
@media (max-width: 1024px) {
  .seating { grid-template-columns: 1fr; }
  .seating__plan { border-right: 0; border-bottom: var(--rule) solid var(--edge); }
  .deflist > div { grid-template-columns: 1fr; gap: 2px; }
}

/* ── your visit ───────────────────────────────────────────────────────── */
.split { display: grid; grid-template-columns: 1fr 1fr; }
.split__media { min-height: 460px; }
.split__body { padding: clamp(32px, 4vw, 48px) var(--gutter); }
.notes { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 8px; }
.notes h5 { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 800; margin: 0 0 6px; }
.notes p { font-size: 15px; margin: 0; }
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; }
  .split__media { min-height: 280px; order: -1; }
  .notes { grid-template-columns: 1fr; gap: 20px; }
}

.trio { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.trio > * { padding: 32px 28px; border-right: var(--hairline) solid var(--edge); }
.trio > *:last-child { border-right: 0; }
.trio h4 { margin: 0 0 6px; font-size: 22px; }
.trio p { font-size: 14px; margin: 0; }
.trio__media { height: 160px; margin-bottom: 16px; }
@media (max-width: 900px) {
  .trio { grid-template-columns: 1fr; }
  .trio > * { border-right: 0; border-bottom: var(--hairline) solid var(--edge); }
  .trio > *:last-child { border-bottom: 0; }
}

/* ── footer ───────────────────────────────────────────────────────────── */
.footer { background: var(--color-text); color: var(--color-bg); }
.footer__inner {
  max-width: var(--frame); margin: 0 auto; padding: clamp(32px, 4vw, 40px) var(--gutter);
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
}
.footer__brand { font-family: var(--font-heading); font-weight: 800; font-size: 22px; letter-spacing: -0.01em; }
.footer p { font-size: 14px; margin: 10px 0 0; opacity: 0.7; }
.signup { display: flex; gap: 10px; }
.signup .input { flex: 1; height: 44px; background: transparent; color: var(--color-bg); border-color: rgb(243 242 242 / 0.4); }
.signup .input::placeholder { color: rgb(243 242 242 / 0.55); }
@media (max-width: 900px) { .footer__inner { grid-template-columns: 1fr; gap: 28px; } }

/* ── sticky booking bar ───────────────────────────────────────────────── */
.bookbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 14px var(--gutter); min-height: var(--bookbar-h);
  background: var(--color-bg); border-top: var(--rule) solid var(--color-text);
  transform: translateY(100%); transition: transform 0.25s ease;
}
.bookbar.is-visible { transform: none; }
.bookbar__show { font-family: var(--font-heading); font-weight: 800; font-size: 18px; }
.bookbar__meta { font-size: 13px; }
.bookbar__left { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.bookbar__right { display: flex; align-items: center; gap: 12px; }
body.has-bookbar { padding-bottom: var(--bookbar-h); }
@media (max-width: 620px) {
  .bookbar__meta { display: none; }
  .bookbar { padding-block: 10px; }
}

/* ── image slots (photography still to be shot/licensed) ──────────────── */
.imgslot {
  position: relative; width: 100%; height: 100%; min-height: 120px; display: grid; place-items: center;
  background:
    repeating-linear-gradient(135deg,
      color-mix(in srgb, var(--color-text) 5%, transparent) 0 8px,
      transparent 8px 16px),
    var(--color-neutral-200);
  color: color-mix(in srgb, var(--color-text) 55%, transparent);
  text-align: center; padding: 16px;
}
.imgslot span {
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 800; line-height: 1.4;
}
.imgslot::after {
  content: ""; position: absolute; inset: 8px;
  border: var(--hairline) dashed color-mix(in srgb, var(--color-text) 30%, transparent);
}

/* ── preview controls (design-review only, not site UI) ───────────────── */
.review {
  position: fixed; left: 12px; bottom: calc(var(--bookbar-h) + 12px); z-index: 90;
  background: var(--color-neutral-900); color: var(--color-neutral-100);
  font-family: var(--font-body); font-size: 12px; max-width: 300px;
}
/* Collapsed it sits back out of the way; it only asserts itself on hover or
   focus, or once opened. It is a review affordance, not part of either design. */
.review:not(:hover):not(:focus-within):has(.review__body[hidden]) { opacity: 0.55; }
.review__head {
  display: flex; align-items: center; gap: 10px; padding: 7px 11px; width: 100%;
  background: transparent; border: 0; color: inherit; cursor: pointer;
  font: inherit; font-size: 10px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase;
}
.review__head::before { content: ""; width: 7px; height: 7px; background: var(--color-accent); }
.review__body { padding: 0 12px 12px; display: flex; flex-direction: column; gap: 8px; }
.review__body[hidden] { display: none; }
.review__body p { margin: 0; opacity: 0.72; line-height: 1.45; }
.review__body a { color: var(--color-accent-400); }
.review .btn { background: var(--color-accent); color: var(--color-bg); width: 100%; height: 34px; }

@media print {
  .bookbar, .review, .masthead { position: static; }
}
