:root {
    --bg: #070707;
    --surface: #151515;
    --surface-soft: #242424;
    --ink: #f7f3ec;
    --muted: #b9b3a8;
    --line: #383838;
    --green-bg: #244a28;
    --green: #a8e05f;
    --red-bg: #3a1c1c;
    --red: #ff9292;
    --amber-bg: #3a301c;
    --amber: #efc66f;
    --shadow: 0 22px 58px rgba(0, 0, 0, 0.38);
    --radius: 8px;
}

* {
    box-sizing: border-box;
    letter-spacing: 0;
}

html {
    background: #070707;
    scroll-behavior: smooth;
}

body {
    position: relative;
    margin: 0;
    min-height: 100vh;
    background:
        radial-gradient(circle at 20% 0%, rgba(255, 255, 255, 0.08), transparent 34%),
        linear-gradient(145deg, #030303 0%, #111111 44%, #202020 100%);
    color: var(--ink);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.5;
    isolation: isolate;
}

body::before,
body::after {
    position: fixed;
    z-index: 0;
    bottom: -120px;
    width: clamp(280px, 36vw, 560px);
    height: clamp(320px, 42vw, 640px);
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    filter: brightness(1.32) saturate(1.18);
    opacity: 0.4;
    pointer-events: none;
}

body::before {
    left: clamp(-180px, -8vw, -80px);
    background-image: url("../img/Farn_JM_Cropped.png");
    background-position: left bottom;
}

body::after {
    right: clamp(-190px, -8vw, -90px);
    background-image: url("../img/monstera_JM_Cropped.png");
    background-position: right bottom;
}

body > * {
    position: relative;
    z-index: 1;
}

.rain-layer {
    position: fixed;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.rain-drop {
    position: absolute;
    top: -18vh;
    left: var(--x);
    width: 1px;
    height: var(--h);
    border-radius: 999px;
    background: linear-gradient(to bottom, transparent 0%, rgba(229, 244, 236, 0.78) 45%, rgba(229, 244, 236, 0) 100%);
    box-shadow: 0 0 8px rgba(168, 224, 95, 0.18);
    opacity: var(--o);
    transform: rotate(14deg);
    animation: rain-drop-fall calc(var(--d) * 0.72) linear infinite;
    animation-delay: var(--l);
    will-change: transform;
}

.rain-drop-soft {
    width: 1px;
    background: linear-gradient(to bottom, transparent 0%, rgba(229, 244, 236, 0.52) 50%, rgba(229, 244, 236, 0) 100%);
    box-shadow: none;
}

@keyframes rain-drop-fall {
    from {
        transform: translate3d(8vw, -18vh, 0) rotate(14deg);
    }

    to {
        transform: translate3d(-16vw, 128vh, 0) rotate(14deg);
    }
}

@media (prefers-reduced-motion: reduce) {
    .rain-drop {
        animation: none;
        display: none;
    }
}

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

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

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

main {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
    padding: 38px 0 64px;
}

.site-header,
.site-footer {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
}

.site-header {
    position: relative;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 22px 0;
    border-bottom: 1px solid var(--line);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.brand-logo-link {
    min-height: 54px;
}

.brand-logo {
    width: auto;
    height: 54px;
    max-width: 180px;
    object-fit: contain;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--ink);
    color: #090909;
    font-weight: 800;
}

.brand strong,
.brand small {
    display: block;
}

.brand small {
    color: var(--muted);
    font-size: 0.82rem;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.site-nav a {
    min-height: 40px;
    padding: 9px 14px;
    border-radius: 999px;
    color: var(--muted);
}

.site-nav a:hover,
.site-nav a.is-active {
    background: var(--ink);
    color: #090909;
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    background: var(--ink);
}

.flash {
    width: min(1120px, calc(100% - 32px));
    margin: 16px auto 0;
    padding: 12px 16px;
    border-radius: var(--radius);
}

.flash-success {
    background: var(--green-bg);
    color: var(--green);
}

.flash-error {
    background: var(--red-bg);
    color: var(--red);
}

.intro-band {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 28px;
    padding: 52px 0 40px;
    border-bottom: 1px solid var(--line);
}

.intro-artist {
    display: flex;
    align-items: center;
    gap: 22px;
}

.artist-avatar {
    width: clamp(130px, 16vw, 210px);
    height: clamp(96px, 13vw, 170px);
    flex: 0 0 auto;
    border: 2px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    object-fit: cover;
    object-position: 54% 40%;
}

.intro-band h1,
.section-head h1,
.about-copy h1 {
    margin: 0;
    font-size: clamp(2.2rem, 7vw, 5rem);
    line-height: 0.95;
}

.intro-band p,
.section-head p,
.about-copy p {
    max-width: 680px;
    color: var(--muted);
}

.eyebrow {
    margin: 0 0 8px;
    color: var(--green);
    font-size: 0.88rem;
    font-weight: 700;
}

.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin: 44px 0 22px;
}

.section-head h1,
.section-head h2 {
    margin: 0;
}

.section-head.compact {
    margin-top: 30px;
}

.button,
.icon-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 10px 16px;
    background: var(--surface);
    color: var(--ink);
    cursor: pointer;
    font-weight: 700;
}

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

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

.button-ghost {
    border-color: var(--line);
    background: rgba(255, 255, 255, 0.04);
    color: var(--ink);
}

.button-danger {
    border-color: var(--red);
    background: var(--red-bg);
    color: var(--red);
}

.button-small {
    min-height: 36px;
    padding: 8px 12px;
    font-size: 0.92rem;
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.icon-button {
    width: 44px;
    height: 44px;
    padding: 0;
    font-size: 1.8rem;
    line-height: 1;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    min-height: 260px;
    margin: 0;
    border-radius: var(--radius);
    background: var(--surface-soft);
}

.gallery-trigger {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
    padding: 0;
    background: transparent;
    color: inherit;
    cursor: zoom-in;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    transition: transform 180ms ease, filter 180ms ease;
}

.gallery-trigger:hover img,
.gallery-trigger:focus-visible img {
    filter: brightness(1.08);
    transform: scale(1.03);
}

.gallery-item figcaption {
    position: absolute;
    right: 10px;
    bottom: 10px;
    left: 10px;
    padding: 9px 10px;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.9);
    color: #111111;
    font-weight: 700;
}

.gallery-lightbox {
    width: min(1040px, calc(100% - 28px));
    max-height: min(86vh, 920px);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 14px;
    background: #090909;
    box-shadow: var(--shadow);
}

.gallery-lightbox::backdrop {
    background: rgba(0, 0, 0, 0.78);
}

.gallery-lightbox img {
    width: 100%;
    max-height: calc(86vh - 28px);
    border-radius: var(--radius);
    object-fit: contain;
}

.gallery-lightbox-close {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 2;
    background: rgba(9, 9, 9, 0.72);
    color: var(--ink);
}

.empty-state,
.auth-box,
.admin-panel,
.info-panel {
    max-width: 720px;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow);
}

.empty-state.slim {
    box-shadow: none;
}

.calendar-shell {
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow);
}

.calendar-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.calendar-toolbar h2 {
    margin: 0;
    text-align: center;
}

.calendar-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 18px;
    color: var(--muted);
}

.calendar-legend span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot-available {
    background: var(--green);
}

.dot-accepted {
    background: var(--green);
}

.dot-booked {
    background: var(--red);
}

.dot-closed {
    background: var(--muted);
}

.calendar-weekdays,
.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 8px;
}

.calendar-weekdays {
    margin-bottom: 8px;
    color: var(--muted);
    font-size: 0.86rem;
    font-weight: 700;
    text-align: center;
}

.day-tile {
    display: flex;
    min-height: 96px;
    flex-direction: column;
    justify-content: space-between;
    gap: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 12px;
    background: var(--surface-soft);
    color: var(--ink);
    cursor: pointer;
    text-align: left;
}

.day-tile:hover,
.day-tile.is-selected {
    border-color: var(--ink);
    box-shadow: inset 0 0 0 1px var(--ink);
}

.day-available {
    background: var(--green-bg);
    color: #effff5;
}

.day-booked {
    background: var(--red-bg);
    color: #fff0f0;
}

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

.day-has-appointments {
    background: var(--green-bg);
}

.day-no-appointments {
    background: var(--surface-soft);
    color: var(--muted);
}

.day-number {
    font-size: 1.35rem;
    font-weight: 800;
}

.appointment-day {
    position: relative;
}

.appointment-count {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--surface);
    color: var(--ink);
    font-weight: 900;
}

.day-has-appointments .appointment-count {
    background: var(--green);
    color: #07110c;
}

.day-label {
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 700;
}

.calendar-blank {
    min-height: 96px;
}

.calendar-loading,
.calendar-error {
    grid-column: 1 / -1;
    padding: 18px;
    border-radius: var(--radius);
    background: var(--surface-soft);
}

.slot-panel {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
}

.appointments-panel {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
}

.slot-panel-head {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 14px;
}

.slot-panel h2 {
    margin: 0;
}

.slot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
}

.slot-button {
    min-height: 46px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--green-bg);
    color: var(--green);
    cursor: pointer;
    font-weight: 800;
}

.slot-button:disabled {
    cursor: not-allowed;
}

.public-calendar-page main {
    padding: 18px 0 34px;
}

.public-booking-calendar {
    padding: 16px;
}

.public-booking-calendar .calendar-toolbar {
    margin-bottom: 10px;
}

.public-booking-calendar .calendar-toolbar h2 {
    font-size: 1.45rem;
}

.public-booking-calendar .icon-button {
    width: 38px;
    height: 38px;
    font-size: 1.5rem;
}

.public-booking-calendar .calendar-legend {
    margin-bottom: 10px;
    font-size: 0.92rem;
}

.public-booking-calendar .calendar-weekdays {
    margin-bottom: 5px;
}

.public-booking-calendar .calendar-weekdays,
.public-booking-calendar .calendar-grid {
    gap: 6px;
}

.public-booking-calendar .day-tile,
.public-booking-calendar .calendar-blank {
    min-height: 58px;
}

.public-booking-calendar .day-tile {
    gap: 4px;
    padding: 8px 10px;
}

.public-booking-calendar .day-number {
    font-size: 1.12rem;
}

.public-booking-calendar .day-label {
    font-size: 0.78rem;
}

.public-booking-calendar .slot-panel {
    margin-top: 10px;
    padding-top: 10px;
}

.public-booking-calendar .slot-panel-head {
    margin-bottom: 8px;
}

.public-booking-calendar .slot-panel h2 {
    font-size: 1.12rem;
}

.public-booking-calendar .slot-grid {
    grid-template-columns: repeat(auto-fit, minmax(116px, 1fr));
    gap: 8px;
}

.public-booking-calendar .slot-button {
    min-height: 38px;
}

.slot-pending {
    background: var(--red-bg);
    color: var(--red);
}

.slot-accepted {
    background: var(--red-bg);
    color: var(--red);
}

.booking-dialog {
    width: min(680px, calc(100% - 26px));
    border: 0;
    border-radius: var(--radius);
    padding: 0;
    box-shadow: var(--shadow);
}

.booking-dialog::backdrop {
    background: rgba(15, 15, 15, 0.42);
}

.booking-form {
    display: grid;
    gap: 16px;
    padding: 24px;
}

.dialog-head {
    display: flex;
    justify-content: space-between;
    gap: 16px;
}

.dialog-head h2 {
    margin: 0;
}

.stack-form,
.upload-form,
.admin-day-editor {
    display: grid;
    gap: 14px;
}

label span,
.form-note,
.form-status {
    color: var(--muted);
    font-size: 0.92rem;
}

label {
    display: grid;
    gap: 7px;
}

input,
textarea,
select {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 11px 12px;
    background: #101010;
    color: var(--ink);
}

textarea {
    resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
    outline: 2px solid rgba(31, 122, 88, 0.22);
    border-color: var(--green);
}

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

.checkbox-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkbox-row input {
    width: 18px;
    height: 18px;
}

.about-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 32px;
    align-items: start;
}

.about-copy {
    padding: 44px 0;
}

.about-artist-head {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-bottom: 20px;
}

.about-avatar {
    width: clamp(130px, 15vw, 190px);
    height: clamp(130px, 15vw, 190px);
    flex: 0 0 auto;
    border: 2px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    object-fit: cover;
    object-position: 54% 40%;
}

.rich-copy {
    display: grid;
    gap: 14px;
    max-width: 720px;
    color: var(--muted);
}

.about-copy .button {
    margin-top: 22px;
}

.admin-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
}

.stat-card,
.booking-card,
.admin-gallery-item {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow);
}

.stat-card {
    display: grid;
    gap: 8px;
    padding: 22px;
}

.stat-card span {
    color: var(--muted);
}

.stat-card strong {
    font-size: 1.8rem;
}

.admin-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.content-editor {
    display: grid;
    gap: 18px;
}

.content-editor-grid {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 18px;
    align-items: start;
}

.content-preview {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface-soft);
}

.content-preview img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: 54% 40%;
}

.admin-gallery-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 18px;
}

.admin-gallery-item {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 16px;
    padding: 14px;
}

.admin-gallery-item img {
    width: 100%;
    height: 100%;
    min-height: 220px;
    border-radius: var(--radius);
    object-fit: cover;
}

.filter-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}

.filter-tabs a {
    padding: 9px 14px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--muted);
}

.filter-tabs a.is-active {
    background: var(--ink);
    color: #090909;
}

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

.booking-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px;
}

.booking-card p {
    margin: 4px 0 0;
    color: var(--muted);
}

.booking-card.detailed {
    display: grid;
    align-items: stretch;
}

.appointment-card {
    align-items: stretch;
}

.booking-main {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 16px;
}

.booking-main h2 {
    margin: 0;
}

.status-pill {
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 0.82rem;
    font-weight: 800;
}

.status-pending {
    background: var(--amber-bg);
    color: var(--amber);
}

.status-accepted {
    background: var(--green-bg);
    color: var(--green);
}

.status-declined {
    background: var(--red-bg);
    color: var(--red);
}

.booking-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 12px;
    margin: 0;
}

.booking-details dt {
    color: var(--muted);
    font-size: 0.82rem;
}

.booking-details dd {
    margin: 0;
    overflow-wrap: anywhere;
    font-weight: 700;
}

.message-box {
    padding: 14px;
    border-radius: var(--radius);
    background: var(--surface-soft);
}

.message-box p {
    margin: 6px 0 0;
}

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

.booking-actions {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 14px;
    align-items: end;
}

.decline-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    align-items: end;
}

.admin-day-editor {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
}

.slot-editor {
    display: grid;
    gap: 12px;
}

.slot-editor-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.slot-editor-head h3 {
    margin: 0;
}

.slot-editor-list {
    display: grid;
    gap: 10px;
}

.slot-editor-list.is-disabled {
    opacity: 0.45;
}

.slot-editor-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) 44px;
    gap: 10px;
    align-items: end;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.03);
}

.slot-remove-button {
    min-height: 44px;
}

.site-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 24px 0 34px;
    border-top: 1px solid var(--line);
    color: var(--muted);
}

@media (max-width: 820px) {
    body::before,
    body::after {
        bottom: -78px;
        width: 245px;
        height: 310px;
        opacity: 0.28;
    }

    body::before {
        left: -112px;
    }

    body::after {
        right: -118px;
    }

    .brand-logo-link {
        min-height: 44px;
    }

    .brand-logo {
        height: 44px;
        max-width: 140px;
    }

    main,
    .site-header,
    .site-footer,
    .flash {
        width: min(100% - 24px, 1120px);
    }

    .nav-toggle {
        display: block;
    }

    .site-nav {
        position: absolute;
        top: 82px;
        right: 12px;
        left: 12px;
        z-index: 1000;
        display: none;
        padding: 10px;
        border: 1px solid var(--line);
        border-radius: var(--radius);
        background: var(--surface);
        box-shadow: var(--shadow);
    }

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

    .public-calendar-page .site-nav {
        top: 68px;
    }

    .public-calendar-page main {
        padding-top: 10px;
    }

    .public-booking-calendar {
        padding: 10px;
    }

    .public-booking-calendar .calendar-toolbar {
        margin-bottom: 8px;
    }

    .public-booking-calendar .calendar-toolbar h2 {
        font-size: 1.1rem;
    }

    .public-booking-calendar .icon-button {
        width: 34px;
        height: 34px;
    }

    .public-booking-calendar .calendar-legend {
        gap: 8px;
        margin-bottom: 7px;
        font-size: 0.78rem;
    }

    .public-booking-calendar .calendar-weekdays {
        font-size: 0.74rem;
    }

    .public-booking-calendar .calendar-weekdays,
    .public-booking-calendar .calendar-grid {
        gap: 4px;
    }

    .public-booking-calendar .day-tile,
    .public-booking-calendar .calendar-blank {
        min-height: 44px;
    }

    .public-booking-calendar .day-tile {
        padding: 6px;
    }

    .public-booking-calendar .day-number {
        font-size: 0.9rem;
    }

    .public-booking-calendar .slot-panel {
        margin-top: 8px;
        padding-top: 8px;
    }

    .public-booking-calendar .slot-panel-head {
        margin-bottom: 6px;
    }

    .public-booking-calendar .slot-panel h2 {
        font-size: 1rem;
    }

    .public-booking-calendar .slot-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 6px;
    }

    .public-booking-calendar .slot-button {
        min-height: 34px;
        font-size: 0.86rem;
    }

    .intro-band,
    .section-head,
    .about-layout,
    .about-artist-head,
    .content-editor-grid,
    .booking-actions,
    .decline-form {
        grid-template-columns: 1fr;
    }

    .about-artist-head {
        align-items: start;
    }

    .content-preview {
        max-width: 260px;
    }

    .intro-artist {
        gap: 14px;
    }

    .section-head {
        align-items: start;
    }

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

    .calendar-shell {
        padding: 14px;
    }

    .day-tile,
    .calendar-blank {
        min-height: 76px;
        padding: 9px;
    }

    .day-number {
        font-size: 1rem;
    }

    .day-label {
        font-size: 0.72rem;
    }

    .form-grid,
    .booking-details,
    .slot-editor-row {
        grid-template-columns: 1fr;
    }

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

    .site-footer {
        flex-direction: column;
        align-items: start;
    }
}

@media (max-width: 520px) {
    .calendar-weekdays,
    .calendar-grid {
        gap: 5px;
    }

    .day-tile {
        min-height: 62px;
    }

    .day-label {
        display: none;
    }

    .booking-card,
    .booking-main {
        display: grid;
    }

    .intro-artist {
        align-items: start;
        flex-direction: column;
    }

    .artist-avatar {
        width: 150px;
        height: 118px;
    }
}
