:root {
    --background: #1b1717;
    --foreground: #faf7f5;
    --card: #262020;
    --card-soft: rgba(38, 32, 32, 0.72);
    --primary: #dc2f2f;
    --primary-hot: #ff6a2a;
    --primary-foreground: #ffffff;
    --secondary: #342b2b;
    --muted: #332929;
    --muted-foreground: #b7aaa5;
    --border: #463938;
    --ash: #5d5150;
    --radius: 0.5rem;
    --font-display: "Bebas Neue", Impact, sans-serif;
    --font-sans: "Inter", system-ui, sans-serif;
    --shadow-fire: 0 0 40px -8px var(--primary), 0 0 80px -20px var(--primary-hot);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--background);
    color: var(--foreground);
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

body.admin-bar .site-header {
    top: 32px;
}

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

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

p {
    margin: 0;
}

.container {
    width: min(100% - 32px, 1240px);
    margin-inline: auto;
}

.container--narrow {
    width: min(100% - 32px, 920px);
}

.skip-link {
    position: absolute;
    left: 1rem;
    top: -100px;
    z-index: 1000;
    background: var(--primary);
    color: var(--primary-foreground);
    padding: 0.75rem 1rem;
}

.skip-link:focus {
    top: 1rem;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(70, 57, 56, 0.75);
    background: rgba(27, 23, 23, 0.82);
    backdrop-filter: blur(18px);
}

.site-header__inner {
    width: min(100% - 32px, 1320px);
    margin-inline: auto;
    min-height: 82px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 2rem;
}

.site-brand {
    display: inline-flex;
    align-items: center;
    max-width: 145px;
    border-radius: 999px;
    background: #ffffff;
    padding: 0.45rem 0.7rem;
}

.site-brand img {
    max-height: 44px;
    width: auto;
}

.primary-navigation .menu,
.footer-navigation .menu {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.primary-navigation a {
    position: relative;
    display: inline-block;
    padding: 0.6rem 0.9rem;
    overflow: hidden;
    color: var(--muted-foreground);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    transition: color 0.25s ease;
}

.primary-navigation a:before {
    content: "";
    position: absolute;
    left: 0.8rem;
    right: 0.8rem;
    bottom: 0.4rem;
    height: 1px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.35s ease;
}

.primary-navigation a:hover,
.primary-navigation a:focus {
    color: var(--foreground);
}

.primary-navigation a:hover:before,
.primary-navigation a:focus:before {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-cta,
.button-fire {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    overflow: hidden;
    border: 0;
    background: var(--primary);
    color: var(--primary-foreground);
    padding: 1rem 1.35rem;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: var(--shadow-fire);
}

.button-fire:after,
.nav-cta:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary-hot), var(--primary));
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.button-fire:hover:after,
.button-fire:focus:after,
.nav-cta:hover:after,
.nav-cta:focus:after {
    transform: translateY(0);
}

.button-fire span,
.nav-cta {
    z-index: 1;
}

.menu-toggle {
    display: none;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--foreground);
    padding: 0.7rem 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.22em;
}

.bg-grid {
    background-image: linear-gradient(to right, rgba(70, 57, 56, 0.42) 1px, transparent 1px), linear-gradient(to bottom, rgba(70, 57, 56, 0.42) 1px, transparent 1px);
    background-size: 64px 64px;
}

.hero {
    position: relative;
    min-height: calc(100vh - 82px);
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 6rem 0;
}

.hero__glow,
.cta-section:before {
    content: "";
    position: absolute;
    inset: auto -15vw 12% -15vw;
    height: 30rem;
    background: rgba(220, 47, 47, 0.22);
    filter: blur(110px);
    pointer-events: none;
}

.hero__inner {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    align-items: center;
    gap: 4rem;
}

.eyebrow {
    display: inline-flex;
    color: var(--primary);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.4em;
    text-transform: uppercase;
}

.hero__title,
.display-title {
    margin: 1.25rem 0 0;
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 0.9;
    letter-spacing: 0.01em;
    text-transform: uppercase;
}

.hero__title {
    font-size: clamp(5rem, 15vw, 13rem);
}

.display-title {
    font-size: clamp(4rem, 10vw, 8.25rem);
}

.text-gradient-fire {
    background: linear-gradient(180deg, #ffe7ba 0%, var(--primary-hot) 42%, var(--primary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.text-shadow-fire {
    text-shadow: 0 0 30px rgba(220, 47, 47, 0.65), 0 0 80px rgba(255, 106, 42, 0.32);
}

.hero__text,
.page-hero__subtitle,
.section-heading p,
.copy-stack,
.cta-section p {
    color: var(--muted-foreground);
    font-size: clamp(1rem, 2vw, 1.15rem);
}

.hero__text {
    max-width: 42rem;
    margin-top: 1.8rem;
}

.hero__actions,
.cta-section__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.25rem;
    margin-top: 2.5rem;
}

.link-arrow {
    color: var(--foreground);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.25em;
    text-transform: uppercase;
}

.link-arrow span {
    display: inline-block;
    color: var(--primary);
    transition: transform 0.25s ease;
}

.link-arrow:hover span {
    transform: translateX(0.35rem);
}

.hero__visual {
    position: relative;
    min-height: 560px;
    border: 1px solid var(--border);
    overflow: hidden;
    background: var(--card);
}

.hero__visual img {
    width: 100%;
    height: 100%;
    min-height: 560px;
    object-fit: cover;
    filter: grayscale(1) contrast(1.1);
}

.hero__visual:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--background), rgba(27, 23, 23, 0.15), transparent);
    mix-blend-mode: multiply;
}

.hero__badge {
    position: absolute;
    left: 1.5rem;
    bottom: 1.5rem;
    z-index: 2;
    border: 1px solid var(--border);
    background: rgba(27, 23, 23, 0.78);
    padding: 1.2rem 1.4rem;
    backdrop-filter: blur(12px);
}

.hero__badge strong {
    display: block;
    font-family: var(--font-display);
    font-size: 4rem;
    line-height: 1;
}

.hero__badge span {
    display: block;
    color: var(--muted-foreground);
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
}

.marquee {
    overflow: hidden;
    border-block: 1px solid var(--border);
    background: var(--card-soft);
    padding: 1.4rem 0;
}

.marquee__track {
    display: flex;
    width: max-content;
    gap: 4rem;
    animation: marquee 42s linear infinite;
}

.marquee span {
    display: inline-flex;
    align-items: center;
    gap: 4rem;
    color: var(--muted-foreground);
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 4rem);
    line-height: 1;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.marquee i {
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 999px;
    background: var(--primary);
}

.section,
.content-section {
    position: relative;
    padding: clamp(5rem, 10vw, 11rem) 0;
}

.section--bordered {
    border-block: 1px solid var(--border);
    background: rgba(38, 32, 32, 0.35);
}

.section-heading {
    max-width: 760px;
    margin-bottom: clamp(3rem, 8vw, 5.5rem);
}

.section-heading--split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
    gap: 2rem;
    align-items: end;
    max-width: none;
}

.artist-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.artist-card {
    position: relative;
    min-height: 470px;
    overflow: hidden;
    background: var(--card);
}

.artist-card img {
    width: 100%;
    height: 100%;
    min-height: 470px;
    object-fit: cover;
    filter: grayscale(1);
    transition: transform 0.7s ease, filter 0.7s ease;
}

.artist-card:hover img {
    transform: scale(1.06);
    filter: grayscale(0);
}

.artist-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--background), rgba(27, 23, 23, 0.45), transparent);
}

.artist-card__content {
    position: absolute;
    inset: auto 0 0;
    padding: 2rem;
}

.artist-card__genre {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    color: var(--primary);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.3em;
    text-transform: uppercase;
}

.artist-card__genre span {
    width: 1.5rem;
    height: 1px;
    background: var(--primary);
}

.artist-card h3 {
    margin: 0.7rem 0 1rem;
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 4vw, 3.4rem);
    line-height: 0.95;
}

.artist-card__meta {
    display: flex;
    gap: 0.75rem;
    color: var(--muted-foreground);
    font-size: 0.72rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
}

.tour-list,
.simple-list,
.press-list {
    margin: 0;
    padding: 0;
    list-style: none;
    border-block: 1px solid var(--border);
}

.tour-row {
    display: grid;
    grid-template-columns: 1.1fr 2.3fr 1.6fr 1fr auto;
    align-items: center;
    gap: 1.2rem;
    border-bottom: 1px solid var(--border);
    padding: 1.6rem 0.5rem;
    transition: background-color 0.25s ease;
}

.tour-row:last-child {
    border-bottom: 0;
}

.tour-row:hover {
    background: rgba(220, 47, 47, 0.06);
}

.tour-row strong,
.tour-row span {
    display: block;
}

.tour-row div:first-child strong {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1;
}

.tour-row div:nth-child(2) strong {
    font-family: var(--font-display);
    font-size: 1.7rem;
    line-height: 1;
}

.tour-row span {
    color: var(--muted-foreground);
    font-size: 0.68rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
}

.tour-row em {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--primary);
    font-size: 0.68rem;
    font-style: normal;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.tour-row em:before {
    content: "";
    width: 0.42rem;
    height: 0.42rem;
    border-radius: 999px;
    background: currentColor;
}

.tour-row .is-muted {
    color: var(--muted-foreground);
}

.tour-row__arrow,
.service-card__arrow {
    color: var(--primary);
    font-size: 1.5rem;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--border);
}

.service-card {
    position: relative;
    min-height: 330px;
    background: var(--background);
    padding: clamp(2rem, 5vw, 3rem);
    overflow: hidden;
    transition: background-color 0.25s ease;
}

.service-card:hover {
    background: var(--card);
}

.service-card__number {
    color: var(--ash);
    font-family: var(--font-display);
    font-size: clamp(5rem, 10vw, 8rem);
    line-height: 0.8;
    transition: color 0.25s ease;
}

.service-card:hover .service-card__number {
    color: var(--primary);
}

.service-card h3,
.booking-panel h2,
.process-block h2 {
    margin: 1.4rem 0 0;
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5vw, 4rem);
    line-height: 0.95;
}

.service-card p,
.tier-card p,
.process-grid p,
.venue-card small {
    color: var(--muted-foreground);
}

.service-card__arrow {
    position: absolute;
    right: 2rem;
    top: 2rem;
}

.page-hero {
    position: relative;
    overflow: hidden;
    padding: clamp(6rem, 12vw, 12rem) 0 clamp(3rem, 7vw, 6rem);
    border-bottom: 1px solid var(--border);
    background: radial-gradient(circle at 20% 20%, rgba(220, 47, 47, 0.18), transparent 36%), var(--background);
}

.page-hero__subtitle {
    max-width: 720px;
    margin-top: 1.5rem;
}

.two-column,
.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    gap: clamp(2rem, 6vw, 5rem);
    align-items: start;
}

.copy-stack {
    display: grid;
    gap: 1.4rem;
}

.stat-grid,
.process-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--border);
}

.stat-grid div,
.process-grid article,
.office-grid div {
    background: var(--background);
    padding: 2rem;
}

.stat-grid strong,
.process-grid strong {
    display: block;
    color: var(--foreground);
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 1;
}

.stat-grid span,
.process-grid span,
.office-grid span,
.venue-card span,
.tier-card span {
    display: block;
    color: var(--primary);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.28em;
    text-transform: uppercase;
}

.venue-grid,
.tier-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
}

.venue-card,
.tier-card {
    background: var(--background);
    padding: 2.4rem;
    transition: background-color 0.25s ease;
}

.venue-card:hover,
.tier-card:hover {
    background: var(--card);
}

.venue-card h2,
.tier-card h3 {
    margin: 1rem 0 2rem;
    font-family: var(--font-display);
    font-size: clamp(2.3rem, 4vw, 3.5rem);
    line-height: 0.95;
}

.venue-card div {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    border-top: 1px solid var(--border);
    padding-top: 1rem;
}

.venue-card strong {
    font-family: var(--font-display);
    font-size: 1.5rem;
}

.booking-panel {
    border: 1px solid var(--border);
    background: var(--card);
    padding: clamp(1.5rem, 5vw, 3rem);
}

.booking-panel p {
    color: var(--muted-foreground);
    margin-top: 0.8rem;
}

.booking-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.booking-form label {
    display: grid;
    gap: 0.4rem;
    color: var(--muted-foreground);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.booking-form input,
.booking-form textarea {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 0;
    background: var(--background);
    color: var(--foreground);
    padding: 0.95rem 1rem;
    font: inherit;
    letter-spacing: 0;
    text-transform: none;
}

.booking-form input:focus,
.booking-form textarea:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

.booking-form__full {
    grid-column: 1 / -1;
}

.form-notice {
    border: 1px solid var(--border);
    margin-top: 1.5rem;
    padding: 1rem;
}

.form-notice--success {
    border-color: var(--primary);
}

.form-notice--error {
    border-color: #ff8f70;
}

.tier-grid,
.process-block {
    margin-top: clamp(3rem, 8vw, 6rem);
}

.tier-card ul {
    display: grid;
    gap: 0.55rem;
    margin: 1.5rem 0 0;
    padding: 0;
    list-style: none;
    color: var(--muted-foreground);
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.tier-card li:before {
    content: "";
    display: inline-block;
    width: 1.4rem;
    height: 1px;
    margin-right: 0.7rem;
    vertical-align: middle;
    background: var(--primary);
}

.office-grid {
    display: grid;
    gap: 1px;
    background: var(--border);
}

.office-grid strong,
.office-grid a {
    display: block;
}

.office-grid strong {
    margin-top: 0.6rem;
    font-family: var(--font-display);
    font-size: 2rem;
    line-height: 1;
}

.office-grid a {
    margin-top: 1rem;
    color: var(--muted-foreground);
}

.simple-list li,
.press-list li {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1rem;
    align-items: center;
    border-bottom: 1px solid var(--border);
    padding: 1.5rem 0.5rem;
}

.simple-list li:last-child,
.press-list li:last-child {
    border-bottom: 0;
}

.simple-list strong {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1;
}

.simple-list span {
    color: var(--muted-foreground);
    font-size: 0.68rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
}

.simple-list a {
    color: var(--primary);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.press-list li {
    grid-template-columns: 1fr 1fr 4fr auto;
}

.press-list strong {
    font-family: var(--font-display);
    font-size: 2rem;
}

.press-list span {
    color: var(--muted-foreground);
    font-size: 0.68rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
}

.press-list em {
    color: var(--primary);
    font-style: normal;
}

.client-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.client-cloud span {
    border: 1px solid var(--border);
    background: var(--card);
    padding: 0.75rem 1rem;
    color: var(--muted-foreground);
    font-size: 0.76rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.legal-copy {
    display: grid;
    gap: 2rem;
    color: var(--muted-foreground);
}

.legal-copy h2 {
    margin: 0 0 0.65rem;
    color: var(--foreground);
    font-family: var(--font-display);
    font-size: 2.3rem;
}

.cta-section {
    position: relative;
    overflow: hidden;
    border-block: 1px solid var(--border);
    background: rgba(38, 32, 32, 0.55);
    text-align: center;
}

.cta-section__inner {
    position: relative;
    z-index: 2;
}

.cta-section p {
    max-width: 640px;
    margin: 1.6rem auto 0;
}

.cta-section__actions {
    justify-content: center;
}

.cta-section__actions a:not(.button-fire) {
    color: var(--foreground);
    font-size: 0.8rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    text-decoration: underline;
    text-underline-offset: 0.45rem;
}

.embers {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.embers span {
    position: absolute;
    bottom: 0;
    border-radius: 999px;
    background: var(--primary-hot);
    box-shadow: 0 0 8px var(--primary-hot), 0 0 16px var(--primary);
    animation: rise var(--rise-duration, 6s) ease-out var(--rise-delay, 0s) infinite;
}

.post-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.post-card {
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--card);
}

.post-card__image img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.post-card__body {
    padding: 1.5rem;
}

.post-card__title {
    margin: 1rem 0 0;
    font-family: var(--font-display);
    font-size: 2.3rem;
    line-height: 1;
}

.post-card__excerpt {
    margin-top: 1rem;
    color: var(--muted-foreground);
}

.entry-content {
    margin-top: 2rem;
    color: var(--muted-foreground);
}

.archive-header {
    margin-bottom: 3rem;
}

.site-footer {
    border-top: 1px solid var(--border);
    background: #120f0f;
    padding: 4rem 0 2rem;
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 2rem;
}

.site-footer__brand {
    display: inline-flex;
    max-width: 180px;
    margin-bottom: 1rem;
}

.site-footer p,
.site-footer a {
    color: var(--muted-foreground);
}

.footer-navigation .menu {
    display: grid;
    gap: 0.55rem;
    align-items: start;
}

.footer-navigation a,
.site-footer__contact a,
.site-footer__contact span {
    display: block;
    font-size: 0.76rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.site-footer__contact {
    display: grid;
    gap: 0.55rem;
}

.site-footer__contact span {
    color: var(--primary);
    font-weight: 800;
}

.site-footer__bottom {
    border-top: 1px solid var(--border);
    margin-top: 3rem;
    padding-top: 1.2rem;
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@keyframes rise {
    0% {
        transform: translateY(20px) scale(0.8);
        opacity: 0;
    }

    20% {
        opacity: 0.8;
    }

    100% {
        transform: translateY(-120vh) scale(1.4);
        opacity: 0;
    }
}

@media (max-width: 980px) {
    body.admin-bar .site-header {
        top: 46px;
    }

    .site-header__inner {
        grid-template-columns: auto auto;
    }

    .menu-toggle {
        display: inline-flex;
        justify-self: end;
    }

    .nav-cta {
        display: none;
    }

    .primary-navigation {
        grid-column: 1 / -1;
        display: none;
        padding-bottom: 1rem;
    }

    .primary-navigation.is-open {
        display: block;
    }

    .primary-navigation .menu {
        display: grid;
        gap: 0.4rem;
    }

    .hero__inner,
    .two-column,
    .contact-grid,
    .section-heading--split {
        grid-template-columns: 1fr;
    }

    .hero__visual,
    .hero__visual img {
        min-height: 420px;
    }

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

    .tour-row {
        grid-template-columns: 1fr 2fr;
    }

    .tour-row__arrow {
        display: none;
    }

    .press-list li {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 680px) {
    .site-header__inner {
        min-height: 72px;
    }

    .hero {
        min-height: auto;
        padding: 4rem 0;
    }

    .hero__title {
        font-size: clamp(4.5rem, 24vw, 7rem);
    }

    .display-title {
        font-size: clamp(3.5rem, 17vw, 5.75rem);
    }

    .artist-grid,
    .service-grid,
    .venue-grid,
    .tier-grid,
    .stat-grid,
    .process-grid,
    .post-grid,
    .booking-form {
        grid-template-columns: 1fr;
    }

    .artist-card,
    .artist-card img {
        min-height: 420px;
    }

    .tour-row {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .simple-list li {
        grid-template-columns: 1fr;
    }

    .site-footer__grid {
        grid-template-columns: 1fr;
    }
}


/* Latest Lovable migration additions */
.hero--latest {
    min-height: 100vh;
    padding: 0;
}

.hero__media,
.hero__media img,
.hero__media-shade {
    position: absolute;
    inset: 0;
}

.hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    animation: flicker 4s ease-in-out infinite;
}

.hero__media-shade--vertical {
    background: linear-gradient(to bottom, rgba(27, 23, 23, 0.4), rgba(27, 23, 23, 0.6), var(--background));
}

.hero__media-shade--horizontal {
    background: linear-gradient(to right, rgba(27, 23, 23, 0.82), transparent, rgba(27, 23, 23, 0.42));
}

.hero__inner--latest {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 8rem;
    padding-bottom: 6rem;
}

.hero__eyebrow-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.hero__eyebrow-row span {
    width: 3rem;
    height: 1px;
    background: var(--primary);
}

.hero__eyebrow-row strong {
    color: var(--primary);
    font-size: 0.75rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
}

.hero__title--latest {
    font-size: clamp(3.5rem, 11vw, 11rem);
    max-width: 980px;
}

.link-dot {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    color: var(--foreground);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.25em;
    text-transform: uppercase;
}

.link-dot span {
    display: inline-flex;
    width: 3rem;
    height: 3rem;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: 999px;
    transition: border-color 0.25s ease, background-color 0.25s ease;
}

.link-dot i {
    display: block;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 999px;
    background: var(--primary);
}

.link-dot:hover span {
    border-color: var(--primary);
    background: rgba(220, 47, 47, 0.12);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(120px, 1fr));
    gap: 2rem;
    width: min(100%, 780px);
    margin-top: 6rem;
    border-top: 1px solid var(--border);
    padding-top: 2rem;
}

.hero-stats strong {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 4.25rem);
    line-height: 1;
}

.hero-stats span {
    display: block;
    margin-top: 0.5rem;
    color: var(--muted-foreground);
    font-size: 0.68rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
}

.hero-scroll {
    position: absolute;
    left: 50%;
    bottom: 2rem;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    transform: translateX(-50%);
}

.hero-scroll span {
    color: var(--muted-foreground);
    font-size: 0.62rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
}

.hero-scroll i {
    width: 1px;
    height: 3rem;
    background: linear-gradient(to bottom, var(--primary), transparent);
}

.section--circles {
    overflow: hidden;
}

.artist-circle-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(2rem, 5vw, 4.5rem) clamp(1.5rem, 4vw, 3rem);
}

.artist-circle {
    text-align: center;
}

.artist-circle a {
    position: relative;
    display: block;
    aspect-ratio: 1;
    max-width: 220px;
    margin: 0 auto;
    color: inherit;
}

.artist-circle__ring,
.artist-circle__ring--dashed {
    position: absolute;
    inset: -0.5rem;
    border: 1px solid rgba(70, 57, 56, 0.75);
    border-radius: 999px;
    pointer-events: none;
    transition: transform 0.7s ease, border-color 0.7s ease, opacity 0.7s ease;
}

.artist-circle__ring--dashed {
    inset: -1rem;
    border-style: dashed;
    opacity: 0;
}

.artist-circle a:hover .artist-circle__ring {
    border-color: rgba(220, 47, 47, 0.7);
    transform: rotate(45deg);
}

.artist-circle a:hover .artist-circle__ring--dashed {
    opacity: 1;
    transform: rotate(-30deg);
}

.artist-circle__image {
    position: absolute;
    inset: 0;
    overflow: hidden;
    border-radius: 999px;
    background: var(--card);
    box-shadow: inset 0 0 0 1px var(--border);
}

.artist-circle__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1);
    transition: transform 0.7s ease, filter 0.7s ease;
}

.artist-circle a:hover img {
    transform: scale(1.1);
    filter: grayscale(0);
}

.artist-circle__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    background: rgba(27, 23, 23, 0.86);
    opacity: 0;
    padding: 1rem;
    backdrop-filter: blur(8px);
    transition: opacity 0.35s ease;
}

.artist-circle a:hover .artist-circle__overlay {
    opacity: 1;
}

.artist-circle__overlay strong,
.artist-circle__overlay em,
.artist-circle__overlay small {
    display: block;
    font-style: normal;
    text-transform: uppercase;
}

.artist-circle__overlay strong {
    color: var(--primary);
    font-size: 0.62rem;
    letter-spacing: 0.3em;
}

.artist-circle__overlay em {
    color: var(--muted-foreground);
    font-size: 0.66rem;
    letter-spacing: 0.18em;
}

.artist-circle__overlay small {
    color: var(--foreground);
    font-size: 0.7rem;
    letter-spacing: 0.25em;
}

.artist-circle__number {
    position: absolute;
    top: -0.25rem;
    right: -0.25rem;
    display: inline-flex;
    width: 1.8rem;
    height: 1.8rem;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: var(--background);
    color: var(--primary);
    font-family: var(--font-display);
    font-size: 0.86rem;
    line-height: 1;
}

.artist-circle h3 {
    margin: 1.5rem 0 0.4rem;
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.3rem);
    line-height: 0.95;
}

.artist-circle > span {
    display: block;
    color: var(--muted-foreground);
    font-size: 0.62rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
}

.section-action {
    display: flex;
    justify-content: center;
    margin-top: clamp(3rem, 6vw, 5rem);
}

.button-fire--outline {
    border: 1px solid var(--border);
    background: transparent;
    box-shadow: none;
}

.booking-form select {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 0;
    background: var(--background);
    color: var(--foreground);
    padding: 0.95rem 1rem;
    font: inherit;
    letter-spacing: 0;
    text-transform: none;
}

.booking-form select:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

@keyframes flicker {
    0%, 100% {
        opacity: 0.7;
    }
    50% {
        opacity: 0.58;
    }
}

@media (max-width: 980px) {
    .hero-stats,
    .artist-circle-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-scroll {
        display: none;
    }
}

@media (max-width: 640px) {
    .hero-stats,
    .artist-circle-grid,
    .booking-form {
        grid-template-columns: 1fr;
    }

    .hero__inner--latest {
        padding-top: 7rem;
    }

    .artist-circle a {
        max-width: 190px;
    }
}


.booking-panel--request {
    position: relative;
}

.booking-checklist {
    display: grid;
    gap: 0.85rem;
    margin: 1.5rem 0 2rem;
}

.booking-checklist div {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.85rem;
    align-items: center;
    padding: 0.95rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.045);
}

.booking-checklist strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.15rem;
    height: 2.15rem;
    border-radius: 999px;
    background: var(--color-fire);
    color: var(--color-ink);
    font-size: 0.78rem;
    letter-spacing: 0.08em;
}

.booking-checklist span {
    color: var(--color-muted);
    font-weight: 700;
}

@media (min-width: 760px) {
    .booking-checklist {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .booking-checklist div {
        align-items: flex-start;
        grid-template-columns: 1fr;
    }
}


/* Offer for Engagement updates */
.booking-letterhead {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1.25rem;
    border: 1px solid var(--border);
    background: rgba(38, 32, 32, 0.42);
    padding: 1.25rem;
    margin-top: 2rem;
}

.booking-letterhead div {
    display: grid;
    gap: 0.25rem;
}

.booking-letterhead strong {
    font-family: var(--font-display);
    font-size: 1.5rem;
    line-height: 1;
}

.booking-letterhead span,
.booking-letterhead a,
.booking-from-block p,
.booking-from-block a,
.booking-form__legal {
    color: var(--muted-foreground);
    font-size: 0.78rem;
    line-height: 1.55;
}

.booking-letterhead div:last-child {
    text-align: right;
}

.booking-letterhead div:last-child span,
.booking-from-block > span,
.booking-form__section span {
    color: var(--primary);
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.3em;
    text-transform: uppercase;
}

.booking-proposal-heading {
    margin-top: 1.5rem;
}

.booking-proposal-heading h3 {
    margin: 0.5rem 0 0;
    font-family: var(--font-display);
    font-size: clamp(2.6rem, 6vw, 4.5rem);
    line-height: 0.95;
}

.booking-from-block {
    border-left: 2px solid var(--primary);
    background: rgba(38, 32, 32, 0.48);
    padding: 1rem;
}

.booking-from-block strong {
    display: block;
    margin-top: 0.5rem;
}

.booking-form__section {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 0.5rem;
}

.booking-form__section:before,
.booking-form__section:after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--border);
}

.booking-form--offer textarea {
    resize: vertical;
}

.booking-form__legal {
    margin: 0;
}

.site-footer__afm {
    display: grid;
    justify-items: center;
    gap: 0.75rem;
    border-top: 1px solid var(--border);
    margin-top: 3rem;
    padding-top: 2.5rem;
    text-align: center;
}

.site-footer__afm span {
    color: var(--muted-foreground);
    font-size: 0.62rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
}

.site-footer__afm a {
    display: inline-flex;
    align-items: center;
    border-radius: var(--radius-md);
    background: #fff;
    padding: 0.65rem 1rem;
}

.site-footer__afm img {
    width: auto;
    height: 2.5rem;
}

.site-footer__afm p {
    max-width: 680px;
    margin: 0;
    font-size: 0.64rem;
    letter-spacing: 0.22em;
    line-height: 1.7;
    text-transform: uppercase;
}

.site-footer__bottom > div {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
}

.site-footer__bottom > p {
    margin-top: 1rem;
    font-size: 0.64rem;
    letter-spacing: 0.22em;
    line-height: 1.7;
    text-transform: uppercase;
}

@media (max-width: 680px) {
    .booking-letterhead,
    .booking-letterhead div:last-child {
        text-align: left;
    }
}


.header-actions {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.75rem;
}

.login-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    border: 1px solid var(--border);
    color: var(--foreground);
    padding: 0.8rem 1rem;
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease;
}

.login-link:hover,
.login-link:focus {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(220, 47, 47, 0.08);
}

.previous-artist-list {
    border: 1px solid var(--border);
    background: rgba(38, 32, 32, 0.42);
}

.previous-artist-list__toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border: 0;
    background: transparent;
    color: var(--foreground);
    padding: 1rem;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-align: left;
    text-transform: uppercase;
    cursor: pointer;
}

.previous-artist-list__toggle strong {
    color: var(--primary);
    font-size: 1rem;
}

.previous-artist-list__panel {
    border-top: 1px solid var(--border);
    padding: 1rem;
}

.previous-artist-list__panel ul {
    columns: 2;
    column-gap: 2rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.previous-artist-list__panel li {
    break-inside: avoid;
    padding: 0.3rem 0;
    color: var(--muted-foreground);
    font-size: 0.86rem;
}

@media (max-width: 980px) {
    .header-actions {
        display: none;
    }
}

@media (max-width: 680px) {
    .previous-artist-list__panel ul {
        columns: 1;
    }
}


/* Past Clients interactive legacy list */
.past-clients-section {
    padding-top: 0;
}

.past-client-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 2rem;
    margin-bottom: 5rem;
    border-block: 1px solid var(--border);
    padding: 2.5rem 0;
}

.past-client-stats div {
    text-align: center;
}

.past-client-stats strong {
    display: block;
    color: var(--primary);
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 4.7rem);
    line-height: 0.9;
    text-shadow: 0 0 28px rgba(220, 47, 47, 0.36);
}

.past-client-stats span {
    display: block;
    margin-top: 0.75rem;
    color: var(--muted-foreground);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.28em;
    text-transform: uppercase;
}

.past-client-divider {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1rem;
}

.past-client-divider span {
    height: 1px;
    flex: 1;
    background: rgba(70, 57, 56, 0.55);
}

.past-client-divider strong {
    color: var(--muted-foreground);
    font-size: 0.68rem;
    letter-spacing: 0.38em;
    text-transform: uppercase;
}

.past-client-list {
    position: relative;
}

.past-client-row {
    position: relative;
    border-bottom: 1px solid rgba(70, 57, 56, 0.48);
    opacity: 0;
    transform: translateY(1.25rem);
    transition: opacity 0.65s ease var(--client-delay, 0ms), transform 0.65s ease var(--client-delay, 0ms);
}

.past-client-row.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.past-client-trigger {
    position: relative;
    z-index: 2;
    display: flex;
    width: 100%;
    min-height: clamp(6.25rem, 11vw, 9.5rem);
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    border: 0;
    background: transparent;
    color: var(--foreground);
    padding: 1.25rem 0;
    text-align: left;
    cursor: pointer;
}

.past-client-trigger:focus-visible {
    outline: 2px solid var(--primary-hot);
    outline-offset: 6px;
}

.past-client-glow {
    position: absolute;
    inset: 0 -2rem;
    z-index: -1;
    background: linear-gradient(90deg, rgba(220, 47, 47, 0), rgba(220, 47, 47, 0.13), rgba(255, 106, 42, 0.04), rgba(220, 47, 47, 0));
    opacity: 0;
    transform: scaleX(0.92);
    transition: opacity 0.55s ease, transform 0.55s ease;
    pointer-events: none;
}

.past-client-name {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 6.8vw, 5.75rem);
    font-weight: 400;
    line-height: 0.92;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    transition: color 0.35s ease, font-size 0.45s ease, transform 0.45s ease, text-shadow 0.45s ease;
}

.past-client-mobile-hint {
    flex: 0 0 auto;
    color: var(--muted-foreground);
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    opacity: 0.35;
    transition: opacity 0.3s ease, color 0.3s ease;
}

.past-client-info {
    position: absolute;
    top: 50%;
    right: 0;
    z-index: 4;
    width: min(46vw, 560px);
    opacity: 0;
    transform: translate(1.5rem, -44%) scale(0.96);
    pointer-events: none;
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.past-client-info__inner {
    border: 1px solid rgba(255, 106, 42, 0.28);
    background: rgba(27, 23, 23, 0.94);
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.42), 0 0 44px rgba(220, 47, 47, 0.18);
    padding: 1.15rem;
    backdrop-filter: blur(16px);
}

.past-client-tags,
.past-client-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.past-client-meta {
    margin-top: 0.8rem;
}

.past-client-tags span,
.past-client-meta span,
.past-client-note {
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(70, 57, 56, 0.9);
    border-radius: 999px;
    background: rgba(38, 32, 32, 0.82);
    color: var(--muted-foreground);
    padding: 0.48rem 0.7rem;
    font-size: 0.61rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    line-height: 1.2;
    text-transform: uppercase;
}

.past-client-award {
    border-color: rgba(220, 47, 47, 0.58) !important;
    background: rgba(220, 47, 47, 0.14) !important;
    color: var(--primary-hot) !important;
}

.past-client-row:hover,
.past-client-row:focus-within,
.past-client-row.is-expanded {
    z-index: 10;
}

.past-client-row:hover .past-client-name,
.past-client-row:focus-within .past-client-name,
.past-client-row.is-expanded .past-client-name {
    transform: translateX(0.5rem);
    color: var(--primary-hot);
    text-shadow: 0 0 24px rgba(220, 47, 47, 0.55), 0 0 62px rgba(255, 106, 42, 0.25);
}

.past-client-row:hover .past-client-glow,
.past-client-row:focus-within .past-client-glow,
.past-client-row.is-expanded .past-client-glow {
    opacity: 1;
    transform: scaleX(1);
}

.past-client-row:hover .past-client-mobile-hint,
.past-client-row:focus-within .past-client-mobile-hint,
.past-client-row.is-expanded .past-client-mobile-hint {
    color: var(--primary-hot);
    opacity: 1;
}

.past-client-row:hover .past-client-info,
.past-client-row:focus-within .past-client-info,
.past-client-row.is-expanded .past-client-info {
    opacity: 1;
    transform: translate(0, -50%) scale(1);
    pointer-events: auto;
}

.past-client-cta {
    margin-top: 6rem;
    text-align: center;
}

.past-client-cta p {
    color: var(--muted-foreground);
    font-size: 1.1rem;
}

.past-client-cta a {
    display: inline-block;
    margin-top: 1.25rem;
    color: var(--foreground);
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 6vw, 4.8rem);
    line-height: 0.95;
    transition: color 0.25s ease, text-shadow 0.25s ease;
}

.past-client-cta a:hover,
.past-client-cta a:focus {
    color: var(--primary-hot);
    text-shadow: 0 0 30px rgba(220, 47, 47, 0.46);
}

@media (max-width: 900px) {
    .past-client-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .past-client-trigger {
        align-items: flex-start;
        flex-direction: column;
        min-height: auto;
        padding: 1.45rem 0;
    }

    .past-client-info {
        position: static;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transform: none;
        transition: max-height 0.45s ease, opacity 0.35s ease, margin 0.35s ease;
    }

    .past-client-row:hover .past-client-info,
    .past-client-row:focus-within .past-client-info,
    .past-client-row.is-expanded .past-client-info {
        max-height: 26rem;
        margin-bottom: 1.35rem;
        transform: none;
    }

    .past-client-row:hover .past-client-name,
    .past-client-row:focus-within .past-client-name,
    .past-client-row.is-expanded .past-client-name {
        transform: none;
    }
}

@media (max-width: 600px) {
    .past-client-stats {
        grid-template-columns: 1fr;
    }

    .past-client-tags span,
    .past-client-meta span,
    .past-client-note {
        font-size: 0.56rem;
        letter-spacing: 0.14em;
    }
}
