@font-face {
  font-family: "Gelasio";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("fonts/gelasio-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Gelasio";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("fonts/gelasio-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Source Sans 3";
  font-style: normal;
  font-weight: 200 900;
  font-display: swap;
  src: url("fonts/source-sans-3-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Source Sans 3";
  font-style: normal;
  font-weight: 200 900;
  font-display: swap;
  src: url("fonts/source-sans-3-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  /* White = paper. Bordeaux = rooms. Gold = drawing. Wood = threshold, not logo. */
  --white: #fff;
  --ink: #171616;
  --muted: #6f6b67;
  --copy: #2c2a29;
  --line: rgba(23, 22, 22, .18);
  --bordeaux: #812e25;
  --bordeaux-field: #55131a;
  --bordeaux-rich: #7b281f;
  --bordeaux-deep: #4d1613;
  --bordeaux-black: #200b0c;
  --bordeaux-sheen-offer:
    radial-gradient(circle at 13% -12%, rgba(255, 226, 197, .2), transparent 40%),
    radial-gradient(circle at 88% 112%, rgba(var(--gold-rgb), .1), transparent 40%);
  --bordeaux-sheen-claim:
    radial-gradient(circle at 28% 0%, rgba(255, 219, 190, .22), transparent 48%),
    radial-gradient(circle at 82% 108%, rgba(var(--gold-rgb), .09), transparent 40%);
  --bordeaux-sheen-contact:
    radial-gradient(circle at 22% 0%, rgba(255, 219, 190, .2), transparent 46%),
    radial-gradient(circle at 88% 105%, rgba(var(--gold-rgb), .085), transparent 40%);
  /* Gold from PianoGold logo #987127, lifted for paper and bordeaux. */
  --gold: #b3852e;
  --gold-rgb: 179, 133, 46;
  --gold-light: #cd9b3c;
  --gold-light-rgb: 205, 155, 60;
  --silver: #6b7272;
  --silver-bright: #c5c8ca;
  --wood: #2a1612;
  --wood-lid: linear-gradient(rgba(16, 8, 8, .4), rgba(16, 8, 8, .4));
  --wood-rail-height: clamp(36px, 3vw, 48px);
  --serif: "Gelasio", Georgia, serif;
  --sans: "Source Sans 3", "Helvetica Neue", Arial, sans-serif;
  --page-pad: clamp(24px, 5.7vw, 96px);
  --content: 1480px;
  --reference-content: 1680px;
  --label-size: 11px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: #160c0c;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--white);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body,
button,
input,
textarea,
a,
summary {
  font-family: var(--sans);
  -webkit-tap-highlight-color: transparent;
}

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

img,
video {
  width: 100%;
}

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

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

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

[id] {
  scroll-margin-top: 30px;
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 5px;
}

.skipLink {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  background: var(--white);
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  transform: translateY(-150%);
  transition: transform .2s ease;
}

.skipLink:focus {
  transform: translateY(0);
}

.masthead {
  position: relative;
  z-index: 20;
  padding: clamp(28px, 4vw, 56px) var(--page-pad) 0;
  background: var(--white);
}

.identity {
  position: relative;
  display: flex;
  width: fit-content;
  margin: 0 auto;
  align-items: center;
  flex-direction: row;
  flex-shrink: 0;
  gap: 17px;
  text-align: left;
}

.identitySignet {
  display: block;
  width: 84px;
  height: 84px;
  max-width: 84px;
  flex: none;
  object-fit: contain;
}

.identityWordmark {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.identityName {
  margin: 0;
  color: var(--bordeaux);
  font-family: var(--serif);
  font-size: clamp(36px, 3.8vw, 56px);
  font-weight: 400;
  line-height: .94;
  letter-spacing: .02em;
  text-transform: uppercase;
  white-space: nowrap;
}

.identityCompany {
  margin-top: 10px;
  margin-left: 1px;
  color: var(--gold);
  font-size: clamp(16px, 1.4vw, 20px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: .22em;
  white-space: nowrap;
}

.identityDescriptor {
  margin-top: 6px;
  margin-left: 1.3px;
  color: var(--silver);
  font-size: clamp(13.5px, 1.15vw, 16px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: .17em;
  white-space: nowrap;
}

.desktopNav {
  display: flex;
  max-width: var(--content);
  min-height: 64px;
  margin: clamp(26px, 3vw, 42px) auto 0;
  border-top: 1px solid var(--gold);
  border-bottom: 0;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2.4vw, 40px);
}

.desktopNav > a,
.languages {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.desktopNav > a {
  color: #4c4845;
}

.desktopNav > a,
.languages a {
  position: relative;
  min-height: 44px;
  padding-top: 16px;
}

.desktopNav > a::after,
.languages a::after,
.siteFooter nav a::after {
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 1px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .32s cubic-bezier(.2, .7, .2, 1);
}

.desktopNav > a:hover::after,
.desktopNav > a:focus-visible::after,
.desktopNav > a[aria-current="page"]::after,
.languages a:hover::after,
.languages a:focus-visible::after,
.siteFooter nav a:hover::after,
.siteFooter nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.languages {
  display: flex;
  margin-left: clamp(0px, 1vw, 16px);
  align-items: center;
  gap: 7px;
  color: var(--muted);
}

.languages a[aria-current="page"] {
  color: var(--bordeaux);
}

.pageIdent {
  padding: clamp(48px, 5.8vw, 88px) var(--page-pad) 0;
  background: var(--white);
}

.pageIdentTitle {
  max-width: var(--content);
  margin: 0 auto;
}

.mobileNav {
  display: none;
}

.mobileBar {
  display: none;
}

.mobileNavPanel {
  display: none;
}

html.mobileNavOpen,
body.mobileNavOpen {
  overflow: hidden;
  overscroll-behavior: none;
}

body.mobileNavOpen {
  position: fixed;
  right: 0;
  left: 0;
  width: 100%;
}

.filmStage {
  position: relative;
  padding: clamp(36px, 4.6vw, 72px) var(--page-pad) clamp(42px, 5.4vw, 88px);
  overflow: hidden;
  background: var(--white);
}

.filmFrame {
  position: relative;
  max-width: var(--content);
  margin: 0 auto;
  padding: clamp(8px, .85vw, 14px);
  overflow: hidden;
}

.filmFrame .heroMedia {
  position: relative;
  height: 78svh;
  min-height: 680px;
  max-height: 920px;
  overflow: hidden;
  background: #0c0b0e;
}

.filmFrame .heroImage {
  object-fit: cover;
  object-position: center 8%;
  width: 100%;
  height: 100%;
}

.filmFrame .heroVeil {
  pointer-events: none;
  position: absolute;
  inset: 0;
  z-index: 4;
  background: linear-gradient(#0504076b 0%, #0000 31%, #05040733 76%, #050407ad 100%);
}

.woodRail,
.claim::before {
  background-image:
    var(--wood-lid),
    url("../images/exclusive-sound-wood-strip.jpg");
  background-size: cover, cover;
  background-position: center, center;
}

.woodRail {
  width: 100%;
  height: var(--wood-rail-height);
  background-color: var(--wood);
}

.filmFrameLine {
  position: absolute;
  z-index: 6;
  display: block;
  background: var(--gold);
}

.filmFrameLineTop,
.filmFrameLineBottom {
  right: 0;
  left: 0;
  height: 1px;
  transform: scaleX(1);
}

.filmFrameLineTop {
  top: 0;
  transform-origin: left;
}

.filmFrameLineBottom {
  bottom: 0;
  transform-origin: right;
}

.filmFrameLineRight,
.filmFrameLineLeft {
  top: 0;
  bottom: 0;
  width: 1px;
  transform: scaleY(1);
}

.filmFrameLineRight {
  right: 0;
  transform-origin: top;
}

.filmFrameLineLeft {
  left: 0;
  transform-origin: bottom;
}

.sectionLabel,
.eyebrow,
.pageIdentTitle {
  color: var(--bordeaux);
  font-family: var(--sans);
  font-size: var(--label-size);
  font-weight: 600;
  letter-spacing: .22em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrowGold {
  color: var(--gold-light);
}

.positioning {
  position: relative;
  padding: clamp(102px, 11vw, 178px) var(--page-pad) clamp(110px, 12vw, 194px);
  overflow: hidden;
  background-color: var(--bordeaux-field);
  background-image: var(--bordeaux-sheen-offer);
  color: var(--white);
}

.positioningHeading,
.audienceGrid {
  --audience-gutter: clamp(22px, 2.1vw, 34px);
  max-width: var(--content);
  margin-inline: auto;
}

.positioningHeading .eyebrow,
.positioningHeading .sectionLabel {
  color: var(--gold-light);
}

.positioningHeading h2 {
  margin-top: 22px;
  font-family: var(--serif);
  font-size: clamp(44px, 5.8vw, 86px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -.035em;
}

.positioningHeading h2 span,
.positioningHeading h2 strong {
  display: block;
  font-weight: 400;
}

.positioningHeading h2 strong {
  margin-top: .16em;
  color: var(--gold);
}

.audienceGrid {
  display: grid;
  margin-top: clamp(64px, 6.8vw, 104px);
  border-top: 1px solid rgba(var(--gold-rgb), .5);
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
}

.audienceItem {
  position: relative;
  display: grid;
  grid-template-rows: auto auto 1fr;
  align-content: start;
  min-height: 0;
  padding: 26px calc(var(--audience-gutter) / 2) 8px;
  border-right: 1px solid rgba(255, 255, 255, .18);
}

.audienceItem::before {
  position: absolute;
  top: -1px;
  left: calc(var(--audience-gutter) / 2);
  width: 28px;
  height: 2px;
  background: var(--gold);
  content: "";
  transition: width .45s cubic-bezier(.2, .7, .2, 1);
}

.audienceItem:first-child {
  padding-left: 0;
}

.audienceItem:first-child::before {
  left: 0;
}

.audienceItem:hover::before,
.audienceItem:focus-within::before {
  width: 46px;
}

.audienceItem:last-child {
  padding-right: 0;
  border-right: 0;
}

.audienceNumber {
  display: block;
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: .18em;
  font-variant-numeric: tabular-nums;
}

.audienceItem h3 {
  margin-top: 22px;
  font-family: var(--serif);
  font-size: clamp(22px, 1.95vw, 30px);
  font-weight: 400;
  line-height: 1.22;
  letter-spacing: -.022em;
}

.audienceItem p {
  margin-top: 18px;
  color: rgba(255, 255, 255, .72);
  font-size: clamp(15px, 1.05vw, 16px);
  line-height: 1.55;
}

@media (min-width: 581px) {
  .audienceItem h3 {
    min-height: 2.52em;
  }
}

.serviceWorld {
  padding: clamp(104px, 12vw, 190px) 0;
  background:
    linear-gradient(90deg, transparent 0 6%, rgba(var(--gold-rgb), .28) 6% calc(6% + 1px), transparent calc(6% + 1px)),
    var(--white);
}

.serviceFeature {
  display: grid;
  align-items: stretch;
}

.serviceFeatureLive {
  width: min(92vw, 1540px);
  grid-template-columns: minmax(0, 1.55fr) minmax(400px, .95fr);
}

.serviceFeatureProduction {
  width: min(76vw, 1210px);
  margin: clamp(84px, 10vw, 154px) 0 0 auto;
  grid-template-columns: minmax(380px, 1.08fr) minmax(360px, .92fr);
}

.serviceImage {
  position: relative;
  min-width: 0;
}

.serviceImage picture {
  display: block;
  min-width: 0;
  overflow: hidden;
  height: 100%;
}

.serviceImage picture,
.serviceImage img {
  height: 100%;
}

.serviceImage img {
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(.2, .72, .2, 1);
}

.serviceFeature:hover .serviceImage img {
  transform: scale(1.012);
}

.serviceImageLive {
  min-height: 670px;
}

.serviceImageLive img {
  object-position: center;
}

.serviceImageProduction {
  display: flex;
  min-height: 540px;
  flex-direction: column;
}

.serviceImageProduction picture {
  flex: 1 1 auto;
  min-height: 480px;
}

.serviceImageProduction img {
  object-position: 48% center;
}

.serviceImage figcaption {
  padding: 14px 4px 0;
  color: var(--muted);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.serviceCopy {
  display: flex;
  padding: clamp(58px, 6.5vw, 104px) clamp(38px, 5vw, 78px);
  flex-direction: column;
  justify-content: center;
}

.serviceCopyBordeaux {
  background:
    linear-gradient(142deg, var(--bordeaux-rich), var(--bordeaux-deep) 72%);
  color: var(--white);
}

.serviceCopyLight {
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid rgba(var(--gold-rgb), .44);
  background: var(--white);
}

.serviceCopy h2 {
  margin-top: 22px;
  font-family: var(--serif);
  font-size: clamp(38px, 4.7vw, 70px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -.035em;
}

.serviceFeatureLive .serviceCopy h2 {
  font-size: clamp(38px, 3.7vw, 58px);
}

.serviceCopy > p:not(.eyebrow) {
  max-width: 550px;
  margin-top: 30px;
  color: var(--copy);
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.66;
}

.serviceCopy > p:not(.eyebrow) + p {
  margin-top: 18px;
}

.serviceCopyBordeaux > p:not(.eyebrow) {
  color: rgba(255, 255, 255, .72);
}

.textLink {
  display: inline-flex;
  width: fit-content;
  min-height: 44px;
  margin-top: clamp(34px, 4vw, 56px);
  padding: 12px 0 8px;
  border-bottom: 1px solid var(--gold);
  align-items: center;
  gap: 24px;
  color: var(--bordeaux);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.textLink span {
  font-size: 16px;
  transition: transform .25s ease;
}

.textLink:hover span,
.textLink:focus-visible span {
  transform: translateX(4px);
}

.textLinkLight {
  color: var(--white);
}

.kevinProfile {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(420px, .85fr);
  align-items: stretch;
  border-top: 1px solid rgba(var(--gold-rgb), .32);
  background: var(--white);
}

.kevinPortrait {
  min-height: 680px;
  overflow: hidden;
}

.kevinPortrait picture,
.kevinPortrait img {
  height: 100%;
}

.kevinPortrait img {
  object-fit: cover;
  object-position: center;
}

.kevinCopy {
  display: flex;
  max-width: 720px;
  padding: clamp(76px, 8vw, 132px) var(--page-pad);
  flex-direction: column;
  justify-content: center;
}

.kevinCopy h2 {
  margin-top: 22px;
  font-family: var(--serif);
  font-size: clamp(28px, 3.1vw, 44px);
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: -.028em;
}

.kevinCopy h2 strong {
  color: var(--bordeaux);
  font-weight: 400;
}

.kevinCopy > p:not(.eyebrow) {
  max-width: 560px;
  margin-top: 32px;
  color: var(--copy);
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.65;
}

.claim,
.claimBand {
  background-color: var(--bordeaux-field);
  background-image: var(--bordeaux-sheen-claim);
}

.claimBand {
  position: relative;
  padding: clamp(80px, 9vw, 132px) var(--page-pad) clamp(88px, 10vw, 152px);
  overflow: hidden;
  color: var(--white);
}

.claimBand::after {
  position: absolute;
  top: 0;
  right: 9%;
  width: 1px;
  height: 100%;
  background: rgba(var(--gold-light-rgb), .28);
  content: "";
}

.claimBand .eyebrow,
.claimBand blockquote {
  max-width: var(--content);
  margin-inline: auto;
}

.claimBand blockquote {
  margin-top: 26px;
  font-family: var(--serif);
  font-size: clamp(36px, 5.4vw, 78px);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -.035em;
}

.claimBand blockquote span {
  display: block;
}

.claimBand blockquote span:last-child {
  margin-left: clamp(0px, 10vw, 160px);
}

.pianoStage {
  overflow: hidden;
  background: #090909;
}

.pianoStage picture,
.pianoStage img {
  width: 100%;
  height: min(82svh, 940px);
  object-fit: cover;
  object-position: center;
}

.references {
  padding: clamp(104px, 12vw, 190px) var(--page-pad) clamp(72px, 8vw, 120px);
  background: var(--white);
  color: var(--ink);
}

.referenceIntro {
  display: grid;
  max-width: var(--reference-content);
  margin-inline: auto;
  grid-template-columns: minmax(280px, .92fr) minmax(360px, 1.08fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: end;
}

.referenceIntro h2 {
  margin-top: 18px;
  font-family: var(--serif);
  font-size: clamp(43px, 5.2vw, 78px);
  font-weight: 400;
  line-height: .98;
  letter-spacing: -.04em;
}

.referenceIntro h2 span {
  display: block;
}

.referenceIntro > p:last-child {
  max-width: 42em;
  margin-top: 0;
  padding-bottom: 4px;
  color: var(--copy);
  font-family: var(--sans);
  font-size: clamp(17px, 1.38vw, 21px);
  font-weight: 450;
  line-height: 1.58;
  letter-spacing: .005em;
}

.referenceList {
  display: grid;
  max-width: var(--reference-content);
  margin: clamp(64px, 7vw, 108px) auto 0;
  border-top: 1px solid rgba(var(--gold-rgb), .55);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: clamp(36px, 4.8vw, 80px);
}

.referenceList li {
  display: grid;
  min-height: 112px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: start;
}

.referenceNumber {
  padding-top: 4px;
  color: var(--gold);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .12em;
}

.referenceList strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(18px, 1.45vw, 23px);
  font-weight: 400;
  line-height: 1.24;
}

.referenceList small {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.referenceRoute {
  white-space: nowrap;
}

.pianoGold {
  color: var(--white);
  background: #070707;
  padding: clamp(72px, 9vw, 128px) var(--page-pad);
}

.pianoGoldLink {
  display: grid;
  max-width: var(--content);
  margin-inline: auto;
  grid-template-columns: minmax(320px, 1fr) minmax(280px, 405px);
  align-items: center;
  gap: clamp(42px, 8vw, 120px);
}

.pianoGoldCopy .sectionLabel {
  color: var(--gold);
}

.pianoGoldCopy h2 {
  max-width: 760px;
  margin-top: 24px;
  font-family: var(--serif);
  font-size: clamp(34px, 4.8vw, 68px);
  font-weight: 400;
  line-height: 1.03;
  letter-spacing: -.045em;
}

.pianoGoldCourtesy {
  max-width: 520px;
  margin-top: 22px;
  color: var(--white);
  font-size: clamp(18px, 1.55vw, 22px);
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: -.012em;
}

.pianoGoldVisual {
  justify-self: start;
  width: 100%;
  max-width: 280px;
}

.pianoGoldLogo {
  position: relative;
  width: 100%;
  max-width: none;
  overflow: hidden;
  aspect-ratio: 1243 / 1169;
}

.pianoGoldLogo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.2, .7, .2, 1);
}

.pianoGoldLink:hover .pianoGoldLogo img,
.pianoGoldLink:focus-visible .pianoGoldLogo img {
  transform: scale(1.018);
}

.pianoGoldCta {
  display: inline-block;
  margin-top: 18px;
  padding-bottom: 7px;
  border-bottom: 1px solid rgba(var(--gold-rgb), .72);
  color: rgba(255, 255, 255, .82);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.contact {
  display: grid;
  padding: clamp(104px, 12vw, 186px) var(--page-pad);
  grid-template-columns: minmax(310px, .72fr) minmax(520px, 1.28fr);
  grid-template-areas:
    "heading form"
    "details form";
  column-gap: clamp(68px, 10vw, 160px);
  row-gap: 0;
  background-color: var(--bordeaux-field);
  background-image: var(--bordeaux-sheen-contact);
  color: var(--white);
}

.contactHeading {
  grid-area: heading;
  max-width: 600px;
}

.contactHeading .sectionLabel {
  color: var(--gold-light);
}

.contactHeading h2 {
  margin-top: 23px;
  font-family: var(--serif);
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 400;
  line-height: .98;
  letter-spacing: -.04em;
}

.contactDirect {
  display: flex;
  margin-top: clamp(46px, 6vw, 82px);
  align-items: flex-start;
  flex-direction: column;
  gap: 11px;
}

.contactDirect a {
  width: fit-content;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(var(--gold-light-rgb), .72);
  font-size: clamp(17px, 1.65vw, 23px);
}

.contactDetails {
  display: grid;
  grid-area: details;
  justify-self: start;
  width: 100%;
  max-width: 600px;
  margin-top: 87px;
  margin-inline: 0;
  padding-top: 87px;
  border-top: 1px solid rgba(255, 255, 255, .28);
  grid-template-columns: 1fr;
  gap: 6px;
}

.contactBrand {
  display: flex;
  width: fit-content;
  max-width: 100%;
  flex-direction: column;
  align-items: flex-start;
}

.contactLockup {
  display: flex;
  align-items: center;
  gap: 12px;
}

.contactSignet {
  display: block;
  width: 48px;
  height: 48px;
  max-width: 48px;
  flex: none;
  object-fit: contain;
}

.contactWordmark {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.contactName {
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(22px, 2.15vw, 28px);
  font-weight: 400;
  line-height: .94;
  letter-spacing: .02em;
  text-transform: uppercase;
  white-space: nowrap;
}

.contactCompany {
  margin-top: 6px;
  margin-left: 1px;
  color: var(--gold);
  font-size: clamp(11px, 1.05vw, 13px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: .22em;
  white-space: nowrap;
}

.contactDescriptor {
  margin-top: 4px;
  margin-left: 1.3px;
  color: var(--silver-bright);
  font-size: 10px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: .17em;
  white-space: nowrap;
}

.contactPlace {
  margin: 0;
  padding-top: clamp(28px, 3.2vw, 42px);
  color: rgba(255, 255, 255, .52);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: .12em;
}

.contactDetails dl {
  margin: 0;
}

.contactDetails dl > div {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: baseline;
}

.contactDetails dt {
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.contactDetails dd {
  margin: 0;
  color: rgba(255, 255, 255, .78);
  font-size: 14px;
}

.contactForm {
  position: relative;
  grid-area: form;
  min-width: 0;
  padding-top: 5px;
}

.contactHoneypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.contactFormGrid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 27px 23px;
}

.contactOptional {
  grid-column: 1 / -1;
}

.contactForm label {
  display: block;
}

.contactForm label > span {
  display: block;
  color: rgba(255, 255, 255, .76);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.contactForm label > span small {
  color: rgba(255, 255, 255, .45);
  font-size: inherit;
  font-weight: 400;
}

.contactForm input,
.contactForm textarea {
  width: 100%;
  margin-top: 10px;
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: 0;
  outline: 0;
  background: rgba(255, 255, 255, .045);
  color: var(--white);
  font-size: 16px;
  transition: border-color .25s ease, background-color .25s ease;
}

.contactForm input {
  min-height: 50px;
}

.contactForm textarea {
  min-height: 170px;
  resize: vertical;
  line-height: 1.5;
}

.contactForm input:hover,
.contactForm textarea:hover {
  border-color: rgba(255, 255, 255, .56);
}

.contactForm input:focus,
.contactForm textarea:focus {
  border-color: var(--gold-light);
  background: rgba(255, 255, 255, .075);
}

.contactMessage {
  margin-top: 27px;
}

.contactConsent {
  display: grid !important;
  margin-top: 24px;
  grid-template-columns: 18px 1fr;
  gap: 13px;
  align-items: start;
}

.contactConsent input {
  width: 17px;
  min-height: 17px;
  height: 17px;
  margin: 2px 0 0;
  padding: 0;
  accent-color: var(--gold);
}

.contactConsent > span {
  color: rgba(255, 255, 255, .58) !important;
  font-size: 11px !important;
  font-weight: 400 !important;
  line-height: 1.55;
  letter-spacing: .02em !important;
  text-transform: none !important;
}

.contactConsent a {
  border-bottom: 1px solid rgba(var(--gold-light-rgb), .72);
  color: rgba(255, 255, 255, .82);
}

.contactSubmit {
  display: inline-flex;
  min-height: 48px;
  margin-top: 36px;
  padding: 13px 0 10px;
  border: 0;
  border-bottom: 1px solid var(--gold-light);
  align-items: center;
  gap: 25px;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.contactSubmit span {
  font-size: 17px;
  transition: transform .25s ease;
}

.contactSubmit:hover span,
.contactSubmit:focus-visible span {
  transform: translateX(4px);
}

.siteFooter {
  display: grid;
  padding: 52px var(--page-pad) 40px;
  grid-template-columns: auto 1fr auto;
  gap: 28px 48px;
  align-items: end;
  background: #160c0c;
  color: rgba(255, 255, 255, .68);
}

.siteFooter:has(.toTop) {
  padding-top: 22px;
  row-gap: 34px;
}

.siteFooter nav {
  grid-column: 3;
}

.footerIdentity {
  position: relative;
  display: flex;
  width: fit-content;
  flex-direction: row;
  align-items: center;
  text-align: left;
}

.footerIdentity .identitySignet {
  width: 40px;
  height: 40px;
  max-width: 40px;
}

.footerIdentity .identityWordmark {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  clip-path: inset(50%);
}

.footerIdentity .identityName {
  color: var(--white);
}

.footerIdentity .identityCompany {
  color: var(--gold);
}

.footerIdentity .identityDescriptor {
  color: var(--silver-bright);
}

.siteFooter nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  justify-content: flex-end;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.siteFooter nav a {
  position: relative;
  padding: 10px 0;
}

.siteFooter nav a::after {
  bottom: 6px;
}

.toTop {
  grid-column: 1 / -1;
  justify-self: center;
  align-self: start;
  font-size: 8px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .34);
}

.toTop span {
  display: inline-block;
  margin-left: 7px;
  color: rgba(179, 133, 46, .48);
  font-size: 11px;
  transition: transform .25s ease, color .25s ease;
}

.toTop:hover,
.toTop:focus-visible {
  color: rgba(255, 255, 255, .5);
}

.toTop:hover span,
.toTop:focus-visible span {
  color: rgba(179, 133, 46, .78);
  transform: translateY(-2px);
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity .75s ease,
    transform .9s cubic-bezier(.2, .72, .2, 1);
}

.js [data-reveal].isVisible {
  opacity: 1;
  transform: translateY(0);
}

.js .filmFrame .filmFrameLineTop,
.js .filmFrame .filmFrameLineBottom {
  transform: scaleX(0);
}

.js .filmFrame .filmFrameLineRight,
.js .filmFrame .filmFrameLineLeft {
  transform: scaleY(0);
}

.js .filmFrame.isVisible .filmFrameLineTop,
.js .filmFrame.isVisible .filmFrameLineBottom {
  transform: scaleX(1);
  transition: transform 1.1s cubic-bezier(.2, .72, .2, 1) .12s;
}

.js .filmFrame.isVisible .filmFrameLineRight,
.js .filmFrame.isVisible .filmFrameLineLeft {
  transform: scaleY(1);
  transition: transform 1.1s cubic-bezier(.2, .72, .2, 1) .35s;
}

@media (max-width: 1180px) {
  .desktopNav {
    gap: 16px;
  }

  .desktopNav > a,
  .languages {
    font-size: 14px;
    letter-spacing: .07em;
  }

  .serviceFeatureLive {
    width: 96vw;
    grid-template-columns: minmax(0, 1.5fr) minmax(340px, .86fr);
  }

  .serviceFeatureProduction {
    width: 85vw;
  }

  .references {
    gap: 64px;
  }

  .contact {
    column-gap: 64px;
  }

  .referenceIntro {
    gap: 40px;
  }
}

@media (max-width: 860px) {
  :root {
    --page-pad: 24px;
  }

  .masthead,
  .livePage .masthead,
  .productionPage .masthead {
    display: flex;
    min-height: 96px;
    padding: 12px 16px;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
  }

  .identity {
    --lockup-scale: 0.85;
    margin: 0;
    margin-right: calc((var(--lockup-scale) - 1) * 100%);
    margin-bottom: calc((var(--lockup-scale) - 1) * 84px);
    flex: 0 0 auto;
    min-width: 0;
    align-items: center;
    text-align: left;
    height: 84px;
    transform: scale(var(--lockup-scale));
    transform-origin: left top;
  }

  .pageIdent {
    padding-top: 36px;
    padding-bottom: 0;
  }

  .desktopNav {
    display: none;
  }

  .mobileBar {
    z-index: 2;
    display: flex;
    align-items: center;
    flex: none;
    gap: 7px;
  }

  .masthead .languageSwitch {
    display: flex;
    align-items: center;
    gap: 3px;
    margin: 0;
    padding: 0;
    border: 0;
  }

  .masthead .languageSwitch > a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    min-height: 38px;
    padding: 0;
    color: #000;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: .13em;
    text-transform: uppercase;
  }

  .masthead .languageSwitch > a[aria-current="page"],
  .masthead .languageSwitch > a:hover,
  .masthead .languageSwitch > a:focus-visible {
    color: #000;
  }

  .masthead .languageSwitch > a::after {
    display: none;
  }

  .masthead .languageSwitchDot {
    width: 3px;
    height: 3px;
    margin-inline: 1px;
    background: #000;
    border-radius: 0;
    box-shadow: none;
    font-size: 0;
    line-height: 0;
  }

  .mobileMenuOpen {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 72px;
    min-height: 38px;
    padding: 0 0 0 10px;
    border: 0;
    border-left: 1px solid rgba(0, 0, 0, .24);
    background: none;
    color: #000;
    cursor: pointer;
    font-size: 10px;
  }

  .menuGlyph {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    width: 22px;
    height: 18px;
  }

  .menuGlyph > span {
    display: block;
    width: 100%;
    height: 1px;
    background: #000;
  }

  .mobileMenuLabel {
    color: #000;
    letter-spacing: .13em;
    text-transform: uppercase;
    font-size: 10px;
    font-weight: 500;
    line-height: 1;
  }

  .mobileMenuOpen:focus-visible,
  .masthead .languageSwitch > a:focus-visible {
    outline-color: #b68a37;
  }

  header.masthead ~ .mobileNavPanel {
    position: fixed;
    z-index: 50;
    top: 114px;
    right: 18px;
    left: auto;
    bottom: auto;
    display: flex;
    flex-direction: column;
    width: clamp(200px, 54vw, 220px);
    height: auto;
    min-height: 0;
    padding: 10px 14px 12px;
    overflow: hidden;
    color: #fff;
    background:
      radial-gradient(circle at 82% 0%, rgba(216, 170, 80, .15), transparent 38%),
      linear-gradient(135deg, rgba(23, 12, 12, .96) 0%, rgba(77, 22, 19, .96) 62%, rgba(35, 11, 10, .97) 100%);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 2px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, .6);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    opacity: .94;
    clip-path: inset(0 0 100% 0 round 2px);
    transform: translate3d(0, -8px, 0);
    transform-origin: 50% 0;
    pointer-events: none;
    transition:
      clip-path 720ms cubic-bezier(.18, .78, .24, 1),
      transform 720ms cubic-bezier(.18, .78, .24, 1),
      opacity 552ms cubic-bezier(.18, .78, .24, 1);
  }

  header.masthead ~ .mobileNavPanel.mobileNavPanelOpen {
    opacity: 1;
    clip-path: inset(0 0 0 0 round 2px);
    transform: translate3d(0, 0, 0);
    pointer-events: auto;
  }

  header.masthead ~ .mobileNavPanel.mobileNavPanelClosing {
    transition-duration: 480ms, 480ms, 398ms;
    transition-timing-function:
      cubic-bezier(.72, 0, .88, .32),
      cubic-bezier(.72, 0, .88, .32),
      cubic-bezier(.72, 0, .88, .32);
  }

  .mobileNavTopbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 30px;
    gap: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, .22);
    letter-spacing: .14em;
    text-transform: uppercase;
    font-size: 6.5px;
  }

  .mobileNavTopbar p {
    flex: 1 1 auto;
    min-width: 0;
    color: #d8aa50;
    letter-spacing: .1em;
    white-space: nowrap;
  }

  .mobileMenuClose {
    flex: 0 0 auto;
    min-height: 30px;
    padding-inline: 4px;
    border: 0;
    background: none;
    color: #fff;
    letter-spacing: .045em;
    text-transform: uppercase;
    font-size: 6.5px;
    white-space: nowrap;
    cursor: pointer;
  }

  .mobileNavLinks {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 6px;
    width: 100%;
    max-width: 270px;
    margin: 6px 0 0;
  }

  .mobileNavLinks a {
    position: relative;
    min-height: 36px;
    color: #fff;
    opacity: .72;
    transform: translate3d(0, -7px, 0);
    font-family: var(--sans);
    letter-spacing: -.035em;
    font-size: clamp(20px, 5.5vw, 25px);
    font-weight: 300;
    line-height: 1;
    transition:
      opacity 518ms cubic-bezier(.18, .78, .24, 1),
      transform 621ms cubic-bezier(.18, .78, .24, 1);
  }

  .mobileNavLinks a:nth-child(3) {
    padding-bottom: 14px;
  }

  .mobileNavPanelOpen .mobileNavLinks a {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }

  .mobileNavPanelOpen .mobileNavLinks a:nth-child(1) { transition-delay: 90ms; }
  .mobileNavPanelOpen .mobileNavLinks a:nth-child(2) { transition-delay: 125ms; }
  .mobileNavPanelOpen .mobileNavLinks a:nth-child(3) { transition-delay: 160ms; }
  .mobileNavPanelOpen .mobileNavLinks a:nth-child(4) { transition-delay: 195ms; }
  .mobileNavPanelOpen .mobileNavLinks a:nth-child(5) { transition-delay: 230ms; }
  .mobileNavPanelOpen .mobileNavLinks a:nth-child(6) { transition-delay: 265ms; }

  .mobileNavPanelClosing .mobileNavLinks a {
    transition-delay: 0ms;
    transition-duration: 311ms;
  }

  .mobileNavLinks a::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: #d8aa50;
    transition: width .24s;
  }

  .mobileNavLinks a:hover::after,
  .mobileNavLinks a:focus-visible::after {
    width: 100%;
  }

  .mobileNavPanel[hidden] {
    display: none !important;
  }

  body:has(.filmStage) header.masthead ~ .mobileNavPanel {
    top: 122px;
    right: calc(var(--page-pad) + 14px);
  }

  .filmStage {
    padding-top: 10px;
    padding-bottom: 32px;
  }

  .positioning {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .audienceGrid {
    --audience-gutter: 32px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .audienceItem {
    padding-top: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255, 255, 255, .18);
  }

  .audienceItem:nth-child(2n) {
    padding-right: 0;
    border-right: 0;
  }

  .audienceItem:nth-child(2n)::before {
    left: calc(var(--audience-gutter) / 2);
  }

  .audienceItem:nth-child(2n + 1) {
    padding-left: 0;
  }

  .audienceItem:nth-child(2n + 1)::before {
    left: 0;
  }

  .audienceItem:nth-child(n + 3) {
    border-bottom: 0;
  }

  .serviceFeatureLive,
  .serviceFeatureProduction {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .serviceFeatureProduction {
    margin-top: 72px;
  }

  .serviceImageLive,
  .serviceImageProduction {
    min-height: 0;
    aspect-ratio: 3 / 2;
  }

  .serviceCopy {
    min-height: 520px;
  }

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

  .kevinPortrait {
    min-height: 0;
    aspect-ratio: 1.35 / 1;
  }

  .kevinCopy {
    max-width: none;
  }

  .references,
  .contact {
    grid-template-columns: 1fr;
  }

  .contact {
    grid-template-areas:
      "heading"
      "form"
      "details";
    row-gap: 64px;
  }

  .contactDetails {
    margin-top: 0;
  }

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

  .referenceIntro > p:last-child {
    max-width: 40em;
  }

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

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

  .pianoGoldVisual {
    justify-self: start;
    max-width: 270px;
  }
}

@media (max-width: 520px) {
  .masthead .identity {
    --lockup-scale: 0.58;
  }
}

@media (max-width: 400px) {
  .masthead .identity {
    --lockup-scale: 0.5;
  }

  .masthead .languageSwitch > a {
    min-width: 25px;
  }

  .mobileMenuOpen {
    min-width: 68px;
    padding-left: 8px;
  }
}

@media (max-width: 820px) {
  .filmFrame .heroMedia {
    height: 70svh;
    min-height: 560px;
  }

  .filmFrame .heroImage {
    object-position: 46% center;
  }
}

@media (min-width: 1000px) {
  .filmFrame .heroMedia {
    aspect-ratio: 5 / 3;
    height: auto;
    min-height: 0;
    max-height: none;
  }

  .filmFrame .heroImage {
    object-fit: cover;
    object-position: center 20%;
  }
}

@media (max-width: 580px) {
  .positioningHeading h2 {
    font-size: clamp(40px, 11vw, 58px);
  }

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

  .audienceItem,
  .audienceItem:first-child,
  .audienceItem:nth-child(2),
  .audienceItem:nth-child(3),
  .audienceItem:last-child {
    min-height: 0;
    padding: 25px 0 32px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .17);
  }

  .audienceItem::before,
  .audienceItem:first-child::before,
  .audienceItem:nth-child(2n)::before,
  .audienceItem:nth-child(2n + 1)::before {
    left: 0;
  }

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

  .audienceItem h3 {
    margin-top: 20px;
  }

  .audienceItem p {
    margin-top: 16px;
  }

  .serviceCopy {
    min-height: 0;
    padding: 62px 24px 72px;
  }

  .serviceCopy h2 {
    font-size: clamp(38px, 11vw, 55px);
  }

  .serviceImage figcaption {
    padding: 14px 24px 0;
  }

  .kevinPortrait {
    aspect-ratio: 1 / 1;
  }

  .kevinPortrait img {
    object-position: 40% center;
  }

  .kevinCopy {
    padding-top: 78px;
    padding-bottom: 90px;
  }

  .claimBand blockquote {
    font-size: clamp(32px, 8.6vw, 48px);
  }

  .claimBand blockquote span:last-child {
    margin-left: 0;
  }

  .pianoStage picture,
  .pianoStage img {
    height: min(62svh, 560px);
  }

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

  .referenceList li {
    min-height: 0;
  }

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

  .contactOptional {
    grid-column: auto;
  }

  .siteFooter {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .footerIdentity,
  .siteFooter nav,
  .toTop {
    justify-self: center;
  }

  .siteFooter nav {
    grid-column: auto;
    justify-content: center;
  }

  .footerIdentity {
    align-items: center;
    text-align: center;
  }

  .toTop {
    width: auto;
    padding-top: 0;
    border-top: none;
  }
}

@media (max-width: 560px) {
  .filmFrame .heroMedia {
    height: 68svh;
    min-height: 520px;
  }

  .pianoGoldVisual {
    max-width: 230px;
  }
}

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

  .filmOpeningVideo,
  .heroFilm {
    display: none;
  }

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

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

.legalContent {
  max-width: 980px;
  margin-inline: auto;
  padding: clamp(36px, 4vw, 64px) var(--page-pad) clamp(88px, 10vw, 152px);
}

.legalContent .sectionLabel {
  color: var(--bordeaux);
}

.legalIntro {
  max-width: 720px;
  margin-top: 12px;
  color: var(--copy);
  font-size: clamp(18px, 1.55vw, 22px);
  line-height: 1.55;
}

.legalContent section {
  margin-top: clamp(48px, 7vw, 80px);
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.legalContent > section:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.legalContent section[id] {
  scroll-margin-top: 28px;
}

.legalContent h2 {
  font-family: var(--serif);
  font-size: clamp(26px, 3.1vw, 40px);
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: -.028em;
}

.legalContent h3 {
  margin-top: 32px;
  color: var(--bordeaux);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.legalContent p,
.legalContent address,
.legalContent li {
  color: var(--copy);
  font-size: 16px;
  font-style: normal;
  line-height: 1.72;
}

.legalContent p + p,
.legalContent address + p {
  margin-top: 18px;
}

.legalContent ul {
  margin: 16px 0 0 1.15em;
  list-style: disc;
}

.legalContent a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}
