:root {
  --paper: #f2efe7;
  --paper-deep: #e7e3da;
  --surface: #fbf9f4;
  --ink: #181816;
  --muted: #6f6b64;
  --red: #9d242b;
  --line: rgba(24, 24, 22, .23);
  --serif: "Bodoni 72", Didot, "Bodoni MT", "Times New Roman", serif;
  --sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --mono: "Courier New", Courier, monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--paper); }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}
body.dialog-open { overflow: hidden; }
img { display: block; max-width: 100%; }
button, a { color: inherit; }
button { font: inherit; }
a:focus-visible, button:focus-visible { outline: 2px solid var(--red); outline-offset: 4px; }

.skip-link {
  position: fixed;
  z-index: 100;
  top: -100px;
  left: 20px;
  padding: 10px 16px;
  background: var(--ink);
  color: white;
}
.skip-link:focus { top: 20px; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px clamp(20px, 4vw, 64px);
  border-bottom: 1px solid transparent;
  transition: background-color .3s ease, border-color .3s ease;
}
.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(242, 239, 231, .94);
  backdrop-filter: blur(14px);
}
.wordmark {
  font-family: var(--serif);
  font-size: 25px;
  letter-spacing: -.035em;
  line-height: 1;
  text-decoration: none;
}
.site-header nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 42px);
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
}
.site-header nav a { position: relative; text-decoration: none; }
.site-header nav a::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  background: var(--red);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .2s ease;
}
.site-header nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-contact { color: var(--red); }

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  grid-template-columns: minmax(320px, .78fr) minmax(480px, 1.22fr);
  align-items: center;
  gap: clamp(40px, 7vw, 120px);
  overflow: hidden;
  padding: 120px clamp(22px, 5vw, 78px) 76px;
}
.hero::before {
  position: absolute;
  top: 88px;
  right: clamp(22px, 5vw, 78px);
  left: clamp(22px, 5vw, 78px);
  height: 1px;
  background: var(--line);
  content: "";
}
.hero-copy { position: relative; z-index: 3; }
.eyebrow {
  margin: 0 0 25px;
  color: var(--red);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.hero h1, .section-heading h2, .profile-top h2, .contact-panel h2, .dialog-content h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -.065em;
}
.hero h1 { font-size: clamp(92px, 12vw, 188px); line-height: .72; }
.hero h1 em, .profile-top h2 em, .contact-panel h2 em { color: var(--red); font-weight: 400; }
.hero-intro {
  max-width: 470px;
  margin: 45px 0 0;
  font-family: var(--serif);
  font-size: clamp(21px, 1.8vw, 29px);
  line-height: 1.28;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 36px;
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
}
.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 0 18px;
  border: 1px solid var(--ink);
  text-decoration: none;
  transition: background-color .2s ease, color .2s ease;
}
.button-dark, .button-light { background: transparent; color: var(--ink); }
.button-dark:hover, .button-light:hover { background: var(--ink); color: var(--paper); }
.text-link, .contact-actions > a:not(.button) { text-underline-offset: 5px; text-decoration-thickness: 1px; }

.hero-visual { position: relative; min-height: min(76vh, 830px); }
.hero-image { position: absolute; overflow: hidden; margin: 0; background: var(--paper-deep); }
.hero-image img { width: 100%; height: 100%; object-fit: cover; }
.hero-image-main { inset: 2% 0 7% 15%; }
.hero-image-main img { object-position: center 25%; }
.hero-image-secondary {
  bottom: 0;
  left: 0;
  z-index: 2;
  width: 36%;
  height: 42%;
  border: 12px solid var(--paper);
  border-left: 0;
}
.hero-stamp {
  position: absolute;
  top: 8%;
  right: -1px;
  z-index: 3;
  width: min(245px, 43%);
  padding: 15px 16px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: rgba(242, 239, 231, .92);
  color: var(--red);
  font-family: var(--mono);
  text-transform: uppercase;
}
.hero-stamp span, .hero-stamp strong { display: block; font-size: 11px; font-weight: 400; letter-spacing: .02em; }
.hero-stamp strong { margin-top: 6px; color: var(--ink); }
.hero-foot {
  position: absolute;
  right: clamp(22px, 5vw, 78px);
  bottom: 21px;
  left: clamp(22px, 5vw, 78px);
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
}

.work-section {
  padding: clamp(92px, 11vw, 165px) clamp(22px, 4vw, 64px);
  border-top: 1px solid var(--line);
  background: var(--surface);
}
.section-heading {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  align-items: end;
  gap: 80px;
  padding-bottom: 54px;
  border-bottom: 1px solid var(--ink);
}
.section-heading h2 { font-size: clamp(58px, 7vw, 112px); line-height: .88; }
.section-heading > p {
  max-width: 430px;
  margin: 0 0 6px;
  font-family: var(--serif);
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.35;
}
.filters { display: flex; flex-wrap: wrap; gap: 26px; padding: 28px 0 58px; }
.filter {
  padding: 0 0 5px;
  border: 0;
  border-bottom: 1px solid transparent;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
}
.filter:hover, .filter.is-active { border-color: var(--red); color: var(--red); }

.project-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 92px 28px;
}
.project-card { min-width: 0; }
.project-card-photo { grid-column: 1 / span 7; }
.project-card-retail { grid-column: 8 / span 5; padding-top: 115px; }
.project-card-research { grid-column: span 6; }
.project-card-pr { grid-column: 3 / span 8; }
.project-card-metrics { grid-column: span 6; }
.project-card[hidden] { display: none; }
.project-open { width: 100%; padding: 0; border: 0; background: transparent; cursor: pointer; text-align: left; }
.project-media, .metric-canvas, .research-cover {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.24 / 1;
  background: var(--paper-deep);
}
.project-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.9);
  transition: transform .55s cubic-bezier(.2,.7,.2,1), filter .35s ease;
}
.project-open:hover .project-media img { filter: saturate(1.02); transform: scale(1.018); }
.project-card-photo .project-media { aspect-ratio: .9 / 1; }
.project-card-photo .project-media img { object-position: center 30%; }
.project-card-retail .project-media { aspect-ratio: .82 / 1; }
.project-card-pr .project-media { aspect-ratio: 1.65 / 1; }
.project-index {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 6px 8px;
  background: var(--paper);
  color: var(--red);
  font-family: var(--mono);
  font-size: 11px;
}
.project-meta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px 20px;
  padding-top: 18px;
  border-top: 1px solid var(--ink);
}
.project-discipline {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--red);
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
}
.project-meta h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(35px, 3.2vw, 54px);
  font-weight: 400;
  letter-spacing: -.05em;
  line-height: .98;
}
.project-meta > p:not(.project-discipline) {
  grid-column: 1 / -1;
  max-width: 580px;
  margin: 4px 0 0;
  color: var(--muted);
}
.project-cta {
  grid-column: 1 / -1;
  width: fit-content;
  margin-top: 4px;
  border-bottom: 1px solid currentColor;
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
}

.metric-canvas {
  display: flex;
  min-height: 470px;
  flex-direction: column;
  justify-content: center;
  padding: 9%;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
}
.metric-label { align-self: flex-start; color: var(--red); font-family: var(--mono); font-size: 12px; text-transform: uppercase; }
.metric-canvas strong {
  margin-top: 28px;
  color: var(--red);
  font-family: var(--serif);
  font-size: clamp(82px, 9vw, 145px);
  font-weight: 400;
  letter-spacing: -.09em;
  line-height: .78;
}
.metric-canvas > span:not(.metric-label) { font-family: var(--serif); font-size: 26px; }
.metric-line { height: 48px; margin: 30px 0 18px; border-top: 1px solid var(--ink); transform: skewY(-6deg); }
.metric-canvas small { color: var(--muted); font-family: var(--mono); text-transform: uppercase; }

.research-cover {
  display: flex;
  min-height: 520px;
  flex-direction: column;
  justify-content: space-between;
  padding: 7%;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
}
.research-cover > span { color: var(--red); font-family: var(--mono); font-size: 12px; text-transform: uppercase; }
.research-cover > p {
  position: relative;
  z-index: 2;
  margin: auto 0;
  font-family: var(--serif);
  font-size: clamp(60px, 6vw, 96px);
  letter-spacing: -.075em;
  line-height: .76;
}
.research-orbit {
  position: absolute;
  right: -12%;
  bottom: -18%;
  width: 60%;
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: 50%;
}
.research-orbit::before, .research-orbit::after {
  position: absolute;
  inset: 17%;
  border: 1px solid var(--line);
  border-radius: 50%;
  content: "";
}
.research-orbit::after { inset: 34%; }
.research-orbit i { position: absolute; width: 8px; height: 8px; border-radius: 50%; background: var(--red); }
.research-orbit i:nth-child(1) { top: 4%; left: 32%; }
.research-orbit i:nth-child(2) { top: 48%; left: 16%; }
.research-orbit i:nth-child(3) { top: 29%; right: 4%; }
.research-cover-light { background: var(--paper-deep); }
.survey-mark {
  position: absolute;
  right: 7%;
  bottom: 7%;
  color: var(--red);
  font-family: var(--serif);
  font-size: clamp(58px, 7vw, 105px);
  line-height: 1;
}

.profile-section {
  padding: clamp(94px, 11vw, 165px) clamp(22px, 4vw, 64px) 24px;
  border-top: 1px solid var(--line);
  background: var(--paper);
}
.profile-top { padding-bottom: 65px; border-bottom: 1px solid var(--ink); }
.profile-top h2 { max-width: 1120px; font-size: clamp(58px, 7.2vw, 116px); line-height: .88; }
.profile-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(50px, 10vw, 180px);
  padding: 70px 0 105px;
}
.profile-copy { max-width: 650px; }
.profile-copy > p { margin: 0 0 23px; font-size: 17px; }
.profile-copy .profile-lead { font-family: var(--serif); font-size: clamp(26px, 2.5vw, 38px); line-height: 1.25; }
.skill-list { display: flex; flex-wrap: wrap; gap: 9px 18px; margin-top: 35px; }
.skill-list span { border-bottom: 1px solid var(--line); font-family: var(--mono); font-size: 12px; }
.credentials { border-top: 1px solid var(--ink); }
.credential {
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 8px 22px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.credential > span { grid-row: span 2; color: var(--red); font-family: var(--mono); font-size: 12px; text-transform: uppercase; }
.credential strong { font-family: var(--serif); font-size: 21px; font-weight: 400; line-height: 1.2; }
.credential p { margin: 0; font-size: 14px; }

.contact-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 60px;
  padding: clamp(42px, 6vw, 76px) 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
.contact-panel h2 { font-size: clamp(56px, 6.8vw, 108px); line-height: .88; }
.contact-actions {
  display: flex;
  min-width: 240px;
  flex-direction: column;
  align-items: stretch;
  gap: 17px;
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
}
.copy-email {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-family: var(--mono);
  text-align: left;
  text-decoration: underline;
  text-underline-offset: 5px;
  text-transform: uppercase;
}
footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 0 4px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
}

.case-dialog {
  width: min(1240px, 94vw);
  max-width: none;
  height: min(900px, 94vh);
  max-height: none;
  padding: 0;
  border: 0;
  background: var(--surface);
  color: var(--ink);
}
.case-dialog::backdrop { background: rgba(18, 18, 16, .72); backdrop-filter: blur(8px); }
.dialog-shell { position: relative; min-height: 100%; }
.dialog-close {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  padding: 18px 24px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(251, 249, 244, .94);
  cursor: pointer;
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}
.dialog-close span { font-size: 24px; font-weight: 300; line-height: .6; }
.dialog-content { padding: 0 clamp(24px, 6vw, 84px) 80px; }
.dialog-hero {
  display: grid;
  grid-template-columns: 1fr .8fr;
  align-items: end;
  gap: 50px;
  padding: 65px 0 55px;
  border-bottom: 1px solid var(--ink);
}
.dialog-content h2 { font-size: clamp(58px, 7vw, 106px); line-height: .88; }
.dialog-deck { margin: 0 0 7px; font-family: var(--serif); font-size: clamp(20px, 2vw, 29px); line-height: 1.32; }
.dialog-tags { display: flex; flex-wrap: wrap; gap: 8px 16px; margin-top: 24px; }
.dialog-tags span { border-bottom: 1px solid var(--line); font-family: var(--mono); font-size: 12px; }
.case-metrics { display: grid; grid-template-columns: repeat(var(--metric-count, 3), 1fr); border-bottom: 1px solid var(--line); }
.case-metric { padding: 34px 24px 34px 0; }
.case-metric + .case-metric { padding-left: 24px; border-left: 1px solid var(--line); }
.case-metric strong {
  display: block;
  color: var(--red);
  font-family: var(--serif);
  font-size: clamp(42px, 5vw, 74px);
  font-weight: 400;
  letter-spacing: -.06em;
  line-height: 1;
}
.case-metric span { display: block; max-width: 170px; margin-top: 8px; font-family: var(--mono); font-size: 12px; text-transform: uppercase; }
.case-body { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px; padding: 48px 0 58px; }
.case-block span { color: var(--red); font-family: var(--mono); font-size: 12px; text-transform: uppercase; }
.case-block p { margin: 12px 0 0; }
.case-gallery { display: grid; grid-template-columns: repeat(12, 1fr); align-items: start; gap: 24px; }
.case-gallery figure { grid-column: span 6; overflow: hidden; margin: 0; background: transparent; }
.case-gallery figure:only-child { grid-column: 2 / span 10; }
.case-gallery img, .case-gallery .contain img { width: 100%; height: auto; max-height: 760px; object-fit: contain; padding: 0; }
.case-gallery figcaption { padding: 10px 0 22px; color: var(--muted); font-family: var(--mono); font-size: 12px; line-height: 1.45; }
.case-links { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 45px; }
.case-links a {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 0 17px;
  border: 1px solid var(--ink);
  font-family: var(--mono);
  font-size: 12px;
  text-decoration: none;
  text-transform: uppercase;
}
.case-links a:hover { background: var(--ink); color: var(--paper); }
.toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 80;
  padding: 13px 18px;
  background: var(--ink);
  color: white;
  font-family: var(--mono);
  font-size: 12px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity .25s ease, transform .25s ease;
}
.toast.is-visible { opacity: 1; transform: translateY(0); }
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; gap: 54px; padding-top: 125px; }
  .hero h1 { font-size: clamp(96px, 20vw, 170px); }
  .hero-visual { min-height: 72vh; }
  .section-heading { grid-template-columns: 1fr; gap: 34px; }
  .project-card-photo, .project-card-retail, .project-card-research, .project-card-pr, .project-card-metrics {
    grid-column: span 6;
    padding-top: 0;
  }
  .profile-grid { grid-template-columns: 1fr; }
  .contact-panel { grid-template-columns: 1fr; align-items: start; }
  .dialog-hero { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .site-header { padding: 15px 18px; }
  .site-header nav { gap: 14px; font-size: 11px; }
  .site-header nav a[href="#profile"] { display: none; }
  .wordmark { font-size: 22px; }
  .hero { min-height: auto; gap: 42px; padding: 108px 18px 72px; }
  .hero::before { top: 76px; right: 18px; left: 18px; }
  .hero h1 { font-size: clamp(88px, 28vw, 128px); }
  .hero-intro { margin-top: 34px; font-size: 22px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 18px; }
  .hero-visual { min-height: 61vh; }
  .hero-image-main { right: 0; bottom: 3%; left: 9%; }
  .hero-image-secondary { width: 39%; height: 35%; border-width: 8px; }
  .hero-stamp { top: 6%; width: 48%; }
  .hero-foot { display: none; }
  .work-section, .profile-section { padding-right: 18px; padding-left: 18px; }
  .section-heading h2, .profile-top h2 { font-size: 54px; }
  .filters { gap: 14px 20px; padding-bottom: 44px; }
  .project-grid { gap: 58px; }
  .project-card-photo, .project-card-retail, .project-card-research, .project-card-pr, .project-card-metrics { grid-column: 1 / -1; }
  .project-card-photo .project-media { aspect-ratio: 1 / 1.12; }
  .project-meta { grid-template-columns: 1fr; }
  .metric-canvas, .research-cover { min-height: 420px; }
  .profile-grid { padding: 50px 0 70px; }
  .credential { grid-template-columns: 1fr; }
  .credential > span { grid-row: auto; }
  .contact-panel { padding: 48px 0; }
  .contact-panel h2 { font-size: 52px; }
  footer { align-items: flex-start; flex-direction: column; }
  .case-dialog { width: 100vw; height: 100dvh; margin: 0; }
  .dialog-close { padding: 18px; }
  .dialog-content { padding: 0 18px 60px; }
  .dialog-hero { padding: 40px 0; }
  .dialog-content h2 { font-size: 52px; }
  .case-metrics { grid-template-columns: 1fr; }
  .case-metric + .case-metric { padding-left: 0; border-top: 1px solid var(--line); border-left: 0; }
  .case-body { grid-template-columns: 1fr; }
  .case-gallery figure, .case-gallery figure:only-child { grid-column: 1 / -1; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* Profile portrait */
.profile-details { min-width: 0; }
.profile-portrait { margin: 0 0 36px; }
.profile-portrait img { display: block; width: 100%; height: auto; aspect-ratio: 4 / 5; object-fit: cover; object-position: 50% 40%; }
.profile-portrait figcaption { margin-top: 12px; font-size: 14px; line-height: 1.5; }
@media (max-width: 980px) {
  .profile-portrait { max-width: 480px; }
}

/* Compact production experience */
.production-summary { grid-column: 1 / -1; padding: 36px 0; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--line); scroll-margin-top: 100px; }
.production-summary[hidden] { display: none; }
.production-summary h3 { margin: 0 0 28px; font-family: var(--serif); font-weight: 400; font-size: clamp(28px, 3.1vw, 46px); line-height: 1.12; }
.production-summary-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 32px; }
.production-summary h4 { margin: 0 0 10px; font-size: 14px; font-weight: 600; }
.production-summary-grid p { margin: 0; font-size: 16px; line-height: 1.6; }
.production-credit { margin: 24px 0 0; max-width: 800px; font-size: 14px; line-height: 1.6; }
@media (max-width: 680px) { .production-summary-grid { grid-template-columns: 1fr; gap: 24px; } }

/* Anonymised supporting call sheet */
.call-sheet { margin-top: 24px; border-top: 1px solid var(--line); }
.call-sheet summary { padding: 20px 0; cursor: pointer; font-size: 16px; font-weight: 600; }
.call-sheet summary span { display: inline-block; margin-left: 16px; font-size: 14px; font-weight: 400; }
.call-sheet summary:focus-visible { outline: 2px solid var(--red); outline-offset: 4px; }
.call-sheet-body { max-width: 900px; padding: 24px clamp(16px, 3vw, 40px); border: 1px solid var(--line); }
.call-sheet-body h4 { font-family: var(--serif); font-size: clamp(25px, 3vw, 36px); font-weight: 400; }
.call-sheet-note { font-size: 14px; line-height: 1.6; }
.call-sheet-meta { margin: 24px 0; }
.call-sheet-meta div { margin-bottom: 12px; }
.call-sheet-meta dt { font-size: 14px; font-weight: 600; }
.call-sheet-meta dd { margin: 3px 0 0; font-size: 16px; }
.call-sheet-table { margin: 24px 0; }
.call-sheet table { border-collapse: collapse; width: 100%; font-size: 14px; line-height: 1.5; }
.call-sheet caption { text-align: left; font-weight: 600; font-size: 16px; margin-bottom: 12px; }
.call-sheet th,.call-sheet td { padding: 12px 8px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; overflow-wrap: anywhere; }
.call-sheet tbody th { font-weight: 400; }
.call-sheet h5 { margin: 28px 0 12px; font-size: 16px; }
.call-sheet ul { margin: 0; padding-left: 20px; font-size: 16px; line-height: 1.6; }
.call-sheet li + li { margin-top: 8px; }
@media(max-width:680px) { .call-sheet summary span { display: block; margin: 6px 0 0; } .call-sheet th,.call-sheet td { padding: 10px 4px; } }

.production-intro { max-width: 900px; margin: 0 0 32px; font-size: 17px; line-height: 1.6; }
