:root {
  --bg: #f3ede3;
  --panel: #f8f3ea;
  --text: #211914;
  --muted: #6a5d52;
  --line: rgba(33, 25, 20, 0.11);
  --accent: #a87a35;
  --accent-dark: #8f672d;
  --max: 1160px;
  --radius: 18px;
  --shadow: 0 24px 60px rgba(36, 30, 24, 0.08);
  --type-display-1: clamp(2.8rem, 5vw, 4.8rem);
  --type-display-2: clamp(2rem, 3.4vw, 3rem);
  --type-kicker: 1rem;
  --type-body: 1.2rem;
  --type-small: 1rem;
  --space-xs: clamp(0.5rem, 0.4rem + 0.2vw, 0.75rem);
  --space-s: clamp(0.9rem, 0.7rem + 0.4vw, 1.25rem);
  --space-m: clamp(1.5rem, 1.1rem + 0.8vw, 2.25rem);
  --space-l: clamp(2.5rem, 1.8rem + 1.5vw, 4rem);
  --space-xl: clamp(4rem, 3rem + 2vw, 6rem);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.wrap {
  width: min(calc(100% - 56px), var(--max));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(14px);
  background: rgba(243, 237, 227, 0.86);
  border-bottom: 1px solid rgba(33, 25, 20, 0.07);
}

.site-header .wrap {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  min-height: 46px;
  padding: 8px 0 7px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
  text-decoration: none;
}

.brand-title {
  display: block;
  font-size: 1.45rem;
  line-height: 0.94;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
}

.brand-subtitle {
  display: block;
  font-size: 0.7rem;
  line-height: 1.2;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #66584e;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fffdf8;
  font-size: var(--type-small);
  letter-spacing: 0.01em;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.button:hover,
.button:focus-visible {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-1px);
}

.button.secondary {
  background: transparent;
  color: var(--text);
  border-color: rgba(33, 25, 20, 0.16);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  background: rgba(33, 25, 20, 0.04);
  border-color: rgba(33, 25, 20, 0.26);
}

main section {
  padding: var(--space-xl) 0;
  border-top: 1px solid var(--line);
}

main section:first-of-type {
  border-top: 0;
  padding-top: var(--space-xl);
}

.hero {
  min-height: auto;
  display: flex;
  align-items: center;
  padding: var(--space-l) 0;
}

.intro-hero {
  padding: var(--space-l) 0;
}

.intro-hero-inner {
  max-width: 760px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.88fr);
  gap: var(--space-l);
  align-items: end;
}

.eyebrow {
  margin: 0 0 var(--space-s);
  font-size: var(--type-kicker);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
}

h1, h2, h3 {
  margin: 0;
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.025em;
}

h1 {
  font-size: var(--type-display-1);
  max-width: 10ch;
}

h2 {
  font-size: var(--type-display-2);
  max-width: 15ch;
  margin-bottom: var(--space-m);
}

h3 {
  font-size: 1.34rem;
  line-height: 1.18;
  margin-bottom: var(--space-s);
}

.lead {
  margin: var(--space-m) 0 0;
  max-width: 42.5rem;
  font-size: 1.35rem;
  line-height: 1.55;
  color: #3f352e;
}

.intro-hero .lead {
  margin-top: var(--space-s);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-s);
  margin-top: var(--space-m);
}

.hero-panel,
.panel {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.hero-panel {
  padding: var(--space-m);
}

.hero-panel p {
  margin: 0;
  font-size: 1.06rem;
  color: var(--muted);
}

.hero-panel strong {
  display: block;
  margin-bottom: var(--space-xs);
  color: var(--text);
  font-size: 1.08rem;
  font-weight: 600;
}

.trailer-hero {
  --trailer-duration: 35s;
  --slide-count: 6;
  --slide-duration: calc(var(--trailer-duration) / var(--slide-count));
  --trailer-zoom: 1.10;
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  padding: 0 !important;
  overflow: hidden;
  border-top: 0;
  background: var(--text);
}

.trailer-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  animation: trailerFade var(--trailer-duration) infinite ease-in-out;
}

.trailer-slide-1 {
  opacity: 1;
  animation-name: trailerFadeFirst;
}

.trailer-slide-2 { animation-delay: calc(var(--slide-duration) * 1); }
.trailer-slide-3 { animation-delay: calc(var(--slide-duration) * 2); }
.trailer-slide-4 { animation-delay: calc(var(--slide-duration) * 3); }
.trailer-slide-5 { animation-delay: calc(var(--slide-duration) * 4); }
.trailer-slide-6 { animation-delay: calc(var(--slide-duration) * 5); }

.trailer-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    18deg,
    rgba(33, 25, 20, 0.56) 0%,
    rgba(33, 25, 20, 0.28) 42%,
    rgba(33, 25, 20, 0.04) 100%
  );
  pointer-events: none;
}

.trailer-slide-6::after {
  background: linear-gradient(
    18deg,
    rgba(33, 25, 20, 0.28) 0%,
    rgba(33, 25, 20, 0.12) 44%,
    rgba(33, 25, 20, 0.02) 100%
  );
}

.trailer-slide img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  transform: scale(1);
  animation: trailerZoom var(--trailer-duration) infinite linear;
}

.trailer-slide-2 img { animation-delay: calc(var(--slide-duration) * 1); }
.trailer-slide-3 img { animation-delay: calc(var(--slide-duration) * 2); }
.trailer-slide-4 img { animation-delay: calc(var(--slide-duration) * 3); }
.trailer-slide-5 img { animation-delay: calc(var(--slide-duration) * 4); }
.trailer-slide-6 img { animation-delay: calc(var(--slide-duration) * 5); }

.trailer-caption {
  position: absolute;
  left: clamp(28px, 6vw, 84px);
  top: clamp(32px, 6vw, 88px);
  z-index: 2;
  max-width: min(760px, calc(100% - 56px));
  color: #fff7ea;
  font-size: clamp(1.35rem, 3.8vw, 3.4rem);
  line-height: 1.08;
  opacity: 0;
  transform: translateY(16px);
  text-shadow: 0 2px 18px rgba(33, 25, 20, 0.22);
  animation: trailerCaption var(--slide-duration) infinite ease-in-out;
}

.trailer-slide-1 .trailer-caption {
  color: var(--text);
  opacity: 1;
  transform: translateY(0);
  text-shadow: none;
}

.trailer-slide-2 .trailer-caption {
  right: clamp(64px, calc(6vw + 3rem), 132px);
  left: auto;
  text-align: right;
  animation-delay: calc(var(--slide-duration) * 1);
}

.trailer-slide-3 .trailer-caption {
  animation-delay: calc(var(--slide-duration) * 2);
}

.trailer-slide-4 .trailer-caption {
  left: clamp(28px, 4.5vw, 64px);
  top: clamp(42px, 7vw, 112px);
  max-width: min(620px, calc(48% - 28px));
  animation-delay: calc(var(--slide-duration) * 3);
}

.trailer-slide-5 .trailer-caption {
  color: var(--text);
  text-shadow: none;
  animation-delay: calc(var(--slide-duration) * 4);
}

.trailer-slide-6 .trailer-caption {
  top: 24%;
  right: 0;
  left: 0;
  bottom: auto;
  max-width: none;
  padding: 0 28px;
  color: #2f2823;
  font-size: clamp(2rem, 5.6vw, 5.3rem);
  text-align: center;
  text-shadow: none;
  animation-delay: calc(var(--slide-duration) * 5);
}

.trailer-caption p {
  margin: 0;
  font-size: inherit;
  font-weight: 500;
  line-height: inherit;
  letter-spacing: 0;
}

.trailer-caption span {
  display: block;
  margin-top: 0.2em;
  font-size: clamp(1.05rem, 1.7vw, 1.65rem);
  line-height: 1.35;
}

@keyframes trailerFade {
  0% { opacity: 0; }
  5% { opacity: 1; }
  16.667% { opacity: 1; }
  21.667% { opacity: 0; }
  100% { opacity: 0; }
}

@keyframes trailerFadeFirst {
  0% { opacity: 1; }
  16.667% { opacity: 1; }
  21.667% { opacity: 0; }
  95% { opacity: 0; }
  100% { opacity: 1; }
}

@keyframes trailerZoom {
  0% { transform: scale(1); }
  21.667% { transform: scale(var(--trailer-zoom)); }
  100% { transform: scale(var(--trailer-zoom)); }
}

@keyframes trailerCaption {
  0% {
    opacity: 0;
    transform: translateY(14px);
  }
  18% {
    opacity: 0;
    transform: translateY(14px);
  }
  44% {
    opacity: 1;
    transform: translateY(0);
  }
  66% {
    opacity: 1;
    transform: translateY(0);
  }
  94% {
    opacity: 0;
    transform: translateY(-8px);
  }
  100% {
    opacity: 0;
    transform: translateY(-8px);
  }
}

.intro-copy,
.narrow-copy {
  max-width: 42.5rem;
  font-size: var(--type-body);
  line-height: 1.65;
  color: #3f352e;
}

.section-copy,
.closing-grid p,
.contact-block > p {
  max-width: 42.5rem;
  font-size: var(--type-body);
  line-height: 1.65;
  color: #3f352e;
}

.section-copy p {
  margin: 0 0 var(--space-s);
}

.section-copy p:last-child {
  margin-bottom: 0;
}

.editorial-section {
  padding: var(--space-xl) 0;
}

.editorial-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1fr);
  gap: var(--space-xl);
  align-items: start;
}

.patronage-grid,
.closing-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1fr);
  gap: var(--space-xl);
  align-items: start;
}

.section-heading h2 {
  max-width: 12ch;
  margin-bottom: 0;
}

.section-heading.compact h2 {
  max-width: none;
}

.editorial-grid h2 {
  max-width: 10ch;
  position: sticky;
  top: 86px;
}

.editorial-grid .intro-copy {
  max-width: 42.5rem;
}

.intro-copy p,
.narrow-copy p {
  margin: 0 0 var(--space-s);
}

.intro-copy p:last-child,
.narrow-copy p:last-child {
  margin-bottom: 0;
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: var(--space-l);
  align-items: start;
}

.feature-box {
  max-width: 44rem;
  padding: var(--space-xs) 0;
}

.statement-section {
  padding: var(--space-xl) 0;
  border-top: 1px solid rgba(33, 25, 20, 0.16);
  border-bottom: 1px solid rgba(33, 25, 20, 0.16);
}

.statement-copy {
  max-width: 820px;
}

.statement-copy h2 {
  max-width: 11ch;
  margin-bottom: var(--space-m);
  font-size: clamp(3rem, 6vw, 5.8rem);
  line-height: 0.98;
}

.statement-copy p {
  max-width: 42.5rem;
  margin: 0;
  color: #3f352e;
  font-size: var(--type-body);
  line-height: 1.65;
}

.statement-kicker {
  margin: 0 0 var(--space-s);
  color: var(--text);
  font-size: var(--type-kicker);
  line-height: 1.2;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.feature-box p {
  margin: 0;
  color: #3f352e;
  font-size: var(--type-body);
  line-height: 1.65;
}

.qa-list {
  display: grid;
  gap: var(--space-m);
}

.qa-item {
  padding-bottom: var(--space-m);
  border-bottom: 1px solid var(--line);
}

.qa-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.qa-item p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 44rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: var(--space-m);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.step {
  padding: var(--space-m) 36px;
  border-right: 1px solid var(--line);
}

.step:last-child {
  border-right: 0;
}

.step-number {
  display: inline-block;
  margin-bottom: var(--space-s);
  color: var(--accent);
  font-size: var(--type-kicker);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.step p {
  margin: 0;
  color: #3f352e;
  font-size: 1.15rem;
  line-height: 1.6;
}

.works-section {
  --work-media-width: 980px;
  padding: var(--space-xl) 0 0;
}

.works-section + .process-section {
  padding: var(--space-l) 0 var(--space-xl);
}

.process-section {
  padding: var(--space-xl) 0;
}

.works-intro {
  margin-bottom: var(--space-xl);
}

.works-intro h2 {
  max-width: 15ch;
}

.works-intro > p:not(.statement-kicker),
.works-fallback {
  max-width: 42.5rem;
  margin: 0;
  color: #3f352e;
  font-size: var(--type-body);
  line-height: 1.65;
}

.works-list {
  width: 100%;
  max-width: var(--work-media-width);
  border-top: 1px solid rgba(33, 25, 20, 0.18);
}

.work-item {
  border-bottom: 1px solid rgba(33, 25, 20, 0.18);
}

.work-item:last-child {
  border-bottom: 0;
}

.work-item summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: var(--space-m);
  align-items: center;
  padding: var(--space-l) 0 0;
  cursor: pointer;
  list-style: none;
}

.work-item:not([open]) .work-summary {
  padding-bottom: var(--space-l);
}

.work-item summary::-webkit-details-marker {
  display: none;
}

.work-summary-text {
  display: grid;
  gap: var(--space-xs);
}

.work-title {
  margin: 0;
  color: var(--text);
  font-size: var(--type-display-1);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.025em;
}

.work-meta,
.work-media-pair figcaption {
  color: var(--muted);
  font-size: var(--type-small);
  line-height: 1.55;
}

.work-summary-meta {
  color: var(--text);
  font-size: var(--type-display-2);
  line-height: 1.04;
  letter-spacing: -0.025em;
}

.work-marker {
  color: var(--accent);
  font-size: 1.8rem;
  line-height: 1;
  transition: transform 240ms ease;
}

.work-item[open] .work-marker {
  transform: rotate(45deg);
}

.work-reveal {
  height: auto;
  overflow: visible;
  opacity: 1;
  transform: none;
}

.work-reveal-inner {
  min-height: 0;
  overflow: visible;
  padding: var(--space-l) 0 var(--space-l);
}

.work-chapter {
  display: grid;
  gap: var(--space-m);
}

.work-chapter + .work-chapter {
  margin-top: var(--space-l);
}

.work-chapter > :is(p, figure, div, audio, a) {
  margin-block: 0;
}

:where(.work-chapter) p {
  max-width: 42.5rem;
  margin-block: 0;
  color: #3f352e;
  font-size: var(--type-body);
  line-height: 1.65;
}

.work-chapter--composer {
  gap: var(--space-m);
}

.work-chapter--composer > div {
  display: grid;
  gap: var(--space-s);
}

.work-introduction {
  color: var(--text);
  font-size: var(--type-body);
  line-height: 1.65;
}

.work-label {
  margin: 0;
  color: var(--accent);
  font-size: var(--type-small);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.work-chapter--media {
  gap: var(--space-m);
}

/* HAFKOM media-pair flex fix 2026-07-13 */
.work-media-pair {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  gap: 0;
  width: 100%;
  max-width: var(--work-media-width);
  height: auto;
  min-height: 0;
  margin: 0;
  padding: 0;
}

.work-media-pair > * {
  margin-block: 0;
}

.work-score-link {
  display: block;
  flex: 0 0 auto;
  width: 100%;
  height: auto;
  min-height: 0;
  margin: 0;
  padding: 0;
  line-height: 0;
}

.work-score-link img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 0;
  margin: 0;
  padding: 0;
}

.work-media-pair audio {
  display: block;
  flex: 0 0 auto;
  width: 100%;
  height: auto;
  min-height: 0;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
}

.work-media-pair figcaption {
  display: block;
  margin: var(--space-s) 0 0;
  padding: 0;
  line-height: 1.55;
}

.composer-section {
  width: 100%;
  max-width: var(--work-media-width);
  margin: 0;
}

.work-media {
  width: 100%;
  max-width: var(--work-media-width);
}

.work-portraits {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin: 0;
  overflow: hidden;
  background: transparent;
}

.work-portraits img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  opacity: 0;
  animation: portraitFade 75s infinite ease-in-out;
}

.work-portraits img:first-child {
  opacity: 1;
}

.composer-name {
  color: var(--text);
  font-size: var(--type-body);
  line-height: 1.65;
}

.funding-block {
  width: 100%;
  max-width: var(--work-media-width);
  margin: 0;
  padding-top: var(--space-m);
  border-top: 1px solid rgba(33, 25, 20, 0.16);
}

.funding-amount {
  color: var(--text);
  font-size: var(--type-display-1);
  line-height: 1.05;
}

.funding-details {
  margin: 0;
  color: #3f352e;
  font-size: var(--type-body);
  line-height: 1.65;
}

.work-contact-button {
  justify-self: start;
  width: auto;
  margin-top: var(--space-xs);
}

@keyframes portraitFade {
  0% { opacity: 0; }
  8% { opacity: 1; }
  33.333% { opacity: 1; }
  41.333% { opacity: 0; }
  100% { opacity: 0; }
}

.closing-section {
  border-top: 0;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: var(--space-m);
  align-items: end;
}

.contact-block {
  display: grid;
  gap: var(--space-m);
  align-items: start;
  padding: var(--space-m) 0 0;
  background: transparent;
  border: 0;
  border-top: 1px solid rgba(33, 25, 20, 0.16);
  border-radius: 0;
}

.contact-block .lead {
  margin-top: 0;
  max-width: 42.5rem;
}

.contact-block h2,
.contact-block p,
.contact-form,
.contact-block .button,
.contact-details {
  max-width: 42.5rem;
}

.contact-form {
  display: grid;
  gap: var(--space-s);
  width: min(100%, 42.5rem);
}

.contact-form .form-field {
  display: grid;
  gap: var(--space-xs);
}

.contact-form .form-field label {
  color: var(--muted);
  font-size: var(--type-small);
  line-height: 1.25;
}

.contact-form .form-field input,
.contact-form .form-field textarea {
  display: block;
  width: 100%;
  appearance: none;
  border: 0;
  border-bottom: 1px solid rgba(33, 25, 20, 0.22);
  border-radius: 0;
  min-height: 44px;
  padding: var(--space-xs) 0;
  background: transparent;
  color: var(--text);
  font: inherit;
  font-size: 1.08rem;
  line-height: 1.35;
}

.contact-form .form-field textarea {
  min-height: 132px;
  resize: vertical;
}

.contact-form .form-field input:focus,
.contact-form .form-field textarea:focus {
  outline: 0;
  border-color: var(--accent);
  box-shadow: 0 1px 0 var(--accent);
}

.contact-form .button {
  justify-self: start;
  width: auto;
  margin-top: var(--space-xs);
}

.form-trap {
  position: absolute;
  inline-size: 1px;
  block-size: 1px;
  overflow: clip;
  clip-path: inset(50%);
  white-space: nowrap;
}

.form-status {
  display: none !important;
  margin: 0;
  padding: var(--space-s) 0;
  border-top: 1px solid rgba(33, 25, 20, 0.16);
  border-bottom: 1px solid rgba(33, 25, 20, 0.16);
  font-size: 1.08rem;
  line-height: 1.5;
}

.form-status:target,
.form-status[hidden]:target {
  display: block !important;
}

.form-status:focus {
  outline: 0;
}

.form-status:focus-visible {
  outline: 1px solid rgba(168, 122, 53, 0.45);
  outline-offset: 4px;
}

.form-status-success {
  color: #3f352e;
}

.form-status-error {
  color: #6d332b;
}

.privacy-note {
  max-width: 42.5rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

.privacy-note a {
  color: var(--text);
  border-bottom: 1px solid rgba(33, 25, 20, 0.28);
}

.privacy-note a:hover,
.privacy-note a:focus-visible {
  border-color: var(--accent);
}

.contact-details {
  margin-top: var(--space-m);
  color: #5b5047;
  font-size: var(--type-small);
  line-height: 1.6;
}

.contact-details p {
  margin: 0 0 var(--space-xs);
}

.site-footer {
  padding: var(--space-m) 0 var(--space-l);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.95rem;
}

.site-footer .wrap {
  display: flex;
  justify-content: space-between;
  gap: var(--space-m);
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: var(--space-s);
  flex-wrap: wrap;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--text);
}

@media (max-width: 980px) {
  .hero-grid,
  .editorial-grid,
  .patronage-grid,
  .works-intro,
  .closing-grid,
  .two-col,
  .composer-section,
  .about-grid,
  .steps,
  .contact-block {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding: var(--space-l) 0;
  }

  .intro-hero {
    padding: var(--space-l) 0;
  }

  .editorial-grid h2 {
    position: static;
    max-width: 14ch;
  }

  .editorial-section,
  .statement-section,
  .works-section,
  .process-section {
    padding: var(--space-l) 0;
  }

  .patronage-grid {
    gap: var(--space-m);
  }

  .works-section {
    padding-bottom: 0;
  }

  .works-section + .process-section {
    padding: var(--space-l) 0;
  }

  .statement-copy h2 {
    max-width: 12ch;
    font-size: clamp(2.6rem, 12vw, 4.2rem);
  }

  .intro-copy,
  .narrow-copy,
  .feature-box,
  .section-copy,
  .statement-copy p,
  .closing-grid p,
  .lead {
    max-width: 42.5rem;
  }

  .step {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: var(--space-m) 0;
  }

  .step:last-child {
    border-bottom: 0;
  }

  .contact-block h2,
  .contact-block p,
  .contact-form,
  .contact-block .button,
  .contact-details {
    grid-column: 1;
  }

  .contact-details {
    grid-row: auto;
  }

}

@media (max-width: 640px) {
  .trailer-hero {
    --trailer-zoom: 1.14;
  }

  .wrap {
    width: min(calc(100% - 32px), var(--max));
  }

  .site-header .wrap {
    min-height: 46px;
    padding: 8px 0 7px;
  }

  .brand-title {
    font-size: 1.45rem;
  }

  .brand-subtitle {
    font-size: 0.68rem;
    letter-spacing: 0.08em;
  }

  main section {
    padding: var(--space-l) 0;
  }

  .hero-panel,
  .contact-block {
    padding: var(--space-m);
  }

  .trailer-caption {
    right: auto;
    left: 5vw;
    top: 24px;
    max-width: 74%;
    font-size: clamp(1.25rem, 6vw, 2rem);
    line-height: 1.08;
  }

  .trailer-slide-2 .trailer-caption {
    right: 8vw;
    left: auto;
  }

  .trailer-slide-4 .trailer-caption {
    left: 5vw;
    top: 24px;
    max-width: 74%;
  }

  .trailer-slide-5 .trailer-caption {
    max-width: 68%;
    font-size: clamp(1.2rem, 5.5vw, 1.85rem);
  }

  .trailer-slide-6 .trailer-caption {
    top: 18%;
    right: 0;
    left: 0;
    bottom: auto;
    max-width: 76%;
    margin: 0 auto;
    padding: 0;
    font-size: clamp(1.65rem, 7.4vw, 2.7rem);
  }

  .trailer-caption p {
    font-size: inherit;
    line-height: inherit;
  }

  .contact-block {
    padding: var(--space-m) 0 0;
  }

  .button {
    min-height: 46px;
    width: auto;
    max-width: 100%;
    padding: 0 20px;
  }

  .hero-actions {
    flex-direction: column;
  }

}

@media (prefers-reduced-motion: reduce) {
  .trailer-slide,
  .trailer-slide img,
  .trailer-caption {
    animation: none;
  }

  .trailer-slide {
    opacity: 0;
  }

  .trailer-caption {
    opacity: 0;
    transform: none;
  }

  .trailer-slide-1 {
    opacity: 1;
  }

  .trailer-slide-1 .trailer-caption {
    opacity: 1;
  }

  .work-portraits img {
    animation: none;
    opacity: 0;
  }

  .work-portraits img:first-child {
    opacity: 1;
  }
}


.legal-hero {
  min-height: auto;
  padding: var(--space-l) 0;
}

.legal-hero h1 {
  max-width: none;
  font-size: clamp(2.8rem, 5vw, 4.6rem);
}

.legal-content {
  max-width: 47.5rem;
}

.legal-section {
  padding: var(--space-m) 0;
  border-top: 1px solid var(--line);
}

.legal-section:first-child {
  padding-top: 0;
  border-top: 0;
}

.legal-section h2,
.legal-section h3 {
  max-width: none;
  margin-bottom: var(--space-s);
  color: var(--text);
}

.legal-section h2 {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
}

.legal-section h3 {
  font-size: 1.45rem;
}

.legal-copy p {
  max-width: 47.5rem;
  margin: 0 0 var(--space-xs);
  color: #3f352e;
  font-size: 1.12rem;
  line-height: 1.6;
}

.legal-copy p:last-child {
  margin-bottom: 0;
}
