:root {
    --olive: #59633f;
    --olive-dark: #3f472d;
    --cream: #eee9dc;
    --charcoal: #171817;
    --gold: #b59a58;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: var(--charcoal);
    color: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

/* HEADER */

.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 18px 0;

    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.68),
        rgba(0, 0, 0, 0)
    );
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;
    align-items: center;
}

.brand img {
    width: 105px;
    height: auto;
    display: block;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 38px;
}

.main-nav a {
    color: white;
    font-size: 0.98rem;
    font-weight: 700;
    transition: 0.2s ease;
}

.main-nav a:hover {
    color: var(--gold);
}

.nav-cta {
    background: var(--olive);
    padding: 15px 24px;
    border-radius: 3px;
}

.nav-cta:hover {
    color: white !important;
    background: var(--olive-dark);
}


/* HERO */

.hero {
    position: relative;

    min-height: 875px;

    display: flex;
    align-items: center;

    background:
        url("../img/gym-hero.png")
        center center / cover
        no-repeat;

    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(5, 6, 5, 0.98) 0%,
            rgba(5, 6, 5, 0.93) 22%,
            rgba(5, 6, 5, 0.68) 48%,
            rgba(5, 6, 5, 0.18) 78%,
            rgba(5, 6, 5, 0.08) 100%
        );
}

.hero-content {
    position: relative;
    z-index: 2;

    padding-top: 100px;
}

.hero-kicker {
    color: var(--gold);

    font-size: 1rem;
    font-weight: 800;

    letter-spacing: 4px;

    margin-bottom: 24px;
}

.hero h1 {
    color: white;

    font-size: clamp(4.5rem, 7vw, 7.8rem);
    line-height: 0.92;

    font-weight: 900;

    letter-spacing: -4px;

    max-width: 800px;
}

.hero-text {
    max-width: 620px;

    margin-top: 28px;

    font-size: 1.25rem;
    line-height: 1.6;

    color: rgba(255, 255, 255, 0.9);
}

.hero-actions {
    display: flex;
    gap: 18px;

    margin-top: 38px;
}


/* BUTTONS */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 60px;

    padding: 0 30px;

    border-radius: 3px;

    font-size: 1rem;
    font-weight: 800;

    transition: 0.2s ease;
}

.btn-primary {
    background: var(--olive);
    color: white;
}

.btn-primary:hover {
    background: var(--olive-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    border: 1px solid rgba(255, 255, 255, 0.55);

    color: white;

    background: rgba(0, 0, 0, 0.15);
}

.btn-secondary:hover {
    border-color: white;

    background: rgba(255, 255, 255, 0.08);

    transform: translateY(-2px);
}


/* FACTS */

.facts {
    background: var(--cream);
    color: var(--charcoal);

    padding: 32px 0;
}

.facts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.fact {
    position: relative;

    display: flex;
    flex-direction: column;
    align-items: center;

    text-align: center;

    padding: 8px 30px;
}

.fact:not(:last-child)::after {
    content: "";

    position: absolute;
    right: 0;
    top: 12%;

    width: 1px;
    height: 76%;

    background: rgba(0, 0, 0, 0.16);
}

.fact-icon {
    height: 35px;

    margin-bottom: 4px;

    color: var(--olive);

    font-size: 2.1rem;
    font-weight: 800;
}

.fact strong {
    display: block;

    color: var(--charcoal);

    font-size: 2rem;
    font-weight: 900;

    margin-top: 4px;
}

.fact span {
    margin-top: 4px;

    font-size: 0.9rem;
    font-weight: 500;
}

/* STUDIO */

.studio-section {
    padding: 120px 0;
    background: #111310;
    color: white;
}

.studio-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 90px;
    align-items: center;
}

.section-kicker {
    margin-bottom: 18px;

    color: var(--gold);

    font-size: 0.85rem;
    font-weight: 800;

    letter-spacing: 3px;
}

.studio-content h2 {
    font-size: clamp(3rem, 5vw, 5.3rem);
    line-height: 0.95;

    font-weight: 900;
    letter-spacing: -3px;

    margin-bottom: 28px;
}

.studio-lead {
    max-width: 500px;

    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.5;

    margin-bottom: 18px;
}

.studio-text {
    max-width: 540px;

    color: #aaa;

    line-height: 1.8;
    font-size: 1rem;
}

.studio-features {
    margin-top: 40px;

    display: flex;
    flex-direction: column;

    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.studio-feature {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding: 18px 0;

    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.studio-feature strong {
    color: var(--cream);
    font-size: 1.05rem;
}

.studio-feature span {
    color: #888;
    font-size: 0.9rem;
}


/* STUDIO IMAGE */

.studio-visual {
    position: relative;
}

.studio-image {
    min-height: 570px;

    background:
        linear-gradient(
            rgba(0, 0, 0, 0.08),
            rgba(0, 0, 0, 0.2)
        ),
        url("../img/studio.png");

    background-size: cover;
    background-position: center;

    border-radius: 2px;
}

.studio-badge {
    position: absolute;

    left: -35px;
    bottom: -30px;

    width: 170px;
    height: 135px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    background: var(--olive);

    text-align: center;
}

.studio-badge strong {
    font-size: 2rem;
    font-weight: 900;
}

.studio-badge span {
    margin-top: 5px;

    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* MEMBERSHIP */

.membership-section {
    padding: 120px 0;
    background: var(--cream);
    color: var(--charcoal);
}

.membership-grid {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 100px;
    align-items: center;
}

.membership-copy h2 {
    font-size: clamp(3rem, 5vw, 5rem);
    line-height: 0.95;
    font-weight: 900;
    letter-spacing: -3px;

    margin-bottom: 28px;
}

.membership-copy > p:not(.section-kicker) {
    max-width: 520px;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #52544d;
}

.membership-list {
    list-style: none;
    margin-top: 32px;
}

.membership-list li {
    position: relative;
    padding: 15px 0 15px 34px;

    font-size: 1rem;
    font-weight: 700;

    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.membership-list li::before {
    content: "✓";

    position: absolute;
    left: 0;

    color: var(--olive);
    font-weight: 900;
}


/* CARD */

.membership-card {
    background: #171917;
    color: white;

    padding: 50px;

    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}

.membership-label {
    color: var(--gold);

    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 2.5px;
}

.membership-price {
    margin-top: 22px;

    display: flex;
    align-items: flex-end;
    gap: 10px;
}

.membership-price .price {
    font-size: clamp(3.5rem, 6vw, 5.5rem);
    line-height: 1;
    font-weight: 900;
}

.membership-price .period {
    margin-bottom: 10px;

    color: #aaa;
    font-weight: 600;
}

.membership-fee {
    margin-top: 18px;

    color: #d8d8d8;

    font-size: 1rem;
    font-weight: 700;
}

.membership-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.12);

    margin: 30px 0;
}

.membership-note {
    color: #999;
    line-height: 1.6;
    font-size: 0.9rem;
}

.membership-button {
    margin-top: 32px;

    min-height: 60px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--olive);

    color: white;
    font-weight: 800;

    transition: 0.2s ease;
}

.membership-button:hover {
    background: var(--olive-dark);
    transform: translateY(-2px);
}

/* CONTACT */

.contact-section {
    padding: 120px 0;
    background: #101210;
    color: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 100px;
    align-items: center;
}

.contact-content h2 {
    font-size: clamp(3rem, 5vw, 5rem);
    line-height: 0.95;
    font-weight: 900;
    letter-spacing: -3px;

    margin-bottom: 28px;
}

.contact-text {
    max-width: 520px;

    color: #aaa;

    font-size: 1.05rem;
    line-height: 1.8;
}

.contact-list {
    margin-top: 40px;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.contact-item {
    padding-bottom: 20px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-label {
    display: block;

    margin-bottom: 7px;

    color: var(--gold);

    font-size: 0.75rem;
    font-weight: 800;

    text-transform: uppercase;
    letter-spacing: 2px;
}

.contact-item strong {
    display: block;

    margin-bottom: 5px;

    font-size: 1.1rem;
}

.contact-item span:not(.contact-label) {
    color: #888;
}

.contact-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-top: 38px;

    min-height: 56px;

    padding: 0 28px;

    background: var(--olive);

    color: white;
    font-weight: 800;

    transition: 0.2s ease;
}

.contact-button:hover {
    background: var(--olive-dark);
    transform: translateY(-2px);
}


/* MAP */

.map-card {
    min-height: 520px;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        linear-gradient(
            rgba(0, 0, 0, 0.45),
            rgba(0, 0, 0, 0.65)
        ),
        var(--olive-dark);

    border: 1px solid rgba(255, 255, 255, 0.08);
}

.map-placeholder {
    text-align: center;

    padding: 40px;
}

.map-pin {
    display: block;

    margin-bottom: 20px;

    color: var(--gold);

    font-size: 3rem;
}

.map-placeholder strong {
    display: block;

    font-size: 2rem;
    font-weight: 900;

    margin-bottom: 12px;
}

.map-placeholder p {
    color: #ccc;

    font-size: 1rem;
    line-height: 1.7;
}

.map-note {
    display: inline-block;

    margin-top: 24px;

    padding: 9px 14px;

    border: 1px solid rgba(255, 255, 255, 0.15);

    color: var(--gold);

    font-size: 0.8rem;
    font-weight: 800;

    letter-spacing: 1px;
}

/* APPLICATION */

.application-page {
    min-height: 100vh;
    padding: 160px 0 120px;
    background: #111310;
    color: white;
}

.application-header {
    max-width: 750px;
    margin-bottom: 65px;
}

.application-header h1 {
    font-size: clamp(3.2rem, 6vw, 6rem);
    line-height: 0.92;
    letter-spacing: -3px;
    font-weight: 900;
}

.application-header > p:last-child {
    margin-top: 25px;
    max-width: 580px;
    color: #aaa;
    line-height: 1.7;
}

.membership-form {
    max-width: 900px;
}

.form-section {
    padding: 40px;
    margin-bottom: 25px;

    background: #191b18;

    border: 1px solid rgba(
        255,
        255,
        255,
        0.08
    );
}

.form-section h2 {
    margin-bottom: 25px;

    font-size: 1.6rem;
}

.form-section-text {
    max-width: 650px;

    margin-top: -10px;
    margin-bottom: 30px;

    color: #999;

    line-height: 1.7;
}

.form-grid {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 24px;
}

.form-field {
    display: flex;
    flex-direction: column;
}

.form-field-full {
    grid-column: 1 / -1;
}

.form-field label {
    margin-bottom: 8px;

    color: #ccc;

    font-size: 0.8rem;
    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 1px;
}

.form-field input {
    width: 100%;

    height: 54px;

    padding: 0 15px;

    background: #111310;

    color: white;

    border: 1px solid
        rgba(255, 255, 255, 0.13);

    outline: none;

    font-size: 1rem;
}

.form-field input:focus {
    border-color: var(--olive);
}

.errorlist {
    list-style: none;

    margin-top: 7px;

    color: #dc7878;

    font-size: 0.8rem;
}

.checkbox-group {
    display: flex;
    flex-direction: column;

    gap: 20px;
}

.checkbox-row {
    display: flex;

    align-items: flex-start;

    gap: 12px;

    cursor: pointer;
}

.checkbox-row input {
    margin-top: 3px;

    width: 18px;
    height: 18px;

    accent-color: var(--olive);
}

.checkbox-row span {
    color: #ccc;

    line-height: 1.5;
}

.application-submit {
    width: 100%;

    min-height: 65px;

    border: none;

    background: var(--olive);

    color: white;

    font-size: 1rem;
    font-weight: 900;

    cursor: pointer;

    transition: 0.2s ease;
}

.application-submit:hover {
    background: var(--olive-dark);
}


/* SUCCESS */

.success-page {
    min-height: 100vh;

    display: flex;
    align-items: center;

    padding: 150px 0;

    background: #111310;

    color: white;
}

.success-content {
    max-width: 800px;
}

.success-content h1 {
    font-size: clamp(
        3.5rem,
        7vw,
        7rem
    );

    line-height: 0.92;

    letter-spacing: -4px;

    font-weight: 900;
}

.success-content > p:not(
    .section-kicker
) {
    max-width: 550px;

    margin: 30px 0;

    color: #aaa;

    line-height: 1.7;
}
/* =========================
   LEGAL / IMPRESSUM
   ========================= */

.legal-page {
    min-height: calc(100vh - 80px);
    padding: 150px 24px 100px;
    background: #0d0f0d;
    color: #f4f1e8;
}

.legal-container {
    width: 100%;
    max-width: 950px;
    margin: 0 auto;
}

.legal-header {
    margin-bottom: 55px;
    padding-bottom: 35px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.legal-kicker {
    display: block;
    margin-bottom: 14px;

    color: #c4a24f;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 3px;
}

.legal-header h1 {
    margin: 0 0 12px;

    color: #ffffff;
    font-size: clamp(48px, 7vw, 76px);
    line-height: 0.95;
    font-weight: 900;
    letter-spacing: -2px;
}

.legal-header p {
    margin: 0;
    color: #aaa99f;
    font-size: 16px;
}

.legal-content {
    max-width: 720px;
}

.legal-section {
    padding: 28px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.legal-section:first-child {
    padding-top: 0;
}

.legal-section h2 {
    margin: 0 0 14px;

    color: #c4a24f;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.legal-section p {
    margin: 0;

    color: #d4d3cc;
    font-size: 16px;
    line-height: 1.8;
}

.legal-section strong {
    color: #ffffff;
}

.legal-section a {
    color: #ffffff;
    font-weight: 700;
    text-decoration: none;
}

.legal-section a:hover {
    color: #c4a24f;
}

/* =========================
   FOOTER
   ========================= */

.site-footer {
    padding: 28px 0;
    background: #0b0d0b;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.footer-copy {
    color: #8f918b;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 24px;
}

.footer-links a {
    color: #b9bbb5;
    font-size: 0.9rem;
    font-weight: 600;
    transition: 0.2s ease;
}

.footer-links a:hover {
    color: var(--gold);
}

.form-legal-link {
    color: var(--gold);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.form-legal-link:hover {
    color: var(--cream);
}

/* =========================================================
   RAMBOS GYM – VERWALTUNG
   ========================================================= */

.management-page,
.management-login-section {
    min-height: calc(100vh - 80px);
    background:
        radial-gradient(
            circle at top right,
            rgba(157, 161, 83, 0.10),
            transparent 35%
        ),
        #0d0e0c;
    color: #f4f1e8;
}

.management-page {
    padding: 60px 24px 80px;
}

.management-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
}


/* =========================================================
   LOGIN
   ========================================================= */

.management-login-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

.management-login-card {
    width: 100%;
    max-width: 470px;
    padding: 44px;
    background: #151713;
    border: 1px solid rgba(183, 181, 103, 0.22);
    border-radius: 18px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

.management-login-header {
    margin-bottom: 32px;
}

.management-login-header h1 {
    margin: 6px 0 10px;
    font-size: 2.3rem;
    line-height: 1.1;
    color: #f4f1e8;
}

.management-login-header p {
    margin: 0;
    color: #a9aa9f;
    line-height: 1.6;
}

.management-eyebrow {
    display: block;
    margin-bottom: 8px;
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.management-login-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.management-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.management-field label,
.management-status-form label {
    color: #d9d8cf;
    font-size: 0.9rem;
    font-weight: 700;
}

.management-field input,
.management-status-form select,
.management-filter-form input,
.management-filter-form select {
    width: 100%;
    min-height: 48px;
    padding: 0 14px;
    border: 1px solid #34372f;
    border-radius: 9px;
    outline: none;
    background: #0f100e;
    color: #f4f1e8;
    font: inherit;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}

.management-field input:focus,
.management-status-form select:focus,
.management-filter-form input:focus,
.management-filter-form select:focus {
    border-color: var(--gold);
    background: #121310;
    box-shadow: 0 0 0 3px rgba(183, 181, 103, 0.10);
}

.management-field input::placeholder,
.management-filter-form input::placeholder {
    color: #72756b;
}


/* =========================================================
   BUTTONS
   ========================================================= */

.management-primary-btn,
.management-secondary-btn {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    padding: 11px 18px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 800;
    line-height: 1.2;
    text-decoration: none;
    cursor: pointer;
    transition:
        transform 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease;
}

.management-primary-btn {
    border: 1px solid var(--gold);
    background: var(--gold);
    color: #11120f;
}

.management-primary-btn:hover {
    transform: translateY(-1px);
    filter: brightness(1.08);
}

.management-secondary-btn {
    border: 1px solid #3c3f36;
    background: transparent;
    color: #e8e6dd;
}

.management-secondary-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}


/* =========================================================
   TOPBAR / HEADINGS
   ========================================================= */

.management-topbar {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 34px;
}

.management-topbar h1 {
    margin: 5px 0 8px;
    color: #f4f1e8;
    font-size: clamp(2rem, 4vw, 3.1rem);
    line-height: 1.05;
}

.management-topbar p {
    margin: 0;
    color: #989b91;
}

.management-topbar-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.management-back-link {
    display: inline-block;
    margin-bottom: 18px;
    color: var(--gold);
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
}

.management-back-link:hover {
    text-decoration: underline;
}


/* =========================================================
   DASHBOARD STATS
   ========================================================= */

.management-stats {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 28px;
}

.management-stat-card {
    position: relative;
    overflow: hidden;
    padding: 22px;
    background: #151713;
    border: 1px solid #292c26;
    border-radius: 13px;
}

.management-stat-card::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 2px;
    background: #42463a;
}

.management-stat-new::before {
    background: var(--gold);
}

.management-stat-card span {
    display: block;
    margin-bottom: 12px;
    color: #979a90;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.management-stat-card strong {
    display: block;
    color: #f4f1e8;
    font-size: 2.1rem;
    line-height: 1;
}


/* =========================================================
   PANELS
   ========================================================= */

.management-panel {
    overflow: hidden;
    background: #151713;
    border: 1px solid #292c26;
    border-radius: 14px;
}

.management-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 24px;
    border-bottom: 1px solid #292c26;
}

.management-panel-header h2 {
    margin: 0;
    color: #f4f1e8;
    font-size: 1.15rem;
}

.management-panel-header p {
    margin: 5px 0 0;
    color: #8e9187;
    font-size: 0.88rem;
}

.management-panel-header > a {
    color: var(--gold);
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
}

.management-panel-header > a:hover {
    text-decoration: underline;
}


/* =========================================================
   TABLES
   ========================================================= */

.management-table-wrapper {
    width: 100%;
    overflow-x: auto;
}

.management-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 760px;
}

.management-table th {
    padding: 13px 20px;
    background: #11120f;
    border-bottom: 1px solid #292c26;
    color: #898c82;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-align: left;
    text-transform: uppercase;
}

.management-table td {
    padding: 17px 20px;
    border-bottom: 1px solid #242620;
    color: #d7d7ce;
    font-size: 0.9rem;
    vertical-align: middle;
}

.management-table tbody tr {
    transition: background 0.15s ease;
}

.management-table tbody tr:hover {
    background: rgba(183, 181, 103, 0.035);
}

.management-table tbody tr:last-child td {
    border-bottom: 0;
}

.management-table td strong {
    color: #f4f1e8;
}

.management-table-action {
    text-align: right;
    white-space: nowrap;
}

.management-table-action a {
    color: var(--gold);
    font-weight: 700;
    text-decoration: none;
}

.management-table-action a:hover {
    text-decoration: underline;
}


/* =========================================================
   STATUS BADGES
   ========================================================= */

.management-status {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 6px 10px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 0.76rem;
    font-weight: 800;
    white-space: nowrap;
}

.management-status-new {
    border-color: rgba(218, 184, 93, 0.32);
    background: rgba(218, 184, 93, 0.10);
    color: #e1c36c;
}

.management-status-processed {
    border-color: rgba(126, 151, 176, 0.28);
    background: rgba(126, 151, 176, 0.10);
    color: #a8bfd3;
}

.management-status-active {
    border-color: rgba(105, 166, 112, 0.30);
    background: rgba(105, 166, 112, 0.10);
    color: #8bc491;
}

.management-status-rejected {
    border-color: rgba(184, 94, 94, 0.30);
    background: rgba(184, 94, 94, 0.10);
    color: #d58c8c;
}


/* =========================================================
   FILTER / SEARCH
   ========================================================= */

.management-filter-form {
    display: grid;
    grid-template-columns: minmax(250px, 1fr) 190px auto auto;
    gap: 10px;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #292c26;
}

.management-search,
.management-filter-select {
    width: 100%;
}

.management-filter-form .management-primary-btn,
.management-filter-form .management-secondary-btn {
    min-height: 48px;
}


/* =========================================================
   DETAIL PAGE
   ========================================================= */

.management-detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.8fr);
    gap: 18px;
    align-items: start;
}

.management-info-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    padding: 8px 24px 22px;
}

.management-info-item {
    min-width: 0;
    padding: 17px 0;
    border-bottom: 1px solid #272922;
}

.management-info-item:nth-child(odd):not(.management-info-full) {
    padding-right: 20px;
}

.management-info-item:nth-child(even):not(.management-info-full) {
    padding-left: 20px;
    border-left: 1px solid #272922;
}

.management-info-item span {
    display: block;
    margin-bottom: 7px;
    color: #85887e;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.management-info-item strong {
    display: block;
    overflow-wrap: anywhere;
    color: #e8e7df;
    font-size: 0.94rem;
    line-height: 1.5;
}

.management-info-item a {
    color: var(--gold);
    text-decoration: none;
}

.management-info-item a:hover {
    text-decoration: underline;
}

.management-info-full {
    grid-column: 1 / -1;
}

.management-sensitive {
    font-family: monospace;
    letter-spacing: 0.035em;
}

.management-current-status {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 24px 8px;
}

.management-current-status > span {
    color: #93968c;
    font-size: 0.85rem;
}

.management-status-form {
    display: flex;
    flex-direction: column;
    gap: 11px;
    padding: 18px 24px 24px;
}

.management-status-form .management-primary-btn {
    margin-top: 5px;
}

.management-confirmations {
    padding: 8px 24px 22px;
}

.management-confirmations > div {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 5px 15px;
    padding: 16px 0;
    border-bottom: 1px solid #272922;
}

.management-confirmations > div:last-child {
    border-bottom: 0;
}

.management-confirmations span {
    color: #96998f;
    font-size: 0.88rem;
}

.management-confirmations strong {
    color: #e8e7df;
    font-size: 0.88rem;
}

.management-confirmations small {
    grid-column: 1 / -1;
    color: #696c64;
}


/* =========================================================
   EMPTY / ERRORS
   ========================================================= */

.management-empty {
    padding: 50px 25px;
    color: #888b81;
    text-align: center;
}

.management-alert {
    padding: 12px 14px;
    border-radius: 8px;
    font-size: 0.88rem;
    line-height: 1.5;
}

.management-alert-error {
    border: 1px solid rgba(190, 84, 84, 0.32);
    background: rgba(190, 84, 84, 0.09);
    color: #df9b9b;
}

.management-login-form .errorlist {
    margin: 2px 0 0;
    padding: 0;
    color: #df8d8d;
    font-size: 0.8rem;
    list-style: none;
}

/* =========================================================
   MANAGEMENT HEADER
   ========================================================= */

.management-header {
    position: relative;
    z-index: 50;
    width: 100%;
    background: #0b0c0a;
    border-bottom: 1px solid #292c26;
}

.management-header-inner {
    width: 100%;
    max-width: 1280px;
    min-height: 78px;
    margin: 0 auto;
    padding: 0 24px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.management-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #f4f1e8;
    text-decoration: none;
}

.management-brand img {
    width: 58px;
    height: 58px;
    object-fit: contain;
}

.management-brand div {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.management-brand strong {
    color: var(--gold);
    font-size: 0.9rem;
    letter-spacing: 0.1em;
}

.management-brand span {
    margin-top: 4px;
    color: #94978d;
    font-size: 0.78rem;
}

.management-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.management-nav a {
    padding: 10px 13px;
    border-radius: 7px;
    color: #d8d7cf;
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
    transition:
        background 0.2s ease,
        color 0.2s ease;
}

.management-nav a:hover {
    background: #171914;
    color: var(--gold);
}

.management-nav .management-nav-logout {
    margin-left: 4px;
    border: 1px solid #383b33;
}

.management-nav .management-nav-logout:hover {
    border-color: var(--gold);
}

.privacy-title {
    font-size: clamp(2.4rem, 6vw, 5rem) !important;
}

@media (max-width: 600px) {
    .privacy-title {
        font-size: 2.2rem !important;
    }
}

@media (max-width: 700px) {
    .management-header-inner {
        min-height: auto;
        padding-top: 12px;
        padding-bottom: 12px;
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .management-brand {
        justify-content: center;
    }

    .management-nav {
        justify-content: center;
        flex-wrap: wrap;
    }

    .management-nav a {
        flex: 1;
        text-align: center;
    }
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1050px) {
    .management-stats {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .management-detail-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 800px) {
    .management-page {
        padding: 40px 16px 60px;
    }

    .management-topbar {
        flex-direction: column;
    }

    .management-topbar-actions {
        width: 100%;
        flex-wrap: wrap;
    }

    .management-topbar-actions .management-primary-btn,
    .management-topbar-actions .management-secondary-btn {
        flex: 1;
    }

    .management-filter-form {
        grid-template-columns: 1fr;
    }

    .management-filter-form .management-primary-btn,
    .management-filter-form .management-secondary-btn {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .management-login-section {
        align-items: flex-start;
        padding: 35px 15px;
    }

    .management-login-card {
        padding: 30px 22px;
    }

    .management-login-header h1 {
        font-size: 2rem;
    }

    .management-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .management-stat-card {
        padding: 18px;
    }

    .management-stat-card strong {
        font-size: 1.8rem;
    }

    .management-panel-header {
        padding: 19px 18px;
    }

    .management-info-grid {
        grid-template-columns: 1fr;
        padding: 5px 18px 18px;
    }

    .management-info-item,
    .management-info-item:nth-child(odd):not(.management-info-full),
    .management-info-item:nth-child(even):not(.management-info-full) {
        grid-column: 1;
        padding: 15px 0;
        border-left: 0;
    }

    .management-current-status {
        padding-right: 18px;
        padding-left: 18px;
    }

    .management-status-form,
    .management-confirmations {
        padding-right: 18px;
        padding-left: 18px;
    }
}

@media (max-width: 600px) {
    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }
}


/* Mobile */

@media (max-width: 768px) {

    .legal-page {
        padding: 120px 20px 70px;
    }

    .legal-header {
        margin-bottom: 35px;
    }

    .legal-header h1 {
        font-size: 48px;
    }

    .legal-section {
        padding: 24px 0;
    }
}

@media (max-width: 850px) {

    .brand img {
        width: 82px;
    }

    .main-nav {
        gap: 18px;
    }

    .main-nav a:not(.nav-cta) {
        display: none;
    }

    .hero {
        min-height: 760px;

        background-position: 62% center;
    }

    .hero-overlay {
        background: rgba(5, 6, 5, 0.78);
    }

    .hero h1 {
        font-size: clamp(3.5rem, 13vw, 5rem);
        letter-spacing: -2px;
    }

    .hero-text {
        font-size: 1.05rem;
    }

    .facts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px 0;
    }

    .fact:nth-child(2)::after {
        display: none;
    }

        .studio-section {
        padding: 80px 0;
    }

    .studio-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .studio-content h2 {
        letter-spacing: -2px;
    }

    .studio-image {
        min-height: 430px;
    }

    .studio-badge {
        left: 20px;
        bottom: -25px;
    }

    .membership-section {
        padding: 80px 0;
    }

    .membership-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .membership-card {
        padding: 35px 25px;
    }

    .membership-copy h2 {
        letter-spacing: -2px;
    }

    .contact-section {
        padding: 80px 0;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .contact-list {
        grid-template-columns: 1fr;
    }

    .map-card {
        min-height: 380px;
    }
}

@media (max-width: 700px) {

    .application-page {
        padding:
            130px 0 80px;
    }

    .form-section {
        padding: 28px 20px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-field-full {
        grid-column: auto;
    }
}

@media (max-width: 520px) {

    .container {
        width: calc(100% - 32px);
    }

    .hero {
        min-height: 720px;
    }

    .hero h1 {
        font-size: 3.5rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .facts-grid {
        grid-template-columns: 1fr 1fr;
    }

    .fact {
        padding: 10px;
    }

    .fact strong {
        font-size: 1.6rem;
    }
}