:root {
    --bg: #14161c;
    --text: #d7c2ad;
    --text-soft: #b9a795;
    --muted: #8f8175;
    --bronze: #b88c68;
    --bronze-soft: rgba(184, 140, 104, 0.42);
    --line: rgba(184, 140, 104, 0.26);
    --shadow: rgba(0, 0, 0, 0.58);
    --max: 1060px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background: var(--bg);
}

body {
    min-height: 100vh;
    background: var(--bg);
    color: var(--text);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 17px;
    overflow-x: hidden;
}

.page-shell {
    width: min(var(--max), calc(100% - 44px));
    margin: 0 auto;
    padding: 58px 0 78px;
}

.section-space {
    margin-top: 72px;
}

.site-title {
    text-align: center;
    letter-spacing: 0.22em;
}

.site-title h1 {
    font-family: "Cinzel", Georgia, serif;
    font-size: clamp(2.9rem, 7vw, 5.6rem);
    font-weight: 300;
    line-height: 0.95;
    color: #cdb9a4;
    text-shadow: 0 0 22px rgba(184, 140, 104, 0.10);
}

.site-title p {
    margin-top: 8px;
    font-family: "Cinzel", Georgia, serif;
    font-size: clamp(0.9rem, 1.6vw, 1.38rem);
    color: var(--muted);
}

.ornament-line {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 14px;
    margin: 2px auto 0;
    color: var(--bronze);
}

.ornament-line::before,
.ornament-line::after,
.section-heading--lined::before,
.section-heading--lined::after,
.site-footer::before,
.site-footer::after {
    content: "";
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--line), var(--bronze-soft), var(--line), transparent);
}

.ornament-line span,
.moon-mark {
    position: relative;
}

.ornament-line span::before,
.moon-mark::after {
    content: "✦";
}

.ornament-line span::before,
.vertical-ornament span,
.moon-mark::after {
    color: #e8bb8e;
    text-shadow: 0 0 14px rgba(232, 187, 142, 0.34);
}

.hero-grid {
    position: relative;
    display: block;
    min-height: 430px;
    padding: 70px 84px 74px;
}

.hero-copy {
    position: relative;
    z-index: 2;
    max-width: 330px;
}

.hello,
.section-heading h2,
.commission-text h3,
.draw-column h2 {
    font-family: "Cinzel", Georgia, serif;
    font-weight: 300;
    color: #ccb39c;
}

.hello {
    font-size: clamp(2rem, 3vw, 2.75rem);
    line-height: 1.12;
}

.small-divider {
    width: 225px;
    height: 1px;
    margin: 18px 0 26px;
    background: linear-gradient(90deg, var(--bronze-soft), transparent);
}

.intro,
.note,
.section-heading p,
.gallery-more,
.price-list,
.draw-column li {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 17px;
    line-height: 1.62;
}

.intro {
    max-width: 245px;
    color: #d4c3b4;
    font-weight: 400;
}

.social-links {
    display: grid;
    grid-template-columns: repeat(2, max-content);
    gap: 13px 38px;
    margin-top: 42px;
}

.social-links a {
    color: #c99e84;
    font-family: "Cinzel", Georgia, serif;
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 0.08em;
    line-height: 1.62;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 160ms ease, text-shadow 160ms ease;
}
.social-links .discord-id {
    color: #c99e84;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gold);
    font-family: "Cinzel", Georgia, serif;
    font-size: 1.1rem;
}
.discord-copy {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    color: var(--gold);
    font-family: "Cinzel", Georgia, serif;
    font-size: 1.1rem;
    transition: color .2s ease, transform .15s ease;
    user-select: none;
}

.discord-copy:hover {
    color: #f4c89b;
    transform: translateX(2px);
}

.discord-copy:active {
    transform: translateX(1px);
}

.gallery-more {
    color: #c99e84;
    text-decoration: none;
    letter-spacing: 0.08em;
    font-weight: 600;
    transition: color 160ms ease, text-shadow 160ms ease;
}

.social-links a span {
    margin-right: 7px;
    color: #d5a47f;
}

.social-links a:hover,
.gallery-more:hover {
    color: #f0c7a9;
    text-shadow: 0 0 12px rgba(213, 164, 127, 0.34);
}

.placeholder {
    position: relative;
    overflow: hidden;
    background-color: #111521;
    box-shadow: inset 0 0 0 1px rgba(184, 140, 104, 0.16), 0 22px 38px var(--shadow);
}

.placeholder::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 55% 35%, rgba(212, 194, 171, 0.17), transparent 24%),
        radial-gradient(circle at 25% 82%, rgba(88, 66, 118, 0.36), transparent 42%),
        linear-gradient(135deg, rgba(255,255,255,0.05), transparent 34%);
}

.placeholder span {
    position: absolute;
    left: 14px;
    bottom: 12px;
    z-index: 2;
    color: rgba(226, 204, 181, 0.64);
    font-family: "Cinzel", Georgia, serif;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
}

.placeholder--hero {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    background: transparent;
    box-shadow: none;
    pointer-events: none;
    z-index: 1;
}

.placeholder--hero::before,
.placeholder--hero::after,
.placeholder--hero span {
    display: none;
}

.hero-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.section-heading {
    text-align: center;
    margin-bottom: 34px;
}

.section-heading h2,
.commission-text h3,
.draw-column h2 {
    font-size: clamp(1.75rem, 2.3vw, 2.4rem);
    letter-spacing: 0.08em;
}

.section-heading p {
    color: var(--text-soft);
    font-weight: 600;
}

.section-heading--lined {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 18px;
}

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

.gallery-thumb {
    display: block;
    width: 100%;
    aspect-ratio: 1.08 / 1;
    border: 0;
    cursor: pointer;
}

.gallery-thumb span {
    font-size: 0.68rem;
    opacity: 0.7;
}

.thumb--violet { background: radial-gradient(circle at 40% 40%, #50315b, #161321 58%, #05070c); }
.thumb--skin { background: radial-gradient(circle at 52% 36%, #c2a087, #4b3b42 48%, #08090f); }
.thumb--castle { background: radial-gradient(circle at 60% 25%, #706b9e, #181c30 48%, #07090f); }
.thumb--gold { background: radial-gradient(circle at 55% 42%, #8b6d3e, #19151a 54%, #07090f); }
.thumb--green { background: radial-gradient(circle at 42% 52%, #7e8c66, #2f3429 45%, #07090f); }
.thumb--anubis { background: radial-gradient(circle at 55% 37%, #9d7142, #181116 48%, #07090f); }
.thumb--silver { background: radial-gradient(circle at 52% 35%, #b9c1c7, #202332 48%, #07090f); }
.thumb--red { background: radial-gradient(circle at 54% 45%, #8e2631, #26121b 52%, #07090f); }

.gallery-more {
    display: block;
    width: fit-content;
    margin: 28px auto 0;
    letter-spacing: 0;
    color: #cdb4a0;
}

.commissions {
    margin-top: 84px;
}

.commission-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 76px;
    padding: 28px 16px 34px;
}

.commission-row--reverse .commission-image {
    order: 2;
}

.commission-row--reverse .commission-text {
    order: 1;
}

.placeholder--wide {
    aspect-ratio: 2 / 1;
    min-height: 0;
    border: 1px solid rgba(184, 140, 104, 0.22);
}

.art--dark { background: radial-gradient(circle at 70% 36%, #d4c1b8, #1b1c27 34%, #05060a 75%); }
.art--blond { background: radial-gradient(circle at 72% 38%, #d9c2a0, #2d2e3b 36%, #05060a 75%); }
.art--pond { background: radial-gradient(circle at 34% 42%, #e0ba9f, #34422a 42%, #05060a 76%); }

.commission-text {
    max-width: 430px;
}

.commission-text--centered {
    text-align: center;
    justify-self: center;
}

.price-list {
    margin-top: 46px;
    color: #d5c3b2;
}

.price-list div {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 10px;
}

.price-list div::before {
    content: "";
    grid-column: 2;
    grid-row: 1;
    border-bottom: 1px dotted rgba(215, 194, 173, 0.45);
    transform: translateY(-4px);
}

.price-list dt {
    grid-column: 1;
}

.price-list dd {
    grid-column: 3;
    white-space: nowrap;
}

.price-list strong {
    color: #f1d0b3;
}

.price-list--single div {
    grid-template-columns: auto 1fr auto;
}

.note {
    margin-top: 48px;
    color: #d9c2ad;
    font-size: 16px;
    font-style: italic;
    font-weight: 500;
}

.ornament-break {
    display: block;
    position: relative;
    width: 100%;
    max-width: var(--max);
    height: 42px;
    margin: 34px auto;
}

.ornament-break::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--line), var(--bronze-soft), var(--line), transparent);
    transform: translateY(-50%);
}

.ornament-break::after {
    content: "✦";
    position: absolute;
    left: 50%;
    top: 50%;
    padding: 0 12px;
    background: var(--bg);
    color: #e8bb8e;
    font-family: "Cinzel", Georgia, serif;
    font-size: 1.35rem;
    line-height: 1;
    text-shadow: 0 0 10px rgba(232, 187, 142, 0.26);
    transform: translate(-50%, -50%);
}

.draw-lists {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: start;
    gap: 42px;
    padding: 48px 122px 24px;
    border-top: 1px solid var(--line);
}

.draw-column:first-child {
    text-align: right;
}

.draw-column:last-child {
    text-align: left;
}

.draw-column ul {
    list-style: none;
    margin-top: 28px;
}

.draw-column li {
    color: #d8c4b4;
    font-weight: 400;
}

.draw-column .note {
    margin-top: 42px;
}

.vertical-ornament {
    width: 1px;
    min-height: 158px;
    margin-top: 44px;
    background: linear-gradient(180deg, transparent, var(--bronze-soft), transparent);
    display: grid;
    place-items: center;
}

.vertical-ornament span {
    position: relative;
    left: -14px;
    font-size: 2.2rem;
    line-height: 1;
    background: var(--bg);
    padding: 12px 0;
}

.site-footer {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 18px;
    margin-top: 42px;
}

.moon-mark::after {
    display: none;
}

.moon-mark {
    font-size: 3rem;
    color: var(--bronze);
    line-height: 1;
    text-shadow: 0 0 14px rgba(232, 187, 142, 0.25);
}

.lightbox {
    position: fixed;
    inset: 0;
    display: none;
    place-items: center;
    padding: 24px;
    background: rgba(3, 4, 8, 0.86);
    z-index: 10;
}

.lightbox.is-open {
    display: grid;
}

.lightbox-image {
    max-width: min(92vw, 1100px);
    max-height: 86vh;
    border: 1px solid var(--line);
    box-shadow: 0 35px 70px rgba(0,0,0,0.7);
}

.lightbox-close {
    position: fixed;
    right: 28px;
    top: 24px;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: rgba(9, 12, 19, 0.8);
    color: var(--text);
    font-size: 2rem;
    cursor: pointer;
}

@media (max-width: 900px) {
    .page-shell {
        width: min(100% - 28px, var(--max));
        padding-top: 38px;
    }

    .hero-grid {
        min-height: 380px;
        padding: 48px 28px 54px;
    }

    .commission-row,
    .draw-lists {
        grid-template-columns: 1fr;
    }

    .hero-copy,
    .intro,
    .commission-text {
        max-width: none;
    }

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

    .commission-row {
        gap: 28px;
        padding-inline: 0;
    }

    .commission-row--reverse .commission-image,
    .commission-row--reverse .commission-text {
        order: initial;
    }

    .draw-lists {
        padding-inline: 0;
        gap: 28px;
    }

    .vertical-ornament {
        width: 100%;
        min-height: 1px;
        height: 1px;
        margin: 0;
        background: linear-gradient(90deg, transparent, var(--bronze-soft), transparent);
    }

    .vertical-ornament span {
        padding: 0 12px;
    }

    .social-links {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 520px) {
    .site-title {
        letter-spacing: 0.12em;
    }

    .site-title h1 {
        font-size: 2.45rem;
    }

    .section-space {
        margin-top: 52px;
    }

    .hero-grid {
        padding-inline: 18px;
    }

    .social-links {
        grid-template-columns: 1fr;
        gap: 10px;
    }

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

    .section-heading--lined {
        grid-template-columns: 1fr;
    }

    .section-heading--lined::before,
    .section-heading--lined::after {
        display: none;
    }

    .price-list div {
        grid-template-columns: 1fr;
        gap: 2px;
        margin-bottom: 16px;
    }

    .price-list div::before {
        display: none;
    }

    .price-list dd {
        grid-column: 1;
    }
}
