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

@font-face {
    font-family: 'TSBlockBold';
    src: url('../fonts/tsblockbold.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #0b0b0b;
    color: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
}

/* ---------------- HEADER ---------------- */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(0,0,0,0.35);
    backdrop-filter: blur(10px);
}

.logo-text {
    font-family: 'TSBlockBold', sans-serif;
    font-size: 24px;
    letter-spacing: 3px;
}

.top-nav {
    display: flex;
    gap: 30px;
}

.top-nav a {
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.top-nav a:hover {
    color: #00d2ff;
}

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

.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
}

.hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 25px;
    text-align: center;
    padding: 20px;
}

.hero-logo {
    width: 240px;
}

.hero h1 {
    font-family: 'TSBlockBold', sans-serif;
    font-size: 42px;
    line-height: 1.15;
    max-width: 820px;
}

.hero-features {
    font-family: 'TSBlockBold', sans-serif;
    font-size: 18px;
    letter-spacing: 2px;
    color: #ff3b3b;
    margin-top: -10px;
}

.hero p {
    max-width: 700px;
    font-size: 22px;
    color: #d0d0d0;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn {
    padding: 16px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.main-btn {
    background: #e31b1b;
    color: white;
}

.main-btn:hover {
    transform: translateY(-3px);
}

.second-btn {
    border: 1px solid white;
    color: white;
}

.second-btn:hover {
    background: white;
    color: black;
}

/* ---------------- SECTIONS ---------------- */

.section {
    padding: 120px 10%;
}

.section h2 {
    font-family: 'TSBlockBold', sans-serif;
    font-size: 26px;
    line-height: 1.15;
    margin-bottom: 30px;
}

.section p {
    color: #cfcfcf;
}

/* ---------------- STUDIO ---------------- */

.studio-intro {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.wide-image {
    width: 100%;
    border-radius: 14px;
}

/* ---------------- FULLWIDTH IMAGE ---------------- */

.fullwidth-image {
    width: 100%;
    height: 80vh;
    overflow: hidden;
}

.fullwidth-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ---------------- CARDS ---------------- */

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

.card {
    background: #151515;
    padding: 30px;
    border-radius: 14px;
}

.card h3 {
    margin-bottom: 15px;
}

/* ---------------- GALLERY ---------------- */

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.gallery-grid img {
    width: 100%;
    border-radius: 14px;
}

/* ---------------- VIDEO ---------------- */

.video-section {
    position: relative;
    height: 700px;
    overflow: hidden;
}

.video-section video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-caption {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.video-caption h2 {
    font-family: 'TSBlockBold', sans-serif;
    font-size: 32px;
    line-height: 1.1;
    margin-bottom: 15px;
}

/* ---------------- PODCASTS ---------------- */

.podcast-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.podcast-card {
    background: #151515;
    border-radius: 14px;
    overflow: hidden;
}

.podcast-card img {
    width: 100%;
    display: block;
}

.podcast-card h3 {
    padding: 20px;
}

/* ---------------- PRICES ---------------- */

.prices {
    position: relative;
    background-image: url('../img/hero-desktop02.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.prices::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.78);
    z-index: 1;
}

.prices > * {
    position: relative;
    z-index: 2;
}

.prices-lead {
    max-width: 720px;
    margin-bottom: 40px;
    font-size: 20px;
}

.price-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.price-grid-new {
    grid-template-columns: repeat(2, 1fr);
}

.price-card {
    background: rgba(15,15,15,0.88);
    backdrop-filter: blur(8px);
    padding: 35px;
    border-radius: 14px;
}

.price-card h3 {
    margin-bottom: 20px;
}

.price {
    font-family: 'TSBlockBold', sans-serif;
    font-size: 42px;
    margin: 20px 0;
    color: #e00000;
}

.price-line {
    display: flex;
    justify-content: space-between;
    gap: 25px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255,255,255,0.12);
}

.price-line span {
    color: #cfcfcf;
}

.price-line strong {
    white-space: nowrap;
    color: #00d2ff;
    font-size: 22px;
}

.price.big-price {
    font-size: 38px;
    color: #e00000;
}

.price-note {
    margin-top: 22px;
    font-size: 15px;
    color: #888;
}

.main-price-card {
    background: linear-gradient(135deg, rgba(15,15,15,0.90), rgba(16,36,43,0.90));
}

/* ---------------- CONTACTS ---------------- */

.contacts {
    text-align: center;
}

.contact-buttons {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.contact-buttons a {
    padding: 18px 30px;
    background: #151515;
    border-radius: 10px;
    text-decoration: none;
    color: white;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-buttons a img {
    width: 34px;
    height: auto;
    display: block;
}

.contact-buttons a span {
    white-space: nowrap;
}

.contact-buttons a:hover {
    background: #00d2ff;
    color: black;
}
/* ---------------- SHORTS ---------------- */

.shorts-section {
    padding: 80px 5%;
    background: #0b0b0b;
}

.shorts-section h2 {
    font-family: 'TSBlockBold', sans-serif;
    font-size: 34px;
    line-height: 1.1;
    margin-bottom: 30px;
}

.shorts-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 18px;
}

.shorts-grid iframe {
    width: 100%;
    aspect-ratio: 9 / 16;
    border: none;
    border-radius: 14px;
    background: #000;
    display: block;
}
/* ---------------- FOOTER ---------------- */

.footer {
    padding: 40px;
    text-align: center;
    color: #888;
}

/* ---------------- MOBILE ---------------- */

@media (max-width: 900px) {

    .site-header {
        padding: 20px;
    }

    .top-nav {
        display: none;
    }

.logo-text {
    font-family: 'TSBlockBold', sans-serif;
    font-size: 18px;
    letter-spacing: 2px;
    width: 100%;
    text-align: center;
}

    .hero-logo {
        width: 170px;
    }

    .hero h1 {
        font-size: 32px;
        line-height: 1.1;
    }

    .hero p {
        font-size: 18px;
    }

    .hero-features {
        font-size: 13px;
        letter-spacing: 2px;
    }

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

    .section {
        padding: 80px 25px;
    }

    .section h2 {
        font-size: 24px;
        line-height: 1.15;
    }

    .cards,
    .gallery-grid,
    .podcast-grid,
    .price-grid,
    .price-grid-new {
        grid-template-columns: 1fr;
    }

    .video-section {
        height: 520px;
    }

    .video-caption h2 {
        font-size: 30px;
    }

    .price {
        font-size: 34px;
    }

    .price-line {
        flex-direction: column;
        gap: 5px;
    }

    .price-line strong {
        font-size: 24px;
    }

    .contact-buttons a {
        width: 100%;
        justify-content: center;
    }
	.shorts-section {
    padding: 70px 25px;
}

.shorts-section h2 {
    font-size: 30px;
}

.shorts-grid {
    grid-template-columns: 1fr;
    gap: 25px;
}
}
