@import url('https://fonts.googleapis.com/css2?family=DM+Mono:wght@400;500&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&display=swap');

:root {
    --black: #080808;
    --white: #fff;
    --paper: #f7f7f4;
    --line: rgba(8, 8, 8, .14);
    --muted: #777771;
    --serif: "Playfair Display", Georgia, serif;
    --mono: "DM Mono", "Courier New", monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--black); background: var(--paper); font-family: Arial, Helvetica, sans-serif; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
img { display: block; max-width: 100%; }

.site-header {
    position: absolute; inset: 0 0 auto; z-index: 10;
    display: flex; align-items: center; justify-content: space-between;
    padding: 28px 7vw; color: var(--white);
}
.brand { font: 700 23px var(--serif); letter-spacing: .12em; }
.brand span { font: 400 11px var(--mono); letter-spacing: .28em; margin-left: 5px; }
.desktop-nav { display: flex; gap: 32px; font: 12px var(--mono); text-transform: uppercase; letter-spacing: .15em; }
.desktop-nav a:hover, .text-link:hover { opacity: .55; }
.menu-button { display: none; border: 0; color: inherit; background: transparent; text-transform: uppercase; font: 11px var(--mono); letter-spacing: .15em; }
.menu-open .desktop-nav { display: flex; }

.flash { position: fixed; top: 18px; left: 50%; transform: translateX(-50%); z-index: 99; padding: 14px 22px; font: 11px var(--mono); letter-spacing: .05em; box-shadow: 0 12px 30px #0002; }
.flash-success { background: #111; color: #fff; }
.flash-error { background: #fff; color: #900; border: 1px solid #900; }

.hero { position: relative; min-height: 100vh; display: grid; place-items: center; overflow: hidden; background: var(--black); color: #fff; }
.hero-media, .hero-overlay { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-media { opacity: .48; }
.hero-overlay { background: radial-gradient(circle at center, #0002, #000 75%); }
.hero-content { position: relative; z-index: 1; width: min(950px, 88vw); text-align: center; }
.hero-content h1 { margin: 20px 0 30px; font: 700 clamp(52px, 10vw, 140px)/.84 var(--serif); letter-spacing: -.06em; text-transform: uppercase; }
.hero-content h1 em, h2 em { font-weight: 400; }
.hero-content > p:not(.eyebrow) { color: #aaa; font: 12px var(--mono); letter-spacing: .31em; text-transform: uppercase; }
.eyebrow { margin: 0 0 14px; color: var(--muted); font: 11px var(--mono); letter-spacing: .22em; text-transform: uppercase; }
.hero .eyebrow { color: #aaa; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 18px; border: 1px solid transparent; padding: 16px 26px; font: 11px var(--mono); letter-spacing: .16em; text-transform: uppercase; transition: .2s ease; cursor: pointer; }
.button-light { background: #fff; color: #000; }
.button-light:hover { background: #ddd; }
.button-dark { background: #000; color: #fff; }
.button-dark:hover { background: #333; }
.button-outline-light { border-color: #555; color: #fff; }
.button-outline-light:hover { border-color: #fff; }
.full-width { width: 100%; }

.section, .page-section { padding: 130px 7vw; }
.section-heading { display: flex; align-items: end; justify-content: space-between; border-bottom: 1px solid var(--line); padding-bottom: 25px; margin-bottom: 52px; }
h1, h2, h3 { margin: 0; }
h1, h2 { font-family: var(--serif); text-transform: uppercase; }
.section-heading h2 { font-size: clamp(40px, 5vw, 70px); letter-spacing: -.04em; }
.text-link { font: 11px var(--mono); letter-spacing: .15em; text-transform: uppercase; }
.artist-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 32px; }
.artist-grid-four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.artist-card { display: block; }
.artist-card.bordered { background: #fff; border: 1px solid #0001; }
.artist-image { position: relative; aspect-ratio: 4/5; overflow: hidden; background: #e9e9e5; }
.artist-image img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1); transition: transform .7s ease; }
.artist-card:hover img { transform: scale(1.05); }
.artist-image > span, .large-artist-image > span { display: grid; place-items: center; height: 100%; color: #0002; font: 80px var(--serif); }
.artist-image b { position: absolute; top: 16px; right: 16px; padding: 7px 10px; background: #fff; font: 10px var(--mono); letter-spacing: .1em; text-transform: uppercase; }
.artist-card h3 { margin: 18px 0 7px; font: 700 25px var(--serif); }
.artist-card:hover h3 { font-style: italic; }
.artist-card p { margin: 0; color: var(--muted); font: 10px var(--mono); letter-spacing: .12em; text-transform: uppercase; }
.artist-card-copy { padding: 20px; }
.artist-card-copy h3 { margin-top: 0; }
.dark-section { display: grid; grid-template-columns: 1fr 1fr; gap: 10vw; padding: 130px 7vw; background: #111; color: #fff; }
.dark-section h2, .cta-section h2 { font-size: clamp(48px, 7vw, 100px); letter-spacing: -.06em; }
.dark-section .eyebrow { color: #888; }
.process-list article { border-top: 1px solid #fff3; padding: 28px 0; }
.process-list strong { font: 15px var(--mono); text-transform: uppercase; letter-spacing: .12em; }
.process-list p { max-width: 470px; color: #888; font: 13px/1.8 var(--mono); }
.cta-section { padding: 130px 7vw; text-align: center; background: #000; color: #fff; }
.cta-section h2 { margin-bottom: 45px; }
.site-footer { display: grid; grid-template-columns: 2fr 1fr; gap: 60px; padding: 80px 7vw 30px; color: #fff; background: #000; border-top: 1px solid #fff2; }
.site-footer .brand { display: block; margin-bottom: 16px; }
.site-footer p { color: #777; font: 12px/1.7 var(--mono); }
.site-footer > div:nth-child(2) { display: flex; flex-direction: column; gap: 12px; font: 12px var(--mono); }
.site-footer .eyebrow { margin-bottom: 4px; color: #666; }
.footer-bottom { grid-column: 1 / -1; display: flex; justify-content: space-between; border-top: 1px solid #fff2; padding-top: 22px; color: #666; font: 10px var(--mono); text-transform: uppercase; letter-spacing: .08em; }

.page-section { min-height: 70vh; padding-top: 160px; }
.page-intro { margin-bottom: 54px; }
.page-intro h1, .admin-heading h1 { font-size: clamp(55px, 8vw, 110px); letter-spacing: -.06em; }
.filters { display: flex; align-items: center; justify-content: space-between; gap: 30px; border-block: 1px solid var(--line); padding: 18px 0; margin-bottom: 50px; }
.filter-buttons { display: flex; flex-wrap: wrap; gap: 8px; }
.filter-buttons a { border: 1px solid var(--line); padding: 10px 13px; font: 10px var(--mono); letter-spacing: .12em; text-transform: uppercase; }
.filter-buttons a.active, .filter-buttons a:hover { background: #000; border-color: #000; color: #fff; }
.filters input, .admin-form input, .admin-form select, .admin-form textarea, .login-card input, .setup-card input, .booking-box input, .booking-box select, .booking-box textarea { min-width: 0; width: 100%; border: 0; border-bottom: 1px solid var(--line); border-radius: 0; background: transparent; padding: 12px 0; color: inherit; outline: 0; }
.filters input { max-width: 250px; font: 11px var(--mono); text-transform: uppercase; }
.empty-state { padding: 80px 20px; border: 1px solid var(--line); text-align: center; color: var(--muted); font: 12px var(--mono); text-transform: uppercase; }

.artist-detail { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(320px, .8fr); align-items: start; gap: 8vw; }
.large-artist-image { aspect-ratio: 4/5; overflow: hidden; background: #e9e9e5; }
.large-artist-image img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1); }
.detail-title { display: flex; align-items: start; justify-content: space-between; gap: 20px; margin: 34px 0 22px; }
.detail-title h1 { font-size: clamp(46px, 7vw, 96px); letter-spacing: -.06em; }
.share-link { border: 1px solid var(--line); padding: 9px 12px; font: 10px var(--mono); text-transform: uppercase; letter-spacing: .1em; }
.artist-meta { display: flex; gap: 30px; padding: 20px 0; border-block: 1px solid var(--line); color: var(--muted); font: 11px var(--mono); text-transform: uppercase; letter-spacing: .1em; }
.artist-bio { max-width: 700px; margin-top: 38px; font: 20px/1.8 var(--serif); }
.booking-box { position: sticky; top: 35px; padding: 34px; border: 1px solid #000; background: #fff; box-shadow: 15px 15px 0 #000; }
.booking-box h2 { font-size: 32px; letter-spacing: -.04em; }
.booking-box .eyebrow { padding: 16px 0 25px; border-bottom: 1px solid var(--line); }
.booking-box form, .admin-form, .login-card form, .setup-card form { display: grid; gap: 22px; }
.booking-box label, .admin-form label, .login-card label, .setup-card label { display: grid; gap: 6px; font: 10px var(--mono); text-transform: uppercase; letter-spacing: .12em; }
.inline-input { display: flex; align-items: end; gap: 12px; }
.inline-input input { flex: 1; }
.small-button { border: 0; padding: 12px 13px; background: #000; color: #fff; cursor: pointer; font: 10px var(--mono); text-transform: uppercase; letter-spacing: .1em; }
.verified { padding: 12px 0; color: #111; font: 10px var(--mono); text-transform: uppercase; }
.otp-box { display: flex; align-items: end; gap: 12px; padding: 16px; background: var(--paper); }
.otp-box label { flex: 1; }
.form-two { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.booking-box button:disabled { cursor: not-allowed; opacity: .35; }
.confirmation { min-height: 78vh; display: grid; place-items: center; align-content: center; padding: 130px 7vw; text-align: center; background: #000; color: #fff; }
.confirmation-mark { display: grid; place-items: center; width: 75px; height: 75px; margin: 0 auto 30px; border: 1px solid #fff; border-radius: 50%; font-size: 35px; }
.confirmation h1 { margin-bottom: 25px; font-size: clamp(45px, 8vw, 100px); }
.confirmation > p:not(.eyebrow) { max-width: 650px; color: #999; font: 13px/1.8 var(--mono); }
.button-row { display: flex; justify-content: center; gap: 15px; margin-top: 35px; }

.admin-body { display: grid; grid-template-columns: 240px 1fr; min-height: 100vh; background: var(--paper); }
.admin-sidebar { padding: 45px 28px; background: #000; color: #fff; }
.admin-sidebar .brand { display: block; margin-bottom: 65px; }
.admin-sidebar .eyebrow { color: #666; }
.admin-sidebar nav { display: grid; gap: 20px; margin-top: 30px; font: 12px var(--mono); text-transform: uppercase; letter-spacing: .1em; }
.admin-sidebar nav a:hover { color: #aaa; }
.admin-main { min-width: 0; padding: 70px 6vw; }
.admin-heading { border-bottom: 1px solid var(--line); padding-bottom: 30px; margin-bottom: 35px; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; margin-bottom: 35px; }
.stats-grid > div { display: grid; gap: 18px; padding: 23px; background: #fff; border: 1px solid var(--line); }
.stats-grid span, .admin-panel small { color: var(--muted); font: 10px var(--mono); letter-spacing: .1em; text-transform: uppercase; }
.stats-grid strong { font: 42px var(--serif); }
.admin-panel { margin-bottom: 30px; padding: 30px; background: #fff; border: 1px solid var(--line); }
.admin-panel h2 { margin-bottom: 25px; font-size: 25px; letter-spacing: -.03em; }
.panel-heading { display: flex; justify-content: space-between; border-bottom: 1px solid var(--line); padding-bottom: 18px; margin-bottom: 5px; }
.admin-list, .admin-table { display: grid; }
.admin-list > div, .admin-table > div { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.admin-list > div:last-child, .admin-table > div:last-child { border-bottom: 0; }
.admin-list span, .admin-table small { display: block; margin-top: 6px; color: var(--muted); font: 11px var(--mono); }
.status { padding: 5px 8px; font: 9px var(--mono); text-transform: uppercase; }
.status-pending { border: 1px solid #000; }
.status-confirmed { background: #000; color: #fff; }
.status-cancelled { background: #ddd; color: #777; text-decoration: line-through; }
.muted { color: var(--muted); font: 12px var(--mono); }
.admin-form { max-width: 800px; }
.checkbox { display: flex !important; grid-template-columns: auto 1fr; align-items: center; }
.checkbox input { width: auto; }
.inline-form { display: inline; }
.link-button { border: 0; padding: 0; background: transparent; cursor: pointer; font: 11px var(--mono); text-transform: uppercase; }
.link-button:hover { text-decoration: underline; }
.status-form { display: flex; align-items: center; gap: 8px; }
.status-form select { border: 1px solid var(--line); background: #fff; padding: 8px; font: 10px var(--mono); text-transform: uppercase; }
.status-form .button { padding: 9px 12px; }
.admin-login, .setup-page { min-height: 100vh; display: grid; place-items: center; background: #000; color: #fff; padding: 30px; }
.login-card, .setup-card { width: min(460px, 100%); padding: 55px; background: #fff; color: #000; }
.login-card .brand, .setup-card h1 { display: block; margin-bottom: 10px; }
.login-card .eyebrow, .setup-card .eyebrow { margin-bottom: 45px; }
.setup-card p:not(.eyebrow):not(.setup-warning) { color: var(--muted); font: 12px/1.6 var(--mono); }
.setup-warning { margin: 25px 0 0; color: #900; font: 10px var(--mono); text-transform: uppercase; }

@media (max-width: 850px) {
    .site-header { padding: 24px 6vw; }
    .desktop-nav { display: none; position: absolute; top: 75px; left: 0; right: 0; flex-direction: column; gap: 20px; padding: 25px 6vw; background: #fff; color: #000; }
    .menu-button { display: block; }
    .hero-content h1 { font-size: clamp(48px, 14vw, 100px); }
    .section, .page-section, .dark-section, .cta-section { padding: 90px 6vw; }
    .artist-grid, .artist-grid-four { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .dark-section, .artist-detail { grid-template-columns: 1fr; gap: 55px; }
    .booking-box { position: static; }
    .site-footer { padding: 60px 6vw 25px; }
}
@media (max-width: 560px) {
    .artist-grid, .artist-grid-four, .stats-grid, .form-two { grid-template-columns: 1fr; }
    .section-heading, .filters { align-items: start; flex-direction: column; }
    .filters input { max-width: none; }
    .button-row { flex-direction: column; }
    .admin-body { display: block; }
    .admin-sidebar { padding: 25px; }
    .admin-sidebar .brand { margin-bottom: 25px; }
    .admin-sidebar nav { display: flex; flex-wrap: wrap; gap: 15px; margin-top: 15px; }
    .admin-main { padding: 45px 6vw; }
    .admin-list > div, .admin-table > div { align-items: start; flex-direction: column; }
    .login-card, .setup-card { padding: 35px 25px; }
    .booking-box { padding: 25px; box-shadow: 8px 8px 0 #000; }
}