:root {
    --black: #020202;
    --ink: #080706;
    --panel: #11100d;
    --panel-2: #19150f;
    --gold: #d8aa58;
    --gold-soft: #f3d89f;
    --champagne: #fff4df;
    --line: rgba(216, 170, 88, 0.26);
    --text: #fbf3e8;
    --muted: #c4b8a8;
    --danger: #e46f6f;
    --max: 1220px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    background:
        radial-gradient(circle at 50% -12%, rgba(216, 170, 88, 0.08), transparent 34%),
        linear-gradient(180deg, #030303 0%, #070605 42%, #030303 100%);
    color: var(--text);
    font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
    letter-spacing: 0;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.menu-open {
    overflow: hidden;
}

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

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

p {
    color: var(--muted);
    line-height: 1.68;
}

h1,
h2,
h3 {
    margin: 0;
    font-family: Didot, "Bodoni 72", Georgia, "Times New Roman", serif;
    font-weight: 500;
    line-height: 0.98;
    color: var(--champagne);
}

h1 {
    font-size: 7.1rem;
}

h2 {
    font-size: 4.45rem;
}

.site-header {
    position: fixed;
    z-index: 50;
    top: 0;
    left: 0;
    right: 0;
    height: 92px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 22px;
    padding: 0 42px;
    background: rgba(2, 2, 2, 0.88);
    border-bottom: 1px solid rgba(215, 169, 87, 0.22);
    box-shadow: 0 22px 80px rgba(0, 0, 0, 0.42);
    backdrop-filter: blur(22px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.brand img {
    width: 74px;
    height: 58px;
    object-fit: contain;
    border-radius: 0;
    filter: drop-shadow(0 0 18px rgba(215, 169, 87, 0.22));
}

.brand-wordmark {
    display: grid;
    gap: 2px;
    color: var(--champagne);
    line-height: 1;
}

.brand-wordmark strong {
    font-family: Didot, "Bodoni 72", Georgia, "Times New Roman", serif;
    font-size: 1.48rem;
    font-weight: 500;
}

.brand-wordmark small {
    color: var(--gold-soft);
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.main-nav a {
    color: rgba(251, 243, 232, 0.66);
    font-size: 0.9rem;
    transition: color 0.18s ease;
}

.main-nav a.active,
.main-nav a:hover {
    color: var(--gold-soft);
}

.header-cta,
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 20px;
    border: 1px solid var(--line);
    border-radius: 4px;
    font-weight: 800;
    text-align: center;
    transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.header-cta,
.button.gold {
    background: linear-gradient(180deg, #f1cf8a 0%, #d2a050 52%, #b98432 100%);
    border-color: #e9c77e;
    color: #100b04;
    box-shadow: 0 14px 38px rgba(216, 170, 88, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.button.dark {
    background: rgba(0, 0, 0, 0.38);
    border-color: rgba(243, 216, 159, 0.22);
    color: var(--text);
    backdrop-filter: blur(10px);
}

.button.outline,
.button.ghost {
    background: transparent;
    color: var(--gold-soft);
    border-color: rgba(243, 216, 159, 0.28);
}

.header-cta:hover,
.button:hover {
    transform: translateY(-1px);
}

.button.large {
    min-height: 56px;
    padding: 0 28px;
    font-size: 1rem;
}

.button.small {
    min-height: 34px;
    padding: 0 12px;
    font-size: 0.78rem;
}

.button.danger {
    background: rgba(130, 42, 42, 0.2);
    border-color: rgba(238, 99, 99, 0.6);
    color: #ffb5b5;
}

.menu-button {
    display: none;
    align-items: center;
    justify-content: center;
    justify-self: end;
    min-height: 42px;
    padding: 0 14px;
    border: 1px solid var(--line);
    border-radius: 4px;
    background: transparent;
    color: var(--gold-soft);
}

.mobile-nav {
    display: none;
}

.hero {
    position: relative;
    min-height: 720px;
    height: calc(100vh - 56px);
    max-height: 900px;
    display: flex;
    align-items: flex-end;
    padding: 148px 42px 86px;
    overflow: hidden;
    border-bottom: 1px solid rgba(216, 170, 88, 0.24);
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(2, 2, 2, 0.94) 0%, rgba(2, 2, 2, 0.62) 42%, rgba(2, 2, 2, 0.22) 100%),
        linear-gradient(0deg, rgba(2, 2, 2, 0.98) 0%, rgba(2, 2, 2, 0.36) 46%, rgba(2, 2, 2, 0.12) 100%);
}

.hero::before {
    content: "";
    position: absolute;
    z-index: 1;
    left: 42px;
    right: 42px;
    bottom: 32px;
    height: 1px;
    background: linear-gradient(90deg, rgba(243, 216, 159, 0.62), rgba(243, 216, 159, 0.08), transparent);
}

.hero-media {
    position: absolute;
    inset: 0;
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 34%;
    filter: saturate(0.9) contrast(1.12);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(830px, calc(100vw - 84px));
    max-width: 100%;
    min-width: 0;
    padding-bottom: 8px;
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--gold-soft);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0;
    font-size: 0.78rem;
}

.hero-copy {
    max-width: 640px;
    color: #fff1dc;
    font-size: 1.28rem;
    font-weight: 500;
}

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

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
}

.hero-trust span {
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    padding: 0 14px;
    background: rgba(255, 244, 223, 0.055);
    border: 1px solid rgba(243, 216, 159, 0.18);
    color: rgba(255, 244, 223, 0.82);
    border-radius: 4px;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
}

.studio-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    padding-inline: max(20px, calc((100vw - var(--max)) / 2));
    background: #070605;
    border-bottom: 1px solid rgba(216, 170, 88, 0.2);
}

.studio-strip div {
    min-height: 120px;
    display: grid;
    align-content: center;
    gap: 8px;
    padding: 26px 28px;
    border-right: 1px solid rgba(216, 170, 88, 0.16);
}

.studio-strip div:not(:first-child) {
    padding-left: 34px;
}

.studio-strip div:last-child {
    border-right: 0;
}

.studio-strip strong {
    color: var(--champagne);
    font-family: Didot, "Bodoni 72", Georgia, "Times New Roman", serif;
    font-size: 1.5rem;
    font-weight: 500;
}

.studio-strip span {
    max-width: 330px;
    color: var(--muted);
    line-height: 1.45;
}

.monarch-standard {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 54px;
    align-items: start;
}

.standard-intro {
    position: sticky;
    top: 122px;
}

.standard-intro p:last-child {
    font-size: 1.08rem;
}

.standard-grid {
    display: grid;
    gap: 1px;
    border: 1px solid rgba(216, 170, 88, 0.22);
    background: rgba(216, 170, 88, 0.18);
}

.standard-grid div {
    padding: 34px;
    background:
        linear-gradient(135deg, rgba(243, 216, 159, 0.055), transparent 42%),
        #0c0a08;
}

.standard-grid strong {
    display: block;
    color: var(--champagne);
    font-family: Didot, "Bodoni 72", Georgia, "Times New Roman", serif;
    font-size: 1.55rem;
    font-weight: 500;
}

.standard-grid p {
    margin-bottom: 0;
}

.style-section {
    padding-top: 18px;
}

.style-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    border: 1px solid rgba(216, 170, 88, 0.22);
    background: rgba(216, 170, 88, 0.18);
}

.style-grid a {
    min-height: 188px;
    display: grid;
    align-content: end;
    gap: 10px;
    padding: 28px;
    background:
        linear-gradient(180deg, rgba(255, 244, 223, 0.035), rgba(2, 2, 2, 0.15)),
        #090807;
    transition: background 0.18s ease, transform 0.18s ease;
}

.style-grid a:hover {
    background:
        linear-gradient(180deg, rgba(216, 170, 88, 0.11), rgba(2, 2, 2, 0.18)),
        #0f0c09;
}

.style-grid span {
    color: var(--gold-soft);
    font-family: Didot, "Bodoni 72", Georgia, "Times New Roman", serif;
    font-size: 1.72rem;
    line-height: 1;
}

.style-grid small {
    color: var(--muted);
    line-height: 1.45;
}

.section {
    width: min(var(--max), calc(100% - 40px));
    margin: 0 auto;
    padding: 112px 0;
}

.section-heading {
    margin-bottom: 42px;
}

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

.section-lead {
    width: min(410px, 100%);
    margin: 0;
    font-size: 1.02rem;
}

.intro-band,
.dark-band {
    width: 100%;
    max-width: none;
    padding-inline: max(20px, calc((100vw - var(--max)) / 2));
    border-top: 1px solid rgba(216, 170, 88, 0.18);
    border-bottom: 1px solid rgba(216, 170, 88, 0.18);
}

.intro-band {
    background:
        linear-gradient(180deg, rgba(255, 244, 223, 0.025), transparent 38%),
        #080706;
}

.dark-band {
    background:
        linear-gradient(180deg, rgba(216, 170, 88, 0.045), transparent 32%),
        #060504;
}

.intro-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    border: 1px solid rgba(216, 170, 88, 0.22);
    background: rgba(216, 170, 88, 0.18);
}

.intro-grid div {
    min-height: 220px;
    padding: 32px;
    border-left: 0;
    background: linear-gradient(180deg, #100e0b, #090807);
}

.step-number {
    display: block;
    margin-bottom: 28px;
    color: rgba(243, 216, 159, 0.56);
    font-family: Didot, "Bodoni 72", Georgia, "Times New Roman", serif;
    font-size: 3.4rem;
    line-height: 0.85;
}

.intro-grid strong {
    display: block;
    color: var(--champagne);
    font-family: Didot, "Bodoni 72", Georgia, "Times New Roman", serif;
    font-size: 1.65rem;
    font-weight: 500;
}

.intro-grid p {
    margin-bottom: 0;
}

.artist-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.home-artist-grid {
    grid-template-columns: repeat(8, 1fr);
    gap: 14px;
}

.artist-grid.large {
    gap: 24px;
}

.artist-card {
    position: relative;
    overflow: hidden;
    background: #090807;
    border: 1px solid rgba(216, 170, 88, 0.2);
    border-radius: 6px;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.home-artist-grid .artist-card {
    grid-column: span 2;
}

.home-artist-grid .artist-card:nth-child(1),
.home-artist-grid .artist-card:nth-child(2) {
    grid-column: span 4;
}

.artist-card:hover {
    transform: translateY(-4px);
    border-color: rgba(241, 213, 154, 0.42);
    box-shadow: 0 26px 80px rgba(0, 0, 0, 0.36);
}

.artist-card a {
    display: grid;
    min-height: 100%;
}

.artist-card img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    filter: saturate(0.9) contrast(1.08);
    transition: transform 0.26s ease, filter 0.26s ease;
}

.home-artist-grid .artist-card:nth-child(1) img,
.home-artist-grid .artist-card:nth-child(2) img {
    aspect-ratio: 16 / 11;
}

.artist-card:hover img {
    transform: scale(1.025);
    filter: saturate(0.98) contrast(1.12);
}

.artist-card::after {
    content: "";
    position: absolute;
    inset: 38% 0 0;
    pointer-events: none;
    background: linear-gradient(180deg, transparent, rgba(2, 2, 2, 0.92));
}

.artist-card span,
.artist-card small,
.artist-card em {
    padding-inline: 16px;
}

.artist-card-meta {
    position: absolute;
    z-index: 1;
    left: 0;
    right: 0;
    bottom: 0;
    display: grid;
    gap: 6px;
    padding: 18px 0;
}

.artist-card span {
    padding-top: 0;
    color: var(--gold-soft);
    font-family: Didot, "Bodoni 72", Georgia, "Times New Roman", serif;
    font-size: 1.65rem;
    line-height: 1;
}

.artist-card small {
    min-height: 0;
    padding-top: 0;
    color: var(--muted);
    line-height: 1.35;
}

.artist-card em {
    padding-top: 4px;
    padding-bottom: 16px;
    color: #e9d3a6;
    font-style: normal;
    font-size: 0.86rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.gallery-grid.compact {
    grid-template-columns: repeat(6, 1fr);
}

.gallery-grid.editorial {
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 174px;
    grid-auto-flow: dense;
    gap: 14px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    min-height: 180px;
    background: #090807;
    border: 1px solid rgba(216, 170, 88, 0.18);
    border-radius: 6px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.gallery-grid.editorial .gallery-item {
    grid-column: span 3;
    min-height: 0;
}

.gallery-grid.editorial .gallery-item img {
    aspect-ratio: auto;
}

.gallery-grid.editorial .gallery-item:nth-child(1) {
    grid-column: span 6;
    grid-row: span 2;
}

.gallery-grid.editorial .gallery-item:nth-child(4),
.gallery-grid.editorial .gallery-item:nth-child(9) {
    grid-column: span 6;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    filter: saturate(0.9) contrast(1.08);
    transition: transform 0.22s ease, filter 0.22s ease;
}

.gallery-item:hover img {
    transform: scale(1.035);
    filter: saturate(1) contrast(1.12);
}

.gallery-item:hover {
    border-color: rgba(241, 213, 154, 0.42);
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.28);
}

.gallery-item span,
.gallery-item small {
    position: absolute;
    left: 14px;
    right: 14px;
    z-index: 1;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.86);
}

.gallery-item span {
    bottom: 36px;
    color: var(--gold-soft);
    font-weight: 700;
}

.gallery-item small {
    bottom: 14px;
    color: #f5ead8;
}

.gallery-item::after {
    content: "";
    position: absolute;
    inset: 42% 0 0;
    background: linear-gradient(180deg, transparent, rgba(2, 2, 2, 0.88));
}

.consultation-strip {
    width: min(var(--max), calc(100% - 40px));
    margin: 0 auto 112px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 42px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.consultation-strip p {
    max-width: 650px;
}

.final-cta {
    position: relative;
    overflow: hidden;
    padding: 52px;
    background:
        linear-gradient(135deg, rgba(243, 216, 159, 0.08), transparent 42%),
        linear-gradient(180deg, #120f0a, #070605);
    border: 1px solid rgba(216, 170, 88, 0.28);
    border-radius: 6px;
    box-shadow: 0 24px 90px rgba(0, 0, 0, 0.34);
}

.final-cta::before {
    content: "";
    position: absolute;
    inset: 18px;
    border: 1px solid rgba(243, 216, 159, 0.12);
    pointer-events: none;
}

.compact-strip {
    margin-top: 10px;
}

.page-hero {
    width: min(var(--max), calc(100% - 40px));
    margin: 0 auto;
    padding: 142px 0 56px;
}

.page-hero h1,
.artist-profile-hero h1,
.form-hero h1 {
    font-size: 5.65rem;
    max-width: 960px;
}

.page-hero.simple div {
    max-width: 780px;
}

.page-hero.simple + .section {
    padding-top: 46px;
}

.page-hero.split-visual,
.form-hero,
.artist-profile-hero {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 38px;
    align-items: center;
}

.page-hero img,
.form-hero img,
.artist-profile-hero img {
    width: 100%;
    max-height: 620px;
    object-fit: cover;
    border: 1px solid var(--line);
    border-radius: 6px;
    box-shadow: 0 24px 90px rgba(0, 0, 0, 0.32);
}

.artist-profile-hero {
    width: min(var(--max), calc(100% - 40px));
    margin: 0 auto;
    padding: 140px 0 70px;
}

.artist-profile-hero img {
    aspect-ratio: 4 / 5;
}

.specialty-line {
    color: var(--gold-soft);
}

.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
}

.filter-bar a {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    padding: 0 14px;
    border: 1px solid var(--line);
    border-radius: 4px;
    color: var(--muted);
}

.filter-bar a.active,
.filter-bar a:hover {
    background: var(--gold);
    color: #120d05;
}

.form-section {
    padding-top: 24px;
}

.lead-form {
    display: grid;
    gap: 22px;
    padding: 34px;
    background:
        linear-gradient(180deg, rgba(243, 216, 159, 0.045), transparent 26%),
        #0d0b09;
    border: 1px solid rgba(216, 170, 88, 0.3);
    border-radius: 6px;
    box-shadow: 0 24px 90px rgba(0, 0, 0, 0.26);
}

.form-intro {
    max-width: 720px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(216, 170, 88, 0.16);
}

.form-intro h2 {
    font-size: 2.7rem;
}

.form-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 26px;
}

.form-trust span {
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    padding: 0 12px;
    border: 1px solid rgba(243, 216, 159, 0.2);
    border-radius: 4px;
    color: rgba(255, 244, 223, 0.84);
    background: rgba(255, 244, 223, 0.045);
}

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

label {
    display: grid;
    gap: 8px;
    color: var(--gold-soft);
    font-weight: 700;
}

input,
select,
textarea {
    width: 100%;
    min-height: 50px;
    padding: 13px 14px;
    background: #050505;
    border: 1px solid rgba(216, 170, 88, 0.26);
    border-radius: 4px;
    color: var(--text);
    font: inherit;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: rgba(243, 216, 159, 0.7);
    box-shadow: 0 0 0 3px rgba(216, 170, 88, 0.12);
}

textarea {
    resize: vertical;
}

.check-row {
    grid-template-columns: 22px 1fr;
    align-items: start;
    color: var(--text);
    font-weight: 400;
}

.check-row input {
    min-height: 22px;
}

.notice {
    padding: 18px;
    margin-bottom: 20px;
    border: 1px solid var(--line);
    background: rgba(215, 169, 87, 0.08);
    border-radius: 6px;
}

.notice.error {
    border-color: rgba(228, 111, 111, 0.7);
}

.notice.error p {
    color: #ffd2d2;
}

.thank-you {
    width: min(820px, calc(100% - 40px));
    min-height: 76vh;
    margin: 0 auto;
    padding: 150px 0 80px;
    display: grid;
    place-items: center;
    text-align: center;
}

.thank-you img {
    width: 220px;
    height: 112px;
    object-fit: contain;
    border-radius: 0;
    margin-bottom: 26px;
}

.content-narrow {
    max-width: 780px;
}

.content-narrow h2 {
    margin-top: 34px;
    margin-bottom: 8px;
    font-size: 2rem;
}

.faq-list {
    display: grid;
    gap: 14px;
}

details {
    border-top: 1px solid var(--line);
    border-radius: 0;
    background: transparent;
    padding: 28px 0;
}

summary {
    cursor: pointer;
    color: var(--text);
    font-weight: 700;
    list-style: none;
}

summary::-webkit-details-marker {
    display: none;
}

summary::after {
    content: "+";
    float: right;
    color: var(--gold);
    font-weight: 700;
}

details[open] summary::after {
    content: "×";
}

.faq-list p {
    max-width: 720px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 28px;
}

.contact-panel {
    padding: 28px;
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 6px;
}

.map-panel iframe {
    width: 100%;
    min-height: 520px;
    border: 1px solid var(--line);
    border-radius: 6px;
    filter: grayscale(1) invert(0.9) contrast(0.92);
}

.legal {
    padding-top: 150px;
}

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

.site-footer {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 30px;
    padding: 48px max(20px, calc((100vw - var(--max)) / 2));
    background: #090807;
    border-top: 1px solid rgba(215, 169, 87, 0.18);
}

.footer-logo {
    width: 148px;
    height: 76px;
    object-fit: contain;
    border-radius: 0;
    margin-bottom: 14px;
}

.footer-name,
.footer-title {
    color: var(--gold-soft);
    font-weight: 700;
}

.footer-small {
    margin-top: 18px;
    font-size: 0.9rem;
}

.mobile-sticky-cta {
    display: none;
}

.cookie-banner {
    position: fixed;
    z-index: 80;
    left: auto;
    right: 20px;
    bottom: 20px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 14px;
    max-width: 560px;
    padding: 12px;
    background: rgba(12, 10, 8, 0.96);
    border: 1px solid var(--line);
    border-radius: 6px;
    box-shadow: 0 18px 70px rgba(0, 0, 0, 0.55);
}

.cookie-banner[hidden] {
    display: none;
}

.cookie-banner p {
    margin: 0;
    font-size: 0.94rem;
}

.cookie-banner div {
    display: flex;
    gap: 10px;
}

@media (prefers-reduced-motion: no-preference) {
    .reveal-on-load {
        opacity: 0;
        transform: translateY(18px);
        transition:
            opacity 0.72s cubic-bezier(0.22, 1, 0.36, 1),
            transform 0.72s cubic-bezier(0.22, 1, 0.36, 1),
            border-color 0.2s ease,
            box-shadow 0.2s ease;
        will-change: opacity, transform;
    }

    .reveal-on-load.is-visible {
        opacity: 1;
        transform: translateY(0);
    }

    .hero-media img {
        transform: scale(1.035);
        animation: hero-settle 1.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    }
}

@keyframes hero-settle {
    to {
        transform: scale(1);
    }
}

@media (max-width: 1100px) {
    h1 {
        font-size: 5.25rem;
    }

    h2 {
        font-size: 3.55rem;
    }

    .home-artist-grid,
    .gallery-grid.editorial {
        grid-template-columns: repeat(4, 1fr);
    }

    .home-artist-grid .artist-card,
    .home-artist-grid .artist-card:nth-child(1),
    .home-artist-grid .artist-card:nth-child(2) {
        grid-column: span 2;
    }

    .gallery-grid.editorial .gallery-item,
    .gallery-grid.editorial .gallery-item:nth-child(1),
    .gallery-grid.editorial .gallery-item:nth-child(4),
    .gallery-grid.editorial .gallery-item:nth-child(9) {
        grid-column: span 2;
        grid-row: auto;
    }
}

@media (max-width: 1120px) {
    .site-header {
        height: 86px;
        grid-template-columns: auto auto;
        justify-content: space-between;
        padding: 0 18px;
    }

    .main-nav,
    .header-cta {
        display: none;
    }

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

    .mobile-nav {
        position: fixed;
        z-index: 45;
        inset: 86px 0 auto;
        display: none;
        padding: 20px;
        background: rgba(5, 5, 5, 0.97);
        border-bottom: 1px solid var(--line);
    }

    body.menu-open .mobile-nav {
        display: grid;
        gap: 16px;
    }
}

@media (max-width: 920px) {
    .site-header {
        height: 86px;
        grid-template-columns: auto auto;
        justify-content: space-between;
        padding: 0 18px;
    }

    .brand img {
        width: 64px;
        height: 48px;
    }

    .brand-wordmark strong {
        font-size: 1.25rem;
    }

    .brand-wordmark small {
        font-size: 0.62rem;
    }

    .main-nav,
    .header-cta {
        display: none;
    }

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

    .mobile-nav {
        position: fixed;
        z-index: 45;
        inset: 86px 0 auto;
        display: none;
        padding: 20px;
        background: rgba(5, 5, 5, 0.97);
        border-bottom: 1px solid var(--line);
    }

    body.menu-open .mobile-nav {
        display: grid;
        gap: 16px;
    }

    .hero {
        min-height: 620px;
        height: calc(100vh - 54px);
        max-height: none;
        padding: 118px 20px 66px;
    }

    .hero-content {
        width: min(100%, calc(100vw - 40px));
    }

    .hero::after {
        background: linear-gradient(0deg, rgba(2, 2, 2, 0.97) 0%, rgba(2, 2, 2, 0.68) 58%, rgba(2, 2, 2, 0.3) 100%);
    }

    .section-heading.split,
    .consultation-strip,
    .cookie-banner {
        align-items: stretch;
        grid-template-columns: 1fr;
        left: 14px;
        right: 14px;
        bottom: 74px;
        max-width: none;
    }

    .section-heading.split,
    .consultation-strip {
        display: grid;
    }

    .studio-strip {
        grid-template-columns: 1fr;
        padding-inline: 20px;
    }

    .studio-strip div,
    .studio-strip div:not(:first-child) {
        min-height: 0;
        padding: 22px 0;
        border-right: 0;
        border-bottom: 1px solid rgba(216, 170, 88, 0.14);
    }

    .studio-strip div:last-child {
        border-bottom: 0;
    }

    .intro-grid,
    .artist-grid,
    .gallery-grid,
    .gallery-grid.compact,
    .page-hero.split-visual,
    .form-hero,
    .artist-profile-hero,
    .form-grid,
    .contact-grid,
    .monarch-standard,
    .style-grid,
    .site-footer {
        grid-template-columns: 1fr;
    }

    .standard-intro {
        position: static;
    }

    .style-grid a {
        min-height: 150px;
    }

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

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

    .home-artist-grid .artist-card,
    .home-artist-grid .artist-card:nth-child(1),
    .home-artist-grid .artist-card:nth-child(2) {
        grid-column: span 1;
    }

    .gallery-grid,
    .gallery-grid.compact,
    .gallery-grid.editorial {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: auto;
    }

    .gallery-grid.editorial .gallery-item,
    .gallery-grid.editorial .gallery-item:nth-child(1),
    .gallery-grid.editorial .gallery-item:nth-child(4),
    .gallery-grid.editorial .gallery-item:nth-child(9) {
        grid-column: span 1;
    }

    .gallery-grid.editorial .gallery-item img {
        aspect-ratio: 3 / 4;
    }

    .page-hero,
    .artist-profile-hero {
        padding-top: 120px;
    }

    .page-hero h1,
    .artist-profile-hero h1,
    .form-hero h1 {
        font-size: 4.45rem;
    }

    .lead-form {
        padding: 20px;
    }

    .final-cta {
        padding: 32px 22px;
    }

    .final-cta::before {
        inset: 12px;
    }

    .mobile-sticky-cta {
        position: fixed;
        z-index: 44;
        left: 14px;
        right: 14px;
        bottom: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 50px;
        background: var(--gold);
        color: #110b04;
        border-radius: 4px;
        font-weight: 800;
        box-shadow: 0 16px 50px rgba(0, 0, 0, 0.5);
    }

    .site-footer {
        padding-bottom: 92px;
    }
}

@media (max-width: 560px) {
    h1 {
        font-size: 3.05rem;
    }

    h2 {
        font-size: 2.42rem;
    }

    .page-hero h1,
    .artist-profile-hero h1,
    .form-hero h1 {
        font-size: 3.05rem;
    }

    .hero h1 {
        max-width: 8ch;
    }

    .brand img {
        width: 56px;
        height: 42px;
    }

    .brand {
        gap: 10px;
    }

    .brand-wordmark strong {
        font-size: 1.05rem;
    }

    .brand-wordmark small {
        font-size: 0.58rem;
    }

    .menu-button {
        min-width: 82px;
    }

    .hero-copy {
        font-size: 1.08rem;
    }

    .hero-trust {
        gap: 8px;
    }

    .hero-trust span {
        min-height: 32px;
        font-size: 0.82rem;
    }

    .section {
        width: min(var(--max), calc(100% - 28px));
        padding: 76px 0;
    }

    .intro-grid div {
        min-height: 0;
        padding: 26px;
    }

    .artist-grid,
    .gallery-grid,
    .gallery-grid.compact,
    .gallery-grid.editorial,
    .home-artist-grid {
        grid-template-columns: 1fr;
    }

    .home-artist-grid .artist-card,
    .home-artist-grid .artist-card:nth-child(1),
    .home-artist-grid .artist-card:nth-child(2),
    .gallery-grid.editorial .gallery-item,
    .gallery-grid.editorial .gallery-item:nth-child(1),
    .gallery-grid.editorial .gallery-item:nth-child(4),
    .gallery-grid.editorial .gallery-item:nth-child(9) {
        grid-column: span 1;
    }

    .hero-actions {
        display: grid;
    }

    .form-intro h2 {
        font-size: 2rem;
    }

    .cookie-banner {
        padding: 10px;
    }

    .cookie-banner p {
        font-size: 0.86rem;
    }
}

.admin-body {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 260px 1fr;
    background: #080807;
}

.admin-auth-body {
    display: block;
    background:
        radial-gradient(circle at 50% 0%, rgba(216, 170, 88, 0.12), transparent 34%),
        linear-gradient(180deg, #0d0b09 0%, #030303 100%);
}

.admin-auth-main {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 24px;
}

.admin-auth-main .admin-topbar {
    display: none;
}

.admin-login-shell {
    width: min(520px, 100%);
}

.admin-login-brand {
    display: grid;
    justify-items: center;
    gap: 10px;
    margin-bottom: 24px;
    color: var(--gold-soft);
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.admin-login-brand img {
    width: 86px;
    height: auto;
}

.admin-login-card {
    display: grid;
    gap: 18px;
    padding: clamp(24px, 5vw, 42px);
    background:
        linear-gradient(135deg, rgba(243, 216, 159, 0.08), transparent 42%),
        rgba(12, 10, 8, 0.94);
    border: 1px solid rgba(216, 170, 88, 0.34);
    border-radius: 8px;
    box-shadow: 0 32px 90px rgba(0, 0, 0, 0.48), inset 0 1px 0 rgba(255, 244, 223, 0.08);
}

.admin-login-card h2 {
    margin: 0;
    color: var(--champagne);
    font-size: clamp(2rem, 8vw, 3.3rem);
    line-height: 0.95;
}

.admin-login-card p {
    margin: 0;
}

.admin-sidebar {
    position: sticky;
    top: 0;
    height: 100vh;
    padding: 22px;
    background: #0f0d0a;
    border-right: 1px solid var(--line);
}

.admin-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
    color: var(--gold-soft);
    font-weight: 800;
}

.admin-logo img {
    width: 62px;
    height: 36px;
    border-radius: 0;
    object-fit: contain;
}

.admin-sidebar nav {
    display: grid;
    gap: 10px;
}

.admin-sidebar nav a,
.admin-user {
    padding: 12px;
    color: var(--muted);
    border: 1px solid rgba(215, 169, 87, 0.12);
    border-radius: 4px;
}

.admin-sidebar nav a:hover {
    color: var(--gold-soft);
    border-color: var(--line);
}

.admin-user {
    margin-top: 26px;
    line-height: 1.5;
}

.admin-main {
    padding: 26px;
}

.admin-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 22px;
}

.admin-topbar h1 {
    font-size: 3.2rem;
}

.admin-stats {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
    margin-bottom: 24px;
}

.admin-stats.upgraded {
    grid-template-columns: repeat(7, minmax(0, 1fr));
}

.admin-stats div,
.admin-panel,
.admin-form {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 6px;
}

.admin-stats div {
    display: grid;
    gap: 8px;
    padding: 18px;
}

.admin-stats span {
    color: var(--gold-soft);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2rem;
}

.admin-stats small {
    color: var(--muted);
}

.admin-panel {
    padding: 20px;
    margin-bottom: 22px;
}

.admin-panel h2,
.admin-form h2 {
    margin-bottom: 16px;
    font-size: 2rem;
}

.admin-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
}

.admin-table-wrap {
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 760px;
}

.admin-table th,
.admin-table td {
    padding: 13px 10px;
    border-bottom: 1px solid rgba(215, 169, 87, 0.14);
    color: var(--muted);
    text-align: left;
    vertical-align: middle;
}

.admin-table th {
    color: var(--gold-soft);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0;
}

.admin-table a {
    color: var(--gold-soft);
}

.table-input {
    min-height: 38px;
    padding: 8px 10px;
}

.inline-delete-form {
    margin: 0;
}

.danger-zone {
    border-color: rgba(238, 99, 99, 0.42);
}

.artist-mini {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text) !important;
}

.artist-mini img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
}

.admin-form {
    display: grid;
    gap: 18px;
    max-width: 980px;
    padding: 22px;
}

.admin-form.compact {
    max-width: 460px;
}

.admin-form-grid,
.admin-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.admin-preview {
    width: min(260px, 100%);
    max-height: 320px;
    object-fit: cover;
    border: 1px solid var(--line);
    border-radius: 6px;
}

.admin-actions {
    margin-bottom: 20px;
}

.admin-filter {
    margin-bottom: 18px;
}

.note-row {
    padding: 14px 0;
    border-top: 1px solid rgba(215, 169, 87, 0.14);
}

.note-row p {
    margin: 0 0 8px;
}

.note-row small {
    color: var(--muted);
}

.admin-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.admin-gallery-card {
    overflow: hidden;
    border: 1px solid rgba(215, 169, 87, 0.18);
    border-radius: 6px;
    background: #0e0c0a;
}

.admin-gallery-card img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
}

.admin-gallery-card div {
    display: grid;
    gap: 8px;
    padding: 12px;
}

.admin-gallery-card strong {
    color: var(--gold-soft);
}

.admin-gallery-card span,
.admin-gallery-card small {
    color: var(--muted);
}

@media (max-width: 980px) {
    .admin-body {
        grid-template-columns: 1fr;
    }

    .admin-sidebar {
        position: static;
        height: auto;
    }

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

    .admin-main {
        padding: 18px;
    }

    .admin-stats,
    .admin-form-grid,
    .admin-detail-grid,
    .admin-gallery-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .admin-body {
        display: block;
        min-height: 100vh;
    }

    .admin-sidebar {
        position: sticky;
        top: 0;
        z-index: 40;
        padding: 12px;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .admin-logo {
        gap: 10px;
        margin-bottom: 12px;
    }

    .admin-logo img {
        width: 46px;
        height: 28px;
    }

    .admin-sidebar nav {
        display: flex;
        gap: 8px;
        overflow-x: auto;
        padding-bottom: 4px;
        scrollbar-width: thin;
    }

    .admin-sidebar nav a {
        flex: 0 0 auto;
        min-height: 40px;
        padding: 10px 12px;
        white-space: nowrap;
    }

    .admin-user {
        display: flex;
        justify-content: space-between;
        gap: 12px;
        margin-top: 10px;
        padding: 10px 12px;
    }

    .admin-main {
        padding: 14px 10px 28px;
    }

    .admin-topbar {
        margin-bottom: 14px;
    }

    .admin-topbar h1 {
        font-size: clamp(2rem, 13vw, 2.7rem);
        line-height: 0.95;
    }

    .admin-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .admin-stats div,
    .admin-panel,
    .admin-form {
        border-radius: 5px;
    }

    .admin-stats div {
        padding: 14px;
    }

    .admin-stats span {
        font-size: 1.65rem;
    }

    .admin-panel,
    .admin-form {
        padding: 14px;
        margin-bottom: 14px;
    }

    .admin-panel h2,
    .admin-form h2 {
        font-size: 1.55rem;
    }

    .admin-panel-head {
        align-items: stretch;
        flex-direction: column;
    }

    .admin-actions .button,
    .admin-panel-head .button,
    .admin-form .button {
        width: 100%;
    }

    .admin-filter {
        display: flex;
        gap: 8px;
        overflow-x: auto;
        padding-bottom: 4px;
    }

    .admin-filter a {
        flex: 0 0 auto;
        white-space: nowrap;
    }

    .admin-table-wrap {
        overflow: visible;
    }

    .admin-table,
    .admin-table thead,
    .admin-table tbody,
    .admin-table tr,
    .admin-table td {
        display: block;
        width: 100%;
        min-width: 0;
    }

    .admin-table thead {
        display: none;
    }

    .admin-table tr {
        padding: 12px 0;
        border-bottom: 1px solid rgba(215, 169, 87, 0.22);
    }

    .admin-table tr:last-child {
        border-bottom: 0;
    }

    .admin-table td {
        display: grid;
        grid-template-columns: minmax(82px, 34%) minmax(0, 1fr);
        gap: 10px;
        padding: 8px 0;
        border-bottom: 0;
        word-break: break-word;
    }

    .admin-table td::before {
        content: attr(data-label);
        color: var(--gold-soft);
        font-size: 0.74rem;
        font-weight: 800;
        text-transform: uppercase;
    }

    .admin-table td.artist-mini {
        align-items: center;
        grid-template-columns: minmax(82px, 34%) minmax(0, 1fr);
    }

    .admin-table td.artist-mini img {
        display: none;
    }

    .inline-delete-form .button {
        width: 100%;
    }

    .admin-form-grid,
    .admin-detail-grid {
        gap: 12px;
    }

    .admin-gallery-grid {
        gap: 12px;
    }

    .admin-gallery-card {
        display: grid;
        grid-template-columns: 92px minmax(0, 1fr);
    }

    .admin-gallery-card img {
        height: 100%;
        min-height: 136px;
        aspect-ratio: auto;
    }

    .admin-gallery-card .button {
        width: 100%;
    }
}

@media (max-width: 430px) {
    .admin-stats {
        grid-template-columns: 1fr;
    }

    .admin-table td {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .admin-gallery-card {
        grid-template-columns: 1fr;
    }

    .admin-gallery-card img {
        aspect-ratio: 16 / 10;
        min-height: 0;
    }
}
