:root {
    /* Color Palette */
    --clr-charcoal: #4E6B5A;
    --clr-charcoal-light: #728A78;
    --clr-gold: #D08A5B;
    --clr-offwhite: #FBF7F2;
    --clr-offwhite-alt: #E8DED1;

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing & Sizes */
    --nav-height: 70px;
    --container-max: 1400px;
    --container-px: 5%;

    /* Easing */
    --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

html {
    overflow-x: hidden;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--clr-offwhite);
    color: var(--clr-charcoal);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Preloader to prevent FOUC */
body.preload * {
    transition: none !important;
}

/* Typography */
h1,
h2,
h3,
h4,
.font-serif {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.1;
}

i,
em {
    font-style: italic;
    color: var(--clr-gold);
}

.section-title {
    font-size: clamp(3rem, 6vw, 5rem);
    margin-bottom: 2rem;
}

.text-small {
    font-size: 0.875rem;
}

.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 2rem;
}

/* Layout & Utils */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-px);
}

.pb-8 {
    padding-bottom: 8rem;
}

.section-padding {
    padding: 8rem 0;
}

.full-width {
    width: 100%;
}

.hidden {
    display: none !important;
}

.desktop-only {
    display: block !important;
}

.mobile-only {
    display: none !important;
}


@media (max-width: 768px) {
    .desktop-only {
        display: none !important;
    }

    .mobile-only {
        display: block !important;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    border-radius: 50px;
    border: 1px solid var(--clr-charcoal);
    transition: color 0.4s var(--ease-out-expo);
    z-index: 1;
}

.btn-text {
    position: relative;
    z-index: 2;
}

.btn-fill {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--clr-charcoal);
    border-radius: 50px;
    transition: transform 0.4s var(--ease-out-expo);
    z-index: 0;
    transform-origin: bottom center;
}

.btn:hover .btn-fill {
    transform: translateY(-100%);
    border-radius: 0;
}

.btn-primary {
    background-color: var(--clr-charcoal);
    color: var(--clr-offwhite);
    border-color: var(--clr-charcoal);
}

.btn-primary .btn-fill {
    background-color: var(--clr-gold);
}

.btn-primary:hover {
    color: var(--clr-charcoal);
}

.btn-outline {
    background: transparent;
    color: var(--clr-charcoal);
}

.btn-outline:hover {
    color: var(--clr-offwhite);
}

.site-header .btn-primary {
    transition: all 0.4s ease;
}

body.has-hero .site-header:not(.scrolled) .btn-primary {
    background: transparent;
    color: var(--clr-offwhite);
    border-color: var(--clr-offwhite);
}

body.has-hero .site-header:not(.scrolled) .btn-primary .btn-fill {
    background: var(--clr-offwhite);
}

body.has-hero .site-header:not(.scrolled) .btn-primary:hover {
    color: var(--clr-charcoal);
}

.site-header.scrolled .btn-primary {
    background: var(--clr-charcoal);
    color: var(--clr-offwhite);
    border-color: var(--clr-charcoal);
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    z-index: 105;
    display: flex;
    align-items: center;
    background: rgba(251, 247, 242, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(78, 107, 90, 0.1);
    transition: all 0.4s ease;
}

/* Hero Page Initial State */
body.has-hero .site-header:not(.scrolled) {
    background: transparent;
    backdrop-filter: none;
    border-bottom: 1px solid transparent;
}

.site-header.scrolled {
    background: rgba(251, 247, 242, 0.98);
    backdrop-filter: blur(24px);
}

/* Hide header on testimonials page when scrolled */
body.page-testimonials .site-header.scrolled {
    opacity: 0 !important;
    pointer-events: none !important;
    transform: translateY(-100%) !important;
}

/* Testimonials Video Sizing */
.testimonial-video-wrapper {
    width: 100%;
    aspect-ratio: 16 / 9;
}

@media (min-width: 769px) {
    .testimonial-video-wrapper {
        height: 95vh;
        width: auto;
        aspect-ratio: 16 / 9;
    }
}

/* Testimonials Page Header Layout */
.testimonials-page-header {
    text-align: center;
    padding-top: calc(var(--nav-height) + 4rem);
    padding-bottom: 2rem;
}
.testimonials-page-header .contact-subtitle {
    margin-bottom: 2rem;
}

@media (min-width: 769px) {
    .testimonials-page-header {
        padding-top: calc(var(--nav-height) + 1.5rem);
    }
    
    .testimonials-header-desktop {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .testimonials-header-desktop .text-left {
        text-align: left;
        max-width: 60%;
    }
    
    .testimonials-header-desktop .section-title {
        margin-bottom: 0.5rem;
        text-align: left;
    }
    
    .testimonials-header-desktop .contact-subtitle {
        margin-bottom: 0;
    }
    
    .testimonials-header-desktop .btn-right {
        display: flex;
        justify-content: flex-end;
    }
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 600;
    text-decoration: none;
    color: var(--clr-charcoal);
    z-index: 102;
    position: relative;
    transition: color 0.4s ease;
}

.logo img {
    height: 38px;
    width: auto;
    transition: all 0.4s ease;
}

@media (min-width: 1024px) {
    .logo img {
        height: 52px;
    }
}

body.has-hero .site-header:not(.scrolled) .logo {
    color: var(--clr-offwhite);
}

body.has-hero .site-header:not(.scrolled) .logo img {
    filter: brightness(0) invert(1);
}

.desktop-nav {
    display: flex;
    gap: 3rem;
}

.nav-link {
    text-decoration: none;
    color: var(--clr-charcoal);
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
    transition: color 0.4s ease;
}

body.has-hero .site-header:not(.scrolled) .nav-link {
    color: var(--clr-offwhite);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--clr-gold);
    transform: translateX(-101%);
    transition: transform 0.4s var(--ease-out-expo);
}

.nav-link.active::after,
.nav-link:hover::after {
    transform: translateX(0);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    width: 40px;
    height: 40px;
    position: relative;
    z-index: 102;
}

.menu-toggle .line {
    position: absolute;
    height: 2px;
    width: 30px;
    background: var(--clr-charcoal);
    left: 5px;
    transition: transform 0.4s ease, background 0.4s ease, opacity 0.4s ease;
}

body.has-hero .site-header:not(.scrolled) .menu-toggle .line {
    background: var(--clr-offwhite);
}

.menu-toggle .line-1 {
    top: 13px;
}

.menu-toggle .line-2 {
    top: 19px;
}

.menu-toggle .line-3 {
    top: 25px;
}

.menu-toggle.open .line-1 {
    transform: translateY(6px) rotate(45deg);
}

.menu-toggle.open .line-2 {
    opacity: 0;
    transform: scaleX(0);
}

.menu-toggle.open .line-3 {
    transform: translateY(-6px) rotate(-45deg);
}

/* Mobile Menu Backdrop */
.mobile-menu-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.4);
    z-index: 100;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    backdrop-filter: blur(5px);
}

.mobile-menu-backdrop.active {
    opacity: 1;
    pointer-events: auto;
}

/* Mobile Menu Drawer */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    max-height: 70vh;
    background: var(--clr-charcoal);
    z-index: 104;
    transform: translateY(-100%);
    transition: transform 0.6s var(--ease-out-expo);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(var(--nav-height) + 2rem) 0 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(251, 247, 242, 0.1);
}

.mobile-menu.active {
    transform: translateY(0);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
    width: 100%;
}

.mobile-nav-link {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--clr-offwhite);
    text-decoration: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.6s var(--ease-out-expo);
    text-align: center;
}

.mobile-nav-link i {
    color: var(--clr-gold);
}

.mobile-menu.active .mobile-nav-link {
    opacity: 1;
    transform: translateY(0);
}

/* Fashion Hero Section (Pinned & Horizontal) */
.fashion-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    background-color: #000;
    overflow: visible;
    /* Allow arrow overlap */
    z-index: 10;
}

.fashion-hero .scroll-down {
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
}






.fashion-track {
    display: flex;
    height: 100%;
    width: 100%;
    position: relative;
}

.fashion-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #000;
}

@media (min-width: 769px) {

    .slide-1,
    .slide-2 {
        width: 85vw;
    }

    .slide-3 {
        width: 100vw;
    }
}



.slide-1 {
    z-index: 1;
}

.slide-2 {
    z-index: 2;
}

.slide-3 {
    z-index: 3;
}

.slide-4 {
    z-index: 4;
}

.fashion-img-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.fashion-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.fashion-img-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.fashion-content {
    position: relative;
    z-index: 3;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.fashion-inner {
    color: #fff;
    padding-left: 5%;
}

.fashion-quote {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: clamp(1.1rem, 2vw, 1.6rem);
    max-width: 600px;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.5;
}

.fashion-title {
    font-family: var(--font-body);
    font-size: clamp(3.5rem, 12vw, 10rem);
    text-transform: uppercase;
    line-height: 0.85;
    letter-spacing: -0.04em;
    font-weight: 300;
    margin: 0;
}

.fashion-title i {
    font-family: var(--font-heading);
    font-weight: 400;
    font-style: italic;
    color: var(--clr-gold);
}

.fashion-number {
    position: absolute;
    bottom: 5vh;
    right: 5vw;
    font-family: var(--font-body);
    font-size: clamp(4rem, 10vw, 12rem);
    font-weight: 200;
    opacity: 0.15;
    color: #fff;
    pointer-events: none;
    line-height: 1;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 5vh;
    left: 5vw;
    z-index: 20;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #fff;
}

.indicator-text {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 500;
}

.indicator-line {
    width: 50px;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.indicator-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    transform: translateX(-100%);
    animation: indicatorMove 2.5s infinite ease-in-out;
}

@keyframes indicatorMove {
    0% {
        transform: translateX(-100%);
    }

    40%,
    60% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(100%);
    }
}

/* Hero Banner Slider */
.hero-banner {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    background-color: #000;
}

.banner-slides {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: bottom center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.15));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: var(--clr-offwhite);
    max-width: 100%;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    text-align: left;
    margin-left: 0;
    margin-right: auto;
}

.hero-banner .container {
    max-width: 100%;
}

.hero-title {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    line-height: 1.2;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    text-align: left;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 0.95rem;
    margin-bottom: 2rem;
    max-width: 450px;
    opacity: 0.7;
    letter-spacing: 0.05em;
    text-align: left;
}

.banner-pagination {
    position: absolute;
    bottom: 40px;
    right: 5vw;
    display: flex;
    gap: 12px;
    z-index: 4;
}

.dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(251, 247, 242, 0.4);
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

.dot.active {
    background: var(--clr-gold);
    transform: scale(2);
}

.dot:hover {
    background: rgba(251, 247, 242, 0.6);
}

@media (max-width: 768px) {
    .hero-banner {
        height: 65vh;
        overflow: visible;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .scroll-down {
        bottom: -25px !important;
        z-index: 10;
    }
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    width: 50px;
    height: 50px;
    background: var(--clr-offwhite);
    color: var(--clr-charcoal);
    border-radius: 50%;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    cursor: pointer;


    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    animation: bounce 2s infinite;
}


.scroll-down:hover {
    transform: translateX(-50%) scale(1.1);
    background: var(--clr-gold);
    color: var(--clr-offwhite);
}

.scroll-down svg {
    display: block !important;
    width: 24px !important;
    height: 24px !important;
    margin: 0 !important;
}


@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Legacy Section */
.legacy-section {
    background-color: var(--clr-offwhite);
}

.legacy-section .section-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
}

.legacy-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 6rem;
    align-items: center;
}

.sub-heading {
    display: block;
    font-size: 0.85rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--clr-gold);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.legacy-desc {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    opacity: 0.8;
    max-width: 600px;
}

.legacy-image-wrapper {
    position: relative;
    height: 70vh;
    min-height: 500px;
}

.legacy-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2px;
}

@media (max-width: 768px) {
    .legacy-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .legacy-mobile-img {
        margin: 0 0 1.5rem 0;
        width: 100%;
        height: auto;
        overflow: hidden;
    }

    .legacy-mobile-img img {
        width: 100%;
        height: auto;
        display: block;
        object-fit: cover;
    }

    .legacy-text-wrapper {
        display: flex;
        flex-direction: column;
    }
}

/* Full Screen Horizontal Gallery */

.gallery-section {
    background-color: var(--clr-offwhite);
    color: var(--clr-charcoal);
    overflow: hidden;
    height: 100vh;
    width: 100%; /* was 100vw — vw includes scrollbar width and causes horizontal overflow */
    display: flex;
    flex-direction: column;
    padding: 0;
    position: relative;
}

.gallery-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem var(--container-px) 1rem;
    width: 100%;
    max-width: 100% !important;
    height: auto;
    z-index: 10;
    flex-shrink: 0;
}

.desktop-gallery-auto {
    display: flex;
    flex-direction: column;
    width: 100%;
    overflow: hidden;
    padding: 2rem 0 4rem;
}

.desktop-gallery-auto .splide:first-child {
    margin-bottom: 10px;
}

.desktop-gallery-auto .splide__slide {
    width: auto !important;
    height: 40vh;
    overflow: hidden;
    border-radius: 0;
}

.desktop-gallery-auto .splide__slide img {
    height: 100%;
    width: auto;
    display: block;
    object-fit: contain;
    pointer-events: none;
}

@media (max-width: 768px) {
    .gallery-section {
        height: auto;
        padding: 4rem 0;
        background-color: var(--clr-offwhite);
    }

    .gallery-header-row {
        height: auto;
        margin-bottom: 2rem;
    }

    .mobile-carousel-container {
        display: flex;
        flex-direction: column;
        gap: 10px;
        width: 100%;
        overflow: hidden;
        padding: 2rem 0;
        background-color: var(--clr-offwhite);
    }

    .mobile-gallery-container {
        display: flex;
        flex-direction: column;
        gap: 2px;
        width: 100%;
        overflow: hidden;
    }

    .mobile-gallery-row {
        width: 100%;
    }

    .mobile-gallery-row .splide__slide {
        width: 60vw;
        height: 40vh;
        overflow: hidden;
        border-radius: 2px;
    }

    .mobile-gallery-row .splide__slide.no-crop {
        width: auto !important;
    }

    .mobile-gallery-row .splide__slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .mobile-gallery-row .splide__slide.no-crop img {
        width: auto;
        object-fit: contain;
    }
}

@media (max-width: 768px) {
    .mobile-gallery-row:first-child {
        margin-bottom: 8px;
    }
}

.gallery-section .section-title {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 0;
}

.gallery-section .btn {
    padding: 0.8rem 2rem;
    font-size: 0.8rem;
    border-color: rgba(78, 107, 90, 0.2);
    color: var(--clr-charcoal);
}

.gallery-section .btn-fill {
    background-color: var(--clr-charcoal);
}

.gallery-section .btn:hover {
    color: var(--clr-offwhite);
}

/* Reveal Mask */
.mask-reveal {
    position: relative;
    overflow: hidden;
}

.mask-reveal::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--clr-charcoal);
    z-index: 1;
    transform-origin: top;
    transition: transform 1.2s var(--ease-out-expo);
}

.mask-reveal.revealed::after {
    transform: scaleY(0);
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--clr-offwhite-alt);
    overflow: hidden;
    position: relative;
    padding: 4rem 0 8rem 0; /* Reduced top padding to remove unnecessary gap above header */
}

.testimonials-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 3rem;
}

@media (max-width: 768px) {
    .testimonials-header-row {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
        margin-bottom: 2rem;
    }
}

.testimonials-grid-container {
    margin-top: 5rem;
}

/* Testimonials Layout Container (Split Layout) */
.testimonials-layout-container {
    display: flex;
    gap: 0;
    align-items: stretch;
    justify-content: space-between;
    margin-top: 2rem;
    width: 100%;
    padding: 0 20px; /* 20px padding to right and left */
    box-sizing: border-box;
}

.testimonials-featured-wrapper {
    flex: 0 0 30%;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

.testimonials-featured-wrapper .testimonial-card {
    height: 100%;
}

.testimonials-carousel-wrapper {
    flex: 0 0 72%;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 1;
    margin-left: -2.5rem;
    padding-left: 2.5rem;
    overflow: hidden;
}

.testimonials-carousel-wrapper .splide__slide {
    height: auto;
}

.testimonials-carousel-wrapper .testimonial-card {
    height: 100%;
}

@media (max-width: 1024px) {
    .testimonials-layout-container {
        gap: 2rem;
        padding: 0 20px; /* Keep consistent 20px margin */
    }
    .testimonials-featured-wrapper {
        flex: 0 0 42%;
    }
    .testimonials-carousel-wrapper {
        flex: 0 0 54%;
    }
}

@media (max-width: 767px) {
    .testimonials-layout-container {
        flex-direction: column;
        gap: 2.5rem;
        padding: 0 20px; /* Keep consistent 20px margin */
    }
    
    .testimonials-featured-wrapper {
        flex: 0 0 100%;
        width: 100%;
    }
    
    .testimonials-carousel-wrapper {
        flex: 0 0 100%;
        width: calc(100% + 20px);
        margin-right: -20px;
    }
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

/* Google Reviews Style Testimonial Cards */
.testimonial-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 15px 45px rgba(78, 107, 90, 0.05);
    text-align: left;
    border: 1px solid rgba(78, 107, 90, 0.05);
    display: flex;
    flex-direction: column;
    transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s var(--ease-out-expo);
    height: 100%;
}
.testimonial-card:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 25px 60px rgba(78, 107, 90, 0.12);
}
.testimonial-card.expandable {
    cursor: pointer;
}

/* Featured Testimonial Card Styling */
.testimonial-card.featured-card {
    background: #fffcf8; /* Subtle warm premium background */
    border: 1px solid rgba(212, 175, 55, 0.3); /* Subtle gold border */
    /* Deep right-side shadow to sell the 'cards going behind' depth effect */
    box-shadow:
        0 15px 45px rgba(212, 175, 55, 0.08),
        12px 0 40px -5px rgba(0, 0, 0, 0.18);
    position: relative;
    cursor: pointer;
}
.testimonial-card.featured-card::before {
    content: "Featured Review";
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--clr-gold);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.3);
}
.testimonial-card.featured-card:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow:
        0 25px 60px rgba(212, 175, 55, 0.15),
        12px 0 40px -5px rgba(0, 0, 0, 0.18);
}

.gr-header {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
}
.gr-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--clr-gold);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    margin-right: 12px;
}
.gr-user-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.gr-author {
    margin: 0;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--clr-charcoal);
}
.gr-meta {
    font-size: 0.8rem;
    color: #70757a;
}
.gr-google-icon {
    width: 24px;
    height: 24px;
}
.gr-rating-row {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}
.gr-stars {
    display: flex;
    gap: 2px;
    margin-right: 8px;
}
.gr-date {
    font-size: 0.85rem;
    color: rgba(78, 107, 90, 0.5);
}
.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--clr-charcoal-light);
    margin-bottom: 1rem;
}
.read-more-btn {
    background: none;
    border: none;
    color: var(--clr-gold);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0;
    margin-bottom: 1rem;
    display: inline-block;
    transition: opacity 0.3s ease;
    cursor: pointer;
}
.read-more-btn:hover {
    opacity: 0.7;
}
.gr-gallery {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
}
.gr-gallery::-webkit-scrollbar {
    display: none;
}
.gr-gallery-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
    cursor: pointer;
    transition: filter 0.2s;
}
.gr-gallery-img:hover {
    filter: brightness(0.8);
}

/* Image Lightbox */
.img-lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.img-lightbox-overlay.active {
    opacity: 1;
    visibility: visible;
}
.lightbox-img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 4px;
}
.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: white;
    font-size: 3rem;
    cursor: pointer;
    padding: 10px;
    line-height: 1;
}

.lightbox-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: white;
    font-size: 1.5rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
    z-index: 2010;
    user-select: none;
}
.lightbox-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-50%) scale(1.05);
}
.lightbox-btn:active {
    transform: translateY(-50%) scale(0.95);
}
.lightbox-prev {
    left: 40px;
}
.lightbox-next {
    right: 40px;
}

@media (max-width: 768px) {
    .lightbox-btn {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
        background: rgba(0, 0, 0, 0.5);
    }
    .lightbox-prev {
        left: 15px;
    }
    .lightbox-next {
        right: 15px;
    }
}


/* Overrides for the GR modal */
.gr-modal {
    max-width: 600px !important;
    text-align: left !important;
}
.gr-modal .modal-body {
    padding: 2.5rem 2rem !important;
}
.gr-modal .modal-review-text {
    font-size: 1.05rem;
    line-height: 1.6;
}

/* Modal / Overlay */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(78, 107, 90, 0.9);
    backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--clr-offwhite);
    width: 90%;
    max-width: 800px;
    max-height: 85vh;
    border-radius: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    /* Header/Close button stay fixed */
    transform: scale(0.85);
    transition: transform 0.6s var(--ease-out-expo);
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.5);
}

.modal-body {
    padding: 5rem 4rem;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.close-modal {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: var(--clr-charcoal);
    font-size: 2.2rem;
    line-height: 1;
    padding: 0.5rem;
    transition: transform 0.3s ease, color 0.3s ease;
    z-index: 10;
    /* Above modal body */
    cursor: pointer;
}

.close-modal:hover {
    transform: rotate(90deg);
}

.modal-review-text {
    font-size: 1.35rem;
    /* More subtle, clean size */
    font-family: var(--font-body);
    /* Better readability */
    line-height: 1.8;
    color: #000;
    /* Subtle jet black as requested */
    margin-bottom: 3rem;
    font-weight: 400;
    /* Clean & minimal */
}

.modal-footer {
    display: flex;
    flex-direction: column;
}

/* Responsiveness */
@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .modal-content {
        width: 100%;
        height: 100%;
        max-height: 100vh;
        border-radius: 0;
        padding: 0;
    }

    .modal-body {
        padding: 7rem 1.5rem 3rem;
    }

    .modal-review-text {
        font-size: 1.25rem;
        line-height: 1.6;
    }

    .close-modal {
        top: 1.5rem;
        right: 1.5rem;
        background: var(--clr-offwhite);
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/5;
}

.about-image-wrapper::after {
    background: var(--clr-offwhite);
}

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

.about-desc {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--clr-charcoal-light);
    margin-bottom: 2rem;
}

/* Contact Section & Mesh Gradient */
.contact-section {
    position: relative;
    overflow: hidden;
    background-image: url('../img/1_16_.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: calc(var(--nav-height) + 6rem);
    padding-bottom: 6rem;
}

.contact-section .mesh-gradient-bg {
    display: none;
}

.mesh-gradient-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(at 20% 20%, rgba(208, 138, 91, 0.4) 0px, transparent 50%),
        radial-gradient(at 80% 80%, rgba(26, 26, 26, 0.05) 0px, transparent 50%),
        radial-gradient(at 50% 50%, rgba(251, 247, 242, 1) 0px, transparent 50%);
    filter: blur(40px);
    z-index: 0;
    opacity: 0.8;
}

.contact-container {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.contact-header {
    text-align: center;
    margin-bottom: 2rem;
}

.contact-header .section-title {
    margin-bottom: 0.5rem;
    font-size: clamp(2rem, 4vw, 2.8rem);
}

.contact-subtitle {
    margin-bottom: 0;
    font-size: 1rem;
    color: var(--clr-charcoal-light);
}

.form-wrapper {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03);
}

.form-group {
    position: relative;
    margin-bottom: 2rem;
}

.form-row {
    display: flex;
    gap: 2rem;
}

.form-group.half {
    flex: 1;
}

input,
textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(26, 26, 26, 0.2);
    padding: 1rem 0;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--clr-charcoal);
    transition: border-color 0.3s ease;
    resize: none;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: var(--clr-gold);
}

label {
    position: absolute;
    top: 1rem;
    left: 0;
    font-size: 1rem;
    color: rgba(26, 26, 26, 0.5);
    transition: all 0.3s ease;
    pointer-events: none;
}

.date-label {
    top: -10px;
    font-size: 0.8rem;
    color: var(--clr-charcoal);
}

input:focus~label,
input:not(:placeholder-shown)~label,
textarea:focus~label,
textarea:not(:placeholder-shown)~label {
    top: -10px;
    font-size: 0.8rem;
    color: var(--clr-charcoal);
}

input[type="date"] {
    color: transparent;
}

input[type="date"]:focus,
input[type="date"]:valid {
    color: var(--clr-charcoal);
}

.error-msg {
    color: #e74c3c;
    font-size: 0.8rem;
    position: absolute;
    bottom: -20px;
    left: 0;
    opacity: 0;
    transition: opacity 0.3s;
}

.form-group.error .error-msg {
    opacity: 1;
}

.form-group.error input,
.form-group.error textarea {
    border-color: #e74c3c;
}

.success-msg {
    background: #2ecc71;
    color: white;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    margin-top: 1rem;
}

@media (min-width: 992px) {
    .contact-section {
        padding-top: calc(var(--nav-height) + 3rem);
        padding-bottom: 3rem;
        min-height: calc(100vh - var(--nav-height));
        display: flex;
        align-items: center;
    }

    .contact-container {
        display: flex;
        justify-content: flex-end;
        max-width: 1300px;
        width: 100%;
    }

    .contact-header {
        text-align: left !important;
        margin: 0 0 2rem 0 !important;
        padding: 0 !important;
        max-width: 100% !important;
        background: none !important;
        backdrop-filter: none !important;
        border: none !important;
        box-shadow: none !important;
    }

    .contact-header .section-title {
        text-align: left !important;
        font-size: clamp(2.2rem, 3.5vw, 2.8rem) !important;
        margin-bottom: 0.5rem !important;
    }

    .contact-subtitle {
        text-align: left !important;
        font-size: 1rem !important;
        line-height: 1.5 !important;
    }

    .form-wrapper {
        padding: 3rem;
        border-radius: 0 !important; /* Serious sharp edges */
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
        max-width: 520px;
        width: 100%;
    }

    .form-row {
        gap: 1.5rem;
    }

    .static-labels input,
    .static-labels textarea {
        padding: 0.6rem 0.8rem !important;
        margin-bottom: 0.8rem !important;
    }

    .static-labels label {
        margin-bottom: 0.25rem !important;
    }

    textarea {
        height: 70px !important;
    }
}

/* Footer */
.site-footer {
    background-color: var(--clr-charcoal);
    color: var(--clr-offwhite);
    padding-bottom: 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.footer-heading {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--clr-gold);
}

.footer-link {
    display: block;
    color: rgba(251, 247, 242, 0.7);
    text-decoration: none;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--clr-offwhite);
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.social-icon svg {
    width: 24px;
    height: 24px;
    stroke: rgba(251, 247, 242, 0.7);
    transition: stroke 0.3s ease, transform 0.4s var(--ease-out-expo);
}

.social-icon:hover svg {
    stroke: var(--clr-offwhite);
    transform: scale(1.1);
}



.footer-bottom {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid rgba(251, 247, 242, 0.1);
    padding-top: 2rem;
    font-size: 0.8rem;
    color: rgba(251, 247, 242, 0.5);
}

/* Base GSAP Reveal Classes */
.gs-reveal {
    opacity: 0;
    transform: translateY(50px);
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .gallery-header-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {

    /* Hide custom cursor on mobile */
    .cursor,
    .cursor-follower {
        display: none !important;
    }

    body,
    a,
    button,
    input,
    textarea {
        cursor: auto;
    }

    .desktop-nav,
    .site-header .btn {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .hero-split {
        flex-direction: column;
    }

    .hero-left {
        padding-top: 6rem;
    }

    .hero-right {
        padding: 0;
    }

    .hero-image-container {
        border-radius: 0;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .testimonials-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .gallery-item {
        width: 280px;
        height: 380px;
    }

    .gallery-item.portrait {
        width: 250px;
        height: 450px;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }

    .testimonial-card {
        padding: 1.25rem 1rem;
        border-radius: 8px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
        border-top: 3px solid var(--clr-gold);
        min-height: auto;
    }

    .testimonial-text {
        font-size: 0.95rem;
        line-height: 1.4;
        margin-bottom: 1rem;
    }

    .testimonial-author {
        font-size: 0.8rem;
    }

    .section-padding {
        padding: 4rem 0;
    }

    .testimonials-section {
        padding: 3rem 0;
    }

    .testimonials-carousel-wrapper {
        margin-top: 1rem;
    }

    /* Mobile Snapping for Testimonials */
    .testimonials-carousel-wrapper .splide__slide {
        padding: 0;
    }
}

/* Split Contact Page specific styles */
.split-contact-section {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3.5rem;
    padding-top: 2.5rem;
    padding-bottom: 4rem;
    align-items: start;
}

.contact-img-box {
    width: 100%;
    aspect-ratio: 4/5;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 3rem;
}

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

.contact-heading {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.mt-weak {
    margin-top: 0.8rem;
    color: var(--clr-charcoal-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-link,
a[href^="mailto:"],
a[href^="tel:"] {
    color: var(--clr-charcoal-light) !important;
    text-decoration: none !important;
    font-weight: inherit !important;
    font-style: inherit !important;
    border-bottom: none !important;
    transition: color 0.3s ease;
}

.contact-link:hover,
a[href^="mailto:"]:hover,
a[href^="tel:"]:hover {
    color: var(--clr-gold) !important;
    text-decoration: none !important;
    border-bottom: none !important;
}


.solid-form {
    background: #fff;
    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    padding: 3rem;
}

.static-labels label {
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
    color: var(--clr-charcoal) !important;
    font-size: 0.9rem !important;
    display: block !important;
    margin-bottom: 0.5rem;
    pointer-events: auto;
}

.static-labels input,
.static-labels textarea {
    border: 1px solid rgba(78, 107, 90, 0.2);
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 1.5rem;
    background: #FBF7F2;
}

.static-labels .form-group {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .split-contact-section {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* Testimonials Page Grid */
.pb-8 {
    padding-bottom: 8rem;
}

.testimonials-masonry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
}

.stars {
    color: var(--clr-gold);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    letter-spacing: 0.1em;
}

/* Flatpickr Custom Styling */
.flatpickr-calendar {
    background: var(--clr-offwhite);
    border: 1px solid rgba(78, 107, 90, 0.1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    font-family: var(--font-body);
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected.prevMonthDay,
.flatpickr-day.selected.nextMonthDay,
.flatpickr-day.startRange.prevMonthDay,
.flatpickr-day.startRange.nextMonthDay,
.flatpickr-day.endRange.prevMonthDay,
.flatpickr-day.endRange.nextMonthDay {
    background: var(--clr-gold) !important;
    border-color: var(--clr-gold) !important;
    color: #fff !important;
}

.flatpickr-day.selected:hover,
.flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover {
    background: var(--clr-charcoal-light) !important;
    border-color: var(--clr-charcoal-light) !important;
}

.flatpickr-current-month .flatpickr-monthDropdown-months {
    font-family: var(--font-heading);
    font-weight: 600;
}

.flatpickr-day {
    color: var(--clr-charcoal);
    border-radius: 8px;
}

.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover {
    color: rgba(78, 107, 90, 0.1) !important;
}

.flatpickr-months .flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month {
    color: var(--clr-charcoal);
    fill: var(--clr-charcoal);
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    transition: transform 0.4s var(--ease-out-expo);
    outline: none !important;
    text-decoration: none !important;
    -webkit-tap-highlight-color: transparent;
}

.whatsapp-float img {
    width: 60px;
    height: 60px;
    display: block;
    object-fit: contain;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float img {
        width: 50px;
        height: 50px;
    }
}

/* Premium Toast Notification */
.twk-toast {
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translate(-50%, 30px);
    background: rgba(251, 247, 242, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(78, 107, 90, 0.25);
    border-radius: 50px;
    padding: 1.1rem 2.8rem;
    color: var(--clr-charcoal);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    box-shadow: 0 15px 40px rgba(78, 107, 90, 0.18);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    z-index: 99999;
    opacity: 0;
    pointer-events: none;
    transition: transform 0.6s var(--ease-out-expo), opacity 0.6s var(--ease-out-expo);
    max-width: 90vw;
    width: max-content;
    text-align: center;
}

.twk-toast.show {
    opacity: 1;
    transform: translate(-50%, 0);
    pointer-events: auto;
}

.twk-toast.error-toast {
    border-color: rgba(208, 138, 91, 0.4);
    color: #a05a2c;
    box-shadow: 0 15px 40px rgba(208, 138, 91, 0.15);
}

.twk-toast-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--clr-charcoal);
    color: var(--clr-offwhite);
    font-size: 0.75rem;
    flex-shrink: 0;
    font-weight: bold;
}

.twk-toast.error-toast .twk-toast-icon {
    background: var(--clr-gold);
}

@media (max-width: 768px) {
    .twk-toast {
        bottom: 24px;
        padding: 0.9rem 1.8rem;
        font-size: 0.85rem;
        border-radius: 30px;
        width: calc(100% - 40px);
        justify-content: center;
    }
}

