/********** NEVER GIVE UP — Design System **********/
:root {
    --bg: #09090b;
    --surface: #18181b;
    --primary: #dc2626;
    --primary-hover: #b91c1c;
    --white: #ffffff;
    --muted: #a1a1aa;
    --border: #27272a;
    --success: #22c55e;
}

*,
*::before,
*::after {
    border-radius: 0 !important;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg);
    color: var(--white);
    line-height: 1.6;
}

.container,
.container-fluid {
    --bs-gutter-x: 1.5rem;
}

h1, h2, h3, h4, h5, h6,
.section-title,
.nav-link-custom,
.btn-ngu {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    color: var(--primary);
}

.text-muted-ngu {
    color: var(--muted) !important;
}

.text-primary-ngu {
    color: var(--primary) !important;
}

.bg-ngu {
    background-color: var(--bg) !important;
}

.bg-surface {
    background-color: var(--surface) !important;
}

/* ——— Fixed Header ——— */
.ngu-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    background-color: var(--bg);
    border-bottom: 2px solid var(--primary);
}

.ngu-header .navbar {
    padding: 0.75rem 0;
}

.ngu-header .navbar > .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

.ngu-header .navbar-brand {
    flex: 0 1 auto;
    max-width: none;
    margin-right: 0;
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    padding: 0;
    line-height: 0;
}

.ngu-brand-logo {
    display: block;
    width: auto;
    height: 48px;
    object-fit: contain;
}

@media (min-width: 992px) {
    .ngu-brand-logo {
        height: 56px;
    }
}

.footer-brand-logo {
    display: block;
    width: auto;
    height: 72px;
    object-fit: contain;
    margin-bottom: 1rem;
}

.ngu-logo-main {
    font-family: 'Oswald', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.08em;
    line-height: 1.1;
}

.ngu-logo-sub {
    font-family: 'Oswald', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 0.2em;
}

.nav-link-custom {
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.5rem 0.75rem !important;
    letter-spacing: 0.06em;
    transition: color 0.2s;
}

.nav-link-custom:hover,
.nav-link-custom:focus,
.nav-link-custom.active {
    color: var(--primary);
}

.nav-item.dropdown .dropdown-toggle::after {
    margin-left: 0.35em;
    vertical-align: middle;
}

.ngu-dropdown {
    background-color: var(--surface);
    border: 1px solid var(--border);
    border-top: 2px solid var(--primary);
    padding: 0;
    margin-top: 0;
    min-width: 280px;
}

.ngu-dropdown .dropdown-item {
    color: var(--muted);
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    text-transform: none;
    letter-spacing: normal;
    padding: 0.85rem 1.25rem;
    border-bottom: 1px solid var(--border);
    transition: color 0.2s, background-color 0.2s;
}

.ngu-dropdown .dropdown-item:last-child {
    border-bottom: none;
}

.ngu-dropdown .dropdown-item:hover,
.ngu-dropdown .dropdown-item:focus {
    background-color: var(--bg);
    color: var(--white);
}

.ngu-dropdown .dropdown-item strong {
    display: block;
    color: var(--white);
    font-family: 'Oswald', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 0.15rem;
}

.ngu-header .nav-item.dropdown.show > .dropdown-menu {
    display: block;
}

@media (max-width: 991.98px) {
    .ngu-header .navbar-collapse:not(.show) {
        display: none;
    }

    .ngu-header .navbar-collapse.show {
        display: block;
        width: 100%;
        flex-basis: 100%;
    }
}

.btn-ngu-primary {
    background-color: var(--primary);
    color: var(--white);
    border: 2px solid var(--primary);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.6rem 1.25rem;
    letter-spacing: 0.08em;
    transition: background-color 0.2s, border-color 0.2s;
}

.btn-ngu-primary:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
    color: var(--white);
}

.btn-ngu-outline {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    letter-spacing: 0.08em;
    transition: background-color 0.2s, color 0.2s;
}

.btn-ngu-outline:hover {
    background-color: var(--white);
    color: var(--bg);
}

.btn-ngu-surface {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--primary);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.65rem 1.25rem;
    letter-spacing: 0.06em;
    width: 100%;
    transition: background-color 0.2s, color 0.2s;
}

.btn-ngu-surface:hover {
    background-color: var(--primary);
    color: var(--white);
}

.navbar-toggler {
    border: 1px solid var(--primary);
    padding: 0;
    position: relative;
    z-index: 1051;
    flex-shrink: 0;
    min-width: 44px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(9, 9, 11, 0.96);
    cursor: pointer;
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(220, 38, 38, 0.25);
}

.navbar-toggler:focus {
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(220, 38, 38, 0.45);
}

.navbar-dark .navbar-toggler-icon {
    width: 1.5rem;
    height: 1.5rem;
    filter: none;
    opacity: 1;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.95%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ——— Hero ——— */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 4rem;
    background:
        linear-gradient(rgba(9, 9, 11, 0.82), rgba(9, 9, 11, 0.92)),
        url('../img/carousel-1.webp') center center / cover no-repeat;
}

.hero-badge {
    display: inline-block;
    color: var(--primary);
    font-family: 'Oswald', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: clamp(2.25rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.hero-subtitle {
    font-size: 1.05rem;
    color: var(--muted);
    max-width: 640px;
    margin-bottom: 2rem;
    font-family: 'Inter', sans-serif;
    text-transform: none;
    letter-spacing: normal;
}

/* ——— Sections ——— */
.ngu-section {
    padding: 5rem 0;
}

.section-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 2.5rem;
    letter-spacing: 0.1em;
}

.section-title span {
    color: var(--primary);
}

/* ——— Branch Cards ——— */
.branch-card {
    background-color: var(--surface);
    border: 1px solid var(--border);
    padding: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.branch-card__media {
    flex-shrink: 0;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    position: relative;
    background: rgba(0, 0, 0, 0.25);
}

.branch-card__image {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center;
}

.branch-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 2rem;
    color: var(--white);
}

.branch-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--white);
}

.branch-card .text-muted-ngu,
.branch-card .branch-hours {
    color: rgba(255, 255, 255, 0.92) !important;
}

.branch-status {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 0.08em;
    color: var(--success);
    margin-bottom: 1rem;
}

.status-dot {
    width: 8px;
    height: 8px;
    background-color: var(--success);
    display: inline-block;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.branch-hours {
    font-size: 0.9rem;
    color: var(--muted);
    margin-bottom: 1.5rem;
    flex-grow: 1;
    font-family: 'Inter', sans-serif;
    text-transform: none;
    letter-spacing: normal;
}

/* ——— Pricing Cards ——— */
.pricing-card {
    background-color: var(--surface);
    border: 1px solid var(--border);
    padding: 2rem;
    height: 100%;
}

.pricing-card .description {
    color: var(--muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    text-transform: none;
    letter-spacing: normal;
    font-family: 'Inter', sans-serif;
}

.price-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
}

.price-list li {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 0.65rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
    text-transform: none;
    letter-spacing: normal;
}

.price-list li span:last-child {
    font-weight: 700;
    color: var(--white);
    white-space: nowrap;
    margin-left: 1rem;
}

.pricing-note {
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    text-transform: none;
    letter-spacing: normal;
}

.special-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.special-list li {
    padding: 0.5rem 0;
    color: var(--muted);
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    text-transform: none;
    letter-spacing: normal;
    border-bottom: 1px solid var(--border);
}

.special-list li::before {
    content: "▸";
    color: var(--primary);
    margin-right: 0.5rem;
}

/* ——— Coach Cards ——— */
.coach-card {
    background-color: var(--surface);
    border: 1px solid var(--border);
    overflow: hidden;
}

.coach-card img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    display: block;
    filter: grayscale(20%);
    transition: filter 0.3s;
}

.coach-card:hover img {
    filter: grayscale(0%);
}

.coach-card .coach-name {
    padding: 1rem 1rem 0.35rem;
    font-family: 'Oswald', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-align: center;
    border-top: 2px solid var(--primary);
}

.coach-card .coach-role {
    padding: 0 1rem 1rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    color: var(--primary);
    text-align: center;
    text-transform: none;
    letter-spacing: normal;
    line-height: 1.45;
}

/* ——— Rules ——— */
.rules-list {
    list-style: none;
    padding: 0;
    margin: 0;
    max-width: 800px;
}

.rules-list li {
    position: relative;
    padding: 1.25rem 0 1.25rem 1.75rem;
    border-bottom: 1px solid var(--border);
    color: var(--muted);
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    text-transform: none;
    letter-spacing: normal;
}

.rules-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 1.45rem;
    width: 8px;
    height: 8px;
    background-color: var(--primary);
}

/* ——— Footer ——— */
.ngu-footer {
    background-color: var(--bg);
    border-top: 2px solid var(--primary);
    padding: 3.5rem 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.25rem;
    padding-bottom: 2.5rem;
    align-items: start;
}

.footer-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 0;
}

@media (max-width: 767.98px) {
    .footer-col {
        align-items: center;
        text-align: center;
    }

    .footer-links {
        width: 100%;
    }

    .social-links {
        justify-content: center;
    }

    .social-handle {
        text-align: center;
    }
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem 2.5rem;
    }
}

@media (min-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1200px) {
    .footer-grid {
        grid-template-columns: 1.35fr 1fr 0.95fr 0.85fr 1.15fr;
        gap: 2rem;
    }
}

.footer-title {
    font-family: 'Oswald', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.1em;
    margin-bottom: 1.25rem;
    line-height: 1.3;
}

.footer-brand-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.06em;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.footer-text {
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.75;
    font-family: 'Inter', sans-serif;
    text-transform: none;
    letter-spacing: normal;
    margin: 0;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    color: var(--muted);
    font-size: 0.88rem;
    font-family: 'Inter', sans-serif;
    text-transform: none;
    letter-spacing: normal;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-contact a {
    color: var(--muted);
    transition: color 0.2s;
    font-size: 0.88rem;
    font-family: 'Inter', sans-serif;
    text-transform: none;
    letter-spacing: normal;
    word-break: break-word;
}

.footer-contact a:hover {
    color: var(--primary);
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--border);
    color: var(--white);
    transition: background-color 0.2s, border-color 0.2s, color 0.2s;
}

.social-links svg {
    width: 1.1rem;
    height: 1.1rem;
    fill: currentColor;
}

.social-links a:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.social-handle {
    display: block;
    margin-top: 0.75rem;
    color: var(--muted);
    font-size: 0.85rem;
    font-family: 'Inter', sans-serif;
    text-transform: none;
    letter-spacing: normal;
}

.social-handle a {
    color: var(--muted);
}

.social-handle a:hover {
    color: var(--primary);
}

.footer-bottom {
    padding: 1.5rem 0;
    border-top: 1px solid var(--border);
    color: var(--muted);
    font-size: 0.82rem;
    font-family: 'Inter', sans-serif;
    text-transform: none;
    letter-spacing: normal;
}

.footer-meta {
    border-top: 1px solid var(--border);
    padding: 1.75rem 0 2.25rem;
    text-align: center;
}

.footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.5rem 0.85rem;
    margin: 0 0 1rem;
}

.footer-legal-links a {
    color: var(--muted);
    font-size: 0.85rem;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    text-transform: none;
    letter-spacing: normal;
    transition: color 0.2s;
    white-space: nowrap;
}

.footer-legal-links a:hover {
    color: var(--primary);
}

.footer-legal-sep {
    color: rgba(255, 255, 255, 0.22);
    font-size: 0.85rem;
    user-select: none;
}

@media (max-width: 575.98px) {
    .footer-legal-sep {
        display: none;
    }

    .footer-legal-links {
        flex-direction: column;
        gap: 0.65rem;
    }
}

.footer-copyright {
    font-size: 0.8rem;
    color: var(--muted);
    line-height: 1.55;
    margin: 0;
    font-family: 'Inter', sans-serif;
    text-transform: none;
    letter-spacing: normal;
}

.footer-copyright a {
    color: var(--muted);
    text-decoration: underline;
    transition: color 0.2s;
}

.footer-copyright a:hover {
    color: var(--primary);
}

.footer-bottom a {
    color: var(--muted);
    transition: color 0.2s;
}

.footer-bottom a:hover {
    color: var(--primary);
}

/* ——— Utilities ——— */
.pt-header {
    padding-top: 80px;
}

@media (max-width: 991.98px) {
    .ngu-header .navbar-toggler {
        display: inline-flex;
    }

    .ngu-header .navbar-collapse {
        background-color: var(--surface);
        padding: 1rem;
        margin-top: 0.75rem;
        border: 1px solid var(--border);
    }

    .nav-link-custom {
        padding: 0.75rem 0 !important;
        border-bottom: 1px solid var(--border);
    }

    .ngu-dropdown {
        border: none;
        background-color: var(--bg);
        margin: 0.25rem 0 0.5rem 0.75rem;
        min-width: auto;
    }

    .btn-ngu-primary {
        width: 100%;
        margin-top: 0.75rem;
        text-align: center;
    }

    .hero-section {
        padding-top: 120px;
        min-height: auto;
    }
}

/* ——— Inner Pages ——— */
.page-hero {
    padding: 8rem 0 4rem;
    background:
        linear-gradient(rgba(9, 9, 11, 0.88), rgba(9, 9, 11, 0.95)),
        url('../img/carousel-2.jpg') center center / cover no-repeat;
    border-bottom: 2px solid var(--primary);
}

.page-hero .section-title {
    margin-bottom: 1.5rem;
}

.page-hero--orama {
    display: flex;
    align-items: center;
    min-height: 42vh;
    padding: 7rem 0 3.5rem;
}

.page-hero--orama .container {
    display: flex;
    justify-content: flex-end;
    width: 100%;
}

.page-hero--orama .section-title {
    margin-bottom: 0;
    text-align: right;
    max-width: 100%;
}

@media (max-width: 767.98px) {
    .page-hero--orama {
        min-height: auto;
        padding: 6.5rem 0 2.5rem;
    }

    .page-hero--orama .container {
        justify-content: center;
    }

    .page-hero--orama .section-title {
        text-align: center;
    }
}

.page-intro {
    font-size: 1.05rem;
    color: var(--muted);
    max-width: 900px;
    line-height: 1.85;
    font-family: 'Inter', sans-serif;
    text-transform: none;
    letter-spacing: normal;
}

.service-detail-card {
    background-color: var(--surface);
    border: 1px solid var(--border);
    border-left: 4px solid var(--primary);
    padding: 2.5rem;
    height: 100%;
}

.service-detail-card .service-number {
    font-family: 'Oswald', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 0.15em;
    margin-bottom: 0.75rem;
}

.service-detail-card h3,
.pricing-card h3,
.cta-banner h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.25;
    letter-spacing: 0.06em;
}

.service-detail-card h3 {
    margin-bottom: 1.25rem;
}

.pricing-card h3 {
    margin-bottom: 1rem;
}

.cta-banner h3 {
    margin-bottom: 1rem;
}

.service-detail-card .service-meta {
    font-size: 0.9rem;
    color: var(--white);
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    text-transform: none;
    letter-spacing: normal;
    margin-bottom: 0.5rem;
}

.service-detail-card .service-body {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.8;
    font-family: 'Inter', sans-serif;
    text-transform: none;
    letter-spacing: normal;
    margin-bottom: 1.25rem;
}

.service-detail-card .service-body p {
    margin-bottom: 1rem;
}

.service-detail-card .service-body p:last-child {
    margin-bottom: 0;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 1.25rem 0 0;
}

.service-features li {
    position: relative;
    padding: 0.5rem 0 0.5rem 1.25rem;
    color: var(--muted);
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
    text-transform: none;
    letter-spacing: normal;
    border-bottom: 1px solid var(--border);
}

.service-features li::before {
    content: "■";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-size: 0.5rem;
    top: 0.75rem;
}

.service-subtitle {
    font-family: 'Oswald', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.08em;
    margin: 1.5rem 0 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.cta-banner {
    background-color: var(--surface);
    border: 1px solid var(--border);
    border-top: 3px solid var(--primary);
    padding: 3rem 2rem;
    text-align: center;
}

.cta-banner p {
    color: var(--muted);
    max-width: 600px;
    margin: 0 auto 1.5rem;
    font-family: 'Inter', sans-serif;
    text-transform: none;
    letter-spacing: normal;
}

/* ——— Team Page ——— */
.team-member-card {
    background-color: var(--surface);
    border: 1px solid var(--border);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.team-member-card img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    display: block;
    filter: grayscale(30%);
    transition: filter 0.3s;
}

.team-member-card:hover img {
    filter: grayscale(0%);
}

.team-member-info {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    border-top: 3px solid var(--primary);
}

.team-member-info h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
    line-height: 1.3;
}

.team-member-info .team-role {
    font-family: 'Oswald', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
}

.team-member-info .team-bio {
    color: var(--muted);
    font-size: 0.85rem;
    line-height: 1.75;
    font-family: 'Inter', sans-serif;
    text-transform: none;
    letter-spacing: normal;
    flex-grow: 1;
}

.philosophy-block {
    background-color: var(--surface);
    border: 1px solid var(--border);
    padding: 3rem;
    position: relative;
}

.philosophy-block::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background-color: var(--primary);
}

.philosophy-quote {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.06em;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.philosophy-text {
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.85;
    font-family: 'Inter', sans-serif;
    text-transform: none;
    letter-spacing: normal;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.value-item {
    border: 1px solid var(--border);
    padding: 1.5rem;
    background-color: var(--bg);
}

.value-item h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.value-item p {
    color: var(--muted);
    font-size: 0.85rem;
    font-family: 'Inter', sans-serif;
    text-transform: none;
    letter-spacing: normal;
    margin: 0;
    line-height: 1.6;
}

/* ——— Animations ——— */
.fade-in {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

.hover-lift {
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
                border-color 0.35s ease,
                box-shadow 0.35s ease;
}

.hover-lift:hover {
    transform: translateY(-6px);
    border-color: var(--primary) !important;
    box-shadow: 0 14px 48px rgba(220, 38, 38, 0.14);
}

.btn-ngu-primary,
.btn-ngu-outline,
.btn-ngu-surface {
    transition: transform 0.25s ease, background-color 0.2s, border-color 0.2s, color 0.2s, box-shadow 0.25s ease;
}

.btn-ngu-primary:hover,
.btn-ngu-outline:hover,
.btn-ngu-surface:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(220, 38, 38, 0.25);
}

/* ——— Stats Section ——— */
.stats-section {
    padding: 4rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background-color: var(--surface);
}

.stat-item {
    text-align: center;
    padding: 1.5rem 1rem;
    border: 1px solid var(--border);
    background-color: var(--bg);
}

.stat-number {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-family: 'Oswald', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--muted);
    letter-spacing: 0.1em;
}

/* ——— Live Status Badge ——— */
.live-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Oswald', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 0.4rem 0.85rem;
    border: 1px solid var(--border);
    background-color: var(--bg);
}

.live-status-badge .status-dot {
    width: 8px;
    height: 8px;
}

.live-status-badge.is-open {
    color: var(--success);
    border-color: rgba(34, 197, 94, 0.35);
}

.live-status-badge.is-open .status-dot {
    background-color: var(--success);
    animation: pulse-dot 2s infinite;
}

.live-status-badge.is-closed {
    color: var(--muted);
}

.live-status-badge.is-closed .status-dot {
    background-color: var(--muted);
    animation: none;
}

/* ——— Gym Branch Pages ——— */
.gym-hero {
    min-height: 75vh;
    display: flex;
    align-items: flex-end;
    padding: 8rem 0 4rem;
    background-size: cover;
    background-position: center;
    position: relative;
}

.gym-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(9, 9, 11, 0.95) 0%, rgba(9, 9, 11, 0.5) 50%, rgba(9, 9, 11, 0.75) 100%);
}

.gym-hero .container {
    position: relative;
    z-index: 1;
}

.gym-hero-title {
    font-size: clamp(1.75rem, 5vw, 3.25rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: var(--white);
}

.gym-hero-sub {
    color: rgba(255, 255, 255, 0.88);
    font-family: 'Inter', sans-serif;
    text-transform: none;
    letter-spacing: normal;
    font-size: 1rem;
    max-width: 560px;
    margin-bottom: 1.5rem;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .info-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.info-box {
    background-color: var(--surface);
    border: 1px solid var(--border);
    padding: 1.75rem;
    height: 100%;
}

.info-box .info-icon {
    color: var(--primary);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.info-box h4 {
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    letter-spacing: 0.08em;
}

.info-box p,
.info-box a {
    color: var(--muted);
    font-family: 'Inter', sans-serif;
    text-transform: none;
    letter-spacing: normal;
    font-size: 0.9rem;
    line-height: 1.7;
    margin: 0;
}

.info-box a.tel-link {
    color: var(--white);
    font-weight: 600;
    font-size: 1.05rem;
}

.info-box a.tel-link:hover {
    color: var(--primary);
}

.map-embed {
    border: 1px solid var(--border);
    border-top: 3px solid var(--primary);
    overflow: hidden;
    line-height: 0;
}

.map-embed iframe {
    width: 100%;
    height: 420px;
    border: 0;
    filter: grayscale(80%) invert(92%) contrast(90%);
}

.gallery-grid {
    column-count: 2;
    column-gap: 0.75rem;
}

@media (min-width: 768px) {
    .gallery-grid {
        column-count: 3;
    }
}

@media (min-width: 1200px) {
    .gallery-grid {
        column-count: 4;
    }
}

.gallery-item {
    overflow: hidden;
    border: 1px solid var(--border);
    padding: 0;
    background: var(--surface-elevated, #111);
    cursor: zoom-in;
    position: relative;
    display: block;
    width: 100%;
    margin: 0 0 0.75rem;
    break-inside: avoid;
    -webkit-column-break-inside: avoid;
    text-align: left;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    vertical-align: middle;
    image-orientation: from-image;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), filter 0.4s ease;
    filter: grayscale(15%);
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
    transform: scale(1.05);
    filter: grayscale(0%);
}

.gallery-item:focus-visible {
    outline: 2px solid var(--accent, #c41e1e);
    outline-offset: 2px;
}

.gallery-item__zoom {
    position: absolute;
    right: 0.65rem;
    bottom: 0.65rem;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.65);
    color: #fff;
    font-size: 0.8rem;
    opacity: 0;
    transform: translateY(4px);
    transition: opacity 0.25s ease, transform 0.25s ease;
    pointer-events: none;
}

.gallery-item:hover .gallery-item__zoom,
.gallery-item:focus-visible .gallery-item__zoom {
    opacity: 1;
    transform: translateY(0);
}

.gallery-item.featured {
    border-color: var(--primary);
}

.gym-gallery__hint {
    margin-top: 0.75rem;
    color: var(--text-muted, #9ca3af);
    font-size: 0.9rem;
    text-align: center;
}

body.gym-lightbox-open {
    overflow: hidden;
}

.gym-lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gym-lightbox[hidden] {
    display: none !important;
}

.gym-lightbox__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(4px);
}

.gym-lightbox__panel {
    position: relative;
    z-index: 1;
    width: min(96vw, 1200px);
    max-height: 92vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 3.25rem 2.5rem;
}

.gym-lightbox__figure {
    margin: 0;
    max-width: 100%;
    max-height: calc(92vh - 4rem);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.gym-lightbox__image {
    max-width: 100%;
    max-height: calc(92vh - 6rem);
    width: auto;
    height: auto;
    object-fit: contain;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
}

.gym-lightbox__caption {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    text-align: center;
    max-width: 60ch;
}

.gym-lightbox__counter {
    position: absolute;
    left: 50%;
    bottom: 0.35rem;
    transform: translateX(-50%);
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    letter-spacing: 0.04em;
}

.gym-lightbox__close,
.gym-lightbox__nav {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.gym-lightbox__close:hover,
.gym-lightbox__nav:hover:not(:disabled),
.gym-lightbox__close:focus-visible,
.gym-lightbox__nav:focus-visible:not(:disabled) {
    background: rgba(196, 30, 30, 0.85);
    border-color: rgba(255, 255, 255, 0.35);
}

.gym-lightbox__close {
    top: 0.5rem;
    right: 0.5rem;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 999px;
    font-size: 1.5rem;
    line-height: 1;
}

.gym-lightbox__nav {
    top: 50%;
    transform: translateY(-50%);
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 999px;
    font-size: 1.25rem;
}

.gym-lightbox__nav--prev {
    left: 0.25rem;
}

.gym-lightbox__nav--next {
    right: 0.25rem;
}

.gym-lightbox__nav:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

@media (max-width: 767px) {
    .gym-lightbox__panel {
        padding: 2.75rem 0.5rem 2rem;
    }

    .gym-lightbox__nav {
        width: 2.25rem;
        height: 2.25rem;
        font-size: 1rem;
    }
}

.branch-trainer-mini {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid var(--border);
    background-color: var(--surface);
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.branch-trainer-mini:hover {
    border-color: var(--primary);
    transform: translateX(4px);
}

.branch-trainer-mini img {
    width: 56px;
    height: 56px;
    object-fit: cover;
    border: 2px solid var(--border);
}

.branch-trainer-mini .trainer-name {
    font-family: 'Oswald', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 0.15rem;
}

.branch-trainer-mini .trainer-role {
    font-size: 0.75rem;
    color: var(--muted);
    font-family: 'Inter', sans-serif;
    text-transform: none;
    letter-spacing: normal;
}

.faq-list {
    max-width: 900px;
}

/* ——— Accordion (FAQ) ——— */
.ngu-accordion {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.ngu-accordion-item {
    border: 1px solid var(--border);
    border-left: 3px solid var(--border);
    background-color: var(--surface);
    transition: border-color 0.35s ease, background-color 0.35s ease, box-shadow 0.35s ease;
}

.ngu-accordion-item.is-open {
    border-left-color: var(--primary);
    background-color: #1c1c1f;
    box-shadow: 0 8px 32px rgba(220, 38, 38, 0.1);
}

.ngu-accordion-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    color: var(--white);
    font-family: 'Oswald', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-align: left;
    cursor: pointer;
    text-transform: uppercase;
}

.ngu-accordion-trigger:hover {
    color: var(--primary);
}

.ngu-accordion-trigger .accordion-icon {
    font-size: 0.85rem;
    color: var(--primary);
    transition: transform 0.35s ease;
    flex-shrink: 0;
}

.ngu-accordion-item.is-open .ngu-accordion-trigger .accordion-icon {
    transform: rotate(45deg);
}

.ngu-accordion-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.ngu-accordion-item.is-open .ngu-accordion-panel {
    max-height: 400px;
}

.ngu-accordion-content {
    padding: 0 1.5rem 1.25rem;
}

.ngu-accordion-content p {
    color: var(--muted);
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
    text-transform: none;
    letter-spacing: normal;
    line-height: 1.75;
    margin: 0;
}

/* ——— NGU Core Pathway ——— */
.pathway-section {
    position: relative;
    overflow: hidden;
}

.ngu-pathway {
    position: relative;
}

.pathway-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    position: relative;
}

@media (min-width: 768px) {
    .pathway-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    }
}

.pathway-step {
    position: relative;
    border: 1px solid var(--border);
    background-color: var(--bg);
    overflow: hidden;
    transition: border-color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
}

.pathway-step::before {
    content: attr(data-step);
    position: absolute;
    right: 0.5rem;
    bottom: -0.5rem;
    font-family: 'Oswald', sans-serif;
    font-size: 5rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.06);
    line-height: 1;
    pointer-events: none;
    transition: color 0.35s ease;
}

.pathway-step.is-open::before,
.pathway-step:hover::before {
    color: rgba(220, 38, 38, 0.12);
}

.pathway-step.is-open {
    border-color: var(--primary);
    box-shadow: 0 12px 40px rgba(220, 38, 38, 0.15);
    transform: translateY(-4px);
}

.pathway-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    border-left: 3px solid var(--border);
    color: var(--white);
    cursor: pointer;
    text-align: left;
    transition: border-color 0.35s ease;
}

.pathway-step.is-open .pathway-trigger,
.pathway-trigger:hover {
    border-left-color: var(--primary);
}

.pathway-num {
    font-family: 'Oswald', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 0.1em;
    flex-shrink: 0;
}

.pathway-title {
    font-family: 'Oswald', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    flex-grow: 1;
    text-transform: uppercase;
}

.pathway-trigger .accordion-icon {
    color: var(--primary);
    font-size: 0.8rem;
    transition: transform 0.35s ease;
    flex-shrink: 0;
}

.pathway-step.is-open .pathway-trigger .accordion-icon {
    transform: rotate(180deg);
}

.pathway-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.pathway-step.is-open .pathway-panel {
    max-height: 280px;
}

.pathway-panel p {
    padding: 0 1.5rem 1.25rem 3.25rem;
    color: var(--muted);
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
    text-transform: none;
    letter-spacing: normal;
    line-height: 1.75;
    margin: 0;
}

@media (min-width: 992px) {
    .pathway-connector {
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, transparent, var(--primary) 10%, var(--primary) 90%, transparent);
        opacity: 0.35;
        pointer-events: none;
        z-index: 0;
    }

    .pathway-grid {
        z-index: 1;
    }
}

.legal-page .legal-updated {
    font-size: 0.9rem;
}

.legal-page h2 {
    color: var(--white);
    font-family: 'Oswald', sans-serif;
    letter-spacing: 0.04em;
}

.legal-page .legal-table {
    font-size: 0.88rem;
    margin: 1rem 0;
}

.legal-page .legal-table th {
    white-space: nowrap;
}

.legal-page code {
    color: var(--primary);
    font-size: 0.85em;
}
