/* ==========================================================================
   Method Productions — design system
   Extracted from "Method Productions Immersive" deck:
     bone #EEEBE3 field · blue #004AAD type · vermilion #C72A09 accents
     Avenir (Heavy/Roman) display + Inter body
   ========================================================================== */

:root {
  /* Palette */
  --bone: #EEEBE3;
  --bone-deep: #E4E0D5;
  --bone-pale: #F6F4EF;
  --blue: #004AAD;
  --blue-dark: #003A88;
  --red: #C72A09;
  --red-dark: #A32207;
  --steel: #4A7BA7;
  --grey: #6B6B6B;
  --white: #FFFFFF;

  --muted: rgba(0, 74, 173, 0.60);
  --rule: rgba(0, 74, 173, 0.16);
  --rule-soft: rgba(0, 74, 173, 0.09);

  /* Type */
  --display: "Avenir Next", "Avenir LT Pro", Avenir, "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --body: "Inter", "Avenir Next", Avenir, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial, sans-serif;

  /* Fluid type scale. Each step ramps linearly from its min at a 320px viewport
     to its max at 1240px, so sizes actually scale on phones rather than sitting
     on a floor. Minimums are measured, not guessed: the display face renders at
     ~8.84x font-size for a 13-character word, and a 320px viewport leaves 276px
     of container, which sets the 28px ceiling on --fs-3xl. */
  --fs-3xl:  clamp(1.75rem,   0.10rem + 8.26vw, 6.50rem);   /* hero h1    28 -> 104 */
  --fs-2xl:  clamp(1.625rem,  0.80rem + 4.13vw, 4.25rem);   /* show h1/h2 26 -> 68  */
  --fs-xl:   clamp(1.3125rem, 0.94rem + 1.85vw, 2.375rem);  /* statement  21 -> 38  */
  --fs-lg:   clamp(1.1875rem, 1.03rem + 0.76vw, 1.625rem);  /* titles     19 -> 26  */
  --fs-md:   clamp(1.0625rem, 1.00rem + 0.54vw, 1.375rem);  /* lede       17 -> 22  */
  --fs-base: 1.0625rem;   /* 17 */
  --fs-sm:   0.9375rem;   /* 15 */
  --fs-xs:   0.78rem;     /* ~12.5 */
  --fs-2xs:  0.72rem;     /* ~11.5 */

  /* Fluid vertical rhythm — same 320px -> 1240px ramp. */
  --space-hero:    clamp(3.5rem, 2.4rem + 5.2vw, 6.5rem);   /* 56 -> 104 */
  --space-section: clamp(3rem,   2.2rem + 3.9vw, 5.25rem);  /* 48 -> 84  */
  --space-gap:     clamp(2rem,   1.3rem + 3.5vw, 4rem);     /* 32 -> 64  */

  /* Minimum comfortable touch target. */
  --tap: 44px;

  --maxw: 1240px;
}

* { box-sizing: border-box; }

html {
  /* Sticky header covers ~70-80px. Padding pushes any anchor scroll (in-page
     links, browser Find-in-page, deep links with #hash) so the target lands
     below the header rather than hidden underneath it. */
  scroll-padding-top: 90px;
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--bone);
  color: var(--blue);
  font-family: var(--body);
  font-size: var(--fs-base);
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, iframe, video, embed, object { max-width: 100%; }
img { display: block; }

a {
  color: var(--blue);
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 74, 173, 0.35);
  transition: color .15s ease, border-color .15s ease;
}
a:hover { color: var(--red); border-bottom-color: var(--red); }

/* Keyboard focus. There was previously no focus style anywhere, and
   outline:none on fields — so keyboard users had no visible indicator. */
:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
}

p { margin: 0 0 1.1em; }
strong { font-weight: 700; }

/* Visually hidden but available to screen readers. */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 700px) { .container { padding: 0 22px; } }

/* --------------------------------------------------------------------------
   Typographic primitives — lifted from the deck
   -------------------------------------------------------------------------- */

/* Big stacked uppercase blue headline (the deck's signature move) */
.display {
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.015em;
  line-height: 0.92;
  color: var(--blue);
  margin: 0;
  /* Backstop: show titles come from the CMS, so no font-size floor can be
     proven safe against an arbitrary long word. Break rather than clip. */
  overflow-wrap: break-word;
}
h1.display { font-size: var(--fs-3xl); }
h2.display { font-size: var(--fs-2xl); }

/* Size modifiers — for display type that isn't the page's primary heading.
   Doubled class selector so these beat `h1.display` / `h2.display`, which
   would otherwise win on specificity (element+class > single class). */
.display.display--2xl { font-size: var(--fs-2xl); }
.display.display--xl  { font-size: var(--fs-xl); }
.display.display--lg  { font-size: var(--fs-lg); }

/* Large red uppercase pull-statement (mission, closing lines). */
.statement {
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--red);
  font-size: var(--fs-xl);
  line-height: 1.22;
  letter-spacing: -0.005em;
  margin: 0;
  overflow-wrap: break-word;
}

/* Red uppercase eyebrow that introduces a blue block — used all over the deck */
.eyebrow {
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.875rem;
  line-height: 1.35;
  color: var(--red);
  margin: 0 0 10px;
}
.eyebrow.blue { color: var(--blue); }
.eyebrow--lg { font-size: 1rem; letter-spacing: 0.14em; margin-bottom: 22px; }

/* Small section label */
.section-label {
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: var(--fs-xs);
  color: var(--red);
  margin: 0 0 26px;
  display: flex;
  align-items: baseline;
  gap: 14px;
}
.section-label .num {
  color: var(--blue);
  letter-spacing: 0.02em;
}

/* Deck's uppercase blue body copy */
.upper-body {
  text-transform: uppercase;
  letter-spacing: 0.01em;
  font-size: var(--fs-sm);
  line-height: 1.55;
}

.lede {
  font-size: var(--fs-md);
  line-height: 1.5;
  color: var(--blue);
  max-width: 62ch;
}

.muted { color: var(--muted); }

/* --------------------------------------------------------------------------
   Utilities — the home for what used to be inline style="…" attributes.
   -------------------------------------------------------------------------- */

/* Spacing above a row of buttons. Replaces five different inline margin-tops. */
.actions { margin-top: 30px; }
.actions--tight { margin-top: 22px; }

/* Constrain measure on a standalone paragraph (matches .lede). */
.measure { max-width: 62ch; }
.measure--spaced { margin-bottom: 32px; }

/* Extra separation below a block that leads into another component. */
.schedule--spaced { margin-bottom: 52px; }
.grid--spaced { margin-bottom: 48px; }
.statement--spaced { margin-top: 36px; }

/* A labelled block in a stacked list, e.g. the contact details column. */
.contact-block { margin-bottom: 26px; }
.contact-block p { margin: 0; }

/* Responsive video/embed wrapper. */
.embed--16x9 { aspect-ratio: 16 / 9; width: 100%; }
.embed--16x9 iframe { width: 100%; height: 100%; border: 0; display: block; }

/* Review pull-quote. */
.pullquote { margin: 0; }
.pullquote p {
  font-size: var(--fs-lg);
  line-height: 1.25;
  margin: 0;
}
.pullquote .eyebrow { margin: 12px 0 0; }

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(238, 235, 227, 0.94);
  -webkit-backdrop-filter: saturate(140%) blur(8px);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--rule-soft);
}
.site-header .container {
  max-width: 1440px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
  padding-top: 12px;
  padding-bottom: 12px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  border: none;
  min-height: var(--tap);
}
.brand img { width: 38px; height: auto; }
.brand .brand-text {
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 15px;
  line-height: 1;
  color: var(--blue);
}
.brand .brand-text small {
  display: block;
  font-weight: 500;
  font-size: 9px;
  letter-spacing: 0.42em;
  color: var(--grey);
  text-transform: lowercase;
  margin-top: 4px;
}
.brand:hover .brand-text { color: var(--red); }

/* Right-hand cluster: optional CTA + the mobile menu toggle. */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  order: 3;
}

.site-nav { display: flex; gap: 28px; align-items: center; order: 2; margin-left: auto; }
.site-nav a {
  position: relative;
  display: inline-block;
  font-family: var(--display);
  font-weight: 700;
  font-size: var(--fs-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: none;
  /* Vertical padding brings the tap target to >=44px; the active underline
     is drawn by ::after so it stays tight to the text instead of drifting
     down to the edge of that padding. */
  padding: 13px 2px;
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 2px; right: 2px;
  bottom: 10px;
  height: 2px;
  background: transparent;
}
.site-nav a:hover { color: var(--red); }
.site-nav a.active::after { background: var(--red); }

/* Book Tickets CTA. Optional — remove when no show is on sale (see SHOWS.md). */
.btn--cta {
  display: inline-flex;
  align-items: center;
  min-height: var(--tap);
  font-family: var(--display);
  font-weight: 700;
  font-size: var(--fs-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: var(--blue);
  color: var(--bone);
  border: none;
  padding: 14px 18px;
  white-space: nowrap;
}
.btn--cta:hover { background: var(--red); color: var(--bone); }

/* Hamburger toggle — hidden on desktop, shown before the longer navigation
   begins to crowd the ticket CTA. */
.nav-toggle {
  display: none;
  width: var(--tap);
  height: var(--tap);
  padding: 0;
  border: 1px solid var(--rule);
  background: transparent;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.nav-toggle-bars,
.nav-toggle-bars::before,
.nav-toggle-bars::after {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--blue);
  transition: transform .18s ease, opacity .18s ease;
}
.nav-toggle-bars { position: relative; }
.nav-toggle-bars::before,
.nav-toggle-bars::after { content: ""; position: absolute; left: 0; }
.nav-toggle-bars::before { top: -6px; }
.nav-toggle-bars::after  { top: 6px; }

[aria-expanded="true"] .nav-toggle-bars { background: transparent; }
[aria-expanded="true"] .nav-toggle-bars::before { top: 0; transform: rotate(45deg); }
[aria-expanded="true"] .nav-toggle-bars::after  { top: 0; transform: rotate(-45deg); }

/* nav.js adds this state only when the complete desktop header would no
   longer fit on one line. This keeps the full navigation visible on laptops
   instead of relying on a fixed viewport breakpoint. */
.site-header.nav-collapsed .container { gap: 16px; }
.site-header.nav-collapsed .nav-actions { order: 2; margin-left: auto; }
.site-header.nav-collapsed .site-nav {
  order: 3;
  width: 100%;
  margin-left: 0;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  padding: 8px 0 4px;
  border-top: 1px solid var(--rule-soft);
  margin-top: 2px;
}
.site-header.nav-collapsed .site-nav a { width: 100%; padding: 14px 2px; font-size: 0.8125rem; }
.site-header.nav-collapsed .site-nav a::after { bottom: 11px; right: auto; width: 22px; }

/* Collapse behaviour is gated on .has-js, which the script adds. Without
   JS the toggle stays hidden and the nav remains reachable. */
.site-header.has-js.nav-collapsed .nav-toggle { display: flex; }
.site-header.has-js.nav-collapsed .site-nav { display: none; }
.site-header.has-js.nav-collapsed.nav-open .site-nav { display: flex; }

/* Keep the brand, ticket CTA and menu control on one row even on the
   narrowest supported phone screens. */
@media (max-width: 420px) {
  .site-header .container {
    gap: 10px;
    padding-left: 16px;
    padding-right: 16px;
  }
  .brand { gap: 8px; }
  .brand .brand-text small { display: none; }
  .nav-actions { gap: 8px; }
  .btn--cta {
    padding: 12px 10px;
    font-size: 0.68rem;
    letter-spacing: 0.1em;
  }
}

@media (max-width: 350px) {
  .brand .brand-text { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .nav-toggle-bars,
  .nav-toggle-bars::before,
  .nav-toggle-bars::after { transition: none; }
}

/* --------------------------------------------------------------------------
   Hero + sections
   -------------------------------------------------------------------------- */

.hero { padding: var(--space-hero) 0 var(--space-section); }
.hero .lede { margin-top: 28px; }

/* Production Services — editorial, production-led landing page. */
.production-hero { min-height: calc(100vh - 69px); display: flex; align-items: center; }
.production-hero__statement {
  max-width: 22ch;
  margin-top: 34px;
}
.production-hero .lede { max-width: 58ch; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--rule);
}
.service-card {
  position: relative;
  min-width: 0;
  padding: clamp(28px, 4vw, 52px) clamp(24px, 4vw, 48px) clamp(34px, 5vw, 60px) 0;
  border-bottom: 1px solid var(--rule);
}
.service-card:nth-child(odd) { border-right: 1px solid var(--rule); }
.service-card:nth-child(even) { padding-left: clamp(24px, 4vw, 48px); }
.service-card__num {
  margin-bottom: 34px;
  font-family: var(--display);
  font-size: var(--fs-2xs);
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--red);
}
.service-card p { color: var(--muted); max-width: 48ch; }
.service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px 24px;
  margin: 24px 0 0;
  padding: 22px 0 0;
  border-top: 1px solid var(--rule-soft);
  list-style: none;
}
.service-list li {
  position: relative;
  padding-left: 16px;
  font-size: var(--fs-sm);
  color: var(--blue);
}
.service-list li::before {
  content: "↗";
  position: absolute;
  left: 0;
  color: var(--red);
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 40px);
}
.work-card { display: flex; flex-direction: column; min-width: 0; }
.work-card__visual {
  position: relative;
  display: flex;
  align-items: flex-end;
  aspect-ratio: 4 / 5;
  margin-bottom: 22px;
  padding: clamp(20px, 3vw, 34px);
  overflow: hidden;
  border: 0;
}
.work-card__visual span {
  position: relative;
  z-index: 1;
  font-family: var(--display);
  font-size: clamp(1.7rem, 3.3vw, 3.45rem);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}
.work-card__visual--boxer { background: var(--blue); color: var(--bone); }
.work-card__visual--boxer::after {
  content: "";
  position: absolute;
  width: 70%;
  aspect-ratio: 1;
  top: 9%;
  right: -20%;
  border: clamp(18px, 3vw, 38px) solid var(--red);
  border-radius: 50%;
}
.work-card__visual--metaphors {
  align-items: flex-start;
  background: var(--red);
  color: var(--bone);
}
.work-card__visual--metaphors::after {
  content: "XXVII";
  position: absolute;
  right: 8%;
  bottom: 1%;
  font-family: var(--display);
  font-size: clamp(4rem, 8vw, 8rem);
  font-weight: 800;
  line-height: 1;
  color: rgba(238, 235, 227, 0.18);
}
.work-card__visual--image { padding: 0; background: var(--blue-dark); }
.work-card__visual--image img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.work-card__visual--image:hover img { transform: scale(1.025); }
.work-card .meta {
  font-family: var(--display);
  font-weight: 700;
  font-size: var(--fs-2xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}
.work-card h3 { margin-bottom: 8px; }
.work-card p { color: var(--muted); font-size: var(--fs-sm); }
.work-card .card-link {
  align-self: flex-start;
  margin-top: auto;
  padding: 10px 0;
  font-family: var(--display);
  font-weight: 700;
  font-size: var(--fs-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: none;
}

.capabilities-intro { max-width: 46ch; margin-bottom: 28px; font-size: var(--fs-md); }

.world-section {
  background: var(--blue);
  color: var(--bone);
  border-top-color: transparent;
}
.world-section .section-label,
.world-section .section-label .num,
.world-section h3,
.world-section .world-section__title { color: var(--bone); }
.world-section .eyebrow { color: #ff6846; }
.world-section__title { margin-bottom: clamp(42px, 7vw, 86px); }
.world-section__title span { color: #ff6846; }
@media (min-width: 701px) {
  .world-section__title { white-space: nowrap; }
}
.world-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; background: rgba(238, 235, 227, 0.22); }
.world-grid article { display: flex; flex-direction: column; align-items: flex-start; padding: clamp(28px, 4vw, 54px); background: var(--blue); }
.world-grid p { color: rgba(238, 235, 227, 0.78); max-width: 52ch; }
.world-grid .btn { margin-top: auto; color: var(--bone); border-color: var(--bone); }
.world-grid .btn:hover { background: var(--bone); color: var(--blue); border-color: var(--bone); }
.world-grid .btn.primary { background: var(--bone); color: var(--blue); }
.world-grid .btn.primary:hover { background: var(--red); color: var(--bone); border-color: var(--red); }

.credibility-band { padding: clamp(28px, 4vw, 44px) 0; background: var(--red); color: var(--bone); }
.credibility-band .container { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.credibility-band p {
  margin: 0;
  font-family: var(--display);
  font-weight: 800;
  font-size: var(--fs-lg);
  line-height: 1.15;
  text-transform: uppercase;
}
.credibility-band--home .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(28px, 6vw, 72px);
  text-align: center;
}
.credibility-band--home p {
  font-size: clamp(1rem, 2.1vw, 1.625rem);
  white-space: nowrap;
}
@media (max-width: 800px) {
  .credibility-band--home .container { flex-direction: column; gap: 12px; }
}
.closing-cta { padding-top: clamp(70px, 10vw, 130px); padding-bottom: clamp(70px, 10vw, 130px); }

/* Brand Experiences — structured as a journey from creative proposition to
   process, proof and enquiry. Placeholder work remains intentionally graphic. */
.brand-experience-hero { min-height: calc(100vh - 69px); display: flex; align-items: center; }
.brand-experience-hero__question { max-width: 25ch; margin-top: 34px; }
.brand-experience-hero .lede { max-width: 52ch; }
.brand-experience-hero__intro { max-width: 68ch; }
.brand-experience-hero__intro > :last-child { margin-bottom: 0; }

.brand-intro-grid,
.brief-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: var(--space-gap);
  align-items: start;
}
.brand-intro-copy { max-width: 62ch; }
.brand-intro-copy > :last-child { margin-bottom: 0; }

.experience-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}
.experience-card {
  grid-column: span 2;
  min-width: 0;
  min-height: 300px;
  padding: clamp(24px, 3vw, 38px);
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.experience-card:nth-last-child(-n + 2) { grid-column: span 3; }
.experience-card__num,
.approach-grid article > span,
.process-grid article > span {
  display: block;
  margin-bottom: 48px;
  font-family: var(--display);
  font-size: var(--fs-2xs);
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--red);
}
.experience-card p { color: var(--muted); font-size: var(--fs-sm); }

.section.method-approach {
  padding-top: var(--space-section);
  background: var(--blue);
  color: var(--bone);
}
.method-approach .section-label,
.method-approach .section-label .num,
.method-approach h3 { color: var(--bone); }
.approach-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid rgba(238, 235, 227, 0.25);
  border-bottom: 1px solid rgba(238, 235, 227, 0.25);
}
.approach-grid--six { grid-template-columns: repeat(6, minmax(0, 1fr)); }
.approach-intro {
  max-width: 68ch;
  margin: 0 0 36px;
  color: rgba(238, 235, 227, 0.78);
  font-size: var(--fs-md);
}
.approach-grid article {
  min-width: 0;
  padding: clamp(26px, 3vw, 40px);
  border-right: 1px solid rgba(238, 235, 227, 0.18);
}
.approach-grid article:last-child { border-right: 0; }
.approach-grid article > span { color: #ff6846; }
.approach-grid p { margin: 0; color: rgba(238, 235, 227, 0.72); font-size: var(--fs-sm); }

.brand-work-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(42px, 6vw, 76px) clamp(24px, 4vw, 48px);
}
.brand-work-card { min-width: 0; }
.brand-work-card__visual {
  position: relative;
  display: flex;
  align-items: flex-end;
  aspect-ratio: 16 / 10;
  margin-bottom: 20px;
  padding: clamp(24px, 4vw, 48px);
  overflow: hidden;
}
.brand-work-card__visual span {
  position: relative;
  z-index: 1;
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2.4rem, 5.6vw, 5.8rem);
  line-height: 0.9;
  letter-spacing: -0.045em;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}
.brand-work-card--netflix .brand-work-card__visual { background: #111; color: #e50914; }
.brand-work-card--netflix .brand-work-card__visual::after {
  content: "N";
  position: absolute;
  top: -24%;
  right: -2%;
  font-family: var(--display);
  font-size: clamp(15rem, 35vw, 35rem);
  font-weight: 800;
  line-height: 1;
  color: rgba(229, 9, 20, 0.16);
}
.brand-work-card--hashkey .brand-work-card__visual { align-items: flex-start; background: var(--blue); color: var(--bone); }
.brand-work-card--hashkey .brand-work-card__visual::after {
  content: "";
  position: absolute;
  width: 48%;
  aspect-ratio: 1;
  right: 10%;
  bottom: -14%;
  border: clamp(18px, 3vw, 34px) solid var(--red);
  transform: rotate(45deg);
}
.brand-work-card--placeholder .brand-work-card__visual { background: var(--red); color: var(--bone); }
.brand-work-card--placeholder-alt .brand-work-card__visual { background: var(--bone-deep); color: var(--blue); }
.brand-work-card .meta {
  margin-bottom: 10px;
  font-family: var(--display);
  font-size: var(--fs-2xs);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
}
.brand-work-card p { color: var(--muted); font-size: var(--fs-sm); max-width: 54ch; }
.brand-work-card__role {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--rule);
}
.brand-work-card__role strong {
  display: block;
  margin-bottom: 5px;
  color: var(--red);
  font-family: var(--display);
  font-size: var(--fs-2xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.brand-work-card__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: var(--tap);
  margin-top: 8px;
  border: 0;
  font-family: var(--display);
  font-weight: 800;
  font-size: var(--fs-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.brand-work-card__link span { color: var(--red); font-size: 1rem; }
.brand-work-card--inside-job .brand-work-card__visual { background: var(--red); color: var(--bone); }

.brief-section { background: var(--bone-pale); }
.brief-prompt-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 28px;
  margin: 18px 0 32px;
  padding: 0;
  border-top: 1px solid var(--rule);
  list-style: none;
}
.brief-prompt-list li {
  padding: 15px 0;
  border-bottom: 1px solid var(--rule);
  font-family: var(--display);
  font-size: var(--fs-sm);
  font-weight: 700;
  text-transform: uppercase;
}
.brief-statement { margin: 34px 0; font-size: var(--fs-lg); }

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.process-grid article {
  position: relative;
  min-width: 0;
  padding: clamp(28px, 3vw, 44px) clamp(20px, 2.5vw, 34px);
}
.process-grid article:not(:last-child)::after {
  content: "→";
  position: absolute;
  top: 50%;
  right: -0.35em;
  z-index: 1;
  color: var(--red);
  font-size: var(--fs-lg);
  transform: translateY(-50%);
}
.process-grid p { margin: 0; color: var(--muted); font-size: var(--fs-sm); }

.results-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: var(--space-gap); align-items: start; }
.result-placeholders { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--rule); }
.result-placeholders article { padding: 24px 16px 24px 0; border-bottom: 1px solid var(--rule); }
.result-placeholders strong {
  display: block;
  font-family: var(--display);
  font-size: var(--fs-xl);
  line-height: 1;
  color: var(--red);
}
.result-placeholders span {
  display: block;
  margin-top: 12px;
  font-family: var(--display);
  font-size: var(--fs-2xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.brand-quote { margin: 0; padding-left: clamp(24px, 4vw, 52px); border-left: 1px solid var(--rule); }
.brand-quote p {
  margin: 0;
  font-family: var(--display);
  font-size: var(--fs-xl);
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--blue);
}
.brand-quote cite {
  display: block;
  margin-top: 24px;
  font-family: var(--display);
  font-size: var(--fs-xs);
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
}
.brand-closing-cta { background: var(--bone-pale); }
.brand-capabilities__closing { max-width: 68ch; margin: 34px 0 0; color: var(--muted); }

@media (max-width: 860px) {
  .production-hero { min-height: auto; }
  .work-grid { grid-template-columns: 1fr 1fr; }
  .work-card:last-child { grid-column: 1 / -1; max-width: calc(50% - 12px); }
  .world-grid { grid-template-columns: 1fr; }
  .brand-experience-hero { min-height: auto; }
  .experience-grid, .approach-grid, .process-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .experience-card,
  .experience-card:nth-last-child(-n + 2) { grid-column: auto; }
  .brand-intro-grid, .brief-grid, .brand-work-grid, .results-grid { grid-template-columns: 1fr; }
  .approach-grid article:nth-child(even) { border-right: 0; }
  .approach-grid article { border-bottom: 1px solid rgba(238, 235, 227, 0.18); }
  .approach-grid article:last-child { border-bottom: 0; }
  .process-grid article::after { display: none; }
  .brand-quote { padding-top: 36px; padding-left: 0; border-top: 1px solid var(--rule); border-left: 0; }
}

@media (max-width: 700px) {
  .services-grid, .work-grid, .credibility-band .container { grid-template-columns: 1fr; }
  .service-card,
  .service-card:nth-child(even) { padding-left: 0; padding-right: 0; border-right: 0; }
  .service-list { grid-template-columns: 1fr; }
  .work-card:last-child { grid-column: auto; max-width: none; }
  .credibility-band .container { gap: 12px; }
  .experience-grid, .approach-grid, .brand-work-grid, .process-grid, .result-placeholders { grid-template-columns: 1fr; }
  .brief-prompt-list { grid-template-columns: 1fr; }
  .experience-card { min-height: 0; }
  .approach-grid article { border-right: 0; }
  .experience-card__num,
  .approach-grid article > span,
  .process-grid article > span { margin-bottom: 28px; }
}

.section { padding: var(--space-section) 0; }
.section + .section { padding-top: 0; }
.section.ruled { border-top: 1px solid var(--rule-soft); padding-top: var(--space-section); }
.section h3 {
  font-family: var(--display);
  font-weight: 800;
  font-size: var(--fs-lg);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 10px;
  text-transform: uppercase;
  overflow-wrap: break-word;
}
/* Editorial subhead — an h3 that sits inline within a run of body copy
   (long "our story" narratives, articles). Extra top space so it reads as a
   break rather than another inline element. The first h3 in a block has no
   preceding <p> so this doesn't affect it — it sits flush with the top. */
.section p + h3 { margin-top: 1.8em; }

/* Long-form reading column — for editorial content that runs many paragraphs
   past the point where the .split pattern starts leaving a wasted empty column.
   Constrains to a ~72-character measure (the standard for extended body copy),
   left-aligned within its container. Mobile inherits full width naturally. */
.prose { max-width: 72ch; }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-gap); }
.split { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: var(--space-gap); }
/* min-width:0 stops an unbreakable child from forcing a track wider than its share. */
.two-col > *, .split > * { min-width: 0; }
@media (max-width: 860px) {
  .two-col, .split { grid-template-columns: 1fr; gap: 40px; }
}

/* Deck's centered stacked text block */
.center-block { text-align: center; max-width: 900px; margin: 0 auto; }
.center-block .eyebrow { margin-bottom: 6px; }
.center-block .upper-body { margin: 0 0 32px; }

/* Portrait-poster hero for show pages — poster sits left, copy sits right,
   stacks on mobile. Uses the show's own key art as the visual anchor. */
.poster-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 64px;
  align-items: center;
}
.poster-frame {
  max-width: 480px;
  justify-self: start;
  width: 100%;
}
.poster-frame img {
  width: 100%;
  height: auto;
  display: block;
  box-shadow:
    0 24px 60px -24px rgba(0, 0, 0, 0.45),
    0 6px 16px rgba(0, 0, 0, 0.08);
}
.poster-copy { min-width: 0; }
.home-booking__poster {
  border-bottom: 0;
  transition: transform .25s ease;
}
.home-booking__poster:hover {
  border-bottom: 0;
  transform: translateY(-4px);
}
.home-booking__copy .eyebrow { margin-bottom: 18px; }
.home-booking__copy .display { margin-bottom: 28px; }
.home-booking__copy .lede { max-width: 52ch; margin-bottom: 22px; }
.home-booking__copy .upper-body { max-width: 48ch; margin-bottom: 32px; }
@media (max-width: 860px) {
  .poster-hero { grid-template-columns: 1fr; gap: 44px; }
  .poster-frame { max-width: 420px; justify-self: center; }
}
@media (prefers-reduced-motion: reduce) {
  .home-booking__poster { transition: none; }
  .home-booking__poster:hover { transform: none; }
}

/* Landscape show hero — companion to `.poster-hero`. A future CMS selects
   this treatment when `hero_orientation` is set to `landscape`. */
.landscape-show-hero { padding: clamp(62px, 8vw, 110px) 0 var(--space-section); }
.landscape-show-hero__intro {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  align-items: end;
  gap: var(--space-gap);
  margin-bottom: clamp(42px, 6vw, 72px);
}
.landscape-show-hero__intro .eyebrow { margin-bottom: 20px; }
.landscape-show-hero__summary { max-width: 58ch; justify-self: end; }
.landscape-show-hero__summary .lede { margin-bottom: 18px; }
.landscape-show-hero__summary .btn { margin-top: 16px; }
.landscape-show-hero__media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin: 0;
  overflow: hidden;
  background: var(--blue);
  box-shadow: 0 24px 70px -32px rgba(0, 0, 0, 0.52);
}
.landscape-show-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.landscape-show-hero__media figcaption {
  position: absolute;
  right: 18px;
  bottom: 15px;
  padding: 7px 9px;
  background: rgba(7, 28, 66, 0.76);
  color: var(--bone);
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.show-facts-band { background: var(--red); color: var(--bone); }
.show-facts-band .container { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.show-facts-band .container > div { min-width: 0; padding: 28px clamp(18px, 2.5vw, 34px); border-right: 1px solid rgba(238, 235, 227, 0.28); }
.show-facts-band .container > div:first-child { padding-left: 0; }
.show-facts-band .container > div:last-child { border-right: 0; }
.show-facts-band span,
.show-facts-band strong { display: block; }
.show-facts-band span { margin-bottom: 6px; font-size: var(--fs-2xs); font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; opacity: 0.74; }
.show-facts-band strong { font-family: var(--display); font-size: var(--fs-sm); line-height: 1.25; text-transform: uppercase; color: var(--bone); }
.show-video-section { background: var(--blue); color: var(--bone); }
.show-video-section .section-label,
.show-video-section .section-label .num { color: var(--bone); }
.show-video-placeholder {
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 30px;
  border: 1px solid rgba(238, 235, 227, 0.45);
  background: linear-gradient(145deg, rgba(238, 235, 227, 0.06), rgba(238, 235, 227, 0.015));
  text-align: left;
}
.show-video-placeholder__icon { display: grid; place-items: center; flex: 0 0 64px; width: 64px; height: 64px; padding-left: 4px; border: 1px solid var(--bone); border-radius: 50%; font-size: 1.1rem; }
.show-video-placeholder strong,
.show-video-placeholder small { display: block; }
.show-video-placeholder strong { font-family: var(--display); font-size: var(--fs-lg); text-transform: uppercase; color: var(--bone); }
.show-video-placeholder small { margin-top: 7px; color: rgba(238, 235, 227, 0.72); }
.show-detail-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border-top: 1px solid var(--rule); }
.show-detail-grid article { min-width: 0; min-height: 180px; padding: 28px clamp(18px, 2.5vw, 32px); border-right: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.show-detail-grid article:last-child { border-right: 0; }
.show-detail-grid span,
.show-detail-grid strong { display: block; }
.show-detail-grid span { margin-bottom: 50px; color: var(--red); font-family: var(--display); font-weight: 700; font-size: var(--fs-2xs); letter-spacing: 0.15em; text-transform: uppercase; }
.show-detail-grid strong { font-family: var(--display); font-size: var(--fs-lg); line-height: 1.15; text-transform: uppercase; }
.show-template-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 16px 24px; margin: 34px 0 0; }
.show-template-actions span { color: var(--muted); font-size: var(--fs-sm); }
.show-credit-list p { display: grid; grid-template-columns: minmax(110px, 0.4fr) minmax(0, 1fr); gap: 20px; margin: 0; padding: 15px 0; border-bottom: 1px solid var(--rule); }
.show-credit-list p:first-child { border-top: 1px solid var(--rule); }
.show-credit-list strong { color: var(--red); font-family: var(--display); font-size: var(--fs-xs); letter-spacing: 0.12em; text-transform: uppercase; }

@media (max-width: 860px) {
  .landscape-show-hero__intro { grid-template-columns: 1fr; }
  .landscape-show-hero__summary { justify-self: start; }
  .show-facts-band .container,
  .show-detail-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .show-facts-band .container > div:nth-child(2) { border-right: 0; }
  .show-facts-band .container > div:nth-child(-n + 2) { border-bottom: 1px solid rgba(238, 235, 227, 0.28); }
  .show-facts-band .container > div:nth-child(3) { padding-left: 0; }
  .show-detail-grid article:nth-child(2) { border-right: 0; }
}

@media (max-width: 620px) {
  .landscape-show-hero { padding-top: 54px; }
  .landscape-show-hero__media figcaption { display: none; }
  .show-facts-band .container,
  .show-detail-grid { grid-template-columns: 1fr; }
  .show-facts-band .container > div,
  .show-facts-band .container > div:nth-child(3) { padding: 21px 0; border-right: 0; border-bottom: 1px solid rgba(238, 235, 227, 0.28); }
  .show-facts-band .container > div:last-child { border-bottom: 0; }
  .show-detail-grid article { min-height: 0; border-right: 0; }
  .show-detail-grid span { margin-bottom: 24px; }
  .show-video-placeholder { gap: 17px; padding: 22px; }
  .show-video-placeholder__icon { flex-basis: 50px; width: 50px; height: 50px; }
  .show-video-placeholder strong { font-size: var(--fs-sm); }
  .show-video-placeholder small { font-size: 0.75rem; }
  .show-credit-list p { grid-template-columns: 1fr; gap: 5px; }
}

/* --------------------------------------------------------------------------
   Cards / grids
   -------------------------------------------------------------------------- */

.grid {
  display: grid;
  /* min() lets the track shrink below 300px on narrow phones — a bare
     minmax(300px,1fr) cannot, and overflows any viewport under ~344px. */
  grid-template-columns: repeat(auto-fill, minmax(min(300px, 100%), 1fr));
  gap: 44px 36px;
}
/* Two-up grid — for sections of exactly four items. The default auto-fill
   grid resolves to 3 columns at a 1240px container, leaving a 3 + 1 orphan. */
.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (max-width: 700px) {
  .grid--2 { grid-template-columns: 1fr; }
}

/* Compact label set — short names with no supporting copy. Deliberately a
   sibling of `.schedule .tag` rather than a promotion of it: that chip is
   descendant-scoped and at 0.6rem is too small to carry a standalone row. */
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.tags li {
  font-family: var(--display);
  font-weight: 700;
  font-size: var(--fs-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  border: 1px solid var(--rule);
  padding: 10px 14px;
}

.card { display: flex; flex-direction: column; gap: 14px; min-width: 0; }
.card .thumb { margin-bottom: 4px; }
.card h3 { margin: 0; font-size: var(--fs-lg); }
.card p { margin: 0; color: var(--muted); font-size: var(--fs-sm); }
.card .meta {
  font-family: var(--display);
  font-weight: 700;
  font-size: var(--fs-2xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
}
.card .card-link {
  display: inline-block;
  margin-top: auto;
  padding: 12px 0;
  font-family: var(--display);
  font-weight: 700;
  font-size: var(--fs-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: none;
}
.card a.card-link:hover { color: var(--red); }

/* Image placeholder — white plate on bone, as the deck sets its logo tiles */
.thumb {
  aspect-ratio: 4 / 3;
  background:
    repeating-linear-gradient(
      -45deg,
      rgba(74, 123, 167, 0.10) 0 1px,
      transparent 1px 13px
    ),
    var(--white);
  border: 1px solid var(--rule-soft);
}
.thumb--square { aspect-ratio: 1 / 1; }
.thumb--wide   { aspect-ratio: 16 / 9; }

.team-photo {
  overflow: hidden;
  transition: transform .25s ease;
}
.team-photo:hover { transform: translateY(-4px); }
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
@media (prefers-reduced-motion: reduce) {
  .team-photo { transition: none; }
  .team-photo:hover { transform: none; }
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */

.btn {
  display: inline-block;
  font-family: var(--display);
  font-weight: 700;
  font-size: var(--fs-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 15px 26px;
  border: 1px solid var(--blue);
  background: transparent;
  color: var(--blue);
  cursor: pointer;
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.btn:hover { background: var(--blue); color: var(--bone); border-color: var(--blue); }
.btn.primary { background: var(--blue); color: var(--bone); }
.btn.primary:hover { background: var(--red); border-color: var(--red); color: var(--bone); }
.btn.block { display: block; width: 100%; text-align: center; }

/* --------------------------------------------------------------------------
   Forms
   -------------------------------------------------------------------------- */

form.stack { display: flex; flex-direction: column; gap: 20px; max-width: 540px; }
label {
  display: block;
  font-family: var(--display);
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 8px;
}
input, textarea, select {
  font-family: var(--body);
  font-size: 16px;
  color: var(--blue);
  padding: 13px 14px;
  border: 1px solid var(--rule);
  background: var(--bone-pale);
  width: 100%;
}
input::placeholder, textarea::placeholder { color: rgba(0, 74, 173, 0.38); }
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--blue);
  background: var(--white);
}
textarea { min-height: 150px; resize: vertical; }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.site-footer {
  margin-top: 40px;
  border-top: 1px solid var(--rule-soft);
  padding: 40px 0 56px;
}
.site-footer .container {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}
.site-footer img.lockup { width: 132px; }
.site-footer .foot-links {
  display: flex;
  gap: 4px 24px;
  flex-wrap: wrap;
  font-family: var(--display);
  font-weight: 700;
  font-size: var(--fs-2xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.site-footer .foot-links a {
  border: none;
  display: inline-block;
  padding: 13px 0;
}
.instagram-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.site-footer .foot-links .instagram-link { display: inline-flex; }
.instagram-icon {
  position: relative;
  display: inline-block;
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  border: 2px solid currentColor;
  border-radius: 5px;
}
.instagram-icon::before {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  top: 4px;
  left: 4px;
  border: 2px solid currentColor;
  border-radius: 50%;
}
.instagram-icon::after {
  content: "";
  position: absolute;
  width: 3px;
  height: 3px;
  top: 2px;
  right: 2px;
  border-radius: 50%;
  background: currentColor;
}

/* --------------------------------------------------------------------------
   Show listings
   -------------------------------------------------------------------------- */

.list { display: flex; flex-direction: column; border-top: 1px solid var(--rule); }
.list-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 26px 0;
  border-bottom: 1px solid var(--rule);
}
.show-listing {
  grid-template-columns: minmax(220px, 360px) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 54px);
  padding: clamp(32px, 5vw, 56px) 0;
}
.show-listing__image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  overflow: hidden;
  border: 0;
}
.show-listing__image--portrait { aspect-ratio: 3 / 4; }
.show-listing__image--landscape { aspect-ratio: 4 / 3; }
.show-listing__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.35s ease;
}
.show-listing__image:hover img { transform: scale(1.02); }
/* Borderless, tighter variant — for plain metadata blocks like show details. */
.list.list--plain,
.list--plain .list-row { border: 0; }
.list--plain .list-row { padding: 10px 0; }
.list--plain .list-row:first-child { padding-top: 0; }
.list--plain .list-row:last-child { padding-bottom: 0; }

/* --------------------------------------------------------------------------
   Performance schedule — one column per date, times listed under each.
   -------------------------------------------------------------------------- */

.schedule {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(210px, 100%), 1fr));
  gap: 36px;
}
.schedule .day-label {
  font-family: var(--display);
  font-weight: 700;
  font-size: var(--fs-2xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  padding-bottom: 12px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--rule);
}
.schedule .times {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.schedule .times li {
  font-family: var(--display);
  font-weight: 800;
  font-size: var(--fs-lg);
  line-height: 1.15;
  letter-spacing: -0.005em;
  color: var(--blue);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
}
/* Inline flag for a performance with something extra (talkback, Q&A, etc.).
   Deliberately wraps rather than nowrap — at 320px the current label already
   sits within a pixel of the container, so any longer text would overflow. */
.schedule .tag {
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  border: 1px solid var(--red);
  padding: 4px 8px;
}

/* Eventbrite owns the checkout layout inside its iframe. The shell stays at
   the full content width while preventing the iframe from overflowing on
   narrow screens. */
.eventbrite-checkout-shell {
  width: 100%;
  min-width: 0;
  overflow: hidden;
}
.eventbrite-checkout-shell iframe { width: 100% !important; max-width: 100%; }
.eventbrite-checkout-fallback {
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid var(--rule);
  background: var(--bone-pale);
  text-align: center;
}
.eventbrite-checkout-fallback[hidden] { display: none; }
.eventbrite-checkout-fallback p { margin-bottom: 22px; color: var(--muted); }

.list-row > * { min-width: 0; }
.list-row .left { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.list-row .label {
  font-family: var(--display);
  font-weight: 700;
  font-size: var(--fs-2xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
}
.list-row .title {
  font-family: var(--display);
  font-weight: 800;
  font-size: var(--fs-lg);
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  border: none;
  overflow-wrap: break-word;
}
/* Anchor variant gets padding so the main show link is a real tap target. */
.list-row a.title { display: inline-block; padding: 12px 0; min-height: var(--tap); }
.list-row a.title:hover { color: var(--red); }
.list-row .note { color: var(--muted); font-size: var(--fs-sm); }
.show-listing .left .btn { align-self: flex-start; margin-top: 18px; }

@media (max-width: 860px) {
  .show-listing { grid-template-columns: minmax(170px, 220px) minmax(0, 1fr); }
}

@media (max-width: 620px) {
  .list-row { grid-template-columns: 1fr; }
  .show-listing { grid-template-columns: 1fr; }
  .show-listing__image { width: min(100%, 360px); justify-self: center; }
  .show-listing .left {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    column-gap: 10px;
    align-items: center;
  }
  .show-listing .label { grid-column: 1 / -1; }
  .show-listing .title {
    grid-column: 1;
    grid-row: 2;
    font-size: clamp(1.05rem, 5.3vw, var(--fs-lg));
  }
  .show-listing .left .btn {
    grid-column: 2;
    grid-row: 2;
    align-self: center;
    margin-top: 0;
    padding: 12px 14px;
    font-size: 0.68rem;
    white-space: nowrap;
  }
  .show-listing .note { grid-column: 1 / -1; grid-row: 3; margin-top: 6px; }
  /* keep controls from stretching once the row stacks */
  .list-row > .btn { justify-self: start; }
}

@media (prefers-reduced-motion: reduce) {
  .show-listing__image img { transition: none; }
  .show-listing__image:hover img { transform: none; }
}

/* --------------------------------------------------------------------------
   Solo show lineup — one row per piece: poster left, synopsis right.

   Deliberately rows rather than a poster grid. The synopses run from ~15 to
   ~75 words, and in a grid every cell stretches to the tallest, so the short
   entries stand in a sea of whitespace while the longest one is cramped.
   Rows let each piece take exactly the height its text needs.
   -------------------------------------------------------------------------- */

.solo-lineup {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--rule);
}

.solo-show {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 40px;
  align-items: start;
  padding: 36px 0;
  border-bottom: 1px solid var(--rule);
}

.solo-show__poster { margin: 0; min-width: 0; }
.solo-show__poster img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid var(--rule-soft);
}

.solo-show__body { min-width: 0; }

.solo-show__title {
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  font-size: var(--fs-xl);
  line-height: 1.05;
  color: var(--blue);
  margin: 0;
  overflow-wrap: break-word;
}

.solo-show__performer {
  font-family: var(--display);
  font-weight: 700;
  font-size: var(--fs-2xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  margin: 12px 0 18px;
}

.solo-show__synopsis {
  margin: 0;
  max-width: 62ch;
}

@media (max-width: 860px) {
  .solo-show { grid-template-columns: 200px minmax(0, 1fr); gap: 28px; }
}

@media (max-width: 620px) {
  .solo-show { grid-template-columns: 1fr; gap: 20px; padding: 30px 0; }
  .solo-show__poster { width: min(100%, 300px); }
}

/* --------------------------------------------------------------------------
   Phone tier — the file previously had no breakpoint below 620px.
   -------------------------------------------------------------------------- */

@media (max-width: 620px) {
  .container { padding: 0 20px; }
  .grid { gap: 32px 24px; }
  .schedule { gap: 28px; }
  .site-footer .container { align-items: flex-start; gap: 20px; }
}

/* --------------------------------------------------------------------------
   Our Work — filterable portfolio index
   -------------------------------------------------------------------------- */

.portfolio-hero {
  min-height: min(52vh, 520px);
  display: flex;
  align-items: flex-end;
}
.portfolio-hero .container { width: 100%; }
.portfolio-hero .display { max-width: 14ch; margin: 20px 0 30px; }
.portfolio-hero .lede { max-width: 58ch; }

.portfolio-section { padding-top: clamp(32px, 5vw, 58px); }
.portfolio-filter { margin-bottom: clamp(32px, 5vw, 56px); }
.portfolio-filter__controls {
  display: none;
  flex-wrap: wrap;
  gap: 8px clamp(18px, 3vw, 38px);
  align-items: center;
}
.portfolio-filter.is-ready .portfolio-filter__controls { display: flex; }
.portfolio-filter__button {
  position: relative;
  min-height: var(--tap);
  padding: 10px 0;
  border: 0;
  border-bottom: 2px solid transparent;
  background: transparent;
  color: var(--muted);
  font: 700 var(--fs-xs)/1 var(--display);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
}
.portfolio-filter__button:hover { color: var(--red); }
.portfolio-filter__button.is-active {
  color: var(--blue);
  border-bottom-color: var(--red);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
  grid-auto-rows: clamp(310px, 28vw, 360px);
  gap: clamp(14px, 1.8vw, 24px);
}
.portfolio-card { min-width: 0; }
.portfolio-card[hidden] { display: none; }
.portfolio-card--wide { grid-column: span 2; }
.portfolio-card__link {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border: 0;
  border-radius: 2px;
  background: var(--blue-dark);
  color: var(--bone);
  isolation: isolate;
}
.portfolio-card__link:hover,
.portfolio-card__link:focus-visible { color: var(--bone); }
.portfolio-card__image,
.portfolio-card__art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transition: transform .35s ease;
}
.portfolio-card__image {
  object-fit: cover;
  object-position: center 28%;
}
.portfolio-card__link:hover .portfolio-card__image,
.portfolio-card__link:hover .portfolio-card__art { transform: scale(1.025); }
.portfolio-card__shade {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to bottom, rgba(0, 25, 60, 0.02) 28%, rgba(0, 20, 48, 0.88) 100%);
  pointer-events: none;
}
.portfolio-card__category {
  position: absolute;
  z-index: 3;
  top: clamp(16px, 2vw, 24px);
  left: clamp(16px, 2vw, 24px);
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 7px 11px 6px;
  border: 1px solid currentColor;
  border-radius: 999px;
  background: rgba(9, 19, 34, 0.74);
  font: 800 0.66rem/1 var(--display);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
}
.portfolio-card__category--brand { color: #ff6b4e; }
.portfolio-card__category--original { color: #9cc8ff; }
.portfolio-card__copy {
  position: absolute;
  z-index: 3;
  left: clamp(18px, 2.3vw, 30px);
  right: clamp(18px, 2.3vw, 30px);
  bottom: clamp(18px, 2.3vw, 30px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 5px 16px;
}
.portfolio-card__client {
  grid-column: 1 / -1;
  font: 700 0.68rem/1.2 var(--display);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(238, 235, 227, 0.76);
}
.portfolio-card__title {
  max-width: 19ch;
  font: 800 clamp(1.3rem, 2vw, 2rem)/0.98 var(--display);
  letter-spacing: -0.025em;
  text-transform: uppercase;
}
.portfolio-card--wide .portfolio-card__title { max-width: 28ch; }
.portfolio-card__arrow {
  font: 500 clamp(1.45rem, 2.2vw, 2rem)/1 var(--display);
  transition: transform .2s ease;
}
.portfolio-card__link:hover .portfolio-card__arrow { transform: translate(3px, -3px); }

/* These graphic treatments are intentionally replaceable. Add a project
   image using .portfolio-card__image when production photography is ready. */
.portfolio-card__art {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  overflow: hidden;
}
.portfolio-card__art > span {
  position: relative;
  z-index: 1;
  font: 800 clamp(2.3rem, 5.3vw, 5.8rem)/0.86 var(--display);
  letter-spacing: -0.055em;
  text-transform: uppercase;
}
.portfolio-card:not(.portfolio-card--wide) .portfolio-card__art > span {
  font-size: clamp(2rem, 3.2vw, 3.5rem);
}
.portfolio-card--glass-onion .portfolio-card__art { justify-content: flex-start; background: #111; color: #e50914; }
.portfolio-card--glass-onion .portfolio-card__art::after {
  content: "";
  position: absolute;
  width: 54%;
  aspect-ratio: 1;
  right: 8%;
  border: clamp(20px, 4vw, 54px) solid rgba(229, 9, 20, 0.30);
  border-radius: 50%;
}
.portfolio-card--decode .portfolio-card__art { align-items: flex-start; justify-content: flex-start; background: var(--blue); color: var(--bone); }
.portfolio-card--decode .portfolio-card__art::after {
  content: "";
  position: absolute;
  width: 72%;
  aspect-ratio: 1;
  right: -26%;
  bottom: -25%;
  border: 28px solid rgba(199, 42, 9, 0.72);
  transform: rotate(45deg);
}
.portfolio-card--bitch-boxer .portfolio-card__art { justify-content: flex-start; background: var(--blue-dark); color: var(--bone); }
.portfolio-card--bitch-boxer .portfolio-card__art::after {
  content: "";
  position: absolute;
  width: 88%;
  aspect-ratio: 1;
  top: -18%;
  right: -40%;
  border: 30px solid var(--red);
  border-radius: 50%;
}
.portfolio-card--inside-job .portfolio-card__art { justify-content: flex-start; background: var(--red); color: var(--bone); }
.portfolio-card--inside-job .portfolio-card__art::after {
  content: "8000+";
  position: absolute;
  right: 3%;
  bottom: -8%;
  font: 800 clamp(6rem, 15vw, 13rem)/1 var(--display);
  color: rgba(238, 235, 227, 0.16);
}
.portfolio-card--metaphors .portfolio-card__art { align-items: flex-start; background: var(--bone-deep); color: var(--blue); }
.portfolio-card--metaphors .portfolio-card__art::after {
  content: "XXVII";
  position: absolute;
  right: -4%;
  bottom: -4%;
  font: 800 clamp(5rem, 9vw, 9rem)/1 var(--display);
  color: rgba(0, 74, 173, 0.15);
}

.home-selected-work__header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  align-items: end;
  gap: var(--space-gap);
  margin-bottom: clamp(36px, 5vw, 64px);
}
.home-selected-work__header .eyebrow { margin-bottom: 18px; }
.home-selected-work__intro {
  max-width: 48ch;
  justify-self: end;
}
.home-selected-work__intro p { margin-bottom: 24px; }
.home-selected-work__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: clamp(360px, 32vw, 430px);
  gap: clamp(14px, 1.8vw, 24px);
}
.section.home-closing-cta {
  padding-top: clamp(70px, 10vw, 130px);
  border-top: 0;
  background: var(--blue);
  color: var(--bone);
}
.home-closing-cta .display { color: var(--bone); }
.home-closing-cta .eyebrow { color: #ff6846; }
.home-closing-cta .upper-body { color: rgba(238, 235, 227, 0.82); }
.home-closing-cta .btn.primary {
  border-color: var(--bone);
  background: var(--bone);
  color: var(--blue);
}
.home-closing-cta .btn.primary:hover {
  border-color: var(--red);
  background: var(--red);
  color: var(--bone);
}

.portfolio-cta .display { margin-bottom: 0; }

@media (max-width: 960px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: clamp(320px, 47vw, 430px);
  }
  .home-selected-work__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: clamp(340px, 50vw, 430px);
  }
  .home-selected-work__grid .portfolio-card:last-child { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  .home-selected-work__header { grid-template-columns: 1fr; }
  .home-selected-work__intro { justify-self: start; }
}

@media (max-width: 620px) {
  .portfolio-hero { min-height: auto; }
  .portfolio-filter__controls { gap: 4px 22px; }
  .portfolio-filter__button { font-size: 0.68rem; }
  .portfolio-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: clamp(360px, 118vw, 470px);
  }
  .portfolio-card--wide { grid-column: auto; }
  .portfolio-card__title,
  .portfolio-card--wide .portfolio-card__title { max-width: 22ch; }
  .portfolio-card__art > span,
  .portfolio-card:not(.portfolio-card--wide) .portfolio-card__art > span { font-size: clamp(2.5rem, 14vw, 4.5rem); }
  .home-selected-work__grid {
    grid-template-columns: 1fr;
    grid-auto-rows: clamp(360px, 118vw, 470px);
  }
  .home-selected-work__grid .portfolio-card:last-child { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  .portfolio-card__image,
  .portfolio-card__art,
  .portfolio-card__arrow { transition: none; }
}
