/* =========================================================
   HERO — GENERIC TEMPLATE
   ========================================================= */

.hero {
    position: relative;
    min-height: 620px;
    background-color: var(--color-dark);
    overflow: hidden;
    display: flex;
    align-items: stretch;
}

.hero .container {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: none;
    position: relative;
    padding: 40px 5%;
}

.hero__slider {
    flex: 1 1 auto;
    width: 100%;
}

.hero .swiper-slide {
    position: relative;
    height: 100%;
}


/* =========================================================
   Hero Background
   ========================================================= */

.hero__bg {
    z-index: -2;
    position: absolute;
    inset: 0;
    background: var(--hero-bg-color, transparent);
}

.hero__bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--hero-overlay, transparent);
    pointer-events: none;
}

.hero__bg picture {
    display: block;
    width: 100%;
    height: 100%;
}

.hero__bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__bg-video--mobile {
    display: none;
}


/* =========================================================
   Hero Layout
   ========================================================= */

.hero__wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
    width: 100%;
    min-height: 540px;
}

.hero__content {
    display: grid;
    align-content: center;
    color: var(--color-light);
    margin: 0;
}

.hero__wrap.is-center {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
}

.hero__wrap.is-center .hero__content {
    justify-items: center;
    width: 100%;
    max-width: 800px;
    text-align: center;
}

.hero__wrap.is-center .hero__brand {
    margin-left: auto;
    margin-right: auto;
}

.hero__wrap.is-center .hero__text {
    margin-left: auto;
    margin-right: auto;
}

.hero__wrap.is-center .hero__cta {
    justify-content: center;
}


/* =========================================================
   Hero — Centred Layout
   ========================================================= */

.hero:has(.hero__wrap.is-center) {
    min-height: 0;
}

.hero:has(.hero__wrap.is-center) .container {
    padding-top: 45px;
    padding-bottom: 55px;
}

.hero__wrap.is-center {
    grid-template-columns: 1fr;
    justify-items: center;
    min-height: 0;
}

.hero__wrap.is-center .hero__content {
    justify-items: center;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero__wrap.is-center .hero__brand {
    margin: 0 auto;
}

.hero__wrap.is-center .hero__title {
    max-width: 950px;
    margin: 18px auto 18px;
    font-family: var(--font-condensed);
    font-size: clamp(58px, 7vw, 100px);
    font-weight: 800;
    line-height: .82;
    letter-spacing: -.045em;
    text-align: center;
    text-transform: uppercase;
}

.hero__wrap.is-center .hero__text {
    max-width: 620px;
    margin: 0 auto;
    font-family: var(--font);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
    text-align: center;
}

.hero__wrap.is-center .hero__cta {
    justify-content: center;
    margin-top: 24px;
}


/* =========================================================
   Hero Typography
   ========================================================= */

.hero__brand {
    height: auto;
    width: min(100%, 448px);
    margin: 0;
}

.hero__title {
    margin: 28px 0 20px;
    font-family: var(--font-condensed);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.36px;
    font-size: clamp(24px, 3vw, 36px);
    line-height: 1;
}

.hero__text {
    width: 100%;
    max-width: 600px;
    font-family: var(--font-base);
    font-size: 18px;
    line-height: 1.5;
}

.hero__cta {
    display: inline-flex;
    gap: 16px;
    margin-top: 28px;
}


/* =========================================================
   Hero Media
   ========================================================= */

.hero__media {
    width: 100%;
    justify-self: end;
    filter: drop-shadow(8px 12px 2px rgba(32, 32, 32, 0.2));
}

.hero__media img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}


/* =========================================================
   Hero Navigation
   ========================================================= */

.hero__nav {
    position: absolute;
    left: 50%;
    bottom: 22px;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    transform: translateX(-50%);
}

.hero__prev,
.hero__next {
    width: 24px;
    height: 24px;
}

.hero__prev:hover,
.hero__next:hover,
.faq-item:focus {
    opacity: 0.4;
}

.hero__pagination {
    width: max-content !important;
    text-align: center;
}

.hero__pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: transparent;
    border: 1px solid var(--color-light);
    opacity: 1;
}

.hero__pagination .swiper-pagination-bullet-active {
    background: var(--color-light);
}


/* =========================================================
   Desktop Height
   ========================================================= */

@media (min-width: 768px) {

    .hero {
        min-height: 760px;
    }

    .hero__wrap {
        min-height: 680px;
    }

}


/* =========================================================
   Mobile
   ========================================================= */

@media (max-width: 767px) {

    .hero {
        min-height: 0;
    }

    .hero .container {
        padding: 16px 16px 75px;
    }

    .hero__wrap {
        grid-template-columns: 1fr;
        min-height: 0;
        gap: 16px;
        text-align: center;
    }

    .hero__content {
        order: 1;
        margin: 0;
        justify-items: center;
        align-content: start;
    }

    .hero__media {
        order: 2;
        justify-self: center;
        width: 90%;
    }

    .hero__wrap.is-reverse .hero__content {
        order: 2;
    }

    .hero__wrap.is-reverse .hero__media {
        order: 1;
        justify-self: center;
    }

    .hero__brand {
        width: min(100%, 280px);
        margin: 0 auto;
    }

    .hero__title {
        margin: 12px 0 8px;
        font-size: 25px;
    }

    .hero__text {
        max-width: 500px;
        font-size: 15px;
        line-height: 1.4;
    }

    .hero__cta {
        justify-content: center;
        flex-wrap: wrap;
        gap: 8px;
        margin-top: 14px;
    }

    .hero__nav {
        bottom: 10px;
    }

    .hero__bg-video--mobile {
        display: block;
    }

    .hero__wrap.is-center .hero__content {
        max-width: 100%;
    }

    .hero__wrap.is-center .hero__title {
        max-width: 100%;
        margin: 18px auto 14px;
        font-size: clamp(44px, 12vw, 62px);
        line-height: .86;
    }

    .hero__wrap.is-center .hero__text {
        max-width: 340px;
        font-size: 15px;
        line-height: 1.4;
    }

    .hero__wrap.is-center .hero__cta {
        margin-top: 20px;
    }
}

/* =========================================================
   FEATURED PRODUCTS — GENERIC TEMPLATE
   ========================================================= */

.featured-products {
    padding: 50px 0;
    background: #202020;
}

.featured-products__header {
    margin-bottom: 25px;
}

.featured-products__title {
    margin: 0;
    color: #fafaf2;
    font-family: "Roboto Condensed", sans-serif;
    font-size: 64px;
    line-height: 1;
    font-weight: 600;
    text-align: center;
}

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


/* Tile */

.featured-products__tile {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 1.35 / 1;
    color: #fff;
    text-decoration: none;
    background: #202020;
    border-radius: 32px;
}

.featured-products__image {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.featured-products__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}


/* Image Overlay */

.featured-products__tile::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background: rgba(0, 0, 0, 0.48);
}


/* Content */

.featured-products__overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px;
    text-align: center;
}

.featured-products__content {
    width: 100%;
    max-width: 88%;
    margin: 0 auto;
    text-shadow:
        0 2px 8px rgba(0, 0, 0, 0.75),
        0 1px 3px rgba(0, 0, 0, 0.9);
}


/* Product Name */

.featured-products__tile-title {
    margin: 0 0 8px;
    color: #fafaf2;
    font-family: "Roboto Condensed", sans-serif;
    font-size: clamp(28px, 2.4vw, 38px);
    line-height: 0.95;
    font-weight: 700;
    letter-spacing: -0.02em;
}


/* Subtitle */

.featured-products__tile-subtitle {
    margin: 0 0 12px;
    color: #fafaf2;
    font-family: "Roboto", sans-serif;
    font-size: clamp(14px, 1.15vw, 17px);
    line-height: 1.15;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}


/* Body Text */

.featured-products__tile-text {
    max-width: 260px;
    margin: 0 auto;
    color: #fafaf2;
    font-family: "Roboto", sans-serif;
    font-size: clamp(13px, 1vw, 15px);
    line-height: 1.4;
    font-weight: 500;
}


/* Hover */

.featured-products__tile:hover .featured-products__image img {
    transform: scale(1.04);
}


/* Mobile */

@media (max-width: 767px) {

    .featured-products {
        padding: 35px 0;
    }

    .featured-products__header {
        margin-bottom: 18px;
    }

    .featured-products__title {
        font-size: 42px;
        line-height: 1;
    }

    .featured-products__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .featured-products__tile {
        aspect-ratio: 1 / 1;
        border-radius: 20px;
    }

    .featured-products__tile::after {
        background: rgba(0, 0, 0, 0.48);
    }

    .featured-products__overlay {
        padding: 16px;
    }

    .featured-products__content {
        max-width: 94%;
    }

    .featured-products__tile-title {
        margin-bottom: 6px;
        font-size: 21px;
        line-height: 0.95;
    }

    .featured-products__tile-subtitle {
        margin-bottom: 8px;
        font-size: 13px;
        line-height: 1.1;
    }

    .featured-products__tile-text {
        max-width: 180px;
        font-size: 11px;
        line-height: 1.35;
        font-weight: 500;
    }
}

/* =========================================================
   BEST SELLERS — GENERIC TEMPLATE
   ========================================================= */

.best-sellers {
    width: 100%;
    padding: 80px 0;
    background: #202020;
}

/* Light banner */

.best-sellers__header {
    margin: 0 auto;
    padding: 55px 40px 28px;
    background: #fafaf2;
    border-radius: 32px 32px 0 0;
}

.best-sellers__title {
    margin: 0;
    color: #202020;
    font-family: var(--font-condensed);
    font-size: clamp(56px, 6vw, 82px);
    font-weight: 800;
    line-height: .85;
    letter-spacing: -.04em;
    text-align: center;
    text-transform: uppercase;
}

/* Product grid */

.best-sellers__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 0 0 32px 32px;
    background: #fafaf2;
}

/* Product card */

.best-seller-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    background: #fafaf2;
}

.best-seller-card + .best-seller-card {
    border-left: 1px solid rgba(32, 32, 32, .08);
}

/* Product image */

.best-seller-card__image-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.best-seller-card__image {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #fafaf2;
}

.best-seller-card__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform .45s cubic-bezier(.2,.7,.2,1);
}

.best-seller-card__image-link:hover .best-seller-card__image img {
    transform: scale(1.035);
}

/* Product content */

.best-seller-card__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    padding: 18px 22px 26px;
    color: #202020;
    font-family: var(--font);
    text-align: center;
}

.best-seller-card__title {
    margin: 0 0 7px;
    font-family: var(--font);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.15;
}

.best-seller-card__title a {
    color: #202020;
    text-decoration: none;
}

.best-seller-card__price {
    margin-bottom: 12px;
    color: #202020;
    font-family: var(--font);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2;
}

.best-seller-card__price del {
    opacity: .5;
}

.best-seller-card__price ins {
    text-decoration: none;
}

.best-seller-card__text {
    max-width: 250px;
    margin: 0 auto 18px;
    color: rgba(32, 32, 32, .65);
    font-family: var(--font);
    font-size: 13px;
    line-height: 1.4;
}

/* Shop button */

.best-seller-card__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 130px;
    margin-top: auto;
    padding: 12px 21px;
    border: 1px solid #202020;
    border-radius: 6px;
    background: #202020;
    color: #fafaf2;
    font-family: var(--font-condensed);
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: .03em;
    text-decoration: none;
    text-align: center;
    text-transform: uppercase;
    transition: background .2s ease, color .2s ease;
}

.best-seller-card__button:hover {
    background: transparent;
    color: #202020;
}


/* Tablet */

@media (max-width: 1000px) {

    .best-sellers {
        padding: 65px 0;
    }

    .best-sellers__header,
    .best-sellers__grid {
        width: min(900px, calc(100% - 40px));
    }

    .best-sellers__header {
        padding: 45px 30px 25px;
    }

    .best-seller-card__content {
        padding: 16px 15px 22px;
    }
}


/* Mobile */

@media (max-width: 767px) {

    .best-sellers {
        padding: 50px 0 55px;
    }

    .best-sellers__header {
        width: calc(100% - 16px);
        margin: 0 auto;
        padding: 38px 18px 22px;
        border-radius: 17px 17px 0 0;
    }

    .best-sellers__title {
        font-size: clamp(50px, 15vw, 70px);
        line-height: .82;
        text-align: center;
    }

    .best-sellers__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: calc(100% - 16px);
        border-radius: 0 0 17px 17px;
    }

    .best-seller-card + .best-seller-card {
        border-left: 0;
    }

    .best-seller-card:nth-child(even) {
        border-left: 1px solid rgba(32, 32, 32, .08);
    }

    .best-seller-card:nth-child(n + 3) {
        border-top: 1px solid rgba(32, 32, 32, .08);
    }

    .best-seller-card__image {
        aspect-ratio: 1 / 1;
    }

    .best-seller-card__content {
        padding: 13px 10px 18px;
    }

    .best-seller-card__title {
        font-size: 16px;
        line-height: 1.1;
    }

    .best-seller-card__price {
        font-size: 14px;
    }

    .best-seller-card__text {
        max-width: 170px;
        margin-bottom: 14px;
        font-size: 12px;
        line-height: 1.35;
    }

    .best-seller-card__button {
        width: calc(100% - 10px);
        min-width: 0;
        padding: 11px 12px;
        font-size: 13px;
    }
}

/* =========================================================
   USP / HERITAGE STRIP — GENERIC TEMPLATE
   ========================================================= */

.usps-strip {
    width: 100%;
    background: #000000;
    color: #fafaf2;
}

.usps-strip__inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
}

.usps-strip__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    min-height: 220px;
    padding: 30px 36px;

    color: #fafaf2;
    font-family: "Roboto", sans-serif;
    text-align: center;
    text-transform: uppercase;
}

.usps-strip__item span {
    display: block;
    margin-bottom: 4px;

    font-family: "Roboto", sans-serif;
    font-size: 18px;
    line-height: 1.1;
    font-weight: 400;
}

.usps-strip__item strong {
    display: block;

    font-family: "Roboto Condensed", sans-serif;
    font-size: 34px;
    line-height: 1;
    font-weight: 700;
}

.usps-strip__item + .usps-strip__item {
    border-left: 1px solid rgba(250, 250, 242, 0.3);
}


/* Mobile */

@media (max-width: 767px) {

    .usps-strip__inner {
        grid-template-columns: 1fr;
    }

    .usps-strip__item {
        min-height: auto;
        padding: 24px 20px;
    }

    .usps-strip__item span {
        font-size: 15px;
    }

    .usps-strip__item strong {
        font-size: 28px;
    }

    .usps-strip__item + .usps-strip__item {
        border-left: 0;
        border-top: 1px solid rgba(250, 250, 242, 0.3);
    }
}

/* =========================================================
   WHAT IS STYLOPHONE — GENERIC TEMPLATE
   ========================================================= */

.what-is-stylophone {
    padding: 70px 0;
    background: #202020;
    color: #fafaf2;
}

.what-is-stylophone__inner {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

/* Eyebrow */

.what-is-stylophone__eyebrow {
    margin: 0 0 14px;
    color: rgba(250, 250, 242, 0.7);
    font-family: "Roboto", sans-serif;
    font-size: 15px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* Heading */

.what-is-stylophone__heading {
    max-width: 850px;
    margin: 0 auto 22px;
    color: #fafaf2;
    font-family: "Roboto Condensed", sans-serif;
    font-size: 64px;
    line-height: 0.95;
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* Body */

.what-is-stylophone__text {
    max-width: 700px;
    margin: 0 auto 34px;
    color: rgba(250, 250, 242, 0.85);
    font-family: "Roboto", sans-serif;
    font-size: 18px;
    line-height: 1.5;
    font-weight: 400;
}

.what-is-stylophone__text p {
    margin: 0;
}

/* Play / Shape / Create */

.what-is-stylophone__points {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    margin-bottom: 36px;
}

.what-is-stylophone__point {
    color: #fafaf2;
    font-family: "Roboto Condensed", sans-serif;
    font-size: 28px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.what-is-stylophone__divider {
    color: rgba(250, 250, 242, 0.4);
    font-family: "Roboto", sans-serif;
    font-size: 18px;
    line-height: 1;
}

/* Button */

.what-is-stylophone__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 28px;

    color: #202020;
    background: #fafaf2;
    border-radius: 5px;

    font-family: "Roboto", sans-serif;
    font-size: 14px;
    line-height: 1;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.03em;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.what-is-stylophone__button:hover {
    color: #202020;
    background: #ffffff;
    transform: translateY(-2px);
}


/* Tablet */

@media (max-width: 991px) {

    .what-is-stylophone {
        padding: 60px 0;
    }

    .what-is-stylophone__heading {
        font-size: 54px;
    }
}


/* Mobile */

@media (max-width: 767px) {

    .what-is-stylophone {
        padding: 48px 0;
    }

    .what-is-stylophone__eyebrow {
        margin-bottom: 12px;
        font-size: 13px;
    }

    .what-is-stylophone__heading {
        margin-bottom: 18px;
        font-size: 40px;
        line-height: 0.95;
    }

    .what-is-stylophone__text {
        margin-bottom: 28px;
        font-size: 16px;
        line-height: 1.45;
    }

    .what-is-stylophone__points {
        gap: 14px;
        margin-bottom: 30px;
    }

    .what-is-stylophone__point {
        font-size: 23px;
    }

    .what-is-stylophone__divider {
        font-size: 15px;
    }

    .what-is-stylophone__button {
        width: 100%;
    }
}

/* =========================================================
   GET INSPIRED — GENERIC TEMPLATE
   ========================================================= */

.inspired {
    width: 100%;
    padding: 50px 0;
    background: #fafaf2;
    color: #202020;
    overflow: hidden;
}

.inspired__title {
    margin: 0;
    color: #202020;
    font-family: "Roboto Condensed", sans-serif;
    font-size: 64px;
    line-height: 1;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
}

.inspired__subtitle {
    max-width: 700px;
    margin: 12px auto 0;
    color: #202020;
    font-family: "Roboto", sans-serif;
    font-size: 17px;
    line-height: 1.4;
    font-weight: 400;
    text-align: center;
}


/* Video Carousel */

.carousel-container {
    position: relative;
    width: 100vw;
    overflow: hidden;
    margin-top: 28px;
    padding: 10px 0 20px;
}

.carousel-track {
    display: flex;
    gap: 0;
    cursor: grab;
    will-change: transform;
    touch-action: pan-y;
    user-select: none;
}

.carousel-track:active {
    cursor: grabbing;
}

.video-slide {
    flex-shrink: 0;
    width: 323px;
    height: 576px;
    min-height: 576px;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
    cursor: pointer;
    background: #000;
}

.video-slide:not(.swiper-slide-active) {
    transform: scale(0.9);
    opacity: 0.8;
}

.video-slide.swiper-slide-active {
    transform: scale(1);
    opacity: 1;
}

.video-slide video,
.video-slide__poster {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;

    -webkit-user-drag: none;
    user-drag: none;
}


/* Video Controls */

.video-controls {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-slide.swiper-slide-active .video-controls {
    opacity: 1;
}

.control-btn {
    position: absolute;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #fafaf2;
    border: none;
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    transition:
        background 0.2s ease,
        transform 0.2s ease;

    backdrop-filter: blur(10px);
}

.control-btn:hover {
    background: #202020;
    transform: scale(1.1);
}

.control-btn:hover svg path {
    fill: #fafaf2;
}

.play-pause {
    bottom: 12px;
    left: 12px;
}

.sound-toggle {
    top: 12px;
    right: 12px;
}


/* Current Video Information */

.inspired__handle {
    margin: 18px auto 0;
    text-align: center;
}

.inspired__handle a {
    color: #202020;
    font-family: "Roboto Condensed", sans-serif;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
}

.inspired__handle a:hover {
    opacity: 0.75;
}

.inspired__text {
    max-width: 650px;
    margin: 8px auto 0;
    text-align: center;
}

.inspired__text p {
    margin: 0;
    color: #202020;
    font-family: "Roboto", sans-serif;
    font-size: 15px;
    line-height: 1.4;
    font-weight: 400;
}


/* Mobile */

@media (max-width: 767px) {

    .inspired {
        padding: 35px 0;
    }

    .inspired__title {
        font-size: 42px;
    }

    .inspired__subtitle {
        max-width: 90%;
        margin-top: 10px;
        font-size: 14px;
        line-height: 1.35;
    }

    .carousel-container {
        margin-top: 20px;
        padding: 5px 0 15px;
    }

    .video-slide {
        width: 250px;
        height: 445px;
        min-height: 445px;
        border-radius: 12px;
    }

    .control-btn {
        width: 26px;
        height: 26px;
    }

    .inspired__handle {
        margin-top: 14px;
    }

    .inspired__handle a {
        font-size: 16px;
    }

    .inspired__text {
        max-width: 90%;
        margin-top: 6px;
    }

    .inspired__text p {
        font-size: 13px;
    }
}

/* =========================================================
   CATEGORY BLOCKS — GENERIC TEMPLATE
   ========================================================= */

.categories {
    width: 100%;
    background: var(--color-dark);
    padding: 50px 0;
    overflow: hidden;
}

.categories__title {
    margin: 0 0 25px;
    padding: 0;
    color: var(--color-light);
    font-family: var(--font-condensed);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    font-size: 64px;
    line-height: 1;
    text-align: center;
}

/* Category Grid */

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

/* Category Card */

.category-card {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 1.35 / 1;
    border-radius: 32px;
    overflow: hidden;
    isolation: isolate;
    background: #000;
}

/* Background Image */

.category-card__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

/* Overlay */

.category-card__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(0, 0, 0, 0.42);
    transition: background 0.3s ease;
}

/* Category Title */

.category-card__title {
    position: absolute;
    inset: 0;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 28px;
    margin: 0;

    color: var(--color-light);

    font-family: var(--font-condensed);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.02em;

    font-size: clamp(28px, 2.4vw, 38px);
    line-height: 0.95;
    text-align: center;

    text-shadow:
        0 2px 8px rgba(0, 0, 0, 0.75),
        0 1px 3px rgba(0, 0, 0, 0.9);
}

/* Hover */

@media (hover: hover) and (pointer: fine) {

    .category-card:hover .category-card__bg {
        transform: scale(1.04);
    }

    .category-card:hover .category-card__overlay {
        background: rgba(0, 0, 0, 0.32);
    }
}

/* Mobile */

@media screen and (max-width: 767px) {

    .categories {
        padding: 35px 0;
    }

    .categories__title {
        margin-bottom: 18px;
        font-size: 42px;
        line-height: 1;
    }

    .categories__grid {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        grid-template-rows: auto !important;
        gap: 10px !important;
        width: 100%;
    }

    .category-card {
        display: block;
        width: 100%;
        min-width: 0;
        aspect-ratio: 1 / 1;
        border-radius: 20px;
    }

    .category-card__title {
        padding: 16px;
        font-size: 25px;
        line-height: 0.95;
    }
}

/* =========================================================
   HISTORY / VINTAGE ANALOG SOUND — GENERIC TEMPLATE
   ========================================================= */

.banner {
    width: 100%;
    padding: 80px 0;
    background: #202020;
    color: #fafaf2;
    overflow: hidden;
}

/* Banner */

.banner__wrap {
    display: grid;
    grid-template-columns: 45% 55%;
    align-items: stretch;

    width: calc(100% - 60px);
    max-width: 1400px;
    min-height: 440px;

    margin: 0 auto;
    overflow: hidden;

    border-radius: 32px;
    background: #fafaf2;
}

/* History Image */

.banner__media {
    width: 100%;
    height: 100%;
    min-height: 440px;

    overflow: hidden;
    line-height: 0;
}

.banner__media picture {
    display: block;

    width: 100%;
    height: 100%;

    margin: 0;
    padding: 0;

    line-height: 0;
}

.banner__media img {
    display: block;

    width: 100%;
    height: 100%;

    margin: 0;
    padding: 0;

    object-fit: cover;
    object-position: center center;

    line-height: 0;

    transition: transform .6s cubic-bezier(.2,.7,.2,1);
}

/* Content */

.banner__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;

    max-width: none;

    padding: 60px 85px 60px 75px;

    color: #202020;
    text-align: left;
}

.banner__text {
    max-width: 540px;
}

/* History Text */

.banner__text h2 {
    margin: 0 0 26px;

    color: #202020;

    font-family: var(--font-condensed);
    font-size: clamp(48px, 4.5vw, 68px);
    font-weight: 800;
    line-height: .88;
    letter-spacing: -.04em;

    text-transform: uppercase;
}

.banner__text p {
    max-width: 500px;

    margin: 0;

    color: rgba(32, 32, 32, .72);

    font-family: var(--font-base);
    font-size: 17px;
    line-height: 1.5;
}

/* Button */

.banner__content .btn {
    width: fit-content;

    margin-top: 30px;

    padding: 17px 25px 15px;

    border: 1px solid #202020;
    border-radius: 6px;

    background: #202020;
    color: #fafaf2;

    font-family: var(--font-condensed);
    font-size: 15px;
    font-weight: 800;
    line-height: 1;

    letter-spacing: .02em;

    text-transform: uppercase;
}

.banner__content .btn:hover {
    background: transparent;
    color: #202020;
    border-color: #202020;
}


/* Tablet */

@media (max-width: 1000px) {

    .banner {
        padding: 65px 0;
    }

    .banner__wrap {
        width: min(900px, calc(100% - 40px));

        grid-template-columns: 45% 55%;

        min-height: 400px;
    }

    .banner__media {
        height: 400px;
    }

    .banner__content {
        padding: 45px 40px;
    }

    .banner__text h2 {
        font-size: clamp(44px, 6vw, 60px);
    }
}


/* Mobile */

@media (max-width: 767px) {

    .banner {
        padding: 25px 0;
    }

    .banner__wrap {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 0 10px;
    }

    .banner__media {
        height: 300px;
        border-radius: 20px;
    }

    .banner__content {
        max-width: none;
        padding: 15px 20px 20px;
        text-align: left;
    }

    .banner__text h2 {
        margin-bottom: 16px;
        font-size: 42px;
        line-height: 0.92;
    }

    .banner__text p {
        margin-bottom: 22px;
        font-size: 16px;
        line-height: 1.5;
    }

    .banner__content .btn {
        width: 100%;
    }
}

/* =========================================================
   THE BUZZ — GENERIC TEMPLATE
   ========================================================= */

.buzz {
    width: 100%;
    padding: 90px 0 100px;
    background: #202020;
    overflow: hidden;
}

.buzz__inner {
    width: min(1380px, calc(100% - 48px));
    margin: 0 auto;
}

/* Header */

.buzz__header {
    margin-bottom: 25px;
}

.buzz__eyebrow {
    display: none;
}

.buzz__heading-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
}

.buzz__title {
    margin: 0;
    color: #fafaf2;
    font-family: "Roboto Condensed", sans-serif;
    font-size: 64px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: normal;
    text-align: center;
    text-transform: uppercase;
}

.buzz__intro {
    max-width: 500px;
    margin: 18px 0 0;
    font-family: var(--font);
    font-size: 18px;
    line-height: 1.4;
    color: #fafaf2;
    opacity: 0.8;
}

.buzz__view-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 5px;
    color: #fafaf2;
    font-family: var(--font-condensed);
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: .06em;
    text-decoration: none;
    text-transform: uppercase;
    border-bottom: 1px solid currentColor;
    white-space: nowrap;
    transition: opacity .2s ease, gap .2s ease;
}

.buzz__view-all:hover {
    gap: 13px;
    opacity: .6;
}

/* Grid */

.buzz__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(320px, 1fr);
    gap: 16px;
}

.buzz__secondary {
    display: grid;
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

/* Cards */

.buzz-card {
    overflow: hidden;
    background: #fff;
    border-radius: 20px;
}

.buzz-card__image {
    position: relative;
    display: block;
    overflow: hidden;
    color: inherit;
    text-decoration: none;
    background: #dedbd3;
}

.buzz-card__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .55s cubic-bezier(.2,.7,.2,1);
}

.buzz-card:hover .buzz-card__image img {
    transform: scale(1.035);
}

/* Featured */

.buzz-card--featured {
    display: grid;
    grid-template-rows: minmax(420px, 1fr) auto;
}

.buzz-card--featured .buzz-card__image {
    min-height: 420px;
}

.buzz-card--featured .buzz-card__content {
    padding: 24px 28px 30px;
}

/* Secondary */

.buzz-card--secondary {
    display: grid;
    grid-template-columns: 45% 55%;
}

.buzz-card--secondary .buzz-card__image {
    min-height: 250px;
}

.buzz-card--secondary .buzz-card__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 24px;
}

/* Meta */

.buzz-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 13px;
    font-family: var(--font-condensed);
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.buzz-card__meta span:first-child {
    opacity: .55;
}

.buzz-card__meta span:last-child {
    opacity: .35;
}

/* Titles */

.buzz-card__title {
    margin: 0;
    font-family: var(--font-condensed);
    font-size: 29px;
    font-weight: 800;
    line-height: .95;
    letter-spacing: -.025em;
}

.buzz-card--featured .buzz-card__title {
    max-width: 850px;
    font-size: clamp(38px, 4vw, 58px);
    line-height: .9;
}

.buzz-card__title a {
    color: inherit;
    text-decoration: none;
}

/* Remove extra content */

.buzz-card__excerpt,
.buzz-card__link,
.buzz-card__image-arrow {
    display: none;
}

.buzz-card__placeholder {
    width: 100%;
    height: 100%;
    min-height: 250px;
    background: #dedbd3;
}

/* Tablet */

@media screen and (max-width: 1000px) {

    .buzz {
        padding: 75px 0 85px;
    }

    .buzz__grid {
        grid-template-columns: 1fr;
    }

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

    .buzz-card--secondary {
        display: block;
    }

    .buzz-card--secondary .buzz-card__image {
        aspect-ratio: 1.25 / 1;
        min-height: 0;
    }

    .buzz-card--secondary .buzz-card__content {
        padding: 22px;
    }
}

/* Mobile */

@media screen and (max-width: 767px) {

    .buzz {
        padding: 60px 0 70px;
    }

    .buzz__inner {
        width: calc(100% - 28px);
    }

    .buzz__header {
        margin-bottom: 26px;
    }

    .buzz__heading-row {
        align-items: flex-end;
    }

    .buzz__title {
        font-size: clamp(58px, 17vw, 82px);
        line-height: .8;
    }

    .buzz__view-all {
        font-size: 11px;
    }

    .buzz__intro {
        max-width: 340px;
        margin-top: 17px;
        font-size: 15px;
    }

    .buzz__grid {
        display: block;
    }

    .buzz-card--featured {
        display: block;
        margin-bottom: 12px;
    }

    .buzz-card--featured .buzz-card__image {
        aspect-ratio: 1 / 1;
        min-height: 0;
    }

    .buzz-card--featured .buzz-card__content {
        padding: 20px 19px 24px;
    }

    .buzz-card--featured .buzz-card__title {
        font-size: clamp(34px, 9vw, 46px);
    }

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

    .buzz-card--secondary {
        display: block;
        margin-bottom: 0;
    }

    .buzz-card--secondary .buzz-card__image {
        aspect-ratio: 1 / 1;
        min-height: 0;
    }

    .buzz-card--secondary .buzz-card__content {
        padding: 15px;
    }

    .buzz-card--secondary .buzz-card__title {
        font-size: 18px;
    }
}

/* =========================================================
   NEWSLETTER — GENERIC TEMPLATE
   ========================================================= */

.newsletter {
    position: relative;
    overflow: hidden;
    min-height: 620px;
    background: #111;
}

/* Background */

.newsletter__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.newsletter__layer {
    position: absolute;
    inset: 0;
    display: block;
}

.newsletter__layer img {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    display: block;
    object-fit: cover;
    object-position: center;
}

.newsletter::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;

    background: rgba(0, 0, 0, .12);

    pointer-events: none;
}

/* Container */

.newsletter .container {
    position: relative;
    z-index: 2;

    min-height: 620px;

    display: flex;
    align-items: center;
    justify-content: center;
}

/* Card */

.newsletter__wrap {
    width: min(760px, calc(100% - 40px));

    display: flex;
    flex-direction: column;
    align-items: center;

    padding: 40px 85px 40px;

    background: var(--color-light);

    border-radius: 18px;

    text-align: center;

    box-shadow: 0 25px 70px rgba(0, 0, 0, .18);
}

/* Copy */

.newsletter__copy {
    width: 100%;
    max-width: 620px;

    margin: 0 0 40px;
}

.newsletter__title {
    margin: 0;

    color: #111;

    font-family: var(--font-condensed);

    font-size: clamp(38px, 4.2vw, 58px);
    font-weight: 800;
    line-height: .92;
    letter-spacing: -.035em;

    text-transform: uppercase;
}

.newsletter__subtitle {
    max-width: 540px;

    margin: 22px auto 0;

    color: #111;

    font-family: var(--font);

    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: -.01em;

    text-transform: none;
}

/* Button */

.newsletter__wrap .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 250px;
    min-height: 66px;

    padding: 18px 38px;

    border: 0;
    border-radius: 9px;

    background: #111;
    color: var(--color-light);

    font-family: var(--font-condensed);

    font-size: 18px;
    font-weight: 800;
    line-height: 1;

    letter-spacing: .035em;

    text-align: center;
    text-transform: uppercase;
    text-decoration: none;

    transition:
        transform .2s ease,
        opacity .2s ease;
}

.newsletter__wrap .btn:hover {
    transform: translateY(-3px);
    opacity: .85;
}

/* Mobile */

@media screen and (max-width: 767px) {

    .newsletter {
        min-height: 480px;
    }

    .newsletter .container {
        min-height: 480px;
        padding: 0;
    }

    .newsletter__wrap {
        width: calc(100% - 28px);
        padding: 25px 20px 28px !important;
        margin: 0 !important;
        border-radius: 15px;
        box-sizing: border-box;
    }

    .newsletter__copy {
        margin: 0 0 12px !important;
    }

    .newsletter__title {
        margin: 0 !important;
        font-size: clamp(36px, 10vw, 48px);
        line-height: 1;
        letter-spacing: -.025em;
    }

    .newsletter__subtitle {
        margin: 12px auto 0 !important;
        font-size: 15px;
        line-height: 1.3;
    }

    .newsletter__wrap .btn {
        width: 100%;
        min-width: 0;
        min-height: 52px;
        margin: 0 !important;
        padding: 14px 20px;
        font-size: 16px;
    }
}

/* =========================================================
   TRUST / USP BANNER — GENERIC TEMPLATE
   ========================================================= */

.trust-banner {
    width: 100%;
    background: #202020;
    color: #fafaf2;
    overflow: hidden;

    border-top: 4px solid rgba(250, 250, 242, 0.9);
    border-bottom: 1px solid rgba(250, 250, 242, 0.2);
}

.trust-banner__viewport {
    width: 100%;
    height: 64px;
    overflow: hidden;
}

.trust-banner__track {
    display: flex;
    width: 100%;
    height: 100%;
    transform: translateX(0);
}

.trust-banner__item {
    flex: 0 0 100%;
    width: 100%;
    height: 64px;

    display: flex;
    align-items: center;
    justify-content: center;

    box-sizing: border-box;
    padding: 0 24px;

    color: #fafaf2;

    font-family: "Roboto Condensed", sans-serif;
    font-size: 19px;
    font-weight: 700;
    line-height: 1;

    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.035em;

    white-space: nowrap;
}

/* Mobile */

@media (max-width: 767px) {

    .trust-banner {
        border-top-width: 2px;
    }

    .trust-banner__viewport {
        height: 48px;
    }

    .trust-banner__item {
        height: 48px;
        padding: 0 16px;

        font-size: 13px;
        font-weight: 700;
        letter-spacing: 0.035em;
    }
}

/* Reduced Motion */

@media (prefers-reduced-motion: reduce) {

    .trust-banner__track {
        transition: none !important;
    }
}

/* =========================================================
   UNIFIED SECTION TITLES
   Match Featured Products
   ========================================================= */

.featured-products__title,
.best-sellers__title,
.what-is-stylophone__heading,
.inspired__title,
.categories__title,
.banner__text h2,
.buzz__title,
.newsletter__title {
    font-family: "Roboto Condensed", sans-serif;
    font-size: 64px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: normal;
}

/* Mobile */

@media screen and (max-width: 767px) {

    .featured-products__title,
    .best-sellers__title,
    .what-is-stylophone__heading,
    .inspired__title,
    .categories__title,
    .banner__text h2,
    .buzz__title,
    .newsletter__title {
        font-size: 42px;
        font-weight: 800;
        line-height: 1;
        letter-spacing: normal;
    }
}
