:root {
  --white: #ffffff;
  --soft-white: #fdfcf9;
  --warm-white: #faf8f3;
  --ivory: #f6f2ea;
  --pearl: #f0eee8;

  --ink: #242321;
  --soft-ink: #4d4a46;
  --muted: #77736d;
  --light-muted: #9b9791;

  --line: #dedbd4;
  --line-dark: #bdb9b1;

  --shadow-soft: 0 15px 42px rgba(35, 33, 30, 0.08);
  --shadow-hover: 0 24px 60px rgba(35, 33, 30, 0.14);

  --max: 1440px;
}


/* --------------------------------------------------
   Base
-------------------------------------------------- */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;

  color: var(--ink);
  background: var(--warm-white);

  font-family: "Montserrat", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.7;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

button {
  font: inherit;
}

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

.section-band-white {
  width: 100%;
  background: var(--white);
}

.section-band-warm {
  width: 100%;
  background: var(--warm-white);
}


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

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;

  z-index: 30;

  min-height: 126px;

  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;

  padding: 0 72px;

  background: transparent;
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;

  justify-self: start;
}

.brand-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 27px;
  line-height: 1;

  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.brand-role {
  margin-top: 7px;

  color: var(--muted);

  font-size: 9px;
  font-weight: 600;

  letter-spacing: 0.38em;
  text-transform: uppercase;
}


/* --------------------------------------------------
   RP to tabla logo
-------------------------------------------------- */

.brand-mark {
  position: relative;

  flex: 0 0 auto;

  width: 46px;
  height: 46px;

  display: grid;
  place-items: center;

  overflow: hidden;

  border: 1px solid var(--line-dark);
  border-radius: 50%;

  background: rgba(255, 255, 255, 0.68);
  color: var(--ink);

  font-family: "Cormorant Garamond", serif;
  font-size: 17px;

  transition:
    transform 0.45s ease,
    border-color 0.45s ease,
    background 0.45s ease,
    box-shadow 0.45s ease;
}

.brand-initials {
  position: relative;

  z-index: 4;

  transform: scale(1);
  opacity: 1;

  transition:
    opacity 0.25s ease,
    transform 0.4s ease,
    filter 0.4s ease;
}

.tabla-ring,
.tabla-shyahi {
  position: absolute;

  left: 50%;
  top: 50%;

  border-radius: 50%;

  opacity: 0;

  transform: translate(-50%, -50%) scale(0.45);

  transition:
    opacity 0.4s ease,
    transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.tabla-ring-outer {
  width: 37px;
  height: 37px;

  border: 1px solid #aaa59c;

  box-shadow:
    inset 0 0 0 3px rgba(210, 205, 195, 0.42),
    0 0 0 1px rgba(255, 255, 255, 0.7);
}

.tabla-ring-inner {
  width: 27px;
  height: 27px;

  border: 1px solid #c5c0b7;

  background:
    radial-gradient(
      circle,
      transparent 0 42%,
      rgba(199, 193, 183, 0.22) 43% 54%,
      transparent 55%
    );
}

.tabla-shyahi {
  width: 13px;
  height: 13px;

  z-index: 3;

  background:
    radial-gradient(
      circle at 38% 34%,
      #555 0,
      #292929 34%,
      #111 72%
    );

  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.28),
    inset -2px -2px 3px rgba(0, 0, 0, 0.35);
}

.brand:hover .brand-mark,
.footer-logo-link:hover .brand-mark {
  transform: rotate(-3deg) scale(1.06);

  border-color: #aaa59c;
  background: #fffefa;

  box-shadow: var(--shadow-soft);
}

.brand:hover .brand-initials,
.footer-logo-link:hover .brand-initials {
  opacity: 0;

  transform: scale(0.25);

  filter: blur(2px);
}

.brand:hover .tabla-ring,
.brand:hover .tabla-shyahi,
.footer-logo-link:hover .tabla-ring,
.footer-logo-link:hover .tabla-shyahi {
  opacity: 1;

  transform: translate(-50%, -50%) scale(1);
}

.brand:hover .tabla-ring-inner,
.footer-logo-link:hover .tabla-ring-inner {
  transition-delay: 0.05s;
}

.brand:hover .tabla-shyahi,
.footer-logo-link:hover .tabla-shyahi {
  transition-delay: 0.1s;
}


/* --------------------------------------------------
   Navigation
-------------------------------------------------- */

.main-nav {
  grid-column: 2;

  display: flex;
  align-items: center;
  gap: 42px;
}

.main-nav a {
  position: relative;

  padding: 10px 0;

  font-size: 11px;
  font-weight: 500;

  letter-spacing: 0.19em;
  text-transform: uppercase;

  transition: color 0.25s ease;
}

.main-nav a::after {
  content: "";

  position: absolute;

  left: 0;
  right: 0;
  bottom: 1px;

  height: 1px;

  background: var(--ink);

  transform: scaleX(0);
  transform-origin: right;

  transition: transform 0.35s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;

  border: 0;

  background: none;
  color: var(--ink);

  font-size: 24px;
  line-height: 1;

  cursor: pointer;
}


/* --------------------------------------------------
   Hero
-------------------------------------------------- */

.hero {
  position: relative;

  width: 100%;
  min-height: 930px;

  overflow: hidden;

  background: var(--warm-white);
}


/*
  Full-width blurred office background.

  The horizontal mask handles the LEFT-SIDE fade.
  Top and bottom fades are handled separately below.
*/

.hero-background-layer {
  position: absolute;

  top: 126px;
  right: 0;
  bottom: 0;
  left: 0;

  z-index: 0;

  overflow: hidden;

  pointer-events: none;

  -webkit-mask-image:
    linear-gradient(
      to right,
      transparent 0%,
      rgba(0, 0, 0, 0.02) 10%,
      rgba(0, 0, 0, 0.08) 18%,
      rgba(0, 0, 0, 0.20) 27%,
      rgba(0, 0, 0, 0.42) 36%,
      rgba(0, 0, 0, 0.70) 45%,
      rgba(0, 0, 0, 0.92) 54%,
      #000 62%,
      #000 100%
    );

  mask-image:
    linear-gradient(
      to right,
      transparent 0%,
      rgba(0, 0, 0, 0.02) 10%,
      rgba(0, 0, 0, 0.08) 18%,
      rgba(0, 0, 0, 0.20) 27%,
      rgba(0, 0, 0, 0.42) 36%,
      rgba(0, 0, 0, 0.70) 45%,
      rgba(0, 0, 0, 0.92) 54%,
      #000 62%,
      #000 100%
    );
}


/*
  TOP FADE
*/

.hero-background-layer::before {
  content: "";

  position: absolute;

  top: 0;
  left: 0;
  right: 0;

  height: 95px;

  z-index: 2;

  background:
    linear-gradient(
      to bottom,
      var(--warm-white) 0%,
      rgba(250, 248, 243, 0.92) 14%,
      rgba(250, 248, 243, 0.70) 32%,
      rgba(250, 248, 243, 0.40) 52%,
      rgba(250, 248, 243, 0.15) 72%,
      rgba(250, 248, 243, 0) 100%
    );

  pointer-events: none;
}


/*
  BOTTOM FADE
*/

.hero-background-layer::after {
  content: "";

  position: absolute;

  left: 0;
  right: 0;
  bottom: 0;

  height: 115px;

  z-index: 2;

  background:
    linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.10) 20%,
      rgba(255, 255, 255, 0.28) 42%,
      rgba(255, 255, 255, 0.58) 66%,
      rgba(255, 255, 255, 0.84) 84%,
      var(--white) 100%
    );

  pointer-events: none;
}


/*
  Background image treatment.
*/

.hero-background-image {
  position: relative;

  z-index: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center center;

  filter:
    brightness(1.02)
    contrast(0.94)
    saturate(0.90)
    sepia(0.025)
    blur(0.7px);

  transform: scale(1.006);
}


/*
  Main hero text container.
*/

.hero-inner {
  position: relative;

  z-index: 4;

  min-height: 930px;

  padding-top: 126px;
}

.hero-copy {
  position: relative;

  z-index: 5;

  width: 43%;
  min-height: 804px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;

  padding: 105px 40px 115px 35px;
}

.hero-statement {
  max-width: 610px;

  margin: 0 0 28px;

  font-family: "Cormorant Garamond", serif;
  font-weight: 500;

  letter-spacing: -0.035em;
}

.hero-primary,
.hero-secondary {
  display: block;
}

.hero-primary {
  font-size: clamp(68px, 6.3vw, 105px);
  line-height: 0.87;
}

.hero-secondary {
  max-width: 440px;

  margin-top: 24px;

  color: var(--soft-ink);

  font-size: clamp(32px, 3.1vw, 52px);
  line-height: 1;

  letter-spacing: -0.02em;
}

.hero-summary {
  max-width: 430px;

  margin: 0 0 34px;

  color: var(--soft-ink);

  font-size: 15px;
  line-height: 1.75;
}


/*
  FOREGROUND PORTRAIT

  Desktop values preserved from your current design.
*/

.hero-foreground-layer {
  position: absolute;

  top: 126px;

  right: 25%;

  bottom: 0;

  z-index: 3;

  width: 75%;

  display: flex;
  align-items: flex-end;
  justify-content: flex-end;

  overflow: visible;

  pointer-events: none;
}

.hero-foreground-image {
  width: 100%;
  height: 100%;

  object-fit: contain;
  object-position: right bottom;

  opacity: 1;

  filter:
    brightness(0.92)
    contrast(0.93)
    saturate(0.86)
    sepia(0.075)
    drop-shadow(0 12px 22px rgba(64, 47, 32, 0.10));

  transform: scale(1.05);

  transform-origin: center bottom;

  transition:
    transform 1.2s ease,
    filter 1.2s ease;
}

.hero:hover .hero-foreground-image {
  transform: scale(1.07);
}


/* Scroll indicator */

.scroll-note {
  position: absolute;

  left: 35px;
  bottom: 55px;

  display: flex;
  align-items: center;
  gap: 20px;

  color: var(--light-muted);

  font-size: 9px;

  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 55px;

  background:
    linear-gradient(
      var(--soft-ink),
      transparent
    );

  animation: scrollLine 2.2s ease-in-out infinite;
}


/* --------------------------------------------------
   Shared headings
-------------------------------------------------- */

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

  font-size: 11px;
  font-weight: 600;

  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.with-line {
  display: flex;
  align-items: center;
  gap: 18px;
}

.with-line::after {
  content: "";

  width: 74px;
  height: 1px;

  background: var(--line-dark);
}

h2 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;

  letter-spacing: -0.025em;
}

.section-heading-row {
  display: flex;

  align-items: end;
  justify-content: space-between;

  gap: 30px;

  margin-bottom: 38px;
}

.section-heading-row h2 {
  margin: 14px 0 0;

  font-size: 44px;
  line-height: 1.05;
}


/* --------------------------------------------------
   Buttons and links
-------------------------------------------------- */

.outline-button {
  position: relative;

  overflow: hidden;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  min-height: 62px;

  padding: 0 32px;

  border: 1px solid var(--line-dark);

  background: rgba(255, 255, 255, 0.54);
  color: var(--ink);

  font-size: 11px;
  font-weight: 600;

  letter-spacing: 0.17em;
  text-transform: uppercase;

  transition:
    transform 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.outline-button::before {
  content: "";

  position: absolute;

  inset: 0;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255, 255, 255, 0.94),
      transparent
    );

  transform: translateX(-120%);

  transition: transform 0.7s ease;
}

.outline-button:hover {
  transform: translateY(-3px);

  border-color: #aaa69f;

  background: var(--white);

  box-shadow: var(--shadow-soft);
}

.outline-button:hover::before {
  transform: translateX(120%);
}

.play-triangle {
  margin-right: 14px;

  font-size: 9px;

  transition: transform 0.3s ease;
}

.musical-button:hover .play-triangle {
  animation: musicPulse 0.75s ease infinite alternate;
}

.text-link {
  position: relative;

  padding-bottom: 5px;

  color: var(--soft-ink);

  font-size: 10px;
  font-weight: 600;

  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.text-link::after {
  content: "";

  position: absolute;

  left: 0;
  right: 0;
  bottom: 0;

  height: 1px;

  background: var(--soft-ink);

  transform: scaleX(0);
  transform-origin: right;

  transition: transform 0.35s ease;
}

.text-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}


/* --------------------------------------------------
   Featured Music
-------------------------------------------------- */

.featured {
  padding: 95px 0;
}

.track-strip {
  display: grid;

  grid-auto-flow: column;
  grid-auto-columns: minmax(250px, 1fr);

  gap: 28px;

  overflow-x: auto;

  overscroll-behavior-inline: contain;

  padding: 4px 2px 22px;

  scrollbar-width: thin;
  scrollbar-color: var(--line) transparent;
}

.track-strip::-webkit-scrollbar {
  height: 6px;
}

.track-strip::-webkit-scrollbar-track {
  background: transparent;
}

.track-strip::-webkit-scrollbar-thumb {
  border-radius: 99px;

  background: var(--line);
}

.track-card {
  min-width: 0;

  transition: transform 0.35s ease;
}

.track-card:hover {
  transform: translateY(-7px);
}

.track-cover {
  position: relative;

  overflow: hidden;

  aspect-ratio: 1.04 / 1;

  border: 1px solid var(--line);
  border-radius: 4px;

  background: var(--pearl);

  box-shadow: 0 10px 28px rgba(50, 48, 44, 0.05);

  transition:
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.track-card:hover .track-cover {
  border-color: var(--line-dark);

  box-shadow: var(--shadow-hover);
}

.track-cover img {
  transition:
    transform 0.7s ease,
    filter 0.5s ease;
}

.track-card:hover .track-cover img {
  transform: scale(1.035);

  filter: brightness(1.03);
}

.track-play {
  position: absolute;

  left: 50%;
  top: 50%;

  width: 60px;
  height: 60px;

  display: grid;
  place-items: center;

  transform: translate(-50%, -50%);

  border: 5px solid rgba(255, 255, 255, 0.88);
  border-radius: 50%;

  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);

  box-shadow: 0 8px 28px rgba(20, 20, 20, 0.16);

  cursor: pointer;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.track-play:hover {
  transform: translate(-50%, -50%) scale(1.08);

  box-shadow: 0 12px 36px rgba(20, 20, 20, 0.22);
}

.track-play span {
  margin-left: 3px;
}

.track-card h3 {
  margin: 18px 0 3px;

  text-align: center;

  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 500;
}

.track-card p {
  margin: 0;

  color: var(--muted);

  text-align: center;

  font-size: 9px;

  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.track-card.track-activated .track-play {
  animation: trackPlayPulse 0.5s ease;
}


/* --------------------------------------------------
   Featured Films
-------------------------------------------------- */

.featured-films {
  padding: 95px 0;
}

.film-grid {
  display: grid;

  grid-template-columns: repeat(2, minmax(0, 1fr));

  gap: 34px;
}

.film-card {
  min-width: 0;

  transition: transform 0.35s ease;
}

.film-card:hover {
  transform: translateY(-6px);
}

.video-frame {
  position: relative;

  overflow: hidden;

  aspect-ratio: 16 / 9;

  border: 1px solid var(--line);
  border-radius: 4px;

  background: var(--pearl);

  box-shadow: 0 12px 34px rgba(40, 38, 34, 0.07);
}

.video-frame iframe {
  position: absolute;

  inset: 0;

  width: 100%;
  height: 100%;

  border: 0;
}

.film-card-copy {
  padding-top: 18px;
}

.film-card-copy h3 {
  margin: 0 0 7px;

  font-family: "Cormorant Garamond", serif;
  font-size: 25px;
  font-weight: 500;
}

.film-card-copy p {
  margin: 0;

  color: var(--muted);

  font-size: 13px;
}


/* --------------------------------------------------
   About preview
-------------------------------------------------- */

.composer-section {
  padding: 0;
}

.about-layout {
  min-height: 600px;

  display: grid;

  grid-template-columns: 42% 58%;
}

.about-copy {
  display: flex;

  flex-direction: column;

  justify-content: center;
  align-items: flex-start;

  padding: 90px 65px 90px 35px;
}

.about-copy h2 {
  max-width: 520px;

  margin: 18px 0 25px;

  font-size: 48px;
  line-height: 1.04;
}

.about-copy h2 span {
  display: block;

  color: var(--muted);
}

.about-copy p {
  max-width: 455px;

  margin: 0 0 32px;

  color: var(--soft-ink);

  font-size: 16px;
  line-height: 1.75;
}

.about-image-wrap {
  min-height: 600px;

  overflow: hidden;

  background: var(--pearl);
}

.about-image-wrap img {
  transition: transform 1s ease;
}

.about-layout:hover .about-image-wrap img {
  transform: scale(1.018);
}


/* --------------------------------------------------
   Contact preview
-------------------------------------------------- */

.contact-preview {
  padding: 110px 0;
}

.contact-preview-inner {
  max-width: 760px;

  margin: 0 auto;

  text-align: center;
}

.contact-preview h2 {
  margin: 18px 0;

  font-size: 52px;
  line-height: 1.05;
}

.contact-preview p {
  max-width: 620px;

  margin: 0 auto 32px;

  color: var(--muted);
}


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

.site-footer {
  width: 100%;

  padding-top: 64px;

  border-top: 1px solid var(--line);

  background: var(--white);
}

.footer-grid {
  display: grid;

  grid-template-columns: 1.2fr 0.7fr 0.85fr 1fr;

  gap: 70px;

  padding-bottom: 48px;
}

.footer-logo-link {
  display: inline-block;

  margin-bottom: 16px;
}

.footer-brand .brand-name {
  font-size: 23px;
}

.footer-brand p {
  max-width: 290px;

  color: var(--muted);

  font-size: 13px;
}

.site-footer h3 {
  margin: 0 0 22px;

  color: var(--muted);

  font-size: 10px;

  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-footer a {
  display: block;

  margin: 7px 0;

  font-size: 13px;

  transition:
    color 0.25s ease,
    transform 0.25s ease;
}

.site-footer a:not(.outline-button):not(.footer-logo-link):hover {
  transform: translateX(3px);

  color: var(--ink);
}

.site-footer .outline-button {
  display: inline-flex;

  margin-top: 12px;
}

.social-links {
  display: flex;

  flex-wrap: wrap;

  gap: 18px;

  margin-top: 18px;
}

.social-links a {
  margin: 0;

  color: var(--muted);
}

.copyright {
  padding: 18px 0 22px;

  border-top: 1px solid var(--line);

  color: var(--light-muted);

  text-align: center;

  font-size: 10px;
}


/* --------------------------------------------------
   SoundCloud player
-------------------------------------------------- */

.audio-player {
  position: fixed;

  z-index: 50;

  left: 50%;
  bottom: 24px;

  width: min(760px, calc(100% - 36px));

  display: grid;

  grid-template-columns: auto 1fr;

  align-items: center;

  gap: 16px;

  padding: 18px;

  transform: translateX(-50%);

  border: 1px solid var(--line);

  background: rgba(255, 255, 255, 0.97);

  box-shadow: 0 22px 60px rgba(20, 20, 20, 0.16);

  backdrop-filter: blur(15px);

  animation: playerEnter 0.35s ease;
}

.audio-player[hidden] {
  display: none;
}

.audio-player button {
  align-self: start;

  border: 0;

  background: none;
  color: var(--ink);

  font-size: 25px;

  cursor: pointer;

  transition: transform 0.25s ease;
}

.audio-player button:hover {
  transform: rotate(90deg);
}

.player-information strong {
  display: block;

  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  font-weight: 500;
}

.player-information span {
  display: block;

  margin-top: 3px;

  color: var(--muted);

  font-size: 9px;

  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.audio-player iframe {
  grid-column: 1 / -1;

  width: 100%;

  border: 0;
}


/* --------------------------------------------------
   Animations
-------------------------------------------------- */

@keyframes musicPulse {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.3);
  }
}

@keyframes trackPlayPulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    transform: translate(-50%, -50%) scale(1.14);
  }

  100% {
    transform: translate(-50%, -50%) scale(1);
  }
}

@keyframes scrollLine {
  0%,
  100% {
    opacity: 0.35;

    transform: scaleY(0.85);
  }

  50% {
    opacity: 1;

    transform: scaleY(1);
  }
}

@keyframes playerEnter {
  from {
    opacity: 0;

    transform: translate(-50%, 18px);
  }

  to {
    opacity: 1;

    transform: translate(-50%, 0);
  }
}


/* --------------------------------------------------
   Tablet navigation
-------------------------------------------------- */

@media (max-width: 1100px) {

  .site-header {
    grid-template-columns: 1fr auto;

    padding: 0 30px;
  }

  .menu-toggle {
    position: relative;

    z-index: 42;

    display: grid;

    place-items: center;

    justify-self: end;

    width: 50px;
    height: 50px;

    padding: 0;

    border: 1px solid transparent;
    border-radius: 3px;

    background: transparent;

    font-size: 31px;
    line-height: 1;

    transition:
      border-color 0.25s ease,
      background 0.25s ease;
  }

  .menu-toggle:hover,
  .menu-toggle:focus-visible {
    border-color: var(--line-dark);

    background: rgba(255, 255, 255, 0.7);
  }

  .main-nav {
    position: fixed;

    top: 0;
    right: 0;
    bottom: 0;
    left: auto;

    z-index: 40;

    width: min(88vw, 430px);
    max-width: 100vw;

    height: 100vh;
    height: 100dvh;

    display: flex;

    flex-direction: column;

    align-items: stretch;
    justify-content: flex-start;

    gap: 0;

    padding: 145px 42px 50px;

    overflow-x: hidden;
    overflow-y: auto;

    border-left: 1px solid var(--line);

    background: rgba(253, 252, 249, 0.985);

    box-shadow: -24px 0 60px rgba(35, 33, 30, 0.12);

    backdrop-filter: blur(18px);

    opacity: 0;
    visibility: hidden;

    pointer-events: none;

    transform: translateX(100%);

    transition:
      transform 0.38s cubic-bezier(0.22, 1, 0.36, 1),
      opacity 0.28s ease,
      visibility 0s linear 0.38s;
  }

  .main-nav.open {
    opacity: 1;
    visibility: visible;

    pointer-events: auto;

    transform: translateX(0);

    transition:
      transform 0.38s cubic-bezier(0.22, 1, 0.36, 1),
      opacity 0.28s ease,
      visibility 0s;
  }

  .main-nav a {
    width: 100%;

    display: block;

    padding: 22px 0;

    border-bottom: 1px solid var(--line);

    font-size: 13px;

    letter-spacing: 0.22em;
  }

  .main-nav a:first-child {
    border-top: 1px solid var(--line);
  }

  .main-nav a::after {
    display: none;
  }

  .main-nav a.active {
    font-weight: 600;
  }

  .section-shell {
    width: min(calc(100% - 60px), var(--max));
  }


  /* Hero */

  .hero-copy {
    width: 48%;
  }

  .hero-foreground-layer {
    right: 5%;
    width: 61%;
  }

  .hero-primary {
    font-size: 72px;
  }

  .hero-secondary {
    font-size: 38px;
  }


  /* About */

  .about-copy {
    padding-left: 30px;
    padding-right: 44px;
  }


  /* Footer */

  .footer-grid {
    gap: 45px;
  }
}


/* --------------------------------------------------
   Mobile
-------------------------------------------------- */

@media (max-width: 760px) {

  .site-header {
    position: relative;

    min-height: 96px;

    padding: 0 20px;

    border-bottom: 1px solid var(--line);

    background: var(--warm-white);
  }

  .brand {
    min-width: 0;

    gap: 13px;
  }

  .brand-name {
    font-size: clamp(21px, 6.2vw, 30px);

    white-space: nowrap;
  }

  .brand-role {
    font-size: 8px;

    letter-spacing: 0.3em;

    white-space: nowrap;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .menu-toggle {
    width: 46px;
    height: 46px;

    font-size: 29px;
  }

  .main-nav {
    width: 100vw;
    max-width: 100vw;

    padding: 122px 30px 45px;

    border-left: 0;
  }

  .main-nav a {
    padding: 19px 0;

    font-size: 13px;
  }


  /* --------------------------------------------------
     Mobile hero
  -------------------------------------------------- */

  .hero {
    min-height: auto;

    overflow: hidden;
  }


  /*
    Give the mobile hero more vertical room.

    This prevents the foreground portrait from
    being clipped at the top.
  */

  .hero-background-layer {
    top: 0;
    right: 0;
    bottom: auto;
    left: 0;

    width: 100%;
    height: 560px;

    -webkit-mask-image:
      linear-gradient(
        to bottom,
        #000 0%,
        #000 68%,
        rgba(0, 0, 0, 0.82) 78%,
        rgba(0, 0, 0, 0.46) 88%,
        rgba(0, 0, 0, 0.16) 95%,
        transparent 100%
      );

    mask-image:
      linear-gradient(
        to bottom,
        #000 0%,
        #000 68%,
        rgba(0, 0, 0, 0.82) 78%,
        rgba(0, 0, 0, 0.46) 88%,
        rgba(0, 0, 0, 0.16) 95%,
        transparent 100%
      );
  }


  /*
    Desktop overlays are unnecessary on mobile because
    the vertical mask already handles the fade.
  */

  .hero-background-layer::before,
  .hero-background-layer::after {
    display: none;
  }


  .hero-background-image {
    object-position: center center;

    filter:
      brightness(1.02)
      contrast(0.94)
      saturate(0.90)
      sepia(0.025)
      blur(0.6px);
  }


  /*
    MOBILE FOREGROUND PORTRAIT

    Narrower than the full screen so the portrait keeps
    its natural proportions and no longer feels widened.

    Centered independently from the desktop positioning.
  */

  .hero-foreground-layer {
    top: 12px;
    left: 50%;
    right: auto;
    bottom: auto;

    width: 90%;
    height: 548px;

    display: flex;
    align-items: flex-end;
    justify-content: center;

    transform: translateX(-50%);

    overflow: visible;
  }


  /*
    No permanent zoom on mobile.

    object-fit: contain preserves the portrait's
    natural aspect ratio.
  */

  .hero-foreground-image {
    width: 100%;
    height: 100%;

    object-fit: contain;
    object-position: center bottom;

    transform: scale(1);

    transform-origin: center bottom;
  }


  /*
    Disable the desktop hover enlargement on mobile.
    Touchscreens do not need this behavior.
  */

  .hero:hover .hero-foreground-image {
    transform: scale(1);
  }


  /*
    Text begins after the taller image area.
  */

  .hero-inner {
    width: 100%;

    min-height: auto;

    padding-top: 560px;
  }

  .hero-copy {
    width: 100%;
    min-height: auto;

    padding: 32px 24px 74px;
  }

  .hero-primary {
    font-size: 62px;
  }

  .hero-secondary {
    margin-top: 18px;

    font-size: 34px;
  }

  .scroll-note {
    display: none;
  }


  /* Shared */

  .section-shell {
    width: min(calc(100% - 36px), var(--max));
  }

  .section-heading-row {
    align-items: flex-start;

    gap: 22px;
  }

  .section-heading-row h2 {
    font-size: 36px;
  }


  /* Music */

  .track-strip {
    grid-auto-columns: 82%;
  }


  /* Films */

  .film-grid {
    grid-template-columns: 1fr;
  }


  /* About */

  .about-layout {
    width: 100%;

    min-height: auto;

    grid-template-columns: 1fr;
  }

  .about-image-wrap {
    order: 1;

    min-height: 460px;
  }

  .about-copy {
    order: 2;

    padding: 65px 24px;
  }

  .about-copy h2 {
    font-size: 40px;
  }


  /* Contact */

  .contact-preview {
    padding: 86px 0;
  }

  .contact-preview h2 {
    font-size: 43px;
  }


  /* Footer */

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

    gap: 42px 25px;
  }


  /* Audio player */

  .audio-player {
    bottom: 12px;

    grid-template-columns: auto 1fr;
  }
}


/* --------------------------------------------------
   Small phones
-------------------------------------------------- */

@media (max-width: 480px) {

  .site-header {
    min-height: 90px;

    padding: 0 16px;
  }

  .brand {
    gap: 10px;
  }

  .brand-name {
    font-size: clamp(19px, 6.4vw, 27px);
  }

  .brand-role {
    margin-top: 5px;

    font-size: 7px;

    letter-spacing: 0.27em;
  }

  .brand-mark {
    width: 39px;
    height: 39px;

    font-size: 15px;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;

    font-size: 27px;
  }

  .main-nav {
    padding: 112px 24px 40px;
  }


  /*
    Slightly shorter than the 760px breakpoint,
    but still taller than the previous 440px version.
  */

  .hero-background-layer {
    height: 500px;
  }

  .hero-foreground-layer {
    top: 10px;

    width: 91%;
    height: 490px;
  }

  .hero-inner {
    padding-top: 500px;
  }

  .hero-copy {
    padding-top: 30px;
  }

  .hero-primary {
    font-size: 52px;
  }

  .hero-secondary {
    font-size: 29px;
  }

  .hero-summary {
    font-size: 14px;
  }


  /* Buttons */

  .outline-button {
    width: 100%;

    padding: 0 20px;
  }


  /* Sections */

  .section-heading-row {
    flex-direction: column;
  }

  .track-strip {
    grid-auto-columns: 88%;
  }

  .contact-preview h2 {
    font-size: 38px;
  }

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


/* --------------------------------------------------
   Reduced motion
-------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;

    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;

    transition-duration: 0.01ms !important;
  }
}