:root {
    --black: #050505;
    --black-2: #0b0a08;
    --panel: rgba(18, 15, 10, 0.92);
    --red: #ed1c24;
    --red-2: #ff2b35;
    --red-3: #b80f17;
    --white: #ffffff;
    --muted: #d5cdc2;
    --muted-2: #a99f93;
    --border: rgba(255, 255, 255, 0.12);
    --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
    --red-shadow: 0 18px 42px rgba(237, 28, 36, 0.22);
    --font-body: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-heading: "Cinzel", Georgia, serif;
    --font-elegant: "Cormorant Garamond", Georgia, serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    position: relative;
    min-height: 100vh;
    margin: 0;
    color: var(--white);
    font-family: var(--font-body);
    background: #000;

    &::after {
        content: "";
        position: fixed;
        inset: 0;
        z-index: 1;
        background:
            radial-gradient(circle at 50% 0%, rgba(237, 28, 36, 0.05), transparent 32%),
            linear-gradient(90deg, rgba(0, 0, 0, 0.26), rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.26));
        pointer-events: none;
    }
}

.hidden {
    display: none !important;
}

.background-rotator {
    position: fixed;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    background: #000;
    opacity: 0.3;

    &::after {
        content: "";
        position: absolute;
        inset: 0;
        background:
            linear-gradient(180deg, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.36)),
            radial-gradient(circle at 20% 10%, rgba(237, 28, 36, 0.05), transparent 28%);
        pointer-events: none;
    }

    & .background-rotator__layer {
        position: absolute;
        inset: 0;
        opacity: 0;
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
        filter: saturate(1.14) contrast(1.06) brightness(1.06);
        transform: scale(1.03);
        transition: opacity 1600ms ease-in-out;

        &.is-active {
            opacity: 1;
        }
    }
}

a {
    color: inherit;
    text-decoration: none;

    &:hover {
        color: var(--red-2);
    }
}

.site-shell {
    position: relative;
    z-index: 2;
    max-width: 1920px;
    margin: 0 auto;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.02);
}

.hero-section {
    position: relative;
    min-height: 640px;
    background:
        radial-gradient(circle at 12% 28%, rgba(255, 255, 255, 0.05), transparent 8%),
        radial-gradient(circle at 46% 7%, rgba(237, 28, 36, 0.06), transparent 9%),
        radial-gradient(circle at 92% 10%, rgba(237, 28, 36, 0.08), transparent 11%),
        linear-gradient(110deg, rgba(0, 0, 0, 0.20), rgba(15, 15, 15, 0.06), rgba(0, 0, 0, 0.24));

    &::after {
        content: "";
        position: absolute;
        inset: auto 0 0;
        height: 175px;
        background:
            linear-gradient(0deg, rgba(0, 0, 0, 0.44), transparent),
            radial-gradient(ellipse at center bottom, rgba(237, 28, 36, 0.04), transparent 65%);
        pointer-events: none;
    }
}

.main-navbar {
    position: relative;
    z-index: 10;
    min-height: 92px;
    background: rgba(3, 5, 7, 0.78);
    border-bottom: 1px solid rgba(237, 28, 36, 0.22);
    backdrop-filter: blur(10px);

    & .navbar-brand {
        color: var(--white);
        font-family: var(--font-heading);
        font-size: 16px;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }
}

.navbar-logo {
    display: inline-flex;
    align-items: center;
    max-width: 230px;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;

    & img {
        display: block;
        width: 168px;
        max-width: 100%;
        height: auto;
        filter:
            drop-shadow(0 12px 20px rgba(0, 0, 0, 0.55)) drop-shadow(0 0 14px rgba(237, 28, 36, 0.18));
    }
}

.main-menu {
    gap: 18px;

    & .nav-link {
        color: var(--white);
        font-family: var(--font-heading);
        font-size: 13px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.08em;

        &:hover,
        &.active {
            color: var(--red-2);
        }
    }
}

.social-links {
    display: flex;
    gap: 14px;
    padding: 12px 0;

    & a {
        display: grid;
        width: 48px;
        height: 48px;
        place-items: center;
        color: var(--white);
        border: 1px solid rgba(237, 28, 36, 0.42);
        border-radius: 12px;
        background:
            linear-gradient(145deg, rgba(237, 28, 36, 0.18), rgba(255, 255, 255, 0.04));
        box-shadow: var(--shadow);
        transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;

        &:hover {
            color: var(--white);
            border-color: rgba(255, 43, 53, 0.85);
            background:
                linear-gradient(145deg, rgba(237, 28, 36, 0.38), rgba(255, 255, 255, 0.06));
            transform: translateY(-2px);
        }

        & svg {
            width: 24px;
            height: 24px;
            fill: currentColor;
        }
    }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.min-vh-hero {
    min-height: 548px;
}

.hero-copy {
    max-width: 680px;
    padding: 70px 0 80px;

    & h1 {
        margin: 0;
        color: var(--white);
        font-family: var(--font-heading);
        font-size: clamp(54px, 7vw, 104px);
        font-weight: 900;
        line-height: 0.9;
        text-transform: uppercase;
        letter-spacing: 0.015em;
        text-shadow: 0 8px 22px rgba(0, 0, 0, 0.55);

        & span {
            display: block;
            color: var(--red-2);
        }
    }
}

.hero-kicker {
    margin: 0 0 10px;
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.hero-roles {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
    margin: 20px 0 30px;

    & span {
        color: var(--white);
        font-family: var(--font-elegant);
        font-size: 25px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.045em;
    }
}

.release-banner {
    display: inline-flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 32px;
    padding: 16px 28px;
    background: rgba(0, 0, 0, 0.36);
    border-left: 5px solid var(--red);
    box-shadow: var(--shadow);
    backdrop-filter: blur(3px);

    & span {
        color: var(--white);
        font-family: var(--font-heading);
        font-size: 24px;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 0.04em;
    }

    & strong {
        color: var(--red-2);
        font-family: var(--font-elegant);
        font-size: 22px;
        font-weight: 700;
    }
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.btn-red {
    color: #000000;
    font-family: var(--font-heading);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: #ffca44;
    border-color: #e2b33c;
    box-shadow: var(--red-shadow);

    &:hover {
        color: var(--white);
        background: var(--red-2);
        border-color: var(--red-2);
    }
}

.dj-image-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    min-height: 540px;
}

.dj-image {
    width: min(100%, 520px);
    max-height: 560px;
    object-fit: contain;
    filter: drop-shadow(0 26px 34px rgba(0, 0, 0, 0.65));
}

.logo-hero-wrap {
    align-items: center;
}

.brand-logo-panel,
.brand-logo-card {
    position: relative;
    overflow: hidden;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;

    &::before {
        content: none;
    }
}

.brand-logo-panel-hero {
    width: min(100%, 680px);
    padding: 0;
}

.logo-hero-image {
    width: 100%;
    max-height: none;
    padding: 0;
    object-fit: contain;
    filter:
        drop-shadow(0 26px 34px rgba(0, 0, 0, 0.65)) drop-shadow(0 0 28px rgba(237, 28, 36, 0.18));
}

.services-strip,
.photos-section,
.media-section,
.about-section,
.contact-section,
.estimate-section {
    position: relative;
    z-index: 3;
}

.services-strip,
.photos-section,
.media-section,
.estimate-section {
    padding: 30px 0;
    background:
        linear-gradient(90deg, rgba(20, 12, 12, 0.42), rgba(34, 18, 18, 0.34)),
        rgba(0, 0, 0, 0.12);
    border-top: 1px solid rgba(237, 28, 36, 0.18);
    border-bottom: 1px solid rgba(237, 28, 36, 0.18);
    box-shadow: var(--shadow);
    backdrop-filter: blur(1.5px);
}

.photos-section {
    background:
        radial-gradient(circle at 20% 0%, rgba(237, 28, 36, 0.06), transparent 24%),
        linear-gradient(180deg, rgba(8, 6, 6, 0.34), rgba(19, 11, 11, 0.28) 48%, rgba(5, 5, 5, 0.38));
}

.section-heading {
    display: flex;
    gap: 26px;
    align-items: center;
    margin-bottom: 34px;

    &.section-heading-center {
        justify-content: center;
        text-align: center;
    }

    & span {
        display: block;
        width: 8px;
        height: 64px;
        background: #e3b33c;
        box-shadow: var(--red-shadow);
    }

    & h2 {
        margin: 0;
        color: #ffffff;
        font-family: var(--font-heading);
        font-size: clamp(34px, 4vw, 54px);
        font-weight: 900;
        text-transform: uppercase;
        letter-spacing: 0.09em;
    }
}

.service-card,
.estimate-panel,
.contact-form-panel {
    position: relative;
    height: 100%;
    padding: 21px 26px;
    overflow: hidden;
    background:
        radial-gradient(circle at top right, rgba(237, 28, 36, 0.10), transparent 32%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012)),
        rgba(0, 0, 0, 0.22);
    border: 1px solid rgba(237, 28, 36, 0.22);
    box-shadow: var(--shadow);
    backdrop-filter: blur(2px);
}

.service-card {
    min-height: 260px;

    & .service-number {
        color: rgba(237, 28, 36, 0.62);
        font-family: var(--font-heading);
        font-size: 48px;
        font-weight: 900;
        line-height: 1;
    }

    & h3 {
        margin: 18px 0 14px;
        color: var(--white);
        font-family: var(--font-heading);
        font-size: 26px;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 0.045em;
    }

    & p {
        margin: 0;
        color: var(--muted);
        font-size: 16px;
        line-height: 1.7;
    }
}

.form-label {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;

    & span {
        color: var(--red-2);
    }
}

.form-control,
.form-select {
    color: var(--white);
    background-color: rgba(0, 0, 0, 0.62);
    border: 1px solid rgba(237, 28, 36, 0.32);
    border-radius: 0;
    box-shadow: none;

    &:focus {
        color: var(--white);
        background-color: rgba(0, 0, 0, 0.76);
        border-color: var(--red-2);
        box-shadow: 0 0 0 0.2rem rgba(237, 28, 36, 0.22);
    }

    &::placeholder {
        color: rgba(255, 255, 255, 0.55);
    }
}

.form-select {
    & option {
        color: #000;
    }
}

.estimate-result,
.contact-form-status {
    min-height: 48px;
    padding: 18px 20px;
    color: var(--muted);
    background: rgba(0, 0, 0, 0.40);
    border-left: 4px solid var(--red);

    & p {
        margin: 0;
    }

    &.success {
        color: #ffffff;
        border-left-color: #41c46b;
    }

    &.error {
        color: #ffffff;
        border-left-color: var(--red-2);
    }
}

.estimate-result {
    text-align: center;

    & .estimate-total {
        display: block;
        color: var(--white);
        font-family: var(--font-heading);
        font-size: 24px;
        font-weight: 800;
        line-height: 1.35;
    }

    & .estimate-total-price {
        display: inline-block;
        color: var(--red-2);
        font-size: 34px;
        white-space: nowrap;
    }

    & .book-this-quote {
        display: inline-block;
        margin-top: 14px;
        padding: 0;
        color: var(--white);
        font-family: var(--font-elegant);
        font-size: 21px;
        font-weight: 700;
        text-decoration: underline;
        text-underline-offset: 5px;
        background: transparent;
        border: 0;
        cursor: pointer;

        &:hover {
            color: var(--red-2);
        }
    }
}

.about-section,
.contact-section {
    padding: 30px 0;
    background:
        radial-gradient(circle at 35% 5%, rgba(237, 28, 36, 0.05), transparent 25%),
        linear-gradient(180deg, rgba(16, 11, 11, 0.38), rgba(5, 5, 5, 0.48));
    backdrop-filter: blur(1.5px);
}

.about-image-card {
    padding: 0;

    & img {
        position: relative;
        z-index: 1;
        width: 100%;
        aspect-ratio: 4 / 5;
        object-fit: contain;
        object-position: center;
    }
}

.about-logo-image {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    filter:
        drop-shadow(0 22px 34px rgba(0, 0, 0, 0.60)) drop-shadow(0 0 22px rgba(237, 28, 36, 0.18));
}

.about-copy {
    max-width: 780px;

    & h2 {
        margin: 0 0 22px;
        color: var(--red-2);
        font-family: var(--font-heading);
        font-size: clamp(38px, 5vw, 68px);
        font-weight: 900;
        line-height: 1;
        text-transform: uppercase;
        letter-spacing: 0.04em;
    }

    & p {
        color: var(--muted);
        font-family: var(--font-elegant);
        font-size: 23px;
        font-weight: 600;
        line-height: 1.55;
    }
}

.genre-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;

    & span {
        padding: 9px 15px;
        color: var(--white);
        font-family: var(--font-heading);
        font-size: 13px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.06em;
        border: 1px solid rgba(237, 28, 36, 0.46);
        background: rgba(237, 28, 36, 0.16);
    }
}

.photo-slider-shell {
    position: relative;
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr) 52px;
    gap: 16px;
    align-items: center;
}

.photo-slider {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 60px) / 4);
    gap: 20px;
    overflow-x: auto;
    padding: 8px 2px 18px;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: var(--red) rgba(255, 255, 255, 0.08);

    &::-webkit-scrollbar {
        height: 8px;
    }

    &::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.08);
    }

    &::-webkit-scrollbar-thumb {
        background: var(--red);
        border-radius: 999px;
    }
}

.photo-slide {
    min-width: 0;
    overflow: hidden;
    scroll-snap-align: start;
    background:
        linear-gradient(145deg, rgba(237, 28, 36, 0.14), rgba(255, 255, 255, 0.02)),
        rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(237, 28, 36, 0.24);
    box-shadow: var(--shadow);

    & img {
        display: block;
        width: 100%;
        aspect-ratio: 16 / 9;
        object-fit: contain;
        object-position: center;
        background: rgba(0, 0, 0, 0.65);
        transition: transform 0.25s ease, filter 0.25s ease;
    }

    &:hover img {
        transform: scale(1.015);
        filter: brightness(1.12);
    }
}

.photo-slider-btn {
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    color: var(--white);
    font-size: 42px;
    line-height: 1;
    border: 0;
    border-radius: 50%;
    background: var(--red);
    box-shadow: var(--red-shadow);
    transition: transform 0.2s ease, background 0.2s ease;

    &:hover {
        background: var(--red-2);
        transform: translateY(-2px);
    }
}

.empty-gallery-message {
    padding: 28px;
    color: var(--muted);
    text-align: center;
    background: rgba(0, 0, 0, 0.46);
    border: 1px solid rgba(237, 28, 36, 0.24);
    backdrop-filter: blur(3px);

    & p {
        margin: 0;
    }
}

.media-feature {
    height: 100%;
    padding: 36px;
    background:
        linear-gradient(145deg, rgba(237, 28, 36, 0.07), rgba(255, 255, 255, 0.018)),
        rgba(0, 0, 0, 0.24);
    border: 1px solid rgba(237, 28, 36, 0.22);
    box-shadow: var(--shadow);
    backdrop-filter: blur(2px);

    & h3 {
        margin: 0 0 16px;
        color: var(--white);
        font-family: var(--font-heading);
        font-size: 32px;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 0.045em;
    }

    & p {
        max-width: 560px;
        margin: 0 0 24px;
        color: var(--muted);
        font-family: var(--font-elegant);
        font-size: 21px;
        font-weight: 600;
        line-height: 1.55;
    }
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;

    & img {
        width: 100%;
        aspect-ratio: 16 / 10;
        object-fit: cover;
        border: 1px solid rgba(237, 28, 36, 0.24);
        transition: transform 0.2s ease, filter 0.2s ease;
    }

    & a:hover img {
        transform: translateY(-3px);
        filter: brightness(1.15);
    }
}

.info-panel {
    height: 100%;
    min-height: 250px;
    padding: 34px;
    background:
        linear-gradient(145deg, rgba(237, 28, 36, 0.07), rgba(255, 255, 255, 0.018)),
        rgba(0, 0, 0, 0.26);
    border: 1px solid rgba(237, 28, 36, 0.22);
    box-shadow: var(--shadow);
    backdrop-filter: blur(2px);

    & h2 {
        margin: 0 0 26px;
        color: var(--red-2);
        font-family: var(--font-heading);
        font-size: 26px;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 0.08em;
    }
}

.contact-panel {
    text-align: center;

    & p {
        margin-bottom: 14px;
        color: var(--muted);
        line-height: 1.7;
    }

    & .contact-note {
        margin-top: 28px;
        font-family: var(--font-elegant);
        font-size: 22px;
        font-weight: 600;
        line-height: 1.45;
    }
}

.large-social-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;

    & a {
        display: grid;
        min-height: 126px;
        place-items: center;
        gap: 12px;
        padding: 22px;
        color: var(--white);
        text-align: center;
        border: 1px solid rgba(237, 28, 36, 0.24);
        background: rgba(255, 255, 255, 0.04);
        transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;

        &:hover {
            color: var(--white);
            border-color: rgba(255, 43, 53, 0.75);
            background: rgba(237, 28, 36, 0.18);
            transform: translateY(-3px);
        }

        & svg {
            width: 36px;
            height: 36px;
            fill: currentColor;
        }

        & span {
            font-family: var(--font-heading);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.07em;
        }
    }
}

.quote-modal {
    & .modal-content {
        color: var(--white);
        background:
            radial-gradient(circle at top right, rgba(237, 28, 36, 0.18), transparent 34%),
            linear-gradient(145deg, rgba(25, 9, 9, 0.98), rgba(0, 0, 0, 0.98));
        border: 1px solid rgba(237, 28, 36, 0.36);
        border-radius: 0;
        box-shadow: var(--shadow);
    }

    & .modal-header {
        border-bottom: 1px solid rgba(237, 28, 36, 0.22);
    }

    & .modal-title {
        color: var(--red-2);
        font-family: var(--font-heading);
        font-weight: 900;
        text-transform: uppercase;
        letter-spacing: 0.06em;
    }

    & .quote-modal-kicker {
        margin: 0 0 4px;
        color: var(--white);
        font-family: var(--font-elegant);
        font-size: 18px;
        font-weight: 700;
    }

    & .quote-number-display {
        margin: 5px 0 0;
        color: var(--muted);
        font-size: 14px;
    }

    & .quote-summary {
        margin-bottom: 22px;
        padding: 16px 18px;
        color: var(--muted);
        background: rgba(0, 0, 0, 0.46);
        border-left: 4px solid var(--red);

        & strong {
            color: var(--white);
        }
    }

    & .quote-success-message {
        padding: 28px;
        text-align: center;
        background: rgba(0, 0, 0, 0.52);
        border-left: 4px solid #41c46b;

        & h3 {
            color: var(--white);
            font-family: var(--font-heading);
            font-size: 26px;
            font-weight: 900;
            text-transform: uppercase;
        }

        & p {
            margin: 10px 0 0;
            color: var(--muted);
            font-family: var(--font-elegant);
            font-size: 22px;
            line-height: 1.45;
        }
    }
}

.site-footer {
    padding: 28px 0;
    color: rgba(255, 255, 255, 0.72);
    font-family: var(--font-heading);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    background: rgba(0, 0, 0, 0.94);
    border-top: 1px solid rgba(237, 28, 36, 0.22);

    & p {
        margin: 0;
    }
}

.back-to-top {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 50;
    display: none;
    width: 44px;
    height: 44px;
    color: var(--white);
    font-weight: 900;
    border: 0;
    border-radius: 50%;
    background: var(--red);
    box-shadow: var(--red-shadow);

    &.is-visible {
        display: grid;
        place-items: center;
    }
}

@media (max-width: 1199.98px) {
    .photo-slider {
        grid-auto-columns: calc((100% - 40px) / 3);
    }
}

@media (max-width: 991.98px) {
    .main-navbar {
        min-height: auto;
    }

    .navbar-logo {
        & img {
            width: 134px;
        }
    }

    .main-menu {
        gap: 4px;
        padding: 18px 0;
    }

    .social-links {
        justify-content: center;
        margin-left: 0 !important;
    }

    .hero-copy {
        max-width: 100%;
        padding: 24px 0 70px;
        text-align: center;
    }

    .hero-roles,
    .hero-actions {
        justify-content: center;
    }

    .release-banner {
        text-align: left;
    }

    .dj-image-wrap {
        min-height: 380px;
        padding-top: 30px;
    }

    .dj-image {
        max-height: 420px;
    }

    .brand-logo-panel-hero {
        width: min(100%, 560px);
        padding: 0;
    }

    .section-heading {
        justify-content: center;
        text-align: center;

        & span {
            display: none;
        }
    }

    .photo-slider-shell {
        grid-template-columns: 44px minmax(0, 1fr) 44px;
        gap: 10px;
    }

    .photo-slider-btn {
        width: 44px;
        height: 44px;
        font-size: 34px;
    }

    .large-social-links {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        min-height: auto;
    }

    .hero-copy {
        & h1 {
            font-size: 50px;
        }
    }

    .hero-roles {
        & span {
            font-size: 18px;
        }
    }

    .release-banner {
        width: 100%;
        padding: 14px 18px;

        & span {
            font-size: 20px;
        }

        & strong {
            font-size: 19px;
        }
    }

    .service-card,
    .media-feature,
    .info-panel,
    .estimate-panel,
    .contact-form-panel {
        padding: 26px;
    }

    .about-copy {
        & p {
            font-size: 18px;
        }
    }

    .photo-slider {
        grid-auto-columns: calc((100% - 20px) / 2);
    }

    .video-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575.98px) {
    .site-shell {
        width: 100%;
    }

    .navbar-logo {
        max-width: 152px;

        & img {
            width: 136px;
        }
    }

    .hero-copy {
        & h1 {
            font-size: 42px;
        }
    }

    .hero-kicker {
        font-size: 14px;
    }

    .section-heading {
        & h2 {
            font-size: 32px;
        }
    }

    .social-links {
        & a {
            width: 42px;
            height: 42px;
        }
    }

    .photo-slider-shell {
        grid-template-columns: 1fr;
    }

    .photo-slider {
        grid-auto-columns: 88%;
    }

    .photo-slider-btn {
        display: none;
    }
}

@media (max-width: 399.98px) {
    .navbar-logo {
        max-width: 110px;

        & img {
            width: 110px;
        }
    }

    .main-navbar {
        min-height: 62px;
    }

    .main-menu {
        gap: 2px;
        padding: 12px 0;

        & .nav-link {
            font-size: 11px;
            letter-spacing: 0.025em;
            padding-top: 6px;
            padding-bottom: 6px;
        }
    }

    .social-links {
        gap: 8px;
        padding: 8px 0;

        & a {
            width: 34px;
            height: 34px;
            border-radius: 9px;

            & svg {
                width: 17px;
                height: 17px;
            }
        }
    }

    .hero-copy {
        padding: 14px 0 44px;

        & h1 {
            font-size: 30px;
            line-height: 0.98;
            letter-spacing: -1px;
        }
    }

    .hero-kicker {
        font-size: 10px;
        letter-spacing: 0.04em;
    }

    .hero-roles {
        gap: 5px 8px;
        margin: 12px 0 18px;

        & span {
            font-size: 12px;
            letter-spacing: 0.02em;
        }
    }

    .release-banner {
        width: 100%;
        padding: 10px 12px;
        margin-bottom: 20px;
        border-left-width: 3px;

        & span {
            font-size: 14px;
            line-height: 1.25;
        }

        & strong {
            font-size: 11px;
            line-height: 1.35;
        }
    }

    .hero-actions {
        gap: 10px;

        & .btn {
            width: 100%;
            font-size: 11px;
            padding: 8px 10px;
            letter-spacing: 0.04em;
        }
    }

    .dj-image-wrap {
        min-height: 220px;
        padding-top: 16px;
    }

    .brand-logo-panel-hero {
        width: min(100%, 300px);
        padding: 0;
    }

    .services-strip,
    .about-section,
    .photos-section,
    .media-section,
    .contact-section,
    .estimate-section {
        padding: 38px 0;
    }

    .section-heading {
        margin-bottom: 20px;

        & h2 {
            font-size: 21px;
            letter-spacing: 0.035em;
        }
    }

    .service-card,
    .media-feature,
    .info-panel,
    .estimate-panel,
    .contact-form-panel {
        padding: 18px;
    }

    .service-card {
        & .service-number {
            font-size: 30px;
        }

        & h3 {
            font-size: 19px;
            line-height: 1.15;
        }

        & p {
            font-size: 13px;
            line-height: 1.55;
        }
    }

    .media-feature {
        & h3 {
            font-size: 19px;
            line-height: 1.15;
        }

        & p {
            font-size: 13px;
            line-height: 1.55;
        }
    }

    .about-copy {
        & h2 {
            font-size: 25px;
            line-height: 1.05;
        }

        & p {
            font-size: 14px;
            line-height: 1.55;
        }
    }

    .genre-tags {
        gap: 7px;
        margin-top: 20px;

        & span {
            font-size: 10px;
            padding: 6px 9px;
        }
    }

    .photo-slider {
        grid-auto-columns: 92%;
        gap: 14px;
        padding-bottom: 14px;
    }

    .estimate-result {
        & .estimate-total {
            font-size: 18px;
        }

        & .estimate-total-price {
            font-size: 26px;
        }

        & .book-this-quote {
            font-size: 18px;
        }
    }

    .info-panel {
        min-height: auto;

        & h2 {
            font-size: 19px;
            margin-bottom: 18px;
        }
    }

    .contact-panel {
        & p {
            font-size: 13px;
            line-height: 1.55;
            word-break: break-word;
        }
    }

    .large-social-links {
        gap: 12px;

        & a {
            min-height: 86px;
            padding: 14px;

            & svg {
                width: 25px;
                height: 25px;
            }

            & span {
                font-size: 11px;
                letter-spacing: 0.03em;
            }
        }
    }

    .site-footer {
        padding: 20px 0;
        font-size: 10px;
        line-height: 1.45;
        text-align: center;
        letter-spacing: 0.035em;

        & .text-md-end {
            text-align: center !important;
        }
    }

    .back-to-top {
        right: 14px;
        bottom: 14px;
        width: 36px;
        height: 36px;
        font-size: 13px;
    }
}

a {
    &:hover {
        transform: translateY(-3px);
    }
}

.genre-tags {
    & span {
        &:hover {
            font-size: 15px;
        }
    }
}

.video-grid {
    & .video-grid-item {
        width: 100%;
        overflow: hidden;
        border: 1px solid rgba(237, 28, 36, 0.24);
        background: rgba(0, 0, 0, 0.45);
        box-shadow: var(--shadow);

        & video {
            display: block;
            width: 100%;
            aspect-ratio: 16 / 10;
            object-fit: cover;
            background: #000;
        }
    }
}

.amazon-location-suggestions {
    position: absolute;
    z-index: 80;
    width: min(100%, 620px);
    margin-top: 4px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.96);
    border: 1px solid rgba(237, 28, 36, 0.42);
    box-shadow: var(--shadow);

    & .amazon-location-suggestion {
        display: block;
        width: 100%;
        padding: 12px 14px;
        color: var(--white);
        font-family: var(--font-body);
        font-size: 14px;
        text-align: left;
        background: transparent;
        border: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        cursor: pointer;

        &:hover,
        &:focus {
            color: var(--white);
            background: rgba(237, 28, 36, 0.24);
            outline: none;
        }

        &:last-child {
            border-bottom: 0;
        }
    }
}

.estimate-guests-wrap {
    & .estimate-guests-note {
        display: none;
        margin-top: 8px;
        padding: 10px 12px;
        color: var(--muted);
        font-family: var(--font-body);
        font-size: 13px;
        line-height: 1.5;
        background: rgba(0, 0, 0, 0.42);
        border-left: 3px solid #e3b33c;
    }

    &:focus-within {
        & .estimate-guests-note {
            display: block;
        }
    }

    & #estimate_guests:not(:placeholder-shown) + .estimate-guests-note {
        display: block;
    }
}

.thank-you-page {
    display: grid;
    min-height: 100vh;
    place-items: center;
    padding: 28px;
    color: var(--white);
    background:
        radial-gradient(circle at 50% 0%, rgba(237, 28, 36, 0.18), transparent 34%),
        linear-gradient(145deg, rgba(25, 9, 9, 0.98), rgba(0, 0, 0, 0.98));

    & .thank-you-card {
        width: min(760px, 100%);
        padding: 42px;
        text-align: center;
        background:
            radial-gradient(circle at top right, rgba(237, 28, 36, 0.14), transparent 34%),
            rgba(0, 0, 0, 0.62);
        border: 1px solid rgba(237, 28, 36, 0.34);
        box-shadow: var(--shadow);

        & img {
            width: min(260px, 80%);
            height: auto;
            margin-bottom: 28px;
        }

        & h1 {
            margin: 0 0 18px;
            color: var(--red-2);
            font-family: var(--font-heading);
            font-size: clamp(42px, 7vw, 78px);
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 0.04em;
        }

        & p {
            max-width: 620px;
            margin: 0 auto 16px;
            color: var(--muted);
            font-family: var(--font-elegant);
            font-size: 24px;
            font-weight: 600;
            line-height: 1.45;
        }

        & .hero-actions {
            margin-top: 28px;
        }
    }
}

@media (max-width: 575.98px) {
    .thank-you-page {
        padding: 18px;

        & .thank-you-card {
            padding: 28px 20px;

            & p {
                font-size: 18px;
            }
        }
    }
}
