:root {
    --ink: #f7f3ee;
    --muted: #b9b4c6;
    --paper: #0e111b;
    --surface: #171b28;
    --surface-soft: #202637;
    --line: rgba(255, 255, 255, 0.12);
    --accent: #e43f5a;
    --accent-dark: #f05b72;
    --gold: #f3b34f;
    --gold-soft: rgba(243, 179, 79, 0.18);
    --gold-line: rgba(243, 179, 79, 0.38);
    --navy: #10182b;
    --radius: 8px;
    --shadow: 0 18px 45px rgba(0, 0, 0, 0.34);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
    display: none;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--ink);
    background: var(--paper);
    line-height: 1.6;
}

.page-home {
    background: #0e111b;
}

.page-about {
    background: #0b0b10;
}

.page-news {
    background: #121019;
}

.page-gallery {
    background: #070910;
}

.page-contact {
    background: #17131a;
    color: var(--ink);
}

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

a {
    color: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 12px clamp(18px, 4vw, 56px);
    background: rgba(14, 17, 27, 0.92);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(16px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--ink);
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
}

.brand-logo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 6px;
}

.main-nav a {
    padding: 9px 12px;
    border-radius: 999px;
    color: var(--muted);
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--ink);
    background: rgba(255, 255, 255, 0.08);
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    color: var(--ink);
    font-size: 24px;
}

.hero,
.page-hero {
    position: relative;
    min-height: 78vh;
    display: grid;
    align-items: end;
    padding: clamp(120px, 15vw, 190px) clamp(20px, 6vw, 80px) clamp(56px, 8vw, 90px);
    color: #ffffff;
    overflow: hidden;
    background: url("images/img1.jpg") center/cover no-repeat;
}

.hero::after,
.page-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background: rgba(0, 0, 0, 0.24);
    pointer-events: none;
}

.page-hero {
    min-height: 46vh;
    background-image: url("images/img3.jpg");
}

.page-hero.compact {
    min-height: 38vh;
}

.news-hero {
    background-image: url("images/img2.jpg");
}

.gallery-hero {
    background-image: url("images/img5.jpg");
}

.page-home .hero {
    background-image: url("images/home.png");
}

.page-about .page-hero {
    background-image: url("images/img3.jpg");
}

.page-news .news-hero {
    background-image: url("images/img2.jpg");
}

.page-gallery .gallery-hero {
    background-image: url("images/img5.jpg");
}

.page-contact .page-hero {
    color: #ffffff;
    background-image: url("images/img1.jpg");
}

.page-contact .page-hero .eyebrow {
    color: var(--gold);
}

.hero-content,
.page-hero > * {
    position: relative;
    z-index: 1;
    max-width: 760px;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.95), 0 12px 34px rgba(0, 0, 0, 0.85);
}

.hero-content::before,
.page-hero > *::before {
    content: "";
    position: absolute;
    inset: -28px -34px;
    z-index: -1;
    border-radius: var(--radius);
    background: radial-gradient(circle at left center, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.22) 52%, transparent 74%);
    pointer-events: none;
}

.hero h1,
.page-hero h1 {
    margin: 0;
    font-size: clamp(40px, 7vw, 76px);
    line-height: 0.98;
    letter-spacing: 0;
}

.hero-lead {
    max-width: 650px;
    margin: 22px 0 0;
    font-size: clamp(18px, 2vw, 22px);
    color: rgba(255, 255, 255, 0.88);
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--gold);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.section-heading h2,
.split-copy h2,
.contact-card h2,
.signup-aside h2,
.gallery-intro h2 {
    position: relative;
}

.section-heading h2::after,
.split-copy h2::after,
.contact-card h2::after,
.signup-aside h2::after,
.gallery-intro h2::after {
    content: "";
    display: block;
    width: 72px;
    height: 3px;
    margin-top: 16px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--gold), rgba(243, 179, 79, 0));
}

.hero-actions,
.social-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.social-icon {
    display: inline-grid;
    place-items: center;
    flex: 0 0 auto;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    color: #ffffff;
    font-size: 15px;
    font-weight: 900;
    line-height: 1;
}

.facebook-icon {
    background: #1877f2;
    font-family: Arial, Helvetica, sans-serif;
}

.instagram-icon {
    position: relative;
    background: radial-gradient(circle at 72% 22%, #ffd76f 0 9%, transparent 10%), linear-gradient(135deg, #7b2ff7, #f107a3 48%, #ff8a00);
}

.instagram-icon::before {
    content: "";
    width: 10px;
    height: 10px;
    border: 2px solid #ffffff;
    border-radius: 4px;
}

.instagram-icon::after {
    content: "";
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #ffffff;
    transform: translate(5px, -5px);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 18px;
    border: 0;
    border-radius: var(--radius);
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
}

.btn.primary {
    color: #ffffff;
    background: var(--accent);
}

.btn.primary:hover {
    background: var(--accent-dark);
}

.btn.secondary {
    color: var(--ink);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--line);
}

.btn.secondary:hover {
    background: rgba(255, 255, 255, 0.16);
}

.hero-panel {
    position: relative;
    z-index: 1;
    justify-self: end;
    width: min(360px, 100%);
    margin-top: 42px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.13);
    backdrop-filter: blur(10px);
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.9);
}

.hero-panel strong,
.hero-panel span,
.hero-panel a {
    display: block;
}

.hero-panel a {
    margin-top: 10px;
    color: #ffffff;
    font-weight: 800;
}

.section {
    padding: clamp(54px, 8vw, 92px) clamp(20px, 6vw, 80px);
}

.section-heading {
    max-width: 760px;
    margin-bottom: 30px;
}

.section-heading h2,
.split-copy h2,
.cta-band h2,
.contact-card h2,
.signup-aside h2 {
    margin: 0 0 14px;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.08;
}

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

.feature-grid.three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card,
.news-card,
.contact-card,
.signup-form,
.signup-aside {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow);
}

.feature-card,
.trainer-card,
.stat-card,
.process-card,
.audience-card,
.news-tile,
.music-card,
.event-card,
.contact-card,
.signup-form,
.signup-aside {
    position: relative;
}

.feature-card::before,
.trainer-card::before,
.stat-card::before,
.process-card::before,
.audience-card::before,
.news-tile::before,
.music-card::before,
.event-card::before,
.contact-card::before,
.signup-form::before,
.signup-aside::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 3px;
    border-radius: var(--radius) 0 0 var(--radius);
    background: linear-gradient(180deg, var(--gold), rgba(243, 179, 79, 0.08));
    opacity: 0.78;
}

.feature-card {
    padding: 24px;
}

.feature-icon,
.news-date {
    display: inline-flex;
    margin-bottom: 18px;
    color: var(--gold);
    font-weight: 900;
}

.feature-card h3,
.trainer-card h3,
.news-card h2,
.news-card h3 {
    margin: 0 0 10px;
}

.feature-card p,
.trainer-card p,
.news-card p,
.contact-card p,
.split-copy p {
    color: var(--muted);
}

.split-section,
.signup-layout,
.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: clamp(24px, 5vw, 56px);
    align-items: center;
}

.split-image {
    width: 100%;
    min-height: 360px;
    max-height: 540px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.check-list {
    padding: 0;
    margin: 22px 0 0;
    list-style: none;
}

.check-list li {
    position: relative;
    margin: 10px 0;
    padding-left: 26px;
}

.check-list li::before {
    content: "";
    position: absolute;
    top: 0.68em;
    left: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 0 5px var(--gold-soft);
}

.trainers-section,
.values-section,
.gallery-section {
    background: #111624;
}

.page-home .intro-section {
    background: radial-gradient(circle at top right, rgba(228, 63, 90, 0.14), transparent 34%), #0e111b;
}

.page-home .split-section {
    background: #f7f2ec;
    color: #15131a;
}

.page-home .split-section .eyebrow,
.page-home .split-section .check-list li::before {
    color: var(--accent);
}

.page-home .split-section p,
.page-home .split-section .check-list {
    color: #4d4652;
}

.page-home .trainers-section {
    background: linear-gradient(180deg, #111624, #17101a);
}

.page-about .about-intro-section {
    background: #f7f2ec;
    color: #15131a;
}

.page-about .about-intro-section .eyebrow {
    color: #9c6a18;
}

.page-about .about-intro-section p,
.page-about .stat-card span {
    color: #5b5360;
}

.page-about .stat-card {
    background: #ffffff;
    border-color: rgba(156, 106, 24, 0.24);
}

.page-about .process-section {
    background: linear-gradient(135deg, #0b0b10, #18110b);
}

.page-about .mini-trainers-section {
    background: linear-gradient(135deg, #19120a, #34220c);
}

.page-about .audience-section {
    background: #10131d;
}

.page-news .news-board-section {
    background: #211c24;
    color: #15131a;
}

.page-news .news-board-section .eyebrow {
    color: var(--gold);
}

.page-news .highlight-news {
    color: #ffffff;
    border-color: var(--gold-line);
    background: linear-gradient(135deg, #15131a, #8f2437 62%, #4a310f);
}

.page-news .news-tile {
    color: var(--ink);
    background: #2a2430;
    border-color: var(--gold-line);
}

.page-news .news-tile p {
    color: var(--muted);
}

.page-news .music-section {
    background: linear-gradient(135deg, #111624, #211018);
}

.page-news .events-section {
    background: #0e111b;
}

.page-gallery .gallery-section {
    background: radial-gradient(circle at top left, rgba(228, 63, 90, 0.18), transparent 30%), #070910;
}

.page-contact .contact-signup-layout {
    background: #17131a;
}

.page-contact .contact-card,
.page-contact .signup-aside,
.page-contact .signup-form {
    color: var(--ink);
    background: #211c24;
    border-color: var(--gold-line);
}

.page-contact .contact-card p,
.page-contact .signup-aside li,
.page-contact .form-note {
    color: var(--muted);
}

.page-contact .signup-form input,
.page-contact .signup-form select,
.page-contact .signup-form textarea {
    color: var(--ink);
    background: #15121a;
    border-color: rgba(243, 179, 79, 0.22);
}

.page-contact .signup-form input:focus,
.page-contact .signup-form select:focus,
.page-contact .signup-form textarea:focus {
    outline: 2px solid rgba(243, 179, 79, 0.38);
    border-color: var(--gold);
}

.page-contact .signup-form input::placeholder,
.page-contact .signup-form textarea::placeholder {
    color: #8e8798;
}

.trainer-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.trainer-card {
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow);
}

.trainer-card img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: top center;
}

.trainer-placeholder {
    display: grid;
    place-items: center;
    width: 100%;
    aspect-ratio: 4 / 5;
    color: #ffffff;
    background: linear-gradient(135deg, rgba(228, 63, 90, 0.92), rgba(243, 179, 79, 0.7)), var(--navy);
    font-size: clamp(52px, 7vw, 82px);
    font-weight: 900;
}

.trainer-card div {
    padding: 22px;
}

.trainer-card .trainer-placeholder {
    padding: 0;
}

.trainer-role {
    margin: -4px 0 12px;
    color: var(--gold);
    font-weight: 800;
}

.cta-band {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 48px clamp(20px, 6vw, 80px);
    color: #ffffff;
    border-top: 1px solid var(--gold-line);
    border-bottom: 1px solid var(--gold-line);
    background: linear-gradient(135deg, #161d31, #2a1322 62%, #4a310f);
}

.news-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: 18px;
}

.news-card {
    padding: 28px;
}

.song-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.song-columns ul {
    padding-left: 18px;
    color: var(--muted);
}

.text-link {
    color: var(--gold);
    font-weight: 800;
}

.about-intro-section {
    background: radial-gradient(circle at top left, rgba(228, 63, 90, 0.16), transparent 34%), var(--paper);
}

.about-intro {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.78fr);
    gap: clamp(24px, 5vw, 56px);
    align-items: center;
}

.about-intro h2,
.highlight-news h2 {
    margin: 0 0 16px;
    font-size: clamp(32px, 5vw, 58px);
    line-height: 1.04;
}

.about-intro p,
.highlight-news p {
    color: var(--muted);
}

.about-intro img {
    width: 100%;
    min-height: 360px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.stats-grid,
.process-grid,
.audience-grid,
.news-tile-grid,
.music-grid,
.events-list {
    display: grid;
    gap: 16px;
}

.stats-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 20px;
}

.stat-card,
.process-card,
.audience-card,
.news-tile,
.music-card,
.event-card,
.highlight-news,
.mini-trainers {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow);
}

.stat-card {
    padding: 22px;
}

.stat-card strong {
    display: block;
    color: var(--gold);
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1;
}

.stat-card span,
.process-card p,
.audience-card p,
.news-tile p,
.music-card li,
.event-card p,
.mini-trainers p {
    color: var(--muted);
}

.process-section,
.music-section {
    background: #111624;
}

.process-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.process-card,
.audience-card,
.news-tile,
.music-card,
.event-card {
    padding: 24px;
}

.process-card span,
.news-tile span,
.music-card span,
.event-card span {
    display: inline-flex;
    margin-bottom: 14px;
    padding: 6px 10px;
    border: 1px solid var(--gold-line);
    border-radius: 999px;
    color: var(--gold);
    background: var(--gold-soft);
    font-weight: 900;
}

.process-card h3,
.audience-card h3,
.news-tile h3,
.music-card h3,
.event-card h3 {
    margin: 0 0 10px;
}

.mini-trainers-section {
    background: linear-gradient(135deg, #161d31, #2a1322);
}

.mini-trainers,
.highlight-news {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: clamp(24px, 5vw, 42px);
}

.mini-trainers h2 {
    max-width: 840px;
    margin: 0 0 14px;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.08;
}

.audience-grid,
.news-tile-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.news-board-section {
    background: radial-gradient(circle at top right, rgba(243, 179, 79, 0.13), transparent 32%), var(--paper);
}

.highlight-news {
    margin-bottom: 18px;
    background: linear-gradient(135deg, rgba(228, 63, 90, 0.22), rgba(23, 27, 40, 0.96));
}

.music-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.music-card ul {
    padding-left: 18px;
    margin: 12px 0 0;
}

.music-card li {
    display: grid;
    grid-template-columns: minmax(120px, 0.45fr) minmax(0, 1fr);
    gap: 12px;
    margin: 0;
    padding: 10px 0;
    border-bottom: 1px solid rgba(243, 179, 79, 0.16);
}

.music-card li:last-child {
    border-bottom: 0;
}

.music-card li strong {
    color: var(--gold);
}

.music-card li span {
    color: var(--muted);
}

.events-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gallery-intro {
    margin-bottom: 28px;
}

.gallery-intro h2 {
    max-width: 720px;
    margin: 0;
    font-size: clamp(30px, 4vw, 52px);
    line-height: 1.05;
}

.gallery-showcase {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: 230px;
    gap: 16px;
}

.album-card {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 230px;
    padding: 18px;
    border: 1px solid var(--gold-line);
    border-radius: var(--radius);
    color: #ffffff;
    text-align: left;
    background: var(--navy);
    cursor: pointer;
    box-shadow: var(--shadow);
}

.album-card-large {
    grid-column: span 2;
    grid-row: span 2;
}

.album-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(180deg, rgba(10, 12, 22, 0.08), rgba(10, 12, 22, 0.86));
}

.album-card::after {
    content: "";
    position: absolute;
    inset: 12px;
    z-index: -1;
    border: 1px solid rgba(243, 179, 79, 0.48);
    border-radius: calc(var(--radius) - 2px);
    opacity: 0;
    transform: scale(0.98);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.album-card img {
    position: absolute;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease, filter 0.45s ease;
}

.album-card strong {
    max-width: 92%;
    font-size: clamp(24px, 3vw, 42px);
    line-height: 1;
}

.album-card:not(.album-card-large) strong {
    font-size: 24px;
}

.album-card small {
    max-width: 92%;
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
}

.album-card:hover img,
.album-card:focus-visible img {
    filter: saturate(1.12) contrast(1.05);
    transform: scale(1.07);
}

.album-card:hover::after,
.album-card:focus-visible::after {
    opacity: 1;
    transform: scale(1);
}

.gallery-modal,
.fullscreen-overlay {
    position: fixed;
    inset: 0;
    z-index: 40;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(7, 9, 16, 0.9);
    backdrop-filter: blur(18px);
}

.gallery-modal.open,
.fullscreen-overlay {
    display: flex;
}

.gallery-dialog {
    width: min(1180px, 100%);
    max-height: min(86vh, 900px);
    overflow: hidden;
    border: 1px solid var(--gold-line);
    border-radius: var(--radius);
    background: rgba(23, 27, 40, 0.96);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.5);
}

.gallery-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 22px;
    border-bottom: 1px solid var(--gold-line);
}

.gallery-toolbar h2 {
    margin: 0;
    font-size: clamp(26px, 4vw, 42px);
    line-height: 1;
}

.modal-close {
    flex: 0 0 auto;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 50%;
    color: #ffffff;
    background: linear-gradient(135deg, var(--accent), #9c6a18);
    font-size: 28px;
    cursor: pointer;
}

.modal-photos {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
    gap: 12px;
    max-height: calc(86vh - 128px);
    overflow: auto;
    padding: 16px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.modal-photos::-webkit-scrollbar {
    display: none;
}

.gallery-thumb {
    position: relative;
    overflow: hidden;
    min-height: 170px;
    padding: 0;
    border: 0;
    border-radius: var(--radius);
    background: var(--surface-soft);
    cursor: pointer;
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-thumb:hover img,
.gallery-thumb:focus-visible img {
    transform: scale(1.06);
}

.fullscreen-overlay {
    z-index: 50;
}

.fullscreen-viewer {
    display: grid;
    gap: 14px;
    justify-items: center;
}

.fullscreen-img {
    max-width: 92vw;
    max-height: 78vh;
    border-radius: var(--radius);
    object-fit: contain;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.48);
}

.nav-btn {
    position: fixed;
    top: 50%;
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border: 1px solid var(--gold-line);
    border-radius: 50%;
    color: #ffffff;
    background: rgba(243, 179, 79, 0.14);
    font-size: 36px;
    cursor: pointer;
    backdrop-filter: blur(12px);
}

.prev-btn {
    left: 18px;
}

.next-btn {
    right: 18px;
}

.contact-grid,
.signup-layout {
    align-items: start;
}

.contact-signup-layout {
    display: grid;
    grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
    gap: clamp(24px, 5vw, 56px);
    align-items: start;
}

.contact-stack {
    display: grid;
    gap: 18px;
}

.contact-card,
.signup-form,
.signup-aside {
    padding: 28px;
}

.signup-form {
    display: grid;
    gap: 16px;
}

.signup-form label {
    display: grid;
    gap: 7px;
    color: var(--ink);
    font-weight: 800;
}

.signup-form input,
.signup-form select,
.signup-form textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 13px 14px;
    color: var(--ink);
    background: var(--surface-soft);
    font: inherit;
}

.signup-form input::placeholder,
.signup-form textarea::placeholder {
    color: #858094;
}

.form-note {
    margin: 0;
    color: var(--muted);
}

.site-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 18px;
    padding: 28px clamp(20px, 6vw, 80px);
    color: #ffffff;
    background: #080a12;
}

.site-footer p {
    margin: 0;
}

.site-footer div {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.site-footer a {
    color: #ffffff;
    text-decoration: none;
}

.project-credit {
    flex: 0 1 auto;
    margin: 0;
    padding: 0;
    border-top: 0;
    color: var(--muted);
    font-size: 14px;
    text-align: right;
}

.project-credit a {
    color: var(--gold);
    font-weight: 800;
}

.standalone-credit {
    border-top: 0;
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 980px) {
    .menu-toggle {
        display: inline-grid;
        place-items: center;
    }

    .main-nav {
        position: absolute;
        top: 73px;
        left: 16px;
        right: 16px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 12px;
        border: 1px solid var(--line);
        border-radius: var(--radius);
        background: #111624;
        box-shadow: var(--shadow);
    }

    .main-nav.open {
        display: flex;
    }

    .main-nav a {
        border-radius: var(--radius);
    }

    .album-card-large {
        grid-column: span 1;
    }

    .feature-grid,
    .feature-grid.three,
    .trainer-grid,
    .stats-grid,
    .process-grid,
    .audience-grid,
    .news-tile-grid,
    .music-grid,
    .events-list,
    .about-intro,
    .gallery-showcase,
    .news-layout,
    .song-columns,
    .split-section,
    .signup-layout,
    .contact-grid,
    .contact-signup-layout {
        grid-template-columns: 1fr;
    }

    .hero-panel {
        justify-self: start;
    }

    .mini-trainers,
    .highlight-news {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 620px) {
    .brand span {
        max-width: 170px;
        white-space: normal;
        line-height: 1.1;
    }

    .hero,
    .page-hero {
        min-height: 62vh;
    }

    .hero h1,
    .page-hero h1 {
        font-size: 40px;
    }

    .cta-band,
    .site-footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .gallery-intro {
        align-items: flex-start;
        flex-direction: column;
    }

    .gallery-showcase {
        grid-auto-rows: 220px;
    }

    .album-card-large {
        grid-row: span 1;
    }

    .nav-btn {
        top: auto;
        bottom: 18px;
    }
}

.contact-only-section {
    display: grid;
    gap: 18px;
    background: #17131a;
}

.contact-main-card {
    max-width: 980px;
}

.contact-main-card h2 {
    max-width: 780px;
}

.contact-main-card p:not(.eyebrow) {
    max-width: 720px;
}

.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

@media (max-width: 980px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
}

.page-news .news-hero {
    min-height: clamp(430px, 36vw, 560px);
    background-position: center center;
}


.page-about .about-intro img {
    object-fit: contain;
    background: #f4eee7;
}


/* Niezalezne obrazy i kadrowanie dla kazdej podstrony */
.home-hero {
    background-image: url("images/home.png");
    background-position: center center;
    background-size: cover;
}

.page-about .about-hero {
    background-image: url("images/img3.jpg");
    background-position: center center;
    background-size: cover;
}

.page-news .news-hero {
    background-image: url("images/img2.jpg");
    min-height: clamp(430px, 36vw, 560px);
    background-position: center center;
    background-size: cover;
}

.page-gallery .gallery-hero {
    background-image: url("images/img5.jpg");
    background-position: center center;
    background-size: cover;
}

.page-contact .contact-hero {
    background-image: url("images/img1.jpg");
    background-position: center 42%;
    background-size: cover;
}

.page-about .about-intro .about-story-image {
    object-fit: contain;
    object-position: center center;
    background: #f4eee7;
}
