/*
  DESIGN NOTE — read this before changing anything below.

  1. The page is a wide white sheet with generously rounded corners floating on
     a pale periwinkle ground, like a beautifully printed product brochure:
     calm, airy, mostly white space, one cool blue.
  2. Montserrat does all the type: headings at medium weight, coloured blue and
     letter-spaced wide; body text at normal weight, near-black, 20–22px, so it
     stays easy for someone aged 55+ to read.
  3. Sections are set editorially in two columns on a desktop — the heading in
     the narrow left column, the content in the wide right one — and stack
     into a single column on a phone.
  4. Cards are borderless, radius 28–40px, lifted by soft diffuse shadows;
     buttons are white with a shadow and blue text, exactly like the reference.
  5. The only "image" apart from Lizzy's photo is an abstract still-life of
     rounded shapes in the hero, drawn in CSS, where the product photo would sit.
*/

/* ---------- Tokens ---------- */
:root {
  --ground: #E4E9F7;
  --panel: #FFFFFF;
  --panel-soft: #EEF2FB;
  --blue: #4F6CC9;
  --blue-deep: #4661B8;
  --blue-mid: #C5D2F2;
  --blue-pale: #DDE5F8;
  --ink: #2C3145;
  --muted: #5B6380;
  --line: #E6EBF8;
  --shadow: 0 18px 44px rgba(70, 90, 160, 0.14);
  --shadow-soft: 0 8px 24px rgba(70, 90, 160, 0.10);
  --font: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --gutter: 24px;
}

@font-face {
  font-family: "Montserrat";
  src: url("assets/fonts/montserrat-latin.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }

html { font-size: 20px; -webkit-text-size-adjust: 100%; background: var(--ground); }
@media (min-width: 720px) { html { font-size: 22px; } }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--ground);
  position: relative;
}
/* faint clouds on the page ground, behind the sheet */
body::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: url("assets/cloud-4.png"), url("assets/cloud-1.png");
  background-repeat: no-repeat, no-repeat;
  background-position: right -140px top 380px, left -200px top 900px;
  background-size: 420px auto, 640px auto;
  opacity: 0.8;
}

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

.sheet {
  position: relative; z-index: 1;
  background: var(--panel);
  max-width: 1160px;
  margin: 8px auto;
  border-radius: 28px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
@media (min-width: 720px) { .sheet { margin: 24px auto; border-radius: 44px; } }

.wrap { max-width: 1040px; margin: 0 auto; padding: 0 var(--gutter); }
@media (min-width: 900px) { .wrap { padding: 0 56px; } }

h1, h2, h3 {
  font-weight: 500;
  color: var(--blue-deep);
  line-height: 1.15;
  margin: 0 0 0.6em;
  text-wrap: balance;
}
h1 { font-size: 40px; line-height: 1.1; letter-spacing: 0.06em; margin-bottom: 0.5em; }
h2 { font-size: 28px; letter-spacing: 0.09em; }
h3 { font-size: 21px; letter-spacing: 0.04em; }
@media (min-width: 900px) {
  h1 { font-size: 60px; }
  h2 { font-size: 36px; }
  h3 { font-size: 23px; }
}

p, ul, ol, dl { margin: 0 0 1.1em; }
p, li, dd { max-width: 62ch; }

a { color: var(--blue-deep); text-decoration: underline; text-decoration-thickness: 1.5px; text-underline-offset: 0.18em; }
a:hover { color: var(--blue); }

:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; border-radius: 8px; }

.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: var(--gutter); top: -100px;
  background: var(--blue-deep); color: #fff; padding: 0.6em 1em;
  z-index: 20; text-decoration: none; border-radius: 12px;
}
.skip-link:focus { top: 8px; }

/* ---------- Two-column editorial layout ---------- */
.split { display: block; }
.split-head { text-align: center; margin-bottom: 1.2rem; }
.split-head h2 { margin-bottom: 0.4em; }
.split-head p { margin-left: auto; margin-right: auto; }
.split-body { max-width: 40rem; margin: 0 auto; }
h2.centred { text-align: center; }

/* ---------- Header ---------- */
.top { background: var(--panel-soft); border-radius: 0 0 36px 36px; }
@media (min-width: 720px) { .top { border-radius: 0 0 56px 56px; } }

.site-header { padding: 1rem 0 0; }
.header-bar {
  display: flex; flex-wrap: wrap; align-items: center; gap: 0.4rem 1rem;
  background: var(--blue-pale); border-radius: 14px; padding: 0.55rem 0.8rem 0.55rem 0.6rem;
}
.masthead { font-size: 15px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; margin: 0; flex: 1 1 auto; white-space: nowrap; }
.masthead a { text-decoration: none; color: var(--blue-deep); }

/* Menu button: the header's fallback when the links can't sit on one line.
   main.js measures the row and adds .collapsed whenever it would overflow. */
.nav-toggle {
  display: none; align-items: center; gap: 0.5rem; order: -1;
  min-height: 48px; padding: 0 0.8rem; border: 0; border-radius: 10px;
  background: #fff; color: var(--blue-deep); font: 600 15px/1 var(--font); letter-spacing: 0.08em;
  box-shadow: var(--shadow-soft); cursor: pointer; white-space: nowrap;
}
.nav-toggle .bars { display: inline-flex; flex-direction: column; gap: 4px; }
.nav-toggle .bars i { display: block; width: 20px; height: 2px; background: var(--blue-deep); border-radius: 2px; }

/* Row layout (default): everything on one line, nothing wraps */
.header-bar { flex-wrap: nowrap; justify-content: space-between; }
.site-nav { display: flex; flex: 0 0 auto; gap: 0 1.3rem; font-size: 14px; font-weight: 500; letter-spacing: 0.12em; }
.site-nav a { display: flex; align-items: center; min-height: 44px; text-decoration: none; color: var(--ink); white-space: nowrap; }
.site-nav a:hover { color: var(--blue-deep); text-decoration: underline; }

/* Collapsed layout: Menu button on the left, links drop down as a list */
.header-bar.collapsed { flex-wrap: wrap; justify-content: flex-start; }
.header-bar.collapsed .masthead { white-space: normal; flex: 1 1 12rem; }
.header-bar.collapsed .nav-toggle { display: inline-flex; }
.header-bar.collapsed .site-nav { display: none; flex-basis: 100%; flex-direction: column; gap: 0; padding: 0.4rem 0 0.2rem; font-size: 16px; letter-spacing: 0.08em; }
.header-bar.collapsed .site-nav a { min-height: 48px; padding: 0 0.4rem; border-top: 1px solid rgba(255, 255, 255, 0.6); white-space: normal; }
.header-bar.collapsed.nav-open .site-nav { display: flex; }
/* Without JavaScript nothing measures, so fall back to a wrapping row */
.no-js .header-bar { flex-wrap: wrap; }

/* ---------- Hero ---------- */
.top { position: relative; overflow: hidden; background: #E8EDF9; }
.top .site-header, .top .hero { position: relative; z-index: 1; }
/* Watercolour clouds (assets/cloud-1..4.png, prepared by tools/prepare-clouds.py) */
.top::before, .top::after, .hero::before, .hero::after {
  content: ""; position: absolute; pointer-events: none;
  background-repeat: no-repeat; background-size: contain;
}
.top::before  { background-image: url("assets/cloud-2.png"); aspect-ratio: 800 / 515;  width: min(72vw, 600px); left: -12%; bottom: -10%; opacity: 0.8; }
.top::after   { background-image: url("assets/cloud-1.png"); aspect-ratio: 1000 / 373; width: min(64vw, 620px); right: -26%; top: 11%; opacity: 0.8; }
.hero::before { background-image: url("assets/cloud-3.png"); aspect-ratio: 1000 / 337; width: min(90vw, 760px); right: -6%; bottom: -6%; z-index: -1; opacity: 0.72; }
.hero::after  { background-image: url("assets/cloud-4.png"); aspect-ratio: 600 / 712;  width: min(26vw, 220px); left: 3%; top: -6%; z-index: -1; opacity: 0.56; display: none; }
@media (min-width: 900px) {
  .top::before { left: -5%; bottom: -14%; }
  .top::after  { right: -4%; top: 10%; }
  .hero::before { right: 2%; bottom: -10%; }
  .hero::after { display: block; }
}

.hero { text-align: center; padding: 3.2rem 0 4rem; }
@media (min-width: 900px) { .hero { padding: 5rem 0 5rem; } }
.hero h1 { margin: 0 auto 0.9em; max-width: 16ch; }
.hero .btn { margin: 0 auto; }
.hero .lede { margin: 0 auto; }
.lede { font-size: 1.05rem; line-height: 1.55; }
.meta { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.micro { font-size: 0.78rem; color: var(--muted); }

/* Ticket strip under the hero button: the two evenings and the price */
.ticket-strip {
  display: grid; grid-template-columns: 1fr;
  background: #fff; border-radius: 22px; box-shadow: var(--shadow-soft);
  max-width: 940px; margin: 1.8rem auto 0; overflow: hidden; text-align: left;
}
.ticket-strip > div { padding: 1rem 1.3rem; }
.ticket-strip > div + div { border-top: 2px dashed var(--blue-pale); }
.ticket-strip .k { font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--blue-deep); font-weight: 600; margin: 0 0 0.2em; }
.ticket-strip .v { margin: 0; font-weight: 500; color: var(--ink); max-width: none; }
.ticket-strip .s { margin: 0; font-size: 0.78rem; color: var(--muted); max-width: none; }
.ticket-strip .price { background: var(--panel-soft); display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; }
.ticket-strip .price .v { font-size: 1.8rem; color: var(--blue-deep); line-height: 1.1; }
.ticket-strip .ribbon {
  margin: 0; padding: 0.55rem 1rem; text-align: center;
  background: var(--blue-deep); color: #fff;
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; max-width: none;
}
.ticket-strip .ribbon + div { border-top: 0; }
@media (min-width: 720px) {
  .ticket-strip { grid-template-columns: 1fr 1fr auto; }
  .ticket-strip .ribbon { grid-column: 1 / -1; }
  .ticket-strip > div { padding: 1.1rem 1.5rem; }
  .ticket-strip > div + div { border-top: 0; border-left: 2px dashed var(--blue-pale); }
  .ticket-strip .price { min-width: 9.5rem; }
}

.ticket-strip-page { margin-top: 0; }
.strip-cta { text-align: center; margin-top: 1.8rem; }
.strip-cta .btn { margin: 0 auto; }
.strip-cta .contact-line { font-size: 0.85rem; margin-top: 1.2em; max-width: none; }

/* The sentence and the facts that used to sit in the hero */
.intro { text-align: center; padding-top: 2.6rem; }
@media (min-width: 900px) { .intro { padding-top: 3.6rem; } }
.intro p { margin-left: auto; margin-right: auto; max-width: 36rem; }
.intro .lede { margin-bottom: 1em; }
.intro .meta { margin-bottom: 0.6em; }

/* ---------- Sections ---------- */
section { padding: 2.4rem 0; }
@media (min-width: 900px) { section { padding: 3.6rem 0; } }
/* Alternate pale bands so each section reads as its own chapter */
.band { background: var(--panel-soft); }
.band + .band { border-top: 1px solid #fff; }
.band .btn-secondary { background: #fff; box-shadow: var(--shadow-soft); }
.band .faq details { border-color: transparent; }
.split-wide { max-width: 52rem; }
.two-col { display: grid; gap: 0.3rem 2.5rem; }
@media (min-width: 900px) { .two-col { grid-template-columns: 1fr 1fr; } }
.chapter-break { display: none; }

/* ---------- Buttons ---------- */
.btn {
  display: flex; align-items: center; justify-content: center;
  width: 100%; min-height: 56px;
  padding: 0.6em 1.6em; margin: 0;
  font-family: var(--font); font-size: 18px; font-weight: 600; letter-spacing: 0.06em; line-height: 1.2;
  text-align: center; text-decoration: none;
  border-radius: 14px; cursor: pointer; -webkit-appearance: none; appearance: none;
}
.btn-primary {
  background: #fff; color: var(--blue-deep);
  border: 1px solid var(--line);
  box-shadow: 0 10px 22px rgba(70, 90, 160, 0.22), 0 26px 56px rgba(70, 90, 160, 0.26);
}
.btn-primary:hover, .btn-primary:active, .btn-primary:focus-visible {
  background: var(--blue-deep); color: #fff; border-color: var(--blue-deep);
  box-shadow: 0 10px 22px rgba(70, 90, 160, 0.28), 0 26px 56px rgba(70, 90, 160, 0.32);
}
.btn-secondary { background: var(--panel-soft); color: var(--blue-deep); border: 0; }
.btn-secondary:hover, .btn-secondary:active { background: var(--blue-pale); color: var(--blue-deep); }
@media (min-width: 720px) { .btn { display: inline-flex; width: auto; min-width: 15rem; } }

/* Buttons inside cards and bands get a white base; keep their hover states */
.choice .btn-primary:hover, .choice .btn-primary:active, .choice .btn-primary:focus-visible,
.details dd .btn-primary:hover, .strip-cta .btn-primary:hover { background: var(--blue-deep); color: #fff; }
.band .btn-secondary:hover, .choice .btn-secondary:hover, .ready-card .btn-secondary:hover,
.teaser-card .btn-secondary:hover, .details dd .btn-secondary:hover { background: var(--blue-pale); color: var(--blue-deep); }

/* ---------- Lists ---------- */
.dash { list-style: none; padding: 0; }
.dash li { position: relative; padding-left: 1.4em; margin-bottom: 0.55em; }
.dash li::before {
  content: ""; position: absolute; left: 0.15em; top: 0.68em;
  width: 0.42em; height: 0.42em; border-radius: 50%; background: var(--blue-mid);
}

/* ---------- Soft highlight ---------- */
.hl {
  background: var(--panel-soft); color: var(--blue-deep);
  padding: 0.05em 0.4em; border-radius: 10px;
  -webkit-box-decoration-break: clone; box-decoration-break: clone;
}

/* ---------- Programme (the two evenings) ---------- */
.programme { list-style: none; padding: 0; margin: 0.5rem 0 0; counter-reset: evening; display: grid; gap: 1.2rem; }
@media (min-width: 900px) { .programme { grid-template-columns: 1fr 1fr; gap: 2rem; } }
.programme > li {
  counter-increment: evening;
  display: grid; grid-template-columns: 2.7rem 1fr; column-gap: 0.9rem; align-content: start;
  padding: 1.4rem 1.2rem 1.1rem;
  background: var(--panel); border-radius: 30px; box-shadow: var(--shadow); border: 1px solid var(--line);
}
@media (min-width: 900px) { .programme > li { padding: 2rem 1.9rem 1.6rem; grid-template-columns: 3rem 1fr; column-gap: 1.1rem; } }
.programme > li::before {
  content: counter(evening);
  grid-row: 1 / span 2;
  display: flex; align-items: center; justify-content: center;
  width: 2.7rem; height: 2.7rem; border-radius: 14px;
  background: var(--panel-soft); color: var(--blue-deep);
  font-size: 1.35rem; font-weight: 500;
}
@media (min-width: 900px) { .programme > li::before { width: 3rem; height: 3rem; font-size: 1.5rem; } }
.programme h3 { margin: 0.2em 0 0.2em; line-height: 1.2; }
.programme .when { font-size: 0.66rem; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin: 0 0 1em; }
.programme .dash { grid-column: 1 / -1; margin: 0.4rem 0 0; }
.cover-foot { text-align: center; margin-top: 2.2rem; }
.cover-foot p { margin-left: auto; margin-right: auto; }
.cover-foot .btn { margin: 0 auto; }

/* ---------- Bio: the photo sits inside the text, on the right ---------- */
.bio-text { max-width: 52rem; margin: 0 auto; }
.bio-text::after { content: ""; display: block; clear: both; }
.bio-text p:last-child { margin-bottom: 0; }
.bio-text p { max-width: none; }
.portrait { margin: 0 auto 1.2rem; max-width: 320px; }
@media (min-width: 720px) {
  .portrait { float: right; width: 280px; max-width: 40%; margin: 0.3rem 0 1rem 2rem; }
}
.portrait img {
  width: 100%; aspect-ratio: 1 / 1; object-fit: cover;
  border-radius: 28px; box-shadow: var(--shadow);
}
.portrait figcaption { font-size: 0.78rem; letter-spacing: 0.04em; color: var(--muted); margin-top: 0.7em; text-align: center; }

/* ---------- The details card ---------- */
.ticket { background: var(--panel-soft); border-radius: 30px; padding: 1.4rem 1.3rem 1.2rem; }
@media (min-width: 900px) { .ticket { padding: 2rem 2.2rem 1.8rem; } }
.details { display: grid; grid-template-columns: 1fr; gap: 0 1rem; margin: 0; }
.details dt { font-weight: 600; font-size: 0.66rem; color: var(--blue-deep); text-transform: uppercase; letter-spacing: 0.16em; margin-top: 1em; }
.details dt:first-child { margin-top: 0; }
.details dd { margin: 0; }
.details dd .btn { display: flex; width: auto; min-width: 0; max-width: 16rem; margin: 0.2em 0 0.5em; background: #fff; box-shadow: var(--shadow-soft); }
@media (min-width: 600px) {
  .details { grid-template-columns: max-content 1fr; gap: 0.8rem 1.6rem; }
  .details dt, .details dt:first-child { margin-top: 0.45em; }
}

/* ---------- FAQ ---------- */
.faq details { background: var(--panel); border-radius: 20px; padding: 0 1.1rem; margin-bottom: 0.8rem; box-shadow: var(--shadow-soft); border: 1px solid var(--line); }
.faq summary {
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  min-height: 56px; padding: 0.7em 0; font-weight: 500; cursor: pointer; list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; flex: none; display: flex; align-items: center; justify-content: center;
  width: 1.7rem; height: 1.7rem; border-radius: 50%;
  background: var(--panel-soft); color: var(--blue-deep); font-size: 1.15rem; font-weight: 500; line-height: 1;
}
.faq details[open] summary::after { content: "–"; }
.faq details p { margin: 0; padding: 0 0 1.1em; }

/* ---------- Private training teaser ---------- */
.teaser-card { background: var(--panel-soft); border-radius: 32px; padding: 1.8rem 1.4rem; display: grid; gap: 1.2rem; text-align: center; justify-items: center; }
@media (min-width: 900px) { .teaser-card { padding: 2.6rem 2.8rem; } }
.teaser-card p { margin-left: auto; margin-right: auto; max-width: 40rem; }
.teaser-card .group-line { font-size: 0.9rem; margin: 0.4rem auto 0; }
.teaser-card p:last-child { margin-bottom: 0; }
.teaser-card .btn-secondary { background: #fff; box-shadow: var(--shadow-soft); }

/* ---------- Choice cards (book.html and the payment page) ---------- */
.choices { display: grid; gap: 1rem; margin: 0.5rem 0 1.2rem; }
@media (min-width: 720px) { .choices { grid-template-columns: 1fr 1fr; gap: 1.4rem; } }
.choice {
  background: var(--panel); border: 1px solid var(--line); border-radius: 30px;
  box-shadow: var(--shadow); padding: 1.6rem 1.4rem 1.5rem; text-align: center;
  display: flex; flex-direction: column; align-items: center;
}
.choice-featured { background: var(--panel-soft); }
.choice-k { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--blue-deep); margin: 0 0 0.3em; }
.choice-k .tag { display: inline-block; margin-left: 0.5em; padding: 0.15em 0.7em; border-radius: 999px; background: var(--blue-deep); color: #fff; font-size: 0.6rem; letter-spacing: 0.1em; vertical-align: middle; }
.choice-price { font-size: 2.2rem; font-weight: 500; color: var(--blue-deep); line-height: 1.1; margin: 0 0 0.3em; }
.choice-note { font-size: 0.85rem; color: var(--muted); margin: 0 0 1em; max-width: 26ch; }
.choice .btn { width: 100%; min-width: 0; margin-top: auto; }
.choice-featured .btn-primary, .choice .btn-secondary { background: #fff; box-shadow: var(--shadow-soft); }
.centred { text-align: center; max-width: none; }
.amount-line { text-align: center; font-size: 1rem; color: var(--muted); margin: 0 auto; max-width: none; }
.hero-short { padding-top: 2rem; padding-bottom: 2.6rem; }
@media (min-width: 900px) { .hero-short { padding-top: 3rem; padding-bottom: 3.6rem; } }
.choice .choice-k + .btn { margin-top: 0.4rem; }
.steps { padding-left: 0; list-style: none; counter-reset: step; margin: 0 0 1.2em; }
.steps li { position: relative; padding-left: 2.6rem; margin-bottom: 0.7em; counter-increment: step; }
.steps li::before {
  content: counter(step); position: absolute; left: 0; top: 0.05em;
  width: 1.8rem; height: 1.8rem; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  background: var(--panel-soft); color: var(--blue-deep); font-weight: 600; font-size: 0.85rem;
}

/* ---------- Share ---------- */
.share { display: grid; gap: 0.8rem; margin: 0.3rem 0 1.2rem; }
@media (min-width: 600px) { .share { grid-template-columns: 1fr 1fr; } .share .btn { width: 100%; min-width: 0; } }

/* ---------- Final call ---------- */
.ready-card { text-align: center; background: var(--panel-soft); border-radius: 36px; padding: 2.4rem 1.4rem; }
@media (min-width: 900px) { .ready-card { padding: 3.4rem 3rem; } }
.ready-card p { margin-left: auto; margin-right: auto; }
.ready-card .btn { margin: 0 auto; }
.ready-card .btn-secondary { background: #fff; box-shadow: var(--shadow-soft); }
.ready-card .contact-line { font-size: 0.85rem; margin-top: 1.6em; }

/* ---------- Footer ---------- */
.site-footer { padding: 1.4rem 0 2.4rem; font-size: 0.74rem; letter-spacing: 0.03em; color: var(--muted); }
.site-footer p { margin-bottom: 0.5em; max-width: none; }

/* ---------- Pixel notice (only when metaPixelId is set) ---------- */
.pixel-notice {
  position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 10;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 0.6rem 1.2rem;
  padding: 0.7rem var(--gutter); background: var(--panel); border-radius: 18px; box-shadow: var(--shadow); font-size: 0.85rem;
}
.pixel-notice p { margin: 0; }
.pixel-notice .btn { min-height: 48px; font-size: 16px; min-width: 0; width: auto; padding: 0.3em 1.2em; }

/* ---------- Print: a one-page flyer ---------- */
.print-only { display: none; }
@media print {
  @page { margin: 12mm 14mm; }
  html { font-size: 10pt; }
  html, body { background: #fff; color: #000; line-height: 1.3; }
  body::before { display: none; }
  .top::before, .top::after, .hero::before, .hero::after, .ticket-strip { display: none !important; }
  .intro { text-align: left; padding-top: 0; }
  .intro p { margin-left: 0; max-width: none; }
  .hero { text-align: left; }
  .hero h1 { margin-left: 0; max-width: none; }
  .sheet { box-shadow: none; border-radius: 0; margin: 0; max-width: none; }
  .top { background: none; border-radius: 0; }
  .wrap { max-width: none; padding: 0; }
  .split { display: block; }
  .site-header, .header-bar, .nav-toggle, .site-footer, .skip-link, .btn, .micro, .share, #teacher,
  .familiar, .faq, .teaser, .tell, .ready, .pixel-notice, .no-print { display: none !important; }
  section, .band { padding: 0.4rem 0; background: none; }
  .hero { padding: 0; }
  h1, h2, h3 { color: #000; letter-spacing: 0.02em; }
  h1 { font-size: 26pt; margin-bottom: 0.25em; }
  h2 { font-size: 16pt; margin-bottom: 0.3em; }
  .lede { font-size: 11.5pt; }
  .meta, .micro, .programme .when, .portrait figcaption { color: #000; text-transform: none; letter-spacing: 0; }
  .programme { display: block; }
  .programme > li { margin-bottom: 0.6rem; padding: 0.4rem 0; border: 0; box-shadow: none; border-radius: 0; break-inside: avoid; }
  .programme > li::before { background: none; color: #000; font-size: 18pt; }
  .programme h3 { font-size: 13pt; }
  .cover-foot { text-align: left; margin-top: 0.4rem; }
  .dash li { margin-bottom: 0.15em; }
  .dash li::before { background: #000; }
  .ticket { break-inside: avoid; padding: 0.6rem 0.8rem; background: none; border: 1px solid #000; border-radius: 6px; }
  .details { grid-template-columns: max-content 1fr; gap: 0.2rem 1rem; }
  .details dt, .details dt:first-child { margin-top: 0; font-size: 8.5pt; color: #000; }
  .print-only { display: block; }
  .print-book { display: grid; grid-template-columns: 1fr auto; gap: 1rem; align-items: center; margin-top: 0.8rem; break-inside: avoid; }
  .print-book img { width: 30mm; height: 30mm; }
  a { color: #000; text-decoration: none; }
  .hl { background: none; color: #000; }
}
