:root {
  --white: #f3ede5;
  --paper: #fffaf3;
  --black: #714b4b;
  --ink: #1a1008;
  --muted: #7a5a30;
  --accent: #d9b783;
  --dark-accent: #9a5151;
  --light-accent: #e5dcce;
  --shadow: 0 26px 80px rgba(26, 16, 8, .18);
  --serif: "PT Serif", Georgia, serif;
  --display: "DM Serif Display", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.65;
}

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

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 20;
  background: var(--ink);
  color: var(--white);
  padding: 10px 14px;
  text-decoration: none;
}

.skip-link:focus { top: 16px; }

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 10;
  display: grid;
  grid-template-columns: minmax(120px, 1fr) auto minmax(120px, 1fr);
  align-items: center;
  gap: clamp(16px, 2.2vw, 28px);
  padding: 12px clamp(28px, 7vw, 120px);
  background: var(--white);
  border-bottom: 1px solid rgba(113, 75, 75, .18);
  box-shadow: 0 10px 26px rgba(26, 16, 8, .08);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: min(108px, 18vw);
}

.brand img {
  max-height: 50px;
  width: auto;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--black);
}

.site-nav a,
.site-footer a { text-decoration: none; }

.site-nav a:hover,
.site-footer a:hover { color: var(--ink); }

.social-links {
  display: flex;
  align-items: center;
  gap: 0;
  color: var(--black);
}

.social-links a {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: inherit;
  opacity: .96;
  text-decoration: none;
  transition: color .18s ease, opacity .18s ease, transform .18s ease;
}

.social-links a:hover {
  color: var(--ink);
  opacity: 1;
  transform: translateY(-1px);
}

.social-links svg {
  width: 40px;
  height: 40px;
  fill: currentColor;
}

.header-social { justify-self: end; }

.menu-toggle {
  display: none;
  border: 1px solid rgba(113, 75, 75, .36);
  background: transparent;
  color: var(--black);
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: 10px 12px;
}

.section-inner {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.section-inner.narrow {
  width: min(850px, calc(100% - 40px));
  text-align: center;
}

.section-white, .section-white-bold { background: var(--white); }
.section-bright { background: var(--light-accent); }

.section-dark {
  position: relative;
  overflow: hidden;
  background: #27120f;
  color: var(--white);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 140px 20px 80px;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .16), rgba(0, 0, 0, .10) 42%, rgba(0, 0, 0, .34)),
    url("assets/images/hero-sweet-georgia-brown.jpg") center / cover;
  filter: saturate(.82) contrast(1.04);
}

.hero-content {
  position: absolute;
  z-index: 2;
  right: clamp(34px, 10.4vw, 190px);
  top: clamp(285px, 48vh, 470px);
  width: min(650px, calc(100% - 68px));
  margin: 0;
  text-align: center;
  color: rgba(255, 250, 243, .96);
}

h1, h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  line-height: .95;
  color: inherit;
}

h1 { font-size: clamp(3.2rem, 6.8vw, 7.4rem); letter-spacing: 0; }
h2 { font-size: clamp(3rem, 7.6vw, 7.6rem); margin-bottom: 28px; }

.hero h1 {
  font-size: clamp(2.35rem, 3.65vw, 4.35rem);
  line-height: 1.04;
  font-weight: 400;
  transform: translateY(26px);
}

h3 {
  margin: 0;
  font-family: var(--sans);
  font-size: .78rem;
  font-weight: 400;
  letter-spacing: .18em;
  line-height: 1.35;
  text-transform: uppercase;
}

.hero p:not(.release-note) {
  margin: 10px 0 0;
  font-family: var(--serif);
  font-size: clamp(1.1rem, 1.65vw, 1.62rem);
  color: rgba(255, 250, 243, .94);
  transform: translateY(26px);
}

.release-note {
  position: static;
  display: block;
  z-index: 2;
  margin: 8px auto 0;
  font-family: var(--serif);
  font-size: clamp(1rem, 1.22vw, 1.25rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: none;
  color: rgba(255, 250, 243, .96);
  text-decoration: underline;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 148px;
  min-height: 46px;
  padding: 13px 24px;
  border: 1px solid currentColor;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .18em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.button:hover { transform: translateY(-2px); }
.button-primary { background: rgba(26, 16, 8, .88); color: var(--white); }
.button-secondary { color: var(--ink); }

.hero .button-primary {
  position: static;
  margin: clamp(150px, 19vh, 218px) auto 0;
  min-width: clamp(215px, 15vw, 292px);
  min-height: 58px;
  border: 0;
  border-radius: 999px;
  background: rgba(126, 79, 79, .96);
  color: #fffaf3;
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  box-shadow: none;
}

.about {
  position: relative;
  overflow: hidden;
  padding: clamp(86px, 12vw, 150px) 0 clamp(62px, 7vw, 96px);
  background:
    radial-gradient(circle at 42% 32%, rgba(255, 232, 184, .72), rgba(217, 183, 131, .62) 44%, rgba(217, 183, 131, .94) 100%),
    var(--accent);
}

.about-copy {
  width: min(1540px, calc(100% - 80px));
  text-align: center;
}

.about-copy p {
  margin: 0 auto;
  font-size: clamp(1.26rem, 1.52vw, 1.62rem);
  line-height: 1.45;
  color: rgba(113, 75, 75, .92);
}

.about-copy p + p {
  margin-top: clamp(48px, 5.2vw, 72px);
}

.about-copy a {
  color: inherit;
  text-underline-offset: 3px;
}

.section-copy, .collaborations p, .listen p, .closing p {
  color: rgba(26, 16, 8, .76);
}

.quote {
  position: relative;
  z-index: 3;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  text-align: center;
  padding: 0;
}

.quote-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(243, 237, 229, .58), rgba(243, 237, 229, .82)),
    url("assets/images/quote-background.jpg") center / cover;
  filter: grayscale(.18) saturate(.72);
}

blockquote {
  margin: 0 auto 28px;
  width: min(1120px, 100%);
  font-family: var(--display);
  font-size: clamp(1.65rem, 4.7vw, 4.35rem);

  transform: none;
  font-style: italic;
  line-height: 1.04;
}

.quote a {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: .28em;
  color: var(--muted);
  text-decoration: none;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(120, 90, 48, .45);
  padding-bottom: 5px;

  transform: none;
}

.quote .section-inner { z-index: 3; transform: translateY(10%); }

.quote-notes-canvas {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 8;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.wave-divider {
  position: absolute;
  left: 0;
  right: 0;
  width: auto;
  z-index: 5;
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.wave-top { top: -1px; }
.wave-bottom { bottom: -2px; }

.wave-quote-top {
  height: clamp(120px, 13vw, 205px);
  background-image: url("data:image/svg+xml,%3Csvg width='1440' height='205' viewBox='0 0 1440 205' preserveAspectRatio='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0H1440V104C1268 73 1118 60 951 77C751 97 607 142 401 155C244 165 109 139 0 118V0Z' fill='%23d9b783'/%3E%3Cpath d='M0 118C109 139 244 165 401 155C607 142 751 97 951 77C1118 60 1268 73 1440 104' fill='none' stroke='%23714b4b' stroke-width='2.1'/%3E%3C/svg%3E");
}

.wave-quote-bottom {
  height: clamp(88px, 10vw, 150px);
  background-image: url("data:image/svg+xml,%3Csvg width='1440' height='150' viewBox='0 0 1440 150' preserveAspectRatio='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 98C170 116 300 126 470 120C690 104 860 50 1058 38C1220 36 1340 56 1440 78V150H0V98Z' fill='%2327120f'/%3E%3Cpath d='M0 98C170 116 300 126 470 120C690 104 860 50 1058 38C1220 36 1340 56 1440 78' fill='none' stroke='%23714b4b' stroke-width='2'/%3E%3C/svg%3E");
}

.wave-listen-bottom {
  height: clamp(88px, 10vw, 150px);
  background-image: url("data:image/svg+xml,%3Csvg width='1440' height='150' viewBox='0 0 1440 150' preserveAspectRatio='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 52C170 80 300 88 454 78C705 62 916 -2 1176 12C1282 18 1370 36 1440 48V150H0V52Z' fill='%23f3ede5'/%3E%3Cpath d='M0 52C170 80 300 88 454 78C705 62 916 -2 1176 12C1282 18 1370 36 1440 48' fill='none' stroke='%23d9b783' stroke-width='2.2'/%3E%3C/svg%3E");
}

.services {
  min-height: clamp(680px, 88svh, 900px);
  display: grid;
  align-items: start;
  padding: clamp(72px, 7vw, 106px) 0 clamp(92px, 10vw, 136px);
}

.section-video, .listen-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .24;
}

.services .section-video {
  opacity: 1;
  filter: saturate(.95) contrast(1.06);
}

.services::after, .listen::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20, 7, 6, .82), rgba(20, 7, 6, .56));
  pointer-events: none;
  z-index: 1;
}

.services::after {
  background:
    linear-gradient(180deg, #27120f 0, #27120f clamp(62px, 7vw, 112px), rgba(39, 18, 15, .74) clamp(112px, 12vw, 190px), rgba(39, 18, 15, 0) clamp(210px, 22vw, 330px)),
    radial-gradient(circle at 54% 38%, rgba(20, 7, 6, .10), rgba(20, 7, 6, .44) 50%, rgba(20, 7, 6, .68) 100%),
    linear-gradient(90deg, rgba(75, 30, 8, .62), rgba(22, 9, 6, .18) 46%, rgba(31, 11, 6, .62));
}

.services .section-inner {
  z-index: 2;
  width: min(1320px, calc(100% - 48px));
}

.services h2, .services .section-copy {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.services h2 {
  width: min(760px, 100%);
  margin-bottom: 24px;
  font-size: clamp(2.7rem, 4.2vw, 4.35rem);
  line-height: .98;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 9px;
  text-decoration-color: rgba(217, 183, 131, .9);

}

.services .section-copy {
  width: min(1420px, 100%);
  color: rgba(255, 250, 243, .92);
  margin-bottom: 0;
  font-size: clamp(1rem, 1.18vw, 1.2rem);
  font-weight: 700;
  line-height: 1.45;
  text-shadow: 0 2px 18px rgba(26, 16, 8, .72);
}

.service-grid {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(74px, 10vw, 150px) clamp(78px, 11vw, 168px);
  margin-top: clamp(42px, 7vw, 82px);
  padding: 18px 10px;
  background: transparent;
  border: 0;
}

.service-grid::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: repeating-linear-gradient(
    0deg,
    transparent 0 31px,
    rgba(255, 250, 243, .13) 32px,
    transparent 33px 64px
  );
  opacity: .42;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  pointer-events: none;
}

.service-grid article {
  position: relative;
  min-height: 170px;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: clamp(16px, 2vw, 26px);
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  text-align: center;
  text-shadow: 0 3px 16px rgba(26, 16, 8, .8);
  transition: transform .24s ease;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.service-grid article::before,
.service-grid article::after {
  content: "";
  position: absolute;
  background: rgba(217, 183, 131, .55);
  pointer-events: none;
}

.service-grid article::before {
  top: -9px;
  left: 50%;
  width: 1px;
  height: 18px;
  transform: translateX(-50%);
}

.service-grid article::after {
  right: 14px;
  bottom: 12px;
  width: 22px;
  height: 1px;
}

.service-grid article:hover,
.service-grid article:focus-within {
  transform: translateY(-3px);
}

.service-grid span {
  font-family: var(--serif);
  font-size: clamp(2.35rem, 3.2vw, 4rem);
  font-weight: 400;
  line-height: 1;
  color: #fffaf3;
}

.service-grid h3 {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1.7vw, 1.9rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.1;
  color: #fffaf3;
}

.service-grid a {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 1.45vw, 1.55rem);
  letter-spacing: 0;
  text-transform: none;
  text-decoration: none;
  color: rgba(255, 250, 243, .94);
  border-bottom: 1px solid rgba(255, 250, 243, .68);
  line-height: 1.1;
}

.collaborations {
  position: relative;
  overflow: hidden;
  padding: clamp(42px, 5.4vw, 72px) 0 clamp(34px, 4vw, 58px);
  background: #17100f;
  color: var(--white);
}

.collab-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12, 8, 8, .72), rgba(24, 12, 10, .56) 42%, rgba(12, 8, 8, .82)),

    url("assets/images/collaborations-background.jpg") center / cover,
    linear-gradient(105deg, transparent 0 14%, rgba(217, 183, 131, .11) 22%, transparent 34% 100%),
    linear-gradient(74deg, transparent 0 48%, rgba(120, 160, 190, .12) 58%, transparent 72% 100%),
    radial-gradient(ellipse at 50% 18%, rgba(217, 183, 131, .24), transparent 52%),
    #17100f;
}

.collab-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 250, 243, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 250, 243, .025) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: .22;
  mask-image: linear-gradient(180deg, transparent, #000 20%, #000 78%, transparent);
}

.collaborations-inner {
  display: grid;
  gap: clamp(118px, 12vw, 178px);
}

.collaborations-intro {
  width: min(1060px, 100%);
  margin: 0 auto;
  text-align: center;
}

.collaborations h2 {
  margin-bottom: 22px;
  font-size: clamp(2.9rem, 5.2vw, 5.8rem);
  line-height: .96;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 9px;
  text-decoration-color: rgba(217, 183, 131, .9);
}

.collaborations p {
  margin: 0 auto;
  color: rgba(255, 250, 243, .9);
  font-size: clamp(.92rem, 1.02vw, 1.08rem);
  font-weight: 700;
  line-height: 1.42;
  text-shadow: 0 2px 18px rgba(0, 0, 0, .56);
}

.name-cloud {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.name-cloud span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 9px 14px;
  border: 1px solid rgba(217, 183, 131, .35);
  background: rgba(255, 250, 243, .09);
  backdrop-filter: blur(7px);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 250, 243, .92);
}

.listen {
  position: relative;
  overflow: hidden;
  padding: clamp(92px, 11vw, 150px) 0 clamp(150px, 15vw, 220px);
  background: #22001f;
  color: var(--white);
}

.listen::after {
  background:
    radial-gradient(circle at 31% 55%, rgba(231, 56, 225, .38), transparent 18%),
    radial-gradient(ellipse at 24% 28%, rgba(132, 28, 132, .42), transparent 48%),
    linear-gradient(90deg, rgba(18, 0, 16, .84), rgba(36, 0, 34, .72) 45%, rgba(18, 0, 16, .86));
}

.listen-video {
    z-index: 0; opacity: .42;
  filter: saturate(1.1) contrast(1.08) hue-rotate(22deg);
}

.listen-layout {
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(320px, .86fr) minmax(420px, .92fr);
  gap: clamp(72px, 10vw, 150px);
  align-items: center;
}

.listen-copy {
  display: grid;
  justify-items: start;
  align-content: center;
  gap: clamp(28px, 4vw, 48px);
}

.listen-portrait {
  width: clamp(165px, 18vw, 255px);
  aspect-ratio: 1;
  margin: 0 0 clamp(82px, 10vw, 128px) clamp(34px, 6vw, 78px);
  overflow: hidden;
  border-radius: 50%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .34);
  cursor: zoom-in;
}

.listen-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform .42s cubic-bezier(.2, .75, .25, 1), filter .42s ease;
  will-change: transform;
}

.listen-portrait:hover img,
.listen-portrait:focus-visible img,
.listen-portrait.is-zoomed img {
  transform: scale(1.12);
  filter: saturate(1.08) contrast(1.03);
}

.listen-portrait.is-zoomed {
  cursor: zoom-out;
}

.listen-cta {
  position: relative;
  z-index: 0;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(380px, 100%);
  min-height: 78px;
  margin-left: 0;
  overflow: hidden;
  border: 2px solid rgba(217, 183, 131, .96);
  border-radius: 999px;
  color: rgba(217, 183, 131, .98);
  font-family: var(--sans);
  font-size: clamp(1.35rem, 1.7vw, 1.65rem);
  font-weight: 400;
  letter-spacing: 0;
  text-decoration: none;
  transition: color .24s ease, transform .18s ease, border-color .24s ease;
}

.listen-cta::before {
  content: "";
  position: absolute;
  inset: 5px;
  z-index: -1;
  border-radius: inherit;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .28s ease;
}

.listen-cta:hover,
.listen-cta:focus-visible,
.listen-cta:active {
  color: var(--black);
  border-color: var(--accent);
  transform: translateY(-1px);
}

.listen-cta:hover::before,
.listen-cta:focus-visible::before,
.listen-cta:active::before {
  transform: scaleX(1);
}

.listen-copy p {
  width: min(590px, 100%);
  margin: 0;
  color: rgba(255, 250, 243, .92);
  font-size: clamp(1rem, 1.12vw, 1.2rem);
  font-weight: 700;
  line-height: 1.42;
  text-shadow: 0 2px 16px rgba(0, 0, 0, .48);
}

.players {
  display: grid;
  gap: clamp(26px, 3vw, 36px);
  margin: 0;
}

.players video {
  width: min(510px, 100%);
  min-height: clamp(172px, 18vw, 286px);
  background: rgba(26, 16, 8, .54);
  border: 0;
  box-shadow: 0 22px 66px rgba(0, 0, 0, .34);
  object-fit: cover;
  transform: scale(1);
  transition: transform .42s cubic-bezier(.2, .75, .25, 1), filter .42s ease;
  will-change: transform;
}

.closing { padding: clamp(84px, 11vw, 140px) 0; }
.closing h2 { font-size: clamp(2.3rem, 6vw, 5.8rem); }

.site-footer {
  background: var(--white);
  color: var(--black);
  padding: 38px clamp(20px, 4vw, 54px);
}

.footer-inner {
  display: flex;
  justify-content: center;
  gap: 24px;
  align-items: center;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.footer-inner p { display: none; margin: 0; }
.site-footer .social-links { gap: 0; color: var(--black); }
.site-footer .social-links a { width: 42px; height: 42px; }
.site-footer .social-links svg { width: 40px; height: 40px; }
.site-footer a:hover { color: var(--ink); }

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: auto auto;
    padding: 12px 16px;
    background: var(--white);
  }

  .menu-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 18px;
    left: 18px;
    display: none;
    padding: 20px;
    background: var(--white);
    border: 1px solid rgba(113, 75, 75, .18);
    box-shadow: var(--shadow);
    color: var(--black);
  }

  .site-nav.is-open { display: grid; }
  .header-social { display: none; }
  .hero { min-height: 92svh; }

  .hero-content {
    position: absolute;
    right: 50%;
    top: 47%;
    transform: translateX(50%);
    width: min(620px, calc(100% - 40px));
    margin: 0;
    text-align: center;
  }

  .hero .button-primary {
    position: static;
    margin-top: clamp(140px, 20vh, 190px);
    transform: none;
  }

  .hero .button-primary:hover {
    transform: translateY(-2px);
  }

  .release-note {
    position: static;
    margin-top: 8px;
    text-align: center;
  }

  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .split, .listen-layout { grid-template-columns: 1fr; }

  .listen-layout {
    gap: 48px;
  }

  .listen-copy {
    justify-items: center;
    text-align: left;
  }

  .listen-portrait {
    margin: 0 auto 34px;
  }

.listen-cta {
    width: min(380px, 100%);
  }

  .players video {
    width: 100%;
  }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .brand img { max-height: 52px; }
  .hero { padding-top: 118px; place-items: end center; }
  .hero-media { background-position: 42% center; }
  .hero h1 { font-size: clamp(2rem, 11vw, 3.2rem); }
  .hero .button-primary { min-width: min(270px, 78vw); }
  .service-grid { grid-template-columns: 1fr; }
  .service-grid article { min-height: 170px; }
  .footer-inner { display: grid; }
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

body.about-page {
  background: #000;
  color: #fffaf3;
}

body.about-page .site-header {
  z-index: 40;
  background: var(--white);
  border-bottom: 1px solid rgba(113, 75, 75, .18);
  box-shadow: 0 10px 26px rgba(26, 16, 8, .08);
  color: var(--black);
}

body.about-page .site-nav,
body.about-page .social-links,
body.about-page .menu-toggle {
  color: var(--black);
}

body.about-page .site-nav a[aria-current="page"] {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.about-hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: clamp(70px, 8vw, 98px) clamp(22px, 7vw, 120px) clamp(74px, 8vw, 110px);
  background: #000;
}

.about-bg-video,
.about-bg-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.about-bg-video {
  object-fit: cover;
  transform: scale(1);
  transition: transform .42s cubic-bezier(.2, .75, .25, 1), filter .42s ease;
  will-change: transform;
  opacity: .86;
  filter: contrast(1.12) saturate(.86) brightness(.74);
}

.about-bg-fallback {
  background:
    radial-gradient(ellipse at 72% 12%, rgba(255, 250, 243, .32), transparent 18%),
    radial-gradient(ellipse at 44% 64%, rgba(255, 250, 243, .12), transparent 36%),
    linear-gradient(90deg, rgba(0, 0, 0, .82), rgba(0, 0, 0, .24) 52%, rgba(0, 0, 0, .74));
  pointer-events: none;
}

.about-biography {
  position: relative;
  z-index: 2;
  width: min(1120px, calc(100% - 360px));
  margin: clamp(28px, 4vw, 54px) auto 0 clamp(56px, 7vw, 118px);
  text-align: right;
  color: rgba(255, 250, 243, .96);
  text-shadow: 0 2px 10px rgba(0, 0, 0, .78);
}

.about-biography p {
  margin: 0 auto;
  font-size: clamp(.86rem, .94vw, 1.08rem);
  font-weight: 700;
  line-height: 1.34;
}

.about-biography p + p {
  margin-top: clamp(34px, 4.1vw, 58px);
}
.about-biography a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.about-home-sign {
  position: absolute;
  z-index: 3;
  right: clamp(52px, 7vw, 118px);
  bottom: clamp(82px, 7vw, 112px);
  display: block;
  width: clamp(160px, 11vw, 210px);
  transform: rotate(1.5deg);
  transition: transform .22s ease, filter .22s ease;
}

.about-home-sign:hover,
.about-home-sign:focus-visible,
.about-home-sign:active {
  transform: rotate(1.5deg) scale(1.13);
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, .52));
}

.about-home-sign img {
  width: 100%;
  height: auto;
}

@media (max-width: 900px) {
  body.about-page .site-header {
    background: var(--white);
  }

  body.about-page .site-nav {
    background: var(--white);
    color: var(--black);
  }

  .about-hero {
    align-items: start;
    padding-top: 130px;
  }

  .about-biography {
    width: min(720px, calc(100% - 36px));
    margin: 70px auto 0;
  }

  .about-home-sign {
    right: 50%;
    bottom: 88px;
    width: clamp(96px, 26vw, 138px);
    transform: translateX(50%) rotate(1.5deg);
  }

  .about-home-sign:hover,
  .about-home-sign:focus-visible,
  .about-home-sign:active {
    transform: translateX(50%) rotate(1.5deg) scale(1.12);
  }
}
/* Press page */
body.press-page { background: #000; color: var(--white); }
body.press-page .site-header { z-index: 40; background: var(--white); border-bottom: 1px solid rgba(113, 75, 75, .18); box-shadow: 0 10px 26px rgba(26, 16, 8, .08); color: var(--black); }
body.press-page .site-nav, body.press-page .social-links, body.press-page .menu-toggle { color: var(--black); }
body.press-page .site-nav a[aria-current="page"] { text-decoration: underline; text-underline-offset: 4px; }
.press-hero { position: relative; min-height: calc(100svh - 86px); overflow: hidden; display: grid; place-items: center; isolation: isolate; background: #080506; }
.press-bg-video, .press-bg-fallback { position: absolute; inset: 0; width: 100%; height: 100%; }
.press-bg-video { z-index: -2; object-fit: cover; opacity: .84; filter: contrast(1.08) saturate(.78) brightness(.62); }
.press-bg-fallback { z-index: -1; background: linear-gradient(90deg, rgba(10, 4, 4, .76), rgba(10, 4, 4, .18) 52%, rgba(10, 4, 4, .66)); }
.press-content { width: min(680px, calc(100% - 40px)); margin-top: 5vh; text-align: center; color: var(--white); text-shadow: 0 2px 12px rgba(0, 0, 0, .7); }
.press-kicker { margin: 0 0 8px; color: var(--accent); font-family: var(--sans); font-size: 12px; letter-spacing: .3em; text-transform: uppercase; }
.press-content h1 { margin: 0; font-family: var(--display); font-size: clamp(2.4rem, 6vw, 5.4rem); font-weight: 400; }
.press-intro { max-width: 600px; margin: 20px auto 28px; font-size: clamp(1rem, 1.5vw, 1.28rem); line-height: 1.55; }
.press-contact { display: inline-block; color: var(--white); border-bottom: 1px solid var(--accent); padding-bottom: 5px; text-decoration: none; }
@media (max-width: 680px) { .press-hero { min-height: calc(100svh - 72px); } .press-content h1 { font-size: clamp(2.4rem, 13vw, 4rem); } }

/* Press article grid */
.press-hero {
  min-height: calc(100svh - 86px);
  display: block;
  padding: clamp(34px, 4vw, 58px) clamp(24px, 3.2vw, 48px) clamp(48px, 5vw, 72px);
}
.press-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: clamp(72px, 9vw, 142px) clamp(48px, 5vw, 86px);
  min-height: calc(100svh - 190px);
  align-content: space-between;
}
.press-item {
  color: rgba(255, 250, 243, .94);
  text-shadow: 0 2px 9px rgba(0, 0, 0, .6);
}
.press-item h2 {
  margin: 0 0 26px;
  font-family: var(--display);
  font-size: clamp(1.65rem, 2.55vw, 3.1rem);
  font-weight: 400;
  line-height: 1.04;
}
.press-item p {
  margin: 0 0 24px;
  font-size: clamp(.9rem, 1.08vw, 1.18rem);
  font-weight: 700;
  line-height: 1.45;
}
.press-item .press-source {
  margin-bottom: 24px;
  font-size: clamp(.78rem, .92vw, 1rem);
}
.press-item a {
  color: inherit;
  font-size: clamp(.82rem, .98vw, 1.05rem);
  text-decoration: none;
}
.press-item a:hover,
.press-item a:focus-visible {
  color: var(--accent);
}
@media (max-width: 900px) {
  .press-hero {
    min-height: auto;
    padding: 34px 24px 58px;
  }
  .press-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: none;
    gap: 56px 30px;
    min-height: auto;
  }
}
@media (max-width: 620px) {
  .press-grid { grid-template-columns: 1fr; gap: 44px; }
  .press-item h2 { font-size: 2rem; }
}

/* Press layout refinement */
body.press-page .site-nav a[aria-current="page"] { text-decoration: underline; text-underline-offset: 4px; }
.press-hero {
  min-height: calc(100svh - 86px);
  display: block;
  padding: clamp(76px, 8vw, 104px) clamp(24px, 3.2vw, 48px) clamp(48px, 5vw, 72px);
}
.press-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: clamp(70px, 8vw, 118px) clamp(42px, 4.8vw, 78px);
  min-height: calc(100svh - 190px);
  align-content: space-between;
}
.press-item {
  min-width: 0;
  color: rgba(255, 250, 243, .94);
  text-shadow: 0 2px 9px rgba(0, 0, 0, .55);
}
.press-item h2 {
  margin: 0 0 24px;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.05vw, 2.45rem);
  font-weight: 400;
  line-height: 1.08;
}
.press-item p {
  margin: 0 0 20px;
  font-family: var(--serif);
  font-size: clamp(.78rem, .94vw, 1rem);
  font-weight: 400;
  line-height: 1.42;
}
.press-item .press-source {
  margin-bottom: 22px;
  font-size: clamp(.72rem, .82vw, .9rem);
  font-weight: 700;
}
.press-item a {
  color: inherit;
  font-family: var(--serif);
  font-size: clamp(.72rem, .86vw, .94rem);
  text-decoration: none;
}
.press-item a:hover,
.press-item a:focus-visible { color: var(--accent); }
@media (max-width: 900px) {
  .press-hero { min-height: auto; padding: 86px 24px 58px; }
  .press-grid { grid-template-columns: 1fr 1fr; grid-template-rows: none; gap: 56px 30px; min-height: auto; }
}
@media (max-width: 620px) {
  .press-grid { grid-template-columns: 1fr; gap: 44px; }
  .press-item h2 { font-size: 1.85rem; }
}

/* About reference alignment */
.about-biography p {
  font-size: clamp(.92rem, 1.04vw, 1.16rem);
  line-height: 1.34;
}
.about-home-sign {
  right: clamp(42px, 7vw, 118px);
  bottom: clamp(78px, 7vw, 112px);
  width: clamp(218px, 15vw, 292px);
}
@media (max-width: 900px) {
  .about-biography p { font-size: clamp(.9rem, 2.15vw, 1.05rem); }
  .about-home-sign {
    right: 50%;
    bottom: 88px;
    width: clamp(128px, 34vw, 190px);
  }
}

/* Contact enquiry dialog */
.contact-dialog {
  width: min(720px, calc(100% - 32px));
  max-width: none;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--black);
}
.contact-dialog::backdrop { background: rgba(26, 16, 8, .62); backdrop-filter: blur(4px); }
.contact-panel {
  position: relative;
  padding: clamp(28px, 5vw, 54px);
  background: var(--white);
  border: 1px solid rgba(113, 75, 75, .34);
  box-shadow: 0 24px 80px rgba(26, 16, 8, .3);
}
.contact-close {
  position: absolute;
  top: 18px;
  right: 22px;
  width: 32px;
  height: 32px;
  border: 0;
  background: transparent;
  color: var(--black);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}
.contact-eyebrow {
  margin: 0 0 8px;
  color: var(--dark-accent);
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.contact-panel h2 {
  margin: 0 0 28px;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  font-weight: 400;
  line-height: 1.05;
}
.contact-form {
  display: grid;
  gap: 18px;
}
.contact-form label,
.date-range legend {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 15px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 12px 13px;
  border: 1px solid rgba(113, 75, 75, .52);
  border-radius: 3px;
  background: rgba(229, 220, 206, .52);
  color: var(--black);
  font: inherit;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(217, 183, 131, .8);
  outline-offset: 2px;
}
.contact-name-row,
.contact-details-row,
.date-range {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.date-range {
  margin: 0;
  padding: 0;
  border: 0;
}
.date-range legend { grid-column: 1 / -1; }
.contact-form textarea { resize: vertical; min-height: 118px; }
.contact-form .button-primary {
  justify-self: stretch;
  border: 0;
  background: var(--dark-accent);
  color: var(--white);
  cursor: pointer;
}
.contact-form .button-primary:hover { background: var(--black); }
@media (max-width: 620px) {
  .contact-name-row,
  .contact-details-row,
  .date-range { grid-template-columns: 1fr; }
  .contact-panel { padding: 30px 20px 24px; }
}

/* Quote reference alignment */
.quote .section-inner {
  width: 100%;
  transform: translateY(9%);
}
.quote blockquote {
  width: min(920px, calc(100% - 30px));
  font-size: clamp(1.55rem, 4.45vw, 4.1rem);
  line-height: 1.06;
}
@media (max-width: 680px) {
  .quote .section-inner { transform: translateY(6%); }
  .quote blockquote {
    width: min(100% - 28px, 560px);
    font-size: clamp(1.65rem, 8vw, 2.6rem);
  }
}

/* Quote single-line reference match */
.quote .section-inner {
  width: 100%;
  transform: translateY(9%);
}
.quote blockquote {
  width: calc(100% - 28px);
  max-width: none;
  margin: 0 auto 28px;
  white-space: nowrap;
  font-size: clamp(1.55rem, 3.75vw, 3.7rem);
  line-height: 1;
  letter-spacing: 0;
}
.quote a {
  display: table;
  margin: 0 auto;
}
@media (max-width: 680px) {
  .quote .section-inner { transform: translateY(6%); }
  .quote blockquote {
    width: calc(100% - 18px);
    font-size: clamp(1.1rem, 5.7vw, 2.3rem);
  }
}

/* Quote final position */
.quote .section-inner {
  transform: translate(-2.5%, 18%);
}
@media (max-width: 680px) {
  .quote .section-inner { transform: translate(-1%, 12%); }
}

/* Quote chin alignment */
.quote .section-inner {
  transform: translate(-2.5%, 31%);
}
@media (max-width: 680px) {
  .quote .section-inner { transform: translate(-1%, 22%); }
}

/* Quote mouth clearance */
.quote .section-inner {
  transform: translate(-2.5%, 46%);
}
@media (max-width: 680px) {
  .quote .section-inner { transform: translate(-1%, 34%); }
}

/* Quote final mouth clearance */
.quote .section-inner {
  transform: translate(-2.5%, 52%);
}
@media (max-width: 680px) {
  .quote .section-inner { transform: translate(-1%, 39%); }
}

/* Collaborations light editorial background */
.collaborations {
  background: var(--white);
  color: var(--black);
}
.collab-bg {
  background-color: var(--white);
  background-image:
    linear-gradient(116deg, transparent 0 47%, rgba(113, 75, 75, .045) 47.1%, transparent 47.25%),
    linear-gradient(64deg, transparent 0 58%, rgba(217, 183, 131, .12) 58.1%, transparent 58.25%),
    repeating-linear-gradient(0deg, transparent 0 46px, rgba(113, 75, 75, .045) 47px, transparent 48px);
  background-size: 100% 100%, 100% 100%, 100% 100%;
}
.collab-bg::after {
  background-image:
    linear-gradient(rgba(113, 75, 75, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(113, 75, 75, .035) 1px, transparent 1px);
  background-size: 52px 52px;
  opacity: .45;
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 82%, transparent);
}
.collaborations h2 {
  color: var(--black);
  text-shadow: none;
  text-decoration-color: var(--accent);
}
.collaborations p {
  color: rgba(113, 75, 75, .94);
  text-shadow: none;
}
.name-cloud span {
  border-color: rgba(113, 75, 75, .28);
  background: rgba(255, 250, 243, .38);
  color: var(--black);
  box-shadow: 0 8px 24px rgba(113, 75, 75, .06);
}

/* Compact contact form */
.contact-dialog { max-height: calc(100vh - 24px); overflow: visible; }
.contact-panel { padding: 24px 34px 26px; }
.contact-eyebrow { margin-bottom: 4px; font-size: 10px; }
.contact-panel h2 { margin-bottom: 16px; font-size: clamp(1.7rem, 3.6vw, 2.8rem); }
.contact-form { gap: 11px; }
.contact-form label, .date-range legend { gap: 4px; font-size: 13px; }
.contact-form input, .contact-form select, .contact-form textarea { padding: 8px 10px; }
.contact-name-row, .contact-details-row, .date-range { gap: 10px; }
.contact-form textarea { min-height: 72px; height: 72px; }
.contact-form .button-primary { min-height: 40px; padding: 9px 20px; }
@media (max-width: 620px) {
  .contact-panel { padding: 24px 18px 20px; }
  .contact-form { gap: 10px; }
}

/* Reduce quote band to bring Services into view */
.quote { min-height: 80svh; }
@media (max-width: 680px) {
  .quote { min-height: 78svh; }
}

/* Keep a non-playing background frame hidden until the real video starts. */
.listen-video {
  opacity: 0;
  transition: opacity .35s ease;
}
.listen.is-video-playing .listen-video {
  opacity: .42;
}
/* Quote proportions matched to the supplied reference. */
.quote {
  min-height: 68svh;
}
.wave-quote-top {
  height: clamp(120px, 13vw, 205px);
}
.wave-quote-bottom {
  height: clamp(88px, 10vw, 150px);
}
.quote .section-inner {
  transform: translate(-2.5%, 60%);
}
@media (max-width: 680px) {
  .quote {
    min-height: 70svh;
  }
  .quote .section-inner {
    transform: translate(-1%, 44%);
  }
}
/* Gallery page */
body.gallery-page {
  background: linear-gradient(rgba(243, 237, 229, .9), rgba(243, 237, 229, .9)), repeating-linear-gradient(115deg, rgba(113, 75, 75, .045) 0 1px, transparent 1px 22px);
  color: var(--ink);
}
.gallery-main { min-height: 100vh; padding: clamp(112px, 12vw, 160px) clamp(20px, 4vw, 64px) clamp(88px, 10vw, 140px); position: relative; overflow: hidden; }
.gallery-main::before { content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .65; background: radial-gradient(circle at 12% 8%, rgba(217, 183, 131, .17), transparent 26%), radial-gradient(circle at 86% 84%, rgba(154, 81, 81, .08), transparent 30%); }
.gallery-heading, .gallery-grid { position: relative; z-index: 1; max-width: 1480px; margin-inline: auto; }
.gallery-heading { margin-bottom: clamp(32px, 5vw, 72px); text-align: center; }
.gallery-heading h1 { margin: 0; color: var(--ink); font-size: clamp(3rem, 6vw, 6.25rem); font-weight: 400; line-height: .95; }
.gallery-heading h1::after { content: ""; display: block; width: 84px; height: 2px; margin: 14px auto 0; background: var(--accent); }
.gallery-kicker { margin: 0 0 12px; color: var(--muted); font-family: Inter, Arial, sans-serif; font-size: .7rem; letter-spacing: .24em; text-transform: uppercase; }
.gallery-intro { max-width: 560px; margin: 22px auto 0; color: var(--black); font-size: 1.05rem; line-height: 1.55; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(14px, 2vw, 30px); }
.gallery-item { position: relative; display: block; width: 100%; aspect-ratio: 1.15 / 1; padding: 0; overflow: hidden; border: 1px solid rgba(113, 75, 75, .24); border-radius: 2px; background: #e5d5c1; cursor: zoom-in; box-shadow: 0 12px 28px rgba(26, 16, 8, .09); }
.gallery-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(135deg, transparent 45%, rgba(255, 250, 243, .2)); opacity: 0; transition: opacity .25s ease; pointer-events: none; }
.gallery-item img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform .55s cubic-bezier(.2, .75, .25, 1), filter .35s ease; }
.gallery-item:hover img, .gallery-item:focus-visible img { transform: scale(1.045); filter: saturate(1.05) contrast(1.02); }
.gallery-item:hover::after, .gallery-item:focus-visible::after { opacity: 1; }
.gallery-item:focus-visible { outline: 2px solid var(--dark-accent); outline-offset: 4px; }
.gallery-dialog { width: min(94vw, 1240px); max-width: none; padding: 0; border: 0; background: transparent; color: var(--white); }
.gallery-dialog::backdrop { background: rgba(20, 12, 10, .82); backdrop-filter: blur(6px); }
.gallery-viewer { position: relative; display: grid; grid-template-columns: 48px minmax(0, 1fr) 48px; align-items: center; gap: clamp(8px, 2vw, 24px); min-height: min(82vh, 820px); padding: clamp(18px, 3vw, 38px); border: 1px solid rgba(229, 220, 206, .28); background: rgba(26, 16, 8, .92); }
.gallery-viewer figure { display: grid; place-items: center; gap: 14px; min-width: 0; margin: 0; }
.gallery-viewer img { display: block; width: auto; max-width: 100%; height: min(72vh, 720px); object-fit: contain; }
.gallery-viewer figcaption { color: rgba(243, 237, 229, .72); font-family: Inter, Arial, sans-serif; font-size: .7rem; letter-spacing: .18em; text-transform: uppercase; }
.gallery-close, .gallery-arrow { display: grid; place-items: center; border: 1px solid rgba(229, 220, 206, .45); color: var(--white); background: rgba(113, 75, 75, .62); cursor: pointer; transition: background .2s ease, transform .2s ease; }
.gallery-close:hover, .gallery-arrow:hover, .gallery-close:focus-visible, .gallery-arrow:focus-visible { background: var(--dark-accent); transform: translateY(-1px); }
.gallery-close { position: absolute; top: 12px; right: 12px; width: 34px; height: 34px; border-radius: 50%; font-size: 1.4rem; line-height: 1; }
.gallery-arrow { width: 46px; height: 58px; border-radius: 2px; font-size: 2rem; line-height: 1; }
@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } .gallery-main { padding-inline: clamp(16px, 4vw, 34px); } }
@media (max-width: 620px) { .gallery-grid { grid-template-columns: 1fr; gap: 16px; } .gallery-item { aspect-ratio: 1.25 / 1; } .gallery-viewer { grid-template-columns: 38px minmax(0, 1fr) 38px; gap: 6px; padding: 34px 8px 18px; } .gallery-arrow { width: 36px; height: 48px; } .gallery-viewer img { height: 66vh; } }

.gallery-main { padding-top: clamp(82px, 8vw, 112px); }
.gallery-heading { display: none; }


/* Shared editorial body copy */
.about-page .about-copy p,
.listen-copy > p,
.collaborations-intro > p,
.services .section-copy {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: 0;
}

/* Larger contained header mark */
.site-header { padding-top: 6px; padding-bottom: 6px; }
.brand { width: min(132px, 20vw); height: 64px; }
.brand img { width: auto; max-width: 100%; max-height: 64px; }
@media (max-width: 900px) {
  .site-header { padding-top: 6px; padding-bottom: 6px; }
  .brand { width: min(126px, 28vw); height: 58px; }
  .brand img { max-height: 58px; }
}

/* Full-width closing statement */
.closing .section-inner.narrow { width: min(1500px, calc(100% - 56px)); }
.closing h2 { max-width: none; font-size: clamp(2rem, 5.15vw, 5.2rem); }
@media (max-width: 680px) {
  .closing .section-inner.narrow { width: calc(100% - 32px); }
  .closing h2 { font-size: clamp(2.05rem, 10vw, 3.4rem); }
}

/* About band measured to the reference frame; wave geometry remains unchanged */
.about {
  height: clamp(620px, 46.25vw, 692px);
  min-height: 0;
  box-sizing: border-box;
}
@media (max-width: 680px) {
  .about { height: auto; min-height: 610px; }
}

/* Tighter desktop height for the second gold band */
.about { height: clamp(580px, 42.1vw, 630px); }
@media (max-width: 680px) { .about { height: auto; min-height: 590px; } }

/* Footer legal line */
.footer-inner { flex-wrap: wrap; row-gap: 10px; }
.footer-legal { width: 100%; display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 8px 22px; color: rgba(113, 75, 75, .82); font-family: var(--serif); font-size: .82rem; line-height: 1.4; letter-spacing: 0; text-transform: none; }
.footer-legal a { text-decoration: underline; text-underline-offset: 3px; }
.footer-legal a:hover { color: var(--ink); }

.privacy-page { background: var(--white); color: var(--ink); }
.privacy-main { min-height: 100vh; padding: clamp(132px, 13vw, 190px) 20px 110px; }
.privacy-inner { width: min(860px, 100%); margin: 0 auto; }
.privacy-inner h1 { margin: 0 0 14px; font-family: var(--display); font-size: clamp(2.8rem, 6vw, 5.2rem); font-weight: 400; line-height: 1; }
.privacy-updated { margin: 0 0 52px; color: var(--muted); font-family: Inter, Arial, sans-serif; font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; }
.privacy-inner h2 { margin: 38px 0 8px; font-size: 1.35rem; font-weight: 400; line-height: 1.2; }
.privacy-inner p, .privacy-inner li { font-size: 1.02rem; line-height: 1.6; }
.privacy-inner ul { padding-left: 1.25rem; }
.privacy-inner a { color: var(--black); text-underline-offset: 3px; }
@media (max-width: 680px) { .footer-legal { gap: 5px 14px; font-size: .76rem; } .privacy-main { padding-top: 112px; } }

.contact-privacy-note { margin: -8px 0 0; color: rgba(113, 75, 75, .78); font-family: var(--serif); font-size: .78rem; line-height: 1.4; }
.contact-privacy-note a { text-underline-offset: 3px; }



/* Privacy page credit */
.privacy-credit { margin-top: 48px; color: var(--muted); font-size: .88rem; }
.privacy-credit a { color: var(--ink); }

/* Custom enquiry date picker */
.date-picker {
  position: relative;
  z-index: 4;
  margin-top: -5px;
  padding: 14px 18px 12px;
  border: 1px solid rgba(113, 75, 75, .24);
  background: #fbf8f2;
  color: var(--ink);
  box-shadow: 0 14px 30px rgba(26, 16, 8, .12);
}
.date-picker[hidden] { display: none; }
.date-picker-head { display: grid; grid-template-columns: 34px 1fr 34px; align-items: center; gap: 10px; text-align: center; }
.date-picker-head strong { font-family: var(--serif); font-size: 1.02rem; font-weight: 400; }
.date-nav, .date-picker-actions button { border: 1px solid rgba(113, 75, 75, .2); background: transparent; color: var(--ink); cursor: pointer; }
.date-nav { width: 34px; height: 30px; font-size: 1rem; }
.date-nav:hover, .date-picker-actions button:hover { background: rgba(217, 183, 131, .22); }
.date-weekdays, .date-grid { display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); }
.date-weekdays { margin-top: 16px; color: var(--muted); font-family: Inter, Arial, sans-serif; font-size: .58rem; font-weight: 500; text-align: center; text-transform: uppercase; }
.date-grid { margin-top: 6px; }
.date-cell { position: relative; min-height: 36px; border: 0; background: transparent; color: var(--ink); cursor: pointer; font: inherit; }
.date-cell.is-empty, .date-cell.is-past { color: #cdd2d0; cursor: default; }
.date-cell.is-past:hover { background: transparent; }
.date-cell:not(.is-empty):not(.is-past):hover { background: rgba(217, 183, 131, .26); }
.date-cell.is-start, .date-cell.is-end { background: #193b2d; color: #fff; }
.date-cell.is-start { border-radius: 0; }
.date-cell.is-end { border-radius: 0; }
.date-cell.is-in-range { background: #dce6dc; color: var(--ink); }
.date-picker-actions { display: flex; justify-content: space-between; margin-top: 11px; padding-top: 10px; border-top: 1px solid rgba(113, 75, 75, .2); }
.date-picker-actions button { padding: 5px 11px; font-family: Inter, Arial, sans-serif; font-size: .65rem; letter-spacing: .08em; text-transform: uppercase; }
.date-display { cursor: pointer; }
.date-display::placeholder { color: var(--muted); opacity: 1; }
@media (max-width: 620px) {
  .date-picker { padding-inline: 12px; }
  .date-cell { min-height: 34px; }
}
/* Compact enquiry calendar */
.date-picker { padding: 9px 12px 8px; }
.date-picker-head { grid-template-columns: 28px 1fr 28px; gap: 7px; }
.date-picker-head strong { font-size: .9rem; }
.date-nav { width: 28px; height: 25px; font-size: .85rem; }
.date-weekdays { margin-top: 10px; font-size: .5rem; }
.date-grid { margin-top: 3px; }
.date-cell { min-height: 28px; font-size: .82rem; }
.date-picker-actions { margin-top: 6px; padding-top: 7px; }
.date-picker-actions button { padding: 4px 8px; font-size: .58rem; }
/* Final compact calendar and dialog motion */
.date-picker {
  width: min(360px, 100%);
  justify-self: center;
  box-sizing: border-box;
  padding: 7px 9px 6px;
}
.date-picker-head { grid-template-columns: 25px 1fr 25px; gap: 5px; }
.date-picker-head strong { font-size: .84rem; }
.date-nav { width: 25px; height: 23px; font-size: .78rem; }
.date-weekdays { margin-top: 7px; font-size: .46rem; }
.date-cell { min-height: 25px; font-size: .75rem; }
.date-picker-actions { margin-top: 4px; padding-top: 5px; }
.date-picker-actions button { padding: 3px 7px; font-size: .55rem; }

.contact-dialog {
  opacity: 0;
  transform: translateY(8px) scale(.985);
  transition: opacity .2s ease, transform .2s ease, overlay .2s allow-discrete, display .2s allow-discrete;
}
.contact-dialog[open] { opacity: 1; transform: none; }
.contact-dialog::backdrop { opacity: 0; transition: opacity .2s ease; }
.contact-dialog[open]::backdrop { opacity: 1; }
@starting-style {
  .contact-dialog[open] { opacity: 0; transform: translateY(8px) scale(.985); }
  .contact-dialog[open]::backdrop { opacity: 0; }
}
.contact-form select {
  appearance: none;
  -webkit-appearance: none;
  background-color: rgba(229, 220, 206, .72);
  background-image: linear-gradient(45deg, transparent 50%, rgba(113, 75, 75, .8) 50%), linear-gradient(135deg, rgba(113, 75, 75, .8) 50%, transparent 50%);
  background-position: calc(100% - 16px) 50%, calc(100% - 11px) 50%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}
/* Custom event select */
.custom-select { position: relative; }
.custom-select select { position: absolute; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.custom-select-trigger { position: relative; width: 100%; padding: 8px 34px 8px 10px; border: 1px solid rgba(113, 75, 75, .52); border-radius: 3px; background: rgba(229, 220, 206, .72); color: var(--muted); cursor: pointer; font: inherit; text-align: left; }
.custom-select-trigger::after { content: ""; position: absolute; top: 50%; right: 14px; width: 7px; height: 7px; border-right: 1px solid rgba(113, 75, 75, .8); border-bottom: 1px solid rgba(113, 75, 75, .8); transform: translateY(-65%) rotate(45deg); }
.custom-select-trigger.has-value { color: var(--black); }
.custom-select-trigger[aria-expanded="true"] { outline: 2px solid rgba(217, 183, 131, .8); outline-offset: 2px; }
.custom-select-menu { position: absolute; z-index: 10; top: calc(100% + 4px); left: 0; right: 0; padding: 4px; border: 1px solid rgba(113, 75, 75, .28); background: #fbf8f2; box-shadow: 0 12px 26px rgba(26, 16, 8, .16); }
.custom-select-menu[hidden] { display: none; }
.custom-select-menu button { display: block; width: 100%; padding: 8px 10px; border: 0; background: transparent; color: var(--black); cursor: pointer; font: inherit; text-align: left; }
.custom-select-menu button:hover, .custom-select-menu button:focus { background: rgba(217, 183, 131, .24); outline: 0; }
/* Services clean background */
.service-grid::before { display: none; }
.service-grid article::before,
.service-grid article::after { display: none; }
/* Light hero Listen button */
.hero .listen-cta {
  background: rgba(243, 237, 229, .94);
  color: var(--black);
  border: 1px solid rgba(217, 183, 131, .95);
  box-shadow: 0 8px 22px rgba(26, 16, 8, .12);
}
.hero .listen-cta::before { background: var(--accent); }
.hero .listen-cta:hover,
.hero .listen-cta:focus-visible { color: var(--black); border-color: var(--accent); }
/* Let quote particles cross into Services */
.quote { overflow: visible; }
.quote-notes-canvas {
  height: calc(100% + clamp(78px, 8vw, 128px));
  z-index: 8;
}
.services { position: relative; }
.services .section-inner { position: relative; }
/* Light home hero Listen button */
.hero .button-primary {
  background: rgba(243, 237, 229, .94);
  color: var(--black);
  border: 1px solid rgba(217, 183, 131, .95);
  box-shadow: 0 8px 22px rgba(26, 16, 8, .12);
}
.hero .button-primary:hover,
.hero .button-primary:focus-visible,
.hero .button-primary:active {
  background: var(--accent);
  color: var(--black);
  border-color: var(--accent);
}



/* Compact home About band; divider geometry stays unchanged */
.about {
  height: clamp(430px, 31.5vw, 470px);
  padding-top: clamp(42px, 4.5vw, 64px);
  padding-bottom: clamp(38px, 4vw, 58px);
}
@media (max-width: 680px) {
  .about {
    height: auto;
    min-height: 450px;
    padding-top: 44px;
    padding-bottom: 42px;
  }
}


/* Refined static texture for the home About band */
.about {
  background-color: #d7b77f;
  background-image:
    radial-gradient(circle at 42% 30%, rgba(255, 242, 211, .38), transparent 42%),
    repeating-linear-gradient(118deg, rgba(255, 248, 228, .055) 0, rgba(255, 248, 228, .055) 1px, transparent 1px, transparent 9px);
  background-blend-mode: screen, normal;
}




/* Contact section prepared for the new background video */
.closing {
  background: var(--white) !important;
  background-image: none !important;
}

/* Listen section prepared for the new background video */
.listen {
  background: var(--white) !important;
  background-image: none !important;
  color: var(--ink);
}
.listen-video {
  display: none !important;
}
.listen::after {
  display: none !important;
}
.listen-copy p {
  color: rgba(26, 16, 8, .76) !important;
  text-shadow: none !important;
}

/* Listen MP4 background */
.listen-video {
  display: block !important;
  opacity: .42 !important;
  z-index: 0;
}

/* Listen background at full original appearance */
.listen-video {
  opacity: 1 !important;
  filter: none !important;
}

/* Ensure the Listen video is rendered directly, without blend or inherited tint */
.listen {
  isolation: isolate;
}
.listen-video {
  mix-blend-mode: normal !important;
  opacity: 1 !important;
  filter: none !important;
}

/* Raise the collaborations cards by approximately 20 percent */
.collaborations-inner {
  gap: clamp(94px, 9.6vw, 142px);
}

/* Listen copy aligned with Services */
.listen-copy p {
  color: rgba(255, 250, 243, .92) !important;
  text-shadow: 0 2px 16px rgba(26, 16, 8, .72) !important;
}

/* Mobile header logo matches desktop mark */
@media (max-width: 900px) {
  .site-header .brand { width: 132px; height: 64px; }
  .site-header .brand img { width: auto; max-width: 100%; max-height: 64px; }
}


/* Final mobile header and About layout fixes */
.menu-icon { display: inline-grid; gap: 5px; width: 26px; }
.menu-icon i { display: block; width: 26px; height: 2px; background: currentColor; border-radius: 1px; }
@media (max-width: 900px) {
  .site-header .brand, .site-header .brand img { max-height: 64px; }
  .site-header .brand { width: 132px; height: 64px; }
  .menu-toggle { width: 44px; height: 40px; padding: 0; align-items: center; justify-content: center; }
  .about-hero { display: flex; flex-direction: column; justify-content: center; align-items: center; min-height: calc(100svh - 78px); padding: 42px 22px 54px; }
  .about-biography { width: min(1120px, 100%); margin: 0; }
  .about-home-sign { position: relative; right: auto; bottom: auto; margin: 34px auto 0; width: clamp(150px, 24vw, 220px); transform: rotate(1.5deg); flex: 0 0 auto; }
}
@media (max-width: 620px) {
  .about-hero { min-height: calc(100svh - 78px); padding: 34px 18px 42px; }
  .about-biography { width: 100%; }
  .about-home-sign { margin-top: 28px; width: min(190px, 48vw); }
}


/* About sign stays below the biography at every viewport */
.about-hero { display: flex; flex-direction: column; justify-content: center; align-items: center; }
.about-biography { width: min(1120px, calc(100% - 80px)); margin: 0 auto; }
.about-home-sign { position: relative; right: auto; bottom: auto; margin: 42px auto 0; flex: 0 0 auto; }
@media (max-width: 900px) {
  .about-biography { width: 100%; margin: 0; }
  .about-home-sign { margin-top: 34px; }
}
@media (max-width: 620px) { .about-home-sign { margin-top: 28px; } }


/* Final responsive corrections: desktop remains unchanged */
@media (min-width: 901px) {
  .about-hero { display: grid; align-items: center; }
  .about-biography { width: min(1120px, calc(100% - 360px)); margin: clamp(28px, 4vw, 54px) auto 0 clamp(56px, 7vw, 118px); }
  .about-home-sign { position: absolute; right: clamp(42px, 7vw, 118px); bottom: clamp(78px, 7vw, 112px); margin: 0; }
}
@media (max-width: 900px) {
  .hero-media { background-position: 50% center; }
  .hero { min-height: calc(100svh - 78px); }
  .about-hero { display: flex; flex-direction: column; justify-content: flex-start; align-items: center; min-height: calc(100svh - 78px); }
  .about-biography { width: 100%; margin: 0; }
  .about-home-sign { position: relative; right: auto; bottom: auto; margin: 28px auto 0; }
}
@media (max-width: 620px) {
  .hero { min-height: calc(100svh - 78px); padding-bottom: 0; }
  .hero-media { background-position: 50% center; }
}


/* Header accessibility and mobile About corrections */
.sr-only { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0, 0, 0, 0) !important; white-space: nowrap !important; border: 0 !important; }
.menu-toggle .menu-icon { pointer-events: none; }
@media (max-width: 900px) {
  .about-hero { padding-top: 24px; }
  .about-biography { margin-top: 0; }
}


/* Keep About biography below the fixed mobile header */
@media (max-width: 900px) { body.about-page .about-hero { padding-top: 104px; } }


/* Keep the mobile Home Listen button fully inside the hero */
@media (max-width: 620px) {
  .hero { min-height: calc(100svh - 52px); }
  .hero .button-primary { margin-top: 104px; margin-bottom: 12px; }
}


/* Mobile contact dialog keeps the calendar scrollable */
@media (max-width: 620px) {
  .contact-dialog { max-height: calc(100dvh - 16px); overflow-y: auto; overscroll-behavior: contain; -webkit-overflow-scrolling: touch; }
  .contact-panel { min-height: max-content; }
}


/* Stable mobile Hero layout across viewport heights */
@media (max-width: 620px) {
  .hero { min-height: calc(100svh - 78px); padding: 0 16px 18px; place-items: end center; }
  .hero-content { top: auto; right: 50%; bottom: 18px; transform: translateX(50%); width: min(620px, calc(100% - 32px)); }
  .hero h1, .hero p:not(.release-note) { transform: none; }
  .hero .button-primary { margin-top: 36px; margin-bottom: 0; }
  .hero .release-note { margin-top: 8px; }
}

