:root {
    --gold: #ad9861;
    --gold-soft: #a99968;
    --navy: #111941;
    --ink: #222;
    --muted: #666;
    --cream: #efece4;
    --white: #fff;
    --ease: cubic-bezier(0.645, 0.045, 0.355, 1);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    overflow-x: hidden;
    color: var(--ink);
    font: 400 14px/25px "SanFranciscoText", Arial, sans-serif;
    background: #fff;
}

    body.menu-open {
        overflow: hidden;
    }

a {
    color: inherit;
    text-decoration: none;
}

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

button,
input {
    font: inherit;
}

.pagewrap {
    width: min(1200px, calc(100% - 30px));
    margin: 0 auto;
}

.pagewrap-narrow {
    width: min(900px, calc(100% - 30px));
    margin: 0 auto;
}

.section-title {
    position: relative;
    margin: 0 0 28px;
    color: var(--navy);
    font-family: "SVN-BonVoyage", Georgia, serif;
    font-size: 40px;
    line-height: 1.45;
    letter-spacing: 2px;
    text-align: center;
    text-transform: uppercase;
}

    .section-title::after {
        content: "";
        display: block;
        width: 75px;
        height: 1px;
        margin: 6px auto 0;
        background: var(--gold);
        opacity: 0.55;
    }

    .section-title.left {
        text-align: left;
    }

        .section-title.left::after {
            margin-left: 0;
        }

.desktop-header {
    position: relative;
    z-index: 50;
    height: 82px;
    padding: 15px 0;
    background: var(--gold);
    transition: height 0.3s var(--ease), padding 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

    .desktop-header.is-fixed {
        position: fixed;
        inset: 0 0 auto;
        height: 58px;
        padding: 7px 0;
        box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
    }

    .desktop-header .pagewrap {
        position: relative;
        height: 100%;
        display: flex;
        justify-content: space-between;
		align-items: center;
    }

.logo-top {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 250px;
    transform: translateY(5%);
}
.desktop-header.is-fixed .logo-top {
	transform: translateY(0);
}
    .logo-top img {
        width: auto;
        transition: height 0.3s var(--ease), margin 0.3s var(--ease);
    }

.menu-main {
    /* position: absolute; */
    /* inset: 0; */
    display: flex;
    align-items: flex-start;
    /* justify-content: space-between; */
    pointer-events: none;
    gap: 25px;
}

.menu {
    display: flex;
    /* width: calc(50% - 35px); */
    margin: 5px 0 0;
    padding: 0;
    list-style: none;
    gap: 25px;
    pointer-events: auto;
}
.is-fixed .menu {
	margin: 0;
}
.menu-left {
    justify-content: flex-end;
}

.menu-right {
    /* justify-content: flex-start; */
}

.menu > li {
    position: relative;
}

    .menu > li > a {
        position: relative;
        display: flex;
        align-items: center;
        gap: 7px;
        height: 45px;
        color: #fff;
        font-size: 16px;
        font-weight: 700;
        line-height: 45px;
        text-transform: uppercase;
        white-space: nowrap;
        transition: color 0.2s ease;
    }

        .menu > li > a::after {
            content: "";
            position: absolute;
            right: 50%;
            bottom: 0;
            left: 50%;
            height: 2px;
            background: #fff;
            opacity: 0;
            transition: all 0.25s ease;
        }

    .menu > li:hover > a::after {
        right: 0;
        left: 0;
        opacity: 1;
    }

.submenu,
.submenu-third {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 60;
    min-width: 260px;
    margin: 0;
    padding: 10px 0;
    list-style: none;
    background: rgba(17, 25, 65, 0.96);
    opacity: 0;
    visibility: hidden;
    transform: translateY(14px);
    transition: all 0.28s var(--ease);
}

    .submenu li {
        position: relative;
    }

    .submenu a,
    .submenu-third a {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 16px;
        padding: 12px 18px;
        color: #fff;
        font-size: 14px;
        font-weight: 600;
        line-height: 1.25;
        text-transform: uppercase;
        white-space: nowrap;
        transition: background 0.2s ease, color 0.2s ease;
    }

        .submenu a:hover,
        .submenu-third a:hover {
            background: var(--gold);
        }

    .has-submenu:hover > .submenu,
    .submenu li:hover > .submenu-third {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

.submenu-third {
    top: 0;
    left: 100%;
    transform: translateX(14px);
}

.header-tools {
    /* position: absolute; */
    /* top: 13px; */
    /* right: calc((100vw - min(1200px, calc(100vw - 30px))) / -2 + 25px); */
    z-index: 65;
    display: flex;
    align-items: center;
    gap: 15px;
}

.desktop-header.is-fixed .header-tools {
    top: 10px;
}

.icon-btn {
    display: inline-grid;
    place-items: center;
    width: 32px;
    height: 32px;
    padding: 0;
    border: 0;
    color: #fff;
    background: transparent;
    cursor: pointer;
    transition: transform 0.25s ease, color 0.25s ease;
}

    .icon-btn:hover {
        color: var(--navy);
        transform: translateY(-2px);
    }

.lang-link {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    overflow: hidden;
}

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

.search-popover {
    position: absolute;
    top: 45px;
    right: 0;
    width: 300px;
    padding: 10px;
    background: #fff;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.25s ease;
}

    .search-popover.is-open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .search-popover form {
        display: flex;
    }

    .search-popover input {
        width: 100%;
        height: 40px;
        padding: 0 13px;
        color: #777;
        border: 1px solid #ddd;
    }

    .search-popover button {
        width: 45px;
        border: 0;
        color: #fff;
        background: var(--gold);
        cursor: pointer;
    }

.mobile-header {
    position: relative;
    z-index: 80;
    display: none;
    height: 68px;
    padding: 11px 15px;
    background: var(--gold-soft);
}

    .mobile-header.is-fixed {
        position: fixed;
        inset: 0 0 auto;
        box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
    }

.mobile-header-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
}

.hamburger {
    /* position: absolute; */
    left: 0;
    display: grid;
    gap: 5px;
    width: 34px;
    padding: 4px 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

    .hamburger span {
        display: block;
        width: 27px;
        height: 2px;
        background: #fff;
    }

.mobile-logo img {
    height: 45px;
    width: auto;
}

.mobile-panel {
    position: fixed;
    inset: 0 auto 0 0;
    z-index: 100;
    width: min(330px, 86vw);
    overflow-y: auto;
    background: #101735;
    transform: translateX(-105%);
    transition: transform 0.35s var(--ease);
}

    .mobile-panel.is-open {
        transform: translateX(0);
    }

.mobile-overlay {
    position: fixed;
    inset: 0;
    z-index: 90;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s ease;
}

    .mobile-overlay.is-open {
        opacity: 1;
        visibility: visible;
    }

.mobile-close {
    display: grid;
    place-items: center;
    width: 45px;
    height: 45px;
    margin: 8px 8px 8px auto;
    border: 0;
    color: #fff;
    background: transparent;
    cursor: pointer;
}

.mobile-nav,
.mobile-submenu {
    margin: 0;
    padding: 0;
    list-style: none;
}

    .mobile-nav img {
        width: auto;
        height: 45px;
        margin: 8px 20px 15px;
    }

    .mobile-nav a,
    .mobile-accordion {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 13px 20px;
        border: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        color: #fff;
        background: transparent;
        font-size: 14px;
        font-weight: 600;
        text-align: left;
        text-transform: uppercase;
        cursor: pointer;
    }

.mobile-submenu {
    max-height: 0;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.06);
    transition: max-height 0.35s ease;
}

    .mobile-submenu.is-visible {
        max-height: 650px;
    }

    .mobile-submenu a,
    .mobile-submenu .mobile-accordion {
        padding-left: 36px;
        font-size: 13px;
    }

    .mobile-submenu .mobile-submenu a {
        padding-left: 52px;
    }

.mobile-accordion i {
    transition: transform 0.3s ease;
}

.mobile-accordion.is-open i {
    transform: rotate(90deg);
}

.hero {
    position: relative;
    overflow: hidden;
}

    .hero .swiper-slide {
        position: relative;
        height: 820px;
        overflow: hidden;
        background: #000;
    }

        .hero .swiper-slide::after {
            content: "";
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.42);
            z-index: 1;
        }

    .hero img {
        width: 110%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        transform-origin: right center;
        transition: transform 25s ease;
    }

    .hero .swiper-slide-active img {
        transform: scale(1.15);
    }

.hero-copy {
    position: absolute;
    top: 50%;
    left: 0;
    z-index: 2;
    width: 100%;
    padding: 0 40px;
    color: #fff;
    text-align: center;
    transform: translateY(-50%);
}

    .hero-copy h1 {
        margin: 0;
        color: #fff;
        font-family: "SVN-BonVoyage", Georgia, serif;
        font-size: clamp(78px, 8.7vw, 120px);
        font-weight: 900;
        line-height: 1;
        letter-spacing: 15px;
        text-shadow: 0 3px 90px rgba(0, 0, 0, 0.5);
        text-transform: uppercase;
    }

    .hero-copy p {
        margin: 20px 0 0;
        font-size: 16px;
        letter-spacing: 7px;
        line-height: 1.5;
        text-transform: uppercase;
    }

.hero .swiper-button-prev,
.hero .swiper-button-next {
    color: #fff;
    --swiper-navigation-size: 35px;
}

.intro {
    margin-top: 50px;
    background: #fff;
}

.intro-text {
    width: 75%;
    margin: 0 auto 35px;
    text-align: center;
}

    .intro-text p {
        margin: 0;
        color: #333;
        font-size: 15px;
        line-height: 23px;
    }

.intro .section-title::after {
    display: none;
}

.brand-slider-wrap {
    position: relative;
    width: 60%;
    margin: 0 auto;
}

.brand-link-wrap {
    width: 60%;
    margin: 0 auto;
}

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

.brand-slider .swiper-slide,
.brand-link-grid .swiper-slide,
.footer-logo-slider .swiper-slide {
    display: grid;
    place-items: center;
    min-height: 170px;
    padding: 45px 30px;
    text-align: center;
    transition: transform 0.65s var(--ease), border-color 0.65s var(--ease);
    border: 1px solid transparent;
}

    .brand-slider .swiper-slide p,
    .brand-link-grid .swiper-slide p {
        margin: 0;
    }

    .brand-slider .swiper-slide a,
    .brand-link-grid .swiper-slide a,
    .brand-link-grid .brand-fck-link,
    .brand-slider .brand-fck-link {
        display: grid;
        place-items: center;
        width: 100%;
        height: 100%;
    }

.brand-link-grid .swiper-slide a,
.brand-link-grid .brand-fck-link {
    color: #fff;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.25;
    text-decoration: none;
}

.brand-link-grid .tile-gray a,
.brand-link-grid .tile-gray .brand-fck-link {
    color: var(--navy);
}

.brand-slider img,
.brand-link-grid img,
.footer-logo-slider img {
    width: 100%;
    height: 80px;
    object-fit: contain;
    transition: transform 0.65s var(--ease);
}

.brand-slider .swiper-slide:hover,
.brand-link-grid .swiper-slide:hover,
.footer-logo-slider .swiper-slide:hover {
    border-color: var(--gold);
}

    .brand-slider .swiper-slide:hover img,
    .brand-link-grid .swiper-slide:hover img,
    .footer-logo-slider .swiper-slide:hover img {
        transform: translateY(-10px);
    }

.tile-gold {
    background: #a39161;
}

.tile-teal {
    background: #067b7b;
}

.tile-orange {
    background: #db803b;
}

.tile-gray {
    background: #dedede;
}

.tile-blue {
    background: #22336b;
}

.swiper-mini-prev,
.swiper-mini-next,
.swiper-logo-prev,
.swiper-logo-next {
    position: absolute;
    top: 50%;
    z-index: 5;
    display: grid;
    place-items: center;
    width: 35px;
    height: 35px;
    color: var(--gold);
    cursor: pointer;
    transform: translateY(-50%);
    transition: color 0.25s ease;
}

.swiper-mini-prev,
.swiper-logo-prev {
    left: -45px;
}

.swiper-mini-next,
.swiper-logo-next {
    right: -45px;
}

    .swiper-mini-prev:hover,
    .swiper-mini-next:hover,
    .swiper-logo-prev:hover,
    .swiper-logo-next:hover {
        color: var(--navy);
    }

.piano-types {
    padding: 10px 0 50px;
    text-align: center;
    background: #fff;
}

.piano-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    align-items: start;
}

.piano-card {
    position: relative;
    padding-top: 30px;
}

    .piano-card:first-child::after {
        content: "";
        position: absolute;
        top: 28%;
        right: -11px;
        height: 44%;
        border-right: 2px solid var(--gold);
    }

    .piano-card img {
        width: auto;
        height: 500px;
        margin: 0 auto;
        transition: transform 0.9s var(--ease), filter 0.9s var(--ease);
    }

    .piano-card:hover img {
        transform: scale(1.1);
    }

.pill-link {
    display: inline-block;
    min-width: 110px;
    margin-top: 30px;
    padding: 6px 30px 3px;
    border: 2px solid var(--gold);
    border-radius: 100px;
    color: var(--gold);
    background: #fff;
    font-family: "SVN-BonVoyage", Georgia, serif;
    font-size: 18px;
    line-height: 35px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

    .pill-link:hover {
        color: var(--gold);
        background: var(--navy);
        border-color: var(--navy);
    }

.digital-icons {
    padding: 30px 0 50px;
    background: #fff;
}

    .digital-icons .pagewrap {
        display: flex;
        justify-content: center;
        align-items: flex-end;
        gap: 26px;
    }

.seal img {
    height: 100px;
    width: auto;
}

.digital-item {
    text-align: center;
    transition: transform 0.5s var(--ease);
}

    .digital-item:hover {
        transform: translateY(-5px);
    }

    .digital-item span:first-child {
        display: grid;
        place-items: center;
        width: 55px;
        height: 55px;
        border-radius: 10px;
        background: var(--gold);
    }

    .digital-item img {
        width: auto;
        height: 30px;
    }

    .digital-item h3 {
        margin: 8px 0 0;
        color: var(--gold);
        font-size: 15px;
        line-height: 20px;
        text-transform: capitalize;
    }

.digital-silent span:first-child {
    background: #ad9861;
}

.digital-connect span:first-child {
    background: #205cb8;
}

.digital-room span:first-child {
    background: #1a2e64;
}

.digital-creator span:first-child {
    background: #49b0ca;
}

.home-video {
    position: relative;
    min-height: 660px;
    padding: 55px 0 0;
    overflow: hidden;
    background: #fff;
}

    .home-video::before,
    .home-video::after {
        content: "";
        position: absolute;
        top: 25px;
        width: 44%;
        height: 500px;
        background-repeat: no-repeat;
        background-size: cover;
        opacity: 0.22;
        filter: grayscale(1);
    }

    .home-video::before {
        left: 0;
        background: url(../images/1749257982_16.jpg) no-repeat;
        background-position: right center;
        clip-path: polygon(0 0, 76% 0, 100% 100%, 0% 100%);
        background-size: cover;
    }

    .home-video::after {
        right: 0;
        background-image: url("../images/1749258002_15.jpg");
        background-position: left center;
        clip-path: polygon(0 0, 100% 0, 100% 100%, 24% 100%);
        top: auto;
        bottom: 0;
    }

.video-shell {
    position: relative;
    z-index: 2;
    width: 75%;
    height: 600px;
    margin: 0 auto;
    border: 5px solid var(--gold);
    border-bottom: 0;
    background: #000;
}

    .video-shell img,
    .video-shell iframe {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .video-shell iframe {
        position: absolute;
        inset: 0;
        border: 0;
    }

.video-trigger {
    position: absolute;
    top: 50%;
    left: 50%;
    display: grid;
    place-items: center;
    width: 64px;
    height: 50px;
    border: 0;
    border-radius: 10px;
    color: #fff;
    background: #e52d27;
    cursor: pointer;
    transform: translate(-50%, -50%);
    transition: background 0.5s var(--ease), transform 0.5s var(--ease);
}

    .video-trigger i {
        font-size: 30px;
    }

    .video-trigger:hover {
        background: var(--gold);
        transform: translate(-50%, -50%) scale(1.05);
    }

.video-caption {
    text-align: center;
    font-size: 14px;
    background: #efece4;
    width: 75%;
    padding: 3px 0px;
    font-family: SVN-BonVoyage;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #000;
    line-height: 24px;
    margin: auto;
}

.heritage {
    padding: 80px 0;
    background: #fff url("../images/1739420829_made-in-germany.png") no-repeat center;
    background-size: 360px auto;
}

    .heritage .section-title {
        margin-bottom: 0;
    }

.heritage-subtitle {
    margin: 0 0 35px;
    color: var(--navy);
    font-family: "SVN-BonVoyage", Georgia, serif;
    font-size: 20px;
    line-height: 33px;
    text-align: center;
    text-transform: uppercase;
}

.heritage-slider-wrap {
    position: relative;
    width: 950px;
    max-width: calc(100% - 90px);
    margin: 0 auto;
}

.founder-slide {
    display: flex;
    align-items: flex-end;
    gap: 30px;
}

.founder-photo,
.founder-mark {
    width: 170px;
    flex: 0 0 170px;
}

    .founder-photo img,
    .founder-mark {
        border-radius: 20px;
    }

.founder-mark {
    display: grid;
    place-items: center;
    height: 170px;
    padding: 20px;
    background: #cccaca;
}

    .founder-mark img {
        width: auto;
        height: 80px;
    }

.founder-copy {
    flex: 1;
    text-align: center;
}

    .founder-copy h3 {
        margin: 0;
        color: #000;
        font-size: 25px;
        line-height: 35px;
        text-transform: uppercase;
    }

    .founder-copy p {
        margin: 10px 0 0;
        color: #333;
        font-size: 15px;
        line-height: 23px;
    }

.heritage .swiper-button-prev,
.heritage .swiper-button-next,
.artists .swiper-button-prev,
.artists .swiper-button-next,
.news .swiper-button-prev,
.news .swiper-button-next {
    color: var(--gold);
    --swiper-navigation-size: 26px;
}

.heritage .swiper-button-prev {
    left: -35px;
}

.heritage .swiper-button-next {
    right: -35px;
}

.global-map {
    padding: 0;
    text-align: center;
    background: var(--cream);
}

.map-wrap {
    position: relative;
    display: inline-block;
    width: min(1280px, 100%);
    margin: 0 auto;
}

.global-map img {
    display: block;
    width: 100%;
    height: auto;
}

.map-dot {
    position: absolute;
    z-index: 2;
    width: 11px;
    height: 11px;
    border: 0;
    border-radius: 50%;
    background: var(--navy);
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.42);
    cursor: pointer;
    transform: translate(-50%, -50%);
}

    .map-dot::before {
        content: attr(data-country);
        position: absolute;
        left: 50%;
        bottom: calc(100% + 15px);
        z-index: 4;
        min-width: 100px;
        padding: 0;
        color: var(--gold);
        background: transparent;
        font-size: 22px;
        font-weight: 700;
        line-height: 16px;
        text-align: center;
        text-shadow: 0 1px 1px rgba(255, 255, 255, 0.65);
        white-space: nowrap;
        opacity: 0;
        visibility: hidden;
        transform: translate(-50%, 4px);
        transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    }

    .map-dot:hover {
        z-index: 5;
    }

        .map-dot:hover::before,
        .map-dot:focus-visible::before {
            opacity: 1;
            visibility: visible;
            transform: translate(-50%, 0);
        }

    .map-dot::after {
        content: "";
        position: absolute;
        inset: 3px;
        background: var(--gold);
        border: 0;
        border-radius: 50%;
    }

.dot-3 {
    left: 90.7909%;
    top: 82.0986%;
}

.dot-4 {
    left: 51.238%;
    top: 38.1813%;
}

.dot-6 {
    left: 21.2308%;
    top: 43.5419%;
}

.dot-7 {
    left: 80.2139%;
    top: 60.1665%;
}

.dot-8 {
    left: 81.6082%;
    top: 48.3967%;
}

.dot-9 {
    left: 24.8149%;
    top: 71.4303%;
}

.dot-10 {
    left: 26.8029%;
    top: 86.8513%;
}

.dot-11 {
    left: 32.5096%;
    top: 71.6384%;
}

.dot-12 {
    left: 56.0577%;
    top: 51.3381%;
}

.dot-13 {
    left: 88.4183%;
    top: 44.0845%;
}

.dot-14 {
    left: 79.024%;
    top: 65.3965%;
}

.dot-15 {
    left: 77.7933%;
    top: 56.8497%;
}

.dot-16 {
    left: 83.6442%;
    top: 52.7293%;
}

.dot-17 {
    left: 97.4375%;
    top: 94.5455%;
}

.dot-18 {
    left: 71.9495%;
    top: 15.6787%;
}

.dot-19 {
    left: 14.4904%;
    top: 35.452%;
}

.dot-20 {
    left: 57.75%;
    top: 50.306%;
}

.dot-21 {
    left: 51.4279%;
    top: 43.6684%;
}

.dot-22 {
    left: 59.1635%;
    top: 65.4496%;
}

.dot-23 {
    left: 44.5%;
    top: 44.721%;
}

.dot-24 {
    left: 46.3462%;
    top: 44.0886%;
}

.dot-25 {
    left: 49.1298%;
    top: 38.2303%;
}

.dot-26 {
    left: 48.9904%;
    top: 30.5483%;
}

.dot-27 {
    left: 49.7428%;
    top: 34.2037%;
}

.dot-28 {
    left: 64.0986%;
    top: 34.7952%;
}

.dot-29 {
    left: 57.7452%;
    top: 37.2715%;
}

.dot-30 {
    left: 46.2043%;
    top: 35.2888%;
}

.dot-31 {
    left: 44.9976%;
    top: 34.7422%;
}

.dot-32 {
    left: 50.9832%;
    top: 35.7702%;
}

.dot-34 {
    left: 52.6779%;
    top: 38.1201%;
}

.dot-35 {
    left: 53.1442%;
    top: 44.5537%;
}

.dot-36 {
    left: 54.2115%;
    top: 42.3874%;
}

.dot-37 {
    left: 54.363%;
    top: 40.4537%;
}

.dot-38 {
    left: 54.363%;
    top: 38.1201%;
}

.dot-39 {
    left: 53.9014%;
    top: 35.5091%;
}

.dot-40 {
    left: 52.3654%;
    top: 38.9687%;
}

.dot-41 {
    left: 54.8269%;
    top: 35.248%;
}

.dot-42 {
    left: 54.3822%;
    top: 32.0047%;
}

.dot-43 {
    left: 63.3125%;
    top: 48.6129%;
}

@keyframes dotPulse {
    0% {
        opacity: 0.9;
        transform: scale(0.6);
    }

    100% {
        opacity: 0;
        transform: scale(1.8);
    }
}

.artists {
    position: relative;
    padding: 5px;
    background: #fff;
}

.artist-swiper {
    overflow: hidden;
}

    .artist-swiper .swiper-slide {
        height: auto;
    }

.artist-card {
    position: relative;
    height: calc((100vw - 16px) / 4);
    overflow: hidden;
    background: #111;
    border: 3px solid #fff;
}

    .artist-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.55s ease;
    }

.artist-overlay {
    position: absolute;
    inset: 0;
    display: table;
    width: 100%;
    height: 100%;
    padding: 0 28px;
    color: #fff;
    text-align: center;
    background: rgba(0, 0, 0, 0.75);
    opacity: 0;
    transform: scale(0);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.artist-overlay-inner {
    display: table-cell;
    vertical-align: middle;
}

.artist-card:hover img {
    transform: scale(1.05);
}

.artist-card:hover .artist-overlay {
    opacity: 1;
    transform: scale(1);
}

.artist-overlay p {
    margin: 0 0 15px;
    padding: 0 10px;
    font-size: 14px;
    line-height: 20px;
}

.artist-overlay h3 {
    margin: 0;
    padding: 0 10px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    line-height: 22px;
    text-transform: uppercase;
}

.artists .swiper-button-prev,
.artists .swiper-button-next {
    top: 50%;
    width: 38px;
    height: 50px;
    margin-top: 0;
    color: #fff;
    background: var(--gold);
    transform: translateY(-50%);
    --swiper-navigation-size: 20px;
}

.artists .swiper-button-prev {
    left: 14px;
}

.artists .swiper-button-next {
    right: 14px;
}

    .artists .swiper-button-prev:hover,
    .artists .swiper-button-next:hover {
        background: #9a844f;
    }

.technology {
    padding: 30px 0 10px;
    overflow: hidden;
    background: #fff;
}

    .technology .section-title {
        margin-bottom: 34px;
    }

        .technology .section-title::after {
            content: "";
            display: block;
            width: 70px;
            height: 1px;
            margin: 14px auto 0;
            background: #333;
        }

.tech-block {
    display: flex;
    gap: 0;
    align-items: start;
    width: min(950px, 100%);
    margin: 0 auto 45px;
}

.tech-media {
    flex: 0 0 56%;
}

.tech-copy {
    flex: 0 0 44%;
    min-height: 0;
    padding: 0;
    background: transparent;
    box-sizing: border-box;
}

.tech-block.reverse .tech-copy {
    order: 1;
    text-align: right;
}

.tech-block.reverse .tech-media {
    order: 2;
}

.tech-media img {
    width: 100%;
    height: 354px;
    object-fit: cover;
    display: block;
}

.tech-copy h3 {
    margin: 0 0 18px;
    color: var(--gold);
    font-family: "SVN-BonVoyage", Georgia, serif;
    font-size: 24px;
    line-height: 32px;
    text-transform: uppercase;
}

.tech-block:not(.reverse) .tech-copy h3 {
    margin-left: 0;
    padding-left: 26px;
}

.tech-block.reverse .tech-copy h3 {
    padding-right: 26px;
}

.tech-copy h3 a {
    color: inherit;
}

.tech-copy .tech-txt {
    margin: 0;
    min-height: 304px;
    padding: 84px 38px 38px;
    background: var(--cream);
    color: #333;
    font-size: 15px;
    line-height: 25px;
    box-sizing: border-box;
}

@media (min-width: 1024px) {
    .tech-block:not(.reverse) .tech-copy .tech-txt {
        position: relative;
        left: -135px;
        width: calc(100% + 135px);
        z-index: 1;
        padding-left: 156px;
    }

    .tech-block.reverse .tech-copy .tech-txt {
        position: relative;
        width: calc(100% + 135px);
        z-index: 1;
        padding-right: 156px;
    }

    .tech-block.reverse .tech-media {
        transform: none;
    }

    .tech-block.reverse .tech-media,
    .tech-block .tech-media {
        position: relative;
        z-index: 2;
    }
}

.news {
    padding: 50px 0 60px;
    background: #fff url("../images/1750291314_Ban-sao-cua-1920-x-760-6.jpg") no-repeat center;
    background-size: cover;
}

    .news .section-title {
        color: #000;
    }

.news-slider-wrap {
    position: relative;
}

.news-card {
    display: block;
    color: #333;
    background: #f1f1f1;
    border-bottom: 4px solid #dcdcdc;
    padding-bottom: 25px;
    transition: border-color 0.65s var(--ease), background 0.33s cubic-bezier(0.33, 0, 0.2, 1);
}

    .news-card:hover {
        border-bottom-color: var(--gold);
    }

.news-card-thumb {
    position: relative;
    display: block;
    overflow: hidden;
    line-height: 0;
}

    .news-card-thumb::before,
    .news-card-thumb::after {
        content: "";
        position: absolute;
        top: 10px;
        right: 10px;
        bottom: 10px;
        left: 10px;
        z-index: 2;
        pointer-events: none;
    }

    .news-card-thumb::before {
        border-top: 1px solid #fff;
        border-bottom: 1px solid #fff;
        transform: scaleX(0);
    }

    .news-card-thumb::after {
        border-right: 1px solid #fff;
        border-left: 1px solid #fff;
        transform: scaleY(0);
        transition: opacity 0.35s, transform 0.45s;
    }

.news-card:hover .news-card-thumb::before {
    transform: scaleX(1);
    transition: all 0.65s;
}

.news-card:hover .news-card-thumb::after {
    transform: none;
    transition: transform 0.35s;
}

.news-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: all 650ms var(--ease);
}

.news-card:hover img {
    transform: scale(1.1);
    opacity: 1;
    filter: grayscale(0);
}

.news-card h3 {
    margin: 0;
    padding: 30px 30px 0;
    color: var(--gold);
    font-family: "SVN-BonVoyage", Georgia, serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
    text-align: center;
    text-transform: uppercase;
    transition: color 0.33s cubic-bezier(0.33, 0, 0.2, 1);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.news-card p {
    margin: 0;
    padding: 7px 30px 0;
    min-height: 69px;
    color: #888;
    font-size: 14px;
    line-height: 23px;
    text-align: center;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.more-link {
    margin-top: 30px;
    text-align: center;
}

    .more-link a {
        display: inline-block;
        color: var(--navy);
        font-size: 18px;
        font-weight: 600;
        transition: color 0.25s ease;
    }

        .more-link a:hover {
            color: var(--gold);
        }

.partner-logos {
    padding: 60px 0;
    background: #505050;
}

.footer-logo-slider-wrap {
    position: relative;
    width: 60%;
    margin: 0 auto;
}

.footer-logo-slider .swiper-slide {
    min-height: 94px;
    padding: 7px 40px;
    border: 0;
}

.site-footer {
    position: relative;
    /* padding: 40px 0 60px; */
    color: #fff;
    background: #000 url("../images/bg-footer.jpg") no-repeat center;
    background-size: cover;
}

    .site-footer::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.65);
    }

    .site-footer .pagewrap {
        position: relative;
        z-index: 2;
        display: flex;
        justify-content: space-between;
        gap: 40px;
        padding: 40px 0 60px;
    }

.company-footer {
    width: 500px;
    margin: 0;
}

    .company-footer img {
        width: 350px;
        height: auto;
        margin-bottom: 25px;
    }

    .company-footer h3 {
        margin: 0 0 5px;
        color: #fff;
        font-size: 20px;
        line-height: 35px;
        text-transform: uppercase;
    }

    .company-footer p {
        margin: 0;
        color: #fff;
        font-size: 16px;
        line-height: 30px;
    }

.footer-connect {
    width: 420px;
    margin-top: 35px;
}

.footer-social {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 10px;
    width: 100%;
    margin-top: 0;
}

    .footer-social a {
        display: grid;
        place-items: center;
        width: 44px;
        height: 40px;
        border: 1px solid rgba(255, 255, 255, 0.54);
        transition: background 0.33s cubic-bezier(0.33, 0, 0.2, 1), border-color 0.33s cubic-bezier(0.33, 0, 0.2, 1), transform 0.25s ease;
    }

        .footer-social a:hover {
            background: var(--gold);
            border-color: #fff;
            transform: translateY(-3px);
        }

    .footer-social img {
        width: 30px;
        height: 26px;
        object-fit: scale-down;
    }

    .footer-social a:hover img {
        transform: none;
    }

.copyright {
    padding: 25px 10px;
    color: #ffffff;
    /* background: #000; */
    text-align: center;
    position: relative;
}

    .copyright p {
        margin: 0;
        font-size: 14px;
        line-height: 25px;
    }

    .copyright a {
        color: #fff;
    }

        .copyright a:hover {
            color: var(--gold);
            text-decoration: underline;
        }

.tile-black {
    background: #030303;
}

.category-hero {
    position: relative;
    height: 820px;
    overflow: hidden;
    background: #000;
}

    .category-hero::after {
        content: "";
        position: absolute;
        inset: 0;
        z-index: 1;
        background: rgba(0, 0, 0, 0.45);
    }

    .category-hero img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
        transform: scale(1.15);
        transform-origin: right center;
        animation: categoryHeroZoom 25s ease forwards;
    }

.category-hero-copy {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 20px;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
}

    .category-hero-copy h1 {
        margin: 0;
        color: #fff;
        font-family: Georgia, "Times New Roman", serif;
        font-size: 118px;
        font-weight: 400;
        line-height: 1;
        letter-spacing: 6px;
        white-space: nowrap;
    }

        .category-hero-copy h1 span {
            display: inline;
            font-size: inherit;
            letter-spacing: inherit;
        }

    .category-hero-copy p {
        margin: 30px 0 0;
        color: #fff;
        font-size: 17px;
        letter-spacing: 12px;
        line-height: 30px;
    }

.category-intro {
    padding: 65px 0 0;
    background: #fff;
    text-align: center;
}

.category-title {
    margin: 0 0 24px;
    color: var(--navy);
    font-family: "SVN-BonVoyage", Georgia, serif;
    font-size: 40px;
    font-weight: 800;
    line-height: 60px;
    letter-spacing: 2px;
    text-transform: uppercase;
    overflow-wrap: anywhere;
}

.category-intro-text {
    width: 75%;
    margin: 0 auto 50px;
}

    .category-intro-text p,
    .series-copy p {
        margin: 0 0 10px;
        color: #333;
        font-size: 15px;
        line-height: 23px;
        text-align: center;
    }

.series-description {
    color: #333;
    font-size: 15px;
    line-height: 23px;
    text-align: center;
}

    .series-description p {
        margin: 0 0 10px;
    }

    .series-description img {
        max-width: 100%;
        height: auto;
    }

.category-logo-wrap {
    position: relative;
    width: 60%;
    margin: 0 auto 48px;
}

.category-logo-swiper {
    overflow: hidden;
}

.category-logo-tile {
    display: grid;
    place-items: center;
    height: 170px;
    padding: 45px 40px;
    transition: transform 0.65s var(--ease), border-color 0.65s var(--ease);
    border: 1px solid transparent;
}

    .category-logo-tile:hover {
        border-color: var(--gold);
    }

    .category-logo-tile img {
        width: 100%;
        height: 80px;
        object-fit: contain;
        transition: transform 0.65s var(--ease);
    }

    .category-logo-tile:hover img {
        transform: translateY(-10px);
    }

.category-logo-prev,
.category-logo-next {
    position: absolute;
    top: 50%;
    z-index: 5;
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    color: var(--gold);
    cursor: pointer;
    transform: translateY(-50%);
}

.category-logo-prev {
    left: -48px;
}

.category-logo-next {
    right: -48px;
}

    .category-logo-prev i,
    .category-logo-next i {
        font-size: 38px;
        line-height: 1;
    }

.category-feature-icons {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 18px;
    margin: 0 auto 72px;
}

.feature-seal {
    width: 88px;
    height: 88px;
    object-fit: contain;
}

.feature-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    color: var(--gold);
    font-size: 14px;
    line-height: 20px;
}

    .feature-icon img {
        width: 45px;
        height: 45px;
        padding: 8px;
        object-fit: contain;
        border-radius: 7px;
    }

.feature-silent img {
    background: var(--gold);
}

.feature-connect img {
    background: #1e66c4;
}

.feature-room img {
    background: #14245f;
}

.feature-creator img {
    background: #48b7ca;
}

.product-series {
    background: #fff;
}

.series-banner {
    display: block;
    width: 100%;
    height: auto;
    margin: 0 auto 62px;
}

.series-copy {
    width: 75%;
    margin: 0 auto 20px;
    text-align: center;
}

.series-logo {
    display: block;
    width: auto;
    max-width: 320px;
    height: 90px;
    object-fit: contain;
    margin: 0 auto 22px;
}

.residence-logo,
.academy-logo,
.special-logo {
    max-width: 360px;
}

.series-copy h4 {
    margin: 22px 0 0;
    color: var(--gold);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 22px;
    font-style: italic;
    font-weight: 700;
    line-height: 30px;
    text-align: center;
    text-transform: uppercase;
}

.category-products {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    padding: 30px 0;
}

.category-product-card {
    flex: 0 1 calc((100% - 50px) / 3);
    max-width: calc((100% - 50px) / 3);
    padding: 20px;
    text-align: center;
    background: #fff;
    border: 2px solid #fff;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    transition: transform 0.65s var(--ease), box-shadow 0.65s var(--ease), border-color 0.65s var(--ease);
}

    .category-product-card:hover {
        transform: translateY(-7px);
        border-color: var(--gold);
        box-shadow: 0 22px 43px rgba(0, 0, 0, 0.15);
    }

.product-gallery {
    position: relative;
    display: block;
    height: 350px;
    overflow: hidden;
}

    .product-gallery img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: contain;
        opacity: 0;
        transform: scale(1);
        transition: opacity 0.45s ease, transform 0.65s var(--ease);
    }

        .product-gallery img.is-active {
            opacity: 1;
        }

.category-product-card:hover .product-gallery img.is-active {
    transform: scale(1.08);
}

.product-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    min-height: 21px;
    margin: 12px 0 4px;
}

    .product-dots button {
        width: 33px;
        height: 4px;
        padding: 0;
        border: 0;
        background: #d8d8d8;
        cursor: pointer;
        transition: background 0.25s ease;
    }

        .product-dots button.is-active {
            background: var(--gold);
        }

.product-card-copy {
    display: block;
}

    .product-card-copy h3 {
        display: -webkit-box;
        width: 100%;
        margin: 0;
        padding: 15px 0 0;
        overflow: hidden;
        color: var(--navy);
        font-size: 22px;
        line-height: 30px;
        text-transform: uppercase;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        transition: color 0.33s ease;
    }

.category-product-card:hover .product-card-copy h3 {
    color: var(--gold);
}

.product-card-copy .product-txt p {
    display: -webkit-box;
    height: 66px;
    margin: 15px 0 0;
    overflow: hidden;
    color: #888;
    font-size: 15px;
    font-weight: 400;
    line-height: 22px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.product-series-actions {
    display: flex;
    justify-content: center;
    margin: 0 0 24px;
}

.product-view-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 132px;
    min-height: 42px;
    padding: 10px 24px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    text-transform: uppercase;
    background: var(--gold);
    border: 1px solid var(--gold);
    transition: color 0.35s ease, background 0.35s ease, transform 0.35s ease;
}

    .product-view-more:hover {
        color: var(--gold);
        background: #fff;
        transform: translateY(-2px);
    }

@keyframes categoryHeroZoom {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.15);
    }
}

.back-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 80;
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    color: #fff;
    background: var(--gold);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.25s ease;
}

    .back-top.is-visible {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

.reveal {
    opacity: 1;
    transform: none;
    transition: opacity 0.85s ease, transform 0.85s ease;
}

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

.reveal-left {
    opacity: 1;
    transform: none;
}

.reveal-right {
    opacity: 1;
    transform: none;
}

.reveal.reveal-pending {
    opacity: 0;
    transform: translateY(35px);
}

.reveal-left.reveal-pending {
    opacity: 0;
    transform: translateX(-40px);
}

.reveal-right.reveal-pending {
    opacity: 0;
    transform: translateX(40px);
}

.reveal-left.is-visible,
.reveal-right.is-visible {
    transform: translateX(0);
}

.product-category-page .reveal,
.product-category-page .reveal-left,
.product-category-page .reveal-right,
.product-category-page .reveal.reveal-pending,
.product-category-page .reveal-left.reveal-pending,
.product-category-page .reveal-right.reveal-pending {
    opacity: 1;
    transform: none;
    transition: none;
}

@media (max-width: 1199px) {
    .hero .swiper-slide,
    .hero img {
        height: 700px;
    }

    .hero-copy h1 {
        font-size: 90px;
        line-height: 100px;
    }

    .brand-slider-wrap,
    .footer-logo-slider-wrap {
        width: 70%;
    }

    .video-shell {
        height: 500px;
    }
}

@media (max-width: 1023px) {
    .desktop-header {
        display: none;
    }

    .mobile-header {
        display: flex;
    }

    .pagewrap {
        width: 100%;
        padding: 0 15px;
    }

    .intro-text,
    .brand-slider-wrap,
    .footer-logo-slider-wrap {
        width: 85%;
    }

    .hero .swiper-slide,
    .hero img {
        height: 560px;
    }

    .hero-copy h1 {
        font-size: 65px;
        line-height: 80px;
    }

    .hero-copy p {
        letter-spacing: 4px;
    }

    .piano-card img {
        max-width: 88%;
        height: auto;
    }

    .digital-icons .pagewrap {
        gap: 16px;
    }

    .home-video {
        min-height: 0;
        padding-top: 35px;
    }

    .video-shell,
    .video-caption {
        width: 100%;
    }

    .video-shell {
        height: 420px;
    }

    .home-video::before,
    .home-video::after {
        height: 400px;
    }

    .heritage-slider-wrap {
        width: 100%;
        max-width: calc(100% - 50px);
    }

    .artist-card {
        height: calc((100vw - 16px) / 4);
    }
}

@media (max-width: 767px) {
    body {
        font-size: 14px;
        line-height: 24px;
    }

    .section-title {
        font-size: 25px;
        line-height: 40px;
    }

    .hero .swiper-slide,
    .hero img {
        height: 360px;
    }

    .hero-copy {
        padding: 0 30px;
    }

        .hero-copy h1 {
            font-size: 40px;
            line-height: 50px;
            letter-spacing: 7px;
        }

        .hero-copy p {
            margin-top: 12px;
            font-size: 13px;
            letter-spacing: 1px;
            white-space: nowrap;
        }

    .hero .swiper-button-prev,
    .hero .swiper-button-next {
        --swiper-navigation-size: 27px;
    }

    .intro {
        margin-top: 40px;
    }

    .intro-text {
        width: 100%;
        margin-bottom: 35px;
    }

    .brand-slider-wrap {
        width: 100%;
    }

    .brand-slider .swiper-slide {
        min-height: 150px;
        padding: 25px 35px;
    }

    .swiper-mini-prev,
    .swiper-logo-prev {
        left: 0;
        background: #fff;
    }

    .swiper-mini-next,
    .swiper-logo-next {
        right: 0;
        background: #fff;
    }

    .piano-types {
        padding-bottom: 20px;
    }

    .piano-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .piano-card {
        padding-top: 20px;
    }

        .piano-card:first-child::after {
            display: none;
        }

        .piano-card img {
            width: 70%;
            max-width: 360px;
        }

    .pill-link {
        margin-top: 18px;
    }

    .digital-icons {
        padding: 20px 0 35px;
    }

        .digital-icons .pagewrap {
            justify-content: flex-start;
            gap: 13px;
            overflow-x: auto;
            padding-bottom: 8px;
        }

    .seal img {
        height: 80px;
    }

    .digital-item span:first-child {
        width: 45px;
        height: 45px;
    }

    .digital-item img {
        height: 25px;
    }

    .digital-item h3 {
        font-size: 13px;
    }

    .home-video {
        min-height: 0;
        padding-top: 0;
    }

        .home-video::before,
        .home-video::after {
            display: none;
        }

        .home-video .pagewrap {
            padding: 0 15px;
        }

    .video-shell {
        height: 350px;
    }

    .video-caption {
        font-size: 13px;
    }

    .heritage {
        padding: 40px 0 50px;
        background-size: 300px auto;
    }

    .heritage-subtitle {
        font-size: 14px;
        line-height: 25px;
    }

    .founder-slide {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .founder-photo,
    .founder-mark {
        width: 170px;
        flex-basis: 170px;
    }

    .founder-mark {
        display: none;
    }

    .founder-copy {
        flex: 0 0 100%;
    }

        .founder-copy h3 {
            font-size: 20px;
            line-height: 30px;
        }

        .founder-copy p {
            font-size: 13px;
        }

    .map-wrap {
        max-width: none;
        width: 100%;
    }

    .artist-card {
        height: calc((100vw - 16px) / 2);
    }

    .technology {
        padding-top: 30px;
    }

    .tech-block,
    .tech-block.reverse {
        flex-direction: column;
        gap: 0;
        margin-bottom: 25px;
    }

    .tech-media,
    .tech-copy {
        flex: 0 0 auto;
        width: 100%;
    }

    .tech-block.reverse .tech-copy,
    .tech-block.reverse .tech-media {
        order: initial;
        text-align: left;
    }

    .tech-media img,
    .tech-copy {
        height: auto;
        min-height: 0;
    }

    .tech-copy {
        padding: 0;
    }

        .tech-copy h3 {
            font-size: 20px;
            line-height: 28px;
            margin-bottom: 14px;
            padding: 0;
            text-align: left;
        }

    .tech-block:not(.reverse) .tech-copy h3,
    .tech-block.reverse .tech-copy h3 {
        padding: 0;
    }

    .tech-copy .tech-txt {
        min-height: 0;
        padding: 28px 24px;
    }

    .news {
        padding: 35px 0;
    }

    .news-card img {
        height: 250px;
    }

    .partner-logos {
        padding: 35px 0;
    }

    .footer-logo-slider-wrap {
        width: 100%;
    }

    .site-footer .pagewrap {
        flex-direction: column;
        gap: 22px;
		padding: 40px 15px 60px;
    }

    .company-footer,
    .footer-connect,
    .footer-social {
        width: 100%;
    }

    .footer-connect {
        margin-top: 0;
    }

    .footer-social {
        justify-content: flex-start;
    }
}

@media (max-width: 600px) {
    .news-card img {
        height: 200px;
    }
}

@media (max-width: 500px) {
    .news-card img {
        height: auto;
    }
}

@media (max-width: 414px) {
    .hero .swiper-slide,
    .hero img {
        height: 360px;
    }

    .hero-copy h1 {
        font-size: 30px;
        line-height: 40px;
    }

    .hero-copy p {
        max-width: none;
    }

    .section-title {
        font-size: 20px;
        line-height: 30px;
    }

    .intro-text p {
        line-height: 24px;
    }

    .brand-slider .swiper-slide {
        padding: 15px 23px;
    }

    .video-shell {
        height: 280px;
    }

    .artist-card {
        height: calc((100vw - 16px) / 2);
    }
}

@media (max-width: 1199px) {
    .category-hero {
        height: 700px;
    }

    .category-hero-copy h1 {
        font-size: 88px;
    }

        .category-hero-copy h1 span {
            font-size: inherit;
        }

    .category-logo-wrap {
        width: 70%;
    }

    .product-gallery {
        height: 300px;
    }
}

@media (max-width: 1023px) {
    .category-hero {
        height: 560px;
    }

    .category-hero-copy h1 {
        font-size: 68px;
        letter-spacing: 5px;
    }

        .category-hero-copy h1 span {
            font-size: inherit;
        }

    .category-hero-copy p {
        font-size: 14px;
        letter-spacing: 6px;
    }

    .category-intro-text,
    .series-copy {
        width: 90%;
    }

    .category-logo-wrap {
        width: 82%;
    }

    .category-products {
        gap: 25px;
    }

    .category-product-card {
        flex-basis: calc((100% - 25px) / 2);
        max-width: calc((100% - 25px) / 2);
    }
}

@media (max-width: 767px) {
    .product-category-page .pagewrap {
        width: calc(100% - 52px);
    }

    .category-hero {
        height: 360px;
    }

        .category-hero img {
            object-position: center center;
        }

    .category-hero-copy {
        align-items: flex-start;
        padding: 0 20px;
        text-align: left;
    }

        .category-hero-copy h1 {
            font-size: 44px;
            line-height: 1.05;
            letter-spacing: 4px;
            white-space: normal;
        }

            .category-hero-copy h1 span {
                display: block;
                font-size: 42px;
            }

        .category-hero-copy p {
            max-width: 540px;
            margin-top: 10px;
            font-size: 13px;
            letter-spacing: 2px;
            line-height: 22px;
        }

    .category-intro {
        padding-top: 38px;
    }

    .category-title {
        max-width: 100%;
        font-size: 24px;
        line-height: 34px;
        letter-spacing: 0;
        white-space: normal;
    }

    .category-intro-text,
    .series-copy {
        width: 100%;
        max-width: 100%;
        padding: 0;
        overflow: visible;
    }

        .category-intro-text p,
        .series-copy p {
            max-width: 284px;
            margin-right: auto;
            margin-left: auto;
            font-size: 15px;
            line-height: 25px;
            white-space: normal;
            overflow: visible;
            overflow-wrap: break-word;
        }

    .product-card-copy .product-txt p {
        max-width: 284px;
        margin-right: auto;
        margin-left: auto;
        white-space: normal;
    }

    .category-logo-wrap {
        width: 100%;
        margin-bottom: 28px;
    }

    .category-logo-tile {
        height: 150px;
        padding: 25px 30px;
    }

    .category-logo-prev {
        left: 0;
    }

    .category-logo-next {
        right: 0;
    }

    .category-feature-icons {
        justify-content: flex-start;
        gap: 13px;
        overflow-x: auto;
        padding-bottom: 8px;
        margin-bottom: 42px;
    }

    .feature-seal {
        flex: 0 0 auto;
        width: 80px;
        height: 80px;
    }

    .feature-icon {
        flex: 0 0 auto;
    }

    .product-series {
        padding-bottom: 12px;
    }

    .series-banner {
        margin-bottom: 35px;
    }

    .series-logo {
        height: 70px;
        max-width: 280px;
    }

    .category-products {
        gap: 18px;
        margin: 0;
        padding-top: 20px;
    }

    .category-product-card {
        flex-basis: 100%;
        max-width: 100%;
    }

    .product-gallery {
        height: 280px;
    }

    .product-card-copy h3 {
        font-size: 20px;
        line-height: 28px;
    }
}

@media (max-width: 414px) {
    .category-title {
        font-size: 23px;
        line-height: 32px;
    }

    .category-hero-copy h1 {
        font-size: 38px;
    }

        .category-hero-copy h1 span {
            font-size: 36px;
        }

    .category-hero-copy p {
        font-size: 12px;
        letter-spacing: 1px;
    }

    .category-logo-tile {
        height: 145px;
        padding: 20px 28px;
    }

    .product-gallery {
        height: 245px;
    }
}

.product-detail-page {
    background: #fff;
}

    .product-detail-page .reveal,
    .product-detail-page .reveal-left,
    .product-detail-page .reveal-right,
    .product-detail-page .reveal.reveal-pending,
    .product-detail-page .reveal-left.reveal-pending,
    .product-detail-page .reveal-right.reveal-pending {
        opacity: 1;
        transform: none;
        transition: none;
    }

.detail-wide {
    width: min(1200px, calc(100% - 30px));
    margin: 0 auto;
}

.detail-product-hero {
    padding: 58px 0 0;
    background: #fff;
}

.detail-product-head {
    position: relative;
}

.detail-product-title {
    margin: 0 0 28px;
    color: var(--navy);
    font-family: "SVN-BonVoyage", Georgia, serif;
    font-size: 31px;
    line-height: 45px;
    text-align: center;
    text-transform: uppercase;
}

.detail-brand-row {
    position: absolute;
    top: 66px;
    left: 0;
    right: 0;
    z-index: 3;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    pointer-events: none;
}

.detail-concert-logo {
    width: 150px;
    height: auto;
    margin-left: 6px;
}

.detail-made-seal {
    width: 82px;
    height: auto;
    margin-right: 8px;
    opacity: 0.82;
}

.detail-gallery-shell {
    position: relative;
    width: 100%;
    /* min-height: 500px; */
    margin: 0 auto;
}

.detail-gallery-swiper {
    /* width: 800px; */
    max-width: 70%;
    height: 500px;
    margin: 0 auto;
}

    .detail-gallery-swiper .swiper-slide {
        display: flex;
        align-items: center;
        justify-content: center;
    }

.detail-gallery-image {
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.detail-gallery-b212 {
    background-image: url("../images/1742050231_Bechstein-B212.jpg");
}

.detail-gallery-b212-room {
    background-image: url("../images/1739449593_C.Bechstein-Concert-B212.1.jpg");
}

.detail-gallery-concept {
    background-image: url("../images/1750956570_Concert.jpg");
}

.detail-gallery-b212-front {
    background-image: url("../images/1751069298_CBConcert_C6-B212-.jpg");
}

.detail-gallery-prev,
.detail-gallery-next,
.related-product-prev,
.related-product-next {
    position: absolute;
    z-index: 6;
    display: grid;
    place-items: center;
    padding: 0;
    border: 0;
    color: var(--gold);
    background: transparent;
    cursor: pointer;
    transition: color 0.25s ease, transform 0.25s ease;
}

.detail-gallery-prev,
.detail-gallery-next {
    top: 48%;
    width: 42px;
    height: 60px;
    font-size: 44px;
    transform: translateY(-50%);
}

.detail-gallery-prev {
    left: 8px;
}

.detail-gallery-next {
    right: 8px;
}

    .detail-gallery-prev:hover,
    .detail-gallery-next:hover,
    .related-product-prev:hover,
    .related-product-next:hover {
        color: var(--navy);
    }

.detail-gallery-prev:hover {
    transform: translate(-4px, -50%);
}

.detail-gallery-next:hover {
    transform: translate(4px, -50%);
}

.detail-gallery-pagination {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7px;
    min-height: 22px;
    margin: 2px auto 14px;
}

    .detail-gallery-pagination .swiper-pagination-bullet {
        width: 28px;
        height: 5px;
        margin: 0 !important;
        border-radius: 0;
        background: #cfcfcf;
        opacity: 1;
    }

    .detail-gallery-pagination .swiper-pagination-bullet-active {
        background: var(--gold);
    }

.detail-excellence {
    width: min(1225px, calc(100% - 30px));
    margin: -8px auto 25px;
    color: #b7a36b;
    font-family: "SVN-BonVoyage", Georgia, serif;
    font-size: 43px;
    line-height: 1;
    text-align: left;
}

    .detail-excellence span {
        display: inline-block;
        margin-right: 3px;
        font-size: 82px;
        line-height: 0.75;
        vertical-align: 0px;
    }

.detail-feature-icons {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 13px;
    margin: 0 auto 45px;
}

.detail-feature-seal {
    width: 78px;
    flex: 0 0 78px;
}

    .detail-feature-seal img {
        width: 100%;
        height: auto;
    }

.detail-feature-item {
    display: block;
    width: 56px;
    color: var(--gold);
    text-align: center;
    transition: transform 0.4s var(--ease);
}

    .detail-feature-item:hover {
        transform: translateY(-5px);
    }

    .detail-feature-item span {
        display: grid;
        place-items: center;
        width: 50px;
        height: 50px;
        margin: 0 auto;
        border-radius: 9px;
    }

    .detail-feature-item img {
        width: auto;
        height: 29px;
        object-fit: contain;
    }

    .detail-feature-item strong {
        display: block;
        margin-top: 7px;
        color: var(--gold);
        font-size: 12px;
        line-height: 16px;
    }

.detail-feature-silent span {
    background: #ad9861;
}

.detail-feature-connect span {
    background: #205cb8;
}

.detail-feature-room span {
    background: #1a2e64;
}

.detail-feature-creator span {
    background: #49b0ca;
}

.product-detail-page .detail-video {
    min-height: 660px;
    padding: 35px 0 0;
}

    .product-detail-page .detail-video::before {
        top: 0;
        width: 44%;
        height: 500px;
        filter: grayscale(1);
        opacity: 0.25;
    }

    .product-detail-page .detail-video::after {
        top: auto;
        bottom: 0;
        width: 44%;
        height: 500px;
        filter: grayscale(1);
        opacity: 0.25;
    }

.product-detail-page .detail-video-shell,
.product-detail-page .detail-video-caption {
    width: 75%;
    max-width: 900px;
}

.product-detail-page .detail-video-shell {
    height: 600px;
    background: #000 url("../images/1773135428_8.jpg") no-repeat center;
    background-size: cover;
}

.product-detail-page .detail-video-caption {
    margin-bottom: 0;
    font-size: 16px;
    line-height: 30px;
}

.mobile-caption-break {
    display: none;
}

.detail-info-section {
    padding: 50px 0 30px;
    background: #fff;
}

.product-detail-page .detail-info-section .pagewrap-narrow {
    width: min(1200px, calc(100% - 30px));
}

.detail-info-title {
    width: 75%;
    margin: 0 0 20px;
    color: var(--navy);
    font-family: "SVN-BonVoyage", Georgia, serif;
    font-size: 29px;
    line-height: 40px;
    text-align: center;
    text-transform: uppercase;
    margin-right: auto;
    margin-left: auto;
}

.detail-info-copy {
    width: 75%;
    margin: 0 auto 37px;
    color: #555;
    font-size: 14px;
    line-height: 24px;
    text-align: justify;
}

.detail-accordion {
    width: 75%;
    margin: 0 auto;
    border-bottom: 1px solid #dedede;
}

.detail-accordion-item {
    border-top: 1px solid #dedede;
}

.detail-accordion-button {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 66px;
    padding: 12px 0;
    border: 0;
    color: var(--navy);
    background: transparent;
    cursor: pointer;
    text-align: left;
}

    .detail-accordion-button img {
        width: 45px;
        height: auto;
        margin: 0 25px 0 18px;
        opacity: 0.9;
    }

    .detail-accordion-button span {
        flex: 1;
        font-family: "SVN-BonVoyage", Georgia, serif;
        font-size: 23px;
        line-height: 30px;
        text-transform: uppercase;
    }

    .detail-accordion-button i {
        margin-left: auto;
        padding-right: 7px;
        color: #333;
        font-size: 26px;
        transition: transform 0.3s ease;
    }

.detail-accordion-item.is-open .detail-accordion-button i {
    transform: rotate(180deg);
}

.detail-accordion-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s var(--ease);
}

.detail-accordion-content {
    padding: 0 8px 22px 88px;
    color: #555;
    font-size: 15px;
    line-height: 25px;
    text-align: justify;
}

    .detail-accordion-content p {
        margin: 0;
    }

    .detail-accordion-content ul {
        margin: 0;
        padding-left: 20px;
    }

.detail-price-section {
    padding: 60px 0 10px;
    background: #fff;
}

.detail-price-grid {
    width: min(1200px, calc(100% - 30px));
    display: grid;
    grid-template-columns: 58% 42%;
    align-items: stretch;
    gap: 0;
    margin-bottom: 50px;
}

.detail-price-image {
    height: auto;
    min-height: 0;
    aspect-ratio: 1280 / 1000;
}

.detail-price-image {
    background: url("../images/1773134749_C.-Bechstein-Concert-b212-2.jpg") no-repeat center;
    background-size: cover;
}

.detail-price-card {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: auto;
    min-height: 0;
    margin-top: 70px;
    padding: 52px 56px 42px;
    background: var(--cream);
}

.detail-catalog-link,
.detail-price-market,
.detail-list-price,
.detail-phone {
    font-family: "Times New Roman", Times, serif;
}

.detail-catalog-link {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--gold);
    font-size: 18px;
    line-height: 28px;
    text-transform: uppercase;
}

.detail-price-market {
    margin: 0 0 11px;
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
    text-transform: uppercase;
}

    .detail-price-market a {
        color: #e67e22;
    }

    .detail-price-market span {
        margin: 0 8px;
        color: #000;
    }

.detail-list-price {
    margin: 0 0 17px;
    color: var(--gold);
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
    text-transform: uppercase;
}

.detail-price-card ul {
    margin: 0 0 18px 29px;
    padding: 0;
}

.detail-price-card li {
    margin-bottom: 12px;
    color: #111;
    font-size: 14px;
    line-height: 25px;
}

.detail-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #555;
    font-size: 26px;
    line-height: 34px;
}

    .detail-phone i {
        color: #000;
        font-size: 22px;
    }

.detail-legacy {
    overflow: hidden;
    background: #fff;
}

.legacy-block {
    position: relative;
    padding: 0 0 50px;
}

    .legacy-block::before {
        content: "";
        position: absolute;
        top: 10px;
        z-index: 0;
        width: 52%;
        height: 630px;
        background-repeat: no-repeat;
        background-size: cover;
        clip-path: polygon(0 0, 75% 0, 100% 100%, 0 100%);
        filter: grayscale(1);
        opacity: 0.35;
    }

.legacy-artists::before {
    left: 0;
    background-image: url("../images/1747398631_5.jpg");
    background-position: right center;
}

.legacy-royal::before {
    right: 0;
    background-image: url("../images/1747398643_6.jpg");
    background-position: left center;
    clip-path: polygon(25% 0, 100% 0, 100% 100%, 0 100%);
}

.legacy-today::before {
    left: 0;
    background-image: url("../images/1749203352_17.jpg");
    background-position: right center;
}

.legacy-title {
    position: relative;
    z-index: 1;
    width: min(1200px, calc(100% - 30px));
    margin: 0 auto 15px;
    color: var(--navy);
    font-family: "SVN-BonVoyage", Georgia, serif;
    font-size: 28px;
    font-weight: 800;
    line-height: 45px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.legacy-title-right {
    text-align: right;
}

.legacy-title-left {
    text-align: left;
}

.legacy-composition {
    position: relative;
    z-index: 1;
    min-height: 0;
    padding-bottom: 210px;
}

.legacy-image {
    position: relative;
    z-index: 2;
    display: block;
    width: 77%;
    aspect-ratio: 1500 / 844;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border: 7px solid var(--gold);
}

.legacy-image-artists {
    background-image: url("../images/1739426974_img-bg-1.jpg");
}

.legacy-image-royal {
    background-image: url("../images/1747389178_12.jpg");
}

.legacy-image-today {
    background-image: url("../images/1747389217_8.jpg");
}

.legacy-image-right {
    margin-left: auto;
}

.legacy-image-left {
    margin-right: auto;
}

.legacy-panel {
    position: absolute;
    top: 385px;
    bottom: auto;
    z-index: 1;
    width: 67%;
    min-height: 280px;
    padding: 150px 0 32px;
    background: var(--gold);
}

    .legacy-panel p {
        margin: 0;
        color: #000;
        font-size: 15px;
        font-weight: 400;
        line-height: 28px;
    }

.legacy-panel-right p,
.legacy-panel-left p {
    max-width: min(924px, calc(100vw - 30px));
}

.legacy-panel-right {
    right: calc((min(1200px, calc(100vw - 30px)) - 100vw) / 2);
    width: calc(67% + ((100vw - min(1200px, calc(100vw - 30px))) / 2));
    clip-path: polygon(0 0, 100% 0, 100% 100%, 3.5% 100%);
    text-align: right;
}

    .legacy-panel-right p {
        margin-left: auto;
        margin-right: calc((100vw - min(1200px, calc(100vw - 30px))) / 2);
        padding-left: 120px;
    }

.legacy-panel-left {
    left: calc((min(1200px, calc(100vw - 30px)) - 100vw) / 2);
    width: calc(67% + ((100vw - min(1200px, calc(100vw - 30px))) / 2));
    clip-path: polygon(0 0, 100% 0, 96.5% 100%, 0 100%);
    text-align: left;
}

    .legacy-panel-left p {
        margin-left: calc((100vw - min(1200px, calc(100vw - 30px))) / 2);
        margin-right: auto;
        padding-right: 120px;
    }

.legacy-year {
    position: absolute;
    bottom: 50px;
    z-index: 3;
    display: grid;
    place-items: center;
    width: 235px;
    height: 135px;
    color: #000;
    background: #fff;
    font-family: "SVN-BonVoyage", Georgia, serif;
    font-size: 64px;
    font-weight: 400;
    line-height: 1;
}

.legacy-year-left {
    left: 276px;
    clip-path: polygon(0 0, 86% 0, 100% 100%, 0 100%);
}

.legacy-year-right {
    right: 276px;
    clip-path: polygon(14% 0, 100% 0, 100% 100%, 0 100%);
}

.detail-related {
    padding: 42px 0 70px;
    background: #fff;
}

    .detail-related .section-title {
        margin-bottom: 60px;
    }

.related-product-wrap {
    position: relative;
}

.related-product-card {
    display: block;
    min-height: 530px;
    padding: 42px 44px 28px;
    color: #888;
    text-align: center;
    background: #fff;
    border: 1px solid #e8e8e8;
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.12);
    transition: transform 0.55s var(--ease), border-color 0.55s var(--ease), box-shadow 0.55s var(--ease);
}

    .related-product-card:hover {
        transform: translateY(-7px);
        border-color: var(--gold);
        box-shadow: 0 22px 43px rgba(0, 0, 0, 0.15);
    }

.related-card-image {
    display: block;
    width: 100%;
    height: 318px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.related-card-l167 {
    background-image: url("../images/1741410977_Bechstein-L167-saitin.jpg");
}

.related-card-a192 {
    background-image: url("../images/1742050214_Bechstein-a192.jpg");
}

.related-card-c234 {
    background-image: url("../images/1742050252_Bechstein-C234.jpg");
}

.related-card-d282 {
    background-image: url("../images/1741410862_Bechstein-C282.jpg");
}

.related-product-card h3 {
    margin: 22px 0 18px;
    color: var(--navy);
    font-size: 22px;
    font-weight: 600;
    line-height: 29px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.related-product-card:hover h3 {
    color: var(--gold);
}

.related-product-card p {
    display: -webkit-box;
    margin: 0;
    overflow: hidden;
    color: #999;
    font-size: 16px;
    line-height: 26px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.related-product-prev,
.related-product-next {
    top: 50%;
    width: 40px;
    height: 58px;
    font-size: 48px;
    transform: translateY(-50%);
}

.related-product-prev {
    left: -58px;
}

.related-product-next {
    right: -58px;
}

.related-product-prev:hover {
    transform: translate(-4px, -50%);
}

.related-product-next:hover {
    transform: translate(4px, -50%);
}

.product-detail-page .partner-logos {
    padding: 45px 0;
    background: #555;
}

.product-detail-page .footer-logo-slider-wrap {
    width: 57%;
}

.product-detail-page .footer-logo-slider .swiper-slide {
    min-height: 70px;
    padding: 8px 40px;
    border: 0;
}

.product-detail-page .site-footer {
    min-height: 350px;
    padding: 40px 0 60px;
}

    .product-detail-page .site-footer::before {
        background: rgba(0, 0, 0, 0.65);
    }

.product-detail-page .company-footer h3 {
    margin-top: 18px;
}

.product-detail-page .footer-connect {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    align-self: flex-start;
    width: 420px;
    margin-top: 17px;
}

    .product-detail-page .footer-connect h3 {
        display: none;
    }

.product-detail-page .footer-social {
    justify-content: flex-end;
    gap: 16px;
}

    .product-detail-page .footer-social a {
        display: grid;
        place-items: center;
        width: 42px;
        height: 42px;
        border: 1px solid rgba(255, 255, 255, 0.72);
        transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
    }

        .product-detail-page .footer-social a:hover {
            background: var(--gold);
            border-color: var(--gold);
            transform: translateY(-3px);
        }

    .product-detail-page .footer-social img {
        width: 18px;
        height: 18px;
        object-fit: contain;
    }

    .product-detail-page .footer-social a:hover img {
        transform: none;
    }

@media (max-width: 1199px) {
    .detail-gallery-swiper {
        height: 560px;
    }

    .detail-gallery-shell {
        min-height: 560px;
    }

    .legacy-year-left {
        left: 180px;
    }

    .legacy-year-right {
        right: 180px;
    }

    .related-product-prev {
        left: -8px;
    }

    .related-product-next {
        right: -8px;
    }
}

@media (max-width: 1023px) {
    .detail-product-hero {
        padding-top: 40px;
    }

    .detail-brand-row {
        position: static;
        margin-bottom: 18px;
        padding: 0 20px;
    }

    .detail-concert-logo {
        width: 132px;
        margin-left: 0;
    }

    .detail-made-seal {
        width: 74px;
        margin-right: 0;
    }

    .detail-gallery-shell,
    .detail-gallery-swiper {
        min-height: 430px;
        height: 430px;
    }

    .detail-gallery-swiper {
        max-width: 86%;
    }

    .detail-excellence {
        padding-left: 15px;
    }

    .product-detail-page .detail-video-shell {
        height: 430px;
    }

    .product-detail-page .detail-video {
        min-height: 0;
    }

    .detail-price-grid {
        grid-template-columns: 1fr;
    }

    .detail-price-image,
    .detail-price-card {
        min-height: 0;
    }

    .detail-price-image {
        height: auto;
        aspect-ratio: 1280 / 1000;
    }

    .detail-price-card {
        height: auto;
        padding: 42px 38px;
    }

    .legacy-title,
    .legacy-title-right,
    .legacy-title-left {
        text-align: center;
    }

    .legacy-composition {
        min-height: 0;
        padding-bottom: 0;
    }

    .legacy-image {
        width: 100%;
    }

    .legacy-panel {
        position: relative;
        top: auto;
        bottom: auto;
        width: 100%;
        min-height: 0;
        padding: 34px 34px;
        right: auto;
        left: auto;
        clip-path: none;
        text-align: center;
    }

    .legacy-panel-right p,
    .legacy-panel-left p {
        max-width: none;
        margin: 0;
        padding-right: 0;
        padding-left: 0;
        text-align: center;
    }

    .legacy-year {
        position: relative;
        top: auto;
        bottom: auto;
        left: auto;
        right: auto;
        width: 100%;
        height: auto;
        padding: 28px 0 18px;
        clip-path: none;
    }

    .product-detail-page .footer-logo-slider-wrap {
        width: 78%;
    }
}

@media (max-width: 767px) {
    .product-detail-page .pagewrap,
    .product-detail-page .pagewrap-narrow,
    .detail-wide {
        width: 100%;
        padding-right: 15px;
        padding-left: 15px;
    }

    .detail-product-hero {
        padding-top: 35px;
    }

    .detail-product-title {
        margin-bottom: 18px;
        width: 340px;
        font-size: 18px;
        line-height: 28px;
        max-width: 100%;
        margin-right: auto;
        margin-left: auto;
        overflow-wrap: break-word;
        white-space: normal;
    }

    .detail-brand-row {
        padding: 0 25px;
    }

    .detail-concert-logo {
        width: 108px;
    }

    .detail-made-seal {
        display: none;
    }

    .detail-gallery-shell,
    .detail-gallery-swiper {
        min-height: 295px;
        height: 295px;
    }

    .detail-gallery-swiper {
        max-width: 86%;
    }

    .detail-gallery-prev,
    .detail-gallery-next {
        width: 30px;
        height: 45px;
        font-size: 34px;
    }

    .detail-gallery-prev {
        left: 0;
    }

    .detail-gallery-next {
        right: 0;
    }

    .detail-gallery-pagination {
        margin-top: 0;
    }

        .detail-gallery-pagination .swiper-pagination-bullet {
            width: 22px;
            height: 4px;
        }

    .detail-excellence {
        margin: 0 auto 22px;
        padding-left: 15px;
        font-size: 31px;
    }

        .detail-excellence span {
            font-size: 58px;
            vertical-align: -7px;
        }

    .detail-feature-icons {
        justify-content: flex-start;
        gap: 12px;
        margin-bottom: 32px;
        overflow-x: auto;
        padding: 0 15px 8px;
    }

    .detail-feature-seal {
        width: 68px;
        flex-basis: 68px;
    }

    .detail-feature-item {
        flex: 0 0 52px;
    }

        .detail-feature-item span {
            width: 46px;
            height: 46px;
        }

        .detail-feature-item img {
            height: 26px;
        }

    .product-detail-page .detail-video {
        min-height: 0;
        padding-top: 0;
    }

        .product-detail-page .detail-video::before,
        .product-detail-page .detail-video::after {
            display: none;
        }

    .product-detail-page .detail-video-shell,
    .product-detail-page .detail-video-caption {
        width: 100%;
        max-width: none;
    }

    .product-detail-page .detail-video-shell {
        height: 260px;
    }

    .product-detail-page .detail-video-caption {
        width: 360px;
        max-width: calc(100% - 30px);
        padding-right: 8px;
        padding-left: 8px;
        font-size: 11px;
        line-height: 21px;
        white-space: normal;
        overflow-wrap: break-word;
    }

    .mobile-caption-break {
        display: block;
    }

    .detail-info-section {
        padding: 38px 0 20px;
    }

    .detail-info-title {
        font-size: 20px;
        line-height: 30px;
    }

    .detail-info-copy {
        font-size: 14px;
        line-height: 24px;
		width: 100%;
    }

    .detail-accordion-button {
        min-height: 58px;
    }

        .detail-accordion-button img {
            width: 38px;
            margin: 0 16px 0 4px;
        }

        .detail-accordion-button span {
            font-size: 20px;
            line-height: 28px;
        }

    .detail-accordion-content {
        padding: 0 0 20px 58px;
        font-size: 14px;
        line-height: 24px;
    }

    .detail-price-section {
        padding: 35px 0 56px;
    }

    .detail-price-card {
        padding: 34px 26px;
    }

    .detail-price-market,
    .detail-list-price,
    .detail-catalog-link {
        font-size: 17px;
        line-height: 27px;
    }

    .detail-phone {
        font-size: 22px;
        line-height: 30px;
    }

    .legacy-block {
        padding-bottom: 54px;
    }

        .legacy-block::before {
            display: none;
        }

    .legacy-title {
        margin-bottom: 18px;
        font-size: 27px;
        line-height: 37px;
    }

    .legacy-image {
        border-width: 5px;
    }

    .legacy-panel {
        padding: 28px 20px;
    }

        .legacy-panel p {
            font-size: 14px;
            line-height: 25px;
        }

    .legacy-year {
        font-size: 46px;
    }

    .detail-related {
        padding: 20px 0 52px;
    }

        .detail-related .section-title {
            margin-bottom: 35px;
        }

    .related-product-card {
        min-height: 470px;
        padding: 30px 28px 24px;
    }

    .related-card-image {
        height: 340px;
    }

    .related-product-card h3 {
        font-size: 20px;
        line-height: 28px;
    }

    .related-product-prev,
    .related-product-next {
        font-size: 38px;
    }

    .product-detail-page .partner-logos {
        padding: 45px 0;
    }

    .product-detail-page .footer-logo-slider-wrap {
        width: 100%;
    }

    .product-detail-page .site-footer {
        padding: 45px 0 58px;
    }

    .product-detail-page .footer-connect {
        width: 100%;
        justify-content: flex-start;
        margin-top: 0;
    }

    .product-detail-page .footer-social {
        justify-content: flex-start;
    }
}

@media (max-width: 414px) {
    .detail-product-title {
        width: 320px;
        max-width: 100%;
        margin-right: auto;
        margin-left: auto;
        font-size: 15px;
        line-height: 24px;
    }

    .detail-gallery-shell,
    .detail-gallery-swiper {
        min-height: 270px;
        height: 270px;
    }

    .product-detail-page .detail-video-shell {
        height: 230px;
    }

    .related-card-image {
        height: 235px;
    }
}

.news-detail-page {
    background: #fff;
}

    .news-detail-page .page_conten_page {
        padding-top: 50px;
        padding-bottom: 20px;
    }

    .news-detail-page .news-detail-content-wrap {
        padding-top: 0;
    }

    .news-detail-page .padding_pagewrap_with {
        position: relative;
        width: 100%;
    }

    .news-detail-page .titBox {
        margin: 10px 10px 35px;
        text-align: center;
    }

        .news-detail-page .titBox .tit {
            display: block;
            margin: 0;
            padding-bottom: 10px;
            color: var(--navy);
            font-family: "SVN-BonVoyage", Georgia, serif;
            font-size: 32px;
            font-weight: 800;
            line-height: 45px;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .news-detail-page .titBox::after {
            content: "";
            display: inline-table;
            width: 90px;
            height: 1px;
            background: #333;
        }

    .news-detail-page .title_news {
        width: 75%;
        margin: 0 auto;
    }

        .news-detail-page .title_news h1 {
            margin: 0 0 10px;
            color: var(--navy);
            font-family: "SVN-BonVoyage", Georgia, serif;
            font-size: 23px;
            font-weight: 600;
            line-height: 33px;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .news-detail-page .title_news p,
        .news-detail-page .title_news .news-detail-summary-text {
            margin: 15px 0 0;
            color: #333;
            font-size: 15px;
            font-weight: 400;
            line-height: 24px;
            text-align: justify;
        }

.news-detail-hidden-meta {
    display: none;
}

.news-detail-page .noidung {
    width: 75%;
    margin: 0 auto 30px;
    color: #333;
    font-size: 15px;
    font-weight: 400;
    line-height: 25px;
}

    .news-detail-page .noidung h1,
    .news-detail-page .noidung h2,
    .news-detail-page .noidung h3,
    .news-detail-page .noidung h4 {
        margin: 0 0 10px;
        color: #333;
        font-family: "SVN-BonVoyage", Georgia, serif;
        font-weight: 600;
        line-height: 35px;
        letter-spacing: 0.6px;
        text-transform: uppercase;
    }

    .news-detail-page .noidung h1,
    .news-detail-page .noidung h2 {
        font-size: 23px;
    }

    .news-detail-page .noidung h3 {
        font-size: 21px;
    }

    .news-detail-page .noidung h4 {
        font-size: 19px;
    }

    .news-detail-page .noidung p {
        margin: 0 0 10px !important;
        color: #333;
        font-size: 15px;
        line-height: 25px;
        text-align: justify;
    }

    .news-detail-page .noidung img {
        width: 100% !important;
        max-width: 100%;
        height: auto !important;
        margin: 12px auto;
    }

    .news-detail-page .noidung iframe,
    .news-detail-page .noidung video {
        max-width: 100%;
    }

    .news-detail-page .noidung ul,
    .news-detail-page .noidung ol {
        margin: 0 0 16px 22px;
        padding: 0;
    }

    .news-detail-page .noidung li {
        margin-bottom: 8px;
    }

    .news-detail-page .noidung a {
        color: var(--gold);
    }

.news-detail-page .news-detail-related {
    margin-top: 60px;
    padding: 50px 0 60px;
}

    .news-detail-page .news-detail-related .section-title {
        color: #000;
    }

@media (max-width: 1024px) {
    .news-detail-page .title_news,
    .news-detail-page .noidung {
        width: 85%;
    }
}

@media (max-width: 768px) {
    .news-detail-page .page_conten_page {
        padding-top: 35px;
        padding-bottom: 38px;
    }

    .news-detail-page .news-detail-content-wrap {
        padding-top: 0;
    }

    .news-detail-page .titBox {
        margin-bottom: 28px;
    }

        .news-detail-page .titBox .tit {
            font-size: 27px;
            line-height: 37px;
        }

    .news-detail-page .title_news,
    .news-detail-page .noidung {
        width: 100%;
    }

        .news-detail-page .title_news h1 {
            font-size: 21px;
            line-height: 31px;
        }

        .news-detail-page .noidung h1,
        .news-detail-page .noidung h2 {
            font-size: 21px;
            line-height: 31px;
        }

        .news-detail-page .title_news p,
        .news-detail-page .title_news .news-detail-summary-text,
        .news-detail-page .noidung,
        .news-detail-page .noidung p {
            font-size: 14px;
            line-height: 25px;
        }

    .news-detail-page .news-detail-related {
        margin-top: 35px;
        padding: 35px 0 45px;
    }
}

.about-brand-page {
    background: #fff;
}

.about-brand-list {
    padding: 60px 0 34px;
    overflow: hidden;
    background: #fff;
}

.about-brand-wrap {
    width: min(1200px, calc(100% - 30px));
}

.about-brand-title {
    position: relative;
    margin: 0 0 35px;
    color: var(--navy);
    text-align: center;
    display: block;
    font-size: 32px;
    line-height: 45px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 800;
    font-family: "SVN-BonVoyage", Georgia, serif;
}

    .about-brand-title::after {
        content: "";
        display: block;
        width: 92px;
        height: 1px;
        margin: 12px auto 0;
        background: #777;
        opacity: 0.75;
    }

.about-brand-row {
    position: relative;
    display: flex;
    align-items: stretch;
    width: 75%;
    margin: 0 auto 50px;
    padding-bottom: 30px;
    overflow: hidden;
}

.about-brand-row-reverse {
    flex-direction: row-reverse;
}

.about-brand-media {
    position: relative;
    z-index: 1;
    display: block;
    width: 58%;
    height: 315px;
    overflow: hidden;
    line-height: 0;
}

    .about-brand-media img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 650ms var(--ease), filter 650ms var(--ease), opacity 650ms var(--ease);
    }

    .about-brand-media:hover img {
        transform: scale(1.1);
    }

.about-brand-copy {
    width: 42%;
    padding: 0 30px;
    text-align: left;
}

    .about-brand-copy.align-right {
        text-align: right;
    }

.about-brand-heading {
    width: calc(100% + 30px);
    margin: 0 0 15px;
}

.about-brand-row-reverse .about-brand-heading {
    margin-left: -30px;
}

.about-brand-heading a {
    position: relative;
    display: -webkit-box;
    width: 100%;
    overflow: hidden;
    color: var(--gold);
    font-family: "SVN-BonVoyage", Georgia, serif;
    font-size: 23px;
    font-weight: 600;
    font-style: normal;
    line-height: 35px;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    transition: color 0.5s ease;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

    .about-brand-heading a:hover {
        color: var(--navy);
    }

.about-brand-card {
    position: relative;
    right: 0;
    width: 165%;
    height: 90%;
    min-height: 0;
    background: var(--cream);
    transform: translateX(-33%);
}

.about-brand-row-title-3 .about-brand-card {
    height: 90%;
}

.about-brand-row-reverse .about-brand-card {
    right: initial;
    left: 0;
    transform: translateX(-6%);
}

.about-brand-card-inner {
    position: absolute;
    top: 44%;
    right: 4px;
    z-index: 2;
    width: 72%;
    padding: 0 30px;
    transform: translateY(-50%);
}

.about-brand-row-reverse .about-brand-card-inner {
    right: inherit;
    left: 2px;
}

.about-brand-card p {
    margin: 0 0 10px;
    color: #333;
    font-size: 15px;
    font-weight: 400;
    line-height: 23px;
}

.about-brand-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    margin-top: -4px;
}

    .about-brand-pagination a {
        display: block;
        min-width: 39px;
        height: 32px;
        margin: 0 5px 0 0;
        padding: 0 15px;
        color: #fff;
        background: #969696;
        border: 1px solid #969696;
        border-radius: 3px;
        font-size: 15px;
        line-height: 30px;
        text-align: center;
        transition: background 0.33s ease, border-color 0.33s ease, color 0.33s ease;
    }

        .about-brand-pagination a:hover,
        .about-brand-pagination a.active {
            color: #fff;
            background: var(--gold);
            border-color: var(--gold);
        }

        .about-brand-pagination a.stay {
            background: var(--navy);
            border-color: var(--navy);
        }

            .about-brand-pagination a.stay:hover {
                background: var(--gold);
                border-color: var(--gold);
            }

.about-brand-page .partner-logos {
    padding: 60px 0;
    background: #505050;
}

.about-brand-page .footer-logo-slider-wrap {
    width: 60%;
}

.about-brand-page .footer-logo-slider .swiper-slide {
    min-height: 94px;
    padding: 7px 40px;
    border: 0;
}

.about-brand-page .site-footer {
    min-height: 350px;
    padding: 40px 0 60px;
}

    .about-brand-page .site-footer::before {
        background: rgba(0, 0, 0, 0.65);
    }

.about-brand-page .company-footer h3 {
    margin-top: 18px;
}

.about-brand-page .company-footer {
    width: 560px;
}

.about-brand-page .footer-connect {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    align-self: flex-start;
    width: 420px;
    margin-top: 17px;
}

    .about-brand-page .footer-connect h3 {
        display: none;
    }

.about-brand-page .footer-social {
    justify-content: flex-end;
    gap: 16px;
}

    .about-brand-page .footer-social a {
        display: grid;
        place-items: center;
        width: 42px;
        height: 42px;
        border: 1px solid rgba(255, 255, 255, 0.72);
        transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
    }

        .about-brand-page .footer-social a:hover {
            background: var(--gold);
            border-color: var(--gold);
            transform: translateY(-3px);
        }

    .about-brand-page .footer-social img {
        width: 18px;
        height: 18px;
        object-fit: contain;
    }

    .about-brand-page .footer-social a:hover img {
        transform: none;
    }

@media (max-width: 1199px) {
    .about-brand-wrap {
        width: calc(100% - 30px);
    }
}

@media (max-width: 1024px) {
    .about-brand-list {
        padding: 40px 0 24px;
    }

    .about-brand-wrap {
        width: calc(100% - 30px);
    }

    .about-brand-title {
        margin-bottom: 34px;
        font-size: 34px;
        line-height: 45px;
    }

    .about-brand-row {
        flex-direction: column;
        width: 100%;
        margin-bottom: 40px;
        padding-bottom: 0;
        overflow: visible;
    }

    .about-brand-media {
        order: 1;
        width: 100%;
        height: auto;
    }

        .about-brand-media img {
            height: auto;
            object-fit: contain;
        }

    .about-brand-copy,
    .about-brand-copy.align-right {
        order: 2;
        width: 100%;
        padding: 20px;
        background: var(--cream);
        text-align: left;
    }

    .about-brand-heading,
    .about-brand-row-reverse .about-brand-heading {
        width: 100%;
        margin: 0 0 15px;
    }

        .about-brand-heading a {
            display: block;
            font-size: 23px;
            line-height: 35px;
            -webkit-line-clamp: initial;
        }

    .about-brand-card,
    .about-brand-row-reverse .about-brand-card {
        width: 100%;
        height: auto;
        min-height: 0;
        background: transparent;
        transform: translateX(0);
    }

    .about-brand-card-inner,
    .about-brand-row-reverse .about-brand-card-inner {
        position: relative;
        top: auto;
        right: auto;
        left: auto;
        width: 100%;
        padding: 0;
        transform: none;
    }

    .about-brand-card p {
        margin-bottom: 0;
    }

    .about-brand-pagination {
        margin-top: 0;
    }

    .about-brand-page .footer-logo-slider-wrap {
        width: 65%;
    }
}

@media (max-width: 768px) {
    .about-brand-list {
        padding-top: 35px;
    }

    .about-brand-title {
        font-size: 30px;
        line-height: 40px;
    }

    .about-brand-heading a {
        font-size: 22px;
        line-height: 32px;
    }

    .about-brand-page .partner-logos {
        padding: 45px 0;
    }

    .about-brand-page .footer-logo-slider-wrap {
        width: 100%;
    }

    .about-brand-page .site-footer {
        padding: 45px 0 58px;
    }

    .about-brand-page .company-footer {
        width: 100%;
    }

    .about-brand-page .footer-connect {
        width: 100%;
        justify-content: flex-start;
        margin-top: 0;
    }

    .about-brand-page .footer-social {
        justify-content: flex-start;
    }
}

@media (max-width: 414px) {
    .about-brand-wrap {
        width: calc(100% - 24px);
    }

    .about-brand-title {
        font-size: 27px;
        line-height: 36px;
    }

    .about-brand-heading a {
        font-size: 20px;
        line-height: 30px;
    }

    .about-brand-card p {
        font-size: 14px;
        line-height: 25px;
    }

    .about-brand-pagination a {
        min-width: 34px;
        padding: 0 11px;
    }
}

.representative-page {
    background: #fff;
}

.representative-intro {
    padding: 60px 0 22px;
    background: #fff;
}

.representative-wrap,
.representative-bio-copy {
    width: min(900px, calc(100% - 30px));
    margin: 0 auto;
}

.representative-title {
    position: relative;
    margin: 0 0 38px;
    color: var(--navy);
    font-family: "SVN-BonVoyage", Georgia, serif;
    font-size: 39px;
    line-height: 1.35;
    letter-spacing: 0.7px;
    text-align: center;
    text-transform: uppercase;
}

    .representative-title::after {
        content: "";
        display: block;
        width: 92px;
        height: 1px;
        margin: 12px auto 0;
        background: #777;
        opacity: 0.75;
    }

.representative-copy h2 {
    margin: 0 0 18px;
    color: #111;
    font-family: "SVN-BonVoyage", Georgia, serif;
    font-size: 28px;
    font-weight: 600;
    line-height: 38px;
    letter-spacing: 0.2px;
    text-transform: uppercase;
}

.representative-copy p,
.representative-bio-copy p,
.representative-bio-copy li {
    color: #111;
    font-size: 14px;
    line-height: 22px;
}

.representative-copy p {
    margin: 0 0 9px;
}

.representative-visual {
    position: relative;
    min-height: 1490px;
    overflow: hidden;
    background: #fff;
}

.representative-banner {
    width: 100%;
    height: 700px;
    object-fit: cover;
    object-position: center top;
}

.representative-gallery {
    position: relative;
    width: min(1400px, calc(100% - 30px));
    height: 930px;
    margin: 0 auto;
}

.representative-building {
    position: absolute;
    top: -130px;
    left: 50%;
    z-index: 3;
    width: 535px;
    height: 500px;
    object-fit: cover;
    transform: translateX(-40px);
}

.representative-gallery-left {
    position: absolute;
    top: 80px;
    left: 83px;
    z-index: 2;
    width: 440px;
    height: 660px;
    object-fit: cover;
}

.representative-interior {
    position: absolute;
    top: 452px;
    right: -98px;
    z-index: 1;
    width: 858px;
    height: 366px;
    object-fit: cover;
}

.representative-bio {
    padding: 0 0 60px;
    background: #fff;
}

.representative-bio-copy {
    padding-top: 0;
}

    .representative-bio-copy p {
        margin: 0 0 9px;
    }

    .representative-bio-copy ul {
        margin: 6px 0 8px 22px;
        padding: 0;
    }

    .representative-bio-copy li {
        padding-left: 4px;
    }

.representative-video {
    position: relative;
    min-height: 630px;
    padding: 0 0 30px;
    overflow: hidden;
    background: #fff;
}

    .representative-video::before,
    .representative-video::after {
        content: "";
        position: absolute;
        top: 36px;
        width: 44%;
        height: 530px;
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        opacity: 0.24;
        filter: grayscale(1);
    }

    .representative-video::before {
        left: 0;
        background-image: url("../images/1749203352_17.jpg");
        clip-path: polygon(0 0, 75% 0, 100% 100%, 0% 100%);
    }

    .representative-video::after {
        right: 0;
        background-image: url("../images/1749258002_15.jpg");
        clip-path: polygon(0 0, 100% 0, 100% 100%, 25% 100%);
    }

.representative-video-shell {
    position: relative;
    z-index: 2;
    width: min(900px, calc(100% - 30px));
    margin: 28px auto 0;
    border: 5px solid var(--gold);
    border-bottom: 0;
    background: #000;
}

    .representative-video-shell img {
        width: 100%;
        height: 600px;
        object-fit: cover;
    }

    .representative-video-shell button {
        position: absolute;
        top: 50%;
        left: 50%;
        display: grid;
        place-items: center;
        width: 70px;
        height: 70px;
        color: #fff;
        background: #ee302a;
        border: 0;
        border-radius: 12px;
        cursor: pointer;
        transform: translate(-50%, -50%);
        transition: background 0.25s ease, transform 0.25s ease;
    }

        .representative-video-shell button:hover {
            background: var(--gold);
            transform: translate(-50%, -50%) scale(1.05);
        }

        .representative-video-shell button i {
            font-size: 29px;
            line-height: 1;
        }

    .representative-video-shell p {
        margin: 0;
        padding: 4px 15px 7px;
        color: #111;
        background: #efece4;
        font-family: Georgia, "Times New Roman", serif;
        font-size: 17px;
        font-weight: 700;
        line-height: 25px;
        text-align: center;
        text-transform: uppercase;
    }

.representative-map-section {
    padding: 34px 0 85px;
    background: #fff;
}

.representative-map {
    position: relative;
    width: min(900px, calc(100% - 30px));
    height: 420px;
    margin: 0 auto;
    background: #e9e8e3;
}

.representative-map-loader {
    position: absolute;
    top: 8px;
    left: 8px;
    width: 305px;
    height: 88px;
    background: #fff;
    border-radius: 2px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
}

    .representative-map-loader::before {
        content: "";
        position: absolute;
        top: 15px;
        left: 22px;
        width: 20px;
        height: 20px;
        border: 3px solid #4285f4;
        border-right-color: transparent;
        border-bottom-color: transparent;
        border-radius: 50%;
        animation: representative-spin 0.85s linear infinite;
    }

@keyframes representative-spin {
    to {
        transform: rotate(360deg);
    }
}

.representative-services {
    padding: 72px 0 90px;
    background: linear-gradient(rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.58)), url("../images/1750291314_Ban-sao-cua-1920-x-760-6.jpg") center/cover no-repeat;
}

.representative-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    width: min(1175px, calc(100% - 30px));
}

.representative-service-card {
    background: #ededed;
    border-bottom: 4px solid rgba(0, 0, 0, 0.08);
}

    .representative-service-card img {
        width: 100%;
        height: 280px;
        object-fit: cover;
    }

    .representative-service-card div {
        min-height: 222px;
        padding: 20px 22px 26px;
    }

    .representative-service-card h3 {
        position: relative;
        margin: 0 0 22px;
        padding-bottom: 14px;
        color: var(--gold);
        font-family: "SVN-BonVoyage", Georgia, serif;
        font-size: 27px;
        font-weight: 600;
        line-height: 35px;
        text-align: center;
        text-transform: uppercase;
    }

        .representative-service-card h3::after {
            content: "";
            position: absolute;
            right: 0;
            bottom: 0;
            left: 0;
            height: 1px;
            background: var(--gold);
        }

    .representative-service-card p {
        margin: 0;
        color: #888;
        font-size: 16px;
        line-height: 25px;
    }

.representative-page .partner-logos {
    padding: 60px 0;
    background: #505050;
}

.representative-page .footer-logo-slider-wrap {
    width: 60%;
}

.representative-page .footer-logo-slider .swiper-slide {
    min-height: 94px;
    padding: 7px 40px;
    border: 0;
}

.representative-page .site-footer {
    min-height: 350px;
}

    .representative-page .site-footer::before {
        background: rgba(0, 0, 0, 0.65);
    }

.representative-page .company-footer {
    width: 560px;
}

    .representative-page .company-footer h3 {
        margin-top: 18px;
    }

.representative-page .footer-connect {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    align-self: flex-start;
    width: 420px;
    margin-top: 17px;
}

    .representative-page .footer-connect h3 {
        display: none;
    }

.representative-page .footer-social {
    justify-content: flex-end;
    gap: 16px;
}

    .representative-page .footer-social a {
        display: grid;
        place-items: center;
        width: 42px;
        height: 42px;
        border: 1px solid rgba(255, 255, 255, 0.72);
        transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
    }

        .representative-page .footer-social a:hover {
            background: var(--gold);
            border-color: var(--gold);
            transform: translateY(-3px);
        }

    .representative-page .footer-social img {
        width: 18px;
        height: 18px;
        object-fit: contain;
    }

    .representative-page .footer-social a:hover img {
        transform: none;
    }

@media (max-width: 1199px) {
    .representative-visual {
        min-height: auto;
    }

    .representative-banner {
        height: auto;
    }

    .representative-gallery {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px;
        height: auto;
        padding: 50px 0 40px;
    }

    .representative-building,
    .representative-gallery-left,
    .representative-interior {
        position: static;
        width: 100%;
        height: auto;
        transform: none;
    }

    .representative-interior {
        grid-column: 1 / -1;
    }
}

@media (max-width: 1024px) {
    .representative-title {
        font-size: 34px;
        line-height: 45px;
    }

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

    .representative-service-card:last-child {
        grid-column: 1 / -1;
        max-width: 580px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .representative-intro {
        padding: 35px 0 25px;
    }

    .representative-title {
        font-size: 30px;
        line-height: 40px;
    }

    .representative-copy h2 {
        font-size: 24px;
        line-height: 34px;
    }

    .representative-gallery {
        grid-template-columns: 1fr;
        padding: 30px 0;
    }

    .representative-video::before,
    .representative-video::after {
        display: none;
    }

    .representative-video-shell img {
        height: auto;
    }

    .representative-map-section {
        padding-bottom: 55px;
    }

    .representative-map {
        height: 320px;
    }

    .representative-services {
        padding: 50px 0;
    }

    .representative-services-grid {
        grid-template-columns: 1fr;
    }

    .representative-service-card:last-child {
        grid-column: auto;
        max-width: none;
    }

    .representative-page .partner-logos {
        padding: 45px 0;
    }

    .representative-page .footer-logo-slider-wrap {
        width: 100%;
    }

    .representative-page .company-footer {
        width: 100%;
    }

    .representative-page .footer-connect {
        width: 100%;
        justify-content: flex-start;
        margin-top: 0;
    }

    .representative-page .footer-social {
        justify-content: flex-start;
    }
}

@media (max-width: 414px) {
    .representative-wrap,
    .representative-bio-copy {
        width: calc(100% - 24px);
    }

    .representative-title {
        font-size: 27px;
        line-height: 36px;
    }

    .representative-copy p,
    .representative-bio-copy p,
    .representative-bio-copy li {
        font-size: 14px;
        line-height: 24px;
    }

    .representative-map-loader {
        width: 235px;
    }
}

/* DaiDien: match the Bechstein representative page flow. */
.representative-page .conten {
    overflow: hidden;
    background: #fff;
}

.representative-page .clr {
    clear: both;
}

.representative-page .page_conten_page {
    padding-top: 60px;
    padding-bottom: 40px;
}

.representative-page .representative-text-section:first-child {
    padding-bottom: 0;
}

.representative-page .padding_pagewrap_with {
    padding: 0;
}

.representative-page .titBox {
    margin: 10px auto 35px;
    text-align: center;
}

    .representative-page .titBox .tit {
        padding-bottom: 0;
        position: relative;
        margin: 0;
        color: var(--navy);
        text-align: center;
        display: block;
        font-size: 32px;
        line-height: 45px;
        text-transform: uppercase;
        letter-spacing: 2px;
        font-weight: 800;
        font-family: "SVN-BonVoyage", Georgia, serif;
    }

    .representative-page .titBox::after {
        content: "";
        display: inline-table;
        width: 90px;
        height: 1px;
        margin: 0 auto;
        background: #333;
    }

.representative-page .noidung {
    width: 75%;
    margin: 0 auto 30px;
}

    .representative-page .noidung h2 {
        margin: 0 0 10px;
        color: #333;
        font-family: "SVN-BonVoyage", Georgia, serif;
        font-size: 23px;
        line-height: 35px;
        letter-spacing: 0;
        text-transform: uppercase;
    }

    .representative-page .noidung p,
    .representative-page .noidung li {
        color: #111;
        font-size: 14px;
        line-height: 25px;
    }

    .representative-page .noidung p {
        margin: 0 0 10px;
        text-align: justify;
    }

    .representative-page .noidung ul {
        margin: 0 0 12px 40px;
        padding: 0;
    }

    .representative-page .noidung li {
        margin: 0 0 3px;
        padding-left: 0;
    }

.representative-page .dichvu-col1-full.representative-top-image {
    position: relative;
    height: 700px;
    margin-top: 0;
    overflow: hidden;
}

.representative-page .representative-top-image > img {
    width: 100%;
    height: 700px;
    object-fit: cover;
    object-position: center;
}

.representative-page .col1-ab {
    position: absolute;
    top: 50%;
    left: 10%;
    z-index: 2;
    width: 40%;
    color: #fff;
    font-family: "SVN-BonVoyage", Georgia, serif;
    font-size: 40px;
    line-height: 75px;
    text-align: right;
    transform: translateY(-50%);
}

.representative-page .dichvu-col2-full.representative-image-stack {
    display: block;
    width: 100%;
    height: auto;
    margin: -125px 0 0;
    padding: 0 0 60px;
    overflow: visible;
    position: relative;
}

.representative-page .representative-image-stack .pagewrap {
    width: min(1200px, calc(100% - 30px));
}

.representative-page .representative-image-stack .reveal,
.representative-page .representative-image-stack .reveal-left,
.representative-page .representative-image-stack .reveal-right,
.representative-page .representative-image-stack .reveal.reveal-pending,
.representative-page .representative-image-stack .reveal-left.reveal-pending,
.representative-page .representative-image-stack .reveal-right.reveal-pending {
    opacity: 1;
    transform: none;
}

.representative-page .col2-left {
    float: left;
    width: 45%;
    padding: 215px 100px 0 0;
}

    .representative-page .col2-left > img,
    .representative-page .col2-right > img {
        width: 100%;
    }

.representative-page .col2-right {
    float: right;
    width: 55%;
}

.representative-page .representative-gallery-logo {
    width: auto !important;
    height: 544px !important;
    margin: 0 0 25px;
    object-fit: contain;
}

.representative-page .representative-gallery-wide {
    width: 130% !important;
    max-width: none;
}

.representative-page .representative-bio {
    padding-top: 0;
    padding-bottom: 0;
    background: #fff;
}

.representative-page .home-video.representative-video-section {
    margin-top: 0;
}

.representative-page .mapps.representative-map-section {
    padding: 60px 0;
    background: #fff;
}

.representative-page .mapps .pagewrap {
    text-align: center;
}

.representative-page .mapps iframe {
    display: block;
    width: 75%;
    height: 420px;
    margin: 0 auto;
}

.representative-page .tintuc_home.truso-column.representative-services {
    padding: 60px 0 30px;
    background: linear-gradient(rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.58)), url("../images/1750291326_Ban-sao-cua-1920-x-760-6.jpg") center/cover no-repeat;
}

.representative-page .truso-column .tintuc_id {
    margin: 0 0 30px;
}

    .representative-page .truso-column .tintuc_id a {
        display: block;
        color: inherit;
    }

    .representative-page .truso-column .tintuc_id ul {
        float: left;
        width: calc(100% / 3 - 25px);
        margin: 0 12.5px 30px;
        padding-bottom: 30px;
        background: #f1f1f1;
        border-bottom: 4px solid #dcdcdc;
        transition: border-color 0.5s var(--ease), box-shadow 0.5s var(--ease), transform 0.5s var(--ease);
        height: 500px;
    }

        .representative-page .truso-column .tintuc_id ul:hover {
            border-bottom-color: var(--gold);
            box-shadow: 0 22px 43px rgba(0, 0, 0, 0.15);
            transform: translateY(-7px);
        }

        .representative-page .truso-column .tintuc_id ul li {
            position: relative;
            display: block;
            padding: 0;
            overflow: hidden;
            line-height: 0;
            list-style: none;
        }

            .representative-page .truso-column .tintuc_id ul li::before,
            .representative-page .truso-column .tintuc_id ul li::after {
                display: none;
            }

        .representative-page .truso-column .tintuc_id ul img {
            width: 100%;
            height: 280px;
            object-fit: cover;
            transition: transform 0.65s var(--ease), filter 0.65s var(--ease);
        }

        .representative-page .truso-column .tintuc_id ul:hover img {
            transform: scale(1.08);
        }

        .representative-page .truso-column .tintuc_id ul h2 {
            margin: 0 20px 20px;
            padding: 20px 0 10px;
            color: var(--gold);
            border-bottom: 1px solid var(--gold);
            font-family: "SVN-BonVoyage", Georgia, serif;
            font-size: 23px;
            line-height: 35px;
            text-align: center;
            text-transform: capitalize;
        }

        .representative-page .truso-column .tintuc_id ul p {
            display: -webkit-box;
            width: 100%;
            margin: 0;
            padding: 0 30px;
            overflow: hidden;
            color: #888;
            font-size: 14px;
            line-height: 23px;
            text-align: center;
            -webkit-box-orient: vertical;
            -webkit-line-clamp: 3;
        }

@media (max-width: 1220px) {
    .representative-page .page_conten_page {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .representative-page .representative-gallery-logo {
        height: 500px !important;
    }
}

@media (max-width: 1024px) {
    .representative-page .noidung {
        width: 100%;
    }

    .representative-page .representative-gallery-wide {
        width: 100% !important;
        max-width: 100%;
    }
}

@media (max-width: 992px) {
    .representative-page .dichvu-col1-full.representative-top-image,
    .representative-page .representative-top-image > img {
        height: 630px;
    }

    .representative-page .col1-ab {
        left: 0;
        width: 100%;
        text-align: center;
    }

    .representative-page .col2-left {
        padding: 175px 25px 0 0;
    }

    .representative-page .representative-gallery-logo {
        width: 100% !important;
        height: auto !important;
    }
}

@media (max-width: 812px) {
    .representative-page .mapps iframe {
        width: 100%;
        height: 350px;
    }

    .representative-page .truso-column .tintuc_id ul {
        width: calc(100% / 2 - 25px);
    }
}

@media (max-width: 667px) {
    .representative-page .dichvu-col1-full.representative-top-image,
    .representative-page .representative-top-image > img {
        height: 400px;
    }
}

@media (max-width: 600px) {
    .representative-page .truso-column .tintuc_id ul {
        width: 100%;
        margin-right: 0;
        margin-left: 0;
    }
}

@media (max-width: 480px) {
    .representative-page .dichvu-col1-full.representative-top-image,
    .representative-page .representative-top-image > img {
        height: 300px;
    }

    .representative-page .dichvu-col2-full.representative-image-stack {
        margin-top: -70px;
        padding-bottom: 35px;
    }

    .representative-page .col2-left {
        padding: 100px 25px 0 0;
    }
}

@media (max-width: 414px) {
    .representative-page .titBox .tit {
        font-size: 20px;
        line-height: 30px;
    }

    .representative-page .noidung h2 {
        font-size: 20px;
        line-height: 30px;
    }

    .representative-page .mapps iframe {
        height: 280px;
    }
}
