/* ==========================================
   GLOBAL
========================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    overflow-x: hidden;
}



/* ==========================================
   HEADER
========================================== */

.dd-header {
    width: 100%;
    background: #fbf6ee;
    position: relative;
    z-index: 50;
    border-bottom: 1px solid rgba(106, 77, 46, 0.08);
}

.dd-header-container {
    width: 100%;
    min-height: 85px;

    padding: 0 55px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}


/* Logo */

.dd-logo {
    display: flex;
    align-items: center;
    gap: 14px;

    text-decoration: none;

    flex-shrink: 0;
}

.dd-logo-icon {
    width: 50px;
    height: 60px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 35px;

    color: #bd8b3f;
}

.dd-logo-text h2 {
    margin: 0;

    font-family: "Cormorant Garamond", serif;

    font-size: 30px;
    font-weight: 500;

    letter-spacing: 2px;

    color: #3b2b20;
}


/* Navigation */

.dd-nav {
    display: flex;
    align-items: center;
    justify-content: end;

    gap: 55px;

    flex: 1;
}

.dd-nav a {
    position: relative;

    padding: 18px 0;

    text-decoration: none;

    font-family: "Montserrat", sans-serif;

    font-size: 16px;
    font-weight: 500;

    letter-spacing: 1px;

    color: #392a20;

    white-space: nowrap;

    transition: color 0.3s ease;
}

.dd-nav a::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: 8px;

    width: 0;
    height: 1px;

    transform: translateX(-50%);

    background: #bd8b3f;

    transition: width 0.3s ease;
}

.dd-nav a:hover,
.dd-nav a.active {
    color: #a37533;
}

.dd-nav a:hover::after,
.dd-nav a.active::after {
    width: 42px;
}


/* Mobile Menu */

.dd-mobile-menu {
    display: none;

    border: 0;

    background: transparent;

    color: #37281f;

    font-size: 23px;

    cursor: pointer;
}

/* =========================================================
   HEADER RESPONSIVE
========================================================= */

@media (max-width: 1100px) {

    .dd-header-container {
        min-height: 78px;

        padding:
            0
            28px;
    }


    .dd-nav {
        gap: 24px;
    }


    .dd-nav a {
        font-size: 10px;

        letter-spacing: .7px;
    }


    .dd-logo-text h2 {
        font-size: 27px;
    }


    .dd-logo-icon {
        width: 44px;
        height: 52px;

        font-size: 30px;
    }

}



/* =========================================================
   MOBILE HEADER
========================================================= */

@media (max-width: 850px) {

    .dd-header {
        position: relative;

        background:
            rgba(
                251,
                246,
                238,
                .97
            );

        border-bottom:
            1px solid
            rgba(
                106,
                77,
                46,
                .09
            );

        box-shadow:
            0 5px 20px
            rgba(
                61,
                42,
                25,
                .05
            );
    }


    .dd-header-container {
        min-height: 72px;

        padding:
            0
            18px;

        gap: 15px;
    }


    /* ==========================================
       LOGO
    ========================================== */

    .dd-logo {
        gap: 9px;

        position: relative;

        z-index: 60;
    }


    .dd-logo-icon {
        width: 38px;
        height: 45px;

        font-size: 27px;
    }


    .dd-logo-text h2 {
        font-size: 24px;

        letter-spacing: 1.2px;
    }


    /* ==========================================
       MOBILE MENU BUTTON
    ========================================== */

    .dd-mobile-menu {
        width: 44px;
        height: 44px;

        flex-shrink: 0;

        position: relative;

        z-index: 70;

        display: flex;

        align-items: center;
        justify-content: center;

        border:
            1px solid
            rgba(
                183,
                139,
                63,
                .28
            );

        border-radius: 50%;

        background:
            rgba(
                255,
                252,
                246,
                .86
            );

        color: #3b2b20;

        font-size: 18px;

        cursor: pointer;

        box-shadow:
            0 5px 16px
            rgba(
                56,
                39,
                23,
                .08
            );

        transition:
            background .55s ease,
            color .55s ease,
            border-color .55s ease,
            transform .65s
            cubic-bezier(.16, 1, .3, 1);
    }


    .dd-mobile-menu:hover {
        background: #59603b;

        border-color: #59603b;

        color: #fff;

        transform:
            scale(1.04);
    }


    /* ==========================================
       MOBILE NAV PANEL
    ========================================== */

    .dd-nav {
        width:
            calc(
                100% - 24px
            );

        max-height: 0;

        position: absolute;

        top: calc(100% + 8px);

        left: 12px;

        z-index: 55;

        display: flex;

        flex-direction: column;

        align-items: stretch;
        justify-content: flex-start;

        gap: 0;

        padding:
            0
            18px;

        overflow: hidden;

        opacity: 0;

        visibility: hidden;

        border:
            1px solid
            rgba(
                183,
                139,
                63,
                .24
            );

        border-radius: 16px;

        background:
            rgba(
                255,
                251,
                244,
                .98
            );

        box-shadow:
            0 22px 50px
            rgba(
                54,
                38,
                23,
                .14
            );

        backdrop-filter:
            blur(14px);

        transform:
            translate3d(
                0,
                -10px,
                0
            );

        transform-origin:
            top center;

        transition:
            max-height .75s
            cubic-bezier(.16, 1, .3, 1),

            opacity .45s ease,

            transform .75s
            cubic-bezier(.16, 1, .3, 1),

            visibility .45s ease,

            padding .7s
            cubic-bezier(.16, 1, .3, 1);
    }


    /* OPEN STATE */

    .dd-header.menu-open
    .dd-nav {
        max-height: 520px;

        padding:
            12px
            18px;

        opacity: 1;

        visibility: visible;

        transform:
            translate3d(
                0,
                0,
                0
            );
    }


    /* ==========================================
       MOBILE NAV LINKS
    ========================================== */

    .dd-nav a {
        width: 100%;

        min-height: 52px;

        position: relative;

        display: flex;

        align-items: center;

        padding:
            0
            8px;

        border-bottom:
            1px solid
            rgba(
                130,
                99,
                62,
                .09
            );

        font-size: 10px;

        font-weight: 500;

        letter-spacing: 1.1px;

        color: #3b2c21;

        opacity: 0;

        transform:
            translate3d(
                0,
                -8px,
                0
            );

        transition:
            color .45s ease,
            padding-left .55s
            cubic-bezier(.16, 1, .3, 1),
            opacity .55s ease,
            transform .65s
            cubic-bezier(.16, 1, .3, 1);
    }


    .dd-nav a:last-child {
        border-bottom: 0;
    }


    .dd-nav a::after {
        left: 8px;
        bottom: 9px;

        transform: none;
    }


    .dd-nav a:hover,
    .dd-nav a.active {
        padding-left: 14px;

        color: #a37533;
    }


    .dd-nav a:hover::after,
    .dd-nav a.active::after {
        width: 26px;
    }


    /* staggered reveal */

    .dd-header.menu-open
    .dd-nav a {
        opacity: 1;

        transform:
            translate3d(
                0,
                0,
                0
            );
    }


    .dd-header.menu-open
    .dd-nav a:nth-child(1) {
        transition-delay: .04s;
    }


    .dd-header.menu-open
    .dd-nav a:nth-child(2) {
        transition-delay: .08s;
    }


    .dd-header.menu-open
    .dd-nav a:nth-child(3) {
        transition-delay: .12s;
    }


    .dd-header.menu-open
    .dd-nav a:nth-child(4) {
        transition-delay: .16s;
    }


    .dd-header.menu-open
    .dd-nav a:nth-child(5) {
        transition-delay: .20s;
    }


    .dd-header.menu-open
    .dd-nav a:nth-child(6) {
        transition-delay: .24s;
    }

}



/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .dd-header-container {
        min-height: 66px;

        padding:
            0
            14px;
    }


    .dd-logo {
        gap: 7px;
    }


    .dd-logo-icon {
        width: 32px;
        height: 40px;

        font-size: 23px;
    }


    .dd-logo-text h2 {
        font-size: 21px;

        letter-spacing: .8px;
    }


    .dd-mobile-menu {
        width: 40px;
        height: 40px;

        font-size: 16px;
    }


    .dd-nav {
        width:
            calc(
                100% - 20px
            );

        left: 10px;

        border-radius: 14px;
    }


    .dd-nav a {
        min-height: 49px;

        font-size: 9px;
    }

}



/* =========================================================
   HERO
========================================================= */

.dd-slider-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #eee8dc;
}

.dd-main-slider {
    position: relative;
    width: 100%;
    height: clamp(600px, 68vh, 560px);
    overflow: hidden;
    background: #ddd2c1;
    isolation: isolate;
}


/* =========================================================
   TRACK
========================================================= */

.dd-slider-track {
    position: absolute;
    inset: 0;
    overflow: hidden;
}


/* =========================================================
   SLIDES
========================================================= */

.dd-slide {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    transform: translate3d(100%, 0, 0);

    z-index: 1;

    pointer-events: none;

    backface-visibility: hidden;
    will-change: transform;
}

.dd-slide.active {
    transform: translate3d(0, 0, 0);
    z-index: 3;
    pointer-events: auto;
}

.dd-slide.dd-is-animating {
    transition:
        transform 1.65s
        cubic-bezier(.76, 0, .24, 1);
}

.dd-slide.dd-move-left {
    transform: translate3d(-100%, 0, 0);
    z-index: 3;
}

.dd-slide.dd-move-center {
    transform: translate3d(0, 0, 0);
    z-index: 4;
}


/* =========================================================
   IMAGE
========================================================= */

.dd-slide-bg {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transform: scale(1.035);

    transition:
        transform 6.5s
        cubic-bezier(.16, 1, .3, 1);

    user-select: none;

    backface-visibility: hidden;
    will-change: transform;
}

.dd-slide.active .dd-slide-bg,
.dd-slide.dd-move-center .dd-slide-bg {
    transform: scale(1);
}

.dd-slide.dd-move-left .dd-slide-bg {
    transform: scale(1.045);
}


/* Stitching image */

.dd-slide:nth-child(1) .dd-slide-bg {
    object-position: 56% center;
}


/* Chutney image */

.dd-slide:nth-child(2) .dd-slide-bg {
    object-position: center;
}


/* =========================================================
   IMAGE SHADE
========================================================= */

.dd-slide-shade {
    position: absolute;
    inset: 0;
    z-index: 2;

    pointer-events: none;

    background:
        linear-gradient(
            90deg,
            rgba(25, 20, 13, .24) 0%,
            rgba(25, 20, 13, .08) 25%,
            transparent 48%
        ),
        linear-gradient(
            0deg,
            rgba(20, 15, 10, .17) 0%,
            transparent 35%
        );
}


/* =========================================================
   SMALL SLIDE LABEL
========================================================= */

.dd-hero-label {
    position: absolute;

    left: clamp(70px, 8vw, 125px);
    bottom: 88px;

    z-index: 10;

    display: flex;
    align-items: center;

    gap: 14px;

    color: #fff;

    opacity: 0;

    transform: translate3d(-18px, 12px, 0);
}

.dd-slide.active .dd-hero-label,
.dd-slide.dd-move-center .dd-hero-label {
    animation:
        ddHeroLabelReveal
        .95s
        cubic-bezier(.16, 1, .3, 1)
        .45s
        forwards;
}

@keyframes ddHeroLabelReveal {

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }

}

.dd-hero-label > span {
    font-size: 10px;
    letter-spacing: 1px;

    opacity: .6;
}

.dd-hero-label > div {
    display: flex;
    flex-direction: column;

    gap: 3px;

    padding-left: 14px;

    border-left:
        1px solid
        rgba(255,255,255,.45);
}

.dd-hero-label small {
    font-size: 7px;
    font-weight: 500;

    letter-spacing: 2.6px;

    color:
        rgba(
            255,
            255,
            255,
            .72
        );
}

.dd-hero-label strong {
    font-size: 13px;

    font-weight: 500;

    letter-spacing: 2px;

    color: #fff;
}


/* =========================================================
   VERTICAL BRAND MESSAGE
========================================================= */

.dd-hero-vertical-text {
    position: absolute;

    left: 25px;
    top: 50%;

    z-index: 20;

    display: flex;
    align-items: center;

    gap: 15px;

    transform:
        translate(-47%, -50%)
        rotate(-90deg);

    transform-origin: center;

    pointer-events: none;
}

.dd-hero-vertical-text > span {
    width: 35px;
    height: 1px;

    background:
        rgba(
            255,
            255,
            255,
            .48
        );
}

.dd-hero-vertical-text p {
    margin: 0;

    display: flex;
    align-items: center;

    gap: 11px;

    white-space: nowrap;

    font-size: 7px;

    font-weight: 600;

    letter-spacing: 3px;

    color:
        rgba(
            255,
            255,
            255,
            .90
        );
}

.dd-hero-vertical-text i {
    width: 4px;
    height: 4px;

    display: inline-block;

    border-radius: 50%;

    background: #d8bb78;
}


/* =========================================================
   COUNTER
========================================================= */

.dd-hero-counter {
    position: absolute;

    left: clamp(70px, 8vw, 125px);
    bottom: 35px;

    z-index: 20;

    display: flex;
    align-items: center;

    gap: 11px;

    color: #fff;
}

.dd-current-slide {
    font-size: 10px;

    font-weight: 600;

    letter-spacing: 1px;
}

.dd-total-slides {
    font-size: 8px;

    letter-spacing: 1px;

    opacity: .55;
}

.dd-counter-track {
    width: 90px;
    height: 1px;

    overflow: hidden;

    background:
        rgba(
            255,
            255,
            255,
            .30
        );
}

.dd-counter-track span {
    display: block;

    width: 50%;
    height: 100%;

    background: #fff;

    transition:
        width .8s
        cubic-bezier(.16, 1, .3, 1);
}


/* =========================================================
   PREMIUM NAVIGATION
========================================================= */

.dd-hero-navigation {
    position: absolute;

    right: clamp(25px, 4vw, 62px);
    bottom: 27px;

    z-index: 30;

    height: 62px;

    padding: 0 8px;

    display: flex;
    align-items: center;

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            .28
        );

    background:
        rgba(
            35,
            29,
            21,
            .18
        );

    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);

    box-shadow:
        0 15px 35px
        rgba(
            15,
            11,
            7,
            .12
        );
}

.dd-slider-prev,
.dd-slider-next {
    height: 46px;

    padding: 0 12px;

    display: flex;
    align-items: center;

    gap: 12px;

    border: 0;

    background: transparent;

    color: #fff;

    cursor: pointer;
}

.dd-nav-separator {
    width: 1px;
    height: 29px;

    background:
        rgba(
            255,
            255,
            255,
            .22
        );
}


/* =========================================================
   NAV ARROW
========================================================= */

.dd-nav-arrow {
    width: 30px;
    height: 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            .38
        );

    border-radius: 50%;

    font-size: 10px;

    transition:
        transform .6s
        cubic-bezier(.16, 1, .3, 1),
        background .35s ease,
        color .35s ease;
}

.dd-slider-prev:hover .dd-nav-arrow {
    transform: translateX(-4px);

    background: #fff;

    color: #59603b;
}

.dd-slider-next:hover .dd-nav-arrow {
    transform: translateX(4px);

    background: #fff;

    color: #851f25;
}


/* =========================================================
   NAV TEXT
========================================================= */

.dd-nav-copy {
    display: flex;
    flex-direction: column;

    align-items: flex-start;

    gap: 2px;
}

.dd-nav-copy-right {
    align-items: flex-end;
}

.dd-nav-copy small {
    font-size: 6px;

    font-weight: 600;

    letter-spacing: 1.6px;

    color:
        rgba(
            255,
            255,
            255,
            .58
        );
}

.dd-nav-copy strong {
    font-size: 11px;

    font-weight: 500;

    letter-spacing: .5px;

    color: #fff;
}


/* =========================================================
   LAPTOP
========================================================= */

@media (max-width: 1366px) {

    .dd-main-slider {
        height: clamp(500px, 64vh, 510px);
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .dd-main-slider {
        height: 450px;
    }

    .dd-hero-navigation {
        right: 20px;
        bottom: 20px;
    }

    .dd-hero-label,
    .dd-hero-counter {
        left: 58px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 575px) {

    .dd-main-slider {
        height: 430px;
    }

    .dd-slide-bg {
        object-position: 65% center;
    }

    .dd-hero-vertical-text {
        display: none;
    }

    .dd-hero-label {
        left: 22px;
        bottom: 100px;
    }

    .dd-hero-counter {
        left: 22px;
        bottom: 76px;
    }

    .dd-counter-track {
        width: 55px;
    }

    .dd-hero-navigation {
        left: 14px;
        right: 14px;
        bottom: 14px;

        justify-content: space-between;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 390px) {

    .dd-main-slider {
        height: 400px;
    }

    .dd-nav-copy small {
        display: none;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .dd-slide.dd-is-animating {
        transition:
            transform .55s ease !important;
    }

    .dd-slide-bg {
        transition: none !important;
    }

    .dd-slide.active .dd-hero-label,
    .dd-slide.dd-move-center .dd-hero-label {
        animation: none;

        opacity: 1;

        transform: none;
    }

}

/* =========================================================
   MAIN LEFT HERO HEADING
========================================================= */

.dd-slide-heading {
    position: absolute;

    left: clamp(65px, 8vw, 125px);
    top: 50%;

    z-index: 15;

    width: min(560px, 45vw);

    transform: translateY(-50%);

    color: #fff;
}


/* small upper text */

.dd-heading-kicker {
    display: inline-block;

    margin-bottom: 14px;

    font-size: 8px;

    font-weight: 600;

    letter-spacing: 3px;

    color: rgba(255, 255, 255, .78);
}


/* main heading */

.dd-slide-heading h1,
.dd-slide-heading h2 {
    margin: 0;

    font-size: clamp(46px, 5vw, 72px);

    line-height: .95;

    font-weight: 500;

    letter-spacing: -1px;

    color: #fff;
}


/* =========================================================
   ROTATING WORD AREA
========================================================= */

.dd-rotating-wrapper {
    display: block;

    position: relative;

    height: 1em;

    margin-top: 7px;

    overflow: hidden;

    color: #e2c488;
}


/* moving words container */

.dd-rotating-text {
    display: flex;

    flex-direction: column;

    animation:
        ddRotateWords
        7.2s
        cubic-bezier(.77, 0, .18, 1)
        infinite;
}


.dd-rotating-text span {
    height: 1em;

    display: flex;

    align-items: center;

    white-space: nowrap;
}


/* =========================================================
   TEXT ROTATION
========================================================= */

@keyframes ddRotateWords {

    0%,
    25% {
        transform: translateY(0);
    }

    33%,
    58% {
        transform: translateY(-1em);
    }

    66%,
    91% {
        transform: translateY(-2em);
    }

    100% {
        transform: translateY(0);
    }

}


/* =========================================================
   PARAGRAPH
========================================================= */

.dd-slide-heading p {
    max-width: 420px;

    margin:
        22px
        0
        0;

    font-size: 15px;

    line-height: 1.7;

    color: rgba(255, 255, 255, .85);
}


/* =========================================================
   HEADING ENTRY ANIMATION
========================================================= */

.dd-slide-heading {
    opacity: 0;

    transform:
        translate3d(-35px, -50%, 0);
}


.dd-slide.active .dd-slide-heading,
.dd-slide.dd-move-center .dd-slide-heading {
    animation:
        ddHeadingReveal
        1.2s
        cubic-bezier(.16, 1, .3, 1)
        .35s
        forwards;
}


@keyframes ddHeadingReveal {

    from {
        opacity: 0;

        transform:
            translate3d(
                -35px,
                -50%,
                0
            );
    }

    to {
        opacity: 1;

        transform:
            translate3d(
                0,
                -50%,
                0
            );
    }

}


/* =========================================================
   DARK LEFT GRADIENT FOR TEXT VISIBILITY
========================================================= */

.dd-slide::after {
    content: "";

    position: absolute;

    inset: 0;

    z-index: 5;

    pointer-events: none;

    background:
        linear-gradient(
            90deg,
            rgba(17, 13, 9, .52) 0%,
            rgba(17, 13, 9, .30) 28%,
            rgba(17, 13, 9, .08) 48%,
            transparent 68%
        );
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 575px) {

    .dd-slide-heading {
        left: 28px;

        width: calc(100% - 56px);

        top: 47%;
    }


    .dd-slide-heading h1,
    .dd-slide-heading h2 {
        font-size: clamp(38px, 11vw, 50px);
    }


    .dd-slide-heading p {
        max-width: 300px;

        font-size: 13px;

        line-height: 1.6;

        margin-top: 16px;
    }


    .dd-heading-kicker {
        font-size: 7px;

        letter-spacing: 2px;
    }

}

/* =========================================================
   TYPEWRITER HEADING
========================================================= */

.dd-slide-heading {
    position: absolute;
    left: clamp(65px, 8vw, 125px);
    top: 50%;
    z-index: 15;

    width: min(600px, 48vw);

    transform: translateY(-50%);

    color: #fff;
}


.dd-heading-kicker {
    display: inline-block;

    margin-bottom: 14px;

    font-size: 8px;
    font-weight: 600;

    letter-spacing: 3px;

    color: rgba(255, 255, 255, .78);
}


.dd-slide-heading h1,
.dd-slide-heading h2 {
    margin: 0;

    font-size: clamp(48px, 5.2vw, 74px);

    line-height: 1;

    font-weight: 500;

    color: #fff;
}


.dd-typewriter-text {
    display: inline-block;

    min-width: 260px;

    margin-left: 7px;

    color: #e1c17d;
}


/* blinking typing cursor */

.dd-typewriter-cursor {
    display: inline-block;

    width: 2px;
    height: .85em;

    margin-left: 4px;

    vertical-align: -2px;

    background: #e1c17d;

    animation:
        ddCursorBlink
        .8s
        steps(1)
        infinite;
}


@keyframes ddCursorBlink {

    0%,
    45% {
        opacity: 1;
    }

    46%,
    100% {
        opacity: 0;
    }

}


/* paragraph */

.dd-slide-heading p {
    max-width: 430px;

    margin: 20px 0 0;

    font-size: 15px;

    line-height: 1.7;

    color: rgba(255, 255, 255, .84);
}


/* optional left shading */

.dd-slide::after {
    content: "";

    position: absolute;
    inset: 0;

    z-index: 5;

    pointer-events: none;

    background:
        linear-gradient(
            90deg,
            rgba(16, 12, 8, .52) 0%,
            rgba(16, 12, 8, .29) 30%,
            rgba(16, 12, 8, .07) 50%,
            transparent 70%
        );
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 575px) {

    .dd-slide-heading {
        left: 27px;
        top: 47%;

        width: calc(100% - 54px);
    }


    .dd-slide-heading h1,
    .dd-slide-heading h2 {
        font-size: clamp(37px, 10.5vw, 48px);
    }


    .dd-typewriter-text {
        display: block;

        min-width: 0;

        margin:
            7px
            0
            0;
    }


    .dd-typewriter-cursor {
        position: absolute;
    }


    .dd-slide-heading p {
        max-width: 300px;

        margin-top: 17px;

        font-size: 13px;
    }

}

/* =========================================================
   FOOTER CONTACT INFO
========================================================= */

.ws-footer-contact {
    min-width: 0;
}


/* Contact row */

.ws-footer-contact-item {
    width: 100%;

    display: flex;

    align-items: flex-start;

    gap: 13px;

    margin-top: 20px;

    text-decoration: none;

    color: inherit;

    transition:
        transform .75s
        cubic-bezier(.16, 1, .3, 1);
}


/* Soft movement */

a.ws-footer-contact-item:hover {
    transform:
        translate3d(
            4px,
            0,
            0
        );
}


/* =========================================================
   PREMIUM ICON
========================================================= */

.ws-footer-contact-icon {
    width: 42px;
    height: 42px;

    flex-shrink: 0;

    position: relative;

    display: flex;

    align-items: center;
    justify-content: center;

    border:
        1px solid
        rgba(
            196,
            157,
            86,
            .55
        );

    border-radius:
        50%;

    background:
        rgba(
            255,
            255,
            255,
            .045
        );

    color: #d0aa64;

    font-size: 13px;

    transition:
        background .7s ease,
        border-color .7s ease,
        color .7s ease,
        transform .7s
        cubic-bezier(.16, 1, .3, 1);
}


/* subtle outer ring */

.ws-footer-contact-icon::after {
    content: "";

    position: absolute;

    inset: 4px;

    border:
        1px solid
        rgba(
            208,
            170,
            100,
            .18
        );

    border-radius: 50%;

    pointer-events: none;
}


/* Hover */

a.ws-footer-contact-item:hover
.ws-footer-contact-icon {
    background: #d0aa64;

    border-color: #d0aa64;

    color: #4e5636;

    transform:
        rotate(-4deg)
        scale(1.04);
}


/* =========================================================
   CONTACT TEXT
========================================================= */

.ws-footer-contact-content {
    min-width: 0;

    padding-top: 2px;
}


.ws-footer-contact-content span {
    display: block;

    margin-bottom: 5px;

    font-family:
        "Montserrat",
        sans-serif;

    font-size: 8px;

    font-weight: 600;

    letter-spacing: 1.8px;

    color:
        rgba(
            208,
            170,
            100,
            .82
        );
}


.ws-footer-contact-content strong {
    display: block;

    max-width: 210px;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 16px;

    line-height: 1.4;

    font-weight: 400;

    color:
        rgba(
            255,
            250,
            238,
            .86
        );

    word-break: break-word;

    transition:
        color .65s ease;
}


a.ws-footer-contact-item:hover
.ws-footer-contact-content strong {
    color: #ffffff;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 575px) {

    .ws-footer-contact-item {
        margin-top: 17px;

        gap: 12px;
    }


    .ws-footer-contact-icon {
        width: 40px;
        height: 40px;

        font-size: 12px;
    }


    .ws-footer-contact-content strong {
        max-width: 260px;

        font-size: 16px;
    }

}



/* =========================================================
   ABOUT SECTION
========================================================= */

.ws-about-section {
    width: 100%;

    margin-top: 100px;

    display: grid;

    grid-template-columns:
        repeat(
            3,
            minmax(0, 1fr)
        );

    height: 520px;

    background: #f9f4eb;

    overflow: hidden;
}


/* =========================================================
   SIDE IMAGES
========================================================= */

/* =========================================================
   PREMIUM ABOUT IMAGE HOVER
   NO TEXT ON IMAGE
========================================================= */

.ws-about-side {
    position: relative;

    min-width: 0;
    height: 100%;

    overflow: hidden;

    background: #e8dfd2;

    isolation: isolate;

    cursor: pointer;
}


/* =========================================================
   IMAGE
========================================================= */

.ws-about-side img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center;

    transform:
        scale(1.025)
        translate3d(0, 0, 0);

    filter:
        saturate(.96)
        contrast(1)
        brightness(1);

    transition:
        transform 1.8s
        cubic-bezier(.16, 1, .3, 1),

        filter 1.3s ease;

    backface-visibility: hidden;

    will-change:
        transform,
        filter;
}


/* =========================================================
   SOFT PREMIUM SHADE
========================================================= */

.ws-about-side::after {
    content: "";

    position: absolute;
    inset: 0;

    z-index: 2;

    pointer-events: none;

    background:
        linear-gradient(
            180deg,
            rgba(25, 18, 12, .015) 0%,
            rgba(25, 18, 12, .035) 55%,
            rgba(25, 18, 12, .10) 100%
        );

    transition:
        background 1.3s ease;
}


/* =========================================================
   PREMIUM LIGHT SWEEP
========================================================= */

.ws-about-side::before {
    content: "";

    position: absolute;

    top: -25%;
    left: -70%;

    width: 38%;
    height: 150%;

    z-index: 3;

    pointer-events: none;

    opacity: 0;

    background:
        linear-gradient(
            105deg,
            transparent 0%,
            rgba(255, 255, 255, .025) 25%,
            rgba(255, 255, 255, .17) 50%,
            rgba(255, 255, 255, .025) 75%,
            transparent 100%
        );

    transform:
        skewX(-15deg);

    transition:
        left 1.55s
        cubic-bezier(.16, 1, .3, 1),

        opacity .55s ease;
}


/* =========================================================
   PREMIUM HOVER
========================================================= */

.ws-about-side:hover img {
    transform:
        scale(1.075)
        translate3d(0, -3px, 0);

    filter:
        saturate(1.055)
        contrast(1.025)
        brightness(.97);
}


.ws-about-side:hover::after {
    background:
        linear-gradient(
            180deg,
            rgba(25, 18, 12, 0) 0%,
            rgba(25, 18, 12, .02) 50%,
            rgba(25, 18, 12, .075) 100%
        );
}


.ws-about-side:hover::before {
    left: 135%;

    opacity: 1;
}


/* =========================================================
   DIFFERENT MOVEMENT FOR BOTH IMAGES
========================================================= */

/* left stitching image */

.ws-about-wool:hover img {
    transform:
        scale(1.075)
        translate3d(5px, -3px, 0);
}


/* right spices image */

.ws-about-spices:hover img {
    transform:
        scale(1.075)
        translate3d(-5px, -3px, 0);
}


/* =========================================================
   SUBTLE EDGE DEPTH
========================================================= */

.ws-about-side {
    box-shadow:
        inset 0 0 0 1px
        rgba(255, 255, 255, .05);
}


/* =========================================================
   TOUCH DEVICES
========================================================= */

@media (hover: none) {

    .ws-about-side {
        cursor: default;
    }


    .ws-about-side img {
        transform: scale(1.025);
    }


    .ws-about-side::before {
        display: none;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .ws-about-side img,
    .ws-about-side::before,
    .ws-about-side::after {
        transition: none !important;
    }

}


/* =========================================================
   CENTER
========================================================= */

.ws-about-center {
    min-width: 0;

    height: 100%;

    position: relative;

    display: flex;

    align-items: center;
    justify-content: center;

    padding:
        25px;

    text-align: center;

    background:
        radial-gradient(
            circle at center,
            #fffdf8 0%,
            #faf5eb 68%,
            #f5ecdd 100%
        );
}


/* =========================================================
   CONTENT
========================================================= */

.ws-about-content {
    width: 100%;

    max-width: 520px;
}


/* =========================================================
   MAIN HEADING
========================================================= */

.ws-about-center h2 {
    margin: 0;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 45px;

    line-height: .28;

    font-weight: 500;

    color: #343828;
}


/* ==========================================
   CONSTANT HEADING
========================================== */

.ws-about-heading-fixed {
    display: block;

    color: #303224;
}


/* ==========================================
   TYPEWRITER LINE
========================================== */

.ws-about-changing-line {
    display: flex !important;

    align-items: center;
    justify-content: center;

    min-height: 62px;

    margin-top: 8px;

    font-weight: 500;

    color: #bd8b3f;
}


/* changing text */

.ws-about-changing-text {
    display: inline-block;

    min-width: 1px;

    white-space: nowrap;

    transform: translateZ(0);

    backface-visibility: hidden;

    -webkit-font-smoothing: antialiased;

    text-rendering: optimizeLegibility;
}


/* ==========================================
   TYPEWRITER CURSOR
========================================== */

.ws-about-cursor {
    width: 2px;
    height: .78em;

    display: inline-block;

    margin-left: 5px;

    background: #bd8b3f;

    transform: translateZ(0);

    animation:
        wsAboutCursorBlink
        .9s
        ease-in-out
        infinite;
}


@keyframes wsAboutCursorBlink {

    0%,
    40% {
        opacity: 1;
    }

    60%,
    100% {
        opacity: 0;
    }

}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 991px) {

    .ws-about-changing-line {
        min-height: 58px;
    }

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 575px) {

    .ws-about-changing-line {
        min-height: 52px;

        margin-top: 6px;
    }


    .ws-about-changing-text {
        /*
           Slightly reduce only if a phrase
           becomes too wide on mobile.
        */

        white-space: normal;

        text-align: center;
    }


    .ws-about-cursor {
        flex-shrink: 0;
    }


    .ws-about-intro {
        margin-top: 22px;

        font-size: 12px;

        line-height: 1.75;
    }

}


/* ONE FAMILY STORY */

.ws-about-center h2 strong {
    display: block;

    margin-top: 8px;

    font-weight: 500;

    color: #bd8b3f;

    opacity: 0;

    transform:
        translate3d(
            0,
            18px,
            0
        );

    animation:
        wsAboutHeadingReveal
        1.3s
        cubic-bezier(.16, 1, .3, 1)
        .25s
        forwards;
}


/* =========================================================
   SECOND HEADING SOFT REVEAL
========================================================= */

@keyframes wsAboutHeadingReveal {

    from {
        opacity: 0;

        transform:
            translate3d(
                0,
                18px,
                0
            );
    }

    to {
        opacity: 1;

        transform:
            translate3d(
                0,
                0,
                0
            );
    }

}


/* =========================================================
   DESCRIPTION
========================================================= */

.ws-about-intro {
    max-width: 470px;

    margin:
        10px
        auto
        0;

    font-family:
        "Montserrat",
        sans-serif;

    font-size: 14px;

    font-weight: 400;

    line-height: 1.75;

    color: #59554c;

    opacity: 0;

    transform:
        translate3d(
            0,
            14px,
            0
        );

    animation:
        wsAboutDescriptionReveal
        1.3s
        cubic-bezier(.16, 1, .3, 1)
        .55s
        forwards;
}


/* =========================================================
   DESCRIPTION REVEAL
========================================================= */

@keyframes wsAboutDescriptionReveal {

    from {
        opacity: 0;

        transform:
            translate3d(
                0,
                14px,
                0
            );
    }

    to {
        opacity: 1;

        transform:
            translate3d(
                0,
                0,
                0
            );
    }

}


/* =========================================================
   LARGE LAPTOP
========================================================= */

@media (max-width: 1200px) {

    .ws-about-section {
        height: 490px;
    }


    .ws-about-center {
        padding:
            40px
            30px;
    }


    .ws-about-center h2 {
        font-size: 46px;
    }


    .ws-about-intro {
        font-size: 12px;

        line-height: 1.7;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .ws-about-section {
        margin-top: 55px;

        height: auto;

        grid-template-columns: 1fr;
    }


    .ws-about-wool,
    .ws-about-spices {
        height: 320px;
    }


    .ws-about-center {
        min-height: 390px;

        padding:
            60px
            35px;
    }


    .ws-about-content {
        max-width: 650px;
    }


    .ws-about-center h2 {
        font-size:
            clamp(
                44px,
                7vw,
                54px
            );
    }


    .ws-about-intro {
        max-width: 560px;

        font-size: 13px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 575px) {

    .ws-about-section {
        margin-top: 40px;
    }


    .ws-about-wool,
    .ws-about-spices {
        height: 260px;
    }


    .ws-about-center {
        min-height: 350px;

        padding:
            45px
            22px;
    }


    .ws-about-center h2 {
        font-size:
            clamp(
                38px,
                11vw,
                46px
            );
    }


    .ws-about-center h2 strong {
        margin-top: 6px;
    }


    .ws-about-intro {
        margin-top: 22px;

        font-size: 12px;

        line-height: 1.7;
    }

}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 390px) {

    .ws-about-center {
        padding:
            40px
            18px;
    }


    .ws-about-center h2 {
        font-size: 37px;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .ws-about-side img {
        transition: none;
    }


    .ws-about-center h2 strong,
    .ws-about-intro {
        opacity: 1;

        transform: none;

        animation: none;
    }

}





/* =========================================================
   STITCHING SHOWCASE SECTION
========================================================= */

.wool-showcase-section {
    width: 100%;

    margin-top: 70px;

    position: relative;

    overflow: hidden;

    /* background:
        radial-gradient(
            circle at 10% 15%,
            rgba(183, 147, 78, .08),
            transparent 30%
        ),
        #f8f3ea; */
}


/* =========================================================
   CONTAINER
========================================================= */

.wool-showcase-container {
    width: 100%;

    min-height: 620px;

    display: grid;

    grid-template-columns:
        minmax(360px, 47%)
        minmax(0, 53%);

    position: relative;
}


/* =========================================================
   LEFT CONTENT
========================================================= */

.wool-showcase-content {
    position: relative;

    z-index: 5;

    display: flex;

    flex-direction: column;

    justify-content: center;

    padding:
        60px
        clamp(35px, 7vw, 135px);
}


/* =========================================================
   MAIN HEADING
========================================================= */

.wool-main-heading {
    margin: 0;
    display: flex;
    font-family:
        "Cormorant Garamond",
        serif;
    gap: 13px;
    font-weight: 400;

    line-height: 1;

    color: #282821;
}


.wool-fixed-title {
    display: block;

    font-size: 45px;
}


/* =========================================================
   TYPEWRITER LINE
========================================================= */

.wool-rotating-line {
    /* min-height: 48px; */

    margin-top: 7px;
    gap: 10px;
    display: flex;

    /* align-items: center; */

    color: #bd8b3f;
}


.wool-rotating-text {
    display: inline-block;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 40px;

    line-height: 1;

    font-weight: 400;

    white-space: nowrap;

    transform: translateZ(0);

    backface-visibility: hidden;

    -webkit-font-smoothing:
        antialiased;

    text-rendering:
        optimizeLegibility;
}


/* =========================================================
   TYPEWRITER CURSOR
========================================================= */

.wool-type-cursor {
    width: 2px;

    height: 34px;

    margin-left: 5px;

    display: inline-block;

    flex-shrink: 0;

    background: #ad8848;

    animation:
        woolCursorBlink
        .9s
        ease-in-out
        infinite;
}


@keyframes woolCursorBlink {

    0%,
    42% {
        opacity: 1;
    }

    58%,
    100% {
        opacity: 0;
    }

}


/* =========================================================
   DESCRIPTION
========================================================= */

.wool-description {
    width: 100%;

    max-width: 470px;

    margin:
        15px
        0
        0;

    font-family:
        "Montserrat",
        sans-serif;

    font-size: 14px;

    line-height: 1.95;

    color: #514c40;
}


/* =========================================================
   BENEFITS
========================================================= */

.wool-points {
    width: 100%;

    max-width: 500px;

    margin:
        27px
        0
        0;

    display: grid;

    grid-template-columns:
        repeat(
            2,
            minmax(0, 1fr)
        );

    gap:
        14px
        22px;
}


.wool-point {
    display: flex;

    align-items: center;

    gap: 10px;

    font-family:
        "Montserrat",
        sans-serif;

    font-size: 12px;

    font-weight: 500;

    line-height: 1.4;

    color: #4d493f;
}


/* check icon */

.wool-point i {
    width: 26px;
    height: 26px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border:
        1px solid
        rgba(83, 89, 54, .35);

    border-radius: 50%;

    background:
        rgba(83, 89, 54, .10);

    color: #535936;

    font-size: 10px;

    transition:
        background .55s ease,
        color .55s ease,
        transform .65s
        cubic-bezier(.16, 1, .3, 1);
}


.wool-point:hover i {
    background: #59603b;

    color: #ffffff;

    transform:
        rotate(-7deg)
        scale(1.04);
}


/* =========================================================
   HERITAGE / STITCHING NOTE
========================================================= */

.wool-heritage-note {
    width: 100%;

    max-width: 470px;

    margin-top: 27px;

    padding:
        15px
        18px;

    border-left:
        2px solid
        #ad8848;

    background:
        linear-gradient(
            90deg,
            rgba(173, 136, 72, .09),
            rgba(173, 136, 72, .015)
        );
}


.wool-heritage-note span {
    display: block;

    margin-bottom: 5px;

    font-family:
        "Montserrat",
        sans-serif;

    font-size: 9px;

    font-weight: 600;

    letter-spacing: 2px;

    color: #9c783d;
}


.wool-heritage-note p {
    max-width: 390px;

    margin: 0;

    font-family:
        "Montserrat",
        sans-serif;

    font-size: 11px;

    line-height: 1.6;

    color: #625d52;
}


/* =========================================================
   BUTTON
========================================================= */

.dd-btn {
    width: fit-content;

    min-height: 48px;

    padding:
        0
        23px;

    position: relative;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 11px;

    overflow: hidden;

    border:
        1px solid
        #bd8b3f;

    border-radius: 6px;

    text-decoration: none;

    font-family:
        "Montserrat",
        sans-serif;

    font-size: 9px;

    font-weight: 600;

    letter-spacing: 1px;

    cursor: pointer;

    isolation: isolate;

    transition:
        color .65s ease,
        border-color .65s ease,
        transform .65s
        cubic-bezier(.16, 1, .3, 1),
        box-shadow .65s ease;
}


.dd-btn::before {
    content: "";

    position: absolute;

    inset: 0;

    z-index: -1;

    background: #bd8b3f;

    transform:
        scaleX(0);

    transform-origin:
        right center;

    transition:
        transform .65s
        cubic-bezier(.16, 1, .3, 1);
}


.dd-btn span,
.dd-btn i {
    position: relative;

    z-index: 2;
}


.dd-btn i {
    transition:
        transform .65s
        cubic-bezier(.16, 1, .3, 1);
}


.dd-btn-primary {
    background: transparent;

    color: #bd8b3f;
}


.dd-btn:hover {
    color: #fff;

    transform:
        translate3d(
            0,
            -2px,
            0
        );
}


.dd-btn:hover::before {
    transform:
        scaleX(1);

    transform-origin:
        left center;
}


.dd-btn:hover i {
    transform:
        translateX(4px);
}


.wool-explore-btn {
    margin-top: 30px;
}


/* =========================================================
   RIGHT VISUAL
========================================================= */

.wool-showcase-visual {
    min-width: 0;

    min-height: 620px;

    position: relative;

    overflow: visible;
}


/* =========================================================
   MAIN IMAGE
========================================================= */

.wool-main-image {
    position: absolute;

    top: 18px;

    right: 0;

    bottom: 72px;

    left: 55px;

    overflow: hidden;

    border-radius:
        150px
        0
        0
        70px;

    /* clip-path:
        ellipse(
            115%
            105%
            at
            100%
            100%
        ); */

    box-shadow:
        0 14px 40px
        rgba(39, 30, 20, .10);
}


/* curved top-right cut */

.wool-main-image::after {
    content: "";

    position: absolute;

    top: -115px;

    right: -115px;

    width: 235px;
    height: 235px;

    border-radius: 50%;

    background: #fff;

    pointer-events: none;
}


/* image */

.wool-main-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    object-position: center;

    transform:
        scale(1);

    transition:
        transform 1.4s
        cubic-bezier(.16, 1, .3, 1);
}


.wool-main-image:hover img {
    transform:
        scale(1.025);
}


/* =========================================================
   THREE FLOATING CARDS ROW
========================================================= */

.wool-cards-row {
    position: absolute;

    left: -55px;

    right: 35px;

    bottom: 18px;

    z-index: 10;

    display: grid;

    grid-template-columns:
        repeat(
            3,
            minmax(0, 1fr)
        );

    gap: 18px;

    align-items: end;

    pointer-events: none;
}


/* =========================================================
   FLOATING CARD DEFAULT / HIDDEN
========================================================= */

/* =========================================================
   PREMIUM SOFT CARD REVEAL
========================================================= */

.wool-floating-card {
    width: 100%;
    max-width: 205px;
    height: 225px;

    position: relative;
    justify-self: center;

    overflow: hidden;

    border: 5px solid #f7f1e7;
    border-radius: 12px;

    background: #f7f1e7;

    box-shadow:
        0 14px 35px
        rgba(34, 25, 15, .16);

    opacity: 0;

    transform:
        translate3d(0, 85px, 0)
        scale(.90);

    filter:
        blur(7px);

    pointer-events: auto;

    transition:
        opacity 1.35s ease,
        transform 1.8s cubic-bezier(.16, 1, .3, 1),
        filter 1.4s ease,
        box-shadow 1.2s ease;

    will-change:
        opacity,
        transform,
        filter;
}


/* =========================================================
   VISIBLE STATE
========================================================= */

.wool-floating-card.show-card {
    opacity: 1;

    transform:
        translate3d(0, 0, 0)
        scale(1);

    filter:
        blur(0);
}


/* =========================================================
   CARD IMAGE
========================================================= */

.wool-floating-card > img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transform:
        scale(1.08);

    transition:
        transform 2s cubic-bezier(.16, 1, .3, 1);
}


/* image settles while card enters */

.wool-floating-card.show-card > img {
    transform:
        scale(1);
}


/* =========================================================
   HOVER
========================================================= */

.wool-floating-card.show-card:hover {
    transform:
        translate3d(0, -5px, 0)
        scale(1.008);

    box-shadow:
        0 20px 42px
        rgba(34, 25, 15, .23);
}


.wool-floating-card.show-card:hover > img {
    transform:
        scale(1.035);
}

/* =========================================================
   LAPTOP
========================================================= */

@media (max-width: 1250px) {

    .wool-showcase-container {
        min-height: 590px;

        grid-template-columns:
            45%
            55%;
    }


    .wool-showcase-content {
        padding:
            50px
            45px;
    }


    .wool-main-image {
        left: 40px;

        border-radius:
            125px
            0
            0
            60px;
    }


    .wool-cards-row {
        left: -35px;

        right: 20px;

        gap: 12px;
    }


    .wool-floating-card {
        max-width: 175px;

        height: 190px;

        border-width: 4px;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .wool-showcase-section {
        margin-top: 55px;
    }


    .wool-showcase-container {
        min-height: auto;

        display: flex;

        flex-direction: column;
    }


    .wool-showcase-content {
        padding:
            60px
            35px;

        align-items: center;

        text-align: center;
    }


    .wool-description {
        max-width: 620px;
    }


    .wool-points {
        max-width: 600px;
    }


    .wool-heritage-note {
        max-width: 600px;

        text-align: left;
    }


    .wool-showcase-visual {
        width: 100%;

        min-height: 670px;
    }


    .wool-main-image {
        top: 0;

        left: 6%;

        right: 0;

        bottom: 135px;

        border-radius:
            120px
            0
            0
            55px;
    }


    .wool-main-image::after {
        width: 200px;
        height: 200px;

        top: -105px;
        right: -105px;
    }


    .wool-cards-row {
        left: 4%;

        right: 4%;

        bottom: 20px;

        gap: 14px;
    }


    .wool-floating-card {
        max-width: 210px;

        height: 200px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 575px) {

    .wool-showcase-section {
        margin-top: 40px;
    }


    .wool-showcase-content {
        padding:
            45px
            18px;
    }


    .wool-fixed-title {
        font-size: 42px;
    }


    .wool-rotating-line {
        min-height: 46px;

        justify-content: center;
    }


    .wool-rotating-text {
        font-size: 34px;

        white-space: normal;

        text-align: center;
    }


    .wool-type-cursor {
        height: 30px;
    }


    .wool-description {
        max-width: 430px;

        font-size: 14px;
    }


    .wool-points {
        width: 100%;

        grid-template-columns: 1fr;

        gap: 12px;
    }


    .wool-point {
        font-size: 12px;

        text-align: left;
    }


    .wool-heritage-note {
        width: 100%;

        margin-top: 24px;

        text-align: left;
    }


    .wool-explore-btn {
        width: 100%;

        margin-top: 28px;
    }


    .wool-showcase-visual {
        min-height: auto;

        padding:
            0
            14px
            35px;
    }


    .wool-main-image {
        position: relative;

        top: auto;
        right: auto;
        bottom: auto;
        left: auto;

        width: 100%;
        height: 450px;

        border-radius:
            70px
            0
            0
            35px;
    }


    .wool-main-image::after {
        width: 125px;
        height: 125px;

        top: -66px;
        right: -66px;
    }


    /* floating cards become row */

    .wool-cards-row {
        position: relative;

        left: auto;
        right: auto;
        bottom: auto;

        width: 100%;

        margin-top: 14px;

        display: grid;

        grid-template-columns:
            repeat(
                3,
                1fr
            );

        gap: 8px;
    }


    .wool-floating-card {
        width: 100%;

        max-width: none;

        height: 135px;

        border-width: 3px;
    }


    .wool-showcase-section.cards-visible
    .wool-floating-card:hover {
        transform:
            translate3d(
                0,
                0,
                0
            )
            scale(1);
    }

}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 390px) {

    .wool-fixed-title {
        font-size: 39px;
    }


    .wool-rotating-text {
        font-size: 30px;
    }


    .wool-main-image {
        height: 390px;
    }


    .wool-floating-card {
        height: 115px;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .wool-main-image img,
    .wool-floating-card,
    .wool-floating-card > img,
    .dd-btn,
    .dd-btn::before,
    .dd-btn i {
        transition: none !important;
    }


    .wool-showcase-section.cards-visible
    .wool-floating-card {
        opacity: 1;

        visibility: visible;

        transform: none;

        transition-delay: 0s;
    }

}



/* ==========================================
   SCISSOR CUTTING DIVIDER
========================================== */

.scissor-divider-section {
    width: 100%;
    padding: 50px 0;
    overflow: hidden;
    background: transparent;
}

.scissor-divider {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 70px;
    overflow: hidden;
}

/* Base dashed line */
.scissor-line-base {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;

    transform: translateY(-50%);

    height: 0;
    border-top: 1.5px dashed #c7a978;
    opacity: 0.9;
}

/* Animated cut-progress line */
.scissor-line-cut {
    position: absolute;
    left: 0;
    top: 50%;

    transform: translateY(-50%);

    width: 0;
    height: 0;
    border-top: 2px dashed #8e6b34;
    opacity: 0;
}

/* Scissor */
.scissor-icon {
    position: absolute;
    top: 50%;
    left: 0;

    transform: translateY(-50%) rotate(8deg);

    width: 54px;
    height: 54px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #1f2a1f;
    font-size: 34px;
    line-height: 1;

    opacity: 0;
    z-index: 3;
}

/* small glowing cutting point */
.scissor-icon::after {
    content: "";

    position: absolute;
    right: 8px;
    top: 29px;

    width: 8px;
    height: 8px;

    border-radius: 50%;
    background: #c89d58;

    box-shadow:
        0 0 0 4px rgba(200, 157, 88, 0.10),
        0 0 12px rgba(200, 157, 88, 0.45);
}


/* ==========================================
   ACTIVE ANIMATION
========================================== */

.scissor-divider.is-active .scissor-icon {
    opacity: 1;
    animation: scissorMove 3.2s ease-in-out forwards;
}

.scissor-divider.is-active .scissor-line-cut {
    opacity: 1;
    animation: cutLine 3.2s ease-in-out forwards;
}


/* ==========================================
   KEYFRAMES
========================================== */

@keyframes scissorMove {
    0% {
        left: -10px;
        transform: translateY(-50%) rotate(8deg);
    }

    12% {
        transform: translateY(-50%) rotate(-2deg);
    }

    24% {
        transform: translateY(-50%) rotate(8deg);
    }

    36% {
        transform: translateY(-50%) rotate(-2deg);
    }

    48% {
        transform: translateY(-50%) rotate(8deg);
    }

    60% {
        transform: translateY(-50%) rotate(-2deg);
    }

    72% {
        transform: translateY(-50%) rotate(8deg);
    }

    84% {
        transform: translateY(-50%) rotate(-2deg);
    }

    100% {
        left: calc(100% - 42px);
        transform: translateY(-50%) rotate(8deg);
    }
}

@keyframes cutLine {
    0% {
        width: 0;
    }

    100% {
        width: 100%;
    }
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 991px) {
    .scissor-divider {
        height: 60px;
    }

    .scissor-icon {
        width: 48px;
        height: 48px;
        font-size: 30px;
    }

    .scissor-icon::after {
        right: 7px;
        top: 26px;
    }
}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 575px) {
    .scissor-divider-section {
        padding: 22px 0;
    }

    .scissor-divider {
        height: 52px;
    }

    .scissor-icon {
        width: 42px;
        height: 42px;
        font-size: 26px;
    }

    .scissor-icon::after {
        right: 6px;
        top: 22px;

        width: 6px;
        height: 6px;
    }
}





/* =========================================================
   SPICE / CHUTNEY SHOWCASE
========================================================= */

.spice-showcase-section {
    width: 100%;

    position: relative;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 90% 15%,
            rgba(132, 30, 34, .07),
            transparent 32%
        ),
        #f8f3ea;
}


/* =========================================================
   CONTAINER
========================================================= */

.spice-showcase-container {
    width: 100%;

    height: 600px;

    display: grid;

    grid-template-columns:
        56% 44%;

    align-items: stretch;
}


/* =========================================================
   LEFT VISUAL AREA
========================================================= */

.spice-showcase-visual {
    min-width: 0;

    height: 600px;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        175px;

    gap: 10px;

    padding:
        14px
        0
        14px
        16px;
}


/* =========================================================
   MAIN IMAGE - PREMIUM ORGANIC SHAPE
========================================================= */

.spice-main-image {
    width: 100%;
    height: 100%;

    position: relative;

    overflow: hidden;

    /*
       Main soft sculpted shape.
    */
    border-radius:
        0
        170px
        70px
        140px;

    box-shadow:
        0 18px 45px
        rgba(45, 30, 20, .10);
}


/*
   Creates a smooth inward cut at top-left.
*/

.spice-main-image::before {
    content: "";

    position: absolute;

    top: -105px;
    left: -105px;

    width: 220px;
    height: 220px;

    z-index: 2;

    border-radius: 50%;

    background: #F2EDE5;

    pointer-events: none;
}


/*
   Gentle second curve at bottom-right.
*/

.spice-main-image::after {
    content: "";

    position: absolute;

    right: -75px;
    bottom: -75px;

    width: 150px;
    height: 150px;

    z-index: 2;

    border-radius: 50%;

    background: #EEE9E0;

    pointer-events: none;
}


.spice-main-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center;

    transform:
        scale(1);

    transition:
        transform 1.5s
        cubic-bezier(.16, 1, .3, 1);
}


.spice-main-image:hover img {
    transform:
        scale(1.025);
}


/* =========================================================
   SMALL IMAGE CARD COLUMN
========================================================= */

.spice-cards-column {
    width: 100%;
    height: 100%;

    display: grid;

    grid-template-rows:
        repeat(
            3,
            minmax(0, 1fr)
        );

    gap: 10px;
}


/* =========================================================
   IMAGE-ONLY CARD
========================================================= */

.spice-floating-card {
    width: 100%;
    height: 100%;

    min-height: 0;

    position: relative;

    overflow: hidden;

    border:
        4px solid
        #f7f1e7;

    border-radius: 12px;

    background: #f7f1e7;

    box-shadow:
        0 10px 24px
        rgba(50, 30, 18, .15);

    opacity: 0;

    transform:
        translate3d(
            35px,
            0,
            0
        )
        scale(.97);

    transition:
        opacity .9s ease,

        transform 1.05s
        cubic-bezier(.16, 1, .3, 1),

        box-shadow .85s ease;

    will-change:
        transform,
        opacity;
}


.spice-floating-card > img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transform:
        scale(1);

    transition:
        transform 1.5s
        cubic-bezier(.16, 1, .3, 1);
}


/* =========================================================
   CARD REVEAL
========================================================= */

.spice-showcase-section.cards-visible
.spice-card-one {
    opacity: 1;

    transform:
        translate3d(
            0,
            0,
            0
        )
        scale(1);

    transition-delay: 0s;
}


.spice-showcase-section.cards-visible
.spice-card-two {
    opacity: 1;

    transform:
        translate3d(
            0,
            0,
            0
        )
        scale(1);

    transition-delay: .35s;
}


.spice-showcase-section.cards-visible
.spice-card-three {
    opacity: 1;

    transform:
        translate3d(
            0,
            0,
            0
        )
        scale(1);

    transition-delay: .70s;
}


.spice-showcase-section:not(.cards-visible)
.spice-floating-card {
    transition-delay: 0s;
}


/* =========================================================
   CARD HOVER
========================================================= */

.spice-showcase-section.cards-visible
.spice-floating-card:hover {
    transform:
        translate3d(
            -2px,
            0,
            0
        )
        scale(1.006);

    box-shadow:
        0 16px 34px
        rgba(50, 30, 18, .20);

    transition-delay: 0s;
}


.spice-floating-card:hover > img {
    transform:
        scale(1.035);
}


/* =========================================================
   RIGHT CONTENT
========================================================= */

.spice-showcase-content {
    height: 600px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    padding:
        35px
        50px;

    overflow: hidden;
}


/* =========================================================
   MAIN HEADING
========================================================= */

.spice-main-heading {
    margin: 0;

    font-family:
        "Cormorant Garamond",
        serif;

    font-weight: 400;

    line-height: 1;

    color: #30261f;
}


/* fixed line */

.spice-fixed-title {
    display: block;

    font-size: 42px;
}


/* =========================================================
   ROTATING LINE
========================================================= */

.spice-rotating-line {
    min-height: 48px;

    margin-top: 6px;

    display: flex;

    align-items: center;

    color: #842428;
}


.spice-rotating-text {
    display: inline-block;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 40px;

    line-height: 1;

    font-weight: 400;

    white-space: nowrap;
    color: #bd8b3f;
    transform:
        translateZ(0);

    backface-visibility: hidden;

    -webkit-font-smoothing:
        antialiased;
}


/* =========================================================
   TYPE CURSOR
========================================================= */

.spice-type-cursor {
    width: 2px;

    height: 34px;

    margin-left: 5px;

    display: inline-block;

    flex-shrink: 0;

    background: #842428;

    animation:
        spiceCursorBlink
        .9s
        ease-in-out
        infinite;
}


@keyframes spiceCursorBlink {

    0%,
    42% {
        opacity: 1;
    }

    58%,
    100% {
        opacity: 0;
    }

}


/* =========================================================
   DESCRIPTION
========================================================= */

.spice-description {
    max-width: 470px;

    margin:
        24px
        0
        0;

    font-family:
        Montserrat, sans-serif;

    font-size: 14px;

    line-height: 1.9;

    color: #554a42;
}


/* =========================================================
   POINTS
========================================================= */

.spice-points {
    width: 100%;

    max-width: 470px;

    margin:
        24px
        0
        0;

    display: grid;

    grid-template-columns:
        repeat(
            2,
            minmax(0, 1fr)
        );

    gap:
        14px
        18px;
}


.spice-point {
    display: flex;

    align-items: center;

    gap: 8px;

    font-family:
        "Montserrat",
        sans-serif;

    font-size: 10px;

    font-weight: 500;

    color: #50463e;
}


.spice-point i {
    width: 23px;
    height: 23px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        rgba(132, 30, 34, .08);

    border:
        1px solid
        rgba(132, 30, 34, .28);

    color: #842428;

    font-size: 8px;
}


/* =========================================================
   HERITAGE NOTE
========================================================= */

.spice-heritage-note {
    width: 100%;

    max-width: 470px;

    margin-top: 24px;

    padding:
        15px
        17px;

    border-left:
        2px solid
        #842428;

    background:
        linear-gradient(
            90deg,
            rgba(132, 30, 34, .07),
            transparent
        );
}


.spice-heritage-note span {
    display: block;

    margin-bottom: 5px;

    font-family:
        "Montserrat",
        sans-serif;

    font-size: 8px;

    font-weight: 600;

    letter-spacing: 1.7px;

    color: #9a5232;
}


.spice-heritage-note p {
    margin: 0;

    max-width: 410px;

    font-family:
        "Montserrat",
        sans-serif;

    font-size: 10px;

    line-height: 1.55;

    color: #665950;
}


/* =========================================================
   BUTTON
========================================================= */

.spice-explore-btn {
    margin-top: 28px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .spice-showcase-container {
        height: auto;

        grid-template-columns: 1fr;
    }


    .spice-showcase-content {
        order: 1;

        height: auto;

        padding:
            55px
            30px;

        align-items: center;

        text-align: center;

        overflow: visible;
    }


    .spice-description {
        max-width: 620px;
    }


    .spice-points {
        max-width: 620px;
    }


    .spice-heritage-note {
        max-width: 600px;

        text-align: left;
    }


    .spice-showcase-visual {
        order: 2;

        height: 500px;

        grid-template-columns:
            minmax(0, 1fr)
            155px;

        padding:
            0
            18px
            20px;
    }


    .spice-main-image {
        border-radius:
            0
            130px
            55px
            100px;
    }


    .spice-main-image::before {
        width: 180px;
        height: 180px;

        top: -90px;
        left: -90px;
    }


    .spice-main-image::after {
        width: 120px;
        height: 120px;

        right: -60px;
        bottom: -60px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 575px) {

    .spice-showcase-section {
        margin-top: 40px;
    }


    .spice-showcase-content {
        padding:
            42px
            18px;
    }


    .spice-fixed-title {
        font-size: 40px;
    }


    .spice-rotating-line {
        min-height: 45px;

        justify-content: center;
    }


    .spice-rotating-text {
        font-size: 34px;

        white-space: normal;

        text-align: center;
    }


    .spice-type-cursor {
        height: 29px;
    }


    .spice-description {
        max-width: 430px;

        font-size: 14px;
    }


    .spice-points {
        width: 100%;

        grid-template-columns: 1fr;

        text-align: left;
    }


    .spice-heritage-note {
        width: 100%;

        text-align: left;
    }


    .spice-explore-btn {
        width: 100%;
    }


    /* VISUAL */

    .spice-showcase-visual {
        /* height: auto; */

        display: block;

        padding:
            0
            14px
            30px;
    }


    .spice-main-image {
        width: 100%;

        height: 320px;

        border-radius:
            0
            75px
            35px
            65px;
    }


    .spice-main-image::before {
        width: 110px;
        height: 110px;

        top: -55px;
        left: -55px;
    }


    .spice-main-image::after {
        width: 80px;
        height: 80px;

        right: -40px;
        bottom: -40px;
    }


    /* cards become 3-image row */

    .spice-cards-column {
        height: auto;

        margin-top: 10px;

        display: grid;

        grid-template-columns:
            repeat(
                3,
                1fr
            );

        gap: 8px;
    }


    .spice-floating-card {
        height: 125px;

        transform:
            translate3d(
                0,
                28px,
                0
            )
            scale(.97);
    }


    .spice-showcase-section.cards-visible
    .spice-card-one,

    .spice-showcase-section.cards-visible
    .spice-card-two,

    .spice-showcase-section.cards-visible
    .spice-card-three {

        transform:
            translate3d(
                0,
                0,
                0
            )
            scale(1);
    }

}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 390px) {

    .spice-fixed-title {
        font-size: 38px;
    }


    .spice-rotating-text {
        font-size: 30px;
    }


    .spice-main-image {
        height: 285px;
    }


    .spice-floating-card {
        height: 105px;
    }

}



/* =========================================================
   ABOUT SECTION
========================================================= */
.ws-about-section-wrap {
    width: 100%;
    margin-top: 100px;
}

.ws-about-top-heading {
    text-align: center;
    margin-bottom: 35px;
}

.ws-about-top-heading h2 {
    margin: 0;

    font-family: "Cormorant Garamond", serif;

    font-size: 42px;
    line-height: 1.2;

    font-weight: 500;

    color: #343828;
}


.ws-about-section {
    width: 100%;

    margin-top: 20px;

    display: grid;

    grid-template-columns:
        repeat(
            3,
            minmax(0, 1fr)
        );

    height: 520px;

    background: #f9f4eb;

    overflow: hidden;
}


/* =========================================================
   SIDE IMAGES
========================================================= */

/* =========================================================
   PREMIUM ABOUT IMAGE HOVER
   NO TEXT ON IMAGE
========================================================= */

.ws-about-side {
    position: relative;

    min-width: 0;
    height: 100%;

    overflow: hidden;

    background: #e8dfd2;

    isolation: isolate;

    cursor: pointer;
}


/* =========================================================
   IMAGE
========================================================= */

.ws-about-side img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center;

    transform:
        scale(1.025)
        translate3d(0, 0, 0);

    filter:
        saturate(.96)
        contrast(1)
        brightness(1);

    transition:
        transform 1.8s
        cubic-bezier(.16, 1, .3, 1),

        filter 1.3s ease;

    backface-visibility: hidden;

    will-change:
        transform,
        filter;
}


/* =========================================================
   SOFT PREMIUM SHADE
========================================================= */

.ws-about-side::after {
    content: "";

    position: absolute;
    inset: 0;

    z-index: 2;

    pointer-events: none;

    background:
        linear-gradient(
            180deg,
            rgba(25, 18, 12, .015) 0%,
            rgba(25, 18, 12, .035) 55%,
            rgba(25, 18, 12, .10) 100%
        );

    transition:
        background 1.3s ease;
}


/* =========================================================
   PREMIUM LIGHT SWEEP
========================================================= */

.ws-about-side::before {
    content: "";

    position: absolute;

    top: -25%;
    left: -70%;

    width: 38%;
    height: 150%;

    z-index: 3;

    pointer-events: none;

    opacity: 0;

    background:
        linear-gradient(
            105deg,
            transparent 0%,
            rgba(255, 255, 255, .025) 25%,
            rgba(255, 255, 255, .17) 50%,
            rgba(255, 255, 255, .025) 75%,
            transparent 100%
        );

    transform:
        skewX(-15deg);

    transition:
        left 1.55s
        cubic-bezier(.16, 1, .3, 1),

        opacity .55s ease;
}


/* =========================================================
   PREMIUM HOVER
========================================================= */

.ws-about-side:hover img {
    transform:
        scale(1.075)
        translate3d(0, -3px, 0);

    filter:
        saturate(1.055)
        contrast(1.025)
        brightness(.97);
}


.ws-about-side:hover::after {
    background:
        linear-gradient(
            180deg,
            rgba(25, 18, 12, 0) 0%,
            rgba(25, 18, 12, .02) 50%,
            rgba(25, 18, 12, .075) 100%
        );
}


.ws-about-side:hover::before {
    left: 135%;

    opacity: 1;
}


/* =========================================================
   DIFFERENT MOVEMENT FOR BOTH IMAGES
========================================================= */

/* left stitching image */

.ws-about-wool:hover img {
    transform:
        scale(1.075)
        translate3d(5px, -3px, 0);
}


/* right spices image */

.ws-about-spices:hover img {
    transform:
        scale(1.075)
        translate3d(-5px, -3px, 0);
}


/* =========================================================
   SUBTLE EDGE DEPTH
========================================================= */

.ws-about-side {
    box-shadow:
        inset 0 0 0 1px
        rgba(255, 255, 255, .05);
}


/* =========================================================
   TOUCH DEVICES
========================================================= */

@media (hover: none) {

    .ws-about-side {
        cursor: default;
    }


    .ws-about-side img {
        transform: scale(1.025);
    }


    .ws-about-side::before {
        display: none;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .ws-about-side img,
    .ws-about-side::before,
    .ws-about-side::after {
        transition: none !important;
    }

}


/* =========================================================
   CENTER
========================================================= */

.ws-about-center {
    min-width: 0;

    height: 100%;

    position: relative;

    display: flex;

    align-items: center;
    justify-content: center;

    padding:
        25px;

    text-align: center;

    background:
        radial-gradient(
            circle at center,
            #fffdf8 0%,
            #faf5eb 68%,
            #f5ecdd 100%
        );
}


/* =========================================================
   CONTENT
========================================================= */

.ws-about-content {
    width: 100%;

    max-width: 520px;
}


/* =========================================================
   MAIN HEADING
========================================================= */

.ws-about-center h2 {
    margin: 0;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 45px;

    line-height: .28;

    font-weight: 500;

    color: #343828;
}


/* ==========================================
   CONSTANT HEADING
========================================== */

.ws-about-heading-fixed {
    display: block;

    color: #303224;
}


/* ==========================================
   TYPEWRITER LINE
========================================== */

.ws-about-changing-line {
    display: flex !important;

    align-items: center;
    justify-content: center;

    min-height: 62px;

    margin-top: 8px;

    font-weight: 500;

    color: #bd8b3f;
}


/* changing text */

.ws-about-changing-text {
    display: inline-block;

    min-width: 1px;

    white-space: nowrap;

    transform: translateZ(0);

    backface-visibility: hidden;

    -webkit-font-smoothing: antialiased;

    text-rendering: optimizeLegibility;
}


/* ==========================================
   TYPEWRITER CURSOR
========================================== */

.ws-about-cursor {
    width: 2px;
    height: .78em;

    display: inline-block;

    margin-left: 5px;

    background: #bd8b3f;

    transform: translateZ(0);

    animation:
        wsAboutCursorBlink
        .9s
        ease-in-out
        infinite;
}


@keyframes wsAboutCursorBlink {

    0%,
    40% {
        opacity: 1;
    }

    60%,
    100% {
        opacity: 0;
    }

}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 991px) {

    .ws-about-changing-line {
        min-height: 58px;
    }

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 575px) {

    .ws-about-changing-line {
        min-height: 52px;

        margin-top: 6px;
    }


    .ws-about-changing-text {
        /*
           Slightly reduce only if a phrase
           becomes too wide on mobile.
        */

        white-space: normal;

        text-align: center;
    }


    .ws-about-cursor {
        flex-shrink: 0;
    }


    .ws-about-intro {
        margin-top: 22px;

        font-size: 12px;

        line-height: 1.75;
    }

}


/* ONE FAMILY STORY */

.ws-about-center h2 strong {
    display: block;

    margin-top: 8px;

    font-weight: 500;

    color: #bd8b3f;

    opacity: 0;

    transform:
        translate3d(
            0,
            18px,
            0
        );

    animation:
        wsAboutHeadingReveal
        1.3s
        cubic-bezier(.16, 1, .3, 1)
        .25s
        forwards;
}


/* =========================================================
   SECOND HEADING SOFT REVEAL
========================================================= */

@keyframes wsAboutHeadingReveal {

    from {
        opacity: 0;

        transform:
            translate3d(
                0,
                18px,
                0
            );
    }

    to {
        opacity: 1;

        transform:
            translate3d(
                0,
                0,
                0
            );
    }

}


/* =========================================================
   DESCRIPTION
========================================================= */

.ws-about-intro {
    max-width: 470px;

    margin:
        10px
        auto
        0;

    font-family:
        "Montserrat",
        sans-serif;

    font-size: 14px;

    font-weight: 400;

    line-height: 1.75;

    color: #59554c;

    opacity: 0;

    transform:
        translate3d(
            0,
            14px,
            0
        );

    animation:
        wsAboutDescriptionReveal
        1.3s
        cubic-bezier(.16, 1, .3, 1)
        .55s
        forwards;
}


/* =========================================================
   DESCRIPTION REVEAL
========================================================= */

@keyframes wsAboutDescriptionReveal {

    from {
        opacity: 0;

        transform:
            translate3d(
                0,
                14px,
                0
            );
    }

    to {
        opacity: 1;

        transform:
            translate3d(
                0,
                0,
                0
            );
    }

}


/* =========================================================
   LARGE LAPTOP
========================================================= */

@media (max-width: 1200px) {

    .ws-about-section {
        height: 490px;
    }


    .ws-about-center {
        padding:
            40px
            30px;
    }


    .ws-about-center h2 {
        font-size: 46px;
    }


    .ws-about-intro {
        font-size: 12px;

        line-height: 1.7;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .ws-about-section {
        margin-top: 55px;

        height: auto;

        grid-template-columns: 1fr;
    }


    .ws-about-wool,
    .ws-about-spices {
        height: 320px;
    }


    .ws-about-center {
        min-height: 390px;

        padding:
            60px
            35px;
    }


    .ws-about-content {
        max-width: 650px;
    }


    .ws-about-center h2 {
        font-size:
            clamp(
                44px,
                7vw,
                54px
            );
    }


    .ws-about-intro {
        max-width: 560px;

        font-size: 13px;
    }

    .ws-about-section-wrap {
        margin-top: 50px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 575px) {

    .ws-about-section {
        margin-top: 5px !important;
    }

    .ws-about-top-heading {
        text-align: center;
        margin-bottom: 15px;
    }


    .ws-about-wool,
    .ws-about-spices {
        height: 260px;
    }


    .ws-about-center {
        min-height: 350px;

        padding:
            45px
            22px;
    }


    .ws-about-center h2 {
        font-size:
            30px;
    }


    .ws-about-center h2 strong {
        margin-top: 6px;
    }


    .ws-about-intro {
        margin-top: 5px;

        font-size: 13px;

        line-height: 1.7;
    }

}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 390px) {

    .ws-about-center {
        padding:
            40px
            18px;
    }


    .ws-about-center h2 {
        font-size: 30px;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .ws-about-side img {
        transition: none;
    }


    .ws-about-center h2 strong,
    .ws-about-intro {
        opacity: 1;

        transform: none;

        animation: none;
    }

}

/* =========================================================
   ABOUT TOP HEADING ROTATION
========================================================= */

.ws-about-top-heading h2 {
    display: flex;

    align-items: center;
    justify-content: center;

    flex-wrap: wrap;

    gap: 8px;
}


.ws-about-top-fixed {
    color: #343828;
}


.ws-about-top-rotating-line {
    display: inline-flex;

    align-items: center;

    min-width: 1px;

    color: #bd8b3f;
}


.ws-about-top-rotating-text {
    font-weight: 500;

    white-space: nowrap;
}


.ws-about-top-cursor {
    width: 2px;
    height: .8em;

    display: inline-block;

    margin-left: 5px;

    background: #bd8b3f;

    animation:
        wsAboutTopCursorBlink
        .9s
        ease-in-out
        infinite;
}


@keyframes wsAboutTopCursorBlink {

    0%,
    40% {
        opacity: 1;
    }

    60%,
    100% {
        opacity: 0;
    }

}


/* MOBILE */
@media (max-width: 575px) {

    .ws-about-top-heading h2 {
        font-size: 30px;

        gap: 5px;

        padding: 0 15px;
    }


    .ws-about-top-rotating-text {
        white-space: normal;

        text-align: center;
    }

}


   /* =========================================================
   JOURNAL / BLOG SECTION
========================================================= */

.dd-journal-section {
    width: 100%;

    margin-top: 70px;

    position: relative;

    overflow: hidden;

    /* background:
        radial-gradient(
            circle at 50% 0%,
            rgba(190, 157, 99, .08),
            transparent 30%
        ),
        #fbf6ed; */
}


/* =========================================================
   CONTAINER
========================================================= */

.dd-journal-container {
    width:
        min(
            1450px,
            calc(100% - 80px)
        );

    margin: 0 auto;

    padding:
        55px
        0
        55px;
}


/* =========================================================
   HEADING
========================================================= */

.dd-journal-heading {
    position: relative;

    max-width: 820px;

    margin:
        0
        auto
        44px;

    text-align: center !important;
    justify-content: center;

    z-index: 2;
}


.dd-journal-heading h2 {
    margin: 0;

    font-family:
        "Cormorant Garamond",
        serif;
    justify-content: center;
    font-weight: 500;
    text-align: center !important;
    line-height: 1;
    display: flex;
    gap: 10px;
    color: #485035;
}


/* =========================================================
   FIXED TITLE
========================================================= */

.dd-journal-fixed-title {
    display: block;

    font-size: 46px;
}


/* =========================================================
   ROTATING TITLE
========================================================= */

.dd-journal-rotating-line {
    align-items: center;
    justify-content: center;
    margin-top: 2px;
    color: #bd8b3f;
}


.dd-journal-rotating-text {
    display: inline-block;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 40px;

    line-height: 1;

    font-weight: 400;

    white-space: nowrap;

    transform:
        translateZ(0);

    backface-visibility: hidden;

    -webkit-backface-visibility: hidden;

    -webkit-font-smoothing:
        antialiased;

    text-rendering:
        optimizeLegibility;
}


/* =========================================================
   TYPE CURSOR
========================================================= */

.dd-journal-type-cursor {
    width: 2px;
    height: 33px;

    margin-left: 5px;

    display: inline-block;

    flex-shrink: 0;

    background: #842428;

    transform:
        translateZ(0);

    animation:
        ddJournalCursorBlink
        .9s
        ease-in-out
        infinite;
}


@keyframes ddJournalCursorBlink {

    0%,
    42% {
        opacity: 1;
    }

    58%,
    100% {
        opacity: 0;
    }

}


/* =========================================================
   OPTIONAL DECORATIVE PLANTS
========================================================= */

.dd-journal-plant {
    position: absolute;

    top: 15px;

    color:
        rgba(
            92,
            101,
            59,
            .30
        );

    font-size: 100px;

    pointer-events: none;
}


.dd-journal-plant-left {
    left: -18px;

    transform:
        rotate(-28deg);
}


.dd-journal-plant-right {
    right: -18px;

    transform:
        rotate(205deg);
}


/* =========================================================
   CARD GRID
========================================================= */

.dd-journal-grid {
    width: 100%;

    display: grid;

    grid-template-columns:
        repeat(
            3,
            minmax(0, 1fr)
        );

    gap: 24px;
}


/* =========================================================
   BLOG CARD
========================================================= */

.dd-journal-card {
    min-width: 0;

    position: relative;

    overflow: hidden;

    border:
        1px solid
        rgba(
            181,
            148,
            88,
            .34
        );

    border-radius: 18px;

    background: #fff;

    transform:
        translate3d(
            0,
            0,
            0
        );

    transition:
        transform 1s
        cubic-bezier(
            .16,
            1,
            .3,
            1
        ),

        box-shadow 1s
        cubic-bezier(
            .16,
            1,
            .3,
            1
        ),

        border-color .85s ease;

    will-change: transform;
}


/* subtle inner border */

.dd-journal-card::after {
    content: "";

    position: absolute;

    inset: 7px;

    /* border:
        1px solid
        rgba(
            190,
            160,
            105,
            .15
        ); */

    border-radius: 12px;

    pointer-events: none;

    z-index: 4;
}


/* =========================================================
   SOFT CARD HOVER
========================================================= */

.dd-journal-card:hover {
    transform:
        translate3d(
            0,
            -4px,
            0
        );

    /* border-color:
        rgba(
            181,
            148,
            88,
            .62
        ); */
}


/* =========================================================
   CARD IMAGE
========================================================= */

.dd-journal-image {
    width: 100%;

    height: 275px;

    position: relative;

    overflow: hidden;
}


/* subtle image shade */

.dd-journal-image::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to bottom,

            transparent
            65%,

            rgba(
                34,
                24,
                16,
                .10
            )
            100%
        );

    pointer-events: none;
}


.dd-journal-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transform:
        scale(1);

    transition:
        transform 1.45s
        cubic-bezier(
            .16,
            1,
            .3,
            1
        );

    backface-visibility: hidden;

    -webkit-backface-visibility: hidden;
}


/* tiny zoom */

.dd-journal-card:hover
.dd-journal-image img {
    transform:
        scale(1.03);
}


/* =========================================================
   CARD CONTENT
========================================================= */

.dd-journal-card-content {
    /* min-height: 295px; */

    position: relative;

    padding:
        27px
        28px
        26px;

    overflow: hidden;
}


/* =========================================================
   CARD TITLE
========================================================= */

.dd-journal-card h3 {
    margin:
        0
        0
        13px;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size:
        clamp(
            24px,
            2vw,
            30px
        );

    line-height: 1.05;

    font-weight: 500;

    color: #342923;

    transition:
        color .75s ease;
}


.dd-journal-card:hover h3 {
    color: #bd8b3f;
}


/* =========================================================
   META
========================================================= */

.dd-journal-meta {
    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 9px;

    margin-bottom: 16px;

    color: #776b58;
}


.dd-journal-meta span {
    display: inline-flex;

    align-items: center;

    gap: 7px;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 15px;
}


.dd-journal-meta i {
    color: #71804d;

    font-size: 11px;
}


.dd-meta-divider {
    width: 1px;
    height: 14px;

    background: #b9a47a;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.dd-journal-card-content > p {
    max-width: 430px;

    margin: 0;

    font-family: Montserrat, sans-serif;
    font-size: 15px;

    line-height: 1.5;

    color: #5d554b;
}


/* =========================================================
   READ MORE
========================================================= */

.dd-journal-readmore {
    display: inline-flex;

    align-items: center;

    gap: 12px;

    margin-top: 21px;

    padding-bottom: 5px;

    position: relative;

    text-decoration: none;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 18px;

    color: #bd8b3f;

    z-index: 5;

    transition:
        gap .75s
        cubic-bezier(
            .16,
            1,
            .3,
            1
        ),

        color .65s ease;
}


.dd-journal-readmore::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 58px;

    height: 1px;

    background: #bd8b3f;

    transition:
        width .75s
        cubic-bezier(
            .16,
            1,
            .3,
            1
        );
}


.dd-journal-readmore i {
    transition:
        transform .75s
        cubic-bezier(
            .16,
            1,
            .3,
            1
        );
}


.dd-journal-readmore:hover {
    gap: 16px;

    color: #5d663f;
}


.dd-journal-readmore:hover::after {
    width: 100%;
}


.dd-journal-readmore:hover i {
    transform:
        translateX(4px);
}


/* =========================================================
   CARD BOTANICAL DECORATION
========================================================= */

.dd-card-botanical {
    position: absolute;

    right: 15px;
    bottom: -12px;

    color:
        rgba(
            129,
            130,
            79,
            .20
        );

    font-size: 68px;

    transform:
        rotate(-20deg);

    pointer-events: none;

    transition:
        transform 1.2s
        cubic-bezier(
            .16,
            1,
            .3,
            1
        ),

        opacity .8s ease;
}


.dd-journal-card:hover
.dd-card-botanical {
    transform:
        rotate(-14deg)
        translate3d(
            -3px,
            -3px,
            0
        );

    opacity: .8;
}


/* =========================================================
   OPTIONAL BOTTOM TEXT
========================================================= */

.dd-journal-bottom {
    max-width: 720px;

    margin:
        32px
        auto
        0;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 24px;

    color: #686347;
}


.dd-journal-bottom > span {
    flex: 1;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            #c0a66f
        );
}


.dd-journal-bottom > span:last-child {
    background:
        linear-gradient(
            90deg,
            #c0a66f,
            transparent
        );
}


.dd-journal-bottom div {
    display: flex;

    align-items: center;

    gap: 10px;

    white-space: nowrap;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 19px;

    font-style: italic;
}


.dd-journal-bottom i {
    font-size: 12px;

    color: #71804d;
}


/* =========================================================
   LAPTOP
========================================================= */

@media (max-width: 1200px) {

    .dd-journal-container {
        width:
            calc(
                100% - 50px
            );
    }


    .dd-journal-grid {
        gap: 17px;
    }


    .dd-journal-image {
        height: 235px;
    }


    .dd-journal-card-content {
        padding:
            23px
            22px
            25px;
    }


    .dd-journal-fixed-title {
        font-size: 44px;
    }


    .dd-journal-rotating-text {
        font-size: 38px;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .dd-journal-section {
        margin-top: 55px;
    }


    .dd-journal-container {
        width:
            calc(
                100% - 40px
            );

        padding:
            45px
            0;
    }


    .dd-journal-heading {
        margin-bottom: 36px;
    }


    .dd-journal-grid {
        grid-template-columns:
            repeat(
                2,
                minmax(0, 1fr)
            );

        gap: 18px;
    }


    .dd-journal-card:last-child {
        grid-column:
            1 / -1;

        width: 100%;

        max-width: 520px;

        justify-self: center;
    }


    .dd-journal-image {
        height: 240px;
    }


    .dd-journal-fixed-title {
        font-size: 44px;
    }


    .dd-journal-rotating-text {
        font-size: 36px;
    }


    .dd-journal-type-cursor {
        height: 30px;
    }


    .dd-journal-plant {
        font-size: 70px;

        opacity: .7;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 575px) {

    .dd-journal-section {
        margin-top: 40px;
    }


    .dd-journal-container {
        width:
            calc(
                100% - 28px
            );

        padding:
            38px
            0;
    }


    .dd-journal-heading {
        margin-bottom: 30px;
    }


    .dd-journal-fixed-title {
        font-size: 42px;
    }


    .dd-journal-rotating-line {
        min-height: 42px;

        margin-top: 6px;
    }


    .dd-journal-rotating-text {
        max-width:
            calc(
                100vw - 55px
            );

        font-size: 31px;

        white-space: normal;

        text-align: center;
    }


    .dd-journal-type-cursor {
        height: 27px;
    }


    .dd-journal-grid {
        grid-template-columns: 1fr;

        gap: 18px;
    }


    .dd-journal-card:last-child {
        grid-column: auto;

        max-width: none;
    }


    .dd-journal-card:hover {
        transform:
            translate3d(
                0,
                -2px,
                0
            );
    }


    .dd-journal-image {
        height: 220px;
    }


    .dd-journal-card-content {
        min-height: auto;

        padding:
            23px
            20px
            25px;
    }


    .dd-journal-card h3 {
        font-size: 27px;
    }


    .dd-journal-plant {
        display: none;
    }


    .dd-journal-bottom {
        gap: 12px;
    }


    .dd-journal-bottom > span {
        display: none;
    }


    .dd-journal-bottom div {
        white-space: normal;

        text-align: center;

        font-size: 17px;
    }

}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 390px) {

    .dd-journal-fixed-title {
        font-size: 39px;
    }


    .dd-journal-rotating-text {
        font-size: 28px;
    }


    .dd-journal-image {
        height: 205px;
    }


    .dd-journal-card h3 {
        font-size: 25px;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .dd-journal-card,
    .dd-journal-image img,
    .dd-journal-card h3,
    .dd-journal-readmore,
    .dd-journal-readmore::after,
    .dd-journal-readmore i,
    .dd-card-botanical {

        transition:
            none !important;
    }


    .dd-journal-type-cursor {
        animation:
            none !important;

        opacity: 1;
    }

}   




/* =========================================================
   TESTIMONIAL SECTION
========================================================= */

.dd-testimonial-section {
    width: 100%;
    margin-top: 70px;
    position: relative;

    overflow: hidden;

    background-image:
        url("assets/images/testimonial-bg.webp");

    background-size: cover;

    background-position: center center;

    background-repeat: no-repeat;
}


.dd-testimonial-container {
    width:
        min(
            1500px,
            calc(100% - 70px)
        );

    /* min-height: 720px; */

    margin: 0 auto;

    position: relative;

    padding:
        52px
        50px
        42px;
}


/* =========================================================
   BACKGROUND DECORATIONS
========================================================= */

.dd-testimonial-decor {
    position: absolute;

    z-index: 0;

    pointer-events: none;
}


.dd-testimonial-decor img {
    width: 100%;
    height: auto;

    display: block;
}


.dd-testimonial-decor-wool {
    width: 290px;

    top: -30px;
    left: -100px;
}


.dd-testimonial-decor-spices {
    width: 270px;

    right: -95px;
    bottom: 50px;
}


/* =========================================================
   HEADING
========================================================= */

.dd-testimonial-heading {
    max-width: 730px;

    margin:
        0
        auto
        30px;

    position: relative;

    z-index: 3;

    text-align: center;
}


.dd-testimonial-brand {
    display: block;

    margin-bottom: 7px;

    font-family:
        "Montserrat",
        sans-serif;

    font-size: 10px;

    font-weight: 600;

    letter-spacing: 3px;

    color: #5b633b;
}


.dd-testimonial-heading h2 {
    margin: 0;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size:
        45px;

    line-height: .95;

    font-weight: 500;

    color: #7e2026;
}


/* =========================================================
   HEADING LINE
========================================================= */

.dd-testimonial-heading-line {
    width: 330px;

    max-width: 80%;

    margin:
        14px
        auto
        12px;

    display: flex;

    align-items: center;

    gap: 10px;
}


.dd-testimonial-heading-line span {
    flex: 1;

    height: 1px;

    background: #bc9146;
}


.dd-testimonial-heading-line i {
    color: #b88a39;

    font-size: 11px;
}


.dd-testimonial-heading p {
    max-width: 560px;

    margin: auto;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 19px;

    line-height: 1.35;

    color: #4c5231;
}


/* =========================================================
   SLIDER
========================================================= */

.dd-testimonial-slider {
    width: 100%;

    max-width: 1340px;

    margin: auto;

    position: relative;

    z-index: 5;
}


.dd-testimonial-window {
    width: 100%;

    padding:
        8px
        4px
        22px;

    overflow: hidden;
}


.dd-testimonial-track {
    display: flex;

    will-change: transform;

    transition:
        transform 1.05s
        cubic-bezier(
            .16,
            1,
            .3,
            1
        );
}


/* =========================================================
   CARD
========================================================= */

.dd-testimonial-card {
    flex:
        0
        0
        calc(
            (100% - 36px) / 3
        );

    margin-right: 18px;

    position: relative;

    padding:
        26px
        20px
        25px;

    overflow: hidden;

    border:
        1px solid
        rgba(
            183,
            141,
            61,
            .40
        );

    border-radius: 22px;

    background:
        rgba(
            255,
            251,
            244,
            .95
        );

    box-shadow:
        0 12px 30px
        rgba(
            56,
            38,
            20,
            .10
        );

    transform:
        translate3d(
            0,
            0,
            0
        );

    transition:
        transform .95s
        cubic-bezier(
            .16,
            1,
            .3,
            1
        ),

        box-shadow .95s ease,

        border-color .8s ease;
}


.dd-testimonial-card:hover {
    transform:
        translate3d(
            0,
            -4px,
            0
        );

    border-color:
        rgba(
            183,
            141,
            61,
            .64
        );

    box-shadow:
        0 20px 42px
        rgba(
            56,
            38,
            20,
            .14
        );
}


/* =========================================================
   CARD TOP
========================================================= */

.dd-testimonial-card-top {
    display: flex;

    align-items: center;
    justify-content: space-between;
}


.dd-testimonial-quote {
    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 60px;

    line-height: .65;

    font-weight: 600;

    color: #c18f2d;
}


.dd-testimonial-stars {
    display: flex;

    align-items: center;

    gap: 3px;

    color: #bd8a2c;

    font-size: 13px;
}


/* =========================================================
   REVIEW
========================================================= */

.dd-testimonial-review {
    margin-top: 18px;

    display: grid;

    grid-template-columns:
        65px
        minmax(0, 1fr);

    align-items: center;

    gap: 20px;
}


.dd-testimonial-person {
    width: 65px;
    height: 65px;

    overflow: hidden;

    border-radius: 52% 48% 50% 50%;

    border:
        2px solid
        rgba(
            183,
            141,
            61,
            .30
        );
}


.dd-testimonial-person img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}


.dd-testimonial-review p {
    margin: 0;

    font-family: Montserrat, sans-serif;

    font-size: 15px;

    line-height: 1.43;

    color: #42372d;
}


/* =========================================================
   DIVIDER
========================================================= */

.dd-testimonial-divider {
    width: 100%;

    margin:
        15px
        0
        18px;

    display: flex;

    align-items: center;

    gap: 8px;
}


.dd-testimonial-divider span {
    flex: 1;

    height: 1px;

    background:
        rgba(
            184,
            142,
            62,
            .50
        );
}


.dd-testimonial-divider i {
    color: #b98b3a;

    font-size: 9px;
}


/* =========================================================
   CUSTOMER
========================================================= */

.dd-testimonial-customer {
    position: relative;

    z-index: 3;
}


.dd-testimonial-customer strong {
    display: block;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 22px;

    line-height: 1.1;

    font-weight: 600;

    color: #bd8b3f;
}


.dd-testimonial-customer span {
    display: block;

    margin-top: 5px;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 16px;

    color: #505633;
}


/* =========================================================
   BOTANICAL
========================================================= */

.dd-testimonial-leaf {
    position: absolute;

    right: 10px;
    bottom: -9px;

    font-size: 76px;

    color:
        rgba(
            87,
            99,
            54,
            .17
        );

    transform:
        rotate(-25deg);

    pointer-events: none;
}


/* =========================================================
   ARROWS
========================================================= */

.dd-testimonial-arrow {
    width: 46px;
    height: 46px;

    position: absolute;

    top: 50%;

    z-index: 15;

    padding: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border:
        1px solid
        rgba(
            180,
            140,
            62,
            .42
        );

    border-radius: 50%;

    background:
        rgba(
            255,
            250,
            239,
            .96
        );

    color: #62683f;

    cursor: pointer;

    box-shadow:
        0 7px 19px
        rgba(
            46,
            32,
            18,
            .11
        );

    transform:
        translateY(-50%);

    transition:
        background .7s ease,
        color .7s ease,
        transform .8s
        cubic-bezier(.16, 1, .3, 1);
}


.dd-testimonial-prev {
    left: -58px;
}


.dd-testimonial-next {
    right: -58px;
}


.dd-testimonial-arrow:hover {
    background: #59603b;

    color: #fff;

    transform:
        translateY(-50%)
        scale(1.05);
}


/* =========================================================
   DOTS
========================================================= */

.dd-testimonial-dots {
    margin-top: 2px;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 8px;

    position: relative;

    z-index: 5;
}


.dd-testimonial-dot {
    width: 8px;
    height: 8px;

    padding: 0;

    border: 0;

    border-radius: 50%;

    background:
        rgba(
            125,
            106,
            58,
            .30
        );

    cursor: pointer;

    transition:
        width .5s ease,
        border-radius .5s ease,
        background .5s ease;
}


.dd-testimonial-dot.active {
    width: 27px;

    border-radius: 20px;

    background: #74794a;
}


/* =========================================================
   BUTTON
========================================================= */

.dd-testimonial-action {
    margin-top: 19px;

    display: flex;

    justify-content: center;

    position: relative;

    z-index: 5;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .dd-testimonial-container {
        width:
            calc(
                100% - 40px
            );

        padding:
            48px
            36px
            40px;
    }


    .dd-testimonial-card {
        flex:
            0
            0
            calc(
                (100% - 18px) / 2
            );
    }


    .dd-testimonial-prev {
        left: -25px;
    }


    .dd-testimonial-next {
        right: -25px;
    }


    .dd-testimonial-decor-wool {
        width: 220px;
    }


    .dd-testimonial-decor-spices {
        width: 210px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .dd-testimonial-container {
        width: 100%;

        min-height: auto;

        padding:
            40px
            18px
            35px;
    }


    .dd-testimonial-heading {
        margin-bottom: 24px;
    }


    .dd-testimonial-heading h2 {
        font-size: 50px;
    }


    .dd-testimonial-heading p {
        font-size: 17px;
    }


    .dd-testimonial-brand {
        font-size: 8px;

        letter-spacing: 2.2px;
    }


    .dd-testimonial-decor-wool {
        width: 155px;

        left: -80px;

        opacity: .45;
    }


    .dd-testimonial-decor-spices {
        width: 145px;

        right: -70px;

        opacity: .42;
    }


    .dd-testimonial-card {
        flex:
            0
            0
            100%;

        min-height: 355px;

        margin-right: 12px;

        padding:
            23px
            20px;
    }


    .dd-testimonial-review {
        grid-template-columns:
            82px
            minmax(0, 1fr);

        gap: 14px;
    }


    .dd-testimonial-person {
        width: 82px;
        height: 102px;
    }


    .dd-testimonial-review p {
        font-size: 17px;
    }


    .dd-testimonial-arrow {
        width: 38px;
        height: 38px;

        top: 52%;
    }


    .dd-testimonial-prev {
        left: -8px;
    }


    .dd-testimonial-next {
        right: -8px;
    }


    .dd-testimonial-action .dd-btn {
        width: 100%;
    }

}

/* =========================================================
   TESTIMONIAL ROTATING HEADING
========================================================= */

.dd-testimonial-fixed-title {
    display: block;
        color: #485035;
}

@media (max-width: 575px) {

    


    .dd-testimonial-type-cursor {
        height: 24px;
    }

}

.dd-testimonial-title {
    margin: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    flex-wrap: wrap;

    font-family: "Cormorant Garamond", serif;

    line-height: 1;

    font-weight: 500;
}


.dd-testimonial-fixed-word {
    font-size: clamp(54px, 5vw, 74px);

    color: #59603b;
}


.dd-testimonial-rotating-line {
    min-height: 74px;

    display: flex;

    align-items: center;

    color: #7e2026;
}


.dd-testimonial-rotating-text {
    display: inline-block;

    font-family: "Cormorant Garamond", serif;

    font-size: 45px;

    line-height: 1;

    font-weight: 500;

    white-space: nowrap;
}


.dd-testimonial-type-cursor {
    width: 2px;
    height: 52px;

    margin-left: 5px;

    display: inline-block;

    background: #7e2026;

    animation:
        ddTestimonialCursorBlink
        .9s ease-in-out infinite;
}


@keyframes ddTestimonialCursorBlink {

    0%,
    42% {
        opacity: 1;
    }

    58%,
    100% {
        opacity: 0;
    }

}


@media (max-width: 575px) {

    .dd-testimonial-title {
        gap: 7px;
    }


    .dd-testimonial-fixed-word,
    .dd-testimonial-rotating-text {
        font-size: 40px;
    }


    .dd-testimonial-rotating-line {
        min-height: 45px;
    }


    .dd-testimonial-type-cursor {
        height: 34px;
    }

}





/* =========================================================
   CONTACT SECTION
========================================================= */

.dd-contact-section {
    width: 100%;

    margin-top: 100px;

    overflow: hidden;

    background: #ffffff;
}


.dd-contact-container {
    width: min(1450px, calc(100% - 60px));

    margin: 0 auto;

    display: grid;
    grid-template-columns: 1.02fr 1fr;
    gap: 34px;

    align-items: stretch;
}


/* =========================================================
   LEFT SIDE
========================================================= */

.dd-contact-left {
    min-width: 0;

    position: relative;

    display: flex;
    flex-direction: column;
    /* justify-content: space-between; */

    padding: 0px 10px 0 0;

    overflow: hidden;
}


.dd-contact-brand {
    display: block;

    font-family: "Cormorant Garamond", serif;
    font-size: 28px;
    font-weight: 600;
    letter-spacing: 1px;

    color: #7c2024;
}


.dd-contact-tagline {
    display: inline-block;

    margin-top: 8px;

    position: relative;

    font-family: "Cormorant Garamond", serif;
    font-size: 16px;
    font-style: italic;
    font-weight: 600;

    color: #d0a15d;
}


.dd-contact-tagline::before,
.dd-contact-tagline::after {
    content: "";

    width: 36px;
    height: 1px;

    position: absolute;
    top: 50%;

    background: #d7b075;
}


.dd-contact-tagline::before {
    right: calc(100% + 10px);
}


.dd-contact-tagline::after {
    left: calc(100% + 10px);
}


.dd-contact-title {
    margin: 0px 0 0;
    display: flex;
    gap: 10px;
    font-family: "Cormorant Garamond", serif;
    font-weight: 500;
    line-height: .95;
    font-size: 45px;
}


.dd-contact-title-static {
    /* display: block; */

    font-size: 45px;

    color: #5a5c1c;
}


.dd-contact-rotating-line {
    /* min-height: 42px; */

    margin-top: -2px;

    display: flex;
    /* align-items: center; */
    justify-content: center;

    color: #7c2024;
}


.dd-contact-rotating-text {
    display: inline-block;

    font-family: "Cormorant Garamond", serif;
    font-size: 45px;
    font-weight: 500;
    line-height: 1;

    white-space: nowrap;
}


.dd-contact-cursor {
    width: 2px;
    height: 28px;

    margin-left: 6px;

    display: inline-block;

    background: #7c2024;

    animation: ddContactCursorBlink .9s ease-in-out infinite;
}


@keyframes ddContactCursorBlink {
    0%, 42% { opacity: 1; }
    58%, 100% { opacity: 0; }
}


.dd-contact-title-divider {
    width: 240px;
    max-width: 80%;

    margin: 18px auto 16px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}


.dd-contact-title-divider span,
.dd-contact-small-divider span {
    flex: 1;
    height: 1px;
    background: #d4b179;
}


.dd-contact-title-divider i,
.dd-contact-small-divider i {
    color: #d0a15d;
    font-size: 11px;
}


.dd-contact-description {
    /* max-width: 430px; */

    margin: 20px auto 0px;

    font-family: "Cormorant Garamond", serif;
    font-size: 19px;
    line-height: 1.45;

    color: #4c4034;
}


.dd-contact-small-divider {
    width: 110px;

    margin: 20px auto 0;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}


.dd-contact-left-image {
    width: 100%;

    margin-top: 0px;

    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
}


.dd-contact-left-image img {
    width: min(100%, 760px);
    height: auto;

    display: block;

    object-fit: contain;
}


/* =========================================================
   RIGHT SIDE
========================================================= */

.dd-contact-right {
    min-width: 0;

    display: flex;
    align-items: center;
}


.dd-contact-form-shell {
    width: 100%;

    /* min-height: 100%; */

    padding: 32px 34px 32px;

    position: relative;

    border: 1.5px solid rgba(217, 188, 143, 0.75);
    border-radius: 0;

    background: #fffefd;

    box-shadow: 0 12px 32px rgba(67, 44, 22, 0.06);
}


.dd-contact-form-shell::before {
    content: "";

    position: absolute;
    inset: 10px;

    /* border: 1px solid rgba(217, 188, 143, 0.65); */

    pointer-events: none;

    clip-path: polygon(
        8px 0,
        calc(100% - 8px) 0,
        100% 8px,
        100% calc(100% - 8px),
        calc(100% - 8px) 100%,
        8px 100%,
        0 calc(100% - 8px),
        0 8px
    );
}


.dd-contact-form-top-icon {
    margin-bottom: 18px;

    text-align: center;
}


.dd-contact-form-top-icon i {
    color: #d0a15d;
    font-size: 20px;
}


/* =========================================================
   FORM
========================================================= */

.dd-contact-form {
    position: relative;
    z-index: 2;
}


.dd-contact-grid-two {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}


.dd-contact-field {
    width: 100%;

    margin-bottom: 18px;

    position: relative;
}


.dd-contact-field i {
    position: absolute;
    left: 22px;
    top: 23px;

    font-size: 18px;

    color: #8d6f42;

    z-index: 2;
}


.dd-contact-field input,
.dd-contact-field select,
.dd-contact-field textarea {
    width: 100%;

    border: 1px solid #ddc6a4;
    border-radius: 8px;

    background: #fffefd;

    font-family: "Cormorant Garamond", serif;
    font-size: 17px;
    color: #4c4034;

    outline: none;

    transition: border-color .35s ease, box-shadow .35s ease;
}


.dd-contact-field input,
.dd-contact-field select {
    height: 62px;
    padding: 0 18px 0 62px;
}


.dd-contact-field textarea {
    min-height: 138px;
    resize: vertical;

    padding: 20px 18px 18px 62px;
}


.dd-contact-field input:focus,
.dd-contact-field select:focus,
.dd-contact-field textarea:focus {
    border-color: #c89a57;
    box-shadow: 0 0 0 3px rgba(200, 154, 87, 0.10);
}


.dd-contact-field input::placeholder,
.dd-contact-field textarea::placeholder {
    color: #7a6a58;
}


.dd-contact-select-field select {
    appearance: none;
    cursor: pointer;
}


.dd-contact-select-arrow {
    position: absolute;
    right: 20px;
    top: 50%;

    transform: translateY(-50%);

    color: #7c6a4e;
    font-size: 14px;

    pointer-events: none;
}


/* =========================================================
   BUTTON
========================================================= */

.dd-contact-submit-btn {
    width: 100%;
    height: 64px;

    margin-top: 6px;

    border: none;
    border-radius: 8px;

    background: #bd8b3f;
    color: #fff;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;

    font-family: "Cormorant Garamond", serif;
    font-size: 19px;
    font-weight: 600;
    letter-spacing: 1px;

    cursor: pointer;

    transition: transform .35s ease, box-shadow .35s ease;
}


.dd-contact-submit-btn:hover {
    transform: translateY(-2px);
    /* box-shadow: 0 12px 24px rgba(124, 32, 36, 0.18); */
}


.dd-contact-submit-btn i {
    font-size: 15px;
}


/* =========================================================
   INFO ROW
========================================================= */

.dd-contact-info-row {
    margin-top: 24px;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;

    position: relative;
    z-index: 2;
}


.dd-contact-info-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    font-family: "Cormorant Garamond", serif;
    font-size: 17px;

    color: #51452f;
}


.dd-contact-info-item i {
    width: 28px;
    height: 28px;

    border-radius: 50%;

    background: #74763b;
    color: #ffffff;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    font-size: 13px;
}


.dd-contact-info-divider {
    width: 1px;
    height: 22px;

    background: #d4b179;
}


/* =========================================================
   BOTTOM NOTE
========================================================= */

.dd-contact-bottom-note {
    margin-top: 28px;

    text-align: center;

    position: relative;
    z-index: 2;
}


.dd-contact-bottom-note p {
    margin: 0;

    font-family: "Cormorant Garamond", serif;
    font-size: 20px;
    font-style: italic;
    line-height: 1.55;

    color: #d0a15d;
}


.dd-contact-bottom-line {
    width: 170px;

    margin: 14px auto 0;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}


.dd-contact-bottom-line span {
    flex: 1;
    height: 1px;
    background: #d4b179;
}


.dd-contact-bottom-line i {
    color: #c69950;
    font-size: 12px;
}


/* =========================================================
   LAPTOP
========================================================= */

@media (max-width: 1200px) {

    .dd-contact-container {
        width: calc(100% - 40px);

        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .dd-contact-form-shell {
        padding: 24px 24px 24px;
    }

    .dd-contact-brand {
        font-size: 25px;
    }

    .dd-contact-description {
        font-size: 18px;
    }
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .dd-contact-section {
        margin-top: 60px;
    }

    .dd-contact-container {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .dd-contact-left {
        padding: 0;
    }

    .dd-contact-text-wrap {
        max-width: 680px;
    }

    .dd-contact-left-image {
        justify-content: center;
    }

    .dd-contact-left-image img {
        width: min(100%, 650px);
    }

    .dd-contact-right {
        display: block;
    }

    .dd-contact-form-shell {
        padding: 24px 22px 24px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 575px) {

    .dd-contact-section {
        margin-top: 40px;
    }

    .dd-contact-container {
        width: calc(100% - 24px);
        gap: 22px;
    }

    .dd-contact-brand {
        font-size: 22px;
    }

    .dd-contact-tagline {
        font-size: 14px;
    }

    .dd-contact-tagline::before,
    .dd-contact-tagline::after {
        width: 22px;
    }

    .dd-contact-title-static {
        font-size: 30px;
    }

    .dd-contact-rotating-text {
        max-width: calc(100vw - 50px);

        font-size: 30px;
        white-space: normal;
        text-align: center;
    }

    .dd-contact-cursor {
        height: 22px;
    }

    .dd-contact-description {
        font-size: 17px;
    }

    .dd-contact-grid-two {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .dd-contact-form-shell {
        padding: 20px 16px 20px;
    }

    .dd-contact-field input,
    .dd-contact-field select {
        height: 56px;
        padding-left: 54px;
    }

    .dd-contact-field textarea {
        min-height: 124px;
        padding-left: 54px;
    }

    .dd-contact-field i {
        left: 18px;
        top: 20px;
        font-size: 16px;
    }

    .dd-contact-submit-btn {
        height: 58px;
        font-size: 18px;
    }

    .dd-contact-info-row {
        justify-content: flex-start;
        gap: 12px;
    }

    .dd-contact-info-divider {
        display: none;
    }

    .dd-contact-info-item {
        width: 100%;
        font-size: 17px;
    }

    .dd-contact-bottom-note p {
        font-size: 18px;
    }
}





/* ==========================================
   PREMIUM FOOTER
========================================== */

.ws-footer {
    width: 100%;

    margin-top: 70px;

    position: relative;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 10% 10%,
            rgba(184, 147, 77, 0.08),
            transparent 30%
        ),
        radial-gradient(
            circle at 90% 90%,
            rgba(132, 30, 34, 0.09),
            transparent 28%
        ),
        #000;

    color: #ded8cb;
}


/* ==========================================
   TOP DECORATION
========================================== */

.ws-footer-top-decoration {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 18px;

    padding-top: 35px;
}


.ws-footer-top-decoration > span {
    width: min(180px, 15vw);

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            #a9874c
        );
}


.ws-footer-top-decoration > span:last-child {
    background:
        linear-gradient(
            90deg,
            #a9874c,
            transparent
        );
}


.ws-footer-emblem {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid
        rgba(188, 151, 82, 0.45);

    border-radius: 50%;

    color: #c5a263;

    font-size: 18px;

    box-shadow:
        0 0 0 6px
        rgba(188, 151, 82, 0.035);
}



/* ==========================================
   MAIN FOOTER GRID
========================================== */

.ws-footer-container {
    width: min(1400px, calc(100% - 80px));

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        1.35fr
        0.75fr
        0.85fr
        1.15fr;

    gap: clamp(35px, 5vw, 75px);

    padding:
        45px
        0
        55px;
}



/* ==========================================
   GENERAL COLUMN
========================================== */

.ws-footer-column {
    min-width: 0;
}


.ws-footer-column h3 {
    margin: 0;

    font-family: "Cormorant Garamond", serif;

    font-size: 24px;

    font-weight: 500;

    color: #f2eadc;
}


.ws-footer-heading-line {
    width: 42px;
    height: 1px;

    margin:
        12px
        0
        23px;

    background: #b58d4e;

    position: relative;
}


.ws-footer-heading-line::after {
    content: "";

    position: absolute;

    right: -7px;
    top: -2px;

    width: 5px;
    height: 5px;

    transform: rotate(45deg);

    background: #8f2930;
}



/* ==========================================
   BRAND
========================================== */

.ws-footer-logo {
    display: inline-flex;

    align-items: center;

    gap: 14px;

    text-decoration: none;
}


.ws-footer-logo > i {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    border: 1px solid
        rgba(191, 154, 85, 0.5);

    color: #c3a161;

    font-size: 20px;
}


.ws-footer-logo h2 {
    margin: 0;

    font-family: "Cormorant Garamond", serif;

    font-size: 30px;

    line-height: 1;

    font-weight: 500;

    color: #f2eadc;
}


.ws-footer-logo span {
    display: block;

    margin-top: 7px;

    font-family: "Montserrat", sans-serif;

    font-size: 7px;

    letter-spacing: 2.1px;

    color: #bba272;
}


.ws-footer-quote {
    max-width: 390px;

    margin:
        24px
        0
        0;

    font-family: "Cormorant Garamond", serif;

    font-size: 18px;

    line-height: 1.55;

    color: #bbb4a7;
}



/* ==========================================
   SOCIAL ICONS
========================================== */

.ws-footer-socials {
    display: flex;

    gap: 11px;

    margin-top: 26px;
}


.ws-social-link {
    width: 42px;
    height: 42px;

    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    border: 1px solid
        rgba(191, 154, 85, 0.35);

    color: #cab077;

    text-decoration: none;

    font-size: 15px;

    overflow: hidden;

    transition:
        transform 0.35s ease,
        color 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}


.ws-social-link::before {
    content: "";

    position: absolute;

    inset: 0;

    border-radius: inherit;

    background:
        linear-gradient(
            135deg,
            #b58d4e,
            #7d2026
        );

    transform: scale(0);

    transition:
        transform 0.35s
        cubic-bezier(0.22, 1, 0.36, 1);

    z-index: 0;
}


.ws-social-link i {
    position: relative;

    z-index: 1;
}


.ws-social-link:hover {
    transform:
        translateY(-5px)
        rotate(4deg);

    color: #ffffff;

    border-color: transparent;

    box-shadow:
        0 10px 25px
        rgba(0, 0, 0, 0.25);
}


.ws-social-link:hover::before {
    transform: scale(1);
}



/* ==========================================
   FOOTER LINKS
========================================== */

.ws-footer-links {
    margin: 0;
    padding: 0;

    list-style: none;
}


.ws-footer-links li {
    margin-bottom: 14px;
}


.ws-footer-links a {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    text-decoration: none;

    font-family: "Montserrat", sans-serif;

    font-size: 11px;

    color: #bfb8ab;

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}


.ws-footer-links a i {
    color: #a8864d;

    font-size: 8px;

    transition:
        transform 0.3s ease;
}


.ws-footer-links a:hover {
    color: #d9bd82;

    transform: translateX(4px);
}


.ws-footer-links a:hover i {
    transform: translateX(3px);
}



/* ==========================================
   MADE WITH MEANING
========================================== */

.ws-promise-intro {
    margin:
        0
        0
        20px;

    font-family: "Cormorant Garamond", serif;

    font-size: 17px;

    font-style: italic;

    color: #bca46f;
}


.ws-footer-promise-item {
    display: flex;

    align-items: flex-start;

    gap: 13px;

    margin-bottom: 18px;
}


.ws-promise-icon {
    width: 38px;
    height: 38px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        rgba(185, 147, 78, 0.07);

    border: 1px solid
        rgba(185, 147, 78, 0.3);

    color: #bc9651;

    font-size: 13px;
}


.ws-footer-promise-item strong {
    display: block;

    margin-bottom: 4px;

    font-family: "Montserrat", sans-serif;

    font-size: 10px;

    font-weight: 600;

    letter-spacing: 0.8px;

    color: #e4dbca;
}


.ws-footer-promise-item span {
    display: block;

    max-width: 230px;

    font-family: "Montserrat", sans-serif;

    font-size: 9px;

    line-height: 1.5;

    color: #aaa398;
}



/* ==========================================
   BOTTOM FOOTER
========================================== */

.ws-footer-bottom {
    border-top:
        1px solid
        rgba(192, 157, 91, 0.15);

    background:
        rgba(0, 0, 0, 0.12);
}


.ws-footer-bottom-inner {
    width: min(1400px, calc(100% - 80px));

    margin: auto;

    min-height: 68px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 25px;
}


.ws-footer-bottom p {
    margin: 0;

    font-family: "Montserrat", sans-serif;

    font-size: 9px;

    letter-spacing: 0.7px;

    color: #8f897e;
}


.ws-footer-bottom-quote {
    font-family: "Cormorant Garamond", serif;

    font-size: 16px;

    font-style: italic;

    color: #a98d58;
}



/* ==========================================
   TABLET
========================================== */

@media (max-width: 991px) {

    .ws-footer-container {
        width: calc(100% - 50px);

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap:
            45px
            55px;
    }


    .ws-footer-brand {
        padding-right: 25px;
    }


    .ws-footer-bottom-inner {
        width: calc(100% - 50px);
    }

}



/* ==========================================
   MOBILE
========================================== */

@media (max-width: 575px) {

    .ws-footer {
        margin-top: 45px;
    }


    .ws-footer-top-decoration {
        padding-top: 28px;
    }


    .ws-footer-emblem {
        width: 42px;
        height: 42px;

        font-size: 16px;
    }


    .ws-footer-container {
        width: calc(100% - 36px);

        grid-template-columns: 1fr;

        gap: 38px;

        padding:
            35px
            0
            42px;
    }


    .ws-footer-logo h2 {
        font-size: 27px;
    }


    .ws-footer-quote {
        font-size: 17px;
    }


    .ws-footer-column h3 {
        font-size: 22px;
    }


    .ws-footer-heading-line {
        margin-bottom: 18px;
    }


    .ws-footer-socials {
        flex-wrap: wrap;
    }


    .ws-footer-bottom-inner {
        width: calc(100% - 36px);

        min-height: 90px;

        padding:
            18px
            0;

        flex-direction: column;

        align-items: flex-start;
        justify-content: center;

        gap: 8px;
    }

}






/* =========================================================
   BLOG DETAIL PAGE
========================================================= */

.dd-blog-detail-page {
    width: 100%;

    background:
        radial-gradient(
            circle at 45% 10%,
            rgba(192, 157, 95, .05),
            transparent 32%
        ),
        #fffaf1;

    color: #44392f;
}


.dd-blog-detail-container {
    width:
        min(
            1380px,
            calc(100% - 70px)
        );

    margin: 0 auto;

    padding:
        28px
        0
        0;
}


/* =========================================================
   BREADCRUMB
========================================================= */

.dd-blog-breadcrumb {
    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 10px;

    margin-bottom: 22px;

    font-family:
        "Montserrat",
        sans-serif;

    font-size: 9px;

    color: #71695e;
}


.dd-blog-breadcrumb a {
    color: #5c554c;

    text-decoration: none;

    transition: color .4s ease;
}


.dd-blog-breadcrumb a:hover {
    color: #842428;
}


.dd-blog-breadcrumb i {
    font-size: 7px;

    color: #ae9872;
}


/* =========================================================
   MAIN LAYOUT
========================================================= */

.dd-blog-detail-layout {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        285px;

    gap: 30px;

    align-items: start;
}


/* =========================================================
   ARTICLE HEADER
========================================================= */

.dd-blog-article-header {
    text-align: center;

    margin-bottom: 18px;
}


.dd-blog-category-line {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 11px;

    margin-bottom: 9px;

    font-family:
        "Montserrat",
        sans-serif;

    font-size: 9px;

    font-weight: 600;

    letter-spacing: 1.7px;

    color: #85262b;
}


.dd-blog-category-line i {
    font-size: 4px;

    color: #b38d48;
}


.dd-blog-article-header h1 {
    max-width: 900px;

    margin:
        0
        auto;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size:
        45px;

    line-height: .96;

    font-weight: 500;

    color: #383328;
}


.dd-blog-article-header h1 em {
    display: block;

    font-weight: 400;

    color: #4a3c33;
}


.dd-blog-title-decoration {
    width: 260px;

    max-width: 70%;

    margin:
        13px
        auto
        10px;

    display: flex;

    align-items: center;

    gap: 10px;
}


.dd-blog-title-decoration span {
    flex: 1;

    height: 1px;

    background: #d2b17a;
}


.dd-blog-title-decoration i {
    color: #b18a48;

    font-size: 10px;
}


/* =========================================================
   META
========================================================= */

.dd-blog-meta {
    display: flex;

    align-items: center;
    justify-content: center;

    flex-wrap: wrap;

    gap: 12px;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 14px;

    color: #62594f;
}


.dd-blog-meta span {
    display: inline-flex;

    align-items: center;

    gap: 7px;
}


.dd-blog-meta i {
    color: #747b4d;

    font-size: 10px;
}


.dd-blog-meta-divider {
    width: 1px;

    height: 13px;

    background: #c6ad81;
}


/* =========================================================
   HERO IMAGE
========================================================= */

.dd-blog-hero-image {
    width: 100%;

    height: 440px;

    overflow: hidden;

    border-radius: 10px;

}


.dd-blog-hero-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 1.4s
        cubic-bezier(.16, 1, .3, 1);
}


.dd-blog-hero-image:hover img {
    transform: scale(1.02);
}


/* =========================================================
   ARTICLE CONTENT
========================================================= */

.dd-blog-article-content {
    max-width: 870px;

    margin: 20px auto 0;
}


.dd-blog-article-content > p,
.dd-blog-content-text p {
    margin:
        0
        0
        14px;

    font-family: "Montserrat", sans-serif;
    font-size: 15px;

    line-height: 1.45;

    color: #51483f;
}


.dd-blog-dropcap::first-letter {
    float: left;

    margin:
        -7px
        8px
        -3px
        0;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 67px;

    line-height: .82;

    color: #851f25;
}


/* =========================================================
   QUOTE
========================================================= */

.dd-blog-quote {
    position: relative;

    margin:
        15px
        0
        18px;

    padding:
        17px
        70px
        14px;

    overflow: hidden;

    border:
        1px solid
        rgba(185, 151, 89, .35);

    border-radius: 8px;

    background:
        linear-gradient(
            135deg,
            #fffaf1,
            #f8efe0
        );

    text-align: center;
}


.dd-blog-quote-mark {
    position: absolute;

    left: 20px;
    top: 3px;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 54px;

    color: #ad8848;
}


.dd-blog-quote p {
    margin: 0;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 19px;

    font-style: italic;

    line-height: 1.4;

    color: #5a5046;
}


.dd-blog-quote cite {
    display: block;

    margin-top: 5px;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 14px;

    color: #81262a;
}


/* =========================================================
   ARTICLE CONTENT ROWS
========================================================= */

.dd-blog-content-row {
    display: grid;

    grid-template-columns:
        1.25fr
        .75fr;

    gap: 20px;

    align-items: center;

    margin:
        12px
        0;
}


.dd-blog-content-row-left-image {
    grid-template-columns:
        .78fr
        1.22fr;
}


.dd-blog-content-text h2 {
    margin:
        0
        0
        6px;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 24px;

    line-height: 1.05;

    font-weight: 500;

    color: #4d5233;
}


.dd-blog-content-image {
    width: 100%;

    height: 150px;

    overflow: hidden;

    border-radius: 7px;
}


.dd-blog-content-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}


.dd-blog-closing-text {
    margin-top: 13px !important;
}


/* =========================================================
   SMALL DIVIDER
========================================================= */

.dd-blog-mini-divider {
    width: 170px;

    margin:
        12px
        auto;

    display: flex;

    align-items: center;

    gap: 8px;
}


.dd-blog-mini-divider span {
    flex: 1;

    height: 1px;

    background: #d0b278;
}


.dd-blog-mini-divider i {
    color: #b18b49;

    font-size: 9px;
}


/* =========================================================
   SIDEBAR
========================================================= */

.dd-blog-sidebar {
    display: flex;

    flex-direction: column;

    gap: 14px;
}


.dd-blog-sidebar-card {
    padding:
        18px
        18px;

    border:
        1px solid
        rgba(185, 151, 89, .32);

    border-radius: 9px;

    background:
        rgba(255, 251, 243, .82);
}


.dd-sidebar-title {
    display: block;

    margin-bottom: 13px;

    font-family:
        "Montserrat",
        sans-serif;

    font-size: 9px;

    font-weight: 600;

    letter-spacing: 1px;

    color: #5f5147;
}


/* =========================================================
   AUTHORS
========================================================= */

.dd-blog-author-card {
    text-align: center;
}


.dd-author-image-wrap {
    width: 145px;
    height: 145px;

    margin:
        0
        auto
        12px;

    position: relative;
}


.dd-author-image-wrap img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    border:
        3px solid
        #d4b46f;

    border-radius: 50%;
}


.dd-author-leaf {
    position: absolute;

    right: -20px;
    bottom: -5px;

    font-size: 45px;

    color:
        rgba(107, 116, 64, .30);
}


.dd-blog-author-card h3 {
    margin:
        0
        0
        8px;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 23px;

    font-weight: 500;

    color: #44382f;
}


.dd-blog-author-card p {
    margin: 0;

    font-family: "Montserrat", sans-serif;

    font-size: 14px;

    line-height: 1.35;

    color: #62574e;
}


.dd-sidebar-link,
.dd-sidebar-bottom-link {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-top: 12px;

    text-decoration: none;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 15px;

    color: #8b282d;

    transition:
        gap .6s ease,
        color .6s ease;
}


.dd-sidebar-link:hover,
.dd-sidebar-bottom-link:hover {
    gap: 12px;

    color: #62683f;
}


/* =========================================================
   RECENT POSTS
========================================================= */

.dd-recent-post-list {
    display: flex;

    flex-direction: column;

    gap: 10px;
}


.dd-recent-post {
    display: grid;

    grid-template-columns:
        72px
        minmax(0, 1fr);

    gap: 10px;

    align-items: center;

    text-decoration: none;
}


.dd-recent-post img {
    width: 72px;
    height: 62px;

    object-fit: cover;

    border-radius: 5px;
}


.dd-recent-post strong {
    display: block;

    font-family: "Montserrat", sans-serif;

    font-size: 13px;

    line-height: 1.15;

    font-weight: 500;

    color: #4a4037;
}


.dd-recent-post span {
    display: block;

    margin-top: 5px;

    font-family:
        "Montserrat",
        sans-serif;

    font-size: 7px;

    color: #8a7b67;
}


/* =========================================================
   PERSONAL NOTE
========================================================= */

.dd-blog-note-card {
    min-height: 195px;

    position: relative;

    overflow: hidden;

    padding:
        20px
        21px;

    /* background:
        linear-gradient(
            145deg,
            #fffaf1,
            #f6ebdc
        ); */

    border:
        1px solid
        rgba(185, 151, 89, .30);

    transform: rotate(-1deg);
}


.dd-blog-note-title {
    display: block;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 28px;

    font-style: italic;

    color: #7b563d;
}


.dd-blog-note-heart {
    position: absolute;

    top: 22px;
    right: 23px;

    color: #8b282d;

    font-size: 14px;
}


.dd-blog-note-card p {
    max-width: 190px;

    margin:
        14px
        0
        12px;

    font-family: "Montserrat", sans-serif;

    font-size: 14px;

    font-style: italic;

    line-height: 1.35;

    color: #6c5e54;
}


.dd-blog-note-signature {
    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 15px;

    font-style: italic;

    color: #735948;
}


.dd-blog-note-botanical {
    position: absolute;

    right: 8px;
    bottom: -9px;

    font-size: 66px;

    color:
        rgba(126, 126, 73, .20);
}


/* =========================================================
   CATEGORY LIST
========================================================= */

.dd-blog-category-list {
    margin: 0;

    padding: 0;

    list-style: none;
}


.dd-blog-category-list li + li {
    margin-top: 7px;
}


.dd-blog-category-list a {
    display: flex;

    align-items: center;
    justify-content: space-between;

    text-decoration: none;

    font-family: "Montserrat", sans-serif;

    font-size: 13px;

    color: #51483f;
}


.dd-blog-category-list small {
    font-size: 12px;
}


/* =========================================================
   RELATED POSTS
========================================================= */

.dd-related-blogs {
    margin-top: 25px;

    padding-bottom: 24px;
}


.dd-related-heading {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 15px;

    margin-bottom: 14px;
}


.dd-related-heading span {
    width: 70px;

    height: 1px;

    background: #d1b47a;
}


.dd-related-heading h2 {
    margin: 0;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 25px;

    font-weight: 500;

    color: #4d5233;
}


.dd-related-grid {
    display: grid;

    grid-template-columns:
        repeat(
            3,
            minmax(0, 1fr)
        );

    gap: 20px;
}


.dd-related-card {
    overflow: hidden;

    border:
        1px solid
        rgba(185, 151, 89, .32);

    border-radius: 8px;

    background: #fffaf2;

    text-align: center;
}


.dd-related-image {
    width: 100%;

    height: 150px;

    display: block;

    overflow: hidden;
}


.dd-related-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 1s
        cubic-bezier(.16, 1, .3, 1);
}


.dd-related-card:hover
.dd-related-image img {
    transform: scale(1.035);
}


.dd-related-content {
    padding:
        10px
        12px
        12px;
}


.dd-related-content > span {
    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 7px;

    font-weight: 600;

    letter-spacing: 1.1px;

    color: #8c663d;
}


.dd-related-content h3 {
    margin:
        5px
        auto
        8px;

    max-width: 240px;

    font-family: "Montserrat", sans-serif;

    font-size: 16px;

    line-height: 1.03;

    font-weight: 500;

    color: #41372f;
}


.dd-related-meta {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 8px;

    font-family:
        "Montserrat",
        sans-serif;

    font-size: 7px;

    color: #776c61;
}


.dd-related-meta i {
    font-size: 3px;

    color: #b28e4f;
}


/* =========================================================
   NEWSLETTER
========================================================= */

.dd-blog-newsletter {
    min-height: 75px;

    position: relative;

    overflow: hidden;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(360px, .8fr);

    align-items: center;

    gap: 25px;

    padding:
        12px
        25px
        12px
        140px;

    border-radius:
        10px
        10px
        0
        0;

    background:
        linear-gradient(
            135deg,
            #ebe2cc,
            #f3ead6
        );
}


.dd-blog-newsletter-decoration {
    position: absolute;

    left: 25px;
    bottom: -20px;

    font-size: 105px;

    color:
        rgba(100, 110, 61, .20);

    transform: rotate(-18deg);
}


.dd-blog-newsletter-copy h3 {
    margin: 0;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 19px;

    font-weight: 500;

    color: #474338;
}


.dd-blog-newsletter-copy p {
    margin:
        3px
        0
        0;

    font-family: "Montserrat", sans-serif;

    font-size: 13px;

    color: #6c6256;
}


.dd-blog-newsletter-form {
    display: flex;

    height: 38px;
}


.dd-blog-newsletter-form input {
    min-width: 0;

    flex: 1;

    padding:
        0
        14px;

    border:
        1px solid
        #d7c3a2;

    border-right: 0;

    outline: none;

    background: #fff;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 14px;
}


.dd-blog-newsletter-form button {
    width: 125px;

    border: 0;

    background: #821f24;

    color: #fff5e8;

    font-family:
        "Montserrat",
        sans-serif;

    font-size: 8px;

    font-weight: 600;

    letter-spacing: 1px;

    cursor: pointer;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .dd-blog-detail-container {
        width:
            calc(
                100% - 40px
            );
    }


    .dd-blog-detail-layout {
        grid-template-columns: 1fr;
    }


    .dd-blog-sidebar {
        display: grid;

        grid-template-columns:
            repeat(
                2,
                minmax(0, 1fr)
            );

        gap: 15px;
    }


    .dd-blog-hero-image {
        height: 400px;
    }


    .dd-blog-newsletter {
        grid-template-columns: 1fr;

        padding:
            22px
            25px
            22px
            120px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 575px) {

    .dd-blog-detail-container {
        width:
            calc(
                100% - 24px
            );

        padding-top: 18px;
    }


    .dd-blog-breadcrumb {
        font-size: 8px;

        gap: 7px;
    }


    .dd-blog-article-header h1 {
        font-size: 37px;
    }


    .dd-blog-category-line {
        font-size: 7px;

        letter-spacing: 1.1px;
    }


    .dd-blog-meta {
        gap: 8px;

        font-size: 12px;
    }


    .dd-blog-meta-divider {
        display: none;
    }


    .dd-blog-hero-image {
        height: 260px;
    }


    .dd-blog-article-content > p,
    .dd-blog-content-text p {
        font-size: 16px;
    }


    .dd-blog-quote {
        padding:
            18px
            30px
            16px;
    }


    .dd-blog-quote-mark {
        left: 10px;
    }


    .dd-blog-content-row,
    .dd-blog-content-row-left-image {
        grid-template-columns: 1fr;
    }


    .dd-blog-content-row-left-image
    .dd-blog-content-image {
        order: 2;
    }


    .dd-blog-content-image {
        height: 190px;
    }


    .dd-blog-sidebar {
        grid-template-columns: 1fr;
    }


    .dd-related-heading span {
        width: 25px;
    }


    .dd-related-heading h2 {
        font-size: 22px;
    }


    .dd-related-grid {
        grid-template-columns: 1fr;
    }


    .dd-related-image {
        height: 205px;
    }


    .dd-blog-newsletter {
        padding:
            24px
            18px;

        grid-template-columns: 1fr;
    }


    .dd-blog-newsletter-decoration {
        display: none;
    }


    .dd-blog-newsletter-form {
        width: 100%;
    }


    .dd-blog-newsletter-form button {
        width: 105px;
    }

}