* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #fff;
    background: #071b12;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
}

/* HEADER */

.site-header,
.premium-header {
    position: sticky;
    top: 0;
    z-index: 999;
    padding: 6px 24px;
    background: linear-gradient(180deg, rgba(58, 5, 7, .96), rgba(20, 2, 2, .94));
    border-bottom: 1px solid rgba(212, 175, 55, .75);
    box-shadow: 0 12px 40px rgba(0,0,0,.45);
    backdrop-filter: blur(14px);
    overflow: visible;
}

.header-gold-line {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #d4af37, #fff1ad, #d4af37, transparent);
}

.nav-wrap,
.premium-nav {
    max-width: 1800px;
    min-height: 92px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    overflow: visible;
}

.logo-wrap {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex: 0 0 420px;
    width: 300px;
    max-width: 300px;
    overflow: visible;
}

.site-logo {
    display: block;
    width: 300px;
    height: auto;
    max-width: 300px;
    max-height: none;
    object-fit: contain;
    filter:
        drop-shadow(0 0 18px rgba(255,215,100,.45))
        drop-shadow(0 8px 18px rgba(0,0,0,.45));
}

.logo {
    color: #f8df97;
    font-size: 28px;
    font-weight: 800;
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    gap: 16px;
    min-width: 0;
}

.main-nav a {
    margin: 0;
    color: #fff3d2;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .6px;
    position: relative;
    padding: 12px 0;
    white-space: nowrap;
}

.main-nav a:after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 4px;
    width: 0;
    height: 2px;
    background: #d4af37;
    transform: translateX(-50%);
    transition: .25s ease;
}

.main-nav a:hover {
    color: #ffd978;
    text-shadow: 0 0 12px rgba(255, 213, 100, .45);
}

.main-nav a:hover:after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
}

.header-login,
.header-book {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 14px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .7px;
    white-space: nowrap;
}

.header-login {
    background: linear-gradient(180deg, #0e3b24, #061d12);
    border: 1px solid rgba(212,175,55,.75);
    color: #fff4cf;
}

.header-book {
    background: linear-gradient(180deg, #f2c45b, #a86a16);
    border: 1px solid #ffe39a;
    color: #1d0800;
}

/* HERO */

.home-hero {
    min-height: 720px;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 30% 25%, rgba(255, 195, 89, .28), transparent 22%),
        radial-gradient(circle at 80% 35%, rgba(255, 210, 120, .18), transparent 26%),
        linear-gradient(rgba(7, 13, 8, .25), rgba(4, 12, 8, .72)),
        url("/assets/images/az-santa-hero.jpg");
    background-size: cover;
    background-position: center;
    border-bottom: 2px solid #d4af37;
}

.home-hero:before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,.55), rgba(0,0,0,.08), rgba(0,0,0,.48));
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1500px;
    margin: auto;
    min-height: 720px;
    padding: 80px 34px;
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    gap: 42px;
    align-items: center;
}

.eyebrow {
    color: #f5cf6d;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    margin-bottom: 14px;
}

.hero-left h1 {
    font-family: Georgia, serif;
    max-width: 780px;
    font-size: clamp(46px, 6vw, 92px);
    line-height: .92;
    margin: 0 0 22px;
    color: #fff3d4;
    text-shadow: 0 8px 30px rgba(0,0,0,.7);
}

.hero-left p {
    max-width: 680px;
    font-size: 21px;
    line-height: 1.5;
    color: #fff8e9;
    margin-bottom: 34px;
}

.hero-search {
    max-width: 850px;
    padding: 18px;
    border-radius: 24px;
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 14px;
    background: rgba(9, 22, 14, .72);
    border: 1px solid rgba(255, 215, 120, .55);
    box-shadow: 0 25px 70px rgba(0,0,0,.42);
    backdrop-filter: blur(14px);
}

.field {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 14px;
    padding: 10px 14px;
}

.field label {
    display: block;
    color: #f6d36f;
    font-size: 12px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.field input,
.field select {
    width: 100%;
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 16px;
    outline: 0;
}

.field select option {
    color: #111;
}

.hero-search button {
    border: 1px solid rgba(255, 223, 127, .7);
    border-radius: 14px;
    padding: 0 34px;
    background: linear-gradient(180deg, #a41717, #5d0909);
    color: #fff7da;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
}

.hero-right {
    padding: 28px;
    border-radius: 26px;
    background: rgba(10, 9, 4, .66);
    border: 1px solid rgba(244, 202, 100, .5);
    box-shadow: 0 30px 80px rgba(0,0,0,.45);
    backdrop-filter: blur(12px);
}

.hero-right h3 {
    margin: 0 0 22px;
    text-align: center;
    font-family: Georgia, serif;
    font-size: 28px;
    color: #f7d46e;
    text-transform: uppercase;
}

.explore-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.explore-grid a {
    min-height: 116px;
    border-radius: 16px;
    border: 1px solid rgba(255, 215, 120, .45);
    background: linear-gradient(180deg, rgba(12,56,32,.88), rgba(42,10,8,.9));
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff4cf;
    font-weight: 800;
    text-transform: uppercase;
}

/* GENERAL SECTIONS */

.section {
    max-width: 1200px;
    margin: auto;
    padding: 60px 30px;
}

.section h2 {
    font-size: 42px;
    margin-bottom: 25px;
    color: #ffd27a;
}

.search-panel {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 12px;
    margin-top: 25px;
}

.search-panel input,
.search-panel select,
.search-panel button {
    padding: 16px;
    border-radius: 14px;
    border: 0;
    font-size: 16px;
}

.search-panel button,
.btn {
    background: linear-gradient(135deg, #ffd27a, #b7791f);
    color: #250b00;
    font-weight: 800;
    cursor: pointer;
}

/* FEATURED PERFORMERS */

.featured-section {
    background: linear-gradient(180deg, #082416, #03140d);
    padding: 45px 34px 58px;
    border-bottom: 1px solid rgba(212,175,55,.45);
}

.section-title {
    max-width: 1500px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    gap: 22px;
}

.section-title span {
    height: 1px;
    flex: 1;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
}

.section-title h2 {
    font-family: Georgia, serif;
    color: #f4d06d;
    font-size: 34px;
    text-transform: uppercase;
    margin: 0;
}

.performer-grid,
.card-grid {
    max-width: 1500px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.performer-card,
.card {
    overflow: hidden;
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(67,22,10,.95), rgba(16,8,5,.95));
    border: 1px solid rgba(244, 202, 100, .65);
    box-shadow: 0 16px 40px rgba(0,0,0,.35);
}

.performer-card {
    min-height: 210px;
    display: grid;
    grid-template-columns: 42% 58%;
}

.card {
    padding: 26px;
}

.placeholder-face {
    width: 100%;
    height: 100%;
    min-height: 210px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #7a0e17, #0b331d);
    color: #ffe8a7;
    font-family: Georgia, serif;
    font-size: 34px;
}

.performer-info {
    padding: 22px;
}

.performer-info h3,
.card h3 {
    font-family: Georgia, serif;
    color: #ffe3a4;
    font-size: 26px;
    margin: 0 0 8px;
}

.performer-info p,
.card p {
    color: #f6ead0;
}

.stars {
    color: #ffc94e;
    letter-spacing: 2px;
    margin: 10px 0;
}

.performer-info a {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 16px;
    border-radius: 8px;
    background: linear-gradient(180deg, #174d2c, #092a18);
    border: 1px solid #d4af37;
    color: #fff4cf;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

/* TRUST */

.trust-section {
    max-width: 1500px;
    margin: -20px auto 0;
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 0 34px;
}

.trust-card {
    background: linear-gradient(180deg, #7d1612, #3b0808);
    border: 1px solid rgba(212,175,55,.45);
    padding: 24px;
    min-height: 130px;
}

.trust-card h3 {
    color: #ffe3a4;
    margin: 0 0 8px;
    text-transform: uppercase;
    font-size: 17px;
}

.trust-card p {
    margin: 0;
    color: #fff0d4;
}

/* LOWER HOME */

.lower-home {
    background: #ead9b8;
    color: #36190b;
    display: grid;
    grid-template-columns: 1fr 1fr 1.2fr;
    gap: 28px;
    padding: 58px 34px;
}

.lower-home > div {
    border: 1px solid rgba(90, 50, 15, .28);
    background: rgba(255,255,255,.35);
    border-radius: 20px;
    padding: 26px;
}

.mascot-box {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 22px;
    align-items: center;
}

.mascot-circle {
    width: 110px;
    height: 110px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #7a0e17, #0b331d);
    color: #f8d77a;
    font-family: Georgia, serif;
    font-size: 34px;
    border: 3px solid #d4af37;
}

.lower-home h3 {
    margin: 0 0 12px;
    font-family: Georgia, serif;
    text-transform: uppercase;
}

.countdown-box {
    text-align: center;
    background: linear-gradient(180deg, #5f0c0b, #240404) !important;
    color: #ffe8b2;
}

.countdown-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin: 18px 0;
}

.countdown-grid div {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,215,120,.35);
    border-radius: 10px;
    padding: 12px 4px;
}

.countdown-grid strong {
    display: block;
    font-size: 28px;
    color: #ffd36f;
}

.countdown-grid span {
    text-transform: uppercase;
    font-size: 12px;
}

.countdown-box a {
    display: inline-block;
    padding: 13px 22px;
    border-radius: 10px;
    background: linear-gradient(180deg, #d5a636, #8a5b12);
    color: #1b0900;
    font-weight: 900;
    text-transform: uppercase;
}

.review-box {
    background: linear-gradient(180deg, #2b1608, #100806) !important;
    color: #ffe8b2;
}

/* PROFILE PAGE */

.profile-hero {
    min-height: 620px;
    background:
        linear-gradient(90deg, rgba(0,0,0,.72), rgba(0,0,0,.28)),
        url("/assets/images/az-santa-hero.jpg");
    background-size: cover;
    background-position: center;
    padding: 80px 34px;
}

.profile-hero-inner {
    max-width: 1400px;
    margin: auto;
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 44px;
    align-items: center;
}

.profile-photo-box {
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(244,202,100,.7);
    background: rgba(0,0,0,.35);
    box-shadow: 0 30px 80px rgba(0,0,0,.55);
}

.profile-photo-box img {
    width: 100%;
    display: block;
}

.profile-placeholder {
    height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Georgia, serif;
    font-size: 52px;
    color: #f8d77a;
    background: linear-gradient(135deg, #7a0e17, #0b331d);
}

.profile-info-box {
    padding: 42px;
    border-radius: 28px;
    background: rgba(10, 9, 4, .68);
    border: 1px solid rgba(244,202,100,.55);
    backdrop-filter: blur(14px);
}

.profile-info-box h1 {
    font-family: Georgia, serif;
    font-size: clamp(46px, 6vw, 88px);
    line-height: .95;
    margin: 0 0 14px;
    color: #fff3d4;
}

.profile-location {
    font-size: 22px;
    color: #f8d77a;
}

/* PERFORMER DASHBOARD */

.performer-dashboard {
    min-height: 720px;
    padding: 70px 34px;
    background:
        linear-gradient(180deg, rgba(3,20,13,.88), rgba(3,12,8,.98)),
        url("/assets/images/az-santa-hero.jpg");
    background-size: cover;
    background-position: center;
}

.dash-welcome-panel {
    max-width: 1500px;
    margin: 0 auto 34px;
    padding: 34px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 28px;
    align-items: center;
    border-radius: 28px;
    background: rgba(10,9,4,.72);
    border: 1px solid rgba(244,202,100,.55);
    box-shadow: 0 30px 80px rgba(0,0,0,.45);
    backdrop-filter: blur(14px);
}

.dash-welcome-copy h1 {
    margin: 0 0 14px;
    font-family: Georgia, serif;
    font-size: clamp(42px, 5vw, 76px);
    line-height: .95;
    color: #fff3d4;
    text-shadow: 0 8px 30px rgba(0,0,0,.7);
}

.dash-welcome-copy p {
    max-width: 760px;
    margin: 0;
    font-size: 21px;
    line-height: 1.45;
    color: #fff8e9;
}

.dash-count-card {
    padding: 28px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(95,12,11,.9), rgba(36,4,4,.95));
    border: 1px solid rgba(244,202,100,.55);
    text-align: center;
    box-shadow: inset 0 0 30px rgba(255,255,255,.04);
}

.dash-count-card span {
    display: block;
    color: #f5cf6d;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 13px;
    margin-bottom: 10px;
}

.dash-count-card strong {
    display: block;
    font-family: Georgia, serif;
    color: #fff3d4;
    font-size: 34px;
}

.dash-module-grid {
    max-width: 1500px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.dash-module {
    display: block;
    min-height: 210px;
    padding: 26px;
    border-radius: 22px;
    background:
        radial-gradient(circle at top right, rgba(255,215,120,.18), transparent 36%),
        linear-gradient(180deg, rgba(67,22,10,.96), rgba(16,8,5,.96));
    border: 1px solid rgba(244,202,100,.55);
    box-shadow: 0 18px 45px rgba(0,0,0,.34);
    transition: .25s ease;
}

.dash-module:hover {
    transform: translateY(-6px);
    border-color: #f4d06d;
    box-shadow: 0 24px 62px rgba(0,0,0,.48);
}

.dash-icon {
    display: inline-flex;
    width: 42px;
    height: 42px;
    margin-bottom: 18px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: linear-gradient(180deg, #f2c45b, #a86a16);
    color: #1d0800;
    font-weight: 900;
}

.dash-module h3 {
    margin: 0 0 12px;
    font-family: Georgia, serif;
    font-size: 29px;
    color: #ffe3a4;
}

.dash-module p {
    margin: 0;
    color: #f6ead0;
    line-height: 1.45;
}

/* FOOTER */

.site-footer {
    background: linear-gradient(180deg, #071b12, #03100a);
    border-top: 1px solid rgba(212,175,55,.5);
    color: #fff3d6;
    padding: 42px 34px 24px;
}

.footer-container {
    max-width: 1500px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 36px;
}

.footer-column h3 {
    color: #f4d06d;
    font-family: Georgia, serif;
    font-size: 24px;
}

.footer-column a {
    color: #fff3d6;
    line-height: 2;
}

.footer-bottom {
    max-width: 1500px;
    margin: 30px auto 0;
    padding-top: 20px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,.12);
}

/* RESPONSIVE */

@media (max-width: 1300px) {
    .logo-wrap {
        flex: 0 0 320px;
        width: 320px;
        max-width: 320px;
    }

    .site-logo {
        width: 300px;
        max-width: 300px;
    }

    .main-nav {
        gap: 12px;
    }

    .main-nav a,
    nav a {
        font-size: 11px;
    }

    .dash-module-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 1100px) {
    .nav-wrap,
    .premium-nav {
        flex-direction: column;
    }

    .hero-inner,
    .performer-grid,
    .card-grid,
    .trust-section,
    .lower-home,
    .footer-container,
    .profile-hero-inner,
    .dash-welcome-panel {
        grid-template-columns: 1fr;
    }

    .logo-wrap {
        width: 100%;
        max-width: 100%;
        flex: 0 0 auto;
        justify-content: center;
    }

    .site-logo {
        width: 280px;
        max-width: 90vw;
    }

    .main-nav {
        flex-wrap: wrap;
        gap: 12px;
    }

    .header-actions {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-search,
    .search-panel,
    .dash-module-grid {
        grid-template-columns: 1fr;
    }

    .performer-card {
        grid-template-columns: 1fr;
    }
}
.calendar-shell {
    max-width: 1500px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 24px;
    align-items: start;
}

.calendar-main,
.calendar-editor {
    border-radius: 24px;
    background:
        radial-gradient(circle at top right, rgba(255,215,120,.14), transparent 35%),
        linear-gradient(180deg, rgba(67,22,10,.96), rgba(16,8,5,.96));
    border: 1px solid rgba(244,202,100,.55);
    box-shadow: 0 18px 45px rgba(0,0,0,.34);
}

.calendar-main {
    padding: 24px;
}

.calendar-editor {
    padding: 26px;
    position: sticky;
    top: 140px;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    margin-bottom: 22px;
}

.calendar-header h2 {
    margin: 0;
    font-family: Georgia, serif;
    color: #ffe3a4;
    font-size: 38px;
}

.calendar-header a {
    padding: 12px 18px;
    border-radius: 12px;
    background: linear-gradient(180deg, #0e3b24, #061d12);
    border: 1px solid rgba(212,175,55,.75);
    color: #fff4cf;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.calendar-weekdays,
.calendar-grid-ui {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 10px;
}

.calendar-weekdays {
    margin-bottom: 10px;
}

.calendar-weekdays div {
    text-align: center;
    color: #f5cf6d;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.calendar-day {
    min-height: 118px;
    padding: 12px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.06);
    color: #fff;
    text-align: left;
    cursor: pointer;
    box-shadow: inset 0 0 30px rgba(255,255,255,.03);
}

.calendar-day.empty {
    opacity: .25;
    cursor: default;
    background: transparent;
    border: 1px dashed rgba(255,255,255,.08);
}

.calendar-day.selected {
    outline: 3px solid #f2c45b;
    transform: translateY(-2px);
}

.day-number {
    display: block;
    font-family: Georgia, serif;
    font-size: 28px;
    color: #fff3d4;
    margin-bottom: 10px;
}

.day-status {
    display: inline-block;
    padding: 5px 8px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    background: rgba(0,0,0,.35);
    color: #fff4cf;
}

.day-visits {
    display: block;
    margin-top: 10px;
    color: #f6ead0;
    font-size: 12px;
}

.status-available {
    background: linear-gradient(180deg, rgba(14,59,36,.88), rgba(5,30,18,.95));
}

.status-booked {
    background: linear-gradient(180deg, rgba(120,18,18,.9), rgba(50,5,5,.95));
}

.status-pending {
    background: linear-gradient(180deg, rgba(130,90,20,.9), rgba(55,35,5,.95));
}

.status-vacation {
    background: linear-gradient(180deg, rgba(40,40,45,.9), rgba(15,15,18,.95));
}

.status-private {
    background: linear-gradient(180deg, rgba(25,55,120,.9), rgba(7,18,60,.95));
}

.calendar-editor h3 {
    margin: 0 0 10px;
    font-family: Georgia, serif;
    font-size: 32px;
    color: #ffe3a4;
}

.calendar-editor label {
    display: block;
    margin: 15px 0 7px;
    color: #f5cf6d;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 12px;
    font-weight: 900;
}

.calendar-editor input,
.calendar-editor select,
.calendar-editor textarea {
    width: 100%;
    padding: 13px 15px;
    border-radius: 12px;
    border: 1px solid rgba(244,202,100,.35);
    background: rgba(255,255,255,.08);
    color: #fff;
    font-size: 15px;
    outline: none;
}

.calendar-editor select option {
    color: #111;
}

@media (max-width: 1100px) {
    .calendar-shell {
        grid-template-columns: 1fr;
    }

    .calendar-editor {
        position: relative;
        top: auto;
    }

    .calendar-weekdays,
    .calendar-grid-ui {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
.booking-page {
    padding: 70px 34px;
    background:
        linear-gradient(180deg, rgba(3,20,13,.88), rgba(3,12,8,.98)),
        url("/assets/images/az-santa-hero.jpg");
    background-size: cover;
    background-position: center;
}

.booking-shell {
    max-width: 1500px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 28px;
    align-items: start;
}

.booking-main {
    padding: 36px;
    border-radius: 28px;
    background: rgba(10,9,4,.72);
    border: 1px solid rgba(244,202,100,.55);
    box-shadow: 0 30px 80px rgba(0,0,0,.45);
    backdrop-filter: blur(14px);
}

.booking-main h1 {
    margin: 0 0 16px;
    font-family: Georgia, serif;
    font-size: clamp(42px, 5vw, 76px);
    line-height: .95;
    color: #fff3d4;
}

.booking-main > p {
    max-width: 850px;
    font-size: 20px;
    line-height: 1.45;
    color: #fff8e9;
}

.booking-submit {
    margin-top: 24px;
    width: 100%;
    padding: 18px;
    border: 0;
    border-radius: 16px;
    background: linear-gradient(180deg, #f2c45b, #a86a16);
    color: #1d0800;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
}

.booking-side {
    position: sticky;
    top: 145px;
}

.booking-performer-card {
    padding: 24px;
    border-radius: 24px;
    background:
        radial-gradient(circle at top right, rgba(255,215,120,.14), transparent 35%),
        linear-gradient(180deg, rgba(67,22,10,.96), rgba(16,8,5,.96));
    border: 1px solid rgba(244,202,100,.55);
    box-shadow: 0 18px 45px rgba(0,0,0,.34);
    text-align: center;
}

.booking-performer-card img {
    width: 100%;
    border-radius: 18px;
    border: 1px solid rgba(244,202,100,.45);
    margin-bottom: 18px;
}

.booking-performer-card h3 {
    margin: 0 0 8px;
    font-family: Georgia, serif;
    color: #ffe3a4;
    font-size: 30px;
}

.error-message {
    background: rgba(120,18,18,.88);
}

@media (max-width: 1000px) {
    .booking-shell {
        grid-template-columns: 1fr;
    }

    .booking-side {
        position: relative;
        top: auto;
    }
}
.booking-manager-grid {
    max-width: 1500px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.booking-request-card {
    padding: 26px;
    border-radius: 24px;
    background:
        radial-gradient(circle at top right, rgba(255,215,120,.14), transparent 35%),
        linear-gradient(180deg, rgba(67,22,10,.96), rgba(16,8,5,.96));
    border: 1px solid rgba(244,202,100,.55);
    box-shadow: 0 18px 45px rgba(0,0,0,.34);
}

.booking-request-top {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: flex-start;
    margin-bottom: 18px;
}

.booking-status {
    display: inline-block;
    margin-bottom: 12px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(0,0,0,.38);
    border: 1px solid rgba(244,202,100,.35);
    color: #f5cf6d;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1px;
}

.booking-request-card h3 {
    margin: 0 0 8px;
    font-family: Georgia, serif;
    font-size: 32px;
    color: #ffe3a4;
}

.booking-date-line {
    margin: 0;
    color: #fff3d6;
    font-size: 18px;
}

.booking-price {
    color: #ffd978;
    font-family: Georgia, serif;
    font-size: 30px;
    white-space: nowrap;
}

.booking-request-details p {
    color: #f6ead0;
    line-height: 1.45;
}

.booking-request-details strong {
    color: #f5cf6d;
}

.booking-actions {
    display: flex;
    gap: 12px;
    margin-top: 22px;
}

.booking-actions form {
    flex: 1;
}

.accept-btn,
.decline-btn {
    width: 100%;
    padding: 14px;
    border: 0;
    border-radius: 13px;
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
}

.accept-btn {
    background: linear-gradient(180deg, #f2c45b, #a86a16);
    color: #1d0800;
}

.decline-btn {
    background: linear-gradient(180deg, #7a1515, #3b0505);
    color: #fff3d6;
    border: 1px solid rgba(244,202,100,.45);
}

.status-card-confirmed {
    border-color: rgba(80, 220, 140, .75);
}

.status-card-declined,
.status-card-cancelled {
    opacity: .72;
}

@media (max-width: 900px) {
    .booking-manager-grid {
        grid-template-columns: 1fr;
    }

    .booking-request-top,
    .booking-actions {
        flex-direction: column;
    }
}
.service-manager-grid {
    max-width: 1500px;
    margin: 34px auto 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.service-manager-card {
    padding: 26px;
    border-radius: 24px;
    background:
        radial-gradient(circle at top right, rgba(255,215,120,.14), transparent 35%),
        linear-gradient(180deg, rgba(67,22,10,.96), rgba(16,8,5,.96));
    border: 1px solid rgba(244,202,100,.55);
    box-shadow: 0 18px 45px rgba(0,0,0,.34);
}

.service-manager-card h3 {
    margin: 0 0 14px;
    font-family: Georgia, serif;
    font-size: 30px;
    color: #ffe3a4;
}

.service-manager-card p {
    color: #f6ead0;
    line-height: 1.45;
}

.service-meta {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,.12);
}

.service-meta strong {
    color: #ffd978;
    font-size: 26px;
    font-family: Georgia, serif;
}

.service-meta span {
    color: #f5cf6d;
    font-weight: 900;
}

.inactive-service {
    opacity: .55;
}

@media (max-width: 1000px) {
    .service-manager-grid {
        grid-template-columns: 1fr;
    }
}
.santa-studio-shell {
    min-height: 760px;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 0;
    background:
        linear-gradient(180deg, rgba(3,20,13,.86), rgba(3,12,8,.98)),
        url("/assets/images/az-santa-hero.jpg");
    background-size: cover;
    background-position: center;
}

.studio-side-menu {
    padding: 30px 22px;
    background: rgba(10,5,4,.82);
    border-right: 1px solid rgba(244,202,100,.45);
    backdrop-filter: blur(16px);
}

.studio-side-menu h2 {
    margin: 0;
    font-family: Georgia, serif;
    font-size: 32px;
    color: #ffe3a4;
}

.studio-side-menu p {
    margin: 8px 0 24px;
    color: #f6ead0;
}

.studio-side-menu a {
    display: block;
    margin-bottom: 10px;
    padding: 14px 16px;
    border-radius: 14px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.08);
    color: #fff3d6;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .7px;
    font-size: 13px;
}

.studio-side-menu a:hover,
.studio-side-menu a.active {
    background: linear-gradient(180deg, #7d1612, #3b0808);
    border-color: rgba(244,202,100,.65);
    color: #ffd978;
}

.studio-side-actions {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,.12);
}

.studio-workspace {
    padding: 42px;
}

.studio-panel,
.studio-section-card {
    padding: 30px;
    border-radius: 26px;
    background:
        radial-gradient(circle at top right, rgba(255,215,120,.14), transparent 35%),
        linear-gradient(180deg, rgba(67,22,10,.96), rgba(16,8,5,.96));
    border: 1px solid rgba(244,202,100,.55);
    box-shadow: 0 18px 45px rgba(0,0,0,.34);
}

.studio-panel h1 {
    margin: 0 0 16px;
    font-family: Georgia, serif;
    font-size: clamp(42px, 5vw, 76px);
    color: #fff3d4;
}

.studio-panel p,
.studio-section-card p {
    color: #f6ead0;
    font-size: 18px;
    line-height: 1.45;
}

.studio-action-btn {
    display: inline-block;
    margin-top: 18px;
    padding: 14px 22px;
    border-radius: 14px;
    background: linear-gradient(180deg, #f2c45b, #a86a16);
    color: #1d0800;
    font-weight: 900;
    text-transform: uppercase;
}

.studio-section-grid {
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.studio-section-card h3 {
    margin: 0 0 12px;
    font-family: Georgia, serif;
    font-size: 28px;
    color: #ffe3a4;
}

@media (max-width: 1000px) {
    .santa-studio-shell,
    .studio-section-grid {
        grid-template-columns: 1fr;
    }
}
.studio-builder-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 24px;
    align-items: start;
}

.studio-builder-form {
    display: grid;
    gap: 22px;
}

.studio-section-card label {
    display: block;
    margin: 16px 0 7px;
    color: #f5cf6d;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 12px;
    font-weight: 900;
}

.studio-section-card input,
.studio-section-card textarea,
.studio-section-card select {
    width: 100%;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid rgba(244,202,100,.35);
    background: rgba(255,255,255,.08);
    color: #fff;
    font-size: 16px;
    outline: none;
}

.studio-section-card select option {
    color: #111;
}

.studio-live-preview {
    position: sticky;
    top: 130px;
    padding: 24px;
    border-radius: 26px;
    background:
        radial-gradient(circle at top right, rgba(255,215,120,.14), transparent 35%),
        linear-gradient(180deg, rgba(67,22,10,.96), rgba(16,8,5,.96));
    border: 1px solid rgba(244,202,100,.55);
    box-shadow: 0 18px 45px rgba(0,0,0,.34);
}

.studio-live-preview h3 {
    margin: 0 0 18px;
    font-family: Georgia, serif;
    font-size: 30px;
    color: #ffe3a4;
}

.preview-phone {
    overflow: hidden;
    border-radius: 26px;
    background: #140606;
    border: 1px solid rgba(244,202,100,.45);
    box-shadow: inset 0 0 35px rgba(255,255,255,.04);
    margin-bottom: 20px;
}

.preview-hero-image {
    height: 170px;
    background-size: cover;
    background-position: center;
}

.preview-hero-image.fallback {
    background:
        linear-gradient(180deg, rgba(0,0,0,.1), rgba(0,0,0,.4)),
        url("/assets/images/az-santa-hero.jpg");
    background-size: cover;
    background-position: center;
}

.preview-content {
    padding: 22px;
}

.preview-content span {
    color: #f5cf6d;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 11px;
    font-weight: 900;
}

.preview-content h2 {
    margin: 10px 0;
    font-family: Georgia, serif;
    color: #fff3d4;
    font-size: 30px;
    line-height: 1;
}

.preview-content h4 {
    margin: 14px 0 8px;
    font-family: Georgia, serif;
    color: #ffe3a4;
    font-size: 22px;
}

.preview-content p {
    color: #f6ead0;
    line-height: 1.4;
    font-size: 14px;
}

.preview-content hr {
    border: 0;
    border-top: 1px solid rgba(255,255,255,.12);
    margin: 18px 0;
}

.preview-button {
    margin-top: 16px;
    padding: 12px;
    text-align: center;
    border-radius: 12px;
    background: linear-gradient(180deg, #f2c45b, #a86a16);
    color: #1d0800;
    font-weight: 900;
    text-transform: uppercase;
}

.theme-luxury {
    background: linear-gradient(180deg, #2d1604, #070302);
}

.theme-winter {
    background: linear-gradient(180deg, #102436, #040b12);
}

.theme-rustic {
    background: linear-gradient(180deg, #35200f, #0d0704);
}

@media (max-width: 1100px) {
    .studio-builder-layout {
        grid-template-columns: 1fr;
    }

    .studio-live-preview {
        position: relative;
        top: auto;
    }
}
.media-upload-panel {
    margin: 24px 0;
    padding: 24px;
    display: grid;
    grid-template-columns: 1fr 1fr 220px auto;
    gap: 16px;
    align-items: end;
    border-radius: 24px;
    background: rgba(10,9,4,.72);
    border: 1px solid rgba(244,202,100,.55);
}

.media-upload-panel label {
    display: block;
    margin-bottom: 7px;
    color: #f5cf6d;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1px;
}

.media-upload-panel input,
.media-upload-panel select,
.media-upload-panel button {
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    border: 1px solid rgba(244,202,100,.35);
    background: rgba(255,255,255,.08);
    color: #fff;
}

.media-upload-panel select option {
    color: #111;
}

.media-upload-panel button {
    background: linear-gradient(180deg, #f2c45b, #a86a16);
    color: #1d0800;
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
}

.media-filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 24px;
}

.media-filter-row a {
    padding: 11px 15px;
    border-radius: 999px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(244,202,100,.35);
    color: #fff3d6;
    font-weight: 900;
    font-size: 12px;
    text-transform: uppercase;
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.media-card {
    overflow: hidden;
    border-radius: 24px;
    background:
        radial-gradient(circle at top right, rgba(255,215,120,.14), transparent 35%),
        linear-gradient(180deg, rgba(67,22,10,.96), rgba(16,8,5,.96));
    border: 1px solid rgba(244,202,100,.55);
    box-shadow: 0 18px 45px rgba(0,0,0,.34);
}

.media-thumb {
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 7px 10px;
    border-radius: 999px;
    background: linear-gradient(180deg, #f2c45b, #a86a16);
    color: #1d0800;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.media-info {
    padding: 20px;
}

.media-info h3 {
    margin: 0 0 8px;
    font-family: Georgia, serif;
    color: #ffe3a4;
    font-size: 24px;
}

.media-info p {
    margin: 0 0 14px;
    color: #f5cf6d;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 900;
}

.media-info input {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid rgba(244,202,100,.3);
    background: rgba(0,0,0,.25);
    color: #fff3d6;
}

.media-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 0 20px 20px;
}

.media-actions button {
    width: 100%;
    padding: 12px;
    border: 0;
    border-radius: 12px;
    background: linear-gradient(180deg, #f2c45b, #a86a16);
    color: #1d0800;
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
}

.media-actions .delete-media-btn {
    background: linear-gradient(180deg, #7a1515, #3b0505);
    color: #fff3d6;
    border: 1px solid rgba(244,202,100,.45);
}

@media (max-width: 1100px) {
    .media-upload-panel,
    .media-grid {
        grid-template-columns: 1fr;
    }
}
.public-profile-hero {
    min-height: 720px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 90px 34px;
    border-bottom: 2px solid rgba(244,202,100,.65);
}

.public-profile-inner {
    max-width: 1500px;
    width: 100%;
    margin: auto;
}

.public-profile-copy {
    max-width: 780px;
    padding: 44px;
    border-radius: 30px;
    background: rgba(10,9,4,.68);
    border: 1px solid rgba(244,202,100,.55);
    box-shadow: 0 30px 80px rgba(0,0,0,.5);
    backdrop-filter: blur(14px);
}

.public-profile-copy h1 {
    margin: 0 0 18px;
    font-family: Georgia, serif;
    font-size: clamp(48px, 7vw, 92px);
    line-height: .92;
    color: #fff3d4;
}

.public-profile-copy p {
    color: #fff8e9;
    font-size: 21px;
    line-height: 1.45;
}

.public-performer-page.theme-luxury .public-profile-copy {
    background: rgba(45,22,4,.72);
}

.public-performer-page.theme-winter .public-profile-copy {
    background: rgba(8,22,38,.72);
}

.public-performer-page.theme-rustic .public-profile-copy {
    background: rgba(53,32,15,.72);
}
.join-hero {
    min-height: 760px;
    padding: 90px 34px;
    background:
        linear-gradient(90deg, rgba(0,0,0,.78), rgba(0,0,0,.35)),
        url("/assets/images/az-santa-hero.jpg");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.join-hero-inner {
    max-width: 1500px;
    width: 100%;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 42px;
    align-items: center;
}

.join-copy h1 {
    margin: 0 0 22px;
    font-family: Georgia, serif;
    font-size: clamp(52px, 7vw, 104px);
    line-height: .9;
    color: #fff3d4;
}

.join-copy p {
    max-width: 760px;
    font-size: 23px;
    line-height: 1.45;
    color: #fff8e9;
}

.join-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.join-primary,
.join-secondary,
.price-card a,
.founding-box a,
.join-final a {
    display: inline-block;
    padding: 15px 24px;
    border-radius: 14px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .8px;
}

.join-primary,
.price-card a,
.founding-box a,
.join-final a {
    background: linear-gradient(180deg, #f2c45b, #a86a16);
    color: #1d0800;
}

.join-secondary {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(244,202,100,.55);
    color: #fff3d6;
}

.join-studio-card {
    padding: 30px;
    border-radius: 30px;
    background: rgba(10,9,4,.74);
    border: 1px solid rgba(244,202,100,.58);
    box-shadow: 0 30px 80px rgba(0,0,0,.5);
    backdrop-filter: blur(14px);
}

.join-studio-card h3 {
    margin: 0 0 10px;
    font-family: Georgia, serif;
    font-size: 38px;
    color: #ffe3a4;
}

.join-studio-card p {
    color: #f6ead0;
}

.studio-mini-stat {
    margin-top: 16px;
    padding: 18px;
    border-radius: 18px;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(244,202,100,.25);
}

.studio-mini-stat span {
    color: #f5cf6d;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 900;
}

.studio-mini-stat strong {
    display: block;
    margin-top: 6px;
    font-family: Georgia, serif;
    font-size: 34px;
    color: #fff3d4;
}

.join-section {
    padding: 70px 34px;
    background: linear-gradient(180deg, #082416, #03140d);
}

.join-section-title {
    max-width: 1500px;
    margin: 0 auto 32px;
    display: flex;
    align-items: center;
    gap: 22px;
}

.join-section-title span {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
}

.join-section-title h2 {
    margin: 0;
    font-family: Georgia, serif;
    font-size: 42px;
    color: #f4d06d;
    text-transform: uppercase;
}

.join-feature-grid {
    max-width: 1500px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.join-feature-grid div,
.price-card,
.founding-box,
.join-split > div {
    padding: 28px;
    border-radius: 24px;
    background:
        radial-gradient(circle at top right, rgba(255,215,120,.14), transparent 35%),
        linear-gradient(180deg, rgba(67,22,10,.96), rgba(16,8,5,.96));
    border: 1px solid rgba(244,202,100,.55);
    box-shadow: 0 18px 45px rgba(0,0,0,.34);
}

.join-feature-grid h3,
.price-card h3,
.join-split h3 {
    margin: 0 0 12px;
    font-family: Georgia, serif;
    color: #ffe3a4;
    font-size: 30px;
}

.join-feature-grid p,
.price-card p,
.join-split p,
.founding-box p {
    color: #f6ead0;
    line-height: 1.45;
}

.pricing-grid {
    max-width: 1500px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.price-card {
    position: relative;
}

.featured-plan {
    border-color: #f4d06d;
    box-shadow: 0 0 45px rgba(244,202,100,.22), 0 20px 60px rgba(0,0,0,.4);
}

.plan-badge {
    display: inline-block;
    margin-bottom: 16px;
    padding: 8px 12px;
    border-radius: 999px;
    background: linear-gradient(180deg, #f2c45b, #a86a16);
    color: #1d0800;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.price {
    margin: 16px 0;
    font-family: Georgia, serif;
    font-size: 48px;
    color: #fff3d4;
}

.price span {
    font-family: Arial, sans-serif;
    font-size: 15px;
    color: #f6ead0;
}

.regular-price {
    color: #ffd978 !important;
    font-weight: 900;
}

.price-card ul {
    margin: 20px 0;
    padding-left: 20px;
    color: #f6ead0;
    line-height: 1.8;
}

.founding-section {
    background:
        linear-gradient(90deg, rgba(0,0,0,.7), rgba(0,0,0,.3)),
        url("/assets/images/az-santa-hero.jpg");
    background-size: cover;
    background-position: center;
}

.founding-box {
    max-width: 1000px;
    margin: auto;
    text-align: center;
}

.founding-box h2,
.join-final h2 {
    margin: 0 0 16px;
    font-family: Georgia, serif;
    font-size: clamp(42px, 6vw, 80px);
    color: #fff3d4;
}

.join-split {
    max-width: 1500px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.join-final {
    padding: 90px 34px;
    text-align: center;
    background: linear-gradient(180deg, #5f0c0b, #160202);
}

.join-final p {
    color: #fff3d6;
    font-size: 22px;
}

@media (max-width: 1100px) {
    .join-hero-inner,
    .join-feature-grid,
    .pricing-grid,
    .join-split {
        grid-template-columns: 1fr;
    }

    .featured-plan {
        transform: none;
    }
}
.pricing-grid {
    align-items: stretch;
}

.price-card {
    display: flex;
    flex-direction: column;
}

.price-card ul {
    flex: 1;
}

.price-card a {
    margin-top: auto;
    text-align: center;
}

.featured-plan {
    transform: none;
}
.onboarding-panel {
    max-width: 1500px;
    margin: 0 auto;
    padding: 34px;
    border-radius: 28px;
    background: rgba(10,9,4,.72);
    border: 1px solid rgba(244,202,100,.55);
    box-shadow: 0 30px 80px rgba(0,0,0,.45);
}

.onboarding-top {
    display: flex;
    justify-content: space-between;
    gap: 22px;
    align-items: center;
    margin-bottom: 22px;
}

.onboarding-top h2 {
    margin: 0 0 8px;
    font-family: Georgia, serif;
    color: #fff3d4;
    font-size: 42px;
}

.onboarding-top p {
    margin: 0;
    color: #f6ead0;
}

.onboarding-top a,
.launch-box a {
    display: inline-block;
    padding: 13px 18px;
    border-radius: 12px;
    background: linear-gradient(180deg, #f2c45b, #a86a16);
    color: #1d0800;
    font-weight: 900;
    text-transform: uppercase;
}

.progress-track {
    height: 16px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(244,202,100,.35);
    margin-bottom: 28px;
}

.progress-fill {
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, #a86a16, #f2c45b, #fff1ad);
}

.onboarding-steps {
    display: grid;
    gap: 16px;
}

.onboarding-step {
    display: grid;
    grid-template-columns: 58px 1fr auto;
    gap: 18px;
    align-items: center;
    padding: 22px;
    border-radius: 20px;
    background:
        radial-gradient(circle at top right, rgba(255,215,120,.12), transparent 35%),
        linear-gradient(180deg, rgba(67,22,10,.96), rgba(16,8,5,.96));
    border: 1px solid rgba(244,202,100,.45);
}

.onboarding-step.complete {
    border-color: rgba(80,220,140,.75);
}

.step-number {
    width: 48px;
    height: 48px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #f2c45b, #a86a16);
    color: #1d0800;
    font-weight: 900;
    font-size: 20px;
}

.onboarding-step.complete .step-number {
    background: linear-gradient(180deg, #45d982, #0e5c32);
    color: #fff;
}

.step-copy h3 {
    margin: 0 0 6px;
    font-family: Georgia, serif;
    font-size: 28px;
    color: #ffe3a4;
}

.step-copy p {
    margin: 0;
    color: #f6ead0;
}

.onboarding-step > a {
    padding: 12px 18px;
    border-radius: 12px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(244,202,100,.45);
    color: #fff3d6;
    font-weight: 900;
    text-transform: uppercase;
}

.launch-box {
    margin-top: 28px;
    padding: 28px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(95,12,11,.92), rgba(36,4,4,.96));
    border: 1px solid rgba(244,202,100,.55);
    text-align: center;
}

.launch-box h2 {
    margin: 0 0 12px;
    font-family: Georgia, serif;
    font-size: 38px;
    color: #fff3d4;
}

.launch-box p {
    color: #f6ead0;
}

.launch-box a {
    margin: 8px;
}

@media (max-width: 900px) {
    .onboarding-top,
    .onboarding-step {
        grid-template-columns: 1fr;
        flex-direction: column;
        text-align: left;
    }
}
.media-actions.media-actions-4 {
    grid-template-columns: repeat(2, 1fr);
}

/* CLEANUP SAFETY OVERRIDES */

.santa-studio-shell .studio-side-menu a {
    white-space: normal;
}

.media-actions.media-actions-4 {
    grid-template-columns: repeat(2, 1fr);
}

.price-card {
    display: flex;
    flex-direction: column;
}

.price-card ul {
    flex: 1;
}

.price-card a {
    margin-top: auto;
    text-align: center;
}

.featured-plan {
    transform: none;
}
