@import url('https://fonts.googleapis.com/css2?family=Permanent+Marker&family=Poetsen+One&display=swap');

@font-face {
    font-family: animosa;
    src: url('../fonts/animosa.otf');
}

@font-face {
    font-family: 'Ragnarok';
    src: url('../fonts/Ragnarok.ttf') format('truetype');
}

@font-face {
    font-family: 'JMH Typewriter';
    src: url('../fonts/JMH Typewriter-Thin.ttf') format('truetype');
}

*,
*:before,
*:after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: clip;
}

body {
    overflow-x: hidden;
    font-family: Helvetica, sans-serif;
}

/* Header sits over the background image */
header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
}

/* No visible nav block */
nav {
    width: 100%;
    padding: 30px 8%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    background: transparent;
}

/* Logo top left */
.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 250px;
    width: auto;
    display: block;
}

/* Hamburger top right */
/* Hamburger button */
.menu-icon {
    width: 42px;
    height: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    z-index: 30;
    margin-top: 20px;
}

.menu-icon span {
    width: 100%;
    height: 3px;
    background-color: white;
    display: block;
    border-radius: 999px;
    transition: 0.3s ease;
}

/* Hamburger turns into X */
.menu-icon.active span:nth-child(1) {
    transform: translateY(14px) rotate(45deg);
}

.menu-icon.active span:nth-child(2) {
    opacity: 0;
}

.menu-icon.active span:nth-child(3) {
    transform: translateY(-14px) rotate(-45deg);
}

/* Dropdown menu */
.navi {
    position: absolute;
    top: 95px;
    right: 8%;
    display: flex;
    flex-direction: column;
    gap: 22px;
    list-style: none;

    background: rgba(20, 10, 10, 0.88);
    backdrop-filter: blur(10px);
    padding: 30px 38px;
    border-radius: 18px;

    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px);
    transition: 0.3s ease;
}

.navi.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.navi a {
    color: white;
    text-decoration: none;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: 0.25s ease;
}

.navi a:hover {
    color: #f3eadf;
    letter-spacing: 3px;
}

/* Home background */
#home {
    min-height: 100vh;

    background-image:
        linear-gradient(
            to right,
            #f3eadf 0%,
            rgba(243, 234, 223, 0.95) 18%,
            rgba(243, 234, 223, 0.75) 32%,
            rgba(243, 234, 223, 0.35) 48%,
            rgba(243, 234, 223, 0) 70%
        ),
        url("../img/backgroundhome.jpg");

    background-size: cover;
    background-position: center 20%;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 180px 25px 80px;
}

@media screen and (max-width: 700px) {

    #home {
        background-image:
            linear-gradient(
                rgba(255,255,255,0.35),
                rgba(255,255,255,0.35)
            ),
            linear-gradient(
                to right,
                #f3eadf 0%,
                rgba(243,234,223,.95) 25%,
                rgba(243,234,223,.70) 45%,
                rgba(243,234,223,.30) 70%,
                rgba(243,234,223,0) 100%
            ),
            url("../img/backgroundhome.jpg");

        background-size: cover;
        background-position: center;
    }

}

/* Hero content */
.mainP {
    max-width: 900px;
    color: #7A1C1C;
    text-align: left;
    margin-left: 8%;
    margin-right: auto;
    margin-top: 190px; 
}

.mainP {
        font-family: garamond, 'Times New Roman', Times, serif;
}

.mainP h1:last-of-type {
    margin-bottom: 40px;
    position: relative;

}

.mainP h1:last-of-type::after {
    content: "";
    display: block;
    width: 120px;          /* Length of the line */
    height: 4px;           /* Thickness */
    background: #8B0000;   /* Dark cherry red */
    margin-top: 40px;
    border-radius: 2px;
}

.mainP p {
    font-size: 20px;
    line-height: 1.6;
    margin-top: 24px;
    max-width: 520px;
        font-family: Arial, Helvetica, sans-serif;
}

/* Service button */
.mainP a {
    display: inline-block;
    margin-top: 30px;
    padding: 16px 32px;
    background: #7A1C1C;
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-family: Arial, Helvetica, sans-serif, sans-serif;
    font-size: 16px;
    transition: 0.25s ease;
}

.mainP a:hover {
    background: #991F1F;
    transform: translateY(-2px);
}

/* Footer */
/* Footer */
footer {
    background: black;
    color: white;
    padding: 70px 25px;
}

.footer-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
}

.footer-wave {
    width: 260px;
    max-width: 70%;
    height: auto;
    display: block;
}

.footer-social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 28px;
}

.footer-social img {
    width: 28px;
    height: auto;
    display: block;
}

/* Mobile */
@media screen and (max-width: 700px) {
    nav {
        padding: 20px;
    }

    .logo img {
        height: 85px;
    }

    .navi {
        top: 75px;
        right: 20px;
    }

    .footer-container {
        flex-direction: column;
        gap: 15px;
    }
}

.services-preview {
    background: #f3eadf;
    padding: 55px 8%;
    display: grid;

    /* Three cards instead of five */
    grid-template-columns: repeat(3, 1fr);

    gap: 8px;
}

.service-card {
    min-height: 430px;
    padding: 45px 28px 35px;
    background: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    color: #4a2727;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: 0.25s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.7);
}

.service-image {
    height: 95px;
    margin-bottom: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-image img {
    max-height: 95px;
    max-width: 95px;
    object-fit: contain;
}

.service-card h2 {
    font-family: Garamond, Georgia, serif;
    font-size: 26px;
    line-height: 1.1;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.service-line {
    width: 55px;
    height: 2px;
    background: #7A1C1C;
    margin-bottom: 28px;
}

.service-card p {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    line-height: 1.6;
    max-width: 240px;
}

.dark-card {
    background: #111;
    color: #f5eadf;
}

.dark-card:hover {
    background: #1d1d1d;
}

.dark-card .service-line {
    background: #f5eadf;
}

@media screen and (max-width: 900px) {
    .services-preview {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: 320px;
    }
}

/* =====================================================
   HOME — PROJECT CTA
===================================================== */

.home-cta {
    padding: 100px 24px;
    text-align: center;
    background: #f3eadf;
}

.home-cta h2 {
    margin: 0 0 20px;
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1;
    letter-spacing: -0.02em;
    color: #5d2c2c;
}

.home-cta p {
    max-width: 620px;
    margin: 0 auto 32px;
    font-size: 1rem;
    line-height: 1.7;
    color: #5d2c2c;
}

.home-cta a {
    display: inline-block;
    padding: 15px 28px;
    border: 1px solid #5d2c2c;
    color: #5d2c2c;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.08em;
    transition:
        background-color 0.25s ease,
        color 0.25s ease;
}

.home-cta a:hover,
.home-cta a:focus-visible {
    background: #5d2c2c;
    color: #f3eadf;
}


/* MOBILE */

@media screen and (max-width: 768px) {

    .home-cta {
        padding: 70px 20px;
    }

    .home-cta h2 {
        font-size: clamp(1.8rem, 9vw, 2.5rem);
    }

    .home-cta p {
        font-size: 0.95rem;
        margin-bottom: 26px;
    }

    .home-cta a {
        padding: 14px 22px;
    }
}

/* -------------------------------services------------------------------------- */

.services-page {
    display: flex;
    background: #f3eadf;
}

/* Left sidebar - desktop/laptop only */
.side-nav {
    width: 260px;
    min-height: 100vh;
    background: #f6eee5;
    padding: 55px 45px;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 20;
}

.side-nav img {
    width: 150px;
    margin-bottom: 45px;
}

.side-nav ul {
    list-style: none;
}

.side-nav li {
    margin-bottom: 26px;
}

.side-nav a {
    color: #5d2c2c;
    text-decoration: none;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* Hide old sidebar hamburger */
.side-menu-icon {
    display: none !important;
}

/* Sidebar bottom */
.side-nav-bottom {
    margin-top: 45px;
}

.side-line {
    width: 55px;
    height: 2px;
    background: #7A1C1C;
    margin: 28px 0;
}

.side-nav-bottom p {
    color: #4a2727;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    line-height: 1.7;
}

.side-social {
    display: flex;
    align-items: center;
    gap: 22px;
}

.side-social img {
    width: 22px;
    height: auto;
    display: block;
    filter: invert(1);
}

/* Main page */
.records-page {
    margin-left: 260px;
    width: calc(100% - 260px);
}

/* Hero */
.records-hero {
    min-height: 520px;
    background-image:
        linear-gradient(to right, rgba(0,0,0,.65), rgba(0,0,0,.1)),
        url("../img/backgroundhomegradient.jpg ");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 80px;
}

.records-hero-text {
    max-width: 520px;
    color: white;
}

.records-hero h1 {
    font-family: Garamond, Georgia, serif;
    font-size: 52px;
    line-height: 1.15;
    letter-spacing: 1px;
}

.hero-line {
    width: 70px;
    height: 2px;
    background: #7A1C1C;
    margin: 28px 0;
}

.records-hero p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 28px;
}

.red-button {
    display: inline-block;
    background: #7A1C1C;
    color: white;
    padding: 16px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    letter-spacing: 1.5px;
}

/* Content below hero */
.records-content {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 70px;
    padding: 55px 80px 80px;
}

.records-content h4 {
    color: #7A1C1C;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    letter-spacing: 4px;
    margin-bottom: 28px;
}

.about-label h2 {
    font-family: Garamond, Georgia, serif;
    font-size: 30px;
    margin-bottom: 25px;
}

.about-label p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 35px;
}

.about-label a {
    color: #7A1C1C;
    text-decoration: none;
    letter-spacing: 2px;
    font-size: 13px;
}

.release-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.release-card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    margin-bottom: 15px;
}

.release-card h3 {
    font-size: 14px;
    letter-spacing: 2px;
    color: #5d2c2c;
}

.release-card p {
    font-size: 13px;
    line-height: 1.6;
}

/* Top-right services hamburger */
.services-top-menu {
    position: fixed;
    top: 50px;
    left: 0;
    width: 100%;
    z-index: 9999;
    pointer-events: none;
}

.services-menu-icon {
    position: absolute;
    top: 0;
    right: 8%;
    width: 42px;
    height: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    pointer-events: auto;
}

.services-menu-icon span {
    width: 100%;
    height: 3px;
    background-color: white;
    display: block;
    border-radius: 999px;
    transition: 0.3s ease;
}

.services-menu-icon.active span:nth-child(1) {
    transform: translateY(14px) rotate(45deg);
}

.services-menu-icon.active span:nth-child(2) {
    opacity: 0;
}

.services-menu-icon.active span:nth-child(3) {
    transform: translateY(-14px) rotate(-45deg);
}

.services-menu {
    position: absolute;
    top: 65px;
    right: 8%;
    display: flex;
    flex-direction: column;
    gap: 22px;
    list-style: none;
    background: rgba(20, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    padding: 30px 38px;
    border-radius: 18px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-15px);
    transition: 0.3s ease;
}

.services-menu.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.services-menu li {
    margin: 0;
}

.services-menu a {
    color: white;
    text-decoration: none;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: 0.25s ease;
}

.services-menu a:hover {
    color: #f3eadf;
    letter-spacing: 3px;
}

/* Anything smaller than laptop: hide sidebar completely */
@media screen and (max-width: 1100px) {
    .services-page {
        display: block;
    }

    .side-nav {
        display: none;
    }

    .records-page {
        margin-left: 0;
        width: 100%;
    }

    .records-hero {
        padding: 120px 30px 70px;
    }

    .records-hero h1 {
        font-size: 38px;
    }

    .records-content {
        grid-template-columns: 1fr;
        padding: 45px 30px;
    }

    .release-grid {
        grid-template-columns: 1fr 1fr;
    }

    .services-top-menu {
        top: 30px;
    }

    .services-menu-icon {
        right: 30px;
    }

    .services-menu {
        top: 60px;
        right: 30px;
    }
}

/* Mobile */
@media screen and (max-width: 700px) {
    .records-hero {
        padding: 120px 25px 70px;
    }

    .release-grid {
        grid-template-columns: 1fr;
    }

    .services-top-menu {
        top: 25px;
    }

    .services-menu-icon {
        right: 20px;
        width: 38px;
        height: 30px;
    }

    .services-menu {
        top: 58px;
        right: 20px;
        max-width: calc(100vw - 40px);
    }
}


/* =====================================================
   RECORDS — RELEASE GRID PLACEHOLDERS
===================================================== */

.release-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px;
}

.release-card {
    appearance: none;
    border: 0;
    background: transparent;
    padding: 0;
    text-align: left;
    cursor: pointer;
    color: inherit;
    font: inherit;
}

.release-placeholder {
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e8ddd1;
    color: #5d2c2c;
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    margin-bottom: 14px;
}

.release-card h3 {
    margin: 0 0 6px;
}

.release-card p {
    margin: 0;
}

.release-card:focus-visible {
    outline: 2px solid #5d2c2c;
    outline-offset: 5px;
}

@media screen and (max-width: 1000px) {
    .release-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media screen and (max-width: 560px) {
    .release-grid {
        grid-template-columns: 1fr;
    }
}

/* =====================================================
   RECORDS — RELEASE MODAL
===================================================== */

.release-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
}

.release-modal.is-open {
    display: block;
}

.release-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
}

.release-modal-panel {
    position: relative;
    z-index: 1;
    width: min(1000px, calc(100% - 40px));
    max-height: calc(100vh - 60px);
    margin: 30px auto;
    overflow-y: auto;
    background: #f3eadf;
    color: #5d2c2c;
    padding: 36px;
}

.release-modal-close {
    position: absolute;
    top: 16px;
    right: 18px;
    border: 0;
    background: transparent;
    color: #5d2c2c;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
}

.release-modal-layout {
    display: grid;
    grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
    gap: 40px;
    align-items: start;
}

.release-modal-artwork .release-placeholder {
    width: 100%;
    margin: 0;
}

.release-modal-label {
    margin: 0 0 10px;
    font-size: 0.75rem;
    letter-spacing: 0.14em;
}

.release-modal-content h2 {
    margin: 0 0 8px;
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1;
}

.release-modal-artist {
    margin: 0 0 8px;
    font-size: 1.2rem;
    font-weight: 600;
}

.release-modal-meta {
    margin: 0 0 24px;
    font-size: 0.9rem;
    opacity: 0.75;
}

.release-modal-description {
    max-width: 620px;
    line-height: 1.7;
}

.release-track-list {
    margin-top: 32px;
}

.release-track-heading {
    margin-bottom: 16px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.release-track {
    padding-top: 16px;
    border-top: 1px solid rgba(93, 44, 44, 0.25);
}

.release-track span {
    display: block;
    margin-bottom: 10px;
}

.release-track audio {
    width: 100%;
}

@media screen and (max-width: 768px) {
    .release-modal-panel {
        width: calc(100% - 24px);
        max-height: calc(100vh - 24px);
        margin: 12px auto;
        padding: 50px 20px 24px;
    }

    .release-modal-layout {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .release-modal-artwork {
        max-width: 420px;
        margin: 0 auto;
        width: 100%;
    }
}

/* =====================================================
   RECORDS MODAL — CLOSE BUTTON POSITION FIX
===================================================== */

@media screen and (max-width: 1100px) {

    .release-modal-close {
        top: 18px;
        right: 18px;

        width: 44px;
        height: 44px;

        display: flex;
        align-items: center;
        justify-content: center;

        background: #5d2c2c;
        color: #f3eadf;

        border-radius: 50%;

        font-size: 1.7rem;
        line-height: 1;

        z-index: 10;
    }

    /* Leave room for the close button */
    .release-modal-panel {
        padding-top: 76px;
    }
}

/* -------------------------------sonic home------------------------------------- */

.sonic-page {
    min-height: 100vh;
    background: #0d0d0d;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
}

/* Header */
.sonic-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 35px 5%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    z-index: 1000;
}

.sonic-logo img {
    width: 220px;
    height: auto;
    display: block;
}

/* Desktop nav */
.sonic-desktop-nav ul {
    display: flex;
    align-items: center;
    gap: 42px;
    list-style: none;
}

.sonic-desktop-nav a {
    color: #f4f0ea;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: 0.25s ease;
}

.sonic-desktop-nav a:hover {
    color: #c49a5c;
}

.quote-button {
    border: 1px solid #c49a5c;
    color: #c49a5c !important;
    padding: 16px 26px;
}

/* Hero background */
.sonic-hero {
    min-height: 100vh;
    padding: 260px 5% 60px;
    background-image:
        linear-gradient(to right, rgba(0,0,0,0.94), rgba(0,0,0,0.62), rgba(0,0,0,0.88)),
        url("../img/sonicbackground.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.sonic-hero-content {
    max-width: 760px;
}

.sonic-hero h1 {
    font-family: Garamond, Georgia, serif;
    font-size: clamp(44px, 5vw, 76px);
    line-height: 1.08;
    color: #f7f3ee;
    margin-bottom: 28px;
}

.sonic-hero h1 span {
    color: #c49a5c;
}

.sonic-line {
    width: 78px;
    height: 2px;
    background: #c49a5c;
    margin-bottom: 34px;
}

.sonic-hero-content p {
    max-width: 620px;
    color: #c9c5c0;
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 40px;
}

.sonic-buttons {
    display: flex;
    gap: 26px;
    flex-wrap: wrap;
}

.sonic-button {
    display: inline-block;
    min-width: 210px;
    padding: 18px 30px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    border-radius: 3px;
    transition: 0.25s ease;
}

.sonic-button.filled {
    background: #c49a5c;
    color: #111;
}

.sonic-button.outline {
    border: 1px solid #c49a5c;
    color: #c49a5c;
}

.sonic-button:hover {
    transform: translateY(-2px);
}

/* Bottom service cards */
.sonic-service-row {
    margin-top: 90px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.sonic-service-card {
    text-align: center;
    padding: 0 42px;
    border-right: 1px solid rgba(255,255,255,0.14);
}

.sonic-service-card:last-child {
    border-right: none;
}

.sonic-service-card img {
    width: 88px;
    height: 88px;
    object-fit: contain;
    margin-bottom: 24px;
}

.sonic-service-card h2 {
    color: #f4f0ea;
    font-size: 16px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.sonic-service-card p {
    color: #b8b4af;
    font-size: 15px;
    line-height: 1.55;
}

/* Mobile hamburger */
.sonic-menu-icon {
    width: 42px;
    height: 32px;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    z-index: 1002;
}

.sonic-menu-icon span {
    width: 100%;
    height: 3px;
    background: white;
    border-radius: 999px;
    transition: 0.3s ease;
}

.sonic-menu-icon.active span:nth-child(1) {
    transform: translateY(14px) rotate(45deg);
}

.sonic-menu-icon.active span:nth-child(2) {
    opacity: 0;
}

.sonic-menu-icon.active span:nth-child(3) {
    transform: translateY(-14px) rotate(-45deg);
}

.sonic-mobile-menu {
    position: absolute;
    top: 95px;
    right: 5%;
    display: flex;
    flex-direction: column;
    gap: 22px;
    list-style: none;
    background: rgba(20, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    padding: 30px 38px;
    border-radius: 18px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-15px);
    transition: 0.3s ease;
}

.sonic-mobile-menu.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.sonic-mobile-menu a {
    color: white;
    text-decoration: none;
    font-size: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Anything smaller than laptop */
@media screen and (max-width: 1100px) {
    .sonic-desktop-nav {
        display: none;
    }

    .sonic-menu-icon {
        display: flex;
    }

    .sonic-header {
        padding: 28px 30px;
    }

    .sonic-logo img {
        width: 150px;
    }

    .sonic-hero {
        padding: 210px 30px 60px;
        background-position: center;
    }

    .sonic-service-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px 0;
    }

    .sonic-service-card:nth-child(2) {
        border-right: none;
    }
}

/* Mobile */
@media screen and (max-width: 700px) {
    .sonic-header {
        padding: 24px 20px;
    }

    .sonic-logo img {
        width: 115px;
    }

    .sonic-hero {
        padding: 175px 25px 50px;
    }

    .sonic-hero h1 {
        font-size: 42px;
    }

    .sonic-hero-content p {
        font-size: 16px;
    }

    .sonic-buttons {
        flex-direction: column;
    }

    .sonic-button {
        width: 100%;
    }

    .sonic-service-row {
        grid-template-columns: 1fr;
        margin-top: 70px;
        gap: 45px;
    }

    .sonic-service-card {
        border-right: none;
        padding: 0;
    }

    .sonic-mobile-menu {
        top: 75px;
        right: 20px;
        max-width: calc(100vw - 40px);
    }
}


/* =====================================================
   SONIC BUREAU — CTA
===================================================== */

.sonic-cta {
    padding: 100px 8%;
    background: #0d0d0d;
    color: #ffffff;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.sonic-cta-eyebrow {
    margin: 0 0 18px;
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    opacity: 0.7;
}

.sonic-cta h2 {
    margin: 0 0 24px;
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: 0.95;
    font-weight: 600;
}

.sonic-cta > p:not(.sonic-cta-eyebrow) {
    max-width: 620px;
    margin: 0 0 32px;
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
}

.sonic-cta a {
    display: inline-block;
    padding: 15px 24px;
    border: 1px solid #ffffff;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    transition:
        background 0.25s ease,
        color 0.25s ease;
}

.sonic-cta a:hover,
.sonic-cta a:focus-visible {
    background: #ffffff;
    color: #0d0d0d;
}

@media screen and (max-width: 768px) {
    .sonic-cta {
        padding: 70px 24px;
    }

    .sonic-cta h2 {
        font-size: clamp(2.2rem, 12vw, 3.6rem);
    }
}

/* =====================================================
   SONIC BUREAU — FOOTER
===================================================== */

.sonic-footer {
    background: #080808;
    color: #ffffff;
    padding: 45px 8%;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.sonic-footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.sonic-footer-logo img {
    display: block;
    width: 150px;
    height: auto;
}

.sonic-footer-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.sonic-footer-links a,
.sonic-footer-cta {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.sonic-footer-links a {
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.sonic-footer-links a:hover {
    opacity: 1;
}

.sonic-footer-cta {
    padding: 13px 18px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    transition:
        background 0.2s ease,
        color 0.2s ease;
}

.sonic-footer-cta:hover {
    background: #ffffff;
    color: #080808;
}


/* MOBILE */

@media screen and (max-width: 768px) {

    .sonic-footer {
        padding: 40px 24px;
    }

    .sonic-footer-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }

    .sonic-footer-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .sonic-footer-logo img {
        width: 130px;
    }
}

/* ----------------------mixing page -------------------- */
/* =========================================================
   CHERRY SOUND MIXING PAGE
========================================================= */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

body.service-detail-page {
    min-height: 100vh;
    overflow-x: hidden;
    background: #f3ede6;
    color: #372f2c;
    font-family: Arial, Helvetica, sans-serif;
}


/* =========================================================
   LEFT SIDEBAR
========================================================= */

.service-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 30;

    display: flex;
    flex-direction: column;

    width: 260px;
    height: 100vh;

    padding: 55px 20px 35px;

    background: rgba(250, 247, 242, 0.97);
    border-right: 1px solid rgba(92, 44, 44, 0.08);
}

.service-logo {
    display: block;
    width: 185px;
    margin: 0 auto 90px;
}

.service-logo img {
    display: block;
    width: 100%;
    height: auto;
}


/* =========================================================
   SIDEBAR NAVIGATION
========================================================= */

.service-navigation {
    display: grid;
    grid-template-columns: 1fr;
    gap: 9px;
}

.service-nav-link {
    display: grid;
    grid-template-columns: 42px 1fr;
    align-items: center;
    gap: 10px;

    min-height: 58px;
    padding: 12px 16px;

    color: #3f3834;
    text-decoration: none;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: 0.02em;

    border-radius: 3px;

    transition:
        background-color 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}

.service-nav-link:hover {
    background: rgba(110, 40, 40, 0.08);
    transform: translateX(3px);
}

.service-nav-link.active {
    color: #ffffff;
    background: #7d2d2e;
    box-shadow: 0 4px 12px rgba(82, 27, 28, 0.16);
}

.service-nav-symbol {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 32px;
    min-height: 32px;

    color: #a77979;
    font-size: 1.55rem;
    line-height: 1;
}

.service-nav-link.active .service-nav-symbol {
    color: #ffffff;
}

.service-nav-link .microphone {
    font-size: 1.8rem;
}

.service-nav-link .record-icon {
    font-size: 1.65rem;
}

.service-nav-link .waveform {
    transform: rotate(90deg);
}


/* =========================================================
   SMALL MIXER ICON IN SIDEBAR
========================================================= */

.mixer-icon {
    display: flex;
    align-items: center;
    justify-content: space-between;

    width: 31px;
    height: 30px;
}

.mixer-icon span {
    position: relative;
    display: block;

    width: 2px;
    height: 28px;

    background: currentColor;
}

.mixer-icon span::before {
    content: "";

    position: absolute;
    left: 50%;

    width: 7px;
    height: 7px;

    border: 2px solid currentColor;
    background: #7d2d2e;

    transform: translateX(-50%);
}

.mixer-icon span:nth-child(1)::before {
    top: 5px;
}

.mixer-icon span:nth-child(2)::before {
    top: 14px;
}

.mixer-icon span:nth-child(3)::before {
    top: 2px;
}

.service-nav-link.active .mixer-icon span::before {
    background: #7d2d2e;
}


/* =========================================================
   SOCIAL ICONS
========================================================= */

.service-socials {
    display: flex;
    align-items: center;
    gap: 29px;

    margin-top: auto;
    padding-left: 16px;
}

.service-socials a {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 24px;
    height: 24px;

    color: #7d2d2e;
    text-decoration: none;
}

.service-socials img {
    display: block;

    width: 20px;
    height: 20px;

    object-fit: contain;

    filter:
        brightness(0)
        saturate(100%)
        invert(20%)
        sepia(20%)
        saturate(2076%)
        hue-rotate(312deg)
        brightness(90%)
        contrast(91%);
}

.service-socials span {
    font-size: 1.05rem;
}


/* =========================================================
   MIXING PAGE HAMBURGER
   USES THE SAME CLASSES AS THE SONIC HOME PAGE
========================================================= */

.mixing-header {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1000;

    pointer-events: none;
}

.mixing-header .sonic-menu-icon {
    position: fixed;
    top: 42px;
    right: 34px;
    z-index: 1002;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    width: 42px;
    height: 32px;

    cursor: pointer;
    pointer-events: auto;
}

.mixing-header .sonic-menu-icon span {
    display: block;

    width: 100%;
    height: 3px;

    background: #f4f0ea;
    border-radius: 999px;

    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.45);

    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
}

.mixing-header .sonic-menu-icon.active span:nth-child(1) {
    transform: translateY(14px) rotate(45deg);
}

.mixing-header .sonic-menu-icon.active span:nth-child(2) {
    opacity: 0;
}

.mixing-header .sonic-menu-icon.active span:nth-child(3) {
    transform: translateY(-14px) rotate(-45deg);
}


/* =========================================================
   HAMBURGER DROPDOWN MENU
========================================================= */

.mixing-header .sonic-mobile-menu {
    position: fixed;
    top: 94px;
    right: 34px;
    z-index: 1001;

    display: flex;
    flex-direction: column;
    gap: 20px;

    width: 290px;

    margin: 0;
    padding: 30px 38px;

    list-style: none;

    background: rgba(42, 22, 21, 0.94);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;

    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.28);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transform: translateY(-15px);

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease,
        transform 0.3s ease;
}

.mixing-header .sonic-mobile-menu.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;

    transform: translateY(0);
}

.mixing-header .sonic-mobile-menu li {
    margin: 0;
    padding: 0;
}

.mixing-header .sonic-mobile-menu a {
    display: block;

    color: #ffffff;
    text-decoration: none;

    font-size: 14px;
    line-height: 1.3;
    letter-spacing: 2px;
    text-transform: uppercase;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

.mixing-header .sonic-mobile-menu a:hover {
    color: #c88f87;
    transform: translateX(4px);
}


/* =========================================================
   MAIN PAGE
========================================================= */

.service-main {
    min-height: 100vh;
    margin-left: 260px;
}

.service-hero {
    position: relative;

    display: flex;
    align-items: center;

    min-height: 100vh;

    overflow: hidden;
    background: #261c18;
}

.service-background-image {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;
}


/* =========================================================
   IMAGE FADE
========================================================= */

.service-image-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;

    background:
        linear-gradient(
            90deg,
            rgba(247, 243, 237, 1) 0%,
            rgba(247, 243, 237, 0.98) 12%,
            rgba(247, 243, 237, 0.88) 28%,
            rgba(247, 243, 237, 0.53) 46%,
            rgba(247, 243, 237, 0.08) 69%,
            rgba(15, 10, 8, 0.08) 100%
        );
}


/* =========================================================
   MAIN CONTENT
========================================================= */

.service-content {
    position: relative;
    z-index: 5;

    width: min(500px, 52%);
    margin-left: clamp(75px, 10vw, 150px);

    color: #302b28;
}

.service-content h1 {
    margin-top: 45px;

    color: #642c2d;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.7rem, 5vw, 4.1rem);
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.02em;
}

.service-title-line {
    width: 95px;
    height: 2px;

    margin: 39px 0 51px;

    background: #8b4c4c;
}

.service-content p {
    color: #34302e;

    font-size: clamp(1.05rem, 1.5vw, 1.5rem);
    font-weight: 500;
    line-height: 1.9;
}

.service-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 214px;
    min-height: 61px;

    margin-top: 47px;
    padding: 17px 30px;

    color: #ffffff;
    background: #7b2e2e;

    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.045em;

    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 3px;

    box-shadow: 0 5px 13px rgba(64, 24, 24, 0.16);

    transition:
        background-color 0.25s ease,
        transform 0.25s ease;
}

.service-button:hover {
    background: #592020;
    transform: translateY(-2px);
}


/* =========================================================
   LARGE MIXER ICON
========================================================= */

.large-mixer-icon {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    width: 142px;
    height: 137px;
}

.large-slider {
    position: relative;
    display: block;

    width: 3px;
    height: 132px;

    background: #784143;
}

.large-slider i {
    position: absolute;
    left: 50%;

    display: block;

    width: 20px;
    height: 22px;

    background: #f4ede5;
    border: 3px solid #784143;
    border-radius: 2px;

    transform: translateX(-50%);
}

.slider-one i {
    top: 39px;
}

.slider-two i {
    top: 60px;
}

.slider-three i {
    top: 16px;
}

.slider-four i {
    top: 48px;
}


/* =========================================================
   TABLET
========================================================= */

@media screen and (max-width: 1050px) {

    .service-sidebar {
        width: 225px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .service-logo {
        width: 165px;
        margin-bottom: 65px;
    }

    .service-main {
        margin-left: 225px;
    }

    .service-content {
        width: 60%;
        margin-left: 55px;
    }

    .service-image-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(247, 243, 237, 1) 0%,
                rgba(247, 243, 237, 0.94) 25%,
                rgba(247, 243, 237, 0.65) 48%,
                rgba(247, 243, 237, 0.15) 78%,
                rgba(15, 10, 8, 0.1) 100%
            );
    }

    .mixing-header .sonic-menu-icon {
        top: 28px;
        right: 30px;
    }

    .mixing-header .sonic-mobile-menu {
        top: 82px;
        right: 30px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media screen and (max-width: 768px) {

    body.service-detail-page {
        background: #f5eee7;
    }

    .service-sidebar {
        position: relative;

        width: 100%;
        height: auto;
        min-height: auto;

        padding: 28px 20px 20px;

        border-right: 0;
        border-bottom: 1px solid rgba(92, 44, 44, 0.1);
    }

    .service-logo {
        width: 145px;
        margin: 0 0 28px;
    }

.service-navigation {
    display: grid;
    grid-template-columns: 1fr;
    gap: 9px;
}

    .service-nav-link {
        grid-template-columns: 32px 1fr;

        min-height: 56px;
        padding: 10px;

        font-size: 0.73rem;
    }

    .service-socials {
        margin-top: 24px;
        padding-left: 5px;
    }

    .service-main {
        min-height: auto;
        margin-left: 0;
    }

    .service-hero {
        align-items: flex-end;

        min-height: 750px;
        padding: 80px 24px 65px;
    }

    .service-background-image {
        object-position: 62% center;
    }

    .service-image-overlay {
        background:
            linear-gradient(
                0deg,
                rgba(247, 243, 237, 1) 0%,
                rgba(247, 243, 237, 0.96) 42%,
                rgba(247, 243, 237, 0.5) 68%,
                rgba(19, 13, 10, 0.17) 100%
            );
    }

    .service-content {
        width: 100%;
        margin: 0;
    }

    .large-mixer-icon {
        width: 110px;
        height: 100px;
    }

    .large-slider {
        height: 96px;
    }

    .large-slider i {
        width: 17px;
        height: 19px;
    }

    .service-content h1 {
        margin-top: 30px;
        font-size: 2.7rem;
    }

    .service-title-line {
        margin: 28px 0 32px;
    }

    .service-content p {
        font-size: 1.05rem;
        line-height: 1.75;
    }

    .service-button {
        min-width: 190px;
        min-height: 55px;
        margin-top: 32px;
    }

    .mixing-header .sonic-menu-icon {
        top: 24px;
        right: 20px;

        width: 38px;
        height: 29px;
    }

    .mixing-header .sonic-menu-icon.active span:nth-child(1) {
        transform: translateY(13px) rotate(45deg);
    }

    .mixing-header .sonic-menu-icon.active span:nth-child(3) {
        transform: translateY(-13px) rotate(-45deg);
    }

    .mixing-header .sonic-mobile-menu {
        top: 75px;
        right: 20px;

        width: calc(100vw - 40px);
        max-width: 330px;

        padding: 28px 30px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media screen and (max-width: 480px) {

    .service-navigation {
        grid-template-columns: 1fr;
    }

    .service-nav-link {
        font-size: 0.82rem;
    }

    .service-hero {
        min-height: 700px;
    }

    .service-content h1 {
        font-size: 2.3rem;
    }

    .mixing-header .sonic-mobile-menu {
        width: calc(100vw - 30px);
        right: 15px;

        padding-left: 28px;
        padding-right: 28px;
    }
}


/* -----------------------------------------------------------------------------mixing extra css --------------------- */

/* =========================================================
   DYNAMIC SERVICE PAGE
========================================================= */


/* Keep hero changes smooth */
.service-background-image {
    transition:
        opacity 0.3s ease,
        transform 0.6s ease;
}


/* =========================================================
   DYNAMIC LARGE SERVICE ICON
========================================================= */

.dynamic-service-icon {
    width: 145px;
    min-height: 137px;

    display: flex;
    align-items: center;
    justify-content: flex-start;

    color: #784143;

    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
}


/* MASTERING ICON */

.large-mastering-icon {
    width: 137px;
    height: 137px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 8rem;
    font-weight: 300;
    line-height: 1;

    color: #784143;
}


/* RECORDING ICON */

.large-recording-icon {
    width: 137px;
    height: 137px;

    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;
}


/* microphone body */
.recording-mic-head {
    position: absolute;

    width: 48px;
    height: 82px;

    top: 5px;
    left: 44px;

    border: 4px solid #784143;
    border-radius: 30px;

    background: rgba(244, 237, 229, 0.25);
}


/* microphone lower curve */
.recording-mic-curve {
    position: absolute;

    top: 51px;
    left: 30px;

    width: 76px;
    height: 51px;

    border-left: 4px solid #784143;
    border-right: 4px solid #784143;
    border-bottom: 4px solid #784143;

    border-radius: 0 0 45px 45px;
}


/* microphone stand */
.recording-mic-stand {
    position: absolute;

    top: 99px;
    left: 66px;

    width: 4px;
    height: 27px;

    background: #784143;
}


/* microphone base */
.recording-mic-stand::after {
    content: "";

    position: absolute;

    width: 44px;
    height: 4px;

    left: 50%;
    bottom: 0;

    background: #784143;

    transform: translateX(-50%);
}


/* =========================================================
   ACTIVE HAMBURGER SERVICE
========================================================= */

.sonic-mobile-menu a.active-service {
    color: #c88f87;
}


/* =========================================================
   MOBILE ICON SIZE
========================================================= */

@media screen and (max-width: 768px) {

    .dynamic-service-icon {
        width: 110px;
        min-height: 100px;
    }

    .large-mastering-icon {
        width: 100px;
        height: 100px;
        font-size: 6rem;
    }

    .large-recording-icon {
        width: 100px;
        height: 100px;
        transform: scale(0.78);
        transform-origin: left center;
    }

}


/* =========================================================
   CHERRY SOUND — ABOUT PAGE
   ========================================================= */


/* -------------------------
   BASE
------------------------- */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #f5f4f0;
    color: #111;
    font-family: Arial, Helvetica, sans-serif;
    overflow-x: hidden;
}

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

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


/* -------------------------
   NAVIGATION
------------------------- */

.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

nav {
    width: 100%;
    min-height: 105px;
    padding: 28px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    position: relative;
    z-index: 1002;
}

.logo img {
    width: 150px;
    height: auto;
}

.menu-icon {
    width: 34px;
    height: 25px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    cursor: pointer;
    position: relative;
    z-index: 1002;
}

.navi {
    list-style: none;

    display: flex;
    align-items: center;
    gap: 35px;
}

.navi a {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.navi a:hover,
.navi a.active {
    opacity: 0.5;
}


/* -------------------------
   HERO
------------------------- */

.about-hero {
    min-height: 100vh;

    padding: 190px 6% 80px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    position: relative;

    border-bottom: 1px solid #aaa;
}

.about-hero-content {
    max-width: 1150px;
}

.eyebrow {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
    margin-bottom: 35px;
}

.about-hero h1 {
    font-size: clamp(70px, 10vw, 155px);
    line-height: 0.82;
    letter-spacing: -6px;
    font-weight: 800;
    margin-bottom: 60px;
}

.hero-description {
    max-width: 720px;

    font-size: clamp(18px, 2vw, 27px);
    line-height: 1.4;

    margin-bottom: 18px;
}

.scroll-note {
    position: absolute;
    right: 5%;
    bottom: 40px;
}

.scroll-note span {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
}


/* -------------------------
   SHARED SECTION ELEMENTS
------------------------- */

.section-label {
    border-top: 1px solid #9d9d9d;
    padding-top: 18px;
}

.section-label p {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
}


/* -------------------------
   INTRO
------------------------- */

.about-intro {
    padding: 100px 6% 130px;
}

.intro-content {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 8vw;

    margin-top: 80px;
}

.intro-content h2 {
    font-size: clamp(50px, 6vw, 95px);
    line-height: 0.95;
    letter-spacing: -4px;
}

.intro-copy {
    max-width: 620px;
}

.intro-copy p {
    font-size: 20px;
    line-height: 1.55;
    margin-bottom: 26px;
}


/* -------------------------
   DIVISIONS
------------------------- */

.divisions {
    width: 100%;
}

.division-card {
    min-height: 630px;

    display: grid;
    grid-template-columns: 90px minmax(300px, 1fr) minmax(300px, 0.9fr);
    gap: 4vw;

    padding: 90px 6%;

    border-top: 1px solid #aaa;

    transition:
        background 0.3s ease,
        color 0.3s ease;
}

.division-card:hover {
    background: #eceae5;
}

.division-number {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
}

.division-eyebrow {
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 25px;
}

.division-heading h2 {
    max-width: 700px;

    font-size: clamp(48px, 6vw, 96px);
    line-height: 0.9;
    letter-spacing: -4px;
}

.division-copy {
    align-self: center;
}

.division-copy p {
    font-size: 18px;
    line-height: 1.55;
    margin-bottom: 24px;
}

.text-link {
    display: inline-block;

    margin-top: 25px;
    padding-bottom: 7px;

    border-bottom: 1px solid currentColor;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;

    transition: opacity 0.2s ease;
}

.text-link span {
    margin-left: 8px;
}

.text-link:hover {
    opacity: 0.55;
}


/* Sonic Bureau gets its own identity without
   feeling like a completely different site. */

.sonic-card {
    background: #111;
    color: #f5f4f0;
}

.sonic-card:hover {
    background: #1b1b1b;
}

.light-link {
    color: #f5f4f0;
}





/* -------------------------
   FOUNDER
------------------------- */

.founder-section {
    background: #171717;
    color: #f5f4f0;

    padding: 110px 6% 140px;
}

.light-label {
    border-color: #555;
}

.founder-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 10vw;

    margin-top: 90px;
}

.founder-title h2 {
    font-size: clamp(52px, 6vw, 96px);
    line-height: 0.9;
    letter-spacing: -4px;

    position: sticky;
    top: 80px;
}

.founder-copy {
    max-width: 700px;
}

.founder-copy p {
    color: #d7d7d7;

    font-size: 18px;
    line-height: 1.65;

    margin-bottom: 28px;
}

.founder-copy .founder-lead {
    color: #fff;

    font-size: clamp(23px, 2.4vw, 34px);
    line-height: 1.35;

    margin-bottom: 45px;
}


/* -------------------------
   PHILOSOPHY
------------------------- */

.philosophy-section {
    padding: 110px 6% 140px;
}

.philosophy-header {
    display: grid;
    grid-template-columns: 1fr 0.7fr;
    gap: 10vw;

    margin: 80px 0 110px;
}

.philosophy-header h2 {
    font-size: clamp(55px, 7vw, 110px);
    line-height: 0.9;
    letter-spacing: -5px;
}

.philosophy-header > p {
    max-width: 550px;

    align-self: end;

    font-size: 20px;
    line-height: 1.55;
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    border-top: 1px solid #aaa;
    border-left: 1px solid #aaa;
}

.principle {
    min-height: 330px;

    padding: 45px;

    border-right: 1px solid #aaa;
    border-bottom: 1px solid #aaa;
}

.principle span {
    display: block;

    margin-bottom: 70px;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
}

.principle h3 {
    margin-bottom: 20px;

    font-size: 22px;
    letter-spacing: -0.5px;
}

.principle p {
    max-width: 470px;

    font-size: 16px;
    line-height: 1.55;
}


/* -------------------------
   EXPERIENCE NUMBERS
------------------------- */

.experience-band {
    background: #111;
    color: #f5f4f0;

    min-height: 330px;

    padding: 70px 6%;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.experience-item {
    padding: 30px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    border-right: 1px solid #444;
}

.experience-item:last-child {
    border-right: none;
}

.experience-number {
    font-size: clamp(65px, 8vw, 130px);
    font-weight: 800;
    line-height: 0.9;
    letter-spacing: -5px;
}

.experience-label {
    margin-top: 25px;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
}


/* -------------------------
   CTA
------------------------- */

.about-cta {
    padding: 140px 6%;
}

.about-cta h2 {
    max-width: 1100px;

    font-size: clamp(60px, 8vw, 125px);
    line-height: 0.86;
    letter-spacing: -6px;

    margin-bottom: 75px;
}

.cta-links {
    display: flex;
    gap: 45px;
    flex-wrap: wrap;
}

.cta-links a {
    padding-bottom: 8px;

    border-bottom: 1px solid #111;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.cta-links a:hover {
    opacity: 0.5;
}

.cta-links span {
    margin-left: 6px;
}


/* -------------------------
   FOOTER
------------------------- */

footer {
    background: #0e0e0e;
    color: #fff;

    padding: 70px 6% 30px;
}

.footer-content {
    min-height: 180px;

    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: start;
    gap: 60px;
}

.footer-brand img {
    width: 150px;

    /* Remove this if your logo is already white */
    filter: brightness(0) invert(1);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-links a:hover {
    opacity: 0.5;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social img {
    width: 25px;
    height: 25px;
    object-fit: contain;

    filter: brightness(0) invert(1);
}

.footer-bottom {
    padding-top: 25px;
    border-top: 1px solid #333;
}

.footer-bottom p {
    color: #777;

    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.5px;
}


/* -------------------------
   SIMPLE LOAD ANIMATION
------------------------- */

.fade-up {
    animation: fadeUp 0.8s ease forwards;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1000px) {

    .about-hero h1 {
        letter-spacing: -4px;
    }

    .intro-content,
    .founder-grid,
    .philosophy-header {
        grid-template-columns: 1fr;
    }

    .intro-content {
        gap: 50px;
    }

    .division-card {
        grid-template-columns: 50px 1fr;
    }

    .division-copy {
        grid-column: 2;
        max-width: 650px;
    }

    .founder-grid {
        gap: 60px;
    }

    .founder-title h2 {
        position: static;
    }

    .philosophy-header {
        gap: 45px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 768px) {

    /* Navigation assumes java.js adds/toggles .active
       on #nav-list as on your current homepage. */

    nav {
        min-height: 85px;
        padding: 22px 6%;
    }

    .logo img {
        width: 125px;
    }

    .navi {
        position: fixed;
        top: 0;
        right: -100%;

        width: 100%;
        height: 100vh;

        background: #111;
        color: #fff;

        flex-direction: column;
        justify-content: center;

        gap: 35px;

        transition: right 0.4s ease;

        z-index: 1001;
    }

    .navi.active {
        right: 0;
    }

    .navi a {
        font-size: 28px;
    }


    /* HERO */

    .about-hero {
        min-height: 90vh;
        padding: 150px 6% 90px;
    }

    .about-hero h1 {
        font-size: clamp(58px, 18vw, 90px);
        line-height: 0.86;
        letter-spacing: -4px;

        margin-bottom: 45px;
    }

    .hero-description {
        font-size: 17px;
    }

    .scroll-note {
        left: 6%;
        right: auto;
        bottom: 25px;
    }


    /* INTRO */

    .about-intro {
        padding: 75px 6% 90px;
    }

    .intro-content {
        margin-top: 55px;
    }

    .intro-content h2 {
        font-size: 48px;
        letter-spacing: -2.5px;
    }

    .intro-copy p {
        font-size: 17px;
    }


    /* DIVISIONS */

    .division-card {
        min-height: auto;

        display: block;

        padding: 70px 6%;
    }

    .division-number {
        margin-bottom: 55px;
    }

    .division-heading {
        margin-bottom: 45px;
    }

    .division-heading h2 {
        font-size: 52px;
        letter-spacing: -3px;
    }

    .division-copy p {
        font-size: 16px;
    }


    /* FOUNDER */

    .founder-section {
        padding: 80px 6% 100px;
    }

    .founder-grid {
        margin-top: 60px;
    }

    .founder-title h2 {
        font-size: 50px;
        letter-spacing: -3px;
    }

    .founder-copy .founder-lead {
        font-size: 23px;
    }

    .founder-copy p {
        font-size: 16px;
    }


    /* PHILOSOPHY */

    .philosophy-section {
        padding: 80px 6% 100px;
    }

    .philosophy-header {
        margin: 60px 0 75px;
    }

    .philosophy-header h2 {
        font-size: 52px;
        letter-spacing: -3px;
    }

    .philosophy-header > p {
        font-size: 17px;
    }

    .principles-grid {
        grid-template-columns: 1fr;
    }

    .principle {
        min-height: auto;
        padding: 35px 30px 45px;
    }

    .principle span {
        margin-bottom: 45px;
    }


    /* EXPERIENCE */

    .experience-band {
        grid-template-columns: 1fr;
        padding: 40px 6%;
    }

    .experience-item {
        min-height: 190px;

        padding: 35px 0;

        border-right: 0;
        border-bottom: 1px solid #444;
    }

    .experience-item:last-child {
        border-bottom: 0;
    }


    /* CTA */

    .about-cta {
        padding: 100px 6%;
    }

    .about-cta h2 {
        font-size: 53px;
        letter-spacing: -3px;

        margin-bottom: 55px;
    }

    .cta-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
    }


    /* FOOTER */

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .about-hero h1 {
        font-size: 54px;
        letter-spacing: -3px;
    }

    .intro-content h2,
    .division-heading h2,
    .founder-title h2,
    .philosophy-header h2,
    .about-cta h2 {
        font-size: 43px;
        letter-spacing: -2px;
    }

}

/* =========================================================
   ABOUT PAGE — HERO
   ========================================================= */

.about-page .about-hero {
    width: 100%;
    min-height: 100vh;

    background: #111;
    color: #fff;

    padding: 190px 6% 70px;

    display: flex;
    align-items: center;

    position: relative;

    border-bottom: 1px solid #333;
}


/* Main hero container */

.about-page .about-hero-content {
    width: 100%;
    max-width: 1400px;
}


/* Small text above headline */

.about-page .about-hero-eyebrow {
    margin-bottom: 35px;

    color: #bcbcbc;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
}


/* Main headline */

.about-page .about-hero h1 {
    margin: 0;

    color: #fff;

    font-size: clamp(72px, 10vw, 155px);
    font-weight: 800;

    line-height: 0.84;
    letter-spacing: -6px;
}


/* Text underneath headline */

.about-page .about-hero-bottom {
    max-width: 1050px;

    margin-top: 70px;

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 70px;
}


/* Hero paragraphs */

.about-page .about-hero-description {
    margin: 0;

    color: #d2d2d2;

    font-size: clamp(17px, 1.5vw, 21px);
    line-height: 1.55;
}


/* Small Denver text */

.about-page .about-hero-location {
    position: absolute;

    right: 6%;
    bottom: 35px;

    color: #777;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
}


/* =========================================================
   IMPORTANT:
   THE NEXT SECTION RETURNS TO LIGHT
   ========================================================= */

.about-page .about-intro {
    background: #f5f4f0;
    color: #111;
}


/* =========================================================
   ABOUT HERO — MOBILE
   ========================================================= */

@media screen and (max-width: 768px) {

    .about-page .about-hero {
        min-height: 100vh;

        padding:
            145px
            6%
            80px;

        align-items: center;
    }


    .about-page .about-hero-eyebrow {
        margin-bottom: 30px;

        font-size: 10px;
        letter-spacing: 2px;
    }


    .about-page .about-hero h1 {
        font-size: clamp(58px, 18vw, 90px);

        line-height: 0.86;
        letter-spacing: -4px;
    }


    .about-page .about-hero-bottom {
        margin-top: 50px;

        grid-template-columns: 1fr;
        gap: 22px;
    }


    .about-page .about-hero-description {
        max-width: 550px;

        font-size: 16px;
        line-height: 1.5;
    }


    .about-page .about-hero-location {
        left: 6%;
        right: auto;
        bottom: 25px;
    }

}

/* About page dark hero */
.about-page .about-hero {
    background: #111;
    color: #fff;
}

/* White logo */
.about-page .logo img {
    filter: brightness(0) invert(1);
}



/* ====================================================================================================
   CONTACT PAGE
   ========================================================= */

.contact-page {
    background: #f5f4f0;
    color: #111;
}


/* ===========================================================================
   CONTACT HERO
   ========================================================= */

.contact-page .contact-hero {
    min-height: 100vh;

    background: #111;
    color: #fff;

    padding: 190px 6% 70px;

    display: flex;
    align-items: center;

    position: relative;

    border-bottom: 1px solid #333;
}


.contact-page .contact-hero-content {
    width: 100%;
    max-width: 1400px;
}


.contact-page .contact-eyebrow {
    margin-bottom: 35px;

    color: #bcbcbc;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
}


.contact-page .contact-hero h1 {
    margin: 0;

    color: #fff;

    font-size: clamp(72px, 10vw, 155px);
    font-weight: 800;

    line-height: 0.84;
    letter-spacing: -6px;
}


.contact-page .contact-hero-copy {
    max-width: 1050px;

    margin-top: 70px;

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 70px;
}


.contact-page .contact-hero-copy p {
    margin: 0;

    color: #d2d2d2;

    font-size: clamp(17px, 1.5vw, 21px);
    line-height: 1.55;
}


.contact-page .contact-location {
    position: absolute;

    right: 6%;
    bottom: 35px;

    color: #777;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
}


/* White logo on dark Contact hero */

.contact-page .logo img {
    filter: brightness(0) invert(1);
}


/* =========================================================
   CONTACT DETAILS
   ========================================================= */

.contact-page .contact-details {
    background: #f5f4f0;
    color: #111;

    padding: 110px 6% 130px;
}


.contact-page .contact-section-label {
    padding-top: 18px;

    border-top: 1px solid #aaa;
}


.contact-page .contact-section-label p {
    margin: 0;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
}


.contact-page .contact-details-grid {
    margin-top: 80px;

    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 10vw;
}


.contact-page .contact-details-heading h2 {
    margin: 0;

    font-size: clamp(50px, 6vw, 95px);
    line-height: 0.92;
    letter-spacing: -4px;
}


.contact-page .contact-info-list {
    border-top: 1px solid #aaa;
}


.contact-page .contact-info-item {
    min-height: 120px;

    padding: 25px 0;

    display: grid;
    grid-template-columns: 55px 1fr;
    align-items: center;
    gap: 25px;

    border-bottom: 1px solid #aaa;

    transition: opacity 0.2s ease;
}


.contact-page .contact-info-item:hover {
    opacity: 0.55;
}


.contact-page .contact-info-icon img {
    width: 28px;
    height: 28px;

    object-fit: contain;
}


.contact-page .contact-info-text {
    display: flex;
    flex-direction: column;
    gap: 7px;
}


.contact-page .contact-info-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;

    color: #777;
}


.contact-page .contact-info-value {
    font-size: 20px;
    line-height: 1.3;
}


/* =========================================================
   CONTACT FORM SECTION
   ========================================================= */

.contact-page .contact-form-section {
    background: #fff;
    color: #111;

    padding: 110px 6% 140px;

    border-top: 1px solid #aaa;
}


.contact-page .contact-form-grid {
    margin-top: 80px;

    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 10vw;
}


.contact-page .contact-form-intro h2 {
    margin: 0 0 35px;

    font-size: clamp(48px, 5vw, 80px);
    line-height: 0.95;
    letter-spacing: -3px;
}


.contact-page .contact-form-intro p {
    max-width: 500px;

    margin-bottom: 22px;

    color: #444;

    font-size: 17px;
    line-height: 1.6;
}


/* =========================================================
   FORM
   ========================================================= */

.contact-page .fcf-body {
    width: 100%;
}


.contact-page #fcf-form {
    width: 100%;
}


.contact-page .fcf-form-group {
    margin-bottom: 32px;
}


.contact-page .fcf-label {
    display: block;

    margin-bottom: 10px;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}


.contact-page .fcf-form-control {
    width: 100%;

    padding: 15px 0;

    background: transparent;

    border: none;
    border-bottom: 1px solid #777;
    border-radius: 0;

    color: #111;

    font-family: inherit;
    font-size: 18px;

    outline: none;

    transition: border-color 0.2s ease;
}


.contact-page .fcf-form-control:focus {
    border-bottom-color: #111;
}


.contact-page textarea.fcf-form-control {
    resize: vertical;

    min-height: 160px;
}


.contact-page .fcf-btn {
    margin-top: 20px;

    padding: 18px 28px;

    background: #111;
    color: #fff;

    border: 1px solid #111;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;

    cursor: pointer;

    transition:
        background 0.2s ease,
        color 0.2s ease;
}


.contact-page .fcf-btn:hover {
    background: transparent;
    color: #111;
}


.contact-page .fcf-btn span {
    margin-left: 8px;
}


/* =========================================================
   CONTACT MOBILE
   ========================================================= */

@media screen and (max-width: 768px) {

    .contact-page .contact-hero {
        min-height: 100vh;

        padding:
            145px
            6%
            80px;
    }


    .contact-page .contact-hero h1 {
        font-size: clamp(58px, 18vw, 90px);

        line-height: 0.86;
        letter-spacing: -4px;
    }


    .contact-page .contact-hero-copy {
        margin-top: 50px;

        grid-template-columns: 1fr;
        gap: 22px;
    }


    .contact-page .contact-location {
        left: 6%;
        right: auto;

        bottom: 25px;
    }


    .contact-page .contact-details {
        padding: 80px 6% 100px;
    }


    .contact-page .contact-details-grid {
        grid-template-columns: 1fr;

        gap: 60px;

        margin-top: 60px;
    }


    .contact-page .contact-details-heading h2 {
        font-size: 48px;
        letter-spacing: -3px;
    }


    .contact-page .contact-info-item {
        grid-template-columns: 45px 1fr;

        gap: 18px;
    }


    .contact-page .contact-info-value {
        font-size: 17px;
    }


    .contact-page .contact-form-section {
        padding: 80px 6% 100px;
    }


    .contact-page .contact-form-grid {
        grid-template-columns: 1fr;

        gap: 60px;

        margin-top: 60px;
    }


    .contact-page .contact-form-intro h2 {
        font-size: 46px;
        letter-spacing: -2.5px;
    }

}


/* =========================================================
   AUDIO SERVICES — MOBILE MAIN MENU FIX
========================================================= */

@media screen and (max-width: 768px) {

    .service-detail-page header {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        pointer-events: none;
    }

    .service-detail-page header nav {
        padding: 20px;
        min-height: 85px;
        justify-content: flex-end;
    }

    /* Hide duplicate main header logo on Audio Services */
    .service-detail-page header .logo {
        display: none;
    }

    /* Keep hamburger visible in top-right */
    .service-detail-page .menu-icon {
        display: flex;
        position: fixed;
        top: 24px;
        right: 20px;
        width: 34px;
        height: 25px;
        margin: 0;
        z-index: 1100;
        pointer-events: auto;
    }


    /* -------------------------------service navigation add on ------------------ */
    /* Dark bars because Audio Services has a light background */
    .service-detail-page .menu-icon span {
        display: block;
        width: 100%;
        height: 3px;
        background: #5d2c2c;
        border-radius: 999px;
    }

    .service-detail-page .navi {
        pointer-events: auto;
        z-index: 1050;
    }

}

/* =====================================================
   RECORDS MODAL — KEEP ABOVE NAVIGATION
===================================================== */

.release-modal {
    z-index: 99999;
}

.release-modal-backdrop {
    z-index: 1;
}

.release-modal-panel {
    z-index: 2;
}

.release-modal-close {
    z-index: 3;
}

/* ABOUT HERO — SUPPORTING LINE */

.about-hero-subline {
    max-width: 760px;
    margin: 35px 0 0;
    padding: 0;

    background: transparent;
    color: #d2d2d2;

    font-size: clamp(17px, 1.5vw, 21px);
    line-height: 1.55;
    font-weight: 400;
}

@media screen and (max-width: 768px) {
    .about-hero-subline {
        max-width: 100%;
        margin-top: 25px;
        font-size: 16px;
    }
}

/* =====================================================
   RECORDS — TABLET / MOBILE HERO SPACING
===================================================== */

@media screen and (max-width: 1000px) {

    .records-hero {
        padding-top: 190px;
    }
}

/* =====================================================
   CONTACT — TABLET / MOBILE GET IN TOUCH FIX
===================================================== */

@media screen and (max-width: 900px) {

    .contact-page .contact-details-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 55px;
        width: 100%;
    }

    .contact-page .contact-details-heading {
        width: 100%;
    }

    .contact-page .contact-info-list {
        width: 100%;
        max-width: none;
    }

    .contact-page .contact-info-item {
        display: block;
        width: 100%;
        min-height: auto;
        padding: 28px 0;
    }

    .contact-page .contact-info-text {
        display: block;
        width: 100%;
        max-width: none;
    }

    .contact-page .contact-info-label {
        display: block;
        margin-bottom: 12px;
    }

    .contact-page .contact-info-value {
        display: block;
        width: 100%;
        max-width: none;
        font-size: 17px;
        line-height: 1.5;
        white-space: normal;
    }

    .contact-page .fcf-form-group {
        margin-bottom: 32px;
    }
}

/* CONTACT — PROJECT INQUIRY WIDTH FIX */

.contact-page .contact-info-item {
    grid-template-columns: 1fr;
    gap: 0;
}

.contact-page .contact-info-text {
    width: 100%;
    max-width: none;
}

.contact-page .contact-info-value {
    width: 100%;
    max-width: none;
}

/* =====================================================
   SONIC BUREAU — SPACE BEFORE CTA
===================================================== */

.sonic-cta {
    margin-top: 80px;
}

@media screen and (max-width: 768px) {
    .sonic-cta {
        margin-top: 60px;
    }
}

/* =====================================================
   404 PAGE
===================================================== */

.error-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 24px 80px;
    background: #0d0d0d;
    color: #ffffff;
    text-align: center;
}

.error-content {
    width: min(820px, 100%);
}

.error-code {
    margin: 0 0 20px;
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    opacity: 0.55;
}

.error-content h1 {
    margin: 0;
    font-size: clamp(3rem, 9vw, 7rem);
    line-height: 0.9;
}

.error-message {
    max-width: 560px;
    margin: 30px auto 0;
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
}

.error-actions {
    margin-top: 38px;
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.error-actions a {
    display: inline-block;
    padding: 15px 24px;
    border: 1px solid #ffffff;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    transition:
        background 0.2s ease,
        color 0.2s ease;
}

.error-actions a:hover,
.error-actions a:focus-visible {
    background: #ffffff;
    color: #0d0d0d;
}

@media screen and (max-width: 768px) {
    .error-page {
        padding: 100px 20px 60px;
    }

    .error-content h1 {
        font-size: clamp(2.8rem, 15vw, 5rem);
    }

    .error-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .error-actions a {
        width: 100%;
    }
}

/* =====================================================
   ACCESSIBILITY — REDUCED MOTION
===================================================== */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* =====================================================
   ACCESSIBILITY — KEYBOARD FOCUS
===================================================== */

a:focus-visible,
button:focus-visible,
select:focus-visible,
input:focus-visible,
textarea:focus-visible,
[role="button"]:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 4px;
}


/* =====================================================
   ACCESSIBILITY — SKIP LINK
===================================================== */

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 999999;

    padding: 12px 16px;

    background: #ffffff;
    color: #000000;

    text-decoration: none;

    transform: translateY(-150%);
    transition: transform 0.2s ease;
}

.skip-link:focus {
    transform: translateY(0);
}