:root {
    --white: #ffffff;
    --black: #000000;
    --black2: #171717;
    --brown: #3A2220;
    --light-brown: #F0EAE0;
    --grey-bg: #F5F5F5;
    --light-red: #994A42;
    --red: #693030;
    --light-white: #EFEAE3;
    --heading-accent: #C4A090;
    --text-80: 5.2083vw;
    --text-60: 3.75vw;
    --text-58: 3.625rem;
    --text-55: 3.438rem;
    --text-50: 2.8935vw;
    --text-30: 1.7361vw;
    --text-28: 1.6204vw;
    --text-26: 1.5046vw;
    --text-25: 1.4468vw;
    --text-24: 1.3889vw;
    --text-22: 1.375vw;
    --text-20: 1.1574vw;
    --text-18: 1.0417vw;
    --text-17: 1.0313vw;
    --text-16: 0.9375vw;

    --spacing-120: 120px;
    --spacing-100: 100px;
    --spacing-150: 150px;
    --spacing-60: 60px;

    --font-family-1: 'Inter', sans-serif;
    --font-family-2: 'Marcellus', serif;
    --font-family-3: 'Metropolis';
}

/* Mobile first (<=767px) */
@media (max-width: 767px) {
    :root {
        --text-80: 3.5rem;
        --text-75: 3.25rem;
        --text-65: 2.8rem;
        --text-64: 3rem;
        --text-60: 2.6rem;
        --text-58: 2.8rem;
        --text-55: 2.75rem;
        --text-50: 2.5rem;
        --text-48: 2.4rem;
        --text-45: 2.2rem;
        --text-42: 2.05rem;
        --text-40: 1.9rem;
        --text-38: 1.7rem;
        --text-35: 1.6rem;
        --text-34: 1.5rem;
        --text-32: 1.4rem;
        --text-30: 1.3rem;
        --text-28: 1.2rem;
        --text-26: 1.1rem;
        --text-25: 1.1rem;
        --text-24: 1rem;
        --text-22: 0.95rem;
        --text-20: 0.9rem;
        --text-18: 0.85rem;
        --text-17: 0.825rem;
        --text-16: 0.8rem;
        --text-15: 0.775rem;
        --text-14: 0.75rem;
        --text-13: 0.725rem;
        --text-12: 0.688rem;
        --text-10: 0.563rem;

        /* Keep desktop spacing scale on mobile */
        --spacing-120: 120px;
        --spacing-100: 100px;
        --spacing-150: 150px;
        --spacing-60: 60px;
    }
}

/* Tablet (768px—991px) */
@media (min-width: 768px) and (max-width: 991px) {
    :root {
        --text-80: 4rem;
        --text-75: 3.6rem;
        --text-65: 3.1rem;
        --text-64: 3.5rem;
        --text-60: 2.8rem;
        --text-58: 3.3rem;
        --text-55: 3.1rem;
        --text-50: 2.8rem;
        --text-48: 2.7rem;
        --text-45: 2.2rem;
        --text-42: 2.1rem;
        --text-40: 2rem;
        --text-38: 1.85rem;
        --text-35: 1.8rem;
        --text-34: 1.75rem;
        --text-32: 1.6rem;
        --text-30: 1.5rem;
        --text-28: 1.4rem;
        --text-26: 1.3rem;
        --text-25: 1.3rem;
        --text-24: 1.2rem;
        --text-22: 1.15rem;
        --text-20: 1.15rem;
        --text-18: 1rem;
        --text-17: 0.95rem;
        --text-16: 0.9rem;
        --text-15: 0.85rem;
        --text-14: 0.8rem;
        --text-13: 0.775rem;
        --text-12: 0.7rem;
        --text-10: 0.588rem;

        --spacing-120: 120px;
        --spacing-100: 100px;
        --spacing-150: 150px;
        --spacing-60: 60px;
    }
}

/* Small desktop (992px—1199px) */
@media (min-width: 992px) and (max-width: 1200px) {
    :root {
        --text-80: 4.5rem;
        --text-75: 4.2rem;
        --text-65: 3.6rem;
        --text-64: 3.75rem;
        --text-60: 2.8rem;
        --text-58: 3.5rem;
        --text-55: 3.25rem;
        --text-50: 3.125rem;
        --text-48: 2.85rem;
        --text-45: 2.5rem;
        --text-42: 2.375rem;
        --text-40: 2.25rem;
        --text-38: 2.1rem;
        --text-35: 2rem;
        --text-34: 1.95rem;
        --text-32: 1.85rem;
        --text-30: 1.7rem;
        --text-28: 1.6rem;
        --text-26: 1.5rem;
        --text-25: 1.3rem;
        --text-24: 1.4rem;
        --text-22: 1.3rem;
        --text-20: 1.2rem;
        --text-18: 1.05rem;
        --text-17: 1rem;
        --text-16: 0.9rem;
        --text-15: 0.9rem;
        --text-14: 0.85rem;
        --text-13: 0.8rem;
        --text-12: 0.75rem;
        --text-10: 0.625rem;

        --spacing-120: 80px;
        --spacing-100: 100px;
        --spacing-150: 130px;
        --spacing-60: 40px;
    }
}


.container {
    margin: 0px auto;
    max-width: 1440px;
    padding-left: 3.125vw;
    padding-right: 3.125vw;
}

.container-fluid {
    padding-left: 2.5463vw;
    padding-right: 2.5463vw;
}

@media (min-width: 1441px) {
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width: 991.5px) {

    .container,
    .container-fluid {
        padding-left: 28px;
        padding-right: 28px;
    }
}

@media (max-width: 767px) {

    .container,
    .container-fluid {
        padding-left: 28px;
        padding-right: 28px;
    }
}


.white {
    color: var(--white);
}

.black {
    color: var(--black);
}

.badge {
    font-size: var(--text-14);
    font-weight: 600;
    border-radius: 4px;
}

/*font sizes*/
.text-80 {
    font-size: var(--text-80);
}



.text-65 {
    font-size: var(--text-65);
}

.text-60 {
    font-size: var(--text-60);
}

.text-50 {
    font-size: var(--text-50);
}

.text-45 {
    font-size: var(--text-45);
}

.text-42 {
    font-size: var(--text-42);
}

.text-40 {
    font-size: var(--text-40);
}

.text-38 {
    font-size: var(--text-38);
}

.text-35 {
    font-size: var(--text-35);
}

.text-34 {
    font-size: var(--text-34);
}

.text-32 {
    font-size: var(--text-32);
}

.text-30 {
    font-size: var(--text-30);
}

.text-28 {
    font-size: var(--text-28);
}

.text-26 {
    font-size: var(--text-26);
}

.text-25 {
    font-size: var(--text-25);
}

.text-24 {
    font-size: var(--text-24);
}

.text-22 {
    font-size: var(--text-22);
}

.text-20 {
    font-size: var(--text-20);
}

.text-18 {
    font-size: var(--text-18);
}

.text-17 {
    font-size: var(--text-17);
}

.text-16 {
    font-size: var(--text-16);
}

.fw-bold {
    font-weight: 700 !important;
}

.fw-normal {
    font-weight: 400 !important;
}

.fw-medium {
    font-weight: 500 !important;
}

.fw-semibold {
    font-weight: 600 !important;
}

.fw-400 {
    font-weight: 400 !important;
}

.italic {
    font-style: italic;
}

.leading-150 {
    line-height: 150% !important;
}

.leading-140 {
    line-height: 140% !important;
}

.leading-130 {
    line-height: 130% !important;
}

.leading-120 {
    line-height: 120% !important;
}

.leading-100 {
    line-height: 100% !important;
}

/*colors*/

.black {
    color: var(--black);
}

.opacity-80 {
    opacity: 0.8 !important;
}

.opacity-60 {
    opacity: 0.6 !important;
}

.opacity-50 {
    opacity: 0.5 !important;
}

.wrap-balance {
    text-wrap: balance;
}

.radius-8 {
    border-radius: 8px;
}

.stretched-link::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    content: "";
}

.form-container select.form-control {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    /* SVG arrow as background */
    background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%24000' stroke-width='1.5'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='m19.5 8.25-7.5 7.5-7.5-7.5' /%3E%3C/svg%3E") no-repeat right 12px center;
    background-size: 16px;
    /* adjust size */
    /* Adjust size of your arrow */
    padding-right: 40px;
    /* Give space for arrow */
}

/* For IE 10/11 hide default arrow */
select.form-control::-ms-expand {
    display: none;
}

html {
    /* clip does not create a scroll container (unlike overflow:hidden) */
    overflow-x: clip;
    max-width: 100%;
}


body {
    font-size: var(--text-18);
    color: var(--black);
    font-weight: 400;
    text-rendering: optimizeSpeed;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-family: var(--font-family-3);
    padding-top: 83px;
    overflow-x: clip;
    max-width: 100%;
}



.skip-link {
    position: absolute;
    left: -9999px;
    top: -9999px;
    z-index: 99999;
    background: #000;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
}


.btn-hero:hover {
    opacity: 0.9 !important;
    color: var(--white);
}


.header-wrap {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: auto;
    max-width: 100%;
    z-index: 1031;
    background-color: var(--light-white);
    height: 83px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.header-wrap.sticky {
    box-shadow: 0px 2px 4px #00000029;
}

.header-wrap .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* Logo Styling */
.header-wrap .navbar-brand {
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
}


/* Center Menu Styling */
.navbar-menu-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.header-wrap .navbar-nav {
    gap: 40px;
}

.header-wrap .navbar-nav .nav-link {
    font-family: var(--font-family-3), sans-serif;
    /* Metropolis */
    font-size: var(--text-12);
    font-weight: 400;
    line-height: 150%;
    color: var(--black2);
    padding: 0;
    text-transform: uppercase;
    letter-spacing: 11%;
    transition: opacity 0.2s ease;
}

.header-wrap .navbar-nav .nav-link:hover {
    opacity: .7 !important;
}

/* Register Interest Button */
.btn-register {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 188px;
    height: 51px;
    background-color: var(--light-red);
    color: var(--white) !important;
    font-family: var(--font-family-3);
    /* Metropolis */
    font-size: var(--text-10);
    letter-spacing: 11%;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    transition: background-color 0.2s ease, opacity 0.2s ease;
}

.btn-register:hover {
    background-color: var(--red);
    color: var(--white) !important;
}

/* Right Side Styling */
.header-right-group {
    gap: 20px;
}

.search-wrapper {
    display: flex;
}

.search-form {
    display: flex;
    border: 0.5px solid var(--black);
}

.search-input {
    height: 40px;
    padding: 0 15px;
    font-family: var(--font-family);
    font-size: var(--text-16);
    width: 180px;
    outline: none;
    border: 1px solid var(--black);
}

.search-input::placeholder {
    color: var(--black);
}

.search-btn {
    height: 40px;
    background-color: var(--black);
    color: var(--white);
    border: none;
    padding: 0 20px;
    font-family: var(--font-family);
    font-size: var(--text-16);
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.search-btn:hover {
    opacity: 0.9 !important;
}

.lang-switch {
    font-family: var(--font-family);
    font-size: var(--text-16);
    color: var(--black);
    text-decoration: none;
}

.lang-switch:hover {
    color: var(--black);
}

.search-toggle {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-close {
    background: none;
    border: none;
    padding: 0 10px;
    cursor: pointer;
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
}



.navbar-toggler {
    background: var(--grey-bg);
    display: flex;
    padding: 8px 14px;
    align-items: center;
    gap: 8px;
    font-size: var(--text-16);
    border-radius: 8px;
    border: none;
    color: var(--black);
    box-shadow: none !important;
    height: 40px;
    justify-content: center;
}

.navbar-toggler svg {
    color: var(--mid-blue);
}

.navbar-toggler:focus {
    border: 1px solid var(--grey3);
    box-shadow: 0 2px 1px rgb(0 0 0 / 5%);
    background: var(--grey-bg);
}

.noneblock {
    opacity: 0 !important;
    position: absolute;
    transition: opacity 0.3s ease;
}

.activeblock {
    opacity: 1 !important;
    transition: opacity 0.3s ease;
}

.opened .noneblock {
    opacity: 1 !important;
    position: relative;
}

.opened .activeblock {
    opacity: 0 !important;
    position: absolute;
}

.hamburger {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}


@media screen and (max-width: 991.5px) {
    .header-right-group {
        gap: 15px;
        margin-left: auto;
        margin-right: 10px;
        display: flex;
        align-items: center;
    }


    .navbar-toggler {
        width: 40px;
        height: 40px;
        border-radius: 0%;
    }

    .header-wrap .navbar {
        padding: 0 14px;
        gap: 10px;
    }

    .header-wrap .navbar .navbar-brand,
    .footer-logo img {
        width: 130px;
    }

}

@media screen and (max-width: 1199px) and (min-width: 992px) {
    body {
        --header-h: 88px;
    }

    .menu-toggle {
        gap: 10px;
    }

    .menu-toggle .hamburger {
        width: 28px;
        min-width: 28px;
    }

    .header-wrap .navbar-brand img {
        width: 120px;
    }

    .header-wrap .navbar .navbar-brand,
    .footer-logo img {
        width: 154px;
    }

    .btn-register {
        width: 140px;
        height: 40px;
        font-size: 11px;
    }

    .navbar-collapse {
        width: 400px;
    }

    .hero-banner {
        min-height: 560px;
    }

    .hero-content {
        width: min(900px, calc(100% - 64px));
        transform: none;
    }

    .hero-content h1 {
        font-size: 56px;
    }

    .hero-line {
        width: 100px;
        margin: 28px 0;
    }

    .btn-hero {
        width: 220px;
        height: 56px;
    }

    .who-we-are,
    .interior-design,
    .how-it-works {
        padding: 80px 40px;
    }

    .lifestyle {
        padding: 32px 40px 80px;
    }

    .symphony {
        padding: 80px 0;
    }

    .symphony-intro,
    .our-partners-intro,
    .testimonials-intro {
        padding-left: 40px;
        padding-right: 40px;
    }

    .symphony-lead {
        max-width: 640px;
    }

    .believe-content {
        width: 460px;
        padding-right: 40px;
        padding-left: 20px;
    }

    .btn-interior {
        width: 180px;
        height: 46px;
    }

    .how-step-number {
        width: 56px;
        margin-top: 8px;
    }

    .partners-swiper {
        padding: 0 40px;
    }

    .partners-swiper .swiper-slide {
        width: 180px;
    }

    .partner-card {
        height: 110px;
        min-height: 110px;
    }

    .testimonials-slider-wrap {
        width: calc(100% - 80px);
        max-width: 1100px;
        padding-bottom: 64px;
    }

    .testimonial-quote {
        width: min(420px, 48%);
        padding: 28px 24px;
    }

    .testimonials-prev,
    .testimonials-next {
        width: 48px;
        height: 48px;
    }

    .footer-wrap {
        padding: 56px 40px 40px;
    }

    .footer-logo img {
        width: 160px;
    }

    .footer-social img {
        width: 28px;
        min-width: 28px;
    }

    .footer-subscribe {
        width: 280px;
    }

    .footer-email {
        height: 48px;
        padding: 0 48px 0 16px;
    }

    .footer-submit {
        right: 16px;
    }

    .footer-submit img {
        width: 16px;
    }

    .search-input {
        width: 150px;
    }
}


/* Mobile Adjustments */
@media screen and (max-width: 991.5px) {
    .navbar-menu-center {
        display: none;
    }


    .search-input {
        width: 120px;
    }

    .search-wrapper {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 80px;
        background: var(--white);
        z-index: 1040;
        display: flex;
        align-items: center;
        padding: 0 15px;
        transform: translateY(-100%);
        transition: transform 0.3s ease;
        border-bottom: 1px solid var(--black);
    }

    .search-wrapper.active {
        transform: translateY(0);
    }

    .search-wrapper .search-form {
        width: 100%;
        border: none;
        align-items: center;
    }

    .search-wrapper .search-input {
        flex: 1;
        width: 100%;
        border: none;
        border-bottom: 1px solid var(--black);
        height: 50px;
    }

    .search-wrapper .search-btn {
        height: 50px;
    }
}

/* Vivace header and hero */
html {
    /* Avoid stable gutter — it leaves a gray strip and clips fixed header on mobile */
    scrollbar-gutter: auto;
}

body {
    /* 108px at the 1728px design width, never smaller than the logo needs */
    --header-h: max(76px, 6.25vw);
    padding-top: var(--header-h);
    background: var(--light-white);
    overflow-x: clip;
    max-width: 100%;
}

/* Freeze page scroll while the nav drawer is open */
html.nav-open {
    overflow: hidden;
}

html.nav-open body {
    overflow: hidden;
    touch-action: none;
    overscroll-behavior: none;
}

.header-wrap {
    left: 0;
    right: 0;
    width: auto;
    max-width: 100%;
    height: var(--header-h);
    background: #EFEAE3;
    /* Above the dim overlay so Menu stays clickable while open */
    z-index: 1050;
}

.header-nav {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    width: 100%;
    max-width: 100%;
    height: 100%;
    min-width: 0;
    box-sizing: border-box;
}

.menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-self: start;
    gap: 0.6944vw;
    padding: 8px 0;
    border: 0;
    background: transparent;
    color: var(--black2);
    font-family: var(--font-family-1);
    font-size: var(--text-24);
    font-weight: 400;
    line-height: 1;
    cursor: pointer;
}

.menu-toggle .hamburger {
    position: relative;
    display: block;
    width: 3vw;
    min-width: 30px;
    height: 22px;
    flex: none;
}

.menu-toggle .hamburger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--light-red);
    transition: top 250ms ease, bottom 250ms ease, transform 250ms ease, opacity 200ms ease;
}

.menu-toggle .hamburger span:first-child {
    top: 0;
}

.menu-toggle .hamburger span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.menu-toggle .hamburger span:last-child {
    bottom: 0;
}

.menu-toggle.opened .hamburger span:first-child {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.menu-toggle.opened .hamburger span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.opened .hamburger span:last-child {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

.header-wrap .navbar-brand {
    position: static;
    justify-self: center;
}

.header-wrap .navbar-brand img {
    display: block;
    width: 8.5648vw;
    height: auto;
}

.btn-register {
    justify-self: end;
    width: 9.0278vw;
    height: 2.3148vw;
    min-width: 122px;
    min-height: 34px;
    background: var(--light-red);
    color: #FFFAF3 !important;
    font-family: var(--font-family-1);
    font-size: clamp(10px, 0.6944vw, 12px);
    font-weight: 200;
    letter-spacing: 0.08em;
}

.btn-register:hover,
.btn-register:focus-visible {
    background: var(--red);
}

.navbar-collapse {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    display: block !important;
    flex-basis: auto;
    flex-grow: 0;
    width: min(440px, 86vw);
    max-width: 100%;
    height: 100dvh !important;
    margin: 0;
    padding: 36px;
    background: #EFEAE3;
    box-shadow: -12px 0 36px rgb(23 23 23 / 16%);
    transform: translate3d(100%, 0, 0);
    transition: transform 350ms cubic-bezier(0.4, 0, 0.2, 1), visibility 350ms ease;
    overflow-y: auto;
    overscroll-behavior: contain;
    touch-action: pan-y;
    visibility: hidden;
    pointer-events: none;
    z-index: 1060;
}

.navbar-collapse.show {
    transform: translate3d(0, 0, 0);
    visibility: visible;
    pointer-events: auto;
}

.drawer-close-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin: 0 0 64px auto;
    padding: 0;
    border: 1px solid rgb(23 23 23 / 18%);
    background: transparent;
    color: var(--light-red);
    cursor: pointer;
}

.navbar-collapse .navbar-nav {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.navbar-collapse .navbar-nav .nav-link {
    display: block;
    padding: 0;
    font-family: var(--font-family-2);
    font-size: 32px;
    font-weight: 400;
    line-height: 1.2;
    color: var(--black2);
    text-transform: none;
    letter-spacing: 0;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.navbar-collapse .navbar-nav .nav-link:hover,
.navbar-collapse .navbar-nav .nav-link:focus-visible {
    opacity: 0.7;
}

.nav-overlay {
    position: fixed;
    inset: 0;
    z-index: 1040;
    visibility: hidden;
    background: rgb(0 0 0 / 45%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 350ms ease, visibility 350ms ease;
}

.nav-overlay.active {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.hero-banner {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 60.7639vw;
    isolation: isolate;
    /* clip does not create a scroll container (hidden can on some mobile browsers) */
    overflow: clip;
    background: var(--black2);
}

.hero-image,
.hero-video {
    position: absolute;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 52%;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(90deg, rgb(20 10 8 / 35%), transparent 30%, transparent 70%, rgb(20 10 8 / 35%)),
        rgb(24 13 10 / 25%);
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: min(82vw, 1100px);
    color: var(--white);
    text-align: center;
    transform: translateY(-1vw);
}

.hero-content h1 {
    margin: 0;
    font-family: var(--font-family-2);
    font-size: clamp(52px, 4.6296vw, 80px);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -0.02em;
    text-wrap: balance;
    text-shadow: 0 2px 24px rgb(0 0 0 / 25%);
}

.hero-line {
    width: 13.1944vw;
    height: 2px;
    margin: 3vw 0;
    background: #EFEAE3;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16.5509vw;
    height: 4.1088vw;
    min-width: 220px;
    min-height: 54px;
    background: var(--light-red);
    color: #EFEAE3;
    font-family: var(--font-family-3);
    font-size: var(--text-26);
    font-weight: 400;
    line-height: 1;

    text-decoration: none;
    text-transform: uppercase;
    transition: background-color 200ms ease, transform 200ms ease;
}

.btn-hero:hover,
.btn-hero:focus-visible {
    background: var(--red);
    color: #EFEAE3;
    transform: translateY(-2px);
}

.menu-toggle:focus-visible,
.btn-register:focus-visible,
.btn-hero:focus-visible,
.drawer-close-btn:focus-visible {
    outline: 2px solid #FFFAF3;
    outline-offset: 4px;
}

/* iPad / tablet: lock header + hero to px (no vw) */
@media (max-width: 991.5px) {
    body {
        --header-h: 80px;
    }

    .header-nav {
        padding: 0 24px;
    }

    .menu-toggle {
        gap: 10px;
        font-size: 18px;
    }

    .menu-toggle .hamburger {
        width: 28px;
        min-width: 28px;
        height: 18px;
    }

    .menu-toggle .hamburger span {
        height: 3px;
    }

    .header-wrap .navbar-brand img {
        width: 110px;
    }

    .btn-register {
        width: 140px;
        height: 40px;
        min-width: 140px;
        min-height: 40px;
        font-size: 11px;
    }

    .navbar-collapse {
        width: 400px;
        max-width: calc(100% - 40px);
        padding: 32px 28px;
    }

    .hero-banner {
        min-height: calc(100svh - var(--header-h));
        height: auto;
        max-height: none;
        overflow: clip;
    }

    .hero-content {
        width: calc(100% - 56px);
        transform: none;
    }

    .hero-content h1 {
        font-size: 52px;
        line-height: 1.12;
    }

    .hero-line {
        width: 80px;
        height: 2px;
        margin: 28px 0;
    }

    .btn-hero {
        width: 220px;
        height: 54px;
        min-width: 220px;
        min-height: 54px;
    }
}

@media (max-width: 767px) {
    html {
        height: auto;
        scrollbar-gutter: auto;
        overflow-x: clip;
        overflow-y: auto;
        max-width: 100%;
    }

    body {
        --header-h: 72px;
        overflow-x: clip;
        overflow-y: visible;
        max-width: 100%;
    }

    .header-wrap {
        left: 0;
        right: 0;
        width: auto;
        max-width: 100%;
    }

    .header-nav {
        padding: 0 12px;
        grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
        column-gap: 8px;
    }

    .menu-toggle {
        gap: 6px;
        font-size: 13px;
        min-width: 0;
    }

    .menu-toggle .hamburger {
        width: 22px;
        min-width: 22px;
        height: 14px;
    }

    .menu-toggle .hamburger span {
        height: 2px;
    }

    .header-wrap .navbar-brand {
        min-width: 0;
    }

    .header-wrap .navbar-brand img {
        width: 70px;
        max-width: 100%;
    }

    .btn-register {
        width: auto;
        max-width: 100%;
        height: 36px;
        min-width: 0;
        min-height: 36px;
        padding: 0 10px;
        font-size: 9px;
        justify-self: end;
        white-space: nowrap;
    }

    .navbar-collapse {
        width: 360px;
        max-width: calc(100% - 32px);
        padding: 24px;
    }

    .drawer-close-btn {
        margin-bottom: 48px;
    }

    .navbar-collapse .navbar-nav {
        gap: 22px;
    }

    .navbar-collapse .navbar-nav .nav-link {
        font-size: 28px;
    }

    .hero-banner {
        /* One viewport tall; no fixed max-height scroll trap inside the section */
        min-height: calc(100svh - var(--header-h));
        height: auto;
        max-height: none;
        overflow: clip;
        overscroll-behavior: none;
    }

    .hero-image,
    .hero-video {
        object-position: center;
        pointer-events: none;
    }

    .hero-content {
        width: calc(100% - 40px);
        transform: none;
        max-height: none;
        overflow: visible;
    }

    .hero-content h1 {
        font-size: 40px;
        line-height: 1.12;
    }

    .hero-line {
        width: 48px;
        height: 2px;
        margin: 24px 0;
    }

    .btn-hero {
        width: 184px;
        height: 52px;
        min-width: 184px;
        min-height: 52px;
        font-size: 11px;
    }
}

@media (max-width: 420px) {
    .header-nav {
        padding: 0 14px;
    }

    .menu-toggle>span:last-child {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
    }

    .btn-register {
        width: 92px;
        min-width: 92px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content h1 br {
        display: none;
    }

    .lifestyle-grid {
        grid-template-columns: 1fr;
    }

    .lifestyle-card {
        aspect-ratio: 4 / 5;
    }

    .btn-hero {
        width: 168px;
        min-width: 168px;
        height: 48px;
        min-height: 48px;
    }
}

/* Section headings */
.section-heading {
    margin: 0;
    font-family: var(--font-family-2);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.01em;
}

.section-heading .heading-accent {
    font-family: var(--font-family-2);
    font-weight: 400;
    color: var(--light-red);
}

/* Our Story */
.our-story {
    background: var(--light-white);
}

.our-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 47.4537vw;
}

.our-story-content {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--brown);
    color: var(--white);
    padding: 6.9444vw 9.787vw 6.9444vw 6.9444vw;
    overflow: hidden;
    z-index: 2;
}

.our-story-shape {
    position: absolute;
    top: 0;
    left: 0;
    width: min(26.5vw, 458px);
    height: auto;
    pointer-events: none;
    user-select: none;
    z-index: 0;
}

.our-story-content .section-heading,
.our-story-copy {
    position: relative;
    z-index: 1;
}

.our-story-content .section-heading {
    color: var(--white);
    margin-bottom: 2.3148vw;
}

.our-story-copy {
    max-width: 33.9352vw;
    font-family: var(--font-family-3);
    font-weight: 400;
    line-height: 1.7;
    color: var(--white);
}

.our-story-copy p {
    margin: 0 0 1.3889vw;
}

.our-story-copy p:last-child {
    margin-bottom: 0;
}

.our-story-media {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    background: var(--light-white);
    padding: 3.4722vw 2.3148vw 4.0509vw 0;
    overflow: visible;
    z-index: 3;
    padding-bottom: 0;
    padding-right: 0;
}

.our-story-art {
    width: 100%;

    pointer-events: none;
    user-select: none;
}

.our-story-sofa {
    position: absolute;
    z-index: 1;
    height: auto;
    filter: drop-shadow(0 20px 36px rgb(0 0 0 / 22%));
    right: 0;
    bottom: -14%;
    width: min(60vw, 100%);
    max-width: 100%;
}

/* Our Offerings */
.our-offerings {
    background: var(--light-white);
    padding-top: 16%;
}

.our-offerings-intro {
    display: flex;
    justify-content: center;
    padding: 0 0 3.5vw;
    text-align: center;
}

.our-offerings-intro .section-heading {
    color: var(--black2);
}

.our-offerings-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.our-offerings-card {
    position: relative;
    margin: 0;
    aspect-ratio: 576 / 780;
    overflow: hidden;
    background: var(--brown);
    outline: none;
}

.our-offerings-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.our-offerings-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 2.3148vw 1.7361vw 1.8935vw;
    transform: translateY(100%);
    transition: transform 550ms cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
}

/* Figma: linear #666@0% (4%) → #000@100% (62%), layer opacity 70% */
.our-offerings-overlay::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(102, 102, 102, 0) 4%,
            rgba(0, 0, 0, 0.7) 62%,
            rgba(0, 0, 0, 0.7) 100%);
    pointer-events: none;
}

.our-offerings-copy {
    position: relative;
    z-index: 1;
    width: 100%;
    text-align: center;
    color: #EFEAE3;
    opacity: 0;
    transform: translateY(16px);
    transition:
        opacity 400ms ease 80ms,
        transform 450ms cubic-bezier(0.22, 1, 0.36, 1) 80ms;
}

.our-offerings-title {
    margin: 0 0 0.9259vw;
    font-family: var(--font-family-3);
    font-weight: 700;
    line-height: 1.2;
    color: #EFEAE3;
}

.our-offerings-text {
    margin: 0;
    font-family: var(--font-family-3);
    font-weight: 400;
    line-height: 1.55;
    color: #EFEAE3;
}

.our-offerings-card:hover .our-offerings-overlay,
.our-offerings-card:focus-within .our-offerings-overlay {
    transform: translateY(0);
}

.our-offerings-card:hover .our-offerings-copy,
.our-offerings-card:focus-within .our-offerings-copy {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 991.5px) {
    .our-story-grid {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .our-story-content {
        padding: 120px 40px 100px;
    }

    .our-story-shape {
        width: 280px;
        max-width: 100%;
    }

    .our-story-content .section-heading {
        margin-bottom: 40px;
    }

    .our-story-copy {
        max-width: none;
    }

    .our-story-copy p {
        margin-bottom: 24px;
    }

    .our-story-media {
        min-height: 420px;
        padding: 60px 28px 70px;
        justify-content: center;
        align-items: center;
    }

    .our-story-art {
        position: relative;
        top: auto;
        right: auto;
        width: 100%;
        max-width: 420px;
        transform: none;
        margin-bottom: 12px;
    }

    .our-story-sofa {
        position: absolute;
        right: auto;
        bottom: auto;
        width: 100%;
        max-width: 520px;
        margin-left: 0;
        margin-right: 0;
        bottom: 0;
    }

    .our-offerings {
        padding-top: 120px;
    }

    .our-offerings-intro {
        padding: 0 40px 60px;
    }

    .our-offerings-overlay {
        height: 100%;
        padding: 40px 28px 36px;
    }

    .our-offerings-copy {
        max-width: 320px;
    }

    .our-offerings-title {
        margin-bottom: 16px;
    }
}

@media (max-width: 767px) {
    .our-story-content {
        padding: 100px 28px 90px;
    }

    .our-story-content .section-heading,
    .our-offerings-intro .section-heading {
        font-size: 40px;
    }

    .our-story-content .section-heading {
        margin-bottom: 40px;
    }

    .our-story-copy {
        font-size: 16px;
        line-height: 1.7;
    }

    .our-story-copy p {
        margin-bottom: 24px;
    }

    .our-story-media {
        min-height: 0;
        padding: 48px 20px 60px;
        flex-direction: column;
    }

    .our-story-art {
        width: 100%;
        max-width: 360px;
        margin-bottom: 8px;
    }

    .our-story-sofa {
        width: 100%;
        max-width: none;
        position: absolute;
        bottom: 0;
    }

    .believe-visual {
        display: none;
    }

    .our-offerings {
        padding-top: 100px;
    }

    .our-offerings-intro {
        padding: 0 28px 60px;
    }

    .our-offerings-grid {
        grid-template-columns: 1fr;
        gap: 0px;
    }


    .our-offerings-overlay {
        height: 100%;
        padding: 40px 28px 36px;
        /* Keep content readable on touch devices without relying on hover */
        transform: translateY(0);
    }

    .our-offerings-copy {
        max-width: none;
        opacity: 1;
        transform: none;
    }

    .our-offerings-title {
        font-size: 22px;
        margin-bottom: 16px;
    }

    .our-offerings-text {
        font-size: 14px;
        line-height: 1.5;
    }
}

/* Who We Are For */
.who-we-are {
    background: var(--light-white);
    padding: 10.5231vw 6.9444vw 7.5231vw 6.9444vw;
}

.who-we-are-inner {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    align-items: start;
    gap: 4.6296vw;
    width: 100%;
    max-width: 100%;
}

.who-we-are-copy {
    min-width: 0;
    padding-top: 0;
}

.who-we-are-copy .section-heading {
    margin: 0 0 3.148vw;
    color: var(--black2);
    line-height: 1.12;
}

.who-we-are-list {
    margin: 0;
    padding: 0;
    list-style: none;
    width: 100%;
    max-width: 26.0417vw;
}

.who-we-are-list li {
    display: block;
    width: 100%;
    margin: 0;
    font-family: var(--font-family-3);
    font-weight: 400;
    line-height: 1.3;
    color: var(--black);
}

/* Equal-length lines after each item (except last) */
.who-we-are-list li:not(:last-child)::after {
    content: "";
    display: block;
    width: 100%;
    height: .5px;
    margin-top: 1.2731vw;
    background: var(--black);
}

.who-we-are-list li+li {
    padding-top: 1.3889vw;
}

.who-we-are-list li:last-child {
    padding-bottom: 0;
}

/*
  Desktop: absolute collage (below @992px).
  Tablet/mobile: CSS grid (see max-width: 991.5px).
  [1 tall] [2] [3 span]
  [1 tall] [4] [5] [6]
*/
.who-we-are-collage {
    position: relative;
    min-width: 0;
    width: 100%;
    height: 100%;
}

.who-img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
    object-position: center;
    background: var(--brown);
}

@media (min-width: 992px) {
    .who-img-1 {
        position: absolute;
        top: 0;
        left: 0;
        width: 13.7153vw;
        height: auto;
    }

    .who-img-2 {
        position: absolute;
        top: 5vw;
        left: 32%;
        width: 10.0116vw;
        height: auto;
        max-width: 100%;
    }

    .who-img-3 {
        position: absolute;
        top: 0;
        left: 56%;
        width: 10.9954vw;
        height: auto;
    }

    .who-img-4 {
        position: absolute;
        top: 21vw;
        left: 3%;
        width: 12.3843vw;
        height: auto;
    }

    .who-img-5 {
        position: absolute;
        top: 17vw;
        left: 32%;
        width: 14.9306vw;
        max-width: 100%;
        height: auto;
    }

    .who-img-6 {
        position: absolute;
        top: 17vw;
        left: 66%;
        width: 10.9375vw;
        height: auto;
    }
}


/* Lifestyle Experiences */
.lifestyle {
    background: var(--light-white);
    padding: 2.3148vw 0 5.2083vw 0;
}

.lifestyle-intro {
    display: flex;
    justify-content: center;
    padding: 0 0 3.4722vw;
    text-align: center;
}

.lifestyle-intro .section-heading {
    margin: 0;
    color: var(--black2);
}

.lifestyle-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.3889vw;
}

.lifestyle-card {
    position: relative;
    margin: 0;
    aspect-ratio: 3 / 4.35;
    overflow: hidden;
    background: var(--brown);
}

.lifestyle-card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lifestyle-card::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 45%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.55) 100%);
    pointer-events: none;
}

.lifestyle-label {
    position: absolute;
    left: 0.8vw;
    right: 0.8vw;
    bottom: 1.7361vw;
    z-index: 1;
    margin: 0;
    font-family: var(--font-family-2);
    font-weight: 400;
    line-height: 1.25;
    text-align: center;
    color: var(--white);
}

/* Symphony Of Living */
.symphony {
    background: var(--light-white);
    padding: 6.9444vw 0 7vw 0;
}

.symphony-intro {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 3.125vw 3.4722vw;
    text-align: center;
}

.symphony-intro .section-heading {
    margin: 0 0 3vw;
    color: var(--black2);
}

.symphony-lead {
    margin: 0 auto;
    max-width: 58vw;
    font-family: var(--font-family-3);
    font-weight: 400;
    line-height: 1.7;
    color: var(--black);
}

.symphony-slider-wrap {
    width: 100%;
}

.symphony-swiper {
    overflow: hidden;
}

.symphony-slide {
    position: relative;
    margin: 0;
    overflow: hidden;
}

.symphony-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.symphony-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgb(0 0 0 / 28%);
    pointer-events: none;
}

.symphony-caption {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 1.3889vw;
    font-family: var(--font-family-2);
    font-weight: 400;
    line-height: 1.2;
    text-align: center;
    color: var(--white);
    text-wrap: balance;
}

/* What We Believe In */
.believe {
    position: relative;
    background: var(--brown);
    overflow: hidden;
    display: flex;
}

.believe-visual {
    width: 100%;
    line-height: 0;
}

.believe-visual img {
    display: block;
    height: auto;
}

.believe-content {
    position: absolute;
    top: 22%;
    right: 0;
    z-index: 2;
    width: 50vw;
    padding-right: 6.9444vw;
    padding-left: 2.3148vw;
    color: var(--white);
}

.believe-content .section-heading {
    margin: 0 0 1.7361vw;
    color: var(--white);
    line-height: 1.12;
}

.believe-text {
    margin: 0;
    font-family: var(--font-family-3);
    font-weight: 400;
    line-height: 1.7;
    color: var(--white);
}

/* Interior Design & Styling */
.interior-design {
    background: var(--light-white);
    padding: 7.5231vw 6.9444vw;
    padding-right: 0px;
}

.interior-design-inner {
    display: grid;
    grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.05fr);
    align-items: center;
    gap: 5.2083vw;
    width: 100%;
    max-width: 100%;
}

.interior-design-copy {
    min-width: 0;
}

.interior-design-copy .section-heading {
    margin: 0 0 3vw;
    color: var(--black2);
    line-height: 1.12;
}

.interior-design-text {
    margin: 0 0 2vw;
    max-width: 32.4074vw;
    font-family: var(--font-family-3);
    font-weight: 400;
    line-height: 1.7;
    color: var(--black);
}

.interior-design-above-btn-text {
    margin: 0 0 3.5vw;
    max-width: 32.4074vw;
    font-family: var(--font-family-3);
    font-weight: 400;
    line-height: 1.7;
    color: var(--black);
}

.btn-interior {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 11.9213vw;
    height: 2.9514vw;
    min-width: 160px;
    min-height: 42px;
    border: 1px solid #994A42;
    background: transparent;
    color: var(--black);
    font-family: var(--font-family-3);
    font-size: var(--text-20);
    font-weight: 400;
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn-interior:hover,
.btn-interior:focus-visible {
    background: #994A42;
    border-color: #994A42;
    color: #EFEAE3;
}

.interior-design-media {
    position: relative;
    min-width: 0;
    min-height: 32.4074vw;
}

.interior-frame {
    position: relative;
}

.interior-frame img {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: var(--brown);
}

.interior-mat {
    position: absolute;
    z-index: 0;
    pointer-events: none;
}

.interior-frame-main {
    width: 88%;
    margin-left: auto;

}

.interior-mat-main {
    top: -2%;
    left: -1.5%;
    width: 19.9653vw;
    height: 12.0949vw;
    background: #2E181A;
}

.interior-frame-secondary {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 2;
    z-index: 2;
    width: 31%;
}

.interior-mat-secondary {
    right: -3%;
    bottom: -8%;
    width: 11.4005vw;
    height: 4.0949vw;
    background: var(--light-red);
    z-index: 0;
}

/* How It Works */
.how-it-works {
    background: var(--light-white);
    padding: 6.9444vw 5vw;
}

.how-it-works-inner {
    display: grid;
    grid-template-columns: minmax(0, 28%) minmax(0, 1fr);
    align-items: center;
    gap: 5.2083vw;
    width: 100%;
    max-width: 100%;
}

.how-it-works-heading {
    min-width: 0;
}

.how-it-works-heading .section-heading {
    margin: 0;
    color: var(--black2);
    line-height: 1.12;
}

.how-steps {
    margin: 0;
    padding: 0;
    list-style: none;
    min-width: 0;
    width: 100%;
}

.how-step {
    display: grid;
    /* Number sits outside; content is a separate column with its own divider */
    grid-template-columns: auto minmax(0, 1fr);
    column-gap: 2.3148vw;
    align-items: start;
    min-width: 0;
}

.how-step-number {
    display: block;
    margin: 0;
    padding: 0;
    font-family: var(--font-family-3);
    font-weight: 100;
    line-height: 1;
    color: #C4B0A5;
    text-align: left;
    font-variant-numeric: lining-nums;
    /* Keep numeral outside the content box — not clipped */
    position: relative;
    z-index: 1;
    transform: translateY(-0.08em);
    width: 4vw;
    margin-top: 1vw;
}

.how-step-content {
    min-width: 0;
    padding: 1.7361vw 0 2.3148vw;
    border-bottom: 1px solid var(--light-red);
}

.how-step:first-child .how-step-content {
    padding-top: 0.463vw;
}

.how-step:last-child .how-step-content {
    padding-bottom: 0;
    border-bottom: 0;
}

.how-step-title {
    margin: 0 0 0.9259vw;
    font-family: var(--font-family-3);
    font-weight: 700;
    line-height: 1.25;
    color: #2E181A;
}

.how-step-text {
    margin: 0;
    font-family: var(--font-family-3);
    font-weight: 400;
    line-height: 1.7;
    color: var(--black);
    overflow-wrap: anywhere;
}

/* Our Partners */
.our-partners {
    background: var(--light-white);
    padding: 6.9444vw 0 5.2083vw;
    overflow: hidden;
    padding-bottom: 2vw;
}

.our-partners-intro {
    display: flex;
    justify-content: center;
    padding: 0 3.125vw 4.0509vw;
    text-align: center;
}

.our-partners-intro .section-heading {
    color: var(--black2);
}

.partners-marquee {
    width: 100%;
}

.partners-swiper {
    overflow: hidden;
    padding: 0 3.125vw;
}

.partners-swiper .swiper-wrapper {
    transition-timing-function: linear !important;
    align-items: stretch;
}

.partners-swiper .swiper-slide {
    width: 14.4676vw;
    height: auto;
}

.partner-card {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 7.5231vw;
    min-height: 84px;
    background: var(--white);
}

.partner-card img {
    display: block;
    max-width: 70%;
    max-height: 50%;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Testimonials */
.testimonials {
    background: var(--light-white);
    padding: 6.9444vw 0 5.787vw;
    overflow: hidden;
}

.testimonials-intro {
    display: flex;
    justify-content: center;
    padding: 0 3.125vw 4.0509vw;
    text-align: center;
}

.testimonials-heading {
    margin: 0;
    font-family: var(--font-family-2);
    font-weight: 400;
    line-height: 1.15;
    color: var(--light-red);
}

.testimonials-slider-wrap {
    position: relative;
    width: min(78.125vw, 1350px);
    margin: 0 auto;
    /* no bottom padding needed — card overflow handles the space */
    padding: 0;
}

.testimonials-swiper {
    overflow: hidden;
}

.testimonials-swiper .swiper-slide {
    height: auto;
}

.testimonial-card {
    position: relative;
    width: 100%;
    /* padding-bottom creates space for the quote box to overflow below the image */
    padding-bottom: 9vw;
}

.testimonial-media {
    position: relative;
    width: 90%;
    margin-left: auto;
    overflow: hidden;
    background: var(--brown);
}

.testimonial-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-quote {
    position: absolute;
    left: 0;
    /* bottom: 0 of the card — the card padding-bottom lets it overflow below the image */
    bottom: 0;
    z-index: 2;
    width: 38vw;
    padding: 2.3148vw 2.0833vw;
    background: #111111a6;
    color: var(--white);
}

.testimonial-author {
    margin: 0 0 1.0417vw;
    font-family: var(--font-family-1);
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--white);
}

.testimonial-author span {
    margin: 0 0.35em;
    font-weight: 400;
    opacity: 1;
}

.testimonial-text {
    margin: 0;
    font-family: var(--font-family-3);
    font-weight: 400;
    line-height: 1.65;
    color: var(--white);
    font-size: var(--text-16);
}

.testimonials-nav {
    position: absolute;
    /* align arrows to the bottom-right corner of the image (image is 90% wide, margin-left:auto) */
    right: 0;
    bottom: 8.5vw;
    /* same as card padding-bottom = bottom edge of the image */
    display: flex;
    gap: 0.5944vw;
    z-index: 3;
    transform: translateY(100%);
    padding-top: 1.1574vw;
}

.testimonials-prev,
.testimonials-next {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5vw;
    height: 2.5vw;

    padding: 0;
    border: 1px solid #2E181A;
    background: var(--light-white);
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.testimonials-prev img,
.testimonials-next img {
    display: block;
    width: 1.5204vw;
    min-width: 18px;
    height: auto;
}

.testimonials-prev:hover,
.testimonials-next:hover,
.testimonials-prev:focus-visible,
.testimonials-next:focus-visible {
    background: #2E181A;
    transform: translateY(-1px);
}

.testimonials-prev:hover img,
.testimonials-next:hover img,
.testimonials-prev:focus-visible img,
.testimonials-next:focus-visible img {
    filter: brightness(0) invert(1);
}

@media (max-width: 991.5px) {
    .who-we-are {
        padding: 120px 40px 100px;
    }

    .who-we-are-inner {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .who-we-are-copy .section-heading {
        margin-bottom: 48px;
    }

    .who-we-are-list {
        max-width: none;
    }

    .who-we-are-list li {
        padding: 0 0 16px;
    }

    .who-we-are-list li:not(:last-child)::after {
        margin-top: 20px;
    }

    .who-we-are-list li+li {
        padding-top: 24px;
    }

    .who-we-are-collage {
        display: grid;
        grid-template-columns: 1.2fr 1.15fr 0.72fr 0.72fr;
        grid-template-rows: 1fr 1.05fr;
        gap: 10px;
        align-items: stretch;
        height: auto;
        aspect-ratio: 1.28 / 1;
    }

    .who-img-1,
    .who-img-2,
    .who-img-3,
    .who-img-4,
    .who-img-5,
    .who-img-6 {
        position: static;
        top: auto;
        left: auto;
        width: 100%;
        height: 100%;
        max-width: none;
    }

    .who-img-1 {
        grid-column: 1;
        grid-row: 1 / -1;
    }

    .who-img-2 {
        grid-column: 2;
        grid-row: 1;
    }

    .who-img-3 {
        grid-column: 3 / 5;
        grid-row: 1;
    }

    .who-img-4 {
        grid-column: 2;
        grid-row: 2;
    }

    .who-img-5 {
        grid-column: 3;
        grid-row: 2;
    }

    .who-img-6 {
        grid-column: 4;
        grid-row: 2;
    }

    .lifestyle {
        padding: 40px 40px 100px;
    }

    .lifestyle-intro {
        padding-bottom: 60px;
    }

    .lifestyle-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .lifestyle-label {
        left: 14px;
        right: 14px;
        bottom: 24px;
    }

    .symphony {
        padding: 120px 0;
    }

    .symphony-intro {
        max-width: none;
        padding: 0 40px 60px;
    }

    .symphony-intro .section-heading {
        margin-bottom: 48px;
    }

    .symphony-lead {
        max-width: 520px;
    }

    .symphony-slide {
        aspect-ratio: 16 / 7;
    }

    .symphony-caption {
        padding: 24px;
    }

    .believe-content {
        width: min(46%, 420px);
        padding-right: 40px;
        padding-left: 24px;
        transform: translateY(-40%);
    }

    .believe-content .section-heading {
        margin-bottom: 28px;
    }

    .believe-text {
        max-width: none;
    }

    .interior-design {
        padding: 120px 40px;
    }

    .interior-design-inner {
        grid-template-columns: 1fr;
        gap: 70px;
    }

    .interior-design-copy .section-heading {
        margin-bottom: 48px;
    }

    .interior-design-text {
        max-width: none;
        margin-bottom: 20px;
    }

    .interior-design-above-btn-text {
        max-width: none;
        margin-bottom: 48px;
    }

    .btn-interior {
        width: 180px;
        height: 46px;
        min-width: 180px;
        min-height: 46px;
        font-size: 11px;
    }

    .interior-design-media {
        min-height: 420px;
    }

    .interior-frame-main {
        width: 84%;
    }

    .interior-mat-main {
        top: -12px;
        left: -14px;

    }

    .interior-frame-secondary {
        width: 44%;
    }

    .interior-mat-secondary {
        right: -12px;
        bottom: -12px;

    }

    .how-it-works {
        padding: 120px 40px;
    }

    .how-it-works-inner {
        grid-template-columns: 1fr;
        gap: 60px;
        align-items: start;
    }

    .how-step {
        grid-template-columns: auto minmax(0, 1fr);
        column-gap: 24px;
    }

    .how-step-number {
        width: 56px;
        margin-top: 4px;

        transform: translateY(-2px);
    }

    .how-step-content {
        padding: 8px 0 36px;
    }

    .how-step:first-child .how-step-content {
        padding-top: 8px;
    }

    .how-step-title {
        margin-bottom: 16px;
    }

    .our-partners {
        padding: 120px 0 90px;
    }

    .our-partners-intro {
        padding: 0 40px 60px;
    }

    .partners-swiper {
        padding: 0 40px;
    }

    .partners-swiper .swiper-slide {
        width: 180px;
    }

    .partner-card {
        height: 110px;
        min-height: 110px;
    }

    .testimonials {
        padding: 120px 0 100px;
    }

    .testimonials-intro {
        padding: 0 40px 60px;
    }

    .testimonials-slider-wrap {
        width: calc(100% - 80px);
        padding-bottom: 80px;
    }

    .testimonial-card {
        padding-bottom: 0;
    }

    .testimonial-media {
        width: 100%;
        aspect-ratio: 16 / 10;
    }

    .testimonial-quote {
        position: relative;
        left: auto;
        bottom: auto;
        width: 100%;
        margin-top: -28px;
        padding: 28px 24px;
    }

    .testimonial-author {
        margin-bottom: 12px;
    }

    .testimonials-nav {
        right: 0;
        bottom: 0;
        gap: 10px;
        position: static;
        text-align: right;
        justify-content: center;
    }

    .testimonials-prev,
    .testimonials-next {
        width: 48px;
        height: 48px;
        min-width: 48px;
        min-height: 48px;
    }

    .testimonials-prev img,
    .testimonials-next img {
        width: 20px;
        min-width: 20px;
    }
}

@media (max-width: 767px) {
    .who-we-are {
        padding: 100px 28px 90px;
    }

    .who-we-are-inner {
        gap: 56px;
    }

    .who-we-are-copy .section-heading {
        
        margin-bottom: 40px;
    }

    .who-we-are-list li {
        font-size: 16px;
        padding: 0 0 14px;
    }

    .who-we-are-list li:not(:last-child)::after {
        margin-top: 18px;
    }

    .who-we-are-list li+li {
        padding-top: 15px;
    }

    .who-we-are-collage {
        grid-template-columns: 1.15fr 1.1fr 0.7fr 0.7fr;
        gap: 12px;
        aspect-ratio: 1.2 / 1;
    }

    .lifestyle {
        padding: 0px;
    }

    .lifestyle-intro {
        padding-bottom: 48px;
    }


    .lifestyle-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .lifestyle-card {
        aspect-ratio: 3 / 4.1;
    }

    .lifestyle-label {
   
        left: 10px;
        right: 10px;
        bottom: 18px;
    }

    .symphony {
        padding: 100px 0;
    }

    .symphony-intro {
        padding: 0 28px 48px;
    }

    .symphony-intro .section-heading {
    
        margin-bottom: 40px;
    }

    .symphony-lead {
   
        line-height: 1.7;
        max-width: none;
    }

    

    .symphony-caption {
        
        padding: 20px 16px;
    }

    .believe-content {
        position: relative;
        top: auto;
        right: auto;
        width: 100%;
        max-width: none;
        padding: 80px 28px 90px;
        transform: none;
        background: var(--brown);
    }

    .believe-content .section-heading {
   
        margin-bottom: 28px;
    }

    .believe-text {
     
        line-height: 1.7;
        max-width: none;
    }

    .interior-design {
        padding: 100px 28px;
        padding-bottom: 0;
    }

    .interior-design-inner {
        gap: 56px;
    }

    .interior-design-copy .section-heading {
       
        margin-bottom: 40px;
    }

    .interior-design-text {
        line-height: 1.7;
        margin-bottom: 16px;
    }

    .interior-design-above-btn-text {
        line-height: 1.7;
        margin-bottom: 36px;
    }

    .btn-interior {
        width: 168px;
        height: 44px;
        min-width: 168px;
        min-height: 44px;
        font-size: 10px;
    }

    .interior-design-media {
        min-height: 320px;
    }

    .interior-frame-main {
        width: 86%;
    }

    .interior-mat-main {
        top: -10px;
        left: -10px;
    }

    .interior-frame-secondary {
        width: 46%;
    }

    .interior-mat-secondary {
        right: -10px;
        bottom: -10px;
    }

    .how-it-works {
        padding: 100px 28px;
    }

    .how-it-works-inner {
        gap: 48px;
    }


    .how-step {
        grid-template-columns: auto minmax(0, 1fr);
        column-gap: 16px;
        padding: 12px 0;
    }

    .how-step-number {

        line-height: 1;
        transform: translateY(-1px);
    }

    .how-step-content {
        padding: 4px 0 32px;
    }

    .how-step-title {
  
        margin-bottom: 14px;
    }

    .how-step-text {

        line-height: 1.7;
    }

    .our-partners {
        padding: 100px 0 80px;
    }

    .our-partners-intro {
        padding: 0 28px 48px;
    }

    .our-partners-intro .section-heading {
        font-size: 40px;
    }

    .partners-swiper {
        padding: 0 28px;
    }

    .partners-swiper .swiper-slide {
        width: 148px;
    }

    .partner-card {
        height: 92px;
        min-height: 92px;
    }

    .testimonials {
        padding: 100px 0 90px;
    }

    .testimonials-intro {
        padding: 0 28px 48px;
    }

   

    .testimonials-slider-wrap {
        width: calc(100% - 56px);
        padding-bottom: 72px;
    }

    .testimonial-media {
        aspect-ratio: 4 / 3;
    }

    .testimonial-quote {
        margin-top: -20px;
        padding: 28px 24px;
    }

    .testimonial-author {
        font-size: 14px;
        margin-bottom: 14px;
    }

    .testimonial-text {
        font-size: 15px;
        line-height: 1.65;
    }

    .testimonials-prev,
    .testimonials-next {
        width: 44px;
        height: 44px;
        min-width: 44px;
        min-height: 44px;
    }
}

/* Footer */
.footer-wrap {
    background: #2B1B1B;
    color: var(--white);
    padding: 3.787vw 6.9444vw 3.4722vw;
}

/* Kill AOS transforms in footer — they glitch on mobile (viewport resize / overflow clip) */
.footer-wrap [data-aos],
.footer-wrap [data-aos].aos-animate {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    pointer-events: auto !important;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 4.6296vw;
}

.footer-left,
.footer-right {
    display: flex;
    flex-direction: column;
}

.footer-left {
    max-width: 40.5093vw;
    flex: 1 1 auto;
}

.footer-right {
    align-items: flex-end;
    text-align: right;
    max-width: 42.2454vw;
    flex: 1 1 auto;
}

.footer-logo {
    display: inline-block;
    width: fit-content;
    line-height: 0;
}

.footer-logo img {
    display: block;
    width: 16.2616vw;
    height: auto;
}

.footer-tagline {
    margin: 1.3889vw 0 0;
    font-family: var(--font-family-2);
    font-weight: 400;
    line-height: 1.45;
    color: var(--white);
}

.footer-address {
    margin-top: auto;
    padding-top: 2.4722vw;
    font-family: var(--font-family-1);
    font-weight: 400;
    line-height: 1.55;
    color: var(--white);
}

.footer-address p {
    margin: 0 0 0.1vw;
}

.footer-address p:last-child {
    margin-bottom: 0;
}

.footer-contact-line {
    display: flex;
    flex-wrap: wrap;
    gap: 0.463vw;
    align-items: center;
}

.footer-contact-line a {
    color: var(--white);
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.footer-contact-line a:hover,
.footer-contact-line a:focus-visible {
    opacity: 0.75;
}

.footer-contact-line span {
    opacity: 0.7;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 1.0417vw;
    margin: 1.3148vw 0 0;
    padding: 0;
    list-style: none;
}

.footer-social a {
    display: inline-flex;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.footer-social a:hover,
.footer-social a:focus-visible {
    transform: translateY(-2px);
    opacity: 0.85;
}

.footer-social img {
    display: block;
    width: 2.0833vw;
    min-width: 28px;
    height: auto;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 4vw;
    margin-top: 6vw;
}

.footer-nav a {
    font-family: var(--font-family-1);
    font-size: var(--text-24);
    font-weight: 400;
    line-height: 1.2;
    color: var(--white);
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
    opacity: 0.7;
}

.footer-subscribe {
    margin-top: auto !important;
    width: 23.5532vw;
}

.footer-subscribe-title {
    margin: 0 0 2vw;
    font-family: var(--font-family-1);
    font-weight: 400;
    line-height: 1.8;
    color: var(--white);
    text-align: left;
}

.footer-subscribe-form {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.footer-email {
    width: 100%;
    height: 3.4722vw;
    min-height: 48px;
    padding: 0 3.4722vw 0 1.1574vw;
    border: 1px solid #D9D9D9;
    background: transparent;
    color: var(--white);
    font-family: var(--font-family-1);
    font-weight: 400;
    font-size: var(--text-20);
    outline: none;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

.footer-email::placeholder {
    color: rgb(255 255 255 / 30%);
}

.footer-email:focus {
    border-color: var(--white);
    background: rgb(255 255 255 / 38%);
}

.wpcf7-spinner,.wpcf7-response-output{
    display: none !important;
}
.footer-subscribe input[type="submit"].wpcf7-submit{
    top: 1.7361vw !important;
}
.footer-subscribe .wpcf7-form p{
    margin-bottom: 0 !important;
}
.footer-submit {
    position: absolute;
    top: 50%;
    right: 1.0417vw;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    background: transparent;
    transform: translateY(-50%);
    cursor: pointer;
}

.footer-submit img {
    display: block;
    width: 1.1574vw;
    min-width: 16px;
    height: auto;
}

.footer-copy {
    padding-top: 2.6296vw;
    font-family: var(--font-family-1);
    font-weight: 400;
    line-height: 1.4;
    color: #828282;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@media (max-width: 991.5px) {
    .footer-wrap {
        padding: 80px 40px 60px;
    }

    .footer-inner {
        flex-direction: column;
        gap: 60px;
    }

    .footer-left,
    .footer-right {
        max-width: none;
        align-items: flex-start;
        text-align: left;
    }

    .footer-logo img {
        width: 120px;
    }

    .footer-tagline {
        margin-top: 16px;
    }

    .footer-address {
        padding-top: 36px;
    }

    .footer-address p {
        margin-bottom: 10px;
    }

    .footer-contact-line {
        gap: 8px;
    }

    .footer-social {
        gap: 14px;
        margin-top: 28px;
    }

    .footer-social img {
        width: 32px;
    }

    .footer-nav {
        justify-content: flex-start;
        gap: 20px 28px;
    }

    .footer-subscribe {
        margin-top: 28px;
        width: 100%;
        max-width: 360px;
    }

    .footer-subscribe-title {
        margin-bottom: 16px;
    }

    .footer-subscribe-title br {
        display: none;
    }

    .footer-email {
        height: 52px;
        padding: 0 48px 0 16px;
    }

    .footer-subscribe input[type="submit"].wpcf7-submit{
        right: 16px !important;
        top: 24px !important;
    }

    .footer-submit img {
        width: 18px;
    }

    .footer-copy {
        padding-top: 36px;
    }
}

@media (max-width: 767px) {
    .footer-wrap {
        padding: 80px 28px 56px;
    }

    .footer-inner {
        gap: 36px;
    }

    .footer-logo img {
        width: 104px;
    }

    .footer-nav {
        gap: 20px 28px;
        margin-top: 48px;
    }

    .footer-subscribe {
        max-width: none;
        margin-top: 40px;
    }

    .footer-subscribe-title {
        margin-bottom: 24px;
    }

    .footer-social {
        gap: 16px;
        margin-top: 10px;
    }

    .footer-social img {
        width: 30px;
        min-width: 30px;
    }

    .footer-email {
        height: 48px;
        padding: 0 44px 0 14px;
    }

    .footer-subscribe input[type="submit"].wpcf7-submit {
        right: 14px !important;
        top: 24px !important;
    }

    .footer-copy {
        font-size: 14px;
        padding-top: 40px;
    }

    .footer-address {
        padding-top: 40px;
    }
}

@media (prefers-reduced-motion: reduce) {

    .navbar-collapse,
    .nav-overlay,
    .menu-toggle .hamburger span,
    .btn-hero,
    .our-offerings-overlay,
    .our-offerings-copy,
    .footer-social a,
    .footer-nav a,
    .footer-contact-line a,
    .footer-email,
    .testimonials-prev,
    .testimonials-next {
        transition: none;
    }
}

