@font-face {
  font-family: "Alexandria";
  src: url("fonts/Alexandria-Medium.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Alexandria";
  src: url("fonts/Alexandria-SemiBold.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Alexandria";
  src: url("fonts/Alexandria-Bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Alexandria";
  src: url("fonts/Alexandria-ExtraBold.ttf") format("truetype");
  font-style: normal;
  font-weight: 800;
  font-display: swap;
}

@font-face {
  font-family: "Alexandria";
  src: url("fonts/Alexandria-Black.ttf") format("truetype");
  font-style: normal;
  font-weight: 900;
  font-display: swap;
}

:root {
  --ink: #0d0d0d;
  --ink-soft: #171614;
  --paper: #f4f0e8;
  --paper-deep: #e8e1d5;
  --white: #fffdf8;
  --copper: #c9794f;
  --copper-light: #e6a078;
  --muted: #756f67;
  --line: rgba(13, 13, 13, 0.15);
  --font-primary: "Alexandria", Tahoma, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-primary);
  font-weight: 500;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

body::selection {
  background: var(--copper);
  color: var(--white);
}

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

button,
input,
select,
textarea {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 82px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 0 clamp(24px, 5vw, 76px);
  background: rgba(13, 13, 13, 0.9);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
}

.brand-logo {
  width: auto;
  height: 70px;
  display: block;
  object-fit: contain;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 42px);
}

nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  transition: color 180ms ease;
}

nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -10px;
  width: 0;
  height: 1px;
  background: var(--copper-light);
  transition: width 180ms ease;
}

nav a:hover,
nav a:focus-visible {
  color: var(--white);
}

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

.header-cta {
  justify-self: end;
  padding: 12px 20px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  font-size: 12px;
  transition:
    background 180ms ease,
    color 180ms ease,
    border 180ms ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  background: var(--copper);
  color: var(--ink);
  border-color: var(--copper);
}

.hero {
  min-height: calc(100svh - 82px);
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(430px, 0.97fr);
  align-items: center;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
  padding: clamp(70px, 8vh, 112px) clamp(24px, 6vw, 92px) 60px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.25;
  background-image: radial-gradient(rgba(255, 255, 255, 0.16) 0.6px, transparent 0.7px);
  background-size: 7px 7px;
  mask-image: linear-gradient(to left, black, transparent 62%);
}

.hero-glow {
  position: absolute;
  width: 620px;
  height: 620px;
  left: -220px;
  top: 5%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 121, 79, 0.25), transparent 68%);
  filter: blur(20px);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 770px;
  padding-left: 5vw;
}

.eyebrow,
.section-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 26px;
  color: var(--copper-light);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.eyebrow > span {
  width: 28px;
  height: 1px;
  background: currentColor;
}

.hero h1,
.section h2 {
  margin: 0;
  font-family: var(--font-primary);
  font-weight: 800;
  letter-spacing: -0.045em;
}

.hero h1 {
  font-size: clamp(58px, 7.4vw, 118px);
  line-height: 0.94;
}

.hero h1 em,
.section h2 em {
  color: var(--copper-light);
  font-style: normal;
}

.hero-summary {
  max-width: 650px;
  margin: 34px 0 0;
  color: rgba(255, 255, 255, 0.69);
  font-size: clamp(16px, 1.35vw, 20px);
  font-weight: 500;
  line-height: 1.9;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 38px;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 25px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  transition:
    transform 180ms ease,
    background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--copper);
  color: var(--ink);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--copper-light);
}

.button-ghost {
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.mini-play {
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-right: 8px solid var(--ink);
  transform: rotate(180deg);
}

.hero-proof {
  display: flex;
  gap: clamp(26px, 4vw, 62px);
  margin-top: clamp(46px, 7vh, 82px);
  padding-top: 27px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.hero-proof > div {
  display: grid;
  gap: 5px;
}

.hero-proof strong {
  color: var(--white);
  font: 500 clamp(22px, 2vw, 30px)/1 var(--font-primary);
  direction: ltr;
  text-align: right;
}

.hero-proof span {
  color: rgba(255, 255, 255, 0.44);
  font-size: 10px;
  font-weight: 500;
}

.hero-visual {
  position: relative;
  z-index: 1;
  height: min(77vh, 760px);
  min-height: 570px;
  display: grid;
  place-items: center;
}

.portrait-frame {
  position: relative;
  width: min(92%, 610px);
  aspect-ratio: 0.83;
  overflow: hidden;
  border-radius: 320px 320px 20px 20px;
  background: #121213;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.5);
}

.portrait-frame::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: inherit;
  pointer-events: none;
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 50% 44%;
  filter: saturate(0.85) contrast(1.04);
}

.portrait-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(13, 13, 13, 0.85), transparent 34%),
    linear-gradient(135deg, transparent 55%, rgba(201, 121, 79, 0.12));
  pointer-events: none;
}

.portrait-caption {
  position: absolute;
  z-index: 3;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 16px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(13, 13, 13, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  font-size: 10px;
  backdrop-filter: blur(10px);
}

.availability-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #8bcf8b;
  box-shadow: 0 0 0 4px rgba(139, 207, 139, 0.12);
}

.sound-signature {
  position: absolute;
  right: -1vw;
  bottom: 17%;
  width: 170px;
  height: 90px;
  display: flex;
  align-items: center;
  gap: 5px;
  opacity: 0.55;
}

.sound-signature i,
.player-wave i {
  display: block;
  flex: 1;
  min-height: 4px;
  border-radius: 2px;
  background: var(--copper);
}

.value-strip {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(16px, 3.2vw, 52px);
  padding: 15px 24px;
  background: var(--copper);
  color: #17100d;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.value-strip i {
  opacity: 0.45;
  font-style: normal;
}

.section {
  padding: clamp(78px, 10vw, 150px) clamp(24px, 7vw, 110px);
}

.section-label {
  color: var(--muted);
}

.section-label span {
  color: var(--copper);
  font: 700 10px/1 var(--font-primary);
  direction: ltr;
}

.section-label::after {
  content: "";
  width: 52px;
  height: 1px;
  background: currentColor;
  opacity: 0.35;
}

.section-label-light {
  color: rgba(255, 255, 255, 0.46);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(50px, 9vw, 140px);
  align-items: start;
}

.about h2,
.process h2,
.contact h2 {
  font-size: clamp(48px, 6vw, 92px);
  line-height: 1.08;
}

.about-content {
  max-width: 740px;
}

.about-content p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
}

.about-content .lead {
  margin-bottom: 22px;
  color: var(--ink);
  font-size: clamp(20px, 2.1vw, 29px);
  font-weight: 500;
  line-height: 1.75;
}

.about-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 34px;
  margin-top: 38px;
}

.about-links a {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 9px;
  border-bottom: 1px solid var(--ink);
  font-size: 12px;
  font-weight: 700;
}

.about-links a span {
  color: var(--copper);
  font-size: 17px;
}

.services {
  background: var(--ink);
  color: var(--white);
}

.section-heading-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.52fr);
  gap: clamp(40px, 7vw, 120px);
  align-items: end;
  margin-bottom: clamp(50px, 7vw, 92px);
}

.section-heading-row h2 {
  max-width: 880px;
  font-size: clamp(46px, 6vw, 84px);
  line-height: 1.08;
}

.section-heading-row > p {
  margin: 0 0 7px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  line-height: 1.9;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.service-card {
  min-height: 330px;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: clamp(28px, 3vw, 44px);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  transition: background 240ms ease;
}

.service-card:hover {
  background: var(--copper);
}

.service-number {
  color: rgba(255, 255, 255, 0.35);
  font: 700 10px/1 var(--font-primary);
  direction: ltr;
}

.service-icon {
  height: 70px;
  display: flex;
  align-items: center;
  gap: 5px;
  margin: 36px 0 34px;
}

.service-icon i {
  width: 3px;
  display: block;
  border-radius: 4px;
  background: var(--copper-light);
}

.service-icon i:nth-child(1) {
  height: 22px;
}

.service-icon i:nth-child(2) {
  height: 45px;
}

.service-icon i:nth-child(3) {
  height: 66px;
}

.service-icon i:nth-child(4) {
  height: 38px;
}

.service-icon i:nth-child(5) {
  height: 16px;
}

.service-card:hover .service-icon i {
  background: var(--ink);
}

.service-card h3 {
  margin: auto 0 12px;
  font-size: 21px;
  font-weight: 700;
}

.service-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.8;
}

.service-card:hover h3,
.service-card:hover p,
.service-card:hover .service-number {
  color: var(--ink);
}

.work {
  background: var(--paper);
}

.work .section-heading-row > p {
  color: var(--muted);
}

.player-shell {
  width: 100%;
  aspect-ratio: 16 / 8.2;
  min-height: 460px;
  overflow: hidden;
  background: var(--ink);
}

.player-shell iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.player-cover {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 0;
  background:
    radial-gradient(circle at 70% 40%, rgba(201, 121, 79, 0.23), transparent 25%),
    linear-gradient(130deg, #0c0c0c, #181310 62%, #0c0c0c);
  color: var(--white);
  cursor: pointer;
}

.player-cover::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image: radial-gradient(rgba(255, 255, 255, 0.22) 0.5px, transparent 0.7px);
  background-size: 7px 7px;
}

.player-kicker,
.player-cover strong,
.player-cover small,
.big-play {
  position: relative;
  z-index: 2;
}

.player-kicker {
  margin-bottom: 30px;
  color: var(--copper-light);
  font: 700 9px/1 var(--font-primary);
  letter-spacing: 0.22em;
  direction: ltr;
}

.big-play {
  width: clamp(78px, 8vw, 116px);
  height: clamp(78px, 8vw, 116px);
  display: grid;
  place-items: center;
  margin-bottom: 25px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 50%;
  transition:
    transform 220ms ease,
    background 220ms ease;
}

.big-play i {
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 17px solid var(--white);
}

.player-cover:hover .big-play,
.player-cover:focus-visible .big-play {
  transform: scale(1.07);
  background: var(--copper);
  border-color: var(--copper);
}

.player-cover:hover .big-play i,
.player-cover:focus-visible .big-play i {
  border-left-color: var(--ink);
}

.player-cover strong {
  font-size: clamp(26px, 3.5vw, 48px);
  font-family: var(--font-primary);
  font-weight: 800;
}

.player-cover small {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 500;
}

.player-wave {
  position: absolute;
  z-index: 1;
  right: 4%;
  left: 4%;
  bottom: 11%;
  height: 120px;
  display: flex;
  align-items: center;
  gap: 1.4vw;
  opacity: 0.23;
}

.work-notes {
  display: grid;
  grid-template-columns: repeat(3, 1fr) auto;
  gap: 0;
  border: 1px solid var(--line);
  border-top: 0;
}

.work-notes article {
  min-height: 190px;
  padding: 30px;
  border-left: 1px solid var(--line);
}

.work-notes article > span {
  color: var(--copper);
  font: 700 9px/1 var(--font-primary);
}

.work-notes h3 {
  margin: 25px 0 10px;
  font-size: 16px;
}

.work-notes p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
  line-height: 1.8;
}

.work-notes > a {
  width: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 30px;
  background: var(--copper);
  font-size: 11px;
  font-weight: 800;
  text-align: center;
}

.work-notes > a span {
  font-size: 22px;
}

.audio-library {
  background: var(--paper);
}

.audio-heading h2 {
  max-width: 780px;
  font-size: clamp(42px, 5vw, 78px);
  line-height: 1.08;
}

.audio-player-panel {
  display: grid;
  grid-template-columns: minmax(210px, 0.42fr) minmax(0, 1.58fr);
  min-height: 320px;
  margin-top: 54px;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.audio-player-visual {
  min-height: 280px;
  display: grid;
  place-items: center;
  padding: 36px;
  background:
    radial-gradient(circle at 50% 46%, rgba(201, 121, 79, 0.28), transparent 54%),
    #090909;
}

.audio-current-cover {
  width: min(100%, 230px);
  aspect-ratio: 1;
  display: block;
  object-fit: contain;
}

.audio-player-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 5vw, 76px);
}

.audio-now-label {
  margin-bottom: 24px;
  color: var(--copper-light);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  direction: ltr;
  text-align: left;
}

.audio-current-title {
  font-size: clamp(28px, 3.8vw, 54px);
  font-weight: 800;
  line-height: 1.15;
}

.audio-current-description {
  max-width: 650px;
  min-height: 1.8em;
  margin: 13px 0 30px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.8;
}

.internal-audio-player {
  width: 100%;
  height: 46px;
  accent-color: var(--copper);
}

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

.audio-track {
  width: 100%;
  min-height: 104px;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto 42px;
  gap: 20px;
  align-items: center;
  padding: 20px 28px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  text-align: right;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease;
}

.audio-track:hover,
.audio-track:focus-visible,
.audio-track.is-active {
  outline: 0;
  background: var(--copper);
}

.audio-track-number {
  color: var(--copper);
  font-size: 11px;
  font-weight: 700;
  direction: ltr;
}

.audio-track:hover .audio-track-number,
.audio-track:focus-visible .audio-track-number,
.audio-track.is-active .audio-track-number {
  color: var(--ink);
}

.audio-track-copy {
  min-width: 0;
  display: grid;
  gap: 7px;
}

.audio-track-copy strong {
  overflow: hidden;
  font-size: 17px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.audio-track-copy small {
  overflow: hidden;
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.audio-track:hover .audio-track-copy small,
.audio-track:focus-visible .audio-track-copy small,
.audio-track.is-active .audio-track-copy small {
  color: rgba(13, 13, 13, 0.62);
}

.audio-track-duration {
  color: var(--muted);
  font-size: 11px;
  direction: ltr;
}

.audio-track-play {
  width: 36px;
  height: 36px;
  position: relative;
  display: block;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.audio-track-play::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid currentColor;
  transform: translate(-42%, -50%);
}

.process {
  background: var(--paper-deep);
}

.process-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(430px, 1.15fr);
  gap: clamp(70px, 11vw, 180px);
}

.process-intro p {
  max-width: 440px;
  margin: 35px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
}

.process ol {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.process li {
  min-height: 134px;
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 20px;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.process li > span {
  align-self: start;
  padding-top: 5px;
  color: var(--copper);
  font: 700 9px/1 var(--font-primary);
}

.process li h3 {
  margin: 0 0 8px;
  font-size: 19px;
}

.process li p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.8;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.83fr) minmax(500px, 1.17fr);
  gap: clamp(70px, 10vw, 150px);
  background: var(--ink);
  color: var(--white);
}

.contact-aside > p {
  max-width: 520px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.95;
}

.contact-methods {
  display: grid;
  gap: 0;
  margin-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.contact-methods a {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.contact-methods a > span {
  width: 37px;
  height: 37px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: var(--copper-light);
  font: 700 10px/1 var(--font-primary);
}

.contact-methods a > div {
  display: grid;
  gap: 4px;
}

.contact-methods small {
  color: rgba(255, 255, 255, 0.38);
  font-size: 9px;
}

.contact-methods strong {
  font-size: 13px;
  font-weight: 500;
}

.project-form {
  align-self: start;
  display: grid;
  gap: 20px;
  padding: clamp(28px, 4vw, 54px);
  background: var(--paper);
  color: var(--ink);
}

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

.project-form label:not(.consent) {
  display: grid;
  gap: 9px;
}

.project-form label > span {
  font-size: 10px;
  font-weight: 700;
}

.project-form input,
.project-form select,
.project-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(13, 13, 13, 0.22);
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 13px;
  transition: border 180ms ease;
}

.project-form input,
.project-form select {
  height: 47px;
}

.project-form textarea {
  resize: vertical;
  min-height: 120px;
  padding: 12px 0;
  line-height: 1.7;
}

.project-form input:focus,
.project-form select:focus,
.project-form textarea:focus {
  border-color: var(--copper);
}

.project-form input::placeholder,
.project-form textarea::placeholder {
  color: #aaa39a;
}

.consent {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
}

.consent input {
  width: 15px;
  height: 15px;
  accent-color: var(--copper);
}

.consent span {
  font-size: 9px;
  font-weight: 500;
}

.submit-button {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  border: 0;
  background: var(--copper);
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  transition: background 180ms ease;
}

.submit-button:hover,
.submit-button:focus-visible {
  background: var(--copper-light);
}

.submit-button span {
  font-size: 21px;
}

.form-success {
  margin: -7px 0 0;
  color: #33754a;
  font-size: 10px;
}

footer {
  padding: 58px clamp(24px, 7vw, 110px) 28px;
  background: #080808;
  color: var(--white);
}

.footer-top,
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.footer-top {
  align-items: flex-start;
  padding-bottom: 55px;
}

.footer-brand {
  display: grid;
  justify-items: start;
  gap: 14px;
}

.footer-brand > a {
  display: inline-flex;
}

.footer-logo {
  width: auto;
  height: clamp(145px, 14vw, 190px);
  display: block;
  object-fit: contain;
}

.footer-brand > span {
  color: rgba(255, 255, 255, 0.34);
  font-size: 10px;
}

.social-links {
  display: grid;
  gap: 13px;
  direction: ltr;
  text-align: left;
}

.social-links a {
  color: rgba(255, 255, 255, 0.5);
  font: 700 10px/1.4 var(--font-primary);
}

.social-links a span {
  color: var(--copper-light);
}

.footer-bottom {
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.28);
  font-size: 9px;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.52);
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  nav {
    display: none;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
  }

  .hero-copy {
    padding-left: 1vw;
  }

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

  .work-notes {
    grid-template-columns: repeat(3, 1fr);
  }

  .work-notes > a {
    width: auto;
    min-height: 86px;
    grid-column: 1 / -1;
    flex-direction: row;
  }

  .contact {
    grid-template-columns: minmax(0, 0.72fr) minmax(480px, 1.28fr);
    gap: 55px;
  }
}

@media (max-width: 820px) {
  .site-header {
    height: 72px;
  }

  .brand-logo {
    height: 60px;
  }

  .audio-player-panel {
    grid-template-columns: 1fr;
  }

  .audio-player-visual {
    min-height: 230px;
  }

  .audio-current-cover {
    width: min(54vw, 190px);
  }

  .header-cta {
    padding: 10px 15px;
    font-size: 10px;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 70px;
  }

  .hero-copy {
    order: 2;
    padding: 45px 0 0;
  }

  .hero h1 {
    font-size: clamp(57px, 16vw, 84px);
  }

  .hero-visual {
    order: 1;
    height: auto;
    min-height: 0;
  }

  .portrait-frame {
    width: min(92%, 500px);
    aspect-ratio: 0.93;
    border-radius: 270px 270px 16px 16px;
  }

  .hero-proof {
    margin-top: 46px;
  }

  .about-grid,
  .section-heading-row,
  .process-grid,
  .contact {
    grid-template-columns: 1fr;
  }

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

  .section-heading-row > p {
    max-width: 620px;
  }

  .player-shell {
    min-height: 360px;
    aspect-ratio: 16 / 9;
  }

  .process-grid {
    gap: 55px;
  }

  .contact {
    gap: 60px;
  }

  .contact-aside {
    max-width: 630px;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 0 18px;
  }

  .brand-logo {
    height: 56px;
  }

  .audio-track {
    grid-template-columns: 34px minmax(0, 1fr) 34px;
    gap: 12px;
    padding: 17px 14px;
  }

  .audio-track-duration {
    display: none;
  }

  .header-cta {
    border-color: var(--copper);
    color: var(--copper-light);
  }

  .hero {
    padding: 36px 18px 48px;
  }

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

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-proof {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }

  .hero-proof strong {
    font-size: 20px;
  }

  .hero-proof span {
    font-size: 8px;
  }

  .value-strip {
    justify-content: flex-start;
    gap: 12px 18px;
    font-size: 10px;
  }

  .section {
    padding-right: 20px;
    padding-left: 20px;
  }

  .about h2,
  .process h2,
  .contact h2,
  .section-heading-row h2 {
    font-size: 46px;
  }

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

  .service-card {
    min-height: 275px;
  }

  .player-shell {
    min-height: 430px;
    aspect-ratio: 0.83;
  }

  .player-wave {
    bottom: 6%;
  }

  .work-notes {
    grid-template-columns: 1fr;
  }

  .work-notes article {
    min-height: 155px;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .project-form {
    padding: 28px 20px;
  }

  .footer-top,
  .footer-bottom {
    flex-direction: column;
  }

  .footer-bottom {
    gap: 13px;
  }
}

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

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