@font-face {
  font-family: "Lounge Didot";
  src: url("/fonts/didot.otf") format("opentype");
  font-display: swap;
  font-weight: 400;
}

@font-face {
  font-family: "Lounge Serif";
  src: url("/fonts/noto-serif-display-light.ttf") format("truetype");
  font-display: swap;
  font-weight: 300;
}

:root {
  color-scheme: dark;
  --black: #050505;
  --black-soft: #0c0c0c;
  --charcoal: #151515;
  --ink: #141414;
  --ivory: #ece9e3;
  --ivory-soft: #d8d4cc;
  --stone: #a6a19a;
  --pearl: #dfe3e2;
  --pearl-bright: #f2f2ef;
  --oxblood: #67152b;
  --oxblood-deep: #260810;
  --rose-metal: #c58f9b;
  --line-dark: rgba(236, 233, 227, 0.16);
  --line-light: rgba(20, 20, 20, 0.18);
  --serif: "Lounge Didot", "Lounge Serif", Didot, Georgia, serif;
  --body: "Avenir Next", Avenir, "Helvetica Neue", Helvetica, Arial, sans-serif;
  --shell: min(1180px, calc(100% - 96px));
  --header-height: 82px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--black);
  color: var(--ivory);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
  letter-spacing: 0;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

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

figure,
blockquote,
p,
h1,
h2,
h3 {
  margin: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

::selection {
  background: var(--ivory);
  color: var(--black);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  transform: translateY(-160%);
  background: var(--ivory);
  color: var(--black);
}

.skip-link:focus {
  transform: none;
}

.section-shell {
  width: var(--shell);
  margin-inline: auto;
}

.narrow-shell {
  width: min(720px, calc(100% - 48px));
  margin-inline: auto;
}

.section-dark {
  position: relative;
  background: var(--black);
  color: var(--ivory);
}

.section-ivory {
  position: relative;
  background: var(--ivory);
  color: var(--ink);
}

.section-wine {
  background: var(--charcoal);
  color: var(--ivory);
}

.eyebrow {
  color: currentColor;
  font-size: 0.69rem;
  font-weight: 600;
  line-height: 1.3;
  text-transform: uppercase;
}

.solid-button,
.outline-button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  border: 1px solid currentColor;
  border-radius: 0;
  padding: 14px 20px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 0.7rem;
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase;
  transition: background-color 260ms ease, color 260ms ease, border-color 260ms ease;
}

.solid-button {
  border-color: var(--ivory);
  background: var(--ivory);
  color: var(--black);
}

.outline-button:hover,
.outline-button:focus-visible {
  background: var(--ink);
  color: var(--ivory);
}

.outline-button--light,
.light-button {
  border-color: rgba(255, 255, 255, 0.56);
  color: #fff;
}

.outline-button--light:hover,
.outline-button--light:focus-visible,
.light-button:hover,
.light-button:focus-visible {
  border-color: #fff;
  background: #fff;
  color: #080808;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  border-bottom: 1px solid currentColor;
  padding-bottom: 7px;
  font-size: 0.7rem;
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase;
}

.text-link span,
.solid-button span,
.outline-button span {
  transition: transform 240ms ease;
}

.text-link:hover span,
.text-link:focus-visible span,
.solid-button:hover span,
.solid-button:focus-visible span,
.outline-button:hover span,
.outline-button:focus-visible span {
  transform: translate(3px, -3px);
}

.text-link.light {
  color: var(--ivory);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: transparent;
  color: #fff;
  transition: background-color 320ms ease, border-color 320ms ease;
}

.site-header.is-scrolled,
.site-header.is-menu-open {
  border-bottom-color: rgba(255, 255, 255, 0.1);
  background: rgba(5, 5, 5, 0.9);
  backdrop-filter: blur(18px);
}

.header-inner {
  position: relative;
  z-index: 2;
  display: flex;
  width: var(--shell);
  height: 100%;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.desktop-nav a,
.language-link,
.header-cta {
  position: relative;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 240ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.language-link {
  color: rgba(255, 255, 255, 0.76);
}

.header-cta {
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  padding-bottom: 5px;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 15px;
  height: 1px;
  margin: 5px auto;
  background: #fff;
  transition: transform 240ms ease;
}

.site-header.is-menu-open .menu-button span:first-child {
  transform: translateY(3px) rotate(45deg);
}

.site-header.is-menu-open .menu-button span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

.menu-panel {
  position: fixed;
  z-index: 1;
  inset: 0;
  overflow-y: auto;
  padding: calc(var(--header-height) + 34px) 28px 40px;
  background: rgba(5, 5, 5, 0.985);
  color: #fff;
  overscroll-behavior: contain;
}

.menu-panel nav {
  width: min(700px, 100%);
  margin-inline: auto;
}

.menu-panel a {
  display: flex;
  min-height: 58px;
  align-items: baseline;
  gap: 24px;
  border-bottom: 1px solid var(--line-dark);
  padding: 13px 0;
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1.15;
}

.menu-panel a span {
  flex: 0 0 28px;
  width: 28px;
  color: var(--stone);
  font-family: var(--body);
  font-size: 0.62rem;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  overflow: hidden;
  place-items: center;
  background: #020202;
  isolation: isolate;
}

.hero-video,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video {
  z-index: -3;
  object-fit: cover;
  object-position: 54% center;
  filter: grayscale(1) contrast(1.06) brightness(0.72);
}

.hero-shade {
  z-index: -2;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.14) 38%, rgba(0, 0, 0, 0.76));
}

.hero-logo {
  position: absolute;
  z-index: 2;
  top: 18%;
  left: 50%;
  width: 118px;
  transform: translateX(-50%);
}

.hero-logo img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(760px, calc(100% - 64px));
  justify-items: center;
  padding-top: 23vh;
  text-align: center;
}

.hero-kicker {
  margin-bottom: 22px;
  font-size: 0.67rem;
  font-weight: 600;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 720px;
  font-family: var(--serif);
  font-size: 3.25rem;
  font-weight: 400;
  line-height: 1.08;
}

.hero h1 span {
  display: block;
}

.hero h1 span + span {
  margin-top: 6px;
}

.hero-intro {
  max-width: 500px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.98rem;
}

.hero-actions {
  margin-top: 34px;
}

.hero-scroll {
  position: absolute;
  z-index: 2;
  right: 34px;
  bottom: 26px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.58rem;
  text-transform: uppercase;
}

.hero-scroll span {
  width: 34px;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.25);
}

.hero-scroll span::after {
  display: block;
  width: 100%;
  height: 100%;
  background: #fff;
  content: "";
  animation: scroll-line 2.4s ease-in-out infinite;
  transform: translateX(-100%);
}

@keyframes scroll-line {
  50% { transform: translateX(100%); }
  100% { transform: translateX(100%); }
}

.home-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.8fr);
  min-height: 760px;
}

.home-intro__media {
  position: relative;
  min-height: 760px;
  overflow: hidden;
}

.home-intro__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.home-intro__media figcaption,
.home-film figcaption {
  position: absolute;
  right: 22px;
  bottom: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.6rem;
  text-transform: uppercase;
}

.home-intro__copy {
  position: relative;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  padding: 80px 11%;
  background: var(--pearl);
  box-shadow: inset 2px 0 0 rgba(103, 21, 43, 0.72);
}

.home-intro__copy .eyebrow,
.home-services__heading .eyebrow,
.home-trust > .section-shell > .eyebrow {
  color: var(--oxblood);
}

.home-intro__copy h2,
.home-services__heading h2,
.audio-heading h2,
.home-duo__copy h2,
.section-heading h2,
.about-title h2,
.contact-heading h1,
.cta-section h2,
.footer-primary h2 {
  margin-top: 22px;
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.08;
}

.home-intro__copy > p:not(.eyebrow),
.home-services__heading > p:not(.eyebrow),
.audio-heading > p:not(.eyebrow),
.home-duo__copy > p:not(.eyebrow),
.section-heading > p:not(.eyebrow),
.about-copy p,
.contact-heading > p:not(.eyebrow) {
  max-width: 570px;
  margin-top: 24px;
  color: rgba(20, 20, 20, 0.72);
  font-size: 0.97rem;
}

.home-intro__copy .text-link {
  margin-top: 36px;
}

.artistic-promise {
  padding: 150px 0 140px;
  border-top: 1px solid rgba(197, 143, 155, 0.22);
  border-bottom: 1px solid rgba(197, 143, 155, 0.16);
  background: var(--oxblood-deep);
  text-align: center;
}

.artistic-promise .eyebrow {
  color: var(--rose-metal);
}

.artistic-promise h2 {
  margin-top: 26px;
  font-family: var(--serif);
  font-size: 3.1rem;
  font-weight: 400;
  line-height: 1.08;
}

.artistic-promise p:last-child {
  max-width: 590px;
  margin: 28px auto 0;
  color: rgba(236, 233, 227, 0.64);
  font-size: 0.96rem;
}

.home-film {
  padding: 0 0 150px;
}

.home-film__frame {
  position: relative;
  width: min(980px, calc(100% - 96px));
  height: 640px;
  margin-inline: auto;
  overflow: hidden;
}

.home-film__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 36%;
  filter: saturate(0.96) contrast(1.04);
}

.home-film figcaption {
  display: flex;
  gap: 18px;
}

.home-services {
  padding: 140px 0;
  background: var(--pearl-bright);
}

.home-services__heading {
  display: grid;
  max-width: 760px;
}

.home-services__list {
  margin-top: 72px;
  border-top: 1px solid var(--line-light);
}

.service-line {
  position: relative;
  display: grid;
  min-height: 116px;
  grid-template-columns: 70px minmax(220px, 0.8fr) minmax(280px, 1.2fr) 30px;
  align-items: center;
  gap: 32px;
  overflow: hidden;
  border-bottom: 1px solid var(--line-light);
}

.service-line::before {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 36%;
  background: linear-gradient(to left, rgba(236, 233, 227, 0), rgba(236, 233, 227, 0.92)), var(--service-image) center/cover;
  content: "";
  opacity: 0;
  transition: opacity 360ms ease, width 420ms ease;
}

.service-line:hover::before {
  width: 42%;
  opacity: 0.48;
}

.service-line > * {
  position: relative;
  z-index: 1;
}

.service-line > span {
  color: var(--oxblood);
  font-size: 0.68rem;
}

.service-line h3 {
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 400;
}

.service-line p {
  max-width: 480px;
  color: rgba(20, 20, 20, 0.64);
  font-size: 0.9rem;
}

.service-line i {
  color: var(--oxblood);
  font-style: normal;
}

.home-services .outline-button {
  margin-top: 48px;
}

.audio-section {
  padding: 140px 0;
}

.audio-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(420px, 1.2fr);
  gap: 10%;
  align-items: start;
}

.audio-heading > p:not(.eyebrow) {
  color: rgba(236, 233, 227, 0.62);
}

.track-list {
  border-top: 1px solid var(--line-dark);
}

.track {
  display: grid;
  width: 100%;
  min-height: 76px;
  grid-template-columns: 46px 1fr 24px;
  align-items: center;
  border: 0;
  border-bottom: 1px solid var(--line-dark);
  padding: 0;
  background: transparent;
  color: var(--ivory);
  cursor: pointer;
  text-align: left;
}

.track span {
  color: rgba(236, 233, 227, 0.42);
  font-size: 0.62rem;
}

.track strong {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 400;
  transition: transform 240ms ease;
}

.track i {
  font-size: 0.65rem;
  font-style: normal;
}

.track:hover strong,
.track:focus-visible strong,
.track.is-playing strong {
  color: var(--rose-metal);
  transform: translateX(8px);
}

.home-duo {
  padding: 120px 0 150px;
}

.home-duo__grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr 0.54fr;
  grid-template-rows: 160px 520px 120px;
  gap: 22px;
}

.home-duo__copy {
  position: relative;
  z-index: 2;
  grid-column: 1 / 2;
  grid-row: 2 / 3;
  align-self: center;
  border-top: 2px solid var(--oxblood);
  padding: 42px 36px 44px;
  background: #16090d;
}

.home-duo__copy .eyebrow {
  color: var(--rose-metal);
}

.home-duo__copy > p:not(.eyebrow) {
  color: rgba(236, 233, 227, 0.62);
}

.home-duo__copy .text-link {
  margin-top: 34px;
}

.home-duo__portrait {
  overflow: hidden;
}

.home-duo__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.94) contrast(1.04);
}

.home-duo__portrait--main {
  grid-column: 2 / 3;
  grid-row: 1 / 3;
}

.home-duo__portrait--main img {
  object-position: center 34%;
}

.home-duo__portrait--detail {
  grid-column: 3 / 4;
  grid-row: 2 / 4;
}

.home-duo__portrait--detail img {
  object-position: 64% center;
}

.home-trust {
  padding: 130px 0;
  background: var(--pearl);
}

.home-trust__names {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 0;
  margin-top: 44px;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  padding: 26px 0;
}

.home-trust__names span {
  display: inline-flex;
  align-items: center;
  color: rgba(20, 20, 20, 0.72);
  font-family: var(--serif);
  font-size: 1.25rem;
}

.home-trust__names span:not(:last-child)::after {
  width: 3px;
  height: 3px;
  margin: 0 20px;
  border-radius: 50%;
  background: var(--oxblood);
  content: "";
}

.home-trust__quote {
  max-width: 630px;
  margin: 74px auto 0;
  text-align: center;
}

.home-trust__quote p {
  font-family: var(--serif);
  font-size: 2.15rem;
  line-height: 1.2;
}

.home-trust__quote footer {
  margin-top: 20px;
  color: var(--oxblood);
  font-size: 0.66rem;
  text-transform: uppercase;
}

.page-hero {
  position: relative;
  display: flex;
  min-height: 660px;
  align-items: flex-end;
  overflow: hidden;
  padding: 0 0 84px;
  background: #090909;
}

.page-hero > img,
.page-hero > video,
.page-hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.page-hero > img,
.page-hero > video {
  object-fit: cover;
  object-position: center;
  filter: grayscale(0.3) saturate(0.7) brightness(0.62);
}

.page-hero--video > video {
  filter: saturate(0.9) brightness(0.68);
}

.page-hero-shade {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.08) 60%);
}

.page-hero .section-shell {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  max-width: 760px;
  margin-top: 20px;
  font-family: var(--serif);
  font-size: 3.45rem;
  font-weight: 400;
  line-height: 1.06;
}

.page-hero--plain {
  min-height: 520px;
  background: #0b0b0b;
}

.page-hero--plain .page-hero-shade {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.72), transparent 70%);
}

.references-hero {
  min-height: min(78svh, 740px);
  align-items: center;
  padding: var(--header-height) 0 0;
  isolation: isolate;
}

.references-hero > img {
  z-index: -3;
  filter: none;
}

.references-hero__light {
  position: absolute;
  z-index: -2;
  inset: -18%;
  background:
    radial-gradient(circle at 48% 47%, rgba(255, 255, 255, 0.2), transparent 23%),
    linear-gradient(118deg, transparent 33%, rgba(255, 255, 255, 0.08) 49%, transparent 65%);
  opacity: 0.62;
  transform: translate3d(-5%, 0, 0) scale(1.08);
  animation: references-light-breathe 14s ease-in-out infinite alternate;
}

.references-hero .page-hero-shade {
  z-index: -1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.38), rgba(0, 0, 0, 0.12) 45%, rgba(0, 0, 0, 0.54));
}

.references-hero .section-shell {
  text-align: center;
}

.references-hero h1 {
  max-width: none;
  margin-inline: auto;
  font-size: clamp(2.8rem, 5.4vw, 5.3rem);
}

@keyframes references-light-breathe {
  from { transform: translate3d(-7%, -1%, 0) scale(1.08); }
  to { transform: translate3d(7%, 1%, 0) scale(1.12); }
}

.service-detail,
.values,
.repertoire,
.faq-section,
.text-page {
  padding: 130px 0;
}

.lead-copy {
  max-width: 760px;
  font-family: var(--serif);
  font-size: 1.8rem;
  line-height: 1.32;
}

.service-accordion {
  margin-top: 76px;
  border-top: 1px solid var(--line-light);
}

.service-accordion details,
.faq-list details {
  border-bottom: 1px solid var(--line-light);
}

.service-accordion summary,
.faq-list summary {
  display: grid;
  min-height: 94px;
  grid-template-columns: 64px 1fr 28px;
  align-items: center;
  gap: 26px;
  cursor: pointer;
  list-style: none;
}

.service-accordion summary::-webkit-details-marker,
.faq-list summary::-webkit-details-marker {
  display: none;
}

.service-accordion summary span,
.faq-list summary span {
  color: rgba(20, 20, 20, 0.44);
  font-size: 0.66rem;
}

.service-accordion summary h2,
.faq-list summary h2,
.faq-list summary h3 {
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 400;
}

.service-accordion summary i,
.faq-list summary i {
  font-size: 1.1rem;
  font-style: normal;
  transition: transform 240ms ease;
}

.service-accordion details[open] summary i,
.faq-list details[open] summary i {
  transform: rotate(45deg);
}

.service-accordion details > div,
.faq-list details > p {
  max-width: 700px;
  margin: 0 0 32px 90px;
  color: rgba(20, 20, 20, 0.68);
  font-size: 0.94rem;
}

.service-accordion details > div a {
  display: inline-block;
  margin-top: 18px;
  border-bottom: 1px solid currentColor;
  font-size: 0.68rem;
  text-transform: uppercase;
}

.image-triptych {
  display: grid;
  grid-template-columns: 1.1fr 0.75fr 1.15fr;
  gap: 12px;
  padding: 12px;
}

.image-triptych figure {
  height: 560px;
  overflow: hidden;
}

.image-triptych img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.72);
}

.gallery-section {
  padding: 12px;
}

.gallery-grid {
  display: grid;
  grid-auto-flow: dense;
  grid-auto-rows: 260px;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border: 0;
  padding: 0;
  background: #111;
  cursor: zoom-in;
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.76);
  transition: filter 420ms ease, transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-item span {
  position: absolute;
  right: 14px;
  bottom: 12px;
  color: #fff;
  opacity: 0;
  transition: opacity 260ms ease;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  filter: saturate(1);
  transform: scale(1.025);
}

.gallery-item:hover span,
.gallery-item:focus-visible span {
  opacity: 1;
}

.lightbox {
  width: min(1100px, calc(100% - 32px));
  max-height: 92vh;
  border: 0;
  padding: 0;
  background: #050505;
}

.lightbox::backdrop {
  background: rgba(0, 0, 0, 0.9);
}

.lightbox img {
  width: 100%;
  max-height: 88vh;
  object-fit: contain;
}

.lightbox button {
  position: fixed;
  z-index: 2;
  top: 24px;
  right: 30px;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  font-size: 2rem;
}

.references-page {
  padding: 134px 0 144px;
}

.references-intro {
  display: grid;
  grid-template-columns: minmax(180px, 0.5fr) minmax(0, 1.25fr);
  gap: 9%;
  align-items: start;
}

.references-intro .lead-copy {
  max-width: 760px;
  margin: 0;
  color: rgba(236, 233, 227, 0.82);
}

.reference-editorial {
  position: relative;
  margin-top: 108px;
  overflow: hidden;
  border-top: 1px solid rgba(236, 233, 227, 0.2);
  border-bottom: 1px solid rgba(236, 233, 227, 0.2);
}

.reference-editorial::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 38%, rgba(255, 255, 255, 0.055) 50%, transparent 62%);
  content: "";
  pointer-events: none;
  transform: translateX(-125%);
  transition: transform 1500ms cubic-bezier(0.16, 1, 0.3, 1);
}

.reference-editorial.is-visible::after {
  transform: translateX(125%);
}

.reference-editorial__group {
  display: grid;
  min-height: 190px;
  padding: 34px 0 38px;
  grid-template-columns: minmax(170px, 0.34fr) minmax(0, 1.66fr);
  gap: 5%;
  align-items: center;
}

.reference-editorial__group + .reference-editorial__group {
  border-top: 1px solid rgba(236, 233, 227, 0.12);
}

.reference-editorial__label,
.reference-editorial__scope {
  color: rgba(236, 233, 227, 0.42);
  font-size: 0.64rem;
  text-transform: uppercase;
}

.reference-editorial__row {
  display: flex;
  margin: 0;
  padding: 0;
  align-items: baseline;
  flex-wrap: wrap;
  list-style: none;
  gap: 20px clamp(30px, 4.2vw, 72px);
}

.reference-editorial__row li {
  position: relative;
  color: rgba(236, 233, 227, 0.76);
  font-family: var(--serif);
  font-size: clamp(1.65rem, 3vw, 3rem);
  line-height: 1.04;
  transition: color 240ms ease, transform 400ms cubic-bezier(0.16, 1, 0.3, 1);
}

.reference-editorial__row--secondary li {
  color: rgba(236, 233, 227, 0.58);
  font-size: clamp(1.2rem, 2vw, 1.85rem);
}

.reference-editorial__row li::after {
  position: absolute;
  top: 50%;
  right: calc(clamp(30px, 4.2vw, 72px) / -2 - 2px);
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--rose-metal);
  content: "";
  opacity: 0.58;
}

.reference-editorial__row li:last-child::after {
  display: none;
}

.reference-editorial__row li:hover {
  color: var(--ivory);
  transform: translateY(-3px);
}

.reference-editorial__scope {
  padding: 18px 0;
  border-top: 1px solid rgba(236, 233, 227, 0.12);
  text-align: right;
}

.testimonial-heading {
  display: grid;
  margin-top: 132px;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8%;
  align-items: end;
}

.testimonial-heading h2 {
  max-width: 650px;
  margin: 18px 0 0;
  font-size: clamp(2.1rem, 3.6vw, 4rem);
}

.testimonial-controls {
  display: flex;
  align-items: center;
  gap: 18px;
}

.testimonial-controls button {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(236, 233, 227, 0.22);
  border-radius: 50%;
  background: transparent;
  color: rgba(236, 233, 227, 0.78);
  cursor: pointer;
  font: inherit;
  transition: border-color 220ms ease, color 220ms ease, transform 220ms ease;
}

.testimonial-controls button:hover,
.testimonial-controls button:focus-visible {
  border-color: rgba(236, 233, 227, 0.72);
  color: var(--ivory);
  transform: scale(1.04);
}

.testimonial-controls output {
  min-width: 54px;
  color: rgba(236, 233, 227, 0.44);
  font-size: 0.64rem;
  text-align: center;
}

.testimonial-slider {
  margin-top: 46px;
  border-top: 1px solid rgba(236, 233, 227, 0.18);
  border-bottom: 1px solid rgba(236, 233, 227, 0.18);
}

.testimonial-viewport {
  overflow-x: auto;
  scrollbar-width: none;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
}

.testimonial-viewport::-webkit-scrollbar {
  display: none;
}

.testimonial-track {
  display: flex;
  width: max-content;
}

.testimonial-track blockquote {
  display: flex;
  width: min(72vw, 760px);
  min-height: 390px;
  margin: 0;
  padding: 58px clamp(38px, 5vw, 76px) 46px 0;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid rgba(236, 233, 227, 0.13);
  scroll-snap-align: start;
}

.testimonial-track blockquote + blockquote {
  padding-left: clamp(38px, 5vw, 76px);
}

.testimonial-track p {
  max-width: 650px;
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.35vw, 2.35rem);
  line-height: 1.3;
}

.testimonial-track footer {
  display: grid;
  margin-top: 44px;
  color: rgba(236, 233, 227, 0.45);
  font-size: 0.64rem;
  text-transform: uppercase;
  gap: 7px;
}

.testimonial-track footer strong {
  color: rgba(236, 233, 227, 0.8);
  font-weight: 600;
}

.testimonial-track footer a {
  width: fit-content;
  margin-top: 9px;
  border-bottom: 1px solid rgba(236, 233, 227, 0.22);
  color: rgba(236, 233, 227, 0.54);
  transition: color 180ms ease, border-color 180ms ease;
}

.testimonial-track footer a:hover {
  border-color: rgba(236, 233, 227, 0.75);
  color: var(--ivory);
}

.review-proof {
  display: grid;
  padding: 54px 0 0;
  grid-template-columns: 0.55fr 1.15fr 0.8fr;
  gap: 7%;
  align-items: center;
}

.review-proof__score {
  display: flex;
  align-items: baseline;
  color: var(--ivory);
}

.review-proof__score strong {
  font-family: var(--serif);
  font-size: clamp(3.5rem, 6vw, 6.5rem);
  font-weight: 400;
  line-height: 0.8;
}

.review-proof__score span {
  margin-left: 8px;
  color: rgba(236, 233, 227, 0.4);
  font-size: 0.78rem;
}

.review-proof__copy h3 {
  margin: 7px 0 9px;
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 400;
}

.review-proof__copy > p:last-child {
  margin: 0;
  color: rgba(236, 233, 227, 0.5);
  font-size: 0.84rem;
  line-height: 1.6;
}

.review-proof__actions {
  display: grid;
  justify-items: start;
  gap: 24px;
}

.review-share-button {
  border: 0;
  border-bottom: 1px solid rgba(236, 233, 227, 0.35);
  padding: 0 0 9px;
  background: transparent;
  color: rgba(236, 233, 227, 0.66);
  cursor: pointer;
  font: inherit;
  font-size: 0.72rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

.review-share-button span {
  margin-left: 12px;
}

.review-dialog {
  width: min(560px, calc(100vw - 32px));
  border: 1px solid rgba(236, 233, 227, 0.22);
  padding: 58px;
  background: #111;
  color: var(--ivory);
}

.review-dialog::backdrop {
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
}

.review-dialog h2 {
  margin: 20px 0;
  font-size: clamp(2.4rem, 6vw, 4rem);
}

.review-dialog > p:not(.eyebrow) {
  margin-bottom: 34px;
  color: rgba(236, 233, 227, 0.62);
}

.review-dialog__close {
  position: absolute;
  top: 18px;
  right: 22px;
  border: 0;
  background: transparent;
  color: rgba(236, 233, 227, 0.7);
  cursor: pointer;
  font-size: 1.8rem;
}

.about-story {
  padding: 140px 0 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 11%;
  align-items: start;
}

.about-copy p {
  color: rgba(236, 233, 227, 0.66);
}

.about-copy p:first-child {
  margin-top: 0;
}

.split-portraits {
  display: grid;
  margin-top: 120px;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.split-portraits figure {
  position: relative;
  height: 680px;
  overflow: hidden;
}

.split-portraits img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.7) contrast(1.04);
}

.split-portraits figcaption {
  position: absolute;
  right: 20px;
  bottom: 18px;
  color: #fff;
  font-size: 0.64rem;
  text-transform: uppercase;
}

.value-grid {
  display: grid;
  margin-top: 76px;
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
  grid-template-columns: repeat(4, 1fr);
}

.value-grid article {
  min-height: 230px;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  padding: 28px;
}

.value-grid span {
  color: rgba(20, 20, 20, 0.45);
  font-size: 0.64rem;
}

.value-grid h3 {
  margin-top: 56px;
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 400;
}

.value-grid p {
  margin-top: 14px;
  color: rgba(20, 20, 20, 0.64);
  font-size: 0.88rem;
}

.repertoire-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 10%;
}

.genre-list {
  border-top: 1px solid var(--line-light);
}

.genre-list div {
  display: grid;
  min-height: 68px;
  grid-template-columns: 48px 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line-light);
}

.genre-list span {
  color: rgba(20, 20, 20, 0.42);
  font-size: 0.62rem;
}

.genre-list strong {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
}

.repertoire-download {
  margin-top: 30px;
}

.faq-list {
  width: min(900px, var(--shell));
}

.intent-page {
  padding: 132px 0 0;
}

.intent-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.75fr);
  gap: 12%;
  align-items: start;
}

.intent-intro h2,
.intent-faq .section-heading h2 {
  max-width: 560px;
  margin-top: 22px;
  font-family: var(--serif);
  font-size: 2.8rem;
  font-weight: 400;
  line-height: 1.08;
}

.intent-intro__copy {
  display: grid;
  gap: 20px;
  color: rgba(20, 20, 20, 0.72);
  font-size: 0.96rem;
}

.intent-intro__copy .outline-button {
  width: fit-content;
  margin-top: 12px;
}

.intent-intro__copy small {
  color: rgba(20, 20, 20, 0.48);
  font-size: 0.68rem;
}

.intent-formats {
  display: grid;
  margin-top: 104px;
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
  grid-template-columns: repeat(3, 1fr);
}

.intent-formats article {
  min-height: 300px;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  padding: 30px;
}

.intent-formats span {
  color: rgba(20, 20, 20, 0.42);
  font-size: 0.64rem;
}

.intent-formats h3 {
  margin-top: 72px;
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 1.12;
}

.intent-formats p {
  margin-top: 18px;
  color: rgba(20, 20, 20, 0.64);
  font-size: 0.88rem;
}

.intent-facts {
  display: grid;
  margin-top: 52px;
  padding-bottom: 120px;
  grid-template-columns: repeat(4, 1fr);
}

.intent-facts span {
  border-left: 1px solid var(--line-light);
  padding: 8px 22px;
  color: rgba(20, 20, 20, 0.58);
  font-size: 0.66rem;
  text-transform: uppercase;
}

.intent-proof {
  padding: 98px 0;
}

.intent-proof__names {
  display: grid;
  margin-top: 38px;
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
  grid-template-columns: repeat(3, 1fr);
}

.intent-proof__names span {
  display: grid;
  min-height: 90px;
  place-items: center;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  color: rgba(236, 233, 227, 0.68);
  font-family: var(--serif);
  font-size: 1.05rem;
  text-align: center;
}

.intent-faq {
  padding: 124px 0 138px;
}

.intent-faq .faq-list {
  width: 100%;
  margin-top: 70px;
  border-top: 1px solid var(--line-light);
}

.contact-hero {
  padding: 190px 0 90px;
}

.contact-heading {
  max-width: 850px;
}

.contact-heading h1 {
  font-size: 3.45rem;
}

.contact-heading > p:not(.eyebrow) {
  color: rgba(236, 233, 227, 0.62);
}

.contact-section {
  padding: 50px 0 140px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 8%;
  align-items: start;
}

.contact-form {
  border-top: 1px solid var(--line-dark);
  padding-top: 38px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 22px;
  color: rgba(236, 233, 227, 0.56);
  font-size: 0.64rem;
  font-weight: 600;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(236, 233, 227, 0.2);
  border-radius: 0;
  outline: none;
  padding: 14px;
  background: rgba(255, 255, 255, 0.025);
  color: var(--ivory);
  font-size: 0.94rem;
  text-transform: none;
  transition: border-color 200ms ease, background-color 200ms ease;
}

.contact-form input,
.contact-form select {
  height: 52px;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(236, 233, 227, 0.62);
  background: rgba(255, 255, 255, 0.045);
}

.contact-form .honeypot {
  position: absolute;
  left: -9999px;
}

.contact-form .solid-button {
  margin-top: 12px;
}

.contact-form .solid-button:disabled {
  cursor: wait;
  opacity: 0.5;
}

.form-status {
  min-height: 26px;
  margin-top: 20px;
  color: rgba(236, 233, 227, 0.7);
  font-size: 0.84rem;
}

.contact-aside {
  display: grid;
  gap: 12px;
  border-top: 1px solid var(--line-dark);
  padding-top: 38px;
}

.contact-aside .eyebrow {
  margin-bottom: 14px;
}

.contact-aside a {
  width: fit-content;
  border-bottom: 1px solid transparent;
  font-size: 0.92rem;
}

.contact-aside a:hover,
.contact-aside a:focus-visible {
  border-bottom-color: currentColor;
}

.contact-aside > p:last-child {
  margin-top: 24px;
  color: rgba(236, 233, 227, 0.48);
  font-size: 0.82rem;
}

.text-page {
  min-height: 80vh;
  padding-top: 180px;
}

.text-page h1,
.not-found h1 {
  margin-top: 20px;
  font-family: var(--serif);
  font-size: 3.25rem;
  font-weight: 400;
  line-height: 1.08;
}

.text-page h2 {
  margin-top: 48px;
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 400;
}

.text-page p:not(.eyebrow) {
  margin-top: 14px;
  color: rgba(20, 20, 20, 0.72);
}

.text-page a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cta-section {
  padding: 120px 0;
}

.cta-section .section-shell {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 60px;
}

.cta-section h2 {
  max-width: 660px;
}

.cta-section .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -36px;
}

.site-footer {
  border-top: 1px solid var(--line-dark);
  background: var(--black);
  color: var(--ivory);
}

.footer-primary,
.footer-secondary,
.footer-legal {
  width: var(--shell);
  margin-inline: auto;
}

.footer-primary {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 60px;
  padding: 90px 0 72px;
}

.footer-services {
  display: grid;
  width: var(--shell);
  margin-inline: auto;
  border-top: 1px solid var(--line-dark);
  grid-template-columns: repeat(4, 1fr);
}

.footer-services a {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  border-right: 1px solid var(--line-dark);
  padding: 0 16px;
  color: rgba(236, 233, 227, 0.58);
  font-size: 0.64rem;
  text-transform: uppercase;
  transition: color 220ms ease, background-color 220ms ease;
}

.footer-services a:first-child {
  border-left: 1px solid var(--line-dark);
}

.footer-services a:hover,
.footer-services a:focus-visible {
  background: rgba(255, 255, 255, 0.025);
  color: var(--ivory);
}

.footer-primary h2 {
  max-width: 640px;
  font-size: 2.7rem;
}

.footer-secondary {
  display: grid;
  grid-template-columns: 110px 1fr 1fr;
  align-items: end;
  gap: 48px;
  border-top: 1px solid var(--line-dark);
  padding: 48px 0;
}

.footer-secondary > img {
  width: 72px;
  aspect-ratio: 1;
  object-fit: contain;
  opacity: 0.72;
}

.footer-contact,
.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  font-size: 0.76rem;
}

.footer-social {
  justify-content: flex-end;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  border-top: 1px solid var(--line-dark);
  padding: 20px 0 28px;
  color: rgba(236, 233, 227, 0.42);
  font-size: 0.62rem;
  text-transform: uppercase;
}

.contact-dock {
  position: fixed;
  z-index: 80;
  right: 22px;
  bottom: 22px;
  display: grid;
  justify-items: end;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 260ms ease, transform 260ms ease;
}

.contact-dock.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.contact-dock-toggle,
.contact-dock-links a {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 50%;
  background: rgba(8, 8, 8, 0.88);
  color: #fff;
  backdrop-filter: blur(12px);
}

.contact-dock-toggle {
  cursor: pointer;
}

.contact-dock-toggle span {
  width: 15px;
  height: 11px;
  border: 1px solid currentColor;
  border-radius: 7px 7px 7px 1px;
}

.contact-dock-links {
  display: grid;
  gap: 7px;
  max-height: 0;
  margin-bottom: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 280ms ease, margin 280ms ease, opacity 220ms ease;
}

.contact-dock.is-open .contact-dock-links {
  max-height: 180px;
  margin-bottom: 8px;
  opacity: 1;
}

.contact-dock-links a {
  font-size: 0.68rem;
}

.contact-dock-links svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.35;
}

.not-found {
  display: grid;
  min-height: 100vh;
  place-content: center;
  justify-items: center;
  gap: 20px;
  padding: 30px;
  text-align: center;
}

.not-found img {
  width: 90px;
}

.not-found > p {
  color: var(--stone);
  font-size: 0.68rem;
}

.not-found .solid-button {
  margin-top: 22px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 900ms cubic-bezier(0.22, 1, 0.36, 1), transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal-hero {
  opacity: 0;
  animation: hero-reveal 900ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
  transform: translateY(16px);
}

.hero-logo.reveal-hero {
  animation-delay: 160ms;
}

.hero-kicker.reveal-hero {
  animation-delay: 340ms;
}

.hero h1.reveal-hero {
  animation-delay: 440ms;
}

.hero-intro.reveal-hero {
  animation-delay: 570ms;
}

.hero-actions.reveal-hero {
  animation-delay: 680ms;
}

@keyframes hero-reveal {
  to {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1050px) {
  :root {
    --shell: min(100% - 56px, 960px);
  }

  .desktop-nav {
    gap: 20px;
  }

  .header-cta {
    display: none;
  }

  .home-intro {
    grid-template-columns: 1fr 0.9fr;
  }

  .home-intro__copy h2,
  .home-services__heading h2,
  .audio-heading h2,
  .home-duo__copy h2,
  .section-heading h2,
  .about-title h2,
  .contact-heading h1,
  .cta-section h2,
  .footer-primary h2 {
    font-size: 2.65rem;
  }

  .home-duo__grid {
    grid-template-columns: 0.8fr 1.1fr 0.5fr;
  }

  .reference-wall {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 780px) {
  :root {
    --header-height: 74px;
    --shell: calc(100% - 40px);
  }

  .testimonial-heading {
    margin-top: 90px;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .review-proof {
    padding: 36px;
    grid-template-columns: 0.7fr 1.3fr;
    gap: 32px;
  }

  .review-proof__actions {
    grid-column: 1 / -1;
    grid-template-columns: auto auto;
    gap: 32px;
    align-items: end;
  }

  .review-dialog {
    padding: 48px 40px;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .brand {
    width: 52px;
    height: 52px;
  }

  .hero-video {
    object-position: 58% center;
  }

  .hero-logo {
    top: 16%;
    width: 96px;
  }

  .hero-content {
    width: calc(100% - 40px);
    padding-top: 24vh;
  }

  .hero h1 {
    font-size: 2.4rem;
  }

  .hero-intro {
    font-size: 0.92rem;
  }

  .hero-scroll {
    display: none;
  }

  .home-intro {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .home-intro__media {
    min-height: 560px;
  }

  .home-intro__copy {
    padding: 80px 20px 90px;
    box-shadow: inset 0 2px 0 rgba(103, 21, 43, 0.72);
  }

  .home-intro__copy h2,
  .home-services__heading h2,
  .audio-heading h2,
  .home-duo__copy h2,
  .section-heading h2,
  .about-title h2,
  .contact-heading h1,
  .cta-section h2,
  .footer-primary h2 {
    font-size: 2.25rem;
  }

  .artistic-promise {
    padding: 110px 0;
  }

  .artistic-promise h2 {
    font-size: 2.35rem;
  }

  .home-film {
    padding-bottom: 100px;
  }

  .home-film__frame {
    width: calc(100% - 40px);
    height: 560px;
  }

  .home-services,
  .audio-section,
  .home-duo,
  .home-trust,
  .service-detail,
  .values,
  .repertoire,
  .faq-section,
  .references-page {
    padding: 100px 0;
  }

  .service-line {
    grid-template-columns: 40px 1fr 24px;
    gap: 14px;
    padding: 24px 0;
  }

  .service-line h3 {
    font-size: 1.45rem;
  }

  .service-line p {
    grid-column: 2 / 4;
  }

  .audio-grid,
  .about-grid,
  .repertoire-grid,
  .contact-layout,
  .intent-intro {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .intent-formats {
    grid-template-columns: 1fr;
  }

  .intent-formats article {
    min-height: 240px;
  }

  .intent-facts {
    grid-template-columns: repeat(2, 1fr);
  }

  .intent-facts span {
    border-bottom: 1px solid var(--line-light);
    padding: 18px;
  }

  .intent-proof__names {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-duo__grid {
    grid-template-columns: 0.72fr 0.28fr;
    grid-template-rows: auto 560px 250px;
  }

  .home-duo__copy {
    grid-column: 1 / -1;
    grid-row: 1;
    padding: 34px 28px 38px;
  }

  .home-duo__portrait--main {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .home-duo__portrait--detail {
    grid-column: 2;
    grid-row: 3;
    margin-top: -90px;
  }

  .page-hero {
    min-height: 560px;
    padding-bottom: 60px;
  }

  .page-hero h1 {
    font-size: 2.7rem;
  }

  .image-triptych {
    grid-template-columns: 1fr;
  }

  .image-triptych figure {
    height: 520px;
  }

  .gallery-grid {
    grid-auto-rows: 220px;
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item.wide {
    grid-column: span 2;
  }

  .reference-wall,
  .testimonial-grid,
  .value-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split-portraits figure {
    height: 540px;
  }

  .cta-section .section-shell,
  .footer-primary {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .cta-section .eyebrow {
    margin-bottom: -34px;
  }

  .footer-secondary {
    grid-template-columns: 80px 1fr;
  }

  .footer-services {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-social {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }
}

@media (max-width: 520px) {
  :root {
    --shell: calc(100% - 32px);
  }

  .testimonial-heading {
    margin-top: 76px;
  }

  .testimonial-heading h2 {
    font-size: 2.15rem;
  }

  .testimonial-grid blockquote {
    padding: 28px;
  }

  .review-proof {
    padding: 30px 28px;
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .review-proof__actions {
    grid-column: auto;
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .review-dialog {
    padding: 46px 24px 34px;
  }

  .review-dialog .solid-button {
    width: 100%;
  }

  body {
    font-size: 15px;
  }

  .header-inner {
    width: calc(100% - 28px);
  }

  .header-actions {
    gap: 14px;
  }

  .menu-panel {
    padding-inline: 22px;
  }

  .menu-panel a {
    gap: 16px;
    font-size: 1.7rem;
  }

  .hero {
    min-height: 780px;
  }

  .hero-video {
    object-position: 62% center;
  }

  .hero-logo {
    top: 14%;
    width: 86px;
  }

  .hero-content {
    width: calc(100% - 32px);
    padding-top: 25vh;
  }

  .hero-kicker {
    margin-bottom: 18px;
    font-size: 0.6rem;
  }

  .hero h1 {
    font-size: 2.05rem;
    line-height: 1.1;
  }

  .hero-intro {
    max-width: 330px;
    font-size: 0.86rem;
  }

  .hero-actions {
    margin-top: 28px;
  }

  .hero-actions .outline-button {
    width: 100%;
    max-width: 340px;
  }

  .home-intro__media {
    min-height: 440px;
  }

  .home-intro__copy {
    padding: 70px 16px 78px;
  }

  .home-intro__copy h2,
  .home-services__heading h2,
  .audio-heading h2,
  .home-duo__copy h2,
  .section-heading h2,
  .about-title h2,
  .contact-heading h1,
  .cta-section h2,
  .footer-primary h2 {
    font-size: 2rem;
  }

  .artistic-promise {
    padding: 90px 0;
  }

  .artistic-promise h2 {
    font-size: 2.05rem;
  }

  .artistic-promise p:last-child {
    font-size: 0.9rem;
  }

  .home-film {
    padding-bottom: 80px;
  }

  .home-film__frame {
    width: calc(100% - 32px);
    height: 470px;
  }

  .home-services,
  .audio-section,
  .home-duo,
  .home-trust,
  .service-detail,
  .values,
  .repertoire,
  .faq-section,
  .references-page {
    padding: 80px 0;
  }

  .home-services__list {
    margin-top: 52px;
  }

  .service-line {
    grid-template-columns: 30px 1fr 18px;
    gap: 10px;
  }

  .service-line h3 {
    font-size: 1.35rem;
  }

  .service-line p {
    font-size: 0.84rem;
  }

  .audio-grid {
    gap: 48px;
  }

  .track strong {
    font-size: 1.25rem;
  }

  .home-duo__grid {
    grid-template-columns: 1fr 0.32fr;
    grid-template-rows: auto 480px 190px;
  }

  .home-duo__portrait--detail {
    margin-top: -64px;
  }

  .home-trust__names {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }

  .home-trust__names span {
    min-height: 54px;
    border-bottom: 1px solid rgba(20, 20, 20, 0.1);
    font-size: 1rem;
  }

  .home-trust__names span::after {
    display: none;
  }

  .home-trust__quote {
    margin-top: 58px;
  }

  .home-trust__quote p {
    font-size: 1.7rem;
  }

  .page-hero {
    min-height: 500px;
  }

  .page-hero h1 {
    font-size: 2.25rem;
  }

  .lead-copy {
    font-size: 1.45rem;
  }

  .service-accordion {
    margin-top: 52px;
  }

  .service-accordion summary,
  .faq-list summary {
    min-height: 84px;
    grid-template-columns: 34px 1fr 20px;
    gap: 10px;
  }

  .service-accordion summary h2,
  .faq-list summary h2,
  .faq-list summary h3 {
    font-size: 1.34rem;
  }

  .intent-page {
    padding-top: 86px;
  }

  .intent-intro h2,
  .intent-faq .section-heading h2 {
    font-size: 2rem;
  }

  .intent-formats {
    margin-top: 68px;
  }

  .intent-formats article {
    min-height: 220px;
    padding: 24px;
  }

  .intent-formats h3 {
    margin-top: 42px;
    font-size: 1.5rem;
  }

  .intent-facts {
    padding-bottom: 84px;
  }

  .intent-proof {
    padding: 78px 0;
  }

  .intent-proof__names span {
    min-height: 78px;
    font-size: 0.94rem;
  }

  .intent-faq {
    padding: 88px 0 98px;
  }

  .intent-faq .faq-list {
    margin-top: 48px;
  }

  .service-accordion details > div,
  .faq-list details > p {
    margin-left: 44px;
  }

  .image-triptych figure {
    height: 400px;
  }

  .gallery-section {
    padding: 6px;
  }

  .gallery-grid {
    grid-auto-rows: 190px;
    gap: 6px;
  }

  .gallery-item.tall {
    grid-row: span 2;
  }

  .reference-wall,
  .testimonial-grid,
  .value-grid {
    grid-template-columns: 1fr;
  }

  .reference-wall div {
    min-height: 110px;
  }

  .testimonial-grid blockquote {
    min-height: 200px;
  }

  .about-story {
    padding-top: 90px;
  }

  .split-portraits {
    grid-template-columns: 1fr;
    margin-top: 80px;
  }

  .split-portraits figure {
    height: 500px;
  }

  .value-grid article {
    min-height: 190px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-hero {
    padding: 160px 0 70px;
  }

  .contact-section {
    padding: 30px 0 100px;
  }

  .text-page h1,
  .not-found h1 {
    font-size: 2.35rem;
  }

  .cta-section {
    padding: 88px 0;
  }

  .footer-primary {
    gap: 38px;
    padding: 72px 0 56px;
  }

  .footer-primary h2 {
    font-size: 2rem;
  }

  .footer-secondary {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-services {
    grid-template-columns: 1fr;
  }

  .footer-services a {
    border-left: 1px solid var(--line-dark);
  }

  .footer-secondary > img {
    width: 58px;
  }

  .contact-dock {
    right: 14px;
    bottom: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal,
  .reveal-hero {
    opacity: 1;
    transform: none;
  }
}

/* Complete editorial navigation */
.header-inner {
  margin-inline: auto;
}

.menu-button {
  display: block;
}

.menu-panel {
  padding: calc(var(--header-height) + 48px) 0 44px;
}

.menu-panel__inner {
  display: grid;
  width: var(--shell);
  min-height: calc(100svh - var(--header-height) - 92px);
  margin-inline: auto;
  grid-template-columns: minmax(220px, 0.68fr) minmax(460px, 1.32fr);
  grid-template-rows: auto 1fr auto;
  gap: 42px 10%;
}

.menu-panel__lead {
  align-self: start;
  padding-top: 12px;
}

.menu-panel__lead > p:last-child {
  max-width: 300px;
  margin-top: 24px;
  color: rgba(236, 233, 227, 0.62);
  font-family: var(--serif);
  font-size: 1.22rem;
  line-height: 1.35;
}

.menu-panel nav {
  display: grid;
  width: 100%;
  margin: 0;
  grid-column: 2;
  grid-row: 1 / 4;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: start;
  column-gap: 42px;
}

.menu-panel nav a {
  min-height: 68px;
  gap: 16px;
  padding: 17px 0 15px;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
}

.menu-panel nav a:hover,
.menu-panel nav a:focus-visible {
  color: #fff;
}

.menu-panel__footer {
  display: grid;
  align-self: end;
  gap: 7px;
  grid-column: 1;
  grid-row: 3;
}

.menu-panel__footer > a,
.menu-panel__footer div a {
  min-height: 0;
  width: fit-content;
  border: 0;
  padding: 0;
  color: rgba(236, 233, 227, 0.68);
  font-family: var(--body);
  font-size: 0.76rem;
  line-height: 1.8;
}

.menu-panel__footer div {
  display: flex;
  gap: 20px;
  margin-top: 14px;
}

/* Cinematic films */
.film-editorial {
  padding: 14px;
}

.film-editorial__frame {
  position: relative;
  height: min(76vh, 780px);
  min-height: 560px;
  overflow: hidden;
  background: #101010;
}

.film-editorial video,
.contact-cinematic video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.film-editorial__shade,
.contact-cinematic__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.76));
}

.film-editorial__caption {
  position: absolute;
  right: clamp(26px, 6vw, 86px);
  bottom: clamp(30px, 7vw, 76px);
  left: clamp(26px, 6vw, 86px);
  max-width: 610px;
}

.film-editorial__caption h2 {
  margin-top: 18px;
  font-family: var(--serif);
  font-size: clamp(2rem, 4.2vw, 3.55rem);
  font-weight: 400;
  line-height: 1.05;
}

.film-editorial__toggle {
  position: absolute;
  right: 24px;
  bottom: 22px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
  color: #fff;
  cursor: pointer;
  font-size: 0.65rem;
  backdrop-filter: blur(10px);
}

.editorial-pair {
  display: grid;
  min-height: 820px;
  padding: 90px max(24px, calc((100% - 1180px) / 2));
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.66fr);
  grid-template-rows: auto 1fr;
  gap: 72px 7%;
}

.editorial-pair figure {
  overflow: hidden;
}

.editorial-pair img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.editorial-pair__large {
  min-height: 640px;
  grid-row: 1 / 3;
}

.editorial-pair__small {
  height: 280px;
}

.editorial-pair__copy {
  align-self: end;
}

.editorial-pair__copy h2,
.repertoire-visual__copy h2 {
  margin-top: 20px;
  font-family: var(--serif);
  font-size: 2.35rem;
  font-weight: 400;
  line-height: 1.08;
}

.editorial-pair__copy p:last-child,
.repertoire-visual__copy p:last-child {
  margin-top: 24px;
  color: rgba(20, 20, 20, 0.66);
}

.repertoire-visual {
  display: grid;
  min-height: 680px;
  padding: 14px;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.72fr) minmax(0, 0.72fr);
  gap: 14px;
}

.repertoire-visual figure {
  overflow: hidden;
}

.repertoire-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.repertoire-visual__copy {
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 48px;
  background: var(--ivory);
  color: var(--ink);
}

/* Journal */
.journal-index {
  padding: 120px 0 150px;
}

.journal-intro {
  display: grid;
  grid-template-columns: 0.55fr 1fr;
  gap: 8%;
  align-items: start;
}

.journal-intro > p:last-child {
  max-width: 660px;
  font-family: var(--serif);
  font-size: 1.65rem;
  line-height: 1.35;
}

.journal-grid {
  display: grid;
  margin-top: 96px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 82px 38px;
}

.journal-card a {
  display: grid;
  gap: 26px;
}

.journal-card figure {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #ddd;
}

.journal-card--lead {
  grid-column: 1 / -1;
}

.journal-card--lead a {
  grid-template-columns: 1.35fr 0.65fr;
  align-items: end;
}

.journal-card--lead figure {
  aspect-ratio: 16 / 9;
}

.journal-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 800ms cubic-bezier(0.22, 1, 0.36, 1);
}

.journal-card a:hover img,
.journal-card a:focus-visible img {
  transform: scale(1.025);
}

.journal-card h2 {
  margin-top: 16px;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.1;
}

.journal-card div > p:not(.eyebrow) {
  margin-top: 18px;
  color: rgba(20, 20, 20, 0.64);
  font-size: 0.9rem;
}

.journal-card div > span {
  display: inline-block;
  margin-top: 22px;
  border-bottom: 1px solid currentColor;
  font-size: 0.64rem;
  text-transform: uppercase;
}

.journal-article {
  padding-top: 170px;
}

.journal-article__header {
  display: grid;
  max-width: 960px;
  padding-bottom: 86px;
}

.journal-back {
  width: fit-content;
  margin-bottom: 60px;
  color: rgba(20, 20, 20, 0.52);
  font-size: 0.66rem;
  text-transform: uppercase;
}

.journal-article__header h1 {
  max-width: 840px;
  margin-top: 24px;
  font-family: var(--serif);
  font-size: clamp(2.7rem, 5.4vw, 5.1rem);
  font-weight: 400;
  line-height: 0.98;
}

.journal-article__intro {
  max-width: 640px;
  margin: 48px 0 0 auto;
  color: rgba(20, 20, 20, 0.68);
  font-size: 1.05rem;
}

.journal-article__hero {
  height: min(78vh, 820px);
  margin: 0 14px;
  overflow: hidden;
}

.journal-article__hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.journal-article__body {
  padding: 120px 0 140px;
}

.journal-article__body > section {
  display: grid;
  padding: 45px 0;
  border-top: 1px solid var(--line-light);
  grid-template-columns: 56px 0.7fr 1fr;
  gap: 24px;
}

.journal-article__body > section span {
  color: rgba(20, 20, 20, 0.4);
  font-size: 0.64rem;
}

.journal-article__body > section h2,
.journal-article__contact h2 {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.14;
}

.journal-article__body > section p {
  color: rgba(20, 20, 20, 0.66);
}

.journal-article__figure {
  height: min(66vh, 680px);
  margin: 34px 0 96px;
  overflow: hidden;
}

.journal-article__figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.journal-article__contact {
  margin-top: 80px;
  border-top: 1px solid var(--line-light);
  padding: 50px 0 0 80px;
}

.journal-article__contact h2 {
  max-width: 460px;
  margin: 18px 0 30px;
  font-size: 2.35rem;
}

.journal-related {
  padding: 110px 0 130px;
}

.journal-related .section-shell > div {
  display: grid;
  margin-top: 44px;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.journal-related a {
  display: grid;
  min-height: 260px;
  grid-template-columns: 0.85fr 1.15fr;
  border: 1px solid var(--line-dark);
}

.journal-related img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.journal-related a > span {
  display: flex;
  justify-content: end;
  flex-direction: column;
  padding: 28px;
}

.journal-related small {
  color: rgba(236, 233, 227, 0.5);
  font-size: 0.6rem;
  text-transform: uppercase;
}

.journal-related strong {
  margin-top: 14px;
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 400;
  line-height: 1.15;
}

/* Contact film and form */
.contact-cinematic {
  position: relative;
  height: min(88svh, 900px);
  min-height: 680px;
  overflow: hidden;
}

.contact-cinematic video,
.contact-cinematic__shade {
  position: absolute;
  inset: 0;
}

.contact-cinematic video {
  filter: saturate(0.82) brightness(0.8);
}

.contact-cinematic__content {
  position: relative;
  z-index: 1;
  display: flex;
  height: 100%;
  justify-content: end;
  flex-direction: column;
  padding-bottom: 82px;
}

.contact-cinematic__content h1 {
  max-width: 780px;
  margin-top: 20px;
  font-family: var(--serif);
  font-size: clamp(2.6rem, 5vw, 4.7rem);
  font-weight: 400;
  line-height: 1.01;
}

.contact-cinematic__content > p:last-child {
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.74);
}

.contact-aside figure {
  height: 360px;
  margin-bottom: 26px;
  overflow: hidden;
}

.contact-aside figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 900px) {
  .menu-panel__inner {
    grid-template-columns: 1fr;
  }

  .menu-panel__lead {
    display: none;
  }

  .menu-panel nav {
    grid-column: 1;
    grid-row: 1;
  }

  .menu-panel__footer {
    grid-column: 1;
    grid-row: 3;
  }

  .editorial-pair,
  .repertoire-visual {
    grid-template-columns: 1fr 1fr;
  }

  .editorial-pair__large {
    grid-column: 1;
  }

  .repertoire-visual__copy {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .journal-card--lead a {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 780px) {
  .menu-panel {
    padding-top: calc(var(--header-height) + 20px);
  }

  .menu-panel__inner {
    min-height: calc(100svh - var(--header-height) - 48px);
    gap: 28px;
  }

  .menu-panel nav {
    grid-template-columns: 1fr;
  }

  .menu-panel nav a {
    min-height: 49px;
    padding: 9px 0;
    font-size: 1.35rem;
  }

  .menu-panel__footer {
    padding-top: 12px;
  }

  .film-editorial {
    padding: 8px;
  }

  .film-editorial__frame {
    height: 70svh;
    min-height: 520px;
  }

  .film-editorial__caption h2 {
    font-size: 2.3rem;
  }

  .editorial-pair {
    min-height: 0;
    padding: 70px 20px;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 34px;
  }

  .editorial-pair__large {
    min-height: 560px;
    grid-row: auto;
  }

  .editorial-pair__small {
    width: 54%;
    height: 260px;
    margin-left: auto;
  }

  .repertoire-visual {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .repertoire-visual__copy {
    grid-column: auto;
    grid-row: auto;
    padding: 64px 28px;
  }

  .repertoire-visual figure {
    height: 500px;
  }

  .repertoire-visual figure:last-child {
    height: 300px;
    margin-left: 36%;
  }

  .journal-index {
    padding: 90px 0 110px;
  }

  .journal-intro,
  .journal-grid {
    grid-template-columns: 1fr;
  }

  .journal-intro {
    gap: 24px;
  }

  .journal-intro > p:last-child {
    font-size: 1.4rem;
  }

  .journal-grid {
    margin-top: 70px;
    gap: 66px;
  }

  .journal-card--lead {
    grid-column: auto;
  }

  .journal-card h2 {
    font-size: 1.72rem;
  }

  .journal-article {
    padding-top: 120px;
  }

  .journal-article__header {
    padding-bottom: 58px;
  }

  .journal-back {
    margin-bottom: 42px;
  }

  .journal-article__header h1 {
    font-size: 2.75rem;
  }

  .journal-article__intro {
    margin-top: 34px;
  }

  .journal-article__hero {
    height: 62svh;
    min-height: 470px;
    margin: 0 8px;
  }

  .journal-article__body {
    padding: 78px 0 100px;
  }

  .journal-article__body > section {
    grid-template-columns: 38px 1fr;
  }

  .journal-article__body > section p {
    grid-column: 2;
  }

  .journal-article__contact {
    margin-top: 50px;
    padding-left: 38px;
  }

  .journal-related .section-shell > div,
  .journal-related a {
    grid-template-columns: 1fr;
  }

  .journal-related a {
    min-height: 0;
  }

  .journal-related img {
    height: 260px;
  }

  .contact-cinematic {
    height: 82svh;
    min-height: 620px;
  }

  .contact-cinematic__content {
    padding-bottom: 58px;
  }

  .contact-cinematic__content h1 {
    font-size: 2.65rem;
  }

  .contact-aside figure {
    height: 480px;
  }
}

@media (max-width: 520px) {
  .menu-panel nav a {
    gap: 12px;
    font-size: 1.18rem;
  }

  .menu-panel__footer div {
    margin-top: 8px;
  }

  .film-editorial__toggle {
    top: 18px;
    right: 18px;
    bottom: auto;
  }

  .film-editorial__caption h2,
  .editorial-pair__copy h2,
  .repertoire-visual__copy h2,
  .journal-article__contact h2 {
    font-size: 2rem;
  }

  .editorial-pair__large {
    min-height: 480px;
  }

  .contact-aside figure {
    height: 380px;
  }
}

/* Keep the full menu readable in short and narrow browser windows. */
.menu-panel {
  overflow-y: auto;
  padding: calc(var(--header-height) + 22px) 0 28px;
}

.menu-panel__inner {
  display: block;
  width: min(760px, calc(100% - 40px));
  min-height: 0;
  margin-inline: auto;
}

.menu-panel__lead {
  display: none;
}

.menu-panel nav {
  display: flex;
  width: 100%;
  margin: 0;
  flex-direction: column;
}

.menu-panel nav a {
  display: flex;
  min-height: 46px;
  flex: 0 0 auto;
  align-items: center;
  gap: 14px;
  visibility: visible;
  border-bottom: 1px solid var(--line-dark);
  padding: 8px 0;
  opacity: 1;
  font-size: clamp(1.08rem, 2.5vh, 1.42rem);
  line-height: 1.1;
}

.menu-panel nav a span {
  flex: 0 0 24px;
  width: 24px;
}

.menu-panel__footer {
  display: flex;
  margin-top: 22px;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px 22px;
  border-top: 1px solid var(--line-dark);
  padding-top: 16px;
}

.menu-panel__footer div {
  display: flex;
  margin-top: 0;
  gap: 18px;
}

@media (max-height: 620px) {
  .menu-panel {
    padding-top: calc(var(--header-height) + 10px);
  }

  .menu-panel nav a {
    min-height: 38px;
    padding-block: 5px;
    font-size: 1rem;
  }

  .menu-panel__footer {
    margin-top: 12px;
    padding-top: 10px;
  }
}

/* Official links hub */
.links-hub {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  padding: calc(var(--header-height) + 72px) 0 96px;
}

.links-hub__backdrop,
.links-hub__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.links-hub__backdrop {
  object-fit: cover;
  object-position: 50% 46%;
  filter: grayscale(1) contrast(1.05);
  opacity: 0.34;
}

.links-hub__shade {
  background: linear-gradient(90deg, rgba(4, 4, 4, 0.98) 0%, rgba(4, 4, 4, 0.74) 55%, rgba(4, 4, 4, 0.9) 100%);
}

.links-hub__inner {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 48px));
  margin-inline: auto;
}

.links-hub__logo {
  display: block;
  width: 116px;
  margin: 0 auto 52px;
}

.links-hub__logo img {
  display: block;
  width: 100%;
}

.links-hub__inner > .eyebrow,
.links-hub__inner > h1,
.links-hub__intro {
  text-align: center;
}

.links-hub__inner > h1 {
  max-width: 620px;
  margin: 18px auto 12px;
  font-family: var(--serif);
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 400;
  line-height: 0.98;
}

.links-hub__intro {
  color: var(--muted-dark);
}

.links-hub__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 54px;
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.links-hub__list a {
  display: flex;
  min-height: 106px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  padding: 22px 24px;
  transition: background-color 240ms ease, color 240ms ease;
}

.links-hub__list a:hover,
.links-hub__list a:focus-visible {
  background: var(--ivory);
  color: var(--ink);
}

.links-hub__list a span {
  display: grid;
  gap: 7px;
}

.links-hub__list strong {
  font-size: 0.9rem;
  letter-spacing: 0;
}

.links-hub__list small {
  color: var(--muted-dark);
  font-size: 0.69rem;
  letter-spacing: 0;
}

.links-hub__list a:hover small,
.links-hub__list a:focus-visible small {
  color: rgba(16, 16, 16, 0.66);
}

.links-hub__list i {
  font-style: normal;
}

.links-hub__contact {
  display: flex;
  width: 100%;
  min-height: 64px;
  margin-top: 20px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: var(--ivory);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

/* LoungeDuo remains visually distinct while connecting to the wider Maseko offer. */
.maseko-bridge {
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  padding: 92px 0;
}

.maseko-bridge__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  align-items: end;
  gap: 72px;
}

.maseko-bridge h2 {
  max-width: 690px;
  margin-top: 18px;
  font-family: var(--serif);
  font-size: clamp(2.45rem, 5vw, 4.8rem);
  font-weight: 400;
  line-height: 0.98;
}

.maseko-bridge__grid > div:last-child p {
  max-width: 520px;
  color: var(--muted-dark);
  line-height: 1.7;
}

.maseko-bridge .text-link {
  margin-top: 28px;
}

@media (max-width: 780px) {
  .links-hub {
    padding-top: calc(var(--header-height) + 48px);
  }

  .links-hub__logo {
    width: 96px;
    margin-bottom: 38px;
  }

  .links-hub__list {
    grid-template-columns: 1fr;
    margin-top: 42px;
  }

  .links-hub__list a {
    min-height: 82px;
  }

  .maseko-bridge {
    padding: 72px 0;
  }

  .maseko-bridge__grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
}

@media (max-width: 520px) {
  .links-hub__inner {
    width: calc(100% - 32px);
  }

  .links-hub__inner > h1 {
    font-size: 2.55rem;
  }

  .links-hub__list a {
    padding-inline: 18px;
  }

  .maseko-bridge h2 {
    font-size: 2.25rem;
  }
}

/* Premium editorial refinement: open compositions and a single scroll-led glass reflection. */
.glass-light-pass {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.glass-light-pass::after {
  position: absolute;
  z-index: 6;
  inset: -12% -30%;
  background: linear-gradient(108deg, transparent 42%, rgba(255, 255, 255, 0.055) 49%, rgba(255, 255, 255, 0.11) 50%, rgba(255, 255, 255, 0.045) 52%, transparent 59%);
  content: "";
  mix-blend-mode: screen;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(var(--light-position, -135%), 0, 0);
  will-change: transform, opacity;
}

.glass-light-pass.light-pass-active::after {
  opacity: 1;
}

.glass-light-pass.light-pass-complete::after {
  opacity: 0;
  transition: opacity 420ms ease;
}

.value-grid,
.intent-formats {
  border: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(34px, 5vw, 76px);
}

.intent-formats {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.value-grid article,
.intent-formats article {
  position: relative;
  min-height: 250px;
  border: 0;
  padding: 36px 0 12px;
}

.value-grid article::before,
.intent-formats article::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 54px;
  height: 1px;
  background: rgba(20, 20, 20, 0.38);
  content: "";
  transition: width 600ms cubic-bezier(0.16, 1, 0.3, 1);
}

.value-grid article.is-visible::before,
.intent-formats article.is-visible::before {
  width: 100%;
}

.intent-proof__names {
  display: flex;
  border: 0;
  border-top: 1px solid var(--line-dark);
  padding-top: 22px;
  flex-wrap: wrap;
  gap: 10px clamp(28px, 5vw, 72px);
}

.intent-proof__names span {
  display: block;
  min-height: 0;
  border: 0;
  padding: 12px 0;
  color: rgba(236, 233, 227, 0.64);
  font-size: clamp(1rem, 1.7vw, 1.4rem);
  text-align: left;
}

.footer-services {
  column-gap: clamp(18px, 3vw, 44px);
}

.footer-services a,
.footer-services a:first-child {
  border-right: 0;
  border-left: 0;
  border-bottom: 1px solid rgba(236, 233, 227, 0.1);
  padding-inline: 0;
}

.links-hub__list {
  border: 0;
  gap: 0 34px;
}

.links-hub__list a {
  border: 0;
  border-top: 1px solid rgba(236, 233, 227, 0.17);
  padding-inline: 0;
}

.links-hub__list a:nth-last-child(-n + 2) {
  border-bottom: 1px solid rgba(236, 233, 227, 0.17);
}

.journal-related a {
  border: 0;
  border-top: 1px solid var(--line-dark);
  padding-top: 18px;
}

@media (max-width: 1050px) {
  .references-intro {
    grid-template-columns: minmax(150px, 0.4fr) minmax(0, 1.2fr);
  }

  .reference-editorial__group {
    grid-template-columns: 150px minmax(0, 1fr);
  }

  .value-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 780px) {
  .references-hero {
    min-height: 520px;
  }

  .references-hero h1 {
    font-size: 2.8rem;
  }

  .references-page {
    padding: 94px 0 104px;
  }

  .references-intro,
  .reference-editorial__group,
  .testimonial-heading {
    grid-template-columns: 1fr;
  }

  .references-intro {
    gap: 26px;
  }

  .reference-editorial {
    margin-top: 74px;
  }

  .reference-editorial__group {
    min-height: 0;
    padding: 28px 0 34px;
    gap: 28px;
  }

  .reference-editorial__row {
    gap: 18px 34px;
  }

  .reference-editorial__row li::after {
    right: -19px;
  }

  .reference-editorial__scope {
    text-align: left;
  }

  .testimonial-heading {
    align-items: start;
  }

  .testimonial-controls {
    margin-top: 12px;
  }

  .testimonial-track blockquote {
    width: min(84vw, 620px);
    min-height: 380px;
    padding-right: 42px;
  }

  .testimonial-track blockquote + blockquote {
    padding-left: 42px;
  }

  .value-grid,
  .intent-formats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .links-hub__list {
    gap: 0;
  }

  .links-hub__list a:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .links-hub__list a:last-child {
    border-bottom: 1px solid rgba(236, 233, 227, 0.17);
  }
}

@media (max-width: 520px) {
  .references-hero {
    min-height: 470px;
  }

  .references-hero h1 {
    max-width: 310px;
    font-size: 2.35rem;
  }

  .reference-editorial__row li,
  .reference-editorial__row--secondary li {
    font-size: 1.45rem;
  }

  .testimonial-heading {
    margin-top: 92px;
  }

  .testimonial-controls {
    justify-content: space-between;
  }

  .testimonial-track blockquote {
    width: calc(100vw - 48px);
    min-height: 410px;
    padding: 44px 30px 36px 0;
  }

  .testimonial-track blockquote + blockquote {
    padding-left: 30px;
  }

  .testimonial-track p {
    font-size: 1.48rem;
  }

  .value-grid,
  .intent-formats {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .value-grid article,
  .intent-formats article {
    min-height: 0;
    padding-bottom: 40px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .references-hero__light,
  .glass-light-pass::after {
    display: none;
  }

  .testimonial-viewport {
    scroll-behavior: auto;
  }
}
