:root {
    --white: #ffffff;
    --black: #000000;
    --black2: #1B1B1B;
    --green: #383E19;
    --light-brown: #F0EAE0;
    --grey-bg: #F5F5F5;
    --light-red: #934925;
    --light-white: #DDDCD0;

    --text-96: 5.0000vw;
    --text-80: 4.1667vw;
    --text-65: 3.6458vw;
    --text-60: 3.1250vw;
    --text-50: 2.6042vw;
    --text-45: 2.3438vw;
    --text-42: 2.1875vw;
    --text-40: 2.0833vw;
    --text-38: 1.9792vw;
    --text-35: 1.8229vw;
    --text-34: 1.7708vw;
    --text-32: 1.6667vw;
    --text-30: 1.5625vw;
    --text-28: 1.4583vw;
    --text-26: 1.3542vw;
    --text-25: 1.3021vw;
    --text-24: 1.2500vw;
    --text-22: 1.1458vw;
    --text-20: 1.0417vw;
    --text-18: 0.9375vw;
    --text-17: 0.8854vw;
    --text-16: 0.8333vw;
    --text-14: 0.7292vw;

    --spacing-120: 120px;
    --spacing-100: 100px;
    --spacing-150: 150px;
    --spacing-60: 2vw;

    --font-family-1: 'Raleway', sans-serif;
    --font-family-2: 'Nelphim';
    --font-family-3: 'Inter', sans-serif;
}

/* Mobile first (<=767px) */
@media (max-width: 767px) {
    :root {
        --text-96: 42px;
        --text-80: 36px;
        --text-65: 32px;
        --text-60: 30px;
        --text-50: 28px;
        --text-45: 26px;
        --text-42: 24px;
        --text-40: 24px;
        --text-38: 22px;
        --text-35: 20px;
        --text-34: 20px;
        --text-32: 20px;
        --text-30: 18px;
        --text-28: 18px;
        --text-26: 16px;
        --text-25: 16px;
        --text-24: 16px;
        --text-22: 15px;
        --text-20: 14px;
        --text-18: 14px;
        --text-17: 13px;
        --text-16: 13px;
        --text-14: 12px;

        --spacing-120: 80px;
        --spacing-100: 60px;
        --spacing-150: 90px;
        --spacing-60: 30px;
    }
}

/* Tablet (768px—991px) */
@media (min-width: 768px) and (max-width: 991px) {
    :root {
        --text-96: 56px;
        --text-80: 48px;
        --text-65: 42px;
        --text-60: 40px;
        --text-50: 36px;
        --text-45: 32px;
        --text-42: 30px;
        --text-40: 28px;
        --text-38: 26px;
        --text-35: 24px;
        --text-34: 24px;
        --text-32: 22px;
        --text-30: 20px;
        --text-28: 20px;
        --text-26: 18px;
        --text-25: 18px;
        --text-24: 18px;
        --text-22: 16px;
        --text-20: 16px;
        --text-18: 15px;
        --text-17: 14px;
        --text-16: 14px;
        --text-14: 12px;

        --spacing-120: 80px;
        --spacing-100: 80px;
        --spacing-150: 120px;
        --spacing-60: 40px;
    }
}

/* Small desktop (992px—1199px) */
@media (min-width: 992px) and (max-width: 1200px) {
    :root {
        --text-96: 72px;
        --text-80: 60px;
        --text-65: 52px;
        --text-60: 48px;
        --text-50: 40px;
        --text-45: 36px;
        --text-42: 34px;
        --text-40: 32px;
        --text-38: 30px;
        --text-35: 28px;
        --text-34: 28px;
        --text-32: 26px;
        --text-30: 24px;
        --text-28: 22px;
        --text-26: 22px;
        --text-25: 20px;
        --text-24: 20px;
        --text-22: 18px;
        --text-20: 18px;
        --text-18: 16px;
        --text-17: 15px;
        --text-16: 15px;
        --text-14: 13px;

        --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: 7.2917vw;
    padding-right: 7.2917vw;
}

@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: 20px;
        padding-right: 20px;
    }
}


.white {
    color: var(--white);
}

.black {
    color: var(--black);
}

.badge {
    font-size: var(--text-14);
    font-weight: 600;
    border-radius: 4px;
}

/*font sizes*/
.text-96 {
    font-size: var(--text-96);
}

.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;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    scrollbar-gutter: stable;
}

body {
    /* 100px at 1920 design width */
    --header-h: 5.2083vw;
    margin: 0;
    width: 100%;
    max-width: 100%;
    padding-top: var(--header-h);
    background: var(--light-white);
    font-family: var(--font-family-1);
    font-size: var(--text-18);
    font-weight: 400;
    color: var(--black);
    text-rendering: optimizeSpeed;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* Intro video pages: flush to top so hero matches fullscreen video frame */
body.has-intro-video {
    padding-top: 0;
}

body.has-intro-video .hero-banner {
    margin-top: 0;
}

.main-content,
.header-wrap,
.footer-wrap,
.partners-section {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.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;
}

.skip-link:focus {
    left: 16px;
    top: 16px;
}

/* Anchor targets clear the fixed header */
.main-content>section[id],
.form-section[id],
.footer-wrap[id] {
    scroll-margin-top: calc(var(--header-h) + 12px);
}

/* 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 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-h);
    background: var(--green);
    z-index: 1050;
    overflow: visible;
}

.header-nav {
    --header-menu-gap: 3.5vw;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: var(--header-menu-gap);
    width: 100%;
    height: 100%;
}

.header-wrap .navbar-brand {
    flex: none;
    padding: 0;
    margin: 0;
}

.header-wrap .navbar-brand img {
    display: block;
    width: 11.9271vw;
    height: auto;
}

.header-menu {
    display: flex;
    align-items: center;
    gap: var(--header-menu-gap);
    margin: 0 0 0 auto;
    padding: 0;
    list-style: none;
}

.header-menu .nav-link {
    display: inline-block;
    padding: 0;
    color: var(--light-white);
    font-family: var(--font-family-1);
    font-size: var(--text-20);
    font-weight: 400;
    line-height: 150%;
    letter-spacing: -0.03em;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;
    transition: opacity 0.2s ease;
}

.header-menu .nav-link:hover,
.header-menu .nav-link:focus-visible,
.header-menu .nav-link.active {
    color: var(--white);
    text-decoration: underline;
    text-underline-offset: 0.35em;
    text-decoration-thickness: 1px;
    font-weight: bold;
}

.btn-contact {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.7292vw;
    flex: none;
    margin-left: 0;
    padding: 0 0.83vw;
    border: 3px solid var(--white);
    background: transparent;
    color: var(--white) !important;
    font-family: var(--font-family-1);
    font-size: var(--text-16);
    font-weight: 700;
    line-height: 150%;
    letter-spacing: 0.02em;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;
    transition: background 0.35s ease, color 0.35s ease, border-color 0.35s ease;
    height: 3.0208vw;
    width: 11.7813vw;
    border-radius: 5px;
    cursor: pointer;
}

.btn-contact img {
    display: block;
    width: 1.5104vw;
    height: auto;
    transition: filter 0.35s ease, transform 0.35s ease;
    flex: none;
}

.btn-contact:hover,
.btn-contact:focus-visible {
    background: var(--light-red);
    border-color: var(--white);
    color: var(--white) !important;
}

.btn-contact:hover img,
.btn-contact:focus-visible img {
    filter: brightness(0) invert(1);
    transform: translateX(3px);
}

.menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    padding: 8px 0;
    border: 0;
    background: transparent;
    color: var(--light-white);
    cursor: pointer;
}

.menu-toggle .hamburger {
    position: relative;
    display: block;
    width: 28px;
    height: 18px;
    flex: none;
}

.menu-toggle .hamburger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--light-white);
    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);
}

.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: var(--green);
    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(255 255 255 / 28%);
    background: transparent;
    color: var(--light-white);
    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,
.navbar-collapse .navbar-nav a {
    display: block;
    padding: 0;
    font-family: var(--font-family-1);
    font-size: var(--text-24);
    font-weight: 400;
    line-height: 150%;
    letter-spacing: -0.03em;
    color: var(--light-white);
    text-transform: uppercase;
    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;
    color: var(--light-white);
}

.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 — full viewport frame matches intro video end (object-fit: cover) */
.hero-banner {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 100svh;
    /* Pull under fixed header so crop matches fullscreen video */
    margin-top: calc(var(--header-h) * -1);
    overflow: hidden;
}

.hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    opacity: 1;
    background: linear-gradient(105deg,
            rgb(240 234 224 / 55%) 0%,
            rgb(240 234 224 / 28%) 42%,
            rgb(240 234 224 / 8%) 70%,
            transparent 100%);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-top: calc(var(--header-h) + var(--spacing-60));
    padding-bottom: var(--spacing-100);
}

.hero-title {
    margin: 0;
    max-width: 50vw;
    color: var(--black);
    font-family: var(--font-family-2);
    font-size: var(--text-96);
    font-weight: 400;
    line-height: 1;
    text-transform: uppercase;
}

.hero-text {
    margin: 1.5625vw 0 2.6042vw;
    max-width: min(42vw, 100%);
    color: var(--black2);
    font-family: var(--font-family-1);
    font-size: var(--text-32);
    font-weight: 400;
    line-height: 130%;
}

.btn-hero {
    width: 16.6667vw;
    height: 3.0208vw;
    margin-top: 2.0833vw;
    padding: 0 1.0417vw;
    font-size: var(--text-16);
    letter-spacing: 0.02em;
}

.btn-hero img {
    width: 1.7188vw;
}

@media (max-width: 991.5px) {
    body {
        --header-h: 72px;
    }

    .header-menu {
        display: none;
    }

    .btn-contact {
        display: none;
    }

    .menu-toggle {
        display: inline-flex;
        margin-left: auto;
    }

    .header-wrap .navbar-brand img {
        width: 120px;
    }

    .hero-banner {
        min-height: 100svh;
        margin-top: calc(var(--header-h) * -1);
        align-items: center;
    }

    .hero-image {
        object-position: center center;
    }

    .hero-content {
        padding-top: calc(var(--header-h) + 40px);
        padding-bottom: 60px;
    }

    .hero-title {
        max-width: 20vw;
    }

    .hero-text {
        margin: 16px 0 28px;
        max-width: 520px;
    }

    .btn-hero,
    .hero-banner .btn-promise {
        width: 280px;
        height: 52px;
        margin-top: 0;
        gap: 12px;
        padding: 0 16px;
        font-size: 14px;
    }

    .btn-hero img,
    .hero-banner .btn-promise img {
        width: 28px;
    }

    .hero-overlay {
        background: linear-gradient(to top,
                rgb(240 234 224 / 85%) 0%,
                rgb(240 234 224 / 55%) 45%,
                rgb(240 234 224 / 22%) 100%);
    }
}

@media (max-width: 767px) {
    html {
        scrollbar-gutter: auto;
    }

    body {
        --header-h: 64px;
    }

    .header-wrap .navbar-brand img {
        width: 100px;
    }

    .hero-banner {
        min-height: 100svh;
        margin-top: calc(var(--header-h) * -1);
        align-items: flex-end;
        width: 100%;
        max-width: 100%;
    }

    .hero-image,
    .hero-picture {
        object-position: center center;
    }

    .hero-picture {
        position: absolute;
        inset: 0;
        z-index: 0;
    }

    .hero-picture .hero-image {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
    }

    /* Dark overlay so white copy stays readable over light hero media */
    .hero-overlay {
        background: linear-gradient(
            to top,
            rgb(0 0 0 / 72%) 0%,
            rgb(0 0 0 / 48%) 42%,
            rgb(0 0 0 / 28%) 72%,
            rgb(0 0 0 / 18%) 100%
        );
    }

    .hero-content {
        padding-top: calc(var(--header-h) + 24px);
        padding-bottom: 40px;
        width: 100%;
        max-width: 100%;
    }

    .hero-title {
        max-width: 100%;
        line-height: 1.05;
        overflow-wrap: anywhere;
        word-break: break-word;
        color: var(--white);
    }

    .hero-text {
        margin: 14px 0 24px;
        max-width: 100%;
        overflow-wrap: break-word;
        color: var(--white);
    }

    .hero-banner .btn-promise {
        width: auto;
        max-width: 100%;
        height: 48px;
        gap: 8px;
        padding: 0 12px;
        letter-spacing: 0.02em;
        background: transparent;
        border-color: var(--white);
        color: var(--white);
    }

    .hero-banner .btn-promise img {
        width: 20px;
        flex: none;
        filter: brightness(0) invert(1);
    }

    .hero-banner .btn-promise:hover,
    .hero-banner .btn-promise:focus-visible {
        background: var(--light-red);
        border-color: var(--white);
        color: var(--white);
    }

    .hero-banner .btn-promise:hover img,
    .hero-banner .btn-promise:focus-visible img {
        filter: brightness(0) invert(1);
    }

    .btn-hero,
    .btn-promise {
        width: auto;
        max-width: 100%;
        height: 48px;
        gap: 8px;
        padding: 0 12px;
        letter-spacing: 0.02em;
        background: transparent;
    }

    .btn-hero img,
    .btn-promise img {
        width: 20px;
        flex: none;
    }
}

/* Footer — logo left, content right (nav / subscribe + atelier) */
.footer-wrap {
    position: relative;
    overflow: hidden;
    background-color: #383E19;
    background-image: url("../images/footer-bg.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    color: var(--light-white);
}

.footer-inner {
    position: relative;
    z-index: 1;
    padding-top: 5.2083vw;
    padding-bottom: 2.0833vw;
}

.footer-main {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 5.2083vw;
}

/* Brand / Logo column */
.footer-brand {
    flex: 0 0 auto;
    width: 22.6042vw;
    max-width: 100%;
    display: flex;
    align-items: flex-start;
}

.footer-logo {
    display: inline-block;
    width: 100%;
    line-height: 0;
}

.footer-logo img {
    display: block;
    width: 100%;
    max-width: 22.6042vw;
    /* ~434px @ 1920 */
    height: auto;
    mix-blend-mode: screen;
}

/* Right side: nav row + subscribe + atelier columns */
.footer-content {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    flex-direction: column;
    padding-top: 4.0417vw;
}

/* Nav row */
.footer-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 0.625vw 3.25vw;
    margin: 0;
    padding: 0;
}

.footer-nav a {
    color: var(--light-white);
    font-family: var(--font-family-1);
    font-size: var(--text-20);
    font-weight: 400;
    line-height: 150%;
    letter-spacing: -0.03em;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.footer-nav a.active,
.footer-nav a:hover,
.footer-nav a:focus-visible {
    color: var(--white);
    font-weight: 700;
}

/* Subscribe + Atelier side-by-side row */
.footer-panels {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    gap: 4.4867vw;
    margin-top: 2.125vw;
}

/* Subscribe panel */
.footer-subscribe {
    flex: 1 1 auto;
    max-width: 22.6042vw;
}

.footer-subscribe-title {
    margin: 0 0 1.0417vw;
    color: var(--white);
    font-family: var(--font-family-1);
    font-size: var(--text-20);
    font-weight: 700;
    line-height: 150%;
    letter-spacing: -0.03em;
}

.footer-subscribe-form {
    position: relative;
    display: block;
    width: 100%;
}

.footer-email {
    width: 100%;
    height: 3vw;
    /* ~60px */
    padding: 0 3.6458vw 0 1.25vw;
    border: 3px solid var(--light-white);
    border-radius: 0;
    background: transparent;
    color: var(--white);
    font-family: var(--font-family-1);
    font-size: var(--text-18);
    font-weight: 400;
    line-height: 150%;
    letter-spacing: -0.02em;
    outline: none;
    transition: border-color 0.2s ease;
}

.footer-email::placeholder {
    color: #8D8D8D;
    font-family: var(--font-family-1);
}

.footer-email:focus {
    border-color: var(--white);
}

.wpcf7-spinner,
.wpcf7-response-output {
    display: none !important;
}

.footer-subscribe input[type="submit"].wpcf7-submit,
.footer-submit {
    top: 1.2361vw !important;
}

.footer-subscribe .wpcf7-form p {
    margin-bottom: 0 !important;
}

.footer-submit {
    position: absolute;
    top: 50%;
    right: 1.25vw;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.footer-subscribe .footer-subscribe-form-wrap {
    display: block;
}

.footer-submit:hover {
    opacity: 0.75;
}

.footer-submit img {
    display: block;
    width: 1.5104vw;
    height: auto;
}

/* Atelier panel */
.footer-aside {
    text-align: right;
}

.footer-atelier-title {
    margin: 0 0 0.2125vw;
    color: var(--white);
    font-family: var(--font-family-1);
    font-size: var(--text-20);
    font-weight: 700;
    line-height: 150%;
    text-transform: uppercase;
}

.footer-atelier-text {
    margin: 0;
    color: var(--light-white);
    font-family: var(--font-family-1);
    font-size: var(--text-20);
    font-weight: 400;
    line-height: 150%;

}

.footer-social {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 0.8333vw;
    margin: 0.5625vw 0 0;
    padding: 0;
    list-style: none;
}

.footer-social a {
    display: inline-flex;
    line-height: 0;
    transition: opacity 0.2s ease;
}

.footer-social a:hover,
.footer-social a:focus-visible {
    opacity: 0.75;
}

.footer-social img {
    display: block;
    width: 1.875vw;
    /* ~36px */
    height: auto;
}

/* Bottom bar */
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25vw;
    margin-top: 4.1667vw;
}

.footer-copy {
    margin: 0;
    color: #DDDCD0;
    font-family: var(--font-family-3);
    font-size: var(--text-16);
    font-weight: 400;
    line-height: 150%;
    letter-spacing: 0;
}

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2.0833vw;
}

.footer-legal a {
    color: #DDDCD0;
    font-family: var(--font-family-3);
    font-size: var(--text-16);
    font-weight: 400;
    line-height: 150%;
    letter-spacing: 0;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-legal a:hover,
.footer-legal a:focus-visible {
    color: var(--white);
}

/* ─── Footer Responsive ──────────────────────────────────────────── */

/* Tablet (768px – 991px) */
@media (max-width: 991.5px) {
    .footer-inner {
        padding-top: 56px;
        padding-bottom: 28px;
    }

    .footer-main {
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
    }

    .footer-brand {
        flex: none;
        width: auto;
    }

    .footer-logo img {
        width: 200px;
    }

    .footer-nav {
        justify-content: flex-start;
        gap: 10px 20px;
    }

    .footer-panels {
        flex-direction: column;
        gap: 36px;
        margin-top: 28px;
        width: 100%;
    }

    .footer-subscribe {
        max-width: 100%;
        width: 100%;
    }

    .footer-subscribe-title {
        margin-bottom: 14px;
    }

    .footer-email {
        height: 52px;
        padding: 0 56px 0 16px;
        font-size: 16px;
    }

    .footer-submit {
        right: 14px;
        top: 20px !important;
    }

    .footer-submit img {
        width: 26px;
    }

    .footer-aside {
        flex: none;
        max-width: 100%;
        width: 100%;
    }

    .footer-social {
        margin-top: 16px;
        gap: 12px;
        justify-content: flex-start;
    }

    .footer-social img {
        width: 36px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        margin-top: 40px;
    }

    .footer-legal {
        gap: 20px;
    }

    .footer-subscribe input[type="submit"].wpcf7-submit {
        right: 16px !important;
        top: 24px !important;
    }

}

/* Mobile (≤767px) */
@media (max-width: 767px) {
    .footer-inner {
        padding-top: 40px;
        padding-bottom: 20px;
        width: 100%;
        max-width: 100%;
    }

    .footer-main {
        flex-direction: column;
        gap: 28px;
        width: 100%;
    }

    .footer-brand {
        flex: none;
        width: auto;
        max-width: 100%;
    }

    .footer-logo,
    .footer-logo img {
        width: 160px;
        max-width: 100%;
    }

    .footer-content {
        width: 100%;
        max-width: 100%;
        padding-top: 0;
    }

    .footer-nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .footer-panels {
        flex-direction: column;
        margin-top: 24px;
        gap: 24px;
        width: 100%;
    }

    .footer-subscribe,
    .footer-aside {
        flex: none;
        width: 100%;
        max-width: 100%;
        text-align: start;
    }

    .footer-subscribe-title {
        margin-bottom: 12px;
    }

    .footer-email {
        height: 48px;
        padding: 0 48px 0 14px;
        font-size: 15px;
    }

    .footer-submit {
        right: 12px;
        top: 18px !important;
    }


    .footer-social img {
        width: 32px;
    }

    .footer-bottom {
        margin-top: 32px;
        gap: 10px;
        width: 100%;
    }

    .footer-legal {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: flex-start;
        gap: 12px 18px;
    }
}

/* ─────────────────────────────────────────────────────────────────
   Our Promise Section
──────────────────────────────────────────────────────────────────── */
.our-promise-section {
    position: relative;
    background: rgba(223, 219, 202, 0.55);
    padding-top: var(--spacing-120);
    padding-bottom: var(--spacing-120);
    overflow: hidden;
}

.our-promise-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

/* Shared little-heading label */
.section-label {
    margin: 0 0 2.1333vw;
    font-family: var(--font-family-1);
    font-size: var(--text-18);
    font-weight: 700;
    line-height: 150%;
    color: var(--light-red);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    text-align: center;
}

.promise-heading {
    margin: 0 0 3.5833vw;
    font-family: var(--font-family-2);
    font-size: var(--text-50);
    font-weight: 400;
    line-height: 1;
    color: var(--black);
    text-transform: uppercase;
    text-align: center;
}

.promise-image-wrap {
    width: 100%;
    margin: 0 auto 3.5833vw;
    overflow: hidden;
}

.promise-image-wrap img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.promise-para {
    margin: 0 0 2.0833vw;
    font-family: var(--font-family-1);
    font-size: var(--text-18);
    font-weight: 400;
    line-height: 150%;
    color: var(--black);
    text-align: center;
    max-width: 36vw;
}

/* Outline CTA — Our Philosophy style (transparent + saffron stroke, fill on hover) */
.btn-promise,
.btn-hero,
.btn-form {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.0417vw;
    border: 3px solid var(--light-red);
    border-radius: 5px;
    background: transparent;
    color: var(--green);
    font-family: var(--font-family-1);
    font-weight: 700;
    line-height: 150%;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: background 0.35s ease, color 0.35s ease, border-color 0.35s ease;
}

.btn-promise {
    width: 16.6667vw;
    height: 3.0208vw;
    padding: 0 1.0417vw;
    font-size: var(--text-16);
    z-index: 1;
}

.btn-promise img,
.btn-hero img,
.btn-form img {
    display: block;
    width: 1.7188vw;
    height: auto;
    flex: none;
    transition: filter 0.35s ease, transform 0.35s ease;
}

.btn-promise:hover,
.btn-promise:focus-visible,
.btn-hero:hover,
.btn-hero:focus-visible,
.btn-form:hover,
.btn-form:focus-visible {
    background: var(--light-red);
    border-color: var(--light-red);
    color: var(--white);
    font-weight: 700;
}

.btn-promise:hover img,
.btn-promise:focus-visible img,
.btn-hero:hover img,
.btn-hero:focus-visible img,
.btn-form:hover img,
.btn-form:focus-visible img {
    filter: brightness(0) invert(1);
    transform: translateX(3px);
}

/* Decorative border lines flanking the button */
.promise-borders {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    width: 100%;
    pointer-events: none;
    position: absolute;
    bottom: 0;
    left: 0;
    /* Will be repositioned via JS / or just placed below button with margin */
    display: none;
    /* use as visual separator lines instead */
}

/* ─────────────────────────────────────────────────────────────────
   What We Do Section
   Content area @ 1920: 85.4167vw (after 7.2917vw side padding)
   Left 49.4792vw (~950px) | gap 4.1667vw (~80px) | Right 31.7708vw (~610px)
──────────────────────────────────────────────────────────────────── */
.what-we-do-section {
    background: rgba(223, 219, 202, 0.55);
    padding-top: 0;
    padding-bottom: var(--spacing-120);
}

.wwd-inner {
    display: grid;
    /* fr tracks stay inside the container — vw tracks overflow padded parents */
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
    column-gap: 5vw;
    justify-content: space-between;
    align-items: start;
    width: 100%;
    max-width: 100%;
    min-width: 0;
}

/* Left column */
.wwd-label {
    text-align: left;
}

.wwd-heading {
    margin: 0 0 1.85625vw;
    font-family: var(--font-family-2);
    font-size: var(--text-50);
    font-weight: 400;
    line-height: 1;
    color: var(--black);
    text-transform: uppercase;
}

.wwd-para {
    margin: 0 0 5.6042vw;
    font-family: var(--font-family-1);
    font-size: var(--text-18);
    font-weight: 400;
    line-height: 150%;
    color: var(--black2);
    max-width: 50vw;
}

/* List */
.wwd-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.wwd-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5vw;
    padding: 1vw 0 0.5vw 0;
    border-bottom: 1.5px solid var(--black);
    cursor: pointer;
    text-decoration: none;
    transition: border-color 0.3s ease;
}

.wwd-item:hover,
.wwd-item:focus-visible,
.wwd-item.active {
    border-bottom-color: var(--light-red);
    color: var(--light-red);
    font-weight: 700;
}


.wwd-num {
    font-family: var(--font-family-1);
    font-size: var(--text-32);
    font-weight: 700;
    line-height: 130%;
    color: var(--light-red);
    flex: none;

}

.wwd-name {
    font-family: var(--font-family-1);
    font-size: var(--text-24);
    font-weight: 400;
    line-height: 150%;
    color: var(--black2);
    flex: 1;
}

.wwd-arrow {
    display: block;
    width: 1.4583vw;
    height: auto;
    flex: none;
    margin-left: auto;
}

.wwd-num,
.wwd-name,
.wwd-arrow {
    opacity: 0.95;
    transition: opacity 0.3s ease, transform 0.3s ease, color 0.3s ease;
}

.wwd-item:hover,
.wwd-item:focus-visible,
.wwd-item.active {
    border-bottom-color: var(--light-red);
}

.wwd-item:hover .wwd-num,
.wwd-item:hover .wwd-name,
.wwd-item:focus-visible .wwd-num,
.wwd-item:focus-visible .wwd-name,
.wwd-item.active .wwd-num,
.wwd-item.active .wwd-name {
    opacity: 1;
    color: var(--light-red);
}

.wwd-item:hover .wwd-arrow,
.wwd-item:focus-visible .wwd-arrow,
.wwd-item.active .wwd-arrow {
    opacity: 1;
    transform: translateX(4px);
}

/* Right column – Swiper
   Fade slides are position:absolute, so the swiper MUST have an explicit height
   or the column collapses and images appear missing. */
.wwd-left,
.wwd-right {
    min-width: 0;
    max-width: 100%;
}

.wwd-right {
    width: 100%;
    justify-self: end;
}

.wwd-swiper {
    width: 100%;
    height: 51.5625vw;
    border-radius: 8px;
    overflow: hidden;
    background: #c4b8a5;
    /* soft placeholder while image loads */
}

.wwd-swiper .swiper-wrapper,
.wwd-swiper .swiper-slide {
    width: 100%;
    height: 100%;
}

.wwd-swiper .swiper-slide {
    line-height: 0;
}

.wwd-swiper .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Pagination sits under the image (outside the clipped swiper) */
.wwd-pagination {
    position: relative !important;
    bottom: auto !important;
    left: auto !important;
    width: 100% !important;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5208vw;
    margin-top: 2vw;
}

.wwd-pagination .swiper-pagination-bullet {
    width: 0.6250vw;
    height: 0.6250vw;
    margin: 0 !important;
    background: #5B603D1C;
    opacity: 1;
    border-radius: 50%;
    transition: background 0.3s ease;
}
.swiper-pagination-bullet {
    width: 10px !important;
    height: 10px !important;
    min-width: 10px !important;
    min-height: 10px !important;
   
    background: #000000 !important;
    opacity: 0.25 !important;
    border-radius: 50% !important;
    transition: all 0.3s ease !important;
    display: inline-block !important;
    cursor: pointer !important;
}
.wwd-pagination .swiper-pagination-bullet-active,.swiper-pagination-bullet-active {
    background: #000000 !important;
    opacity: 1 !important;
    transform: scale(1.25) !important;
}


/* ─── Responsive: Our Promise ────────────────────────────── */
@media (max-width: 991.5px) {
    .our-promise-section {
        padding-top: 40px;
        padding-bottom: 30px;
    }

    .section-label {
        margin-bottom: 10px;
    }

    .promise-heading {
        margin-bottom: 24px;
    }

    .promise-image-wrap {
        max-width: 100%;
        margin-bottom: 24px;
    }

    .promise-para {
        margin-bottom: 24px;
        max-width: none;
        padding: 0 8px;
    }

    .btn-promise {
        width: 280px;
        height: 52px;
        gap: 12px;
        padding: 0 16px;
        font-size: 14px;
    }

    .btn-promise img {
        width: 28px;
    }
}

@media (max-width: 767px) {
    .our-promise-section {
        padding-top: 32px;
        padding-bottom: 34px;
    }

    .btn-promise {
        width: 100%;
        max-width: 280px;
        height: 48px;
        gap: 10px;
        padding: 0 14px;
        font-size: 13px;
    }

    .btn-promise img {
        width: 24px;
    }

    .promise-para br {
        display: none;
    }
}

/* ─── Responsive: What We Do ────────────────────────────── */
@media (max-width: 1200px) {
    .wwd-inner {
        grid-template-columns: 1.2fr 0.8fr;
        column-gap: 32px;
    }

    .wwd-right {
        max-width: none;
    }

    .wwd-swiper {
        height: min(520px, 48vw);
        border-radius: 16px;
    }
}

@media (max-width: 991.5px) {
    .what-we-do-section {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .wwd-inner {
        grid-template-columns: 1fr;
        column-gap: 0;
        row-gap: 40px;
    }

    .wwd-heading {
        margin-bottom: 16px;
    }

    .wwd-right {
        max-width: 480px;
        width: 100%;
        justify-self: center;
    }

    .wwd-swiper {
        height: auto;
        aspect-ratio: 4 / 5;
        border-radius: 16px;
        background: transparent;
    }

    .wwd-swiper .swiper-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 16px;
    }

    .wwd-item {
        gap: 16px;
        padding: 16px 0;
    }

    .wwd-arrow {
        width: 28px;
    }

    .wwd-para {
        margin-bottom: 32px;
        max-width: none;
    }

    .wwd-pagination {
        gap: 8px;
        margin-top: 16px;
    }

    .wwd-pagination .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
    }
}

@media (max-width: 767px) {
    .what-we-do-section {
        padding-top: 64px;
        padding-bottom: 64px;
        overflow-x: hidden;
    }

    .wwd-inner {
        grid-template-columns: minmax(0, 1fr);
        column-gap: 0;
        row-gap: 28px;
        width: 100%;
    }

    .wwd-left {
        width: 100%;
        max-width: 100%;
        justify-self: stretch;
    }

    /* Full-bleed slider — break out of container-fluid side padding */
    .wwd-right {
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
        justify-self: stretch;
    }

    /* Height follows image — no leftover beige gap under landscape slides */
    .wwd-swiper {
        width: 100%;
        height: auto !important;
        min-height: 0;
        border-radius: 16px;
        background: transparent;
        overflow: hidden;
    }

    .wwd-swiper .swiper-wrapper {
        height: auto !important;
        align-items: flex-start;
    }

    .wwd-swiper .swiper-slide {
        height: auto !important;
    }

    .wwd-swiper .swiper-slide img {
        display: block;
        width: 100%;
        height: auto;
        max-height: none;
        object-fit: cover;
        object-position: center;
        border-radius: 16px;
        aspect-ratio: 4 / 5;
    }

    .wwd-item {
        gap: 12px;
        padding: 14px 0;
    }

    .wwd-name {
        min-width: 0;
        overflow-wrap: break-word;
    }

    .wwd-arrow {
        width: 22px;
        min-width: 22px;
    }

    .wwd-pagination {
        margin-top: 12px;
        padding: 0 20px;
    }
}

/* ─────────────────────────────────────────────────────────────────
   Testimonials Section
──────────────────────────────────────────────────────────────────── */
.testimonials-section {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding-top: var(--spacing-120);
    padding-bottom: var(--spacing-120);
    background-color: var(--green);
    background-image: url("../images/testimonial/section-bg.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.testimonials-section::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background: #5B603DE8;
    pointer-events: none;
}

.tm-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.tm-label {
    color: var(--light-white);
}

.tm-heading {
    margin: 0 0 1.0417vw;
    font-family: var(--font-family-2);
    font-size: var(--text-50);
    font-weight: 400;
    line-height: 1;
    color: var(--light-white);
    text-transform: uppercase;
}

.tm-intro {
    margin: 0 0 1.9458vw;
    font-family: var(--font-family-1);
    font-size: var(--text-18);
    font-weight: 400;
    line-height: 150%;
    color: var(--light-white);
}

.tm-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5625vw;
    justify-content: center;
    width: 100%;
    max-width: min(100%, 72.9167vw);
}

/* Testimonials Swiper — lock height so loop/clones can't grow the section */
.testimonials-swiper {
    width: 100%;
    max-width: min(100%, 72.9167vw);
    margin: 0 auto;
    overflow: hidden;
}

.testimonials-swiper .swiper-wrapper {
    align-items: stretch;
    box-sizing: border-box;
}

.testimonials-swiper .swiper-slide {
    height: auto;
    box-sizing: border-box;
}

.testimonials-pagination {
    position: relative;
    margin-top: 1.5625vw;
    bottom: auto !important;
}

.tm-card {
    position: relative;
    display: flex;
    width: 100%;
    height: 100%;
    min-height: 27.0833vw; /* ~520px at 1920 */
    overflow: hidden;
}

.tm-card-bg {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: screen;
    pointer-events: none;
    user-select: none;
}

.tm-card-body {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    min-height: inherit;
    box-sizing: border-box;
    padding: 3.125vw 3.6458vw;
    text-align: center;
}

.tm-quote {
    display: block;
    width: 2.5521vw;
    /* ~49px */
    height: auto;
    margin-bottom: 1.0417vw;
}

.tm-text {
    margin: 0;
    max-width: 100%;
    font-family: var(--font-family-1);
    font-size: var(--text-20);
    font-weight: 400;
    font-style: italic;
    line-height: 150%;
    color: var(--black);
}

.tm-line {
    display: block;
    width: 3.6979vw;
    height: 3px;
    margin: 1.4583vw 0;
    background: #934925;
    flex: none;
}

.tm-author {
    margin: 0;
    font-family: var(--font-family-1);
    font-size: var(--text-20);
    font-weight: 700;
    line-height: 130%;
    color: var(--black);
    text-transform: uppercase;
}

.tm-role {
    margin: 0.2083vw 0 0;
    font-family: var(--font-family-1);
    font-size: var(--text-20);
    font-weight: 400;
    line-height: 130%;
    color: var(--black);
}

@media (max-width: 991.5px) {
    .testimonials-section {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .tm-heading {
        margin-bottom: 12px;
    }

    .tm-intro {
        margin-bottom: 36px;
        padding: 0 8px;
    }

    .tm-grid {
        grid-template-columns: 1fr;
        gap: 28px;
        max-width: 560px;
        margin: 0 auto;
    }

    .testimonials-swiper {
        max-width: 560px;
    }

    .tm-card {
        min-height: 420px;
    }

    .tm-card-body {
        padding: 40px 36px;
    }

    .tm-quote {
        width: 40px;
        margin-bottom: 14px;
    }

    .tm-line {
        width: 56px;
        margin: 20px 0;
    }

    .tm-role {
        margin-top: 4px;
    }

    .testimonials-pagination {
        margin-top: 18px;
    }
}

@media (max-width: 767px) {
    .testimonials-section {
        padding-top: 64px;
        padding-bottom: 64px;
    }

    .tm-intro {
        margin-bottom: 28px;
    }

    .tm-grid {
        max-width: 100%;
        gap: 20px;
    }

    .testimonials-swiper {
        max-width: 100%;
    }

    .tm-card {
        min-height: 380px;
    }

    .tm-card-body {
        padding: 40px 24px;
    }

    .tm-quote {
        width: 34px;
        margin-bottom: 12px;
    }

    .tm-text {
        max-width: none;
    }

    .tm-line {
        width: 48px;
        margin: 16px 0;
    }
}

/* ─────────────────────────────────────────────────────────────────
   Partners Section
──────────────────────────────────────────────────────────────────── */
.partners-section {
    background: #F0EEE6;
    padding-top: var(--spacing-120);
    padding-bottom: var(--spacing-120);
    overflow: hidden;
}

.partners-inner {
    width: 100%;
}

.partners-swiper {
    width: 100%;
    overflow: hidden;
}

.partners-swiper .swiper-wrapper {
    transition-timing-function: linear !important;
    align-items: center;
    will-change: transform;
    backface-visibility: hidden;
}

.partners-swiper .swiper-slide {
    width: auto !important;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 5.2083vw;
    flex-shrink: 0;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.partners-swiper .swiper-slide img {
    display: block;
    width: auto;
    height: 4.1667vw;
    /* ~80px */
    max-width: 11.4583vw;
    /* ~220px */
    object-fit: contain;
}

/* ─────────────────────────────────────────────────────────────────
   Contact Form Section
──────────────────────────────────────────────────────────────────── */
.form-section {
    background: #F0EEE6;
    padding-top: 0;
    padding-bottom: var(--spacing-120);
}

.form-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5.2083vw;
    align-items: start;
}

.form-heading {
    margin: 0 0 1.5625vw;
    font-family: var(--font-family-2);
    font-size: var(--text-50);
    font-weight: 400;
    line-height: 1;
    color: var(--black);
    text-transform: uppercase;
}

.form-para {
    margin: 0;
    max-width: 50vw;
    font-family: var(--font-family-1);
    font-size: var(--text-18);
    font-weight: 400;
    line-height: 150%;
    color: var(--black2);
}

.form-right {
    width: 100%;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.0833vw;
}

.form-field {
    display: flex;
    flex-direction: column;
    margin-bottom: 2.0833vw;
}

.form-field-full {
    margin-bottom: 2.6042vw;
}

.form-label {
    margin: 0 0 0.292vw;
    font-family: var(--font-family-1);
    font-size: var(--text-24);
    font-weight: 700;
    line-height: 150%;
    color: var(--black);
    text-transform: uppercase;
}

.form-input {
    width: 100%;
    height: 2.6042vw;
    min-height: 36px;
    padding: 0 0 0.5208vw;
    border: 0;
    border-bottom: 1px solid #8D8D8D;
    border-radius: 0;
    background: transparent;
    color: var(--black);
    font-family: var(--font-family-1);
    font-size: var(--text-18);
    font-weight: 400;
    line-height: 150%;
    outline: none;
}

.form-input:focus {
    border-bottom-color: var(--black);
}

.btn-form {
    width: 23.4375vw;
    height: 3.6458vw;
    padding: 0 1.25vw;
    font-size: var(--text-20);
    gap: 0.8333vw;
}

.btn-form img {
    width: 1.5104vw;
}

@media (max-width: 991.5px) {
    .partners-section {
        padding-top: 60px;
        padding-bottom: 40px;
    }

    .partners-swiper .swiper-slide {
        height: 72px;
    }

    .partners-swiper .swiper-slide img {
        height: 56px;
        max-width: 160px;
    }

    .form-section {
        padding-top: 40px;
        padding-bottom: 80px;
    }

    .form-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .form-heading {
        margin-bottom: 16px;
    }

    .form-para {
        max-width: none;
    }

    .form-row {
        gap: 24px;
    }

    .form-field {
        margin-bottom: 28px;
    }

    .form-field-full {
        margin-bottom: 32px;
    }

    .form-label {
        margin-bottom: 10px;
        font-size: 18px;
    }

    .form-input {
        height: 44px;
        padding-bottom: 8px;
        font-size: 16px;
    }

    .btn-form {
        width: 100%;
        max-width: 360px;
        height: 56px;
        gap: 12px;
        font-size: 16px;
        padding: 0 16px;
    }

    .btn-form img {
        width: 24px;
    }
}

@media (max-width: 767px) {
    .partners-section {
        padding-top: 48px;
        padding-bottom: 32px;
    }

    .partners-swiper .swiper-slide {
        height: 56px;
    }

    .partners-swiper .swiper-slide img {
        height: 44px;
        max-width: 130px;
    }

    .form-section {
        padding-top: 24px;
        padding-bottom: 64px;
    }

    .form-inner {
        gap: 32px;
    }

    .form-heading {
        margin-bottom: 14px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .form-field {
        margin-bottom: 24px;
    }

    .form-field-full {
        margin-bottom: 28px;
    }

    .form-label {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .form-input {
        height: 42px;
        font-size: 15px;
    }

    .btn-form {
        max-width: 100%;
        height: 52px;
        font-size: 14px;
        gap: 10px;
        white-space: normal;
        text-align: center;
        line-height: 1.2;
    }

    .btn-form img {
        width: 22px;
    }
}

/* ─────────────────────────────────────────────────────────────────
   iPad / tablet landscape (992px – 1199px)
   Desktop vw layouts are too tight here — use stacked px layouts.
──────────────────────────────────────────────────────────────────── */
@media (min-width: 992px) and (max-width: 1199.98px) {
    body {
        --header-h: 80px;
    }

    .header-menu,
    .btn-contact {
        display: none;
    }

    .menu-toggle {
        display: inline-flex;
        margin-left: auto;
    }

    .header-wrap .navbar-brand img {
        width: 130px;
    }

    .container,
    .container-fluid {
        padding-left: 40px;
        padding-right: 40px;
    }

    .hero-banner {
        min-height: 100svh;
        margin-top: calc(var(--header-h) * -1);
        align-items: flex-end;
    }

    .hero-image {
        object-position: center center;
    }

    .hero-content {
        padding-top: calc(var(--header-h) + 48px);
        padding-bottom: 72px;
    }

    .hero-text {
        margin: 18px 0 28px;
        max-width: 560px;
    }

    .hero-banner .btn-promise,
    .btn-promise {
        width: auto;
        height: 54px;
        gap: 12px;
        padding: 0 18px;
        font-size: 14px;
    }

    .hero-banner .btn-promise img,
    .btn-promise img {
        width: 28px;
    }

    .our-promise-section {
        padding-top: 48px;
        padding-bottom: 90px;
    }

    .promise-image-wrap {
        max-width: 100%;
    }

    .promise-para {
        max-width: 50vw;
    }

    .what-we-do-section {
        padding-top: 90px;
        padding-bottom: 90px;
    }

    .wwd-inner {
        grid-template-columns: 1fr 0.9fr;
        column-gap: 36px;
        align-items: start;
    }

    .wwd-right {
        max-width: none;
        justify-self: stretch;
    }

    .wwd-swiper {
        height: 520px;
        border-radius: 16px 16px 0 0;
    }

    .wwd-para {
        max-width: none;
        margin-bottom: 36px;
    }

    .wwd-item {
        gap: 14px;
        padding: 14px 0;
    }

    .wwd-arrow {
        width: 26px;
    }

    .testimonials-section {
        padding-top: 90px;
        padding-bottom: 90px;
    }

    .tm-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px;
        max-width: 900px;
    }

    .testimonials-swiper {
        max-width: 900px;
    }

    .tm-card {
        min-height: 440px;
    }

    .tm-card-body {
        padding: 40px 28px;
    }

    .tm-quote {
        width: 42px;
    }

    .tm-line {
        width: 56px;
        margin: 18px 0;
    }

    .partners-section {
        padding-top: 70px;
        padding-bottom: 40px;
    }

    .partners-swiper .swiper-slide {
        height: 72px;
    }

    .partners-swiper .swiper-slide img {
        height: 56px;
        max-width: 160px;
    }

    .form-section {
        padding-top: 40px;
        padding-bottom: 90px;
    }

    .form-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .form-para {
        max-width: 50vw;
    }

    .form-row {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }

    .form-label {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .form-input {
        height: 48px;
        font-size: 16px;
    }

    .btn-form {
        width: 340px;
        height: 56px;
        font-size: 16px;
        gap: 12px;
    }

    .btn-form img {
        width: 24px;
    }

    .footer-inner {
        padding-top: 64px;
        padding-bottom: 28px;
    }

    .footer-main {
        flex-direction: column;
        gap: 40px;
    }

    .footer-brand {
        flex: none;
        width: auto;
    }

    .footer-logo img {
        width: 220px;
    }

    .footer-content {
        padding-top: 0;
        width: 100%;
    }

    .footer-nav {
        gap: 12px 24px;
    }

    .footer-panels {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 32px 40px;
        margin-top: 28px;
    }

    .footer-subscribe {
        flex: 1 1 320px;
        max-width: 420px;
    }

    .footer-email {
        height: 52px;
        padding: 0 56px 0 16px;
        font-size: 16px;
    }

    .footer-submit {
        right: 14px;
    }

    .footer-submit img {
        width: 26px;
    }

    .footer-aside {
        flex: 1 1 260px;
        max-width: 360px;
    }

    .footer-social img {
        width: 36px;
    }

    .footer-bottom {
        margin-top: 40px;
    }
}

/* Extra-small phones */
@media (max-width: 480px) {

    .container,
    .container-fluid {
        padding-left: 16px;
        padding-right: 16px;
    }

    .hero-title {
        font-size: 34px;
    }

    .hero-banner .btn-promise,
    .btn-promise {
        max-width: 100%;
        width: auto;
        height: 48px;

        letter-spacing: 0;
    }

    .promise-heading,
    .wwd-heading,
    .tm-heading,
    .form-heading {
        font-size: 26px;
    }

    .wwd-name {
        font-size: 15px;
    }

    .wwd-num {
        font-size: 18px;
        min-width: 1.8em;
    }

    .wwd-swiper {
        height: auto !important;
        border-radius: 14px;
        background: transparent;
    }

    .wwd-swiper .swiper-slide img {
        border-radius: 14px;
        aspect-ratio: 4 / 5;
        object-fit: cover;
        height: auto;
    }

    .tm-card-body {
        padding: 49px 25px;
    }

    .tm-text {
        font-size: 14px;
    }

    .tm-author,
    .tm-role {
        font-size: 14px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .btn-form {
        width: 100%;
        font-size: 13px;
        padding: 0 12px;
    }

    .footer-logo img {
        width: 140px;
    }

    .footer-nav {
        gap: 10px;
    }
}

/* ==========================================================================
   Detail page banner
   ========================================================================== */

.detail-banner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(50vw - var(--header-h));
    overflow: hidden;
}

.detail-banner-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.detail-banner-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: rgba(56, 62, 25, 0.6);
}

.detail-banner-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    padding-top: var(--spacing-100);
    padding-bottom: var(--spacing-100);
    text-align: center;
}

.detail-banner-eyebrow {
    margin: 0 0 1.4417vw;
    color: var(--white);
    font-family: var(--font-family-1);
    font-size: var(--text-18);
    font-weight: 700;
    line-height: 150%;

    text-transform: uppercase;
}

.detail-banner-title {
    margin: 0;
    max-width: 60vw;
    color: var(--white);
    font-family: var(--font-family-2);
    font-size: var(--text-65);
    font-weight: 400;
    line-height: 1;
    text-transform: uppercase;
}

/* Compact detail hero (eyebrow + title only) */


.detail-banner-text {
    margin: 1.5625vw auto 3.0833vw;
    max-width: 65.0833vw;
    color: var(--white);
    font-family: var(--font-family-1);
    font-size: var(--text-20);
    font-weight: 500;
    line-height: 150%;
}

/* Dark-surface CTA — same outline treatment, light stroke/text */
.detail-banner .btn-promise.detail-banner-btn,
.discover-section .btn-promise.discover-btn {
    border-color: var(--white);
    background: transparent;
    color: var(--white);
}

.detail-banner .btn-promise.detail-banner-btn img,
.discover-section .btn-promise.discover-btn img {
    filter: brightness(0) invert(1);
}

.detail-banner .btn-promise.detail-banner-btn:hover,
.detail-banner .btn-promise.detail-banner-btn:focus-visible,
.discover-section .btn-promise.discover-btn:hover,
.discover-section .btn-promise.discover-btn:focus-visible {
    background: var(--light-red);
    border-color: var(--white);
    color: var(--white);
}

.detail-banner .btn-promise.detail-banner-btn:hover img,
.detail-banner .btn-promise.detail-banner-btn:focus-visible img,
.discover-section .btn-promise.discover-btn:hover img,
.discover-section .btn-promise.discover-btn:focus-visible img {
    filter: brightness(0) invert(1);
    transform: translateX(3px);
}

.detail-banner .btn-promise.detail-banner-btn {
    gap: 0.8333vw;
    margin-top: 0;
}

/* FAQ / Projects still-have CTA — saffron stroke, black text, red arrow */
.still-have .btn-promise,
.still-have .btn-promise.still-have-btn {
    border-color: var(--light-red);
    background: transparent;
    color: var(--black);
}

.still-have .btn-promise img,
.still-have .btn-promise.still-have-btn img {
    filter: none;
}

.still-have .btn-promise:hover,
.still-have .btn-promise:focus-visible,
.still-have .btn-promise.still-have-btn:hover,
.still-have .btn-promise.still-have-btn:focus-visible {
    background: var(--light-red);
    border-color: var(--light-red);
    color: var(--white);
}

.still-have .btn-promise:hover img,
.still-have .btn-promise:focus-visible img,
.still-have .btn-promise.still-have-btn:hover img,
.still-have .btn-promise.still-have-btn:focus-visible img {
    filter: brightness(0) invert(1);
    transform: translateX(3px);
}

@media (min-width: 992px) and (max-width: 1200px) {
    .detail-banner {
        min-height: calc(42vw - var(--header-h));
    }


    .detail-banner-title {
        max-width: 70%;
    }

    .detail-banner-text {
        max-width: 62%;
        margin-top: 20px;
        margin-bottom: 28px;
    }
}

@media (min-width: 768px) and (max-width: 991.5px) {
    .detail-banner {
        min-height: 420px;
    }

    .detail-banner-title {
        max-width: 90%;
    }

    .detail-banner--simple .detail-banner-title {
        font-size: 40px;
    }

    .detail-banner-text {
        max-width: 85%;
        margin: 18px auto 24px;
    }

    .detail-banner .btn-promise.detail-banner-btn {
        width: 280px;
        height: 52px;
        gap: 12px;
    }

    .detail-banner .btn-promise.detail-banner-btn img {
        width: 28px;
    }
}

@media (max-width: 767px) {
    .detail-banner {
        min-height: min(72svh, 520px);
        align-items: center;
    }


    .detail-banner-content {
        padding-top: 48px;
        padding-bottom: 48px;
    }

    .detail-banner-eyebrow {
        margin-bottom: 12px;
        font-size: 12px;
        letter-spacing: 0.1em;
    }

    .detail-banner-title {
        max-width: 100%;
        font-size: 28px;
    }

    .detail-banner-text {
        max-width: 100%;
        margin: 16px auto 24px;
        font-size: 14px;
    }

    .detail-banner .btn-promise.detail-banner-btn {
        width: auto;
        max-width: 100%;
        height: 48px;
        gap: 10px;
    }

    .detail-banner .btn-promise.detail-banner-btn img {
        width: 22px;
    }
}

@media (max-width: 480px) {
    .detail-banner {
        min-height: min(68svh, 480px);
    }

}

/* ==========================================================================
   FAQ accordion
   ========================================================================== */

.faq-section {
    padding-top: var(--spacing-100);
    padding-bottom: var(--spacing-100);
}

.faq-list {
    width: 87%;
    margin: 0 auto;
}

.faq-item {
    border-top: 1.5px solid var(--black);
}

.faq-item:first-child {
    border-top: 0;
}

.faq-item:last-child {
    border-bottom: 1.5px solid var(--black);
}

.faq-item-heading {
    margin: 0;
    font-size: inherit;
    font-weight: inherit;
}

.faq-trigger {
    display: grid;
    grid-template-columns: 3.125vw minmax(0, 1fr) 1.25vw;
    column-gap: 1.5625vw;
    align-items: center;
    width: 100%;
    margin: 0;
    padding: 1.5229vw 0;
    border: 0;
    background: transparent;
    color: inherit;
    text-align: left;
    cursor: pointer;
}

.faq-trigger:focus-visible {
    outline: 2px solid var(--light-red);
    outline-offset: 4px;
}

.faq-num {
    color: var(--light-red);
    font-family: var(--font-family-1);
    font-size: var(--text-32);
    font-weight: 700;
    line-height: 130%;
}

.faq-question {
    color: var(--black2);
    font-family: var(--font-family-1);
    font-size: var(--text-24);
    font-weight: 700;
    line-height: 130%;
}

.faq-icon {
    position: relative;
    display: block;
    width: 1.25vw;
    min-width: 16px;
    height: 1.25vw;
    min-height: 16px;
    flex: none;
}

.faq-icon img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0.8333vw;
    min-width: 14px;
    height: auto;
    margin: 0;
    transform: translate(-50%, -50%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.faq-item:not(.is-open) .faq-icon-plus,
.faq-item.is-open .faq-icon-minus {
    opacity: 1;
    visibility: visible;
}

.faq-item:not(.is-open) .faq-icon-minus,
.faq-item.is-open .faq-icon-plus {
    opacity: 0;
    visibility: hidden;
}

.faq-panel {
    display: none;
    overflow: hidden;
}

.faq-answer {
    margin: 0;
    max-width: 75.0833vw;
    padding: 0 2.5vw 1.8229vw 4.6875vw;
    color: var(--black2);
    font-family: var(--font-family-1);
    font-size: var(--text-20);
    font-weight: 400;
    line-height: 130%;
}

/* ==========================================================================
   Still have a question (common detail-page CTA)
   ========================================================================== */

.still-have {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 18.4375vw;
    margin-top: var(--spacing-100);
    overflow: hidden;
    border-radius: 0.625vw;
}

.still-have-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.still-have-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 3.125vw 2.0833vw;
    text-align: center;
}

.still-have-title {
    margin: 0 0 1.5625vw;
    color: var(--black);
    font-family: var(--font-family-2);
    font-size: var(--text-50);
    font-weight: 400;
    line-height: 1;
    text-transform: uppercase;
}

.still-have .btn-promise,
.still-have .btn-promise.still-have-btn {
    width: 13.0208vw;
    gap: 0.8333vw;
    margin-top: 0;
    border-width: 3px;
}

@media (min-width: 992px) and (max-width: 1200px) {
    .faq-trigger {
        grid-template-columns: 40px minmax(0, 1fr) 20px;
        column-gap: 20px;
        padding: 22px 0;
    }

    .faq-answer {
        padding: 0 28px 22px 60px;
    }

    .faq-answer {
        max-width: 85%;
    }

    .still-have {
        min-height: 240px;
        border-radius: 10px;
    }

    .still-have-title {
        margin-bottom: 22px;
    }
}

@media (min-width: 768px) and (max-width: 991.5px) {
    .faq-section {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .faq-trigger {
        grid-template-columns: 36px minmax(0, 1fr) 20px;
        column-gap: 16px;
        padding: 20px 0;
    }

    .faq-icon,
    .faq-icon img {
        width: 16px;
        min-width: 16px;
    }

    .faq-answer {
        padding: 0 24px 20px 52px;
    }

    .faq-answer {
        max-width: 100%;
    }

    .still-have {
        min-height: 220px;
        margin-top: 80px;
        border-radius: 10px;
    }

    .still-have-content {
        padding: 40px 28px;
    }

    .still-have-title {
        margin-bottom: 20px;
    }

    .still-have .btn-promise.still-have-btn {
        width: 280px;
        height: 52px;
        gap: 12px;
    }

    .still-have .btn-promise.still-have-btn img {
        width: 28px;
    }
}

@media (max-width: 767px) {
    .faq-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .faq-trigger {
        grid-template-columns: 28px minmax(0, 1fr) 18px;
        column-gap: 12px;
        align-items: flex-start;
        padding: 18px 0;
    }

    .faq-num {
        font-size: 20px;
        line-height: 130%;
        padding-top: 1px;
    }

    .faq-question {
        font-size: 16px;
    }

    .faq-icon {
        width: 18px;
        min-width: 18px;
        height: 18px;
        min-height: 18px;
        margin-top: 2px;
    }

    .faq-icon img {
        width: 14px;
        min-width: 14px;
    }

    .faq-answer {
        padding: 0 0 18px 40px;
    }

    .faq-answer {
        max-width: 100%;
        font-size: 14px;
    }

    .still-have {
        min-height: 200px;
        margin-top: 60px;
        border-radius: 12px;
    }

    .still-have-content {
        padding: 36px 20px;
    }

    .still-have-title {
        margin-bottom: 18px;
        font-size: 28px;
    }

    .still-have .btn-promise.still-have-btn {
        width: auto;

        height: 48px;
        gap: 10px;
    }

    .still-have .btn-promise.still-have-btn img {
        width: 22px;
    }

    .faq-list {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .faq-trigger {
        grid-template-columns: 26px minmax(0, 1fr) 16px;
        column-gap: 10px;
        padding: 16px 0;
    }

    .faq-answer {
        padding: 0 0 16px 36px;
    }

    .still-have {
        min-height: 180px;
        border-radius: 10px;
    }

    .still-have-title {
        font-size: 24px;
    }

    .still-have .btn-promise.still-have-btn {
        max-width: 100%;
    }
}

/* ==========================================================================
   About — What We Stand For
   ========================================================================== */

.stand-for-section {
    padding-top: var(--spacing-100);
    padding-bottom: var(--spacing-60);
}

.stand-for-heading {
    margin: 0 0 2.6042vw;
    color: var(--black);
    font-family: var(--font-family-2);
    font-size: var(--text-50);
    font-weight: 400;
    line-height: 1;
    text-align: center;
    text-transform: uppercase;
}

.stand-for-swiper {
    width: 100%;
    overflow: hidden;
}

.stand-for-card {
    position: relative;
    display: block;
    width: 100%;
    overflow: hidden;
    border-radius: 3px;
}

.stand-for-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.stand-for-chip {
    position: absolute;
    left: 50%;
    bottom: 1.5625vw;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: max-content;
    max-width: calc(100% - 2vw);
    min-height: 2.8125vw;
    padding: 0.5208vw 1.85vw;
    border: 3px solid var(--light-white);
    border-radius: 999px;
    background: var(--light-red);
    color: var(--light-white);
    font-family: var(--font-family-1);
    font-size: var(--text-24);
    font-weight: 600;
    line-height: 130%;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
    transform: translateX(-50%);
    backdrop-filter: blur(2px);
    cursor: default;
    user-select: none;
    pointer-events: none;
}

.stand-for-pagination {
    position: relative !important;
    bottom: auto !important;
    left: auto !important;
    width: 100% !important;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5208vw;
    margin-top: 2vw;
}

.stand-for-pagination .swiper-pagination-bullet {
    width: 0.6250vw;
    height: 0.6250vw;
    margin: 0 !important;
    background: #5B603D1C;
    opacity: 1;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.stand-for-pagination .swiper-pagination-bullet-active {
    background: var(--black);
}

/* ==========================================================================
   About — Discover banner
   ========================================================================== */

.discover-section {
    padding-top: var(--spacing-100);
    padding-bottom: var(--spacing-100);
}

.discover-banner {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 18.75vw;
    overflow: hidden;
    border-radius: 0.625vw;
}

.discover-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
    z-index: 0;
}

.discover-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(90deg, #383E19 0%, rgba(56, 62, 25, 0) 54.24%);
}

.discover-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 42vw;
    padding: 3.125vw 3.6458vw;
}

.discover-heading {
    margin: 0 0 1.8229vw;
    color: var(--light-white);
    font-family: var(--font-family-2);
    font-size: var(--text-50);
    font-weight: 400;
    line-height: 1;
    text-transform: uppercase;
}

.discover-section .btn-promise.discover-btn {
    justify-content: space-between;
    gap: 0.8333vw;
    width: auto;
    min-width: 16.6667vw;
}

@media (min-width: 992px) and (max-width: 1200px) {
    .stand-for-heading {
        margin-bottom: 28px;
    }

    .stand-for-card {
        border-radius: 14px;
    }

    .stand-for-chip {
        bottom: 18px;
        min-height: 40px;
        padding: 8px 16px;
        font-size: 18px;
        white-space: normal;
    }

    .discover-banner {
        min-height: 240px;
        border-radius: 10px;
    }

    .discover-content {
        max-width: 55%;
        padding: 36px 40px;
    }

    .discover-heading {
        margin-bottom: 22px;
    }
}

@media (min-width: 768px) and (max-width: 991.5px) {
    .stand-for-section {
        padding-top: 80px;
        padding-bottom: 40px;
    }

    .stand-for-heading {
        margin-bottom: 28px;
    }

    .stand-for-card {
        border-radius: 14px;
    }

    .stand-for-chip {
        bottom: 16px;
        min-height: 38px;
        padding: 8px 14px;
        font-size: 16px;
        white-space: normal;
        text-wrap: balance;
    }

    .stand-for-pagination {
        gap: 8px;
        margin-top: 20px;
    }

    .stand-for-pagination .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
    }

    .discover-section {
        padding-top: 40px;
        padding-bottom: 80px;
    }

    .discover-banner {
        min-height: 220px;
        border-radius: 10px;
    }

    .discover-content {
        max-width: 70%;
        padding: 32px 28px;
    }

    .discover-heading {
        margin-bottom: 20px;
        font-size: 36px;
    }

    .discover-section .btn-promise.discover-btn {
        width: auto;
        min-width: 0;
        height: 52px;
        gap: 12px;
        padding: 0 16px;
    }

    .discover-section .btn-promise.discover-btn img {
        width: 28px;
    }
}

@media (max-width: 767px) {
    .stand-for-section {
        padding-top: 60px;
        padding-bottom: 30px;
    }

    .stand-for-heading {
        margin-bottom: 24px;
        font-size: 28px;
    }

    .stand-for-card {
        border-radius: 14px;
    }

    .stand-for-chip {
        bottom: 14px;
        min-height: 36px;
        padding: 8px 12px;
        font-size: 14px;
        border-width: 2px;
        white-space: normal;
        text-wrap: balance;
    }

    .stand-for-pagination {
        gap: 8px;
        margin-top: 18px;
    }

    .stand-for-pagination .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
    }

    .discover-section {
        padding-top: 30px;
        padding-bottom: 60px;
    }

    .discover-banner {
        min-height: 260px;
        border-radius: 12px;
        align-items: flex-end;
    }

    .discover-overlay {
        background: linear-gradient(180deg, rgba(56, 62, 25, 0.15) 0%, #383E19 62%);
    }

    .discover-content {
        max-width: 100%;
        padding: 28px 20px;
    }

    .discover-heading {
        margin-bottom: 18px;
        font-size: 26px;
    }

    .discover-section .btn-promise.discover-btn {
        width: auto;
        max-width: 100%;
        min-width: 0;
        height: 48px;
        gap: 10px;
        padding: 0 14px;
        font-size: 13px;
    }

    .discover-section .btn-promise.discover-btn img {
        width: 22px;
    }
}

@media (max-width: 480px) {
    .stand-for-heading {
        font-size: 24px;
    }

    .stand-for-chip {
        font-size: 13px;
        padding: 7px 10px;
    }

    .discover-banner {
        min-height: 240px;
    }

    .discover-heading {
        font-size: 22px;
    }
}

/* ==========================================================================
   Contact page — enquiry form + direct / map
   ========================================================================== */

.contact-enquiry-section {
    padding-top: var(--spacing-100);
    padding-bottom: var(--spacing-60);
}

.contact-enquiry-form {
    width: 100%;
    max-width: 100%;
}

.contact-enquiry-form .form-field-message {
    margin-bottom: 2.6042vw;
}

.contact-enquiry-form .form-textarea {
    display: block;
    height: auto;
    min-height: 5.2083vw;
    padding-top: 0.5208vw;
    resize: vertical;
}

.contact-enquiry-form .form-field-select .form-input,
.contact-enquiry-form .form-field-date .form-input {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 1.875vw;
    background-repeat: no-repeat;
    background-position: right 0 center;
    background-size: 0.9375vw auto;
    cursor: pointer;
}

.contact-enquiry-form .form-field-select .form-input {
    background-image: url("../images/faq/plus.svg");
}

.contact-enquiry-form .form-field-date .form-input {
    position: relative;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' fill='none' viewBox='0 0 24 24'%3E%3Crect x='3' y='5' width='18' height='16' rx='1.5' stroke='%231B1B1B' stroke-width='1.5'/%3E%3Cpath stroke='%231B1B1B' stroke-width='1.5' d='M3 10h18M8 3v4M16 3v4'/%3E%3C/svg%3E");
}

.contact-enquiry-form .form-field-date .form-input::-webkit-calendar-picker-indicator {
    opacity: 0;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.contact-enquiry-form .form-field-date {
    position: relative;
}

.contact-prefs {
    margin: 0 0 2.6042vw;
    padding: 0;
    border: 0;
}

.contact-prefs-legend {
    margin-bottom: 1.0417vw;
    float: none;
    width: 100%;
}

.contact-prefs-options {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2.0833vw;
}

.contact-pref {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.625vw;
    margin: 0;
    cursor: pointer;
}

.contact-pref input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.contact-pref-mark {
    display: block;
    width: 0.9375vw;
    min-width: 14px;
    height: 0.9375vw;
    min-height: 14px;
    border: 1.5px solid var(--black);
    border-radius: 50%;
    background: transparent;
    transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-pref input:checked+.contact-pref-mark {
    border-color: var(--light-red);
    box-shadow: inset 0 0 0 0.2083vw var(--white), inset 0 0 0 0.4167vw var(--light-red);
}

.contact-pref input:focus-visible+.contact-pref-mark {
    outline: 2px solid var(--light-red);
    outline-offset: 3px;
}

.contact-pref-text {
    color: var(--black2);
    font-family: var(--font-family-1);
    font-size: var(--text-18);
    font-weight: 400;
    line-height: 150%;
}

.contact-enquiry-form .btn-form {
    justify-content: space-between;
}

.contact-direct-section {
    padding-top: var(--spacing-100);
    padding-bottom: var(--spacing-100);
}

.contact-direct-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 4.1667vw;
    align-items: stretch;
}

.contact-direct-info {
    display: flex;
    flex-direction: column;
    padding-top: 6vw;
}

.contact-direct-label {
    margin-bottom: 1.5417vw;
    text-align: left;
    color: var(--black);
}

.contact-direct-heading {
    margin: 0 0 2.6042vw;

    color: var(--black);
    font-family: var(--font-family-2);
    font-size: var(--text-50);
    font-weight: 400;
    line-height: 1;
    text-transform: uppercase;
}

.contact-direct-details {
    display: flex;
    flex-direction: column;
    gap: 1.8229vw;
    margin-top: auto;
    padding-bottom: 3vw;
}

.contact-direct-item .form-label {
    margin-bottom: 0.4167vw;
    color: rgb(0 0 0 / 50%);
}

.contact-direct-value {
    color: var(--black);
    font-size: var(--text-32);
    font-family: var(--font-family-2);
    font-weight: 500;
    line-height: 150%;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-direct-value:hover,
.contact-direct-value:focus-visible {
    color: var(--light-red);
}

.contact-map {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 0.5208vw;
    background: var(--light-brown);
}

.contact-map-visual {
    position: relative;
    width: 100%;
    min-height: 28.6458vw;
}

.contact-map-image {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 28.6458vw;
    object-fit: cover;
    object-position: center;
}

.contact-map-marker-link {
    position: absolute;
    top: 50%;
    left: 58%;
    z-index: 1;
    display: block;
    line-height: 0;
    transform: translate(-50%, -100%);
    transition: transform 0.25s ease
}

.contact-map-marker-link:hover,
.contact-map-marker-link:focus-visible {
    transform: translate(-50%, -100%) scale(1.05);
}

.contact-map-marker {
    position: absolute;
    top: 26%;
    left: 52%;
    z-index: 1;
    display: block;
    width: 3.125vw;
    min-width: 36px;
    max-width: 60px;
    height: auto;
    transform: translate(-50%, -100%);
    pointer-events: none;
}

.contact-map-marker-link .contact-map-marker {
    position: static;
    transform: none;
    pointer-events: auto;
}

.contact-map-card {
    position: absolute;
    left: 1.25vw;
    bottom: 1.25vw;
    z-index: 2;
    max-width: 25vw;
    padding: 1.0417vw 1.25vw 1.0417vw 1.0417vw;
    border-left: 3px solid var(--light-red);
    background: var(--light-brown);
}

.contact-map-card-title {
    margin: 0 0 0.5208vw;
    color: var(--black);
    font-family: var(--font-family-1);
    font-size: var(--text-20);
    font-weight: 700;
    line-height: 130%;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.contact-map-card-text {
    margin: 0;
    color: var(--black2);
    font-family: var(--font-family-1);
    font-size: var(--text-20);
    font-weight: 500;
    line-height: 150%;
    text-transform: lowercase;
}

@media (min-width: 992px) and (max-width: 1200px) {

    .contact-map-visual,
    .contact-map-image {
        min-height: 320px;
    }

    .contact-map-card {
        max-width: 240px;
        left: 16px;
        bottom: 16px;
        padding: 14px 16px 14px 14px;
    }

    .contact-enquiry-form .form-field-select .form-input,
    .contact-enquiry-form .form-field-date .form-input {
        background-size: 14px auto;
        padding-right: 28px;
    }
}

@media (min-width: 768px) and (max-width: 991.5px) {
    .contact-enquiry-section {
        padding-top: 80px;
        padding-bottom: 40px;
    }

    .contact-enquiry-form .form-textarea {
        min-height: 80px;
    }

    .contact-enquiry-form .form-field-select .form-input,
    .contact-enquiry-form .form-field-date .form-input {
        background-size: 14px auto;
        padding-right: 28px;
    }

    .contact-prefs-options {
        gap: 24px;
    }

    .contact-pref {
        gap: 10px;
    }

    .contact-direct-section {
        padding-top: 40px;
        padding-bottom: 80px;
    }

    .contact-direct-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .contact-direct-heading {
        margin-bottom: 28px;
        max-width: none;
    }

    .contact-map-visual,
    .contact-map-image {
        min-height: 320px;
    }

    .contact-map-card {
        left: 16px;
        bottom: 16px;
        max-width: 240px;
        padding: 14px 16px;
    }
}

@media (max-width: 767px) {
    .contact-enquiry-section {
        padding-top: 60px;
        padding-bottom: 30px;
    }

    .contact-enquiry-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-enquiry-form .form-textarea {
        min-height: 72px;
    }

    .contact-enquiry-form .form-field-select .form-input,
    .contact-enquiry-form .form-field-date .form-input {
        background-size: 14px auto;
        padding-right: 28px;
    }

    .contact-prefs {
        margin-bottom: 28px;
    }

    .contact-prefs-options {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .contact-pref {
        gap: 10px;
    }

    .contact-pref-mark {
        width: 16px;
        height: 16px;
    }

    .contact-pref input:checked+.contact-pref-mark {
        box-shadow: inset 0 0 0 3px var(--white), inset 0 0 0 7px var(--light-red);
    }

    .contact-enquiry-form .btn-form {
        width: 100%;
        max-width: 100%;
    }

    .contact-direct-section {
        padding-top: 30px;
        padding-bottom: 60px;
    }

    .contact-direct-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .contact-direct-heading {
        margin-bottom: 24px;
        font-size: 28px;
    }

    .contact-direct-details {
        gap: 20px;
    }

    .contact-map {
        border-radius: 12px;
    }

    .contact-map-visual,
    .contact-map-image {
        min-height: 280px;
    }

    .contact-map-marker,
    .contact-map-marker-link {
        top: 50%;
        left: 58%;
    }

    .contact-map-marker {
        width: 40px;
        min-width: 40px;
    }

    .contact-map-card {
        left: 12px;
        right: 12px;
        bottom: 12px;
        max-width: none;
        padding: 12px 14px;
    }
}

@media (max-width: 480px) {


    .contact-map-visual,
    .contact-map-image {
        min-height: 300px;
    }
}

/* ==========================================================================
   Projects gallery + considered CTA
   ========================================================================== */

.projects-gallery-section {
    padding-top: var(--spacing-100);
    padding-bottom: var(--spacing-100);
}

.projects-gallery {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.8333vw;
    width: 100%;
    height: 120vh;
    overflow: hidden;
}

.projects-gallery-col {
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
    position: relative;
}

.marquee-track {
    display: flex;
    flex-direction: column;
    gap: 0.8333vw;
    padding-bottom: 0.8333vw; /* Add padding at the bottom equal to the gap for seamless looping */
    width: 100%;
    will-change: transform;
}

.projects-gallery-item {
    position: relative;
    display: block;
    margin: 0;
    overflow: hidden;
    width: 100%;
    border-radius: 8px;
}

.projects-gallery-item img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
    vertical-align: middle;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

/* Rotating gallery: outgoing image state */
.projects-gallery-item.gallery-swapping img {
    opacity: 0;
    transform: scale(0.96);
}

.projects-gallery-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(56, 62, 25, 0) 48.29%, #383E19 104.57%);
}

.projects-gallery-section .still-have .btn-promise,
.projects-gallery-section .still-have .btn-promise.still-have-btn {
    width: auto;
    min-width: 16.6667vw;
    padding: 0 1.4583vw;
    justify-content: space-between;
    gap: 0.8333vw;
}

@media (min-width: 992px) and (max-width: 1200px) {
    .projects-gallery {
        gap: 12px;
    }

    .projects-gallery-col {
        gap: 12px;
    }
    
    .marquee-track {
        gap: 12px;
        padding-bottom: 12px;
    }

    .projects-gallery-section .still-have .btn-promise.still-have-btn {
        min-width: 260px;
        padding: 0 20px;
    }
}

@media (min-width: 768px) and (max-width: 991.5px) {
    .projects-gallery-section {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .projects-gallery {
        gap: 12px;
        height: 100vh; /* Adjust height for tablet */
    }

    .projects-gallery-col {
        gap: 12px;
    }
    
    .marquee-track {
        gap: 12px;
        padding-bottom: 12px;
    }

    .projects-gallery-section .still-have .btn-promise.still-have-btn {
        width: auto;
        min-width: 280px;
        height: 52px;
        padding: 0 18px;
    }
}

@media (max-width: 767px) {
    .projects-gallery-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .projects-gallery {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        height: auto; /* Disable marquee height restriction on mobile */
        overflow: visible;
    }

    .projects-gallery-col {
        gap: 10px;
        overflow: visible;
    }
    
    .marquee-track {
        gap: 10px;
        padding-bottom: 0; /* Remove marquee padding on mobile */
    }

    /* Keep visual balance: merge col 3 into a flowing 2-col stack via column order */
    .projects-gallery-col:nth-child(3) {
        grid-column: 1 / -1;
        display: block; /* Remove grid from col itself */
    }
    
    .projects-gallery-col:nth-child(3) .marquee-track {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .projects-gallery-col:nth-child(3) .marquee-track .projects-gallery-item:last-child {
        grid-column: 1 / -1;
    }

    .projects-gallery-section .still-have .btn-promise.still-have-btn {
        width: auto;
        max-width: 100%;
        min-width: 0;
        height: 48px;
        padding: 0 14px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .projects-gallery {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .projects-gallery-col:nth-child(3) {
        display: flex;
        flex-direction: column;
        grid-column: auto;
    }
    
    .projects-gallery-col:nth-child(3) .marquee-track {
        display: flex;
        flex-direction: column;
        grid-column: auto;
    }

    .projects-gallery-col:nth-child(3) .marquee-track .projects-gallery-item:last-child {
        grid-column: auto;
    }
}

/* ==========================================================================
   Wedding page
   ========================================================================== */

.wedding-keys-section {
    padding-top: var(--spacing-100);
    padding-bottom: var(--spacing-60);
}

.wedding-keys-heading {
    margin: 0 0 2.6042vw;
    color: var(--black);
    font-family: var(--font-family-2);
    font-size: var(--text-50);
    font-weight: 400;
    line-height: 1;
    text-align: center;
    text-transform: uppercase;
}

.wedding-keys-swiper {
    width: 100%;
    overflow: hidden;
}

.wedding-keys-swiper .swiper-slide {
    height: auto;
    box-sizing: border-box;
}

.wedding-key-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 100%;
}

.wedding-key-image {
    display: block;
    width: 100%;
    aspect-ratio: 508 / 334;
    height: auto;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
}

.wedding-key-text {
    margin: 1.25vw 0 0;
    max-width: 22em;
    color: var(--black2);
    font-family: var(--font-family-1);
    font-size: var(--text-18);
    font-weight: 400;
    line-height: 150%;
    text-align: center;
}

.wedding-key-text br+br {
    display: none;
}

.wedding-keys-slider-wrapper {
    position: relative;
    width: 100%;
}

.wedding-keys-slider-wrapper .wedding-keys-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.wedding-keys-slider-wrapper .wedding-keys-prev {
    left: -3.5vw;
}

.wedding-keys-slider-wrapper .wedding-keys-next {
    right: -3.5vw;
}

.wedding-keys-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5625vw;
    margin-top: 4.6042vw;
}

.wedding-keys-nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
    padding: 8px;
    border: 0;
    background: transparent;
    cursor: pointer;
    transition: opacity 0.25s ease;
}

.wedding-keys-nav img {
    display: block;
    width: 0.8854vw;
    min-width: 12px;
    max-width: 17px;
    height: auto;
}

.wedding-keys-nav:hover,
.wedding-keys-nav:focus-visible {
    opacity: 0.75;
}

.wedding-keys-nav.swiper-button-disabled {
    opacity: 0.35;
    cursor: default;
    pointer-events: none;
}

.wedding-keys-section .btn-promise.wedding-keys-cta {
    justify-content: space-between;
    gap: 0.8333vw;
    width: auto;
    min-width: 16.6667vw;
    margin: 0;
    padding: 0 1.25vw;
}

.wedding-slides-section {
    padding-top: var(--spacing-100);
    padding-bottom: var(--spacing-100);
}

.wedding-slides-swiper {
    width: 100%;
    overflow: hidden;
}

.wedding-slide-frame {
    margin: 0;
    overflow: hidden;
    border-radius: 8px;
}

.wedding-slide-frame img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
}

.wedding-slides-pagination {
    position: relative !important;
    bottom: auto !important;
    left: auto !important;
    width: 100% !important;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5208vw;
    margin-top: 1.5625vw;
}

.wedding-slides-pagination .swiper-pagination-bullet {
    width: 0.6250vw;
    height: 0.6250vw;
    margin: 0 !important;
    background: #5B603D1C;
    opacity: 1;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.wedding-slides-pagination .swiper-pagination-bullet-active {
    background: var(--black);
}

.wedding-occasions-section {
    padding-top: var(--spacing-60);
    padding-bottom: var(--spacing-100);
}

.wedding-occasions-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 4.1667vw;
    align-items: start;
}

.wedding-occasions-label {
    margin-bottom: 1.3417vw;
    text-align: left;
    color: var(--black2);
}

.wedding-occasions-heading {
    margin: 0;
    max-width: 12em;
    color: var(--black);
    font-family: var(--font-family-2);
    font-size: var(--text-50);
    font-weight: 400;
    line-height: 1;
    text-transform: uppercase;
}

.wedding-occasions-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.wedding-occasions-list li:first-child {
    border-top: none;
}

.wedding-occasions-list li {
    border-top: 1px solid var(--black);
}

.wedding-occasions-list li:last-child {
    border-bottom: 1px solid var(--black);
}

.wedding-occasion-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25vw;
    padding: 1vw 0;
    color: var(--black2);
    font-family: var(--font-family-1);
    font-size: var(--text-24);
    font-weight: 400;
    line-height: 130%;
    text-decoration: none;
    transition: color 0.25s ease;
}

.wedding-occasion-link img {
    display: block;
    width: 1.4583vw;
    min-width: 22px;
    height: auto;
    flex: none;
    transition: transform 0.25s ease;
}

.wedding-occasion-link:hover,
.wedding-occasion-link:focus-visible {
    color: var(--light-red);
}

.wedding-occasion-link:hover img,
.wedding-occasion-link:focus-visible img {
    transform: translateX(4px);
}

@media (min-width: 992px) and (max-width: 1200px) {
    .wedding-keys-heading {
        margin-bottom: 28px;
    }

    .wedding-key-image,
    .wedding-slide-frame {
        border-radius: 10px;
    }

    .wedding-key-text {
        margin-top: 16px;
    }

    .wedding-keys-controls {
        gap: 12px;
        margin-top: 28px;
    }

    .wedding-keys-nav {
        width: 48px;
        height: 48px;
    }

    .wedding-keys-section .btn-promise.wedding-keys-cta {
        min-width: 240px;
    }

    .wedding-slides-pagination .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
    }

    .wedding-occasions-grid {
        gap: 36px;
    }
}

@media (min-width: 768px) and (max-width: 991.5px) {
    .wedding-keys-section {
        padding-top: 80px;
        padding-bottom: 40px;
    }

    .wedding-keys-heading {
        margin-bottom: 28px;
    }

    .wedding-key-image,
    .wedding-slide-frame {
        border-radius: 12px;
    }

    .wedding-key-text {
        margin-top: 14px;
        font-size: 15px;
    }

    .wedding-keys-controls {
        gap: 12px;
        margin-top: 28px;
    }

    .wedding-keys-slider-wrapper .wedding-keys-prev {
        left: -20px;
    }

    .wedding-keys-slider-wrapper .wedding-keys-next {
        right: -20px;
    }

    .wedding-keys-nav {
        width: 48px;
        height: 48px;
    }

    .wedding-keys-nav img {
        width: 22px;
    }

    .wedding-keys-section .btn-promise.wedding-keys-cta {
        width: auto;
        min-width: 240px;
        height: 52px;
        padding: 0 16px;
    }

    .wedding-slides-section {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .wedding-slides-pagination {
        gap: 8px;
        margin-top: 18px;
    }

    .wedding-slides-pagination .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
    }

    .wedding-occasions-section {
        padding-top: 40px;
        padding-bottom: 80px;
    }

    .wedding-occasions-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .wedding-occasions-heading {
        max-width: none;
    }

    .wedding-occasion-link {
        padding: 18px 0;

    }

    .wedding-occasion-link img {
        width: 24px;
    }
}


@media (max-width: 767px) {
    .wedding-keys-section {
        padding-top: 60px;
        padding-bottom: 30px;
    }

    .wedding-keys-heading {
        margin-bottom: 24px;

    }

    .wedding-key-image,
    .wedding-slide-frame {
        border-radius: 12px;
    }

    .wedding-key-text {
        margin-top: 12px;

    }

    .wedding-keys-controls {
        flex-wrap: nowrap;
        gap: 12px;
        margin-top: 24px;
        padding: 0 4px;
    }

    .wedding-keys-slider-wrapper .wedding-keys-prev {
        left: -12px;
    }

    .wedding-keys-slider-wrapper .wedding-keys-next {
        right: -12px;
    }

    .wedding-keys-nav {
        flex: none;
        width: 40px;
        height: 40px;
        padding: 8px;
    }

    .wedding-keys-nav img {
        width: 12px;
        min-width: 12px;
    }

    .wedding-keys-section .btn-promise.wedding-keys-cta {
        flex: 1 1 auto;
        width: auto;
        max-width: 100%;
        min-width: 0;
        height: 48px;
        padding: 0 12px;
        font-size: 13px;
    }

    .wedding-slides-section {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .wedding-slides-pagination {
        gap: 8px;
        margin-top: 16px;
    }

    .wedding-slides-pagination .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
    }

    .wedding-occasions-section {
        padding-top: 30px;
        padding-bottom: 60px;
    }

    .wedding-occasions-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .wedding-occasions-heading {
        max-width: none;

    }

    .wedding-occasion-link {
        padding: 16px 0;

        gap: 12px;
    }

    .wedding-occasion-link img {
        width: 22px;
    }
}


.wedding-occasion-link:hover,
.wedding-occasion-link:focus-visible {
    color: var(--light-red);
}

.wedding-occasion-link:hover img,
.wedding-occasion-link:focus-visible img {
    transform: translateX(4px);
}

@media (min-width: 992px) and (max-width: 1200px) {
    .wedding-keys-heading {
        margin-bottom: 28px;
    }

    .wedding-key-image,
    .wedding-slide-frame {
        border-radius: 10px;
    }

    .wedding-key-text {
        margin-top: 16px;
    }

    .wedding-keys-controls {
        gap: 12px;
        margin-top: 28px;
    }

    .wedding-keys-nav {
        width: 48px;
        height: 48px;
    }

    .wedding-keys-section .btn-promise.wedding-keys-cta {
        min-width: 240px;
    }

    .wedding-slides-pagination .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
    }

    .wedding-occasions-grid {
        gap: 36px;
    }
}

@media (min-width: 768px) and (max-width: 991.5px) {
    .wedding-keys-section {
        padding-top: 80px;
        padding-bottom: 40px;
    }

    .wedding-keys-heading {
        margin-bottom: 28px;
    }

    .wedding-key-image,
    .wedding-slide-frame {
        border-radius: 12px;
    }

    .wedding-key-text {
        margin-top: 14px;
        font-size: 15px;
    }

    .wedding-keys-controls {
        gap: 12px;
        margin-top: 28px;
    }

    .wedding-keys-nav {
        width: 48px;
        height: 48px;
    }

    .wedding-keys-nav img {
        width: 22px;
    }

    .wedding-keys-section .btn-promise.wedding-keys-cta {
        width: auto;
        min-width: 240px;
        height: 52px;
        padding: 0 16px;
    }

    .wedding-slides-section {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .wedding-slides-pagination {
        gap: 8px;
        margin-top: 18px;
    }

    .wedding-slides-pagination .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
    }

    .wedding-occasions-section {
        padding-top: 40px;
        padding-bottom: 80px;
    }

    .wedding-occasions-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .wedding-occasions-heading {
        max-width: none;
    }

    .wedding-occasion-link {
        padding: 18px 0;

    }

    .wedding-occasion-link img {
        width: 24px;
    }
}

@media (max-width: 767px) {
    .wedding-keys-section {
    }
}


/* Custom Additions */
.hero-picture,
.hero-picture img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
    display: block;
}

.promise-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.testimonials-swiper {
    width: 100%;
    max-width: min(100%, 72.9167vw);
    padding-bottom: 2.5rem !important;
}

.testimonials-swiper .swiper-slide {
    height: auto;
    display: flex;
}

.testimonials-swiper .swiper-slide .tm-card {
    height: 100%;
    width: 100%;
}

.testimonials-pagination {
    position: relative !important;
    bottom: 0 !important;
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.testimonials-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 0 !important;
    background: rgba(255, 255, 255, 0.4);
    opacity: 1;
    border-radius: 50%;
    transition: all 0.3s ease;
    cursor: pointer;
}

.testimonials-pagination .swiper-pagination-bullet-active {
    background: #ffffff;
    width: 28px;
    border-radius: 5px;
}

/* ─────────────────────────────────────────────────────────────────
   Floating WhatsApp Button
──────────────────────────────────────────────────────────────────── */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: var(--light-red);
    border: 3px solid #DDDCD0;
    color: var(--white);
    border-radius: 4px !important;
    text-decoration: none;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
    transform: scale(1.12);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.55), 0 4px 10px rgba(0, 0, 0, 0.2);
    color: #ffffff;
}

.whatsapp-icon {
    width: 32px;
    height: 32px;
    fill: #ffffff;
}

.whatsapp-tooltip {
    position: absolute;
    right: 72px;
    white-space: nowrap;
    background-color: #1B1B1B;
    color: #ffffff;
    font-family: var(--font-family-1, sans-serif);
    font-size: 13px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    transform: translateX(8px);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -5px;
    transform: translateY(-50%);
    border-width: 5px 0 5px 5px;
    border-style: solid;
    border-color: transparent transparent transparent #1B1B1B;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

@media (max-width: 767px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 52px;
        height: 52px;
    }
    .whatsapp-icon {
        width: 28px;
        height: 28px;
    }
    .whatsapp-tooltip {
        display: none;
    }
}

