/* =====================================================================
   happy business — inner content pages
   Shared patterns for Performance, Communication, About, Events,
   Books & Press, Contact and the Archive. Layered on styles.css.
   ===================================================================== */

/* ---------- current nav state ---------- */
.nav a.is-current { color: var(--red); }
.nav a.is-current::after { transform: scaleX(1); }

/* ---------- page hero ---------- */
.page-hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(2.5rem, 6vw, 4.5rem) clamp(2rem, 4vw, 3.25rem);
  border-bottom: 1px solid var(--line);
}
.page-hero--cream { background: var(--cream); }
.page-hero--pink  { background: var(--pink); }
.page-hero .wrap { position: relative; z-index: 1; }
.page-hero__script { font-family: var(--font-script); font-size: clamp(1.5rem, 2.4vw, 2.1rem); color: var(--red); margin: .2rem 0 .6rem; }
.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.4rem, 6.2vw, 4.6rem);
  line-height: .94;
  letter-spacing: .003em;
  text-transform: uppercase;
  margin: .4rem 0 1rem;
}
.page-hero .lead { font-size: clamp(1.04rem, 1.5vw, 1.22rem); color: var(--ink-soft); max-width: 62ch; }
/* faint brushstroke watermark */
.page-hero__brush {
  position: absolute;
  right: -4%; top: 50%; transform: translateY(-50%);
  width: min(46%, 560px);
  opacity: .5;
  z-index: 0;
  pointer-events: none;
}

/* ---------- About hero: full-bleed bg + cutout on the right + text panel left ---------- */
.about-hero { position: relative; overflow: hidden; background: var(--cream-deep); border-bottom: 1px solid var(--line); }
.about-hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 62% center; z-index: 0; }
.about-hero__inner { position: relative; z-index: 2; min-height: clamp(520px, 74vh, 760px); display: flex; align-items: center; padding-block: clamp(2rem, 5vw, 3.5rem); }
.about-hero__cutout { position: absolute; right: clamp(-4%, 1vw, 4%); bottom: 0; height: clamp(440px, 74vh, 740px); width: auto; z-index: 1; filter: drop-shadow(0 22px 34px rgba(29,27,26,.26)); pointer-events: none; }
.about-hero__panel { position: relative; z-index: 2; max-width: min(48%, 540px); background: color-mix(in srgb, var(--cream) 85%, transparent); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); border-radius: var(--radius); padding: clamp(1.5rem, 3vw, 2.6rem); box-shadow: 0 20px 50px -28px rgba(29,27,26,.5); }
.about-hero__panel h1 { font-family: var(--font-display); font-weight: 500; font-size: clamp(2.2rem, 5vw, 3.6rem); line-height: .95; letter-spacing: .003em; text-transform: uppercase; margin: .3rem 0 .8rem; }
.about-hero__panel .lead { color: var(--ink-soft); font-size: clamp(1rem, 1.4vw, 1.15rem); }
@media (max-width: 820px) {
  .about-hero__inner { min-height: 0; align-items: flex-start; padding-bottom: clamp(15rem, 46vw, 20rem); }
  .about-hero__panel { max-width: none; }
  .about-hero__cutout { height: auto; width: min(74%, 330px); right: -6%; }
}

/* Bio band — editorial composite: freestanding cutout LEFT, text on the wall RIGHT, parallax */
.about-band { position: relative; overflow: hidden; background: var(--cream-deep); border-bottom: 1px solid var(--line); }
.about-band__bg { position: absolute; left: -6%; top: -14%; width: 112%; max-width: none; height: 128%; object-fit: cover; object-position: center; z-index: 0; will-change: transform; }
.about-band__inner { position: relative; z-index: 2; min-height: clamp(580px, 86vh, 860px); display: flex; align-items: center; justify-content: flex-end; padding-block: clamp(3rem, 6vw, 5rem); }
.about-band__cutout { position: absolute; left: clamp(-4%, 1vw, 3%); bottom: -1%; height: clamp(470px, 84vh, 820px); width: auto; z-index: 1; filter: drop-shadow(0 28px 48px rgba(29,27,26,.28)); pointer-events: none; will-change: transform; }

/* transparent, editorial text column (no card) */
.about-band .about-band__panel { position: relative; z-index: 2; width: min(48%, 540px); max-width: min(48%, 540px); background: transparent; padding: clamp(.5rem, 1.5vw, 1.5rem) 0; }
.about-band__kicker { font-family: var(--font-head); text-transform: uppercase; letter-spacing: .24em; font-size: .74rem; font-weight: 600; color: var(--red); margin: 0 0 1.1rem; display: flex; align-items: center; gap: .8rem; }
.about-band__kicker::before { content: ""; width: clamp(28px, 4vw, 52px); height: 2px; background: var(--red); }
.about-band .about-band__panel .lead-p { font-family: var(--font-display); font-weight: 500; font-size: clamp(1.4rem, 2.5vw, 2.15rem); line-height: 1.14; letter-spacing: .002em; color: var(--ink); margin: 0 0 1.2rem; max-width: 20ch; }
.about-band .about-band__panel p { color: var(--ink); font-size: clamp(.98rem, 1.1vw, 1.06rem); line-height: 1.7; max-width: 40ch; margin: 0 0 .85rem; }
.about-band .about-band__panel p:last-child { margin-bottom: 0; }
.about-band__panel strong { font-weight: 600; }
@media (max-width: 820px) {
  .about-band__inner { min-height: 0; align-items: flex-start; justify-content: stretch; padding-bottom: clamp(17rem, 64vw, 23rem); }
  .about-band .about-band__panel { width: auto; max-width: none; }
  .about-band .about-band__panel p, .about-band .about-band__panel .lead-p { max-width: none; }
  .about-band__cutout { height: auto; width: min(80%, 350px); left: -5%; right: auto; }
}

/* ===== Seminar cards — cut-out stands on a gradient "stage", text on cream =====
   Three z-layers so the CARD (stage + body) can lift on hover while the figure
   stays put: gradient stage (z1, lifts) → figure (z2, static) → text body (z3, lifts). */
.sem-grid { margin-top: clamp(5rem, 12vw, 8.5rem); align-items: stretch; overflow: visible; }
.sem-card { --stage-h: clamp(115px, 15vw, 155px); --fig-h: clamp(235px, 29vw, 300px); --overlap: 16px;
  position: relative; display: flex; flex-direction: column; overflow: visible; }
.sem-card__stage, .sem-card__body { transition: transform .45s var(--ease), box-shadow .45s var(--ease); box-shadow: 0 18px 40px -26px rgba(29,27,26,.45); }
/* gradient the figure stands on */
.sem-card__stage { position: relative; z-index: 1; height: var(--stage-h); border-radius: 20px 20px 0 0; }
/* freestanding figure — behind the text body, does NOT lift */
.sem-card__fig { position: absolute; left: 50%; top: calc(var(--stage-h) + var(--overlap) - var(--fig-h)); transform: translateX(-50%); transform-origin: bottom center; transition: transform .5s var(--ease), filter .5s var(--ease); z-index: 2; height: var(--fig-h); width: auto; max-width: 128%; filter: drop-shadow(0 16px 18px rgba(29,27,26,.24)); pointer-events: none; }
/* cream text body — in front of the figure's lower edge */
.sem-card__body { position: relative; z-index: 3; flex: 1; margin-top: -2px; background: var(--cream); border-radius: 0 0 20px 20px; padding: clamp(1.2rem, 2vw, 1.7rem); }
.sem-card:hover .sem-card__stage, .sem-card:hover .sem-card__body { transform: translateY(-8px); box-shadow: 0 28px 54px -26px rgba(29,27,26,.55); }
/* figure grows out of the lifting card (from her feet), so she rises above the "box" */
.sem-card:hover .sem-card__fig { transform: translateX(-50%) scale(1.04); filter: drop-shadow(0 22px 24px rgba(29,27,26,.28)); }
.sem-card .tile__tags { margin-bottom: .55rem; }
.sem-card h3 { margin: 0 0 .5rem; color: var(--ink); }
.sem-card p { margin: 0; color: var(--ink-soft); }
.sem-card--lean    .sem-card__stage { background: linear-gradient(165deg, #ffe1d2 0%, #ffc7bc 100%); }  /* green jacket → warm coral */
.sem-card--tie     .sem-card__stage { background: linear-gradient(165deg, #fdead0 0%, #f5d199 100%); }  /* navy shirt  → warm amber */
.sem-card--natural .sem-card__stage { background: linear-gradient(165deg, #dde9de 0%, #bad5c4 100%); }  /* aubergine top → soft sage */
@media (max-width: 720px) {
  .sem-grid { margin-top: clamp(4rem, 20vw, 6rem); }
  .sem-card { --stage-h: clamp(100px, 26vw, 140px); --fig-h: clamp(210px, 46vw, 260px); }
}

/* ---------- generic section ---------- */
.section { padding-block: clamp(2.5rem, 6vw, 5rem); }
.section--alt { background: var(--offwhite); border-block: 1px solid var(--line); }
.section--pink { background: var(--pink); border-block: 1px solid var(--pink-deep); }
.section__head { margin-bottom: clamp(1.6rem, 3vw, 2.4rem); max-width: 60ch; }
.section__head .eyebrow { margin-bottom: .5rem; }
.section__head h2 {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.8rem, 3.6vw, 2.7rem); letter-spacing: .01em;
  text-transform: uppercase; margin: 0 0 .4rem;
}
.section__head .sub { color: var(--ink-soft); }

/* ---------- prose ---------- */
.prose { max-width: 68ch; }
.prose p { margin: 0 0 1.1rem; color: var(--ink-soft); font-size: 1.06rem; }
.prose p.lead-p { font-family: var(--font-head); font-weight: 600; font-size: clamp(1.2rem, 2vw, 1.5rem); color: var(--ink); line-height: 1.4; }
.prose h3 { font-family: var(--font-head); font-weight: 700; font-size: 1.2rem; margin: 1.8rem 0 .5rem; }
.prose strong { color: var(--ink); }

/* ---------- featured row (image + text, alternating) ---------- */
.feature { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: center; }
.feature + .feature { margin-top: clamp(2.5rem, 5vw, 4rem); }
.feature--flip .feature__media { order: 2; }
.feature__media {
  border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 4 / 3; background: var(--cream-deep);
  box-shadow: var(--shadow);
}
.feature__media img { width: 100%; height: 100%; object-fit: cover; }
.feature__body h3 { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.7rem, 3.4vw, 2.6rem); text-transform: uppercase; letter-spacing: .01em; margin: .2rem 0 .5rem; }
.feature__body p { color: var(--ink-soft); margin-bottom: 1.2rem; }

/* ---------- card grid (pieces, seminars, books) ---------- */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: clamp(1.2rem, 2.5vw, 1.8rem); }
.card-grid--2 { grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); }
.tile {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.tile:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.tile__media { aspect-ratio: 16 / 11; overflow: hidden; background: var(--cream-deep); }
.tile__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.tile:hover .tile__media img { transform: scale(1.05); }
/* placeholder media when no photo yet */
.tile__media--ph { display: grid; place-items: center; background: linear-gradient(135deg, var(--cream-deep), var(--pink)); }
.tile__media--ph span { font-family: var(--font-script); font-size: 1.7rem; color: var(--red); padding: 1rem; text-align: center; }
.tile__body { padding: 1.2rem 1.3rem 1.4rem; display: flex; flex-direction: column; gap: .5rem; flex: 1; }
.tile__body h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.3rem; letter-spacing: .01em; text-transform: uppercase; margin: 0; line-height: 1.1; }
.tile__body p { font-size: .95rem; color: var(--ink-soft); margin: 0; }
.tile__body .text-link { margin-top: auto; }
.tile__tags { display: flex; flex-wrap: wrap; gap: .4rem; }
.tag-chip { font-family: var(--font-head); font-weight: 600; font-size: .66rem; letter-spacing: .1em; text-transform: uppercase; color: var(--red); background: color-mix(in srgb, var(--red) 10%, transparent); padding: .25em .7em; border-radius: 999px; }

/* ---------- video grid (youtube) ---------- */
.video-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.4rem; }
.video { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); background: #000; }
.video__frame { position: relative; aspect-ratio: 16 / 9; }
.video__frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video__label { background: var(--ink); color: var(--cream); padding: .7rem 1rem; font-family: var(--font-head); font-weight: 600; font-size: .85rem; letter-spacing: .04em; }

/* ---------- definition list (seminar facts) ---------- */
.facts-row { display: flex; flex-wrap: wrap; gap: 1rem 2rem; margin-top: 1rem; }
.facts-row div b { display: block; font-family: var(--font-head); font-weight: 700; font-size: .66rem; letter-spacing: .14em; text-transform: uppercase; color: var(--red); margin-bottom: .2rem; }

/* ---------- books ---------- */
.book { display: grid; grid-template-columns: 130px 1fr; gap: 1.5rem; align-items: start; }
.book__cover { aspect-ratio: 3 / 4; border-radius: 8px; overflow: hidden; box-shadow: var(--shadow); background: var(--cream-deep); display: grid; place-items: center; }
.book__cover span { font-family: var(--font-script); color: var(--red); font-size: 1.1rem; text-align: center; padding: .6rem; }
/* real 3D cover mockups (transparent, own shadow) */
.book { grid-template-columns: 168px 1fr; }
.book__cover-img { width: 100%; aspect-ratio: 1 / 1; object-fit: contain; display: block; filter: drop-shadow(0 14px 24px rgba(29,27,26,.22)); }
.book h3 { font-family: var(--font-head); font-weight: 700; font-size: 1.25rem; margin: 0 0 .2rem; }
.book .pub { font-size: .85rem; color: var(--muted); margin: 0 0 .7rem; }

/* ---------- contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(1.5rem, 4vw, 3.5rem); }
.contact-block h3 { font-family: var(--font-head); letter-spacing: .12em; text-transform: uppercase; font-size: .82rem; color: var(--red); margin: 0 0 .6rem; }
.contact-block p { margin: 0 0 1.2rem; font-size: 1.05rem; }
.contact-block a { color: var(--ink); border-bottom: 1px solid var(--line); }
.contact-block a:hover { border-color: var(--red); color: var(--red); }
/* the ticket/CTA button keeps its own colours inside contact blocks */
.contact-block a.btn { color: #fff; border-bottom: 0; }
.contact-block a.btn:hover { color: #fff; border-color: var(--red); }

/* ---------- archive (lightly styled, tidy) ---------- */
.archive-intro { color: var(--ink-soft); max-width: 60ch; margin-bottom: 2rem; }
.archive-group { margin-bottom: 2.2rem; }
.archive-group h2 { font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; letter-spacing: .06em; text-transform: uppercase; color: var(--ink); padding-bottom: .5rem; border-bottom: 2px solid var(--line); margin: 0 0 .8rem; }
.archive-list { list-style: none; margin: 0; padding: 0; columns: 2; column-gap: 2.5rem; }
.archive-list li { break-inside: avoid; padding: .4rem 0; border-bottom: 1px solid var(--line); }
.archive-list li a { display: flex; justify-content: space-between; gap: 1rem; color: var(--ink-soft); }
.archive-list li a:hover { color: var(--red); }
.archive-list .muted { color: var(--muted); font-size: .85rem; }

/* ---------- show hero (performance project pages) ---------- */
.show-hero { border-bottom: 1px solid var(--line); overflow: hidden; }
.show-hero--cream { background: var(--cream); }
.show-hero--pink { background: var(--pink); }
.show-hero__inner { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: center; padding-block: clamp(2rem, 4vw, 3.25rem); }
.show-hero__media { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4 / 5; box-shadow: var(--shadow); background: var(--cream-deep); }
.show-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.show-hero h1 { font-family: var(--font-display); font-weight: 500; font-size: clamp(2.2rem, 5.5vw, 4rem); line-height: .95; text-transform: uppercase; margin: .4rem 0 .8rem; }
.show-hero__script { font-family: var(--font-script); font-size: clamp(1.4rem, 2.2vw, 1.9rem); color: var(--red); }
.show-hero .lead { color: var(--ink-soft); font-size: 1.06rem; max-width: 46ch; margin-bottom: 1.4rem; }

/* ---------- events schedule list ---------- */
.ev-list { border-top: 1px solid var(--line); }
.ev-row { display: grid; grid-template-columns: 92px 1fr auto; gap: 1.5rem; align-items: center; padding: 1.25rem 0; border-bottom: 1px solid var(--line); text-decoration: none; color: inherit; transition: padding-left .3s var(--ease); }
.ev-row:hover { padding-left: .5rem; }
.ev-row__date { text-align: center; min-width: 78px; }
.ev-row__date b { display: block; font-family: var(--font-display); font-weight: 500; font-size: 2rem; line-height: 1; color: var(--red); }
.ev-row__date span { font-family: var(--font-head); font-weight: 600; font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.ev-row__main { min-width: 0; }
.ev-row__main .eyebrow { margin: 0 0 .1rem; }
.ev-row__main h3 { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.15rem, 2.2vw, 1.5rem); text-transform: uppercase; letter-spacing: .01em; margin: 0; line-height: 1.05; }
.ev-row__main .meta { font-size: .9rem; color: var(--muted); margin: .2rem 0 0; }
.ev-row .text-link { white-space: nowrap; }
@media (max-width: 640px) { .ev-row { grid-template-columns: 60px 1fr; gap: 1rem; } .ev-row .text-link { display: none; } .ev-row__date b { font-size: 1.6rem; } }

/* ---------- gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1rem; }
.gallery a, .gallery figure { margin: 0; border-radius: var(--radius); overflow: hidden; display: block; background: var(--cream-deep); }
.gallery img { width: 100%; height: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block; transition: transform .6s var(--ease); }
.gallery a:hover img { transform: scale(1.05); }
.gallery .tall img { aspect-ratio: 3 / 4; }

/* ---------- archive accordion ---------- */
.archive-acc { border-top: 1px solid var(--line); margin-bottom: 2rem; }
.archive-acc details { border-bottom: 1px solid var(--line); }
.archive-acc summary {
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding: .95rem .2rem; cursor: pointer; list-style: none;
  font-family: var(--font-head); font-weight: 600; color: var(--ink);
}
.archive-acc summary::-webkit-details-marker { display: none; }
.archive-acc summary .muted { color: var(--muted); font-size: .8rem; font-weight: 400; letter-spacing: .06em; text-transform: uppercase; }
.archive-acc summary::after { content: "+"; color: var(--red); font-size: 1.4rem; line-height: 1; margin-left: auto; }
.archive-acc details[open] summary::after { content: "\2013"; }
.archive-acc .archive-body { padding: 0 .2rem 1.3rem; color: var(--ink-soft); max-width: 72ch; }
.archive-acc .archive-body p { margin: 0 0 .8rem; }

/* ---------- callout / cta band ---------- */
.cta-band { background: var(--red); color: #fff; text-align: center; padding-block: clamp(2.5rem, 5vw, 4rem); }
.cta-band h2 { font-family: var(--font-display); font-weight: 500; font-size: clamp(1.8rem, 4vw, 3rem); text-transform: uppercase; margin: 0 0 1.2rem; }
.cta-band .btn { --bg: #fff; --fg: var(--red); border-color: #fff; }

/* ---------- responsive ---------- */
@media (max-width: 820px) {
  .feature, .feature--flip { grid-template-columns: 1fr; }
  .feature--flip .feature__media { order: 0; }
  .contact-grid { grid-template-columns: 1fr; }
  .archive-list { columns: 1; }
  .book { grid-template-columns: 100px 1fr; gap: 1rem; }
  .page-hero__brush { display: none; }
}
