/*
Theme Name: ASMAR Records V4
Theme URI: https://asmar-records.com
Author: ASMAR Records
Description: WordPress theme converted from the ASMAR Records website, with individual release pages, blog post pages, audio/artwork management and editable homepage content. Fresh install package.
Version: 1.3.0
Text Domain: asmar-records-v4
*/

:root {
    --asmar-night: #0e0e0c;
    --asmar-deep: #12110c;
    --asmar-surface: #191711;
    --asmar-bronze: #2d281d;
    --asmar-gold: #d6b36a;
    --asmar-gold-light: #f0d392;
    --asmar-ivory: #f1e4c8;
    --asmar-muted: #9a9486;
    --asmar-ember: #9c5b2d;
    --asmar-serif: "EB Garamond", Georgia, serif;
    --asmar-sans: "Inter", Arial, sans-serif;
    --asmar-mono: "Courier New", monospace;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    background: var(--asmar-night);
    color: var(--asmar-ivory);
    font-family: var(--asmar-sans);
    -webkit-font-smoothing: antialiased;
}

body::selection,
*::selection {
    background: var(--asmar-gold);
    color: var(--asmar-night);
}

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

button,
input,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

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

.asmar-page {
    position: relative;
    min-height: 100vh;
    overflow-x: hidden;
    background: var(--asmar-night);
}

.asmar-texture {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: .1;
    background-image: radial-gradient(#191711 1px, transparent 1px);
    background-size: 16px 16px;
}

.asmar-header {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    width: 100%;
    padding: 14px 48px;
    border-bottom: 1px solid var(--asmar-bronze);
    background: var(--asmar-night);
}

.asmar-nav {
    display: flex;
    align-items: center;
    gap: 32px;
    color: var(--asmar-muted);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .25em;
    text-transform: uppercase;
}

.asmar-nav a {
    transition: color .2s ease;
}

.asmar-nav a:hover,
.asmar-nav .is-active {
    color: var(--asmar-ivory);
}

.asmar-nav .is-active {
    color: var(--asmar-gold);
}

.asmar-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: clamp(160px, 17vw, 230px);
    height: 104px;
}

.asmar-brand img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.asmar-hero,
.asmar-section,
.asmar-action-row {
    position: relative;
    z-index: 10;
    width: min(100%, 1280px);
    margin: 0 auto;
    padding-right: 48px;
    padding-left: 48px;
}

.asmar-hero {
    display: flex;
    align-items: center;
    min-height: clamp(560px, 72vh, 760px);
    overflow: hidden;
    padding-top: 118px;
    padding-bottom: 180px;
    background:
        linear-gradient(90deg, rgba(14, 14, 12, .96) 0%, rgba(14, 14, 12, .86) 34%, rgba(14, 14, 12, .28) 70%, rgba(14, 14, 12, .84) 100%),
        linear-gradient(0deg, rgba(14, 14, 12, 1) 0%, rgba(14, 14, 12, .18) 40%, rgba(14, 14, 12, .74) 100%),
        var(--asmar-hero-image);
    background-position: center right;
    background-size: cover;
    box-shadow: inset 0 -140px 120px rgba(14, 14, 12, .94);
}

.asmar-hero__copy {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 470px;
    gap: 34px;
    margin-left: clamp(0px, 4vw, 72px);
}

.asmar-hero h1 {
    margin: 0;
    color: var(--asmar-ivory);
    font-family: var(--asmar-serif);
    font-size: clamp(52px, 6vw, 78px);
    font-weight: 300;
    line-height: 1.05;
    letter-spacing: 0;
    text-shadow: 0 3px 24px rgba(0, 0, 0, .64);
}

.asmar-gold-button {
    width: fit-content;
    border: 0;
    border-radius: 4px;
    padding: 16px 32px;
    background: var(--asmar-gold);
    color: var(--asmar-night);
    box-shadow: 0 20px 45px rgba(0, 0, 0, .35);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .22em;
    text-transform: uppercase;
    transition: background .25s ease, transform .25s ease;
}

.asmar-gold-button:hover {
    background: var(--asmar-gold-light);
    transform: translateY(-1px);
}

.asmar-hero__location {
    margin: 0;
    color: var(--asmar-gold);
    font-family: var(--asmar-mono);
    font-size: 10px;
    letter-spacing: .28em;
    text-transform: uppercase;
}

.asmar-action-row {
    margin-top: -118px;
    padding-top: 0;
    padding-bottom: 40px;
}

.asmar-action-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: min(100%, 860px);
    margin: 0 auto;
    border: 1px solid rgba(214, 179, 106, .14);
    background: rgba(7, 7, 6, .88);
    box-shadow: 0 30px 90px rgba(0, 0, 0, .58);
    backdrop-filter: blur(8px);
}

.asmar-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 162px;
    gap: 16px;
    border: 0;
    border-right: 1px solid var(--asmar-bronze);
    background: transparent;
    color: var(--asmar-ivory);
    text-align: center;
    transition: background .25s ease;
}

.asmar-action:last-child {
    border-right: 0;
}

.asmar-action:hover {
    background: rgba(25, 23, 17, .32);
}

.asmar-action span:last-child,
.asmar-action button {
    color: var(--asmar-ivory);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .25em;
    text-transform: uppercase;
}

.asmar-action__icon {
    color: var(--asmar-gold);
    font-size: 25px;
    line-height: 1;
}

.asmar-quote {
    position: relative;
    z-index: 10;
    padding: 64px 24px;
    text-align: center;
}

.asmar-quote p {
    max-width: 672px;
    margin: 0 auto;
    color: var(--asmar-ivory);
    font-family: var(--asmar-serif);
    font-size: clamp(28px, 3vw, 36px);
    font-style: italic;
    font-weight: 300;
}

.asmar-quote span {
    display: block;
    margin-top: 18px;
    color: var(--asmar-muted);
    font-family: var(--asmar-mono);
    font-size: 10px;
    letter-spacing: .3em;
}

.asmar-section {
    padding-top: 96px;
    padding-bottom: 96px;
    border-top: 1px solid var(--asmar-bronze);
}

.asmar-section-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 64px;
}

.asmar-section-title span {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--asmar-bronze));
}

.asmar-section-title span:last-child {
    background: linear-gradient(to left, transparent, var(--asmar-bronze));
}

.asmar-section-title h2,
.asmar-editorial__heading h2,
.asmar-demos > h2 {
    margin: 0;
    color: var(--asmar-gold);
    font-family: var(--asmar-serif);
    font-size: clamp(32px, 4vw, 42px);
    font-weight: 300;
    letter-spacing: .2em;
    text-align: center;
}

.asmar-release-grid,
.asmar-article-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 48px;
}

.asmar-release-card {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.asmar-cover {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border: 1px solid var(--asmar-bronze);
    border-radius: 4px;
    background: var(--asmar-deep);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .35);
    padding: 0;
}

.asmar-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1);
    opacity: .75;
    transition: filter .45s ease, opacity .45s ease, transform .45s ease;
}

.asmar-cover:hover img {
    filter: grayscale(0);
    opacity: .96;
    transform: scale(1.02);
}

.asmar-cover__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(14, 14, 12, .4);
    opacity: 0;
    transition: opacity .25s ease;
}

.asmar-cover:hover .asmar-cover__overlay {
    opacity: 1;
}

.asmar-cover__overlay span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 999px;
    background: var(--asmar-gold);
    color: var(--asmar-night);
    font-size: 22px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .35);
}

.asmar-release-card__text {
    text-align: center;
}

.asmar-release-card__text h3,
.asmar-article-card h3,
.asmar-demo-steps h3 {
    margin: 0;
    color: var(--asmar-ivory);
    font-family: var(--asmar-serif);
    font-weight: 400;
}

.asmar-release-card__text h3 {
    font-size: 22px;
    letter-spacing: .04em;
}

.asmar-release-card__text h3 a:hover,
.asmar-card-link:hover {
    color: var(--asmar-gold);
}

.asmar-release-card__text p {
    margin: 8px 0 0;
    color: var(--asmar-muted);
    font-family: var(--asmar-mono);
    font-size: 10px;
    letter-spacing: .2em;
    text-transform: uppercase;
}

.asmar-card-link {
    display: inline-block;
    margin-top: 14px;
    color: var(--asmar-gold);
    font-family: var(--asmar-sans);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.asmar-editorial__heading {
    margin-bottom: 64px;
    text-align: center;
}

.asmar-editorial__heading p {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin: 10px 0 0;
    color: var(--asmar-muted);
    font-family: var(--asmar-mono);
    font-size: 10px;
    letter-spacing: .18em;
}

.asmar-article-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 24px;
    border: 0;
    border-radius: 0;
    padding: 0;
    background: transparent;
}

.asmar-article-card__image {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border: 1px solid var(--asmar-bronze);
    border-radius: 2px;
}

.asmar-article-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1);
    opacity: .8;
}

.asmar-kicker {
    margin: 18px 0 10px;
    color: var(--asmar-gold);
    font-family: var(--asmar-mono);
    font-size: 9px;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.asmar-article-card h3 {
    font-size: clamp(30px, 3.4vw, 42px);
    line-height: 1.25;
}

.asmar-article-card p:not(.asmar-kicker) {
    color: var(--asmar-ivory);
    font-family: var(--asmar-serif);
    font-size: 20px;
    line-height: 1.48;
    opacity: .88;
}

.asmar-outline-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--asmar-gold);
    border-radius: 12px;
    padding: 13px 24px;
    background: transparent;
    color: var(--asmar-gold);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .2em;
    text-transform: uppercase;
    transition: background .25s ease, color .25s ease;
}

.asmar-outline-button:hover {
    background: var(--asmar-gold);
    color: var(--asmar-night);
}

.asmar-demos > h2 {
    margin-bottom: 64px;
}

.asmar-demo-grid {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 64px;
    align-items: start;
}

.asmar-demo-steps {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.asmar-demo-steps > div:not(.asmar-guidelines) {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.asmar-demo-steps span {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 32px;
    height: 32px;
    border: 1px solid var(--asmar-gold);
    border-radius: 999px;
    color: var(--asmar-gold);
    font-family: var(--asmar-mono);
    font-size: 12px;
}

.asmar-demo-steps h3 {
    font-size: 20px;
}

.asmar-demo-steps p,
.asmar-guidelines p {
    margin: 6px 0 0;
    color: var(--asmar-muted);
    font-size: 13px;
    line-height: 1.65;
}

.asmar-guidelines {
    border-top: 1px solid var(--asmar-bronze);
    padding-top: 32px;
}

.asmar-guidelines h4 {
    margin: 0 0 12px;
    color: var(--asmar-gold);
    font-family: var(--asmar-mono);
    font-size: 10px;
    letter-spacing: .18em;
}

.asmar-demo-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
    border: 1px solid var(--asmar-bronze);
    border-radius: 4px;
    padding: 40px;
    background: rgba(18, 17, 12, .5);
}

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

.asmar-demo-form label {
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: var(--asmar-muted);
    font-family: var(--asmar-mono);
    font-size: 10px;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.asmar-demo-form input,
.asmar-demo-form textarea,
.asmar-connect-form input,
.asmar-footer input {
    width: 100%;
    border: 1px solid var(--asmar-bronze);
    border-radius: 2px;
    padding: 13px 16px;
    background: var(--asmar-surface);
    color: var(--asmar-ivory);
    font-family: var(--asmar-mono);
    font-size: 12px;
    letter-spacing: 0;
    outline: none;
}

.asmar-demo-form input:focus,
.asmar-demo-form textarea:focus,
.asmar-connect-form input:focus,
.asmar-footer input:focus {
    border-color: var(--asmar-gold);
}

.asmar-form-actions {
    display: flex;
    justify-content: flex-end;
}

.asmar-contact {
    text-align: center;
}

.asmar-contact h2 {
    max-width: 740px;
    margin: 0 auto 32px;
    color: var(--asmar-ivory);
    font-family: var(--asmar-serif);
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 300;
    line-height: 1.2;
}

.asmar-connect-form {
    display: flex;
    align-items: stretch;
    gap: 16px;
    max-width: 576px;
    margin: 0 auto;
}

.asmar-connect-form button {
    flex: 0 0 auto;
    border: 1px solid var(--asmar-gold);
    border-radius: 12px;
    padding: 12px 32px;
    background: transparent;
    color: var(--asmar-gold);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .2em;
    text-transform: uppercase;
}

.asmar-connect-form button:hover {
    background: var(--asmar-gold);
    color: var(--asmar-night);
}

.asmar-player {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 50;
    width: min(384px, calc(100vw - 48px));
    border: 1px solid var(--asmar-bronze);
    border-radius: 16px;
    padding: 16px;
    background: rgba(25, 23, 17, .96);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .5);
    backdrop-filter: blur(16px);
}

.asmar-player[hidden],
.asmar-modal[hidden] {
    display: none;
}

.asmar-player:not([hidden]) {
    animation: asmar-player-in .25s ease both;
}

@keyframes asmar-player-in {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.asmar-player__top,
.asmar-player__controls,
.asmar-player__time {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.asmar-player__cover {
    width: 48px;
    height: 48px;
    overflow: hidden;
    border: 1px solid var(--asmar-bronze);
    border-radius: 8px;
}

.asmar-player__cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.asmar-player__title,
.asmar-player__artist {
    display: block;
}

.asmar-player__title {
    color: var(--asmar-gold);
    font-family: var(--asmar-serif);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .08em;
}

.asmar-player__artist {
    margin-top: 3px;
    color: var(--asmar-muted);
    font-family: var(--asmar-mono);
    font-size: 10px;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.asmar-icon-button,
.asmar-plain-button {
    border: 0;
    background: transparent;
    color: var(--asmar-muted);
}

.asmar-icon-button {
    font-size: 24px;
    line-height: 1;
}

.asmar-player__progress {
    margin-top: 14px;
}

.asmar-player input[type="range"] {
    width: 100%;
    accent-color: var(--asmar-gold);
}

.asmar-player__time {
    margin-top: 2px;
    color: var(--asmar-muted);
    font-family: var(--asmar-mono);
    font-size: 10px;
}

.asmar-player__controls {
    margin-top: 10px;
}

.asmar-round-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: 0;
    border-radius: 999px;
    background: var(--asmar-gold);
    color: var(--asmar-night);
    font-size: 13px;
}

.asmar-volume {
    display: flex;
    align-items: center;
    gap: 8px;
}

.asmar-volume input {
    width: 68px;
}

.asmar-modal {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-y: auto;
    padding: 48px 24px;
    background: rgba(14, 14, 12, .96);
    backdrop-filter: blur(16px);
}

.asmar-modal__panel {
    position: relative;
    width: min(100%, 672px);
    border: 1px solid var(--asmar-bronze);
    border-radius: 8px;
    padding: 48px;
    background: var(--asmar-surface);
    box-shadow: 0 25px 80px rgba(0, 0, 0, .55);
}

.asmar-modal__close {
    position: absolute;
    top: 20px;
    right: 22px;
    border: 0;
    background: transparent;
    color: var(--asmar-muted);
    font-size: 28px;
}

.asmar-modal h2 {
    margin: 0 0 28px;
    color: var(--asmar-ivory);
    font-family: var(--asmar-serif);
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 400;
    line-height: 1.15;
}

.asmar-modal__image {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border: 1px solid var(--asmar-bronze);
    border-radius: 6px;
    margin-bottom: 28px;
}

.asmar-modal__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1);
    opacity: .84;
}

.asmar-modal__content {
    color: var(--asmar-ivory);
    font-family: var(--asmar-serif);
    font-size: 16px;
    line-height: 1.75;
    white-space: pre-line;
}

.asmar-modal__actions {
    display: flex;
    justify-content: flex-end;
    border-top: 1px solid var(--asmar-bronze);
    margin-top: 32px;
    padding-top: 24px;
}

.asmar-footer {
    position: relative;
    z-index: 10;
    border-top: 1px solid var(--asmar-bronze);
    background: var(--asmar-night);
    padding: 64px 48px;
}

.asmar-footer__inner {
    width: min(100%, 1280px);
    margin: 0 auto;
}

.asmar-footer__columns {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 40px;
}

.asmar-footer h4 {
    margin: 0 0 16px;
    color: var(--asmar-gold);
    font-family: var(--asmar-serif);
    font-size: 20px;
    font-weight: 300;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.asmar-footer a,
.asmar-footer p {
    display: block;
    margin: 0 0 9px;
    color: var(--asmar-muted);
    font-size: 13px;
    line-height: 1.6;
}

.asmar-footer a:hover {
    color: var(--asmar-ivory);
}

.asmar-socials {
    display: flex;
    gap: 16px;
}

.asmar-footer__mailing {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    border-top: 1px solid var(--asmar-bronze);
    margin-top: 64px;
    padding-top: 48px;
}

.asmar-footer__mailing h3 {
    margin: 0;
    color: var(--asmar-ivory);
    font-family: var(--asmar-serif);
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 300;
}

.asmar-footer__mailing form {
    display: flex;
    width: min(100%, 420px);
    border: 1px solid rgba(214, 179, 106, .45);
    border-radius: 2px;
    overflow: hidden;
    background: var(--asmar-deep);
}

.asmar-footer__mailing input {
    border: 0;
    background: transparent;
}

.asmar-footer__mailing button {
    border: 0;
    border-left: 1px solid rgba(214, 179, 106, .45);
    padding: 0 24px;
    background: transparent;
    color: var(--asmar-gold);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.asmar-footer__mailing button:hover {
    background: var(--asmar-gold);
    color: var(--asmar-night);
}

.asmar-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border-top: 1px solid var(--asmar-bronze);
    margin-top: 48px;
    padding-top: 48px;
    color: var(--asmar-muted);
    font-family: var(--asmar-mono);
    font-size: 10px;
    letter-spacing: .2em;
    text-transform: uppercase;
}

.asmar-footer__bottom div {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.asmar-footer__bottom strong {
    color: var(--asmar-gold);
    font-weight: 400;
}

.asmar-archive {
    width: min(100%, 1180px);
    margin: 0 auto;
    padding: 80px 32px;
}

.asmar-archive h1 {
    color: var(--asmar-gold);
    font-family: var(--asmar-serif);
}

.asmar-archive__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
}

.asmar-archive-card {
    border: 1px solid var(--asmar-bronze);
    padding: 24px;
    background: rgba(18, 17, 12, .45);
}

.asmar-archive-card h2 {
    font-family: var(--asmar-serif);
}

.asmar-inner-page {
    min-height: 100vh;
}

.asmar-single {
    position: relative;
    z-index: 10;
    width: min(100%, 1120px);
    margin: 0 auto;
    padding: 96px 48px 128px;
}

.asmar-back-link {
    display: inline-block;
    margin-bottom: 34px;
    color: var(--asmar-gold);
    font-family: var(--asmar-sans);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.asmar-back-link:hover {
    color: var(--asmar-gold-light);
}

.asmar-single h1 {
    max-width: 880px;
    margin: 0;
    color: var(--asmar-ivory);
    font-family: var(--asmar-serif);
    font-size: clamp(52px, 7vw, 86px);
    font-weight: 400;
    line-height: 1.02;
}

.asmar-single__lede {
    max-width: 720px;
    margin: 28px 0 0;
    color: var(--asmar-muted);
    font-family: var(--asmar-serif);
    font-size: 24px;
    line-height: 1.45;
}

.asmar-single__hero {
    overflow: hidden;
    border: 1px solid var(--asmar-bronze);
    margin-top: 56px;
    aspect-ratio: 16 / 8;
}

.asmar-single__hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(.85) contrast(1.06);
}

.asmar-single__content {
    max-width: 760px;
    margin-top: 48px;
    color: var(--asmar-ivory);
    font-family: var(--asmar-serif);
    font-size: 20px;
    line-height: 1.65;
}

.asmar-single__content p {
    margin: 0 0 24px;
}

.asmar-release-detail {
    display: grid;
    grid-template-columns: minmax(280px, 460px) minmax(0, 1fr);
    gap: 72px;
    align-items: start;
}

.asmar-release-detail__art {
    position: sticky;
    top: 32px;
    overflow: hidden;
    border: 1px solid var(--asmar-bronze);
    aspect-ratio: 1 / 1;
    background: var(--asmar-deep);
}

.asmar-release-detail__art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.asmar-release-date {
    margin: 22px 0 0;
    color: var(--asmar-muted);
    font-family: var(--asmar-sans);
    font-size: 14px;
}

.asmar-release-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 18px;
    margin-top: 36px;
}

.asmar-release-actions audio {
    width: min(100%, 420px);
    accent-color: var(--asmar-gold);
}

@media (max-width: 900px) {
    .asmar-header {
        flex-wrap: wrap;
        justify-content: center;
        padding: 22px 24px;
    }

    .asmar-brand {
        order: -1;
        width: 180px;
        height: 92px;
    }

    .asmar-nav {
        gap: 18px;
        font-size: 10px;
    }

    .asmar-hero,
    .asmar-section,
    .asmar-action-row {
        padding-right: 24px;
        padding-left: 24px;
    }

    .asmar-hero {
        min-height: 620px;
        padding-top: 76px;
        padding-bottom: 150px;
        background-position: 60% center;
    }

    .asmar-hero__copy {
        max-width: 380px;
        margin-left: 0;
    }

    .asmar-action-row {
        margin-top: -112px;
    }

    .asmar-action-grid,
    .asmar-release-grid,
    .asmar-article-grid,
    .asmar-demo-grid,
    .asmar-footer__columns {
        grid-template-columns: 1fr;
    }

    .asmar-action {
        border-right: 0;
        border-bottom: 1px solid var(--asmar-bronze);
    }

    .asmar-action:last-child {
        border-bottom: 0;
    }

    .asmar-form-grid,
    .asmar-connect-form {
        grid-template-columns: 1fr;
        flex-direction: column;
    }

    .asmar-demo-form {
        padding: 28px;
    }

    .asmar-single {
        padding: 72px 24px 96px;
    }

    .asmar-release-detail {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .asmar-release-detail__art {
        position: relative;
        top: auto;
    }

    .asmar-footer {
        padding: 56px 24px;
    }

    .asmar-footer__mailing,
    .asmar-footer__bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 560px) {
    .asmar-header {
        gap: 18px;
    }

    .asmar-nav {
        width: 100%;
        justify-content: center;
    }

    .asmar-brand {
        width: 170px;
        height: 86px;
    }

    .asmar-hero {
        min-height: 580px;
        background-position: 64% center;
    }

    .asmar-hero h1 {
        font-size: 46px;
    }

    .asmar-section-title {
        gap: 14px;
    }

    .asmar-section-title h2,
    .asmar-editorial__heading h2,
    .asmar-demos > h2 {
        font-size: 28px;
        letter-spacing: .13em;
    }

    .asmar-player {
        right: 16px;
        left: 16px;
        bottom: 16px;
        width: auto;
    }

    .asmar-modal__panel {
        padding: 36px 24px 28px;
    }

    .asmar-footer__mailing form {
        flex-direction: column;
    }

    .asmar-footer__mailing button {
        border-left: 0;
        border-top: 1px solid rgba(214, 179, 106, .45);
        padding: 14px 18px;
    }
}
