@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Space+Grotesk:wght@500;600;700&display=swap');

:root {
    --bg: #080808;
    --card: #121212;
    --soft: #f4f4f0;
    --text: #f7f7f5;
    --muted: #a7a7a2;
    --ink: #111;
    --accent: #ff1616;
    --line: rgba(255,255,255,.11);
    --shadow: 0 24px 80px rgba(0,0,0,.18);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: 'DM Sans', Arial, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(1160px, 92%);
    max-width: 1160px;
    margin: auto;
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(8,8,8,.88);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--line);
}

.nav {
    height: 76px;
    display: flex;
    align-items: center;
    gap: 26px;
    position: relative;
}

/* Logo + company name */

.logo-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
    margin-right: auto;
}

.logo-brand img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    border-radius: 10px;
    flex-shrink: 0;
}

/* Company name and tagline */

.brand-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 0;
    line-height: 1;
    min-width: 0;
}

.brand-text strong {
    display: block;
    margin: 0;
    padding: 0;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: -0.5px;
    color: #ff1616;
    white-space: nowrap;
}

.brand-text small {
    display: block;
    margin: 0;
    padding: 0;
    font-family: 'DM Sans', Arial, sans-serif;
    font-size: 8px;
    font-weight: 500;
    line-height: 9px;
    letter-spacing: .5px;
    color: #ffffff;
    white-space: nowrap;
}

.brand {
    font-family: 'Space Grotesk';
    font-weight: 700;
    font-size: 22px;
    letter-spacing: -1px;
}

.brand span {
    color: var(--accent);
}

nav {
    display: flex;
    gap: 20px;
    align-items: center;
}

nav a,
.login-link {
    font-size: 14px;
    color: #cfcfcb;
}

nav a:hover,
.login-link:hover {
    color: #fff;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.menu-btn {
    display: none;
    background: none;
    border: 0;
    color: white;
    font-size: 26px;
    cursor: pointer;
}


/* =========================================================
   BUTTONS
========================================================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid transparent;
    padding: 13px 20px;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    font-size: 14px;
}

.btn-primary {
    background: var(--accent);
    color: #0b0b0b;
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 30px rgba(255,22,22,.18);
}

.btn-ghost {
    border-color: var(--line);
    color: #fff;
}

.btn-small {
    padding: 10px 14px;
}

.full {
    width: 100%;
}


/* =========================================================
   HERO
========================================================= */

.hero {
    min-height: 690px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero:before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at 78% 45%,
            rgba(255,22,22,.12),
            transparent 28%
        ),
        radial-gradient(
            circle at 20% 20%,
            rgba(255,255,255,.06),
            transparent 22%
        );
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 70px;
    align-items: center;
    position: relative;
}

.eyebrow {
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: 700;
    color: var(--accent);
}

h1,
h2,
h3,
h4 {
    font-family: 'Space Grotesk';
    line-height: 1.05;
    margin: 0 0 18px;
}

h1 {
    font-size: clamp(48px, 7vw, 86px);
    letter-spacing: -4px;
    max-width: 850px;
}

h1 span,
h2 span {
    color: var(--accent);
}

h2 {
    font-size: clamp(34px, 5vw, 56px);
    letter-spacing: -2px;
}

.lead {
    font-size: 18px;
    color: var(--muted);
    max-width: 650px;
}

.actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin: 30px 0;
}

.mini-stats {
    display: flex;
    gap: 34px;
    margin-top: 42px;
}

.mini-stats div {
    display: flex;
    flex-direction: column;
}

.mini-stats strong {
    font: 700 24px 'Space Grotesk';
}

.mini-stats span {
    color: var(--muted);
    font-size: 12px;
}

.hero-card {
    height: 520px;
    border: 1px solid var(--line);
    border-radius: 34px;
    background: linear-gradient(145deg,#1d1d1d,#090909);
    position: relative;
    display: grid;
    place-items: center;
    box-shadow: var(--shadow);
}

.record {
    width: min(360px,70vw);
    aspect-ratio: 1;
    border-radius: 50%;
    background:
        repeating-radial-gradient(
            circle,
            #080808 0 2px,
            #161616 3px 5px
        );
    box-shadow: 0 25px 80px rgba(0,0,0,.7);
    display: grid;
    place-items: center;
}

.record:before {
    content: "";
    position: absolute;
    width: 92px;
    height: 92px;
    border-radius: 50%;
    background: var(--accent);
}

.record-label {
    z-index: 2;
    text-align: center;
    color: #0a0a0a;
    font: 700 17px 'Space Grotesk';
    letter-spacing: 1px;
}

.record-label small {
    font-size: 8px;
}

.floating-card {
    position: absolute;
    bottom: 35px;
    left: 35px;
    background: rgba(255,255,255,.08);
    border: 1px solid var(--line);
    padding: 14px 16px;
    border-radius: 14px;
    font-size: 13px;
    backdrop-filter: blur(15px);
}

.dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    margin-right: 8px;
}


/* =========================================================
   SECTIONS
========================================================= */

.section {
    padding: 110px 0;
}

.section-dark {
    background: #101010;
}

.section-light {
    background: var(--soft);
    color: var(--ink);
}

.section-head {
    margin-bottom: 45px;
}

.section-head p {
    color: var(--muted);
    max-width: 600px;
}

.center {
    text-align: center;
}


/* =========================================================
   FEATURE CARDS
========================================================= */

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 16px;
}

.feature {
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255,255,255,.02);
}

.feature span {
    color: var(--accent);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1px;
}

.feature h3 {
    font-size: 23px;
    margin-top: 32px;
}

.feature p {
    color: var(--muted);
    font-size: 14px;
}

.feature.dark {
    background: #151515;
}


/* =========================================================
   SERVICES
========================================================= */

.service-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 14px;
}

.service {
    border: 1px solid var(--line);
    padding: 28px;
    border-radius: 20px;
    min-height: 260px;
    background: #151515;
    transition: .2s;
}

.service:hover {
    transform: translateY(-4px);
    border-color: rgba(255,22,22,.5);
}

.service > span {
    font-size: 32px;
    color: var(--accent);
}

.service h3 {
    margin-top: 32px;
}

.service p {
    color: var(--muted);
}

.service b {
    font-size: 13px;
}


/* =========================================================
   PLATFORMS
========================================================= */

.logo-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.logo-row span {
    padding: 20px 24px;
    border: 1px solid var(--line);
    border-radius: 14px;
    font-weight: 700;
    background: #101010;
}


/* =========================================================
   SPLIT / DASHBOARD PREVIEW
========================================================= */

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.dashboard-preview {
    background: #111;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 24px;
}

.preview-top {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid var(--line);
    padding-bottom: 18px;
    margin-bottom: 8px;
}

.status-pill {
    color: var(--accent);
    font-size: 11px;
}

.preview-row {
    display: flex;
    justify-content: space-between;
    padding: 20px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 14px;
}

.preview-row span {
    color: var(--muted);
}


/* =========================================================
   PAGE HERO
========================================================= */

.page-hero {
    padding: 130px 0 90px;
    background:
        radial-gradient(
            circle at 70% 30%,
            rgba(255,22,22,.09),
            transparent 25%
        );
}

.page-hero h1 {
    font-size: clamp(44px,6vw,72px);
    max-width: 950px;
}

.page-hero p {
    font-size: 18px;
    color: var(--muted);
    max-width: 680px;
}


/* =========================================================
   SERVICE LIST
========================================================= */

.service-list {
    display: grid;
    gap: 12px;
}

.service-list article {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 30px;
    padding: 40px 0;
    border-top: 1px solid var(--line);
}

.service-number {
    color: var(--accent);
    font: 700 20px 'Space Grotesk';
}


/* =========================================================
   ARTISTS / GALLERY / BLOG
========================================================= */

.artist-grid,
.gallery-grid,
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 18px;
}

.artist-card,
.blog-card,
.gallery-card {
    background: #111;
    border: 1px solid var(--line);
    border-radius: 20px;
    overflow: hidden;
}

.artist-photo {
    aspect-ratio: 4/4.5;
    background-size: cover;
    background-position: center;
}

.artist-body,
.blog-body,
.gallery-card > div {
    padding: 22px;
}

.artist-body > span,
.blog-body > span {
    color: var(--accent);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.artist-body p,
.blog-body p {
    color: var(--muted);
    font-size: 14px;
}

.artist-body a,
.blog-body a,
.gallery-card a,
.table-link {
    color: var(--accent);
    font-weight: 700;
    font-size: 13px;
}

.gallery-card img {
    aspect-ratio: 16/10;
    object-fit: cover;
}

.gallery-placeholder,
.blog-placeholder {
    aspect-ratio: 16/10;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg,#1a1a1a,#2a2a2a);
    font: 700 35px 'Space Grotesk';
    color: #555;
}

.empty-state {
    grid-column: 1/-1;
    text-align: center;
    border: 1px dashed var(--line);
    padding: 60px;
    border-radius: 20px;
    color: var(--muted);
}


/* =========================================================
   ABOUT
========================================================= */

.about-card {
    min-height: 400px;
    border-radius: 28px;
    border: 1px solid var(--line);
    background: linear-gradient(145deg,#1d1d1d,#0b0b0b);
    display: grid;
    place-items: center;
}

.big-note {
    font: 700 70px 'Space Grotesk';
    line-height: .8;
    transform: rotate(-7deg);
}

.big-note span {
    color: var(--accent);
}


/* =========================================================
   ARTICLE
========================================================= */

.article {
    max-width: 800px;
}

.article-image {
    border-radius: 20px;
    margin-bottom: 30px;
}


/* =========================================================
   CONTACT / FORMS
========================================================= */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.form-card {
    background: #111;
    border: 1px solid var(--line);
    padding: 28px;
    border-radius: 20px;
}

.form-card form {
    display: grid;
    gap: 16px;
}

.form-two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

label {
    display: grid;
    gap: 7px;
    font-size: 13px;
    font-weight: 600;
}

input,
textarea,
select {
    width: 100%;
    background: #0a0a0a;
    border: 1px solid var(--line);
    color: #fff;
    border-radius: 10px;
    padding: 13px;
    font: inherit;
}

select {
    appearance: auto;
}

.map-box {
    margin-top: 35px;
    border: 1px solid var(--line);
    border-radius: 18px;
    min-height: 180px;
    display: grid;
    place-items: center;
    text-align: center;
    color: var(--muted);
}

.success,
.flash {
    padding: 12px 14px;
    border-radius: 10px;
    margin-bottom: 18px;
    background: rgba(255,22,22,.1);
    color: var(--accent);
    border: 1px solid rgba(255,22,22,.2);
}

.flash.error {
    color: #ff9c9c;
    background: rgba(255,80,80,.08);
}


/* =========================================================
   AUTH
========================================================= */

.auth-wrap {
    min-height: calc(100vh - 76px);
    display: grid;
    place-items: center;
    padding: 60px 0;
}

.auth-wrap.wide {
    padding: 90px 0;
}

.auth-card {
    width: min(560px,92%);
    background: #111;
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 36px;
    box-shadow: var(--shadow);
}

.auth-card h1 {
    font-size: 44px;
    letter-spacing: -2px;
}

.auth-card form {
    display: grid;
    gap: 16px;
    margin-top: 25px;
}

.auth-foot {
    text-align: center;
    color: var(--muted);
    font-size: 13px;
}

.auth-foot a {
    color: var(--accent);
}


/* =========================================================
   DASHBOARD / ADMIN
========================================================= */

.dashboard {
    padding: 70px 0;
}

.dash-head {
    display: flex;
    justify-content: space-between;
    gap: 25px;
    align-items: end;
    margin-bottom: 35px;
}

.dash-head h1 {
    font-size: 48px;
}

.dash-stats {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 12px;
    margin-bottom: 35px;
}

.dash-stats > div {
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #111;
}

.dash-stats b {
    display: block;
    font: 700 30px 'Space Grotesk';
}

.dash-stats span {
    color: var(--muted);
    font-size: 13px;
}

.table-wrap {
    overflow: auto;
    border: 1px solid var(--line);
    border-radius: 18px;
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 750px;
    background: #101010;
}

th,
td {
    text-align: left;
    padding: 16px;
    border-bottom: 1px solid var(--line);
    font-size: 13px;
}

th {
    color: var(--muted);
    font-weight: 600;
}

.status {
    font-size: 11px;
    padding: 6px 9px;
    border-radius: 20px;
    background: #252525;
    color: #ddd;
}

.status.released,
.status.approved {
    background: rgba(255,22,22,.12);
    color: var(--accent);
}

.status.rejected {
    color: #ff9c9c;
}

.admin-title {
    margin: 55px 0 18px;
}

.detail-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 20px;
}

.detail-card {
    background: #111;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 30px;
}

.detail-card h1 {
    font-size: 48px;
}

.back {
    display: inline-block;
    margin-bottom: 25px;
    color: var(--accent);
}


/* =========================================================
   FOOTER
========================================================= */

.footer {
    border-top: 1px solid var(--line);
    padding: 70px 0 25px;
    background: #050505;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 35px;
}

.footer-grid > div {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.footer-grid p,
.footer-grid a {
    color: var(--muted);
    font-size: 13px;
}

.footer-grid h4 {
    font-size: 14px;
}

.footer-bottom {
    border-top: 1px solid var(--line);
    margin-top: 50px;
    padding-top: 20px;
    color: #666;
    font-size: 12px;
}

.footer .logo-brand img {
    width: 52px;
    height: 52px;
}


/* =========================================================
   TABLE / LONG TEXT SAFETY
========================================================= */

p,
td,
th,
label,
a {
    overflow-wrap: anywhere;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .container {
        width: min(94%,1160px);
    }

    .desktop-nav {
        display: none;
    }

    .nav-actions {
        display: none;
    }

    .menu-btn {
        display: block;
        margin-left: auto;
    }

    .nav {
        position: relative;
    }

    .menu-open .desktop-nav {
        display: flex;
        position: absolute;
        left: 0;
        right: 0;
        top: 76px;
        z-index: 100;
        background: #090909;
        padding: 20px;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        border-bottom: 1px solid var(--line);
        box-shadow: 0 20px 40px rgba(0,0,0,.4);
    }

    .menu-open .desktop-nav a {
        display: block;
        padding: 13px 4px;
        border-bottom: 1px solid var(--line);
    }

    .hero-grid,
    .split,
    .contact-grid,
    .detail-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 80px 0;
    }

    .hero-card {
        width: 100%;
        height: 420px;
    }

    .feature-grid,
    .service-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .artist-grid,
    .gallery-grid,
    .blog-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .dash-stats {
        grid-template-columns: repeat(2,1fr);
    }

    .footer-grid {
        grid-template-columns: 2fr 1fr;
    }

    .contact-grid {
        gap: 35px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .container {
        width: calc(100% - 30px);
        max-width: none;
    }

    .nav {
        height: 64px;
    }

    /* Header brand */

    .logo-brand {
        gap: 6px;
    }

    .logo-brand img {
        width: 40px;
        height: 40px;
    }

    .brand-text strong {
        font-size: 16px;
        line-height: 17px;
        letter-spacing: -.3px;
    }

    .brand-text small {
        font-size: 7px;
        line-height: 8px;
        letter-spacing: .35px;
    }

    .menu-btn {
        font-size: 25px;
    }

    /* Typography */

    h1 {
        font-size: clamp(38px,12vw,50px);
        letter-spacing: -2px;
        line-height: 1;
    }

    h2 {
        font-size: clamp(32px,9vw,44px);
        letter-spacing: -1.5px;
    }

    h3 {
        font-size: 21px;
    }

    .lead {
        font-size: 16px;
    }

    /* Hero */

    .hero {
        min-height: auto;
        padding: 65px 0;
    }

    .hero-grid {
        gap: 40px;
    }

    .hero-card {
        height: 320px;
        border-radius: 22px;
    }

    .record {
        width: min(230px,68vw);
    }

    .record:before {
        width: 65px;
        height: 65px;
    }

    .record-label {
        font-size: 13px;
    }

    .floating-card {
        left: 12px;
        right: 12px;
        bottom: 12px;
        padding: 11px 13px;
        font-size: 12px;
    }

    .mini-stats {
        gap: 20px;
        flex-wrap: wrap;
        margin-top: 30px;
    }

    .mini-stats strong {
        font-size: 21px;
    }

    /* Buttons */

    .actions {
        flex-direction: column;
        align-items: stretch;
        margin: 25px 0;
    }

    .actions .btn {
        width: 100%;
    }

    .btn {
        min-height: 46px;
    }

    /* Sections */

    .section {
        padding: 65px 0;
    }

    .section-head {
        margin-bottom: 30px;
    }

    .page-hero {
        padding: 75px 0 50px;
    }

    .page-hero h1 {
        font-size: 42px;
    }

    /* Cards */

    .feature-grid,
    .service-grid,
    .artist-grid,
    .gallery-grid,
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .feature,
    .service {
        padding: 22px;
    }

    .service {
        min-height: auto;
    }

    /* Split */

    .split {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    /* Service list */

    .service-list article {
        grid-template-columns: 45px 1fr;
        gap: 15px;
        padding: 25px 0;
    }

    /* Contact */

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .form-card {
        padding: 20px;
    }

    .form-two {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    input,
    textarea,
    select {
        font-size: 16px;
        min-height: 46px;
    }

    textarea {
        min-height: 130px;
    }

    /* Artist / Blog */

    .artist-body,
    .blog-body,
    .gallery-card > div {
        padding: 18px;
    }

    /* Dashboard */

    .dashboard {
        padding: 50px 0;
    }

    .dash-head {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
        margin-bottom: 28px;
    }

    .dash-head h1 {
        font-size: 38px;
    }

    .dash-stats {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .dash-stats > div {
        padding: 18px;
    }

    /* Tables */

    .table-wrap {
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    table {
        min-width: 700px;
    }

    th,
    td {
        padding: 13px 12px;
        white-space: nowrap;
    }

    /* Detail */

    .detail-grid {
        grid-template-columns: 1fr;
    }

    .detail-card {
        padding: 20px;
    }

    .detail-card h1 {
        font-size: 38px;
    }

    .admin-title {
        margin: 40px 0 15px;
    }

    /* Auth */

    .auth-wrap {
        min-height: calc(100vh - 64px);
        padding: 35px 0;
    }

    .auth-card {
        width: 100%;
        padding: 22px 18px;
        border-radius: 18px;
    }

    .auth-card h1 {
        font-size: 36px;
    }

    /* Footer */

    .footer {
        padding: 50px 0 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-grid > div:first-child {
        grid-column: auto;
    }

    .footer-bottom {
        margin-top: 35px;
        padding-top: 18px;
        text-align: center;
        line-height: 1.8;
    }

    .footer .logo-brand {
        justify-content: center;
    }

    .footer .logo-brand img {
        width: 48px;
        height: 48px;
    }

    /* About */

    .about-card {
        min-height: 280px;
    }

    .big-note {
        font-size: 45px;
    }

    /* Empty states */

    .empty-state {
        padding: 40px 20px;
    }

    /* Images */

    .article-image {
        border-radius: 14px;
    }

    /* Mobile links */

    nav a,
    .login-link,
    .table-link,
    .btn {
        -webkit-tap-highlight-color: transparent;
    }

    .table-link {
        display: inline-block;
        padding: 4px 0;
    }
}


/* =========================================================
   VERY SMALL PHONES
========================================================= */

@media (max-width: 380px) {

    .container {
        width: calc(100% - 24px);
    }

    .logo-brand {
        gap: 5px;
    }

    .logo-brand img {
        width: 37px;
        height: 37px;
    }

    .brand-text strong {
        font-size: 15px;
        line-height: 16px;
    }

    .brand-text small {
        font-size: 6.5px;
        line-height: 7px;
    }

    .brand {
        font-size: 17px;
    }

    h1 {
        font-size: 36px;
    }

    h2 {
        font-size: 30px;
    }

    .hero {
        padding: 50px 0;
    }

    .hero-card {
        height: 285px;
    }

    .record {
        width: 195px;
    }

    .auth-card {
        padding: 20px 15px;
    }

    .footer-grid {
        gap: 22px;
    }
}

/* FINAL EARTH DIGITAL MEDIA HEADER */
.site-header .logo-brand {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
}

.site-header .logo-brand img {
    width: 44px !important;
    height: 44px !important;
    object-fit: contain !important;
    flex-shrink: 0 !important;
}

.site-header .brand-text {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    gap: 0 !important;
    line-height: 1 !important;
    margin: 0 !important;
    padding: 0 !important;
}

.site-header .brand-text strong {
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    color: #ff1616 !important;
    -webkit-text-fill-color: #ff1616 !important;
    font-family: 'Space Grotesk', sans-serif !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    line-height: 1.05 !important;
    letter-spacing: -0.5px !important;
    white-space: nowrap !important;
}

.site-header .brand-text small {
    display: block !important;
    margin: 3px 0 0 0 !important;
    padding: 0 !important;
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    font-family: 'DM Sans', Arial, sans-serif !important;
    font-size: 11px !important;
    font-weight: 500 !important;
    line-height: 1.1 !important;
    letter-spacing: 0.4px !important;
    white-space: nowrap !important;
}

/* Mobile header */
@media (max-width: 600px) {
    .site-header .logo-brand {
        gap: 9px !important;
    }

    .site-header .logo-brand img {
        width: 42px !important;
        height: 42px !important;
    }

    .site-header .brand-text strong {
        font-size: 18px !important;
    }

    .site-header .brand-text small {
        font-size: 10px !important;
        margin-top: 3px !important;
    }
}

