:root {
    --primary-color: #A04000;
    --secondary-color: #1A2A3A;
    --accent-color: #D4AC0D;
    --text-color: #333;
    --light-bg-color: #FDFEFE;
    --dark-bg-color: #17202A;
    --font-main: 'Montserrat', sans-serif;
    --font-headings: 'Roboto Slab', serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text-color);
    background-color: var(--light-bg-color);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-headings);
    color: var(--secondary-color);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-color);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease-out, transform 0.8s ease-out;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    background: linear-gradient(180deg, rgba(253, 254, 254, 1) 0%, rgba(253, 254, 254, 0.8) 100%);
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main-navigation {
    order: 1;
}

.nav-list {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-item a {
    font-family: var(--font-headings);
    font-weight: 500;
    color: var(--secondary-color);
    font-size: 1.1rem;
    position: relative;
    padding-bottom: 5px;
}

.nav-item a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.nav-item a:hover::after {
    width: 100%;
}

.logo-container {
    order: 2;
}

.logo {
    font-family: var(--font-headings);
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--primary-color);
    letter-spacing: -1px;
}

.logo span {
    color: var(--secondary-color);
}

.burger-menu {
    display: none;
    order: 3;
    cursor: pointer;
    z-index: 1010;
    background: none;
    border: none;
}

.burger-bar {
    display: block;
    width: 28px;
    height: 3px;
    margin: 6px auto;
    background-color: var(--secondary-color);
    transition: all 0.3s ease-in-out;
}

.burger-menu.is-active .burger-bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.burger-menu.is-active .burger-bar:nth-child(2) {
    opacity: 0;
}

.burger-menu.is-active .burger-bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.site-footer {
    background-color: var(--dark-bg-color);
    color: #ccc;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.footer-grid-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 50px;
}

.footer-column h4 {
    color: var(--light-bg-color);
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 40px;
    height: 2px;
    background-color: var(--accent-color);
}

.footer-about p {
    margin-bottom: 20px;
    font-size: 0.9rem;
    max-width: 350px;
}

.social-links {
    list-style: none;
    display: flex;
    gap: 15px;
}

.social-links a {
    color: #fff;
    font-size: 1.5rem;
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
    color: var(--accent-color);
}

.footer-nav-list {
    list-style: none;
}

.footer-nav-list a {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 2.2;
}

.footer-contacts-list {
    list-style: none;
}

.footer-contacts-list li {
    display: flex;
    align-items: start;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-contacts-list i {
    color: var(--accent-color);
    margin-top: 5px;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding: 20px 0;
    text-align: center;
    font-size: 0.85rem;
    color: #888;
}

.hero-section {
    padding-top: 120px;
    padding-bottom: 60px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-content-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    gap: 50px;
}

.hero-text-zone {
    z-index: 2;
}

.hero-text-zone .sub-heading {
    font-family: var(--font-main);
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.hero-text-zone h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero-text-zone p {
    font-size: 1.1rem;
    margin-bottom: 35px;
    max-width: 500px;
}

.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: #fff;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 700;
    transition: background-color 0.3s, transform 0.3s;
}

.cta-button:hover {
    background-color: var(--accent-color);
    color: var(--secondary-color);
    transform: translateY(-3px);
}

.hero-image-zone {
    position: relative;
}

.hero-image-zone .main-image {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    clip-path: polygon(0 0, 100% 15%, 100% 100%, 0 85%);
}

.hero-shape-decorator {
    position: absolute;
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, var(--accent-color), var(--primary-color));
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    top: 10%;
    right: -10%;
}

.categories-showcase {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-subtitle {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px auto;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 250px);
    gap: 20px;
    grid-template-areas:
        "guitars guitars keys"
        "drums audio studio";
}

.category-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 25px;
    color: #fff;
    transition: transform 0.4s ease;
}

.category-card:hover {
    transform: scale(1.03);
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 60%);
    z-index: 1;
}

.category-card img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-card:hover img {
    transform: scale(1.1);
}

.category-content {
    position: relative;
    z-index: 2;
}

.category-content h3 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 5px;
}

#cat-guitars {
    grid-area: guitars;
}

#cat-keys {
    grid-area: keys;
}

#cat-drums {
    grid-area: drums;
}

#cat-audio {
    grid-area: audio;
}

#cat-studio {
    grid-area: studio;
}


.philosophy-opus-section {
    padding: 100px 0;
    background-color: #f7f8fa;
}

.philosophy-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: center;
}

.philosophy-image-stack {
    position: relative;
    height: 450px;
}

.philosophy-image-stack .stack-image-back {
    position: absolute;
    width: 80%;
    height: 80%;
    object-fit: cover;
    border-radius: 10px;
    bottom: 0;
    left: 0;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    filter: grayscale(50%);
}

.philosophy-image-stack .stack-image-front {
    position: absolute;
    width: 70%;
    height: 70%;
    object-fit: cover;
    border-radius: 10px;
    top: 0;
    right: 0;
    border: 5px solid #fff;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.4s ease;
}

.philosophy-image-stack:hover .stack-image-front {
    transform: scale(1.05) rotate(2deg);
}

.philosophy-content-card {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.philosophy-pillars {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    margin-bottom: 30px;
}

.pillar-item .pillar-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.pillar-item h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.featured-gear-section {
    padding: 80px 0;
}

.gear-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.gear-card {
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s, transform 0.3s;
}

.gear-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.gear-image {
    height: 250px;
}

.gear-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gear-info {
    padding: 20px;
}

.gear-info h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.gear-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
}

.gear-price span {
    font-size: 0.9rem;
    color: #999;
    text-decoration: line-through;
    margin-left: 10px;
}

.no-results {
    display: none;
    width: 100%;
    text-align: center;
    font-size: 1.2rem;
    grid-column: 1 / -1;
}

.brands-marquee {
    padding: 60px 0;
    background-color: var(--secondary-color);
    overflow: hidden;
    white-space: nowrap;
}

.brands-track {
    display: inline-block;
    animation: marquee 40s linear infinite;
}

.brand-logo {
    display: inline-block;
    height: 40px;
    margin: 0 40px;
    filter: grayscale(100%) brightness(200%);
    opacity: 0.8;
    transition: filter 0.3s, opacity 0.3s;
}

.brand-logo:hover {
    filter: none;
    opacity: 1;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.community-hub {
    padding: 100px 0;
}

.community-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.community-image-container {
    border-radius: 15px;
    overflow: hidden;
}

.community-text h2 {
    font-size: 2.5rem;
}

.community-text p {
    margin: 20px 0 30px;
}

.event-list-item {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.event-date {
    background: var(--primary-color);
    color: #fff;
    border-radius: 8px;
    padding: 10px;
    text-align: center;
    font-weight: 700;
}

.event-date span {
    display: block;
    font-size: 1.5rem;
    line-height: 1;
}

.testimonials-wave {
    padding: 100px 0;
    background-color: #f7f8fa;
    position: relative;
}

.testimonials-wave::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23FDFEFE' fill-opacity='1' d='M0,160L48,170.7C96,181,192,203,288,208C384,213,480,203,576,170.7C672,139,768,85,864,80C960,75,1056,117,1152,144C1248,171,1344,181,1392,186.7L1440,192L1440,0L1392,0C1344,0,1248,0,1152,0C1056,0,960,0,864,0C768,0,672,0,576,0C480,0,384,0,288,0C192,0,96,0,48,0L0,0Z'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: cover;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    border-left: 5px solid var(--accent-color);
}

.testimonial-quote {
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
}

.testimonial-quote::before {
    content: '“';
    font-family: serif;
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.2;
    position: absolute;
    top: -20px;
    left: -15px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    font-weight: 700;
}

.final-cta-section {
    padding: 80px 0;
    text-align: center;
    background-color: var(--secondary-color);
    color: #fff;
}

.final-cta-section h2 {
    color: #fff;
    font-size: 2.8rem;
    max-width: 700px;
    margin: 0 auto 20px;
}

.final-cta-section p {
    max-width: 600px;
    margin: 0 auto 30px;
    opacity: 0.9;
}


.page-header {
    padding: 150px 0 80px;
    background: var(--secondary-color);
    color: #fff;
    text-align: center;
}

.page-header h1 {
    font-size: 3.5rem;
    color: #fff;
}

.page-header p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 15px auto 0;
    opacity: 0.8;
}

.story-section {
    padding: 100px 0;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-image-collage {
    position: relative;
    height: 500px;
}

.collage-img {
    position: absolute;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    object-fit: cover;
}

.collage-img-1 {
    width: 70%;
    height: 70%;
    top: 0;
    left: 0;
    z-index: 1;
}

.collage-img-2 {
    width: 60%;
    height: 60%;
    bottom: 0;
    right: 0;
    border: 5px solid #fff;
}

.timeline-helix-section {
    padding: 100px 0;
    background: #f7f8fa;
}

.timeline-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-container::after {
    content: '';
    position: absolute;
    width: 4px;
    background-color: var(--primary-color);
    opacity: 0.2;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -10px;
    background-color: #fff;
    border: 4px solid var(--primary-color);
    top: 20px;
    border-radius: 50%;
    z-index: 1;
}

.timeline-left {
    left: 0;
    text-align: right;
}

.timeline-right {
    left: 50%;
}

.timeline-right::after {
    left: -10px;
}

.timeline-content {
    padding: 20px 30px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.timeline-content .year {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.team-mosaic-section {
    padding: 100px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.team-member-card {
    text-align: center;
}

.member-photo {
    position: relative;
    margin-bottom: 20px;
}

.member-photo img {
    border-radius: 50%;
    width: 180px;
    height: 180px;
    object-fit: cover;
    margin: 0 auto;
    border: 5px solid #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.member-info h3 {
    font-size: 1.4rem;
}

.member-info .role {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 10px;
}

.gallery-showcase-section {
    padding: 100px 0;
    background: var(--dark-bg-color);
}

.gallery-showcase-section .section-title,
.gallery-showcase-section .section-subtitle {
    color: #fff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
    grid-auto-flow: dense;
    gap: 15px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 10px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.g-item-h-2 {
    grid-row: span 2;
}

.g-item-w-2 {
    grid-column: span 2;
}

.catalog-filter-bar {
    padding: 30px 0;
    background: #f7f8fa;
    border-bottom: 1px solid #eee;
}

.filter-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.filter-controls .search-box input {
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    width: 300px;
}

.filter-controls .sort-box select {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.product-grid-section {
    padding: 80px 0;
}

.product-grid-container {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 40px;
}

.sidebar-filters h3 {
    margin-bottom: 20px;
}

.filter-group {
    margin-bottom: 30px;
}

.filter-group ul {
    list-style: none;
}

.filter-group ul li button {
    background-color: transparent;
    border: 0;
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--text-color);
}

.sidebar-filters .filter-group button.active {
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: underline;
}

.reset-button {
    color: var(--secondary-color);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    background-color: #f0f0f0;
    padding: 8px 15px;
    margin-top: 20px;
    display: inline-block;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.reset-button:hover {
    background-color: #e0e0e0;
    color: var(--secondary-color);
}

.main-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 30px;
}

.gear-card .gear-info {
    text-align: center;
}

.promo-banner-section {
    margin: 80px 0;
    height: 400px;
    background-image: url('../images/promo.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
}

.promo-banner-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
}

.promo-content {
    position: relative;
    z-index: 2;
}

.promo-content h2 {
    font-size: 3rem;
    color: #fff;
}

.guide-section {
    padding: 80px 0;
    background: #f7f8fa;
}

.guide-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.guide-image img {
    border-radius: 10px;
}

.guide-steps .step {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.step-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1;
}

.contact-main-section {
    padding: 100px 0;
}

.contact-grid-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    background: #fff;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.contact-info-block h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contact-info-list {
    list-style: none;
    margin-top: 30px;
}

.contact-info-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.contact-info-list i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.contact-map-container {
    margin-top: 30px;
    height: 250px;
    background: #eee;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
}

.contact-form-block form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: var(--font-main);
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(160, 64, 0, 0.2);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-button {
    align-self: flex-start;
    border: none;
    cursor: pointer;
}

.faq-section {
    padding: 100px 0;
    background: #f7f8fa;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #ddd;
}

.faq-item summary {
    padding: 20px 0;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 2rem;
    color: var(--primary-color);
    transition: transform 0.3s;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding-bottom: 20px;
}

.thanks-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 80vh;
}

.thanks-page .icon {
    font-size: 5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.thanks-page h1 {
    font-size: 3rem;
}

.thanks-page p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.text-page-section {
    padding: 150px 0 80px;
    background-color: #f7f8fa;
}

.text-content-wrapper {
    max-width: 850px;
    margin: 0 auto;
    background: #fff;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.07);
}

.text-content-wrapper h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    text-align: center;
}

.text-content-wrapper h2 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.text-content-wrapper h3 {
    font-size: 1.4rem;
    margin-top: 25px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.text-content-wrapper p,
.text-content-wrapper li {
    line-height: 1.8;
    margin-bottom: 15px;
    color: #555;
}

.text-content-wrapper ul,
.text-content-wrapper ol {
    padding-left: 25px;
}

.text-content-wrapper a {
    font-weight: 600;
    text-decoration: underline;
}

.text-content-wrapper strong {
    color: var(--secondary-color);
}

.last-updated {
    text-align: center;
    color: #888;
    margin-bottom: 30px;
    font-style: italic;
}

iframe {
    border: 0;
}

.text-left {
    text-align: left;
}

@media (max-width: 992px) {
    .header-container {
        flex-wrap: wrap;
    }

    .main-navigation {
        order: 3;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease-out;
    }

    .nav-list {
        flex-direction: column;
        padding: 20px 0;
        text-align: center;
    }

    .main-navigation.is-active {
        max-height: 400px;
    }

    .burger-menu {
        display: block;
        order: 2;
    }

    .logo-container {
        order: 1;
    }

    .hero-content-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text-zone {
        order: 2;
    }

    .hero-image-zone {
        order: 1;
        margin-bottom: 40px;
    }

    .hero-text-zone p {
        margin-left: auto;
        margin-right: auto;
    }

    .categories-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-areas: "guitars keys" "drums audio" "studio studio";
    }

    .philosophy-container {
        grid-template-columns: 1fr;
    }

    .community-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid-container {
        grid-template-columns: 1fr 1fr;
    }

    .story-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr 1fr;
    }

    .product-grid-container {
        grid-template-columns: 1fr;
    }

    .sidebar-filters {
        display: none;
    }

    .guide-content-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 15px;
    }

    h1 {
        font-size: 2.8rem !important;
    }

    h2 {
        font-size: 2rem !important;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .categories-grid {
        grid-template-columns: 1fr;
        grid-template-areas: "guitars" "keys" "drums" "audio" "studio";
        grid-template-rows: repeat(5, 200px);
    }

    .philosophy-content-card {
        padding: 30px;
    }

    .philosophy-pillars {
        flex-direction: column;
    }

    .footer-grid-container {
        grid-template-columns: 1fr;
    }

    .timeline-container::after {
        left: 10px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 50px;
        padding-right: 10px;
    }

    .timeline-item::after {
        left: 0;
    }

    .timeline-left,
    .timeline-right {
        left: 0;
        text-align: left;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }

    .g-item-w-2 {
        grid-column: span 2;
    }

    .filter-controls {
        flex-direction: column;
        justify-content: center;
        align-items: start;
        gap: 10px;
    }

    .search-box {
        width: 100%;
    }

    .filter-controls .search-box input {
        width: 100%;
    }

    .gear-grid {
        grid-template-columns: 1fr;
    }

    .community-text h2 {
        font-size: 1.5rem !important;
    }

    .contact-grid-wrapper {
        padding: 30px 10px;
    }

    .contact-info-list a {
        font-size: 0.9rem;
    }

    .text-content-wrapper {
        padding: 30px 10px;
    }

    .text-content-wrapper h1,
    .text-content-wrapper h2 {
        font-size: 1.2rem !important;
    }

    .page-header h1 {
        font-size: 2rem !important;
    }

    .thanks-page {
        margin-top: 50px;
    }
}