:root {
    --ink: #0d0d0c;
    --ink-raised: #141412;
    --ink-soft: #1c1a16;
    --paper: #f0eadf;
    --paper-muted: #c1baae;
    --paper-dim: #99938a;
    --brass: #c7a25c;
    --brass-light: #e0c184;
    --line: rgba(240, 234, 223, 0.16);
    --line-strong: rgba(199, 162, 92, 0.54);
    --danger: #ef9d8f;
    --success: #9ac6a4;
    --header-height: 78px;
    --shell: 1280px;
    --gutter: clamp(20px, 4vw, 64px);
    --display: "Playfair Display", Georgia, serif;
    --sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    color-scheme: dark;
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 24px);
}

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

html.nav-open {
    overflow: hidden;
    overscroll-behavior: none;
}

body.nav-open {
    position: fixed;
    right: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    overscroll-behavior: none;
}

body.nav-open .site-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1000;
    border-bottom-color: var(--line);
    background: var(--ink);
    backdrop-filter: none;
}

[hidden] {
    display: none !important;
}

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

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

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

button {
    color: inherit;
}

::selection {
    background: var(--brass);
    color: var(--ink);
}

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 12px;
    left: 12px;
    padding: 10px 16px;
    background: var(--paper);
    color: var(--ink);
    transform: translateY(-160%);
    transition: transform 160ms ease;
}

.skip-link:focus {
    transform: translateY(0);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

:focus-visible {
    outline: 2px solid var(--brass-light);
    outline-offset: 4px;
}

.section-shell {
    width: min(100%, var(--shell));
    margin-inline: auto;
    padding-inline: var(--gutter);
}

.section-rule {
    border-top: 1px solid var(--line);
}

.eyebrow {
    margin: 0 0 18px;
    color: var(--brass-light);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    line-height: 1.4;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    font-family: var(--display);
    font-weight: 500;
    letter-spacing: -0.025em;
}

h1 {
    margin-bottom: 24px;
    font-size: clamp(4.25rem, 6.5vw, 5.8rem);
    line-height: 0.95;
}

h2 {
    margin-bottom: 0;
    font-size: clamp(2.6rem, 5vw, 4.5rem);
    line-height: 1.02;
}

h3 {
    font-size: clamp(1.6rem, 2.5vw, 2.3rem);
    line-height: 1.08;
}

.site-header {
    position: sticky;
    z-index: 100;
    top: 0;
    width: 100%;
    height: var(--header-height);
    border-bottom: 1px solid transparent;
    background: rgba(13, 13, 12, 0.92);
    transition: border-color 200ms ease, background-color 200ms ease;
}

.site-header.is-scrolled {
    border-bottom-color: var(--line);
    background: rgba(13, 13, 12, 0.97);
    backdrop-filter: blur(14px);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(100%, 1440px);
    height: 100%;
    margin-inline: auto;
    padding-inline: var(--gutter);
}

.wordmark {
    flex: 0 0 auto;
    font-family: var(--display);
    font-size: clamp(1.15rem, 1.7vw, 1.55rem);
    font-weight: 500;
    letter-spacing: 0.22em;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
}

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

.site-nav__links {
    display: flex;
    align-items: center;
    gap: clamp(18px, 2vw, 32px);
}

.site-nav__links > a,
.services-nav__toggle {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--paper-muted);
    font-size: 0.84rem;
    font-weight: 500;
    cursor: pointer;
    transition: color 160ms ease;
}

.site-nav__links > a::after,
.services-nav__toggle::after {
    position: absolute;
    right: 0;
    bottom: 3px;
    left: 0;
    height: 1px;
    background: var(--brass);
    content: "";
    opacity: 0;
    transform: scaleX(0.4);
    transition: opacity 160ms ease, transform 160ms ease;
}

.site-nav__links > a:hover,
.site-nav__links > a:focus-visible,
.site-nav__links > a[aria-current],
.services-nav__toggle:hover,
.services-nav__toggle:focus-visible,
.services-nav__toggle[aria-expanded="true"],
.services-nav__toggle.is-current,
.services-nav__toggle.is-section-current {
    color: var(--paper);
}

.site-nav__links > a:hover::after,
.site-nav__links > a:focus-visible::after,
.site-nav__links > a[aria-current]::after,
.services-nav__toggle:hover::after,
.services-nav__toggle:focus-visible::after,
.services-nav__toggle[aria-expanded="true"]::after,
.services-nav__toggle.is-current::after,
.services-nav__toggle.is-section-current::after {
    opacity: 1;
    transform: scaleX(1);
}

.services-nav {
    position: relative;
}

.services-nav__toggle {
    gap: 8px;
}

.services-nav__toggle i {
    font-size: 0.7rem;
    transition: transform 180ms ease;
}

.services-nav__toggle[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.services-nav__menu {
    position: absolute;
    top: calc(100% + 12px);
    left: -28px;
    display: grid;
    width: 240px;
    padding: 16px 20px;
    border: 1px solid var(--line);
    background: var(--ink-raised);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 160ms ease, transform 160ms ease;
}

.services-nav.is-open .services-nav__menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.services-nav__menu a {
    padding: 8px 0;
    border-bottom: 1px solid var(--line);
    color: var(--paper-muted);
    font-size: 0.84rem;
    transition: color 160ms ease, padding-left 160ms ease;
}

.services-nav__menu a:last-child {
    border-bottom: 0;
}

.services-nav__menu a:hover,
.services-nav__menu a:focus-visible,
.services-nav__menu a[aria-current] {
    padding-left: 6px;
    color: var(--paper);
}

.services-nav__menu a[aria-current] {
    border-bottom-color: var(--line-strong);
}

.services-overview-link {
    color: var(--brass-light) !important;
}

.header-socials {
    display: flex;
    align-items: center;
    gap: 6px;
    padding-left: 24px;
    border-left: 1px solid var(--line);
}

.header-socials a {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    color: var(--paper-muted);
    font-size: 1.02rem;
    transition: color 160ms ease, transform 160ms ease;
}

.header-socials a:hover,
.header-socials a:focus-visible {
    color: var(--brass-light);
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    align-items: center;
    gap: 10px;
    min-height: 44px;
    padding: 0;
    border: 0;
    background: transparent;
    font-size: 0.82rem;
    font-weight: 500;
    cursor: pointer;
}

.menu-toggle i {
    font-size: 1.4rem;
}

.hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 42.8%) minmax(0, 57.2%);
    width: 100%;
    min-height: clamp(580px, calc(100svh - var(--header-height)), 760px);
    overflow: hidden;
}

.hero__copy {
    position: relative;
    z-index: 3;
    align-self: center;
    grid-column: 1 / 2;
    padding:
        clamp(44px, 6vh, 72px)
        clamp(28px, 3vw, 48px)
        clamp(44px, 6vh, 72px)
        max(var(--gutter), calc((100vw - 1440px) / 2 + var(--gutter)));
}

.hero h1 {
    white-space: nowrap;
}

.hero__voice {
    max-width: 580px;
    margin-bottom: 24px;
    color: var(--paper);
    font-family: var(--display);
    font-size: clamp(1.08rem, 1.45vw, 1.35rem);
    line-height: 1.45;
}

.hero__services {
    max-width: 610px;
    color: var(--paper-muted);
}

.hero__services p {
    margin-bottom: 13px;
}

.hero__services ul {
    display: grid;
    gap: 7px;
    margin: 0;
    padding-left: 1.3em;
}

.hero__services li::marker {
    color: var(--brass);
}

.button-row {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 36px;
}

.button {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    padding: 12px 22px;
    border: 1px solid var(--brass);
    appearance: none;
    background: transparent;
    font-size: 0.88rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

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

.button--primary:hover,
.button--primary:focus-visible {
    border-color: var(--brass-light);
    background: var(--brass-light);
    color: var(--ink);
    transform: translateY(-2px);
}

.hero .button--primary,
.contact-band .button--primary {
    background: transparent;
    color: var(--brass-light);
}

.hero .button--primary:hover,
.hero .button--primary:focus-visible,
.contact-band .button--primary:hover,
.contact-band .button--primary:focus-visible {
    background: var(--brass);
    color: var(--ink);
}

.text-link {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    gap: 9px;
    padding: 4px 0;
    border-bottom: 1px solid var(--brass);
    color: var(--paper);
    font-size: 0.86rem;
    transition: color 160ms ease, gap 160ms ease;
}

.text-link:hover,
.text-link:focus-visible {
    gap: 13px;
    color: var(--brass-light);
}

.hero__media {
    position: relative;
    z-index: 1;
    grid-column: 2 / 3;
    grid-row: 1;
    min-width: 0;
    margin: 0;
    overflow: hidden;
    background: var(--ink-raised);
}

.hero__media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 56% center;
    transition: transform 1.1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero__media::after {
    position: absolute;
    z-index: 1;
    inset: 0 auto 0 0;
    width: clamp(180px, 23vw, 390px);
    background: linear-gradient(90deg, var(--ink) 0%, rgba(13, 13, 12, 0.8) 30%, rgba(13, 13, 12, 0.3) 70%, transparent 100%);
    content: "";
    pointer-events: none;
}

.hero__media:hover img {
    transform: scale(1.015);
}

.hero__media figcaption {
    position: absolute;
    z-index: 2;
    right: 20px;
    bottom: 18px;
    padding: 6px 10px;
    background: rgba(13, 13, 12, 0.84);
    color: var(--paper-muted);
    font-size: 0.66rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.work-section,
.services-section {
    padding-top: clamp(76px, 10vw, 140px);
    padding-bottom: clamp(76px, 10vw, 140px);
}

.work-section {
    padding-top: clamp(30px, 4vw, 52px);
    padding-bottom: clamp(36px, 4vw, 52px);
}

.services-section {
    padding-top: clamp(48px, 5vw, 72px);
}

.section-heading {
    margin-bottom: clamp(42px, 6vw, 72px);
}

.section-heading--split {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 40px;
}

.section-heading--split > p {
    max-width: 470px;
    margin-bottom: 6px;
    color: var(--paper-muted);
}

.work-feature {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.85fr);
    gap: clamp(34px, 5vw, 74px);
    align-items: center;
}

.work-feature__media {
    position: relative;
    display: block;
    min-width: 0;
    aspect-ratio: 1.5;
    overflow: hidden;
    background: var(--ink-raised);
}

.work-feature__poster {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    appearance: none;
    background: transparent;
    color: inherit;
    cursor: pointer;
}

.work-feature__poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 38%;
    transition: transform 600ms cubic-bezier(0.2, 0.8, 0.2, 1), filter 300ms ease;
}

.work-feature__poster:hover img,
.work-feature__poster:focus-visible img {
    filter: brightness(0.82);
    transform: scale(1.025);
}

.work-feature__media iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    display: grid;
    width: 76px;
    height: 76px;
    border: 1px solid var(--paper);
    border-radius: 50%;
    background: rgba(13, 13, 12, 0.64);
    color: var(--paper);
    font-size: 2rem;
    place-items: center;
    transform: translate(-50%, -50%);
    transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.work-feature__poster:hover .play-button,
.work-feature__poster:focus-visible .play-button {
    background: var(--paper);
    color: var(--ink);
    transform: translate(-50%, -50%) scale(1.05);
}

.work-feature__caption {
    position: absolute;
    bottom: 18px;
    left: 20px;
    color: var(--paper);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.work-feature__details > p:not(.eyebrow) {
    color: var(--paper-muted);
}

.work-feature__details h2 {
    margin-bottom: 18px;
    font-size: clamp(2.35rem, 4vw, 3.7rem);
}

.text-link--button {
    padding-right: 0;
    padding-left: 0;
    border-top: 0;
    border-right: 0;
    border-left: 0;
    appearance: none;
    background: transparent;
    cursor: pointer;
}

.work-resources {
    margin-top: 46px;
    border-top: 1px solid var(--line);
}

.work-resource-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 78px;
    gap: 20px;
    border-bottom: 1px solid var(--line);
    color: var(--paper);
    font-family: var(--display);
    font-size: 1.28rem;
    transition: color 160ms ease, padding-left 160ms ease;
}

.work-resource-link:hover,
.work-resource-link:focus-visible {
    padding-left: 8px;
    color: var(--brass-light);
}

.work-resource-link small,
.directions-player__identity small {
    display: block;
    margin-bottom: 2px;
    color: var(--brass);
    font-family: var(--sans);
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.directions-player__bar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px;
    align-items: center;
    border-bottom: 1px solid var(--line);
}

.directions-player__disclosure {
    display: flex;
    min-width: 0;
    min-height: 78px;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 0;
    border: 0;
    appearance: none;
    background: transparent;
    color: var(--paper);
    text-align: left;
    cursor: pointer;
}

.directions-player__identity {
    min-width: 0;
}

.directions-player__name {
    display: block;
    font-family: var(--display);
    font-size: 1.28rem;
    line-height: 1.25;
    transition: color 160ms ease;
}

.directions-player__view {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex: 0 0 auto;
    color: var(--paper-dim);
    font-family: var(--sans);
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.directions-player__view i {
    font-size: 0.72rem;
    transition: transform 180ms ease;
}

.directions-player.is-open .directions-player__view i {
    transform: rotate(180deg);
}

.directions-player__disclosure:hover .directions-player__name,
.directions-player__disclosure:focus-visible .directions-player__name {
    color: var(--brass-light);
}

.directions-player__play {
    display: grid;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 1px solid var(--paper-muted);
    border-radius: 50%;
    appearance: none;
    background: transparent;
    color: var(--paper);
    font-size: 1.05rem;
    cursor: pointer;
    place-items: center;
    transition: border-color 160ms ease, background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.directions-player__play:hover,
.directions-player__play:focus-visible,
.directions-player__play.is-playing {
    border-color: var(--brass-light);
    background: var(--brass-light);
    color: var(--ink);
    transform: scale(1.04);
}

.directions-player__panel {
    padding: 0 0 14px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    border-left: 1px solid var(--line);
    background:
        linear-gradient(145deg, rgba(35, 53, 70, 0.24), transparent 42%),
        var(--ink-raised);
}

.directions-player__now-playing {
    display: grid;
    grid-template-columns: 76px minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
    padding: 18px 18px 14px;
}

.directions-player__cover {
    width: 76px;
    height: 76px;
    aspect-ratio: 1;
    border: 1px solid rgba(240, 234, 223, 0.2);
    object-fit: cover;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.34);
}

.directions-player__now-playing p {
    display: grid;
    gap: 2px;
    margin: 0;
}

.directions-player__now-playing p > span,
.directions-player__position {
    color: var(--paper-dim);
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.directions-player__now-playing p > span {
    color: var(--brass-light);
}

.directions-player__now-playing strong {
    color: var(--paper);
    font-family: var(--display);
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.25;
}

.directions-player__track-copy small {
    overflow: hidden;
    color: var(--paper-dim);
    font-size: 0.66rem;
    line-height: 1.45;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.directions-player__position {
    align-self: start;
    padding-top: 2px;
}

.directions-player__audio {
    display: block;
    width: 100%;
    height: 44px;
    margin: 18px 0 22px;
    color-scheme: dark;
    accent-color: var(--brass);
}

.directions-player.has-custom-audio .directions-player__audio {
    display: none;
}

.directions-player__controls {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    align-items: center;
    gap: 14px;
    margin: 0;
    padding: 0 18px 18px;
}

.directions-player__play-slot {
    display: grid;
    min-width: 46px;
    min-height: 46px;
    place-items: center;
}

.directions-player__timeline {
    display: grid;
    min-width: 0;
    gap: 2px;
}

.directions-player__transport-meta {
    display: flex;
    min-height: 36px;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.directions-player__time-readout {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--paper-dim);
}

.directions-player__time {
    color: inherit;
    font-size: 0.66rem;
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.02em;
    line-height: 1;
}

.directions-player__range {
    --range-progress: 0%;
    width: 100%;
    min-width: 0;
    height: 32px;
    padding: 0;
    border: 0;
    appearance: none;
    background: transparent;
    color: var(--brass-light);
    cursor: pointer;
    accent-color: var(--brass-light);
}

.directions-player__range:focus-visible {
    outline: none;
}

.directions-player__range::-webkit-slider-runnable-track {
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(
        to right,
        var(--brass-light) 0 var(--range-progress),
        rgba(240, 234, 223, 0.22) var(--range-progress) 100%
    );
}

.directions-player__range::-webkit-slider-thumb {
    width: 14px;
    height: 14px;
    margin-top: -5.5px;
    border: 2px solid var(--ink);
    border-radius: 50%;
    appearance: none;
    background: var(--brass-light);
    box-shadow: 0 0 0 1px rgba(224, 193, 132, 0.5);
    transition: box-shadow 160ms ease, transform 160ms ease;
}

.directions-player__range:hover::-webkit-slider-thumb {
    box-shadow: 0 0 0 4px rgba(224, 193, 132, 0.16);
    transform: scale(1.08);
}

.directions-player__range:focus-visible::-webkit-slider-thumb {
    box-shadow: 0 0 0 2px var(--ink), 0 0 0 4px var(--brass-light);
    transform: scale(1.08);
}

.directions-player__range::-moz-range-track {
    height: 3px;
    border-radius: 999px;
    background: rgba(240, 234, 223, 0.22);
}

.directions-player__range::-moz-range-progress {
    height: 3px;
    border-radius: 999px;
    background: var(--brass-light);
}

.directions-player__range::-moz-range-thumb {
    width: 12px;
    height: 12px;
    border: 2px solid var(--ink);
    border-radius: 50%;
    background: var(--brass-light);
    box-shadow: 0 0 0 1px rgba(224, 193, 132, 0.5);
    transition: box-shadow 160ms ease, transform 160ms ease;
}

.directions-player__range:hover::-moz-range-thumb {
    box-shadow: 0 0 0 4px rgba(224, 193, 132, 0.16);
    transform: scale(1.08);
}

.directions-player__range:focus-visible::-moz-range-thumb {
    box-shadow: 0 0 0 2px var(--ink), 0 0 0 4px var(--brass-light);
    transform: scale(1.08);
}

.directions-player__range:disabled {
    opacity: 0.46;
    cursor: wait;
}

.directions-player__volume-controls {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 8px;
}

.directions-player__volume-controls.has-hardware-volume {
    display: flex;
}

.directions-player__volume-button {
    display: grid;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    appearance: none;
    background: transparent;
    color: var(--paper-muted);
    cursor: pointer;
    place-items: center;
    transition: background-color 160ms ease, color 160ms ease;
}

.directions-player__volume-button i {
    color: currentColor;
    font-size: 0.96rem;
}

.directions-player__volume-button:hover,
.directions-player__volume-button:focus-visible,
.directions-player__volume-button[aria-pressed="true"] {
    background: rgba(199, 162, 92, 0.1);
    color: var(--brass-light);
}

.directions-player__volume {
    width: 72px;
    height: 24px;
}

.directions-player.is-buffering .directions-player__play {
    border-color: var(--brass-light);
    box-shadow: 0 0 0 5px rgba(224, 193, 132, 0.08);
}

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

.directions-player__tracks li {
    margin: 0;
}

.directions-player__tracks button {
    display: grid;
    grid-template-columns: 2ch minmax(0, 1fr) auto 18px;
    width: 100%;
    min-height: 52px;
    align-items: center;
    gap: 12px;
    padding: 8px 18px;
    border: 0;
    border-bottom: 1px solid var(--line);
    appearance: none;
    background: transparent;
    color: var(--paper-muted);
    font-family: var(--sans);
    font-size: 0.78rem;
    text-align: left;
    cursor: pointer;
    transition: background-color 160ms ease, color 160ms ease;
}

.directions-player__tracks li:last-child button {
    border-bottom: 0;
}

.directions-player__tracks button:hover,
.directions-player__tracks button:focus-visible {
    background: rgba(240, 234, 223, 0.045);
    color: var(--paper);
}

.directions-player__tracks button[aria-current="true"] {
    background: rgba(199, 162, 92, 0.08);
    box-shadow: inset 2px 0 var(--brass);
    color: var(--paper);
}

.directions-player__track-number,
.directions-player__tracks time {
    color: var(--paper-dim);
    font-size: 0.68rem;
    font-variant-numeric: tabular-nums;
}

.directions-player__track-indicator {
    color: var(--brass-light);
    font-size: 0.42rem;
    visibility: hidden;
}

.directions-player__tracks button[aria-current="true"] .directions-player__track-indicator {
    visibility: visible;
}

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

.service-item {
    position: relative;
    display: flex;
    min-height: 340px;
    flex-direction: column;
    padding: 30px clamp(20px, 2.8vw, 38px) 28px 0;
    border-bottom: 1px solid var(--line);
}

.service-item:not(:nth-child(3n + 1)) {
    padding-left: clamp(20px, 2.8vw, 38px);
    border-left: 1px solid var(--line);
}

.service-item__number {
    margin-bottom: 30px;
    color: var(--brass);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.16em;
}

.service-item h3 {
    margin-bottom: 18px;
}

.service-item h3 a {
    transition: color 160ms ease;
}

.service-item h3 a:hover,
.service-item h3 a:focus-visible {
    color: var(--brass-light);
}

.service-item p {
    max-width: 36ch;
    margin-bottom: 28px;
    color: var(--paper-muted);
    font-size: 0.92rem;
}

.service-item__link {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    gap: 9px;
    margin-top: auto;
    color: var(--paper-dim);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: color 160ms ease, gap 160ms ease;
}

.service-item__link:hover,
.service-item__link:focus-visible {
    gap: 13px;
    color: var(--brass-light);
}

.testimonials-section {
    padding-top: clamp(76px, 9vw, 126px);
    padding-bottom: clamp(76px, 9vw, 126px);
    background: var(--ink-raised);
}

.quote-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid var(--line);
}

.quote {
    margin: 0;
    padding: clamp(34px, 5vw, 66px) clamp(28px, 5vw, 68px) 0 0;
}

.quote + .quote {
    padding-right: 0;
    padding-left: clamp(28px, 5vw, 68px);
    border-left: 1px solid var(--line);
}

.quote blockquote {
    margin: 0 0 32px;
    font-family: var(--display);
    font-size: clamp(1.42rem, 2.5vw, 2.15rem);
    line-height: 1.48;
}

.quote figcaption {
    display: grid;
    gap: 2px;
    color: var(--paper-muted);
    font-size: 0.78rem;
    letter-spacing: 0.04em;
}

.quote figcaption strong {
    color: var(--brass-light);
    font-weight: 600;
}

.contact-band {
    border-top: 1px solid var(--line-strong);
    border-bottom: 1px solid var(--line);
}

.contact-band__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr) auto;
    gap: clamp(32px, 5vw, 72px);
    align-items: center;
    padding-top: clamp(52px, 6vw, 84px);
    padding-bottom: clamp(52px, 6vw, 84px);
}

.contact-band h2 {
    margin-bottom: 18px;
    font-size: clamp(2.4rem, 4vw, 3.7rem);
}

.contact-band p:not(.eyebrow) {
    max-width: 560px;
    margin-bottom: 0;
    color: var(--paper-muted);
}

.contact-band__details {
    display: grid;
    gap: 13px;
    min-width: 0;
}

.contact-band__details a {
    display: flex;
    align-items: center;
    gap: 13px;
    min-width: 0;
    color: var(--paper-muted);
    overflow-wrap: anywhere;
    transition: color 160ms ease;
}

.contact-band__details a:hover,
.contact-band__details a:focus-visible {
    color: var(--brass-light);
}

.contact-band__details i {
    color: var(--brass);
}

.site-footer {
    background: #090909;
}

.site-footer__inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 40px;
    align-items: center;
    min-height: 128px;
}

.footer-socials {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(16px, 3vw, 34px);
}

.footer-socials a {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    gap: 9px;
    color: var(--paper-muted);
    font-size: 0.78rem;
    transition: color 160ms ease;
}

.footer-socials a:hover,
.footer-socials a:focus-visible {
    color: var(--brass-light);
}

.footer-socials i {
    font-size: 1rem;
}

.site-footer__meta {
    margin: 0;
    color: var(--paper-dim);
    font-size: 0.72rem;
}

/* Service and editorial pages */
.inner-hero {
    position: relative;
    display: flex;
    min-height: clamp(430px, 48vw, 620px);
    align-items: flex-end;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
}

.inner-hero__media {
    position: absolute;
    z-index: 0;
    inset: 0 0 0 34%;
    overflow: hidden;
}

.inner-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 58% center;
}

.inner-hero__media::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--ink) 0%, rgba(13, 13, 12, 0.94) 16%, rgba(13, 13, 12, 0.55) 46%, rgba(13, 13, 12, 0.12) 78%, rgba(13, 13, 12, 0.18) 100%);
    content: "";
}

.inner-hero__content {
    position: relative;
    z-index: 1;
    padding-top: clamp(90px, 12vw, 150px);
    padding-bottom: clamp(64px, 8vw, 96px);
}

.inner-hero__content h1 {
    max-width: 860px;
    margin-bottom: 26px;
    font-size: clamp(4.5rem, 8vw, 7.5rem);
}

.inner-hero__content > p:not(.eyebrow) {
    max-width: 48ch;
    margin-bottom: 0;
    color: var(--paper-muted);
    font-size: clamp(1rem, 1.4vw, 1.18rem);
}

.service-content {
    padding-top: clamp(76px, 9vw, 124px);
    padding-bottom: clamp(86px, 10vw, 144px);
}

.content-intro {
    max-width: 900px;
    margin-inline: auto;
    padding-bottom: clamp(44px, 6vw, 72px);
}

.content-intro h2 {
    max-width: 900px;
}

.prose-copy {
    max-width: 900px;
    margin-inline: auto;
    color: var(--paper-muted);
    font-size: clamp(1.05rem, 1.4vw, 1.2rem);
    line-height: 1.85;
}

.prose-copy p + p {
    margin-top: 24px;
}

.feature-list-modern {
    display: grid;
    gap: 0;
    margin: 0;
    padding-left: 1.2em;
}

.feature-list-modern li {
    padding: 18px 0 18px 6px;
    border-top: 1px solid var(--line);
    color: var(--paper);
    font-family: var(--display);
    font-size: clamp(1.35rem, 2vw, 1.85rem);
    line-height: 1.25;
}

.feature-list-modern li::marker {
    color: var(--brass);
}

.feature-list-modern li:last-child {
    border-bottom: 1px solid var(--line);
}

.media-section {
    margin-top: clamp(78px, 10vw, 138px);
    padding-top: clamp(46px, 6vw, 72px);
    border-top: 1px solid var(--line);
}

.media-section__heading {
    max-width: 900px;
    margin-inline: auto;
    margin-bottom: clamp(40px, 6vw, 70px);
}

.media-section__heading h2 {
    font-size: clamp(2.8rem, 5vw, 4.6rem);
}

.embed-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(34px, 5vw, 68px) clamp(24px, 4vw, 48px);
}

.embed-grid--single {
    grid-template-columns: minmax(0, 900px);
    justify-content: center;
}

.embed-card {
    min-width: 0;
    margin: 0;
    padding-top: 16px;
    border-top: 1px solid var(--line);
}

.embed-card--spotify {
    padding-top: 0;
    border-top: 0;
}

.embed-card > p {
    margin: 16px 0 0;
    color: var(--paper-muted);
}

.media-note {
    display: flex;
    align-items: center;
    gap: 10px;
}

.media-note i {
    color: var(--brass-light);
}

.media-frame {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--ink-raised);
}

.media-frame iframe,
.spotify-frame iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

.spotify-frame {
    height: 152px;
    min-height: 152px;
    overflow: hidden;
    border-radius: 12px;
}

.media-section.media-section--streaming {
    margin-top: clamp(64px, 8vw, 100px);
    padding-block: 0;
    border-top: 0;
}

.media-section--streaming + .media-section {
    margin-top: clamp(56px, 7vw, 82px);
}

.streaming-callout {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: clamp(18px, 3vw, 32px);
    align-items: center;
    max-width: 900px;
    margin-inline: auto;
    padding-block: clamp(28px, 4vw, 42px);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.streaming-callout__icon {
    display: grid;
    width: 52px;
    height: 52px;
    border: 1px solid var(--line);
    color: var(--paper-muted);
    font-size: 1.45rem;
    place-items: center;
}

.streaming-callout h2 {
    margin: 0;
    font-size: clamp(1.9rem, 3vw, 2.6rem);
}

.streaming-callout p {
    margin: 5px 0 0;
    color: var(--paper-muted);
}

.streaming-callout .button {
    min-width: 190px;
}

.button--secondary {
    gap: 10px;
    background: transparent;
    color: var(--brass-light);
}

.button--secondary:hover,
.button--secondary:focus-visible {
    background: var(--brass);
    color: var(--ink);
    transform: translateY(-2px);
}

.download-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 36px;
    align-items: center;
    margin-top: clamp(78px, 10vw, 138px);
    padding: clamp(34px, 5vw, 58px) 0;
    border-top: 1px solid var(--line-strong);
    border-bottom: 1px solid var(--line);
}

.download-panel h2 {
    font-size: clamp(2.5rem, 4vw, 4rem);
}

.testimonial-list {
    padding-top: clamp(40px, 5vw, 64px);
    padding-bottom: clamp(80px, 10vw, 140px);
}

.testimonials-page .inner-hero {
    min-height: clamp(430px, 42vw, 520px);
}

.full-testimonial {
    display: grid;
    grid-template-columns: 80px minmax(0, 1fr);
    gap: clamp(24px, 5vw, 76px);
    margin: 0;
    padding: clamp(52px, 7vw, 88px) 0;
    border-bottom: 1px solid var(--line);
}

.full-testimonial__number {
    padding-top: 8px;
    color: var(--brass-light);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
}

.full-testimonial blockquote {
    max-width: 1000px;
    margin: 0;
    color: var(--paper);
    font-family: var(--display);
    font-size: clamp(1.3rem, 2vw, 1.8rem);
    line-height: 1.55;
}

.full-testimonial figcaption {
    display: grid;
    grid-column: 2;
    max-width: 900px;
    gap: 4px;
    color: var(--paper-muted);
    font-size: 0.82rem;
    line-height: 1.6;
}

.full-testimonial figcaption strong {
    color: var(--brass-light);
    font-family: var(--display);
    font-size: clamp(1.12rem, 1.5vw, 1.32rem);
    font-weight: 500;
    line-height: 1.3;
}

/* Contact page */
.contact-page-main {
    min-height: calc(100svh - var(--header-height));
    padding-top: clamp(64px, 9vw, 130px);
    padding-bottom: clamp(80px, 10vw, 150px);
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
    gap: clamp(54px, 9vw, 140px);
    align-items: start;
}

.contact-intro {
    position: sticky;
    top: calc(var(--header-height) + 56px);
}

.contact-intro h1 {
    margin-bottom: 32px;
    font-size: clamp(4rem, 7vw, 6.5rem);
}

.contact-intro > p:not(.eyebrow) {
    max-width: 42ch;
    color: var(--paper-muted);
}

.contact-details {
    display: grid;
    gap: 13px;
    margin-top: 36px;
    padding-top: 30px;
    border-top: 1px solid var(--line);
}

.contact-details a {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 44px;
    color: var(--paper-muted);
    overflow-wrap: anywhere;
    transition: color 160ms ease;
}

.contact-details a:hover,
.contact-details a:focus-visible {
    color: var(--brass-light);
}

.contact-details i {
    color: var(--brass);
}

.contact-socials {
    display: flex;
    gap: 8px;
    margin-top: 26px;
}

.contact-socials a {
    display: grid;
    width: 46px;
    height: 46px;
    border: 1px solid var(--line);
    color: var(--paper-muted);
    place-items: center;
    transition: border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.contact-socials a:hover,
.contact-socials a:focus-visible {
    border-color: var(--brass);
    color: var(--brass-light);
    transform: translateY(-2px);
}

.contact-form-wrap {
    padding: clamp(28px, 5vw, 60px);
    border: 1px solid var(--line);
    background: var(--ink-raised);
}

.contact-form-wrap h2 {
    margin-bottom: 14px;
    font-size: clamp(2.15rem, 4vw, 3.35rem);
}

#form-title:focus-visible {
    outline: none;
}

.contact-form {
    display: grid;
    gap: 0;
}

.verification-gate {
    display: grid;
    align-content: center;
    min-height: 360px;
    max-width: 560px;
    margin-inline: auto;
    text-align: center;
}

.verification-gate[aria-busy="true"] {
    cursor: progress;
}

.verification-gate h2 {
    margin: 0;
}

.verification-gate > p,
.contact-form__intro,
.contact-form__success p {
    color: var(--paper-muted);
}

.verification-gate > p {
    max-width: 44ch;
    margin: 4px auto 26px;
}

.verification-gate .verification-wrap {
    display: grid;
    justify-items: center;
}

.verification-loading {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-inline: auto;
    padding: 12px 18px;
    border: 1px solid var(--line);
    color: var(--paper-muted);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.verification-loading__indicator {
    width: 17px;
    height: 17px;
    border: 2px solid rgba(240, 234, 223, 0.2);
    border-top-color: var(--brass-light);
    border-radius: 50%;
    animation: verification-spin 800ms linear infinite;
}

.verification-fallback {
    display: grid;
    justify-items: center;
    gap: 16px;
    width: min(100%, 470px);
    margin-inline: auto;
    padding: 22px;
    border: 1px solid var(--line);
    background: rgba(13, 13, 12, 0.52);
}

.verification-fallback > p {
    margin: 0;
    color: var(--paper-muted);
}

.verification-retry {
    min-width: 172px;
    min-height: 50px;
}

.verification-fallback__label {
    padding-top: 4px;
    color: var(--paper-dim) !important;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.verification-fallback__links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.verification-fallback__links a {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 10px 15px;
    border: 1px solid var(--line);
    color: var(--paper-muted);
    font-size: 0.82rem;
    font-weight: 500;
    transition: border-color 160ms ease, color 160ms ease, background-color 160ms ease;
}

.verification-fallback__links a:hover,
.verification-fallback__links a:focus-visible {
    border-color: var(--brass);
    background: rgba(199, 162, 92, 0.08);
    color: var(--brass-light);
}

.verification-noscript {
    display: grid;
    justify-items: center;
    gap: 18px;
    width: min(100%, 470px);
    margin-inline: auto;
    padding: 22px;
    border: 1px solid var(--line);
    background: rgba(13, 13, 12, 0.52);
}

.verification-noscript p {
    margin: 0;
    color: var(--paper-muted);
}

html:not(.js) .verification-gate > [data-verification-message],
html:not(.js) .verification-loading,
html:not(.js) .verification-wrap,
html:not(.js) .verification-fallback {
    display: none !important;
}

@keyframes verification-spin {
    to {
        transform: rotate(360deg);
    }
}

.contact-form__fields {
    display: grid;
    gap: 22px;
}

.contact-form__intro {
    margin: -8px 0 14px;
}

.contact-form__success {
    display: grid;
    min-height: 360px;
    align-content: center;
    justify-items: center;
    text-align: center;
}

.contact-form__success > i {
    margin-bottom: 18px;
    color: var(--brass-light);
    font-size: 2rem;
}

.contact-form__success h2,
.contact-form__success p {
    margin: 0;
}

.contact-form__success p {
    margin-top: 10px;
}

.contact-form__success .button {
    min-width: 220px;
    margin-top: 28px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.form-field {
    min-width: 0;
}

.form-field label {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 9px;
    color: var(--paper);
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.required-mark {
    color: var(--brass-light);
    font-size: 0.64rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    white-space: nowrap;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    min-height: 54px;
    padding: 13px 14px;
    border: 1px solid var(--line);
    border-radius: 0;
    background: var(--ink);
    color: var(--paper);
    transition: border-color 160ms ease, background-color 160ms ease;
}

.form-field input,
.form-field select {
    height: 54px;
    line-height: 1.25;
}

.form-field textarea {
    min-height: 180px;
    resize: vertical;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: #7f7a72;
}

.form-field input:hover,
.form-field select:hover,
.form-field textarea:hover {
    border-color: rgba(240, 234, 223, 0.34);
}

.form-field input:focus-visible,
.form-field select:focus-visible,
.form-field textarea:focus-visible {
    border-color: var(--brass);
    outline: 2px solid var(--brass-light);
    outline-offset: 2px;
}

.form-field [aria-invalid="true"] {
    border-color: var(--danger);
}

.field-error {
    min-height: 0;
    margin: 0;
    color: var(--danger);
    font-size: 0.74rem;
}

.field-error:not(:empty) {
    min-height: 20px;
    margin-top: 6px;
}

.form-status {
    min-height: 26px;
    margin: 0;
    color: var(--paper-muted);
    font-size: 0.84rem;
}

.form-status:empty {
    display: none;
}

.form-status.is-error {
    color: var(--danger);
}

.form-status.is-success {
    color: var(--success);
}

.contact-form__footer {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-items: center;
}

.submit-button {
    gap: 10px;
    width: 100%;
    min-height: 58px;
    font-size: 0.94rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.submit-button:disabled {
    cursor: wait;
    opacity: 0.58;
    transform: none;
}

.is-spinning {
    animation: spin 850ms linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.verification-wrap {
    min-height: 66px;
}

.verification-wrap.has-error {
    padding-left: 12px;
    border-left: 2px solid var(--danger);
}

@media (prefers-reduced-motion: no-preference) {
    .js [data-reveal] {
        opacity: 0;
        transform: translateY(28px);
        transition:
            opacity 780ms cubic-bezier(0.2, 0.7, 0.2, 1),
            transform 780ms cubic-bezier(0.2, 0.7, 0.2, 1);
    }

    .js [data-reveal="left"] {
        transform: translateX(-32px);
    }

    .js [data-reveal="right"] {
        transform: translateX(32px);
    }

    .js [data-reveal].is-visible {
        opacity: 1;
        transform: translate(0, 0);
    }
}

@media (max-width: 1120px) {
    .site-nav {
        gap: 18px;
    }

    .site-nav__links {
        gap: 17px;
    }

    .header-socials {
        padding-left: 14px;
    }

    .header-socials a {
        width: 36px;
    }

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

    .contact-band__inner > .button {
        justify-self: start;
    }
}

@media (max-width: 900px) {
    :root {
        --header-height: 70px;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .site-nav {
        position: fixed;
        top: var(--header-height);
        right: 0;
        left: 0;
        display: none;
        width: 100%;
        height: calc(100vh - var(--header-height));
        height: calc(100dvh - var(--header-height));
        min-height: 0;
        overflow-y: auto;
        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;
        touch-action: pan-y;
        align-items: stretch;
        flex-direction: column;
        gap: 30px;
        padding: 28px var(--gutter) max(44px, calc(20px + env(safe-area-inset-bottom)));
        border-top: 1px solid var(--line);
        background: var(--ink);
        z-index: 1;
    }

    .site-nav.is-open {
        display: flex;
    }

    .site-nav__links {
        display: grid;
        align-items: stretch;
        gap: 0;
    }

    .site-nav__links > a,
    .services-nav__toggle {
        width: 100%;
        min-height: 58px;
        justify-content: space-between;
        border-bottom: 1px solid var(--line);
        font-family: var(--display);
        font-size: 1.55rem;
        font-weight: 500;
    }

    .site-nav__links > a::after,
    .services-nav__toggle::after {
        display: none;
    }

    .services-nav__menu {
        position: static;
        display: none;
        width: 100%;
        padding: 10px 0 18px 20px;
        border: 0;
        border-bottom: 1px solid var(--line);
        background: transparent;
        opacity: 1;
        pointer-events: auto;
        transform: none;
    }

    .services-nav.is-open .services-nav__menu {
        display: grid;
    }

    .services-nav__menu a {
        min-height: 44px;
        padding: 10px 0;
        font-size: 0.9rem;
    }

    .header-socials {
        justify-content: flex-start;
        gap: 10px;
        padding: 20px 0 0;
        border-top: 1px solid var(--line);
        border-left: 0;
    }

    .header-socials a {
        width: 48px;
        height: 48px;
        border: 1px solid var(--line);
    }

    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero__copy {
        grid-column: 1;
        grid-row: 1;
        padding: 64px var(--gutter) 54px;
    }

    .hero__media {
        grid-column: 1;
        grid-row: 2;
        height: clamp(390px, 70vw, 540px);
        min-height: 0;
        border-top: 1px solid var(--line);
        border-left: 0;
    }

    .hero__media img {
        min-height: 0;
    }

    .hero__media::after {
        inset: 0 0 auto;
        width: 100%;
        height: 120px;
        background: linear-gradient(180deg, var(--ink) 0%, rgba(13, 13, 12, 0.74) 28%, rgba(13, 13, 12, 0.22) 72%, transparent 100%);
    }

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

    .work-feature__details {
        max-width: 660px;
    }

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

    .service-item,
    .service-item:not(:nth-child(3n + 1)) {
        padding: 28px 28px 28px 0;
        border-left: 0;
    }

    .service-item:nth-child(even) {
        padding-right: 0;
        padding-left: 28px;
        border-left: 1px solid var(--line);
    }

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

    .contact-intro {
        position: static;
    }
}

@media (max-width: 700px) {
    .wordmark {
        font-size: 1.03rem;
        letter-spacing: 0.16em;
    }

    .section-heading--split {
        align-items: flex-start;
        flex-direction: column;
        gap: 22px;
    }

    .hero__copy {
        padding: 40px var(--gutter) 34px;
    }

    .hero__services {
        display: none;
    }

    .hero .button-row {
        margin-top: 28px;
    }

    .hero__media,
    .hero__media img {
        min-height: 0;
    }

    .hero__media {
        height: clamp(230px, 58vw, 300px);
    }

    .hero__media img {
        object-position: 56% center;
    }

    .hero__media::after {
        height: 82px;
    }

    .work-resources {
        margin-top: 38px;
    }

    .directions-player__panel {
        padding: 0 0 12px;
    }

    .directions-player__now-playing {
        grid-template-columns: 72px minmax(0, 1fr) auto;
        gap: 12px;
        padding: 16px;
    }

    .directions-player__cover {
        width: 72px;
        height: 72px;
    }

    .directions-player__controls {
        gap: 12px;
        padding: 0 16px 16px;
    }

    .directions-player__volume {
        display: none;
    }

    .directions-player__tracks button {
        gap: 10px;
        padding-right: 16px;
        padding-left: 16px;
    }

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

    .service-item,
    .service-item:not(:nth-child(3n + 1)),
    .service-item:nth-child(even) {
        min-height: 0;
        padding: 28px 0;
        border-left: 0;
    }

    .quote {
        padding: 38px 0;
    }

    .quote + .quote {
        padding: 38px 0;
        border-top: 1px solid var(--line);
        border-left: 0;
    }

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

    .site-footer__inner {
        grid-template-columns: 1fr;
        gap: 20px;
        justify-items: start;
        padding-top: 38px;
        padding-bottom: 38px;
    }

    .footer-socials {
        flex-wrap: wrap;
        justify-content: flex-start;
    }

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

    .contact-form__footer {
        align-items: stretch;
        flex-direction: column;
    }

    .submit-button {
        width: 100%;
    }
}

@media (max-width: 700px) and (prefers-reduced-motion: no-preference) {
    .js [data-reveal="left"],
    .js [data-reveal="right"] {
        transform: translateY(28px);
    }
}

@media (max-width: 480px) {
    body {
        font-size: 15px;
    }

    .site-header__inner {
        gap: 14px;
    }

    .menu-toggle span {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
    }

    h1 {
        font-size: clamp(3.75rem, 20vw, 5rem);
    }

    .hero h1 {
        font-size: clamp(3.45rem, 16vw, 4.25rem);
        white-space: normal;
    }

    h2 {
        font-size: clamp(2.35rem, 14vw, 3.3rem);
    }

    .hero {
        padding-top: 0;
    }

    .hero__copy {
        padding-top: 34px;
        padding-bottom: 30px;
    }

    .hero__voice {
        margin-bottom: 0;
        font-size: 1.05rem;
        line-height: 1.42;
    }

    .hero .button-row {
        align-items: center;
        flex-direction: row;
        gap: 18px;
    }

    .hero .button-row .button {
        width: auto;
        min-width: 132px;
        flex: 0 0 auto;
        padding-right: 18px;
        padding-left: 18px;
    }

    .hero .button-row .text-link {
        width: auto;
        min-width: 0;
        flex: 1;
        justify-content: flex-end;
    }

    .hero__media,
    .hero__media img {
        min-height: 0;
    }

    .hero__media {
        height: clamp(220px, 56vw, 250px);
    }

    .hero__media figcaption {
        right: 12px;
        bottom: 12px;
    }

    .directions-player__view > span {
        display: none;
    }

    .play-button {
        width: 64px;
        height: 64px;
    }

    .contact-form-wrap {
        margin-inline: 0;
        padding: 26px 20px;
    }

    .contact-details a,
    .contact-band__details a {
        font-size: 0.9rem;
    }
}

@media (max-width: 380px) {
    .hero__copy {
        padding-top: 30px;
        padding-bottom: 26px;
    }

    .hero__media {
        height: 190px;
    }

    .hero .button-row {
        align-items: stretch;
        flex-direction: column;
        gap: 12px;
    }

    .hero .button-row .button,
    .hero .button-row .text-link {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 900px) {
    .inner-hero {
        min-height: 500px;
    }

    .inner-hero__media {
        inset: 0;
    }

    .inner-hero__media::after {
        background: linear-gradient(90deg, rgba(13, 13, 12, 0.98) 0%, rgba(13, 13, 12, 0.86) 38%, rgba(13, 13, 12, 0.34) 78%, rgba(13, 13, 12, 0.2) 100%);
    }

    .inner-hero__content {
        padding-top: 96px;
        padding-bottom: 64px;
    }

    .inner-hero__content h1 {
        font-size: clamp(4rem, 12vw, 6rem);
    }

    .content-intro,
    .media-section__heading {
        max-width: 900px;
    }

    .content-intro h2,
    .media-section__heading h2 {
        max-width: 900px;
    }

    .prose-copy {
        margin-left: 0;
    }

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

    .embed-grid--single {
        grid-template-columns: 1fr;
    }

    .contact-layout {
        grid-template-columns: minmax(0, 1fr);
    }

    .contact-form-wrap {
        min-width: 0;
    }
}

@media (max-width: 700px) {
    .inner-hero {
        min-height: 460px;
    }

    .inner-hero__media img {
        object-position: 62% center;
    }

    .inner-hero__media::after {
        background: linear-gradient(90deg, rgba(13, 13, 12, 0.99) 0%, rgba(13, 13, 12, 0.88) 48%, rgba(13, 13, 12, 0.42) 100%);
    }

    .inner-hero__content h1 {
        font-size: clamp(3.6rem, 17vw, 5rem);
        white-space: normal;
    }

    .testimonials-page .inner-hero__content h1 {
        font-size: clamp(3rem, 14vw, 4.25rem);
    }

    .service-content {
        padding-top: 66px;
        padding-bottom: 88px;
    }

    .streaming-callout {
        grid-template-columns: auto minmax(0, 1fr);
    }

    .streaming-callout .button {
        grid-column: 1 / -1;
        width: 100%;
    }

    .verification-gate,
    .contact-form__success {
        min-height: 300px;
    }

    .media-section {
        margin-top: 76px;
        padding-top: 42px;
    }

    .download-panel {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .download-panel .button {
        width: 100%;
    }

    .full-testimonial {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 52px 0;
    }

    .full-testimonial figcaption {
        grid-column: 1;
    }
}

@media (forced-colors: active) {
    .directions-player__controls,
    .directions-player__volume-button {
        border-color: CanvasText;
    }

    .directions-player__range {
        accent-color: Highlight;
    }

    .directions-player__range:focus-visible {
        outline: 2px solid Highlight;
        outline-offset: 2px;
    }

    .directions-player__range::-webkit-slider-runnable-track {
        background: CanvasText;
    }

    .directions-player__range::-webkit-slider-thumb,
    .directions-player__range::-moz-range-thumb {
        border-color: Canvas;
        background: Highlight;
        box-shadow: none;
    }

    .directions-player__range::-moz-range-track {
        background: CanvasText;
    }

    .directions-player__range::-moz-range-progress {
        background: Highlight;
    }
}

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

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