@font-face {
    font-family: head;
    src: url(/assets/fonts/geomanist/Geomanist-Regular.otf);
}

@font-face {
    font-family: para;
    src: url(/assets/fonts/urbanist/Urbanist-VariableFont_wght.ttf);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scrollbar-width: none;
}

/* Page Transition Overlay */
.page-transition {
    position: fixed;
    inset: 0;
    background: #000;
    z-index: 9999;
    transform: translateY(0);
    transition: transform 1s cubic-bezier(0.77, 0, 0.175, 1);
    will-change: transform;
}

.page-transition.is-hidden {
    transform: translateY(-100%);
}

/* Transition animation */
.page-transition.active {
    animation: slideUp 0.9s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

.page-transition.reveal {
    animation: slideDown 0.9s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }

    to {
        transform: translateY(0);
    }
}

@keyframes slideDown {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-100%);
    }
}

/* Optional subtle grain for luxury feel */
.page-transition::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
}


/* SEARCH BAR */

.search-bar-container {
    display: flex;
    align-items: center;
}

.search-bar-wrapper {
    display: flex;
    align-items: center;
    background: #f4f4f4;
    border-radius: 30px;
    padding: 10px 16px;
    gap: 10px;
    width: 260px;
    transition: .3s;
    font-family: para;
}

.search-bar-wrapper:focus-within {
    background: white;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.search-bar-icon {
    font-size: 18px;
    color: #666;
}

.search-bar-input {
    border: none;
    outline: none;
    background: transparent;
    width: 100%;
    font-size: 14px;
    font-family: para;
}



/* LOADER */

/* .search-loader-overlay {
    position: fixed;
    inset: 0;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: .3s;
    font-family: para;
}

.search-loader-overlay.active {
    opacity: 1;
    pointer-events: auto;
}


.search-loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
} */


/* PREMIUM LOADER */

/* .search-loader-spinner {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top: 3px solid black;
    border-right: 3px solid #555;
    animation: searchSpin 1s linear infinite;
}

@keyframes searchSpin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


.search-loader-text {
    font-size: 14px;
    letter-spacing: 1px;
    color: #444;
    font-family: para;
    animation: searchPulse 1.2s infinite;
}

@keyframes searchPulse {
    0% {
        opacity: .3
    }

    50% {
        opacity: 1
    }

    100% {
        opacity: .3
    }
} */


/* POPUP OVERLAY */

/* .search-result-popup {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9998;
    opacity: 0;
    pointer-events: none;
    transition: .3s;
    font-family: para;
}

.search-result-popup.active {
    opacity: 1;
    pointer-events: auto;
} */



/* POPUP CONTAINER */

/* .search-result-container {
    background: white;
    width: 900px;
    max-width: 95%;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    font-family: para;
} */



/* HEADER */

/* .search-result-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eee;
    font-family: para;
}

.search-result-header h2 {
    margin: 0;
    font-size: 20px;
} */



/* BETTER CLOSE BUTTON */
/* 
.search-result-close {
    width: 36px;
    height: 36px;
    border: none;
    background: #f3f3f3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
    transition: .2s;
}

.search-result-close:hover {
    background: #e7e7e7;
    transform: scale(1.05);
} */



/* BODY SCROLL */

/* .search-result-body {
    max-height: 700px;
    overflow-y: auto;
} */



/* TABLE */

/* .search-result-table {
    width: 100%;
    border-collapse: collapse;
    font-family: para;
}

.search-result-table th,
.search-result-table td {
    padding: 14px 20px;
    border-bottom: 1px solid #eee;
    text-align: left;
}

.search-result-table tr {
    cursor: pointer;
    transition: .2s;
}

.search-result-table tr:hover {
    background: #f7f7f7;
} */



/* KEYWORD HIGHLIGHT */
/* 
.highlight {
    background: #fff3a3;
    padding: 2px 4px;
    border-radius: 3px;
} */


/* main-header-section-start */
.main-header-container {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2000;
    background-color: #ffffff;
    border-bottom: 1px solid #eeeeee;
}

/* --- Top Nav Layout --- */
.main-header-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    height: 80px;
}

/* Equal width wrappers to keep the logo perfectly centered */
.main-header-side-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
}

.right-side {
    justify-content: flex-end;
}

.desktop-links {
    display: flex;
    gap: 30px;
}

/* --- Logo --- */
.main-header-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}


.header-logo-img {
    height: 45px;
    /* Adjust based on your logo proportions */
    width: auto;
}

.header-logo-img-about{
    height: 70px;
}

/* --- Typography --- */
.main-header-link {
    font-family: 'para', sans-serif;
    color: #000000;
    text-decoration: none;
    font-size: 16px;
    letter-spacing: 1.5px;
    font-weight: 600;
    text-transform: uppercase;
}

/* --- Mobile Icons (Search + Hamburger) --- */
.mobile-icons-container {
    display: none;
    /* Hidden on Desktop */
    align-items: center;
    gap: 15px;
    /* Space between search and hamburger */
}

.icon-trigger {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 26px;
    color: #000000;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* --- Sub Category Bar --- */
.main-sub-cat-bar-container {
    width: 100%;
    background-color: #ffffff;
    padding: 12px 0;
    border-top: 1px solid #dddddd;
}

.main-sub-cat-bar-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 40px;
    justify-content: center;
    align-items: center;
}

.main-sub-cat-bar-link {
    font-family: 'para', sans-serif;
    text-decoration: none;
    color: #000000;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1.5px;
    transition: all 0.4s ease;
    padding: 5px;
}

.main-sub-cat-bar-link:hover {
    background-color: #000;
    color: #fff;
}

/* --- Mobile Overlay --- */
.main-header-mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #ffffff;
    z-index: 3000;
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    opacity: 0;
}

.main-header-overlay-content {
    text-align: center;
}

.overlay-section {
    margin-bottom: 40px;
}

.overlay-label {
    font-family: 'para', sans-serif;
    font-size: 25px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #888888;
    margin-bottom: 15px;
}

.mobile-nav-link {
    font-family: 'para', sans-serif;
    display: block;
    font-size: 15px;
    text-decoration: none;
    color: #000000;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.main-header-close-trigger {
    position: absolute;
    top: 25px;
    right: 25px;
    background: none;
    border: none;
    font-size: 32px;
    color: #000000;
    cursor: pointer;
}

/* --- RESPONSIVE FIXES (MOBILE) --- */
@media (max-width: 1024px) {
    .desktop-links {
        display: none;
        /* Hide standard text links */
    }

    .mobile-icons-container {
        display: flex;
        /* Show Search & Hamburger */
    }

    .main-header-nav {
        padding: 0 20px;
        width: 100%;
    }

    /* Sub-categories side-scroll */
    .main-sub-cat-bar-container {
        overflow-x: auto;
        white-space: nowrap;
        padding: 12px 20px;
        -webkit-overflow-scrolling: touch;
        /* Smooth scroll on iOS */
    }

    .main-sub-cat-bar-list {
        justify-content: flex-start;
        gap: 30px;
        width: fit-content;
    }


    .main-header-side-wrapper {
        flex: 0;
        display: none;
    }

    .right-side {
        display: block;
    }

    .header-logo-img {
        height: 30px;
    }
        .header-logo-img-about {
        height: 50px;
    }

    .main-sub-cat-bar-link {
        font-size: 13px;
        padding: 0;
    }

    .search-bar-container {
        display: none;
    }
}

/* sub-cat-navbar-end    */


/* home-hero-section-start */

.home-hero-section {
    height: 70%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 40px 200px 40px;
    margin-bottom: 350px;
    position: relative;
}

.home-hero-img-wrapper {
    width: 100%;
    display: flex;
    position: relative;
}

.home-hero-overlay {
    position: absolute;
    background-color: #0000007f;
    width: 100%;
    height: 100%;
    z-index: 10;
}

.home-hero-bg {
    width: 100%;
    height: 100%;
    object-position: bottom;
}

.home-hero-cont {
    position: absolute;
    z-index: 11;
    display: flex;
    flex-direction: column;
    right: 10%;
    top: 60%;
}

.home-hero-cont h1 {
    color: #fff;
    font-family: para;
    font-weight: 500;
    margin: 0;
    font-size: 50px;
    width: fit-content;
}

.home-hero-cont p {
    color: #fff;
    font-family: para;
    font-size: 22px;
    margin: 0;
    max-width: 500px;
    margin-bottom: 40px;
    margin-top: 20px;
}

.home-hero-btn {
    display: flex;
    text-decoration: none;
    color: #000000;
    font-family: para;
    font-size: 20px;
    font-weight: 500;
}

.home-hero-btn span {
    padding: 16px 30px;
    border: 2px solid #ffffff;
    background-color: #ffffff;
    color: #000000;
    border-bottom-left-radius: 50px;
    border-top-left-radius: 50px;
    transition: all 0.4s ease;
}

.home-hero-btn i {
    padding: 10px 18px;
    border: 2px solid #ffffff;
    background-color: #ffffff;
    color: #000000;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    transform: translateX(-30px);
}

.home-hero-btn:hover span {
    border-bottom-right-radius: 50px;
    border-top-right-radius: 50px;
}

.home-hero-btn:hover i {
    transform: translateX(0px);
    transform: rotate(-45deg);

}


@media(max-width: 768px) {
    .home-hero-section {
        padding: 0px 0px 0px 0px;
        height: 100vh;
        margin-bottom: 0px;
    }

    .home-hero-img-wrapper {
        height: 100%;
    }

    .home-hero-bg {
        object-fit: cover;
    }

    .home-hero-cont {
        top: 30%;
        left: 5%;
        align-items: flex-start;
    }

    .home-hero-cont h1 {
        font-size: 35px;
        text-align: left;
    }

    .home-hero-cont p {
        font-size: 18px;
        text-align: left;
    }

    .home-hero-btn span {
        padding: 10px 30px 10px 20px;
    }

    .home-hero-btn i {
        padding: 10px 11px;
        margin: 0 !important;
        border: 5px solid #fff;
    }
}

/* home-hero-section-end   */


/* trending-section-start */
.home-trend-section {
    padding: 0px 40px 100px 40px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.home-trend-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.home-trend-heading {
    font-size: 100px;
    font-family: para;
    font-weight: 500;
    margin: 0;
    overflow: hidden;
}


.home-trend-btn {
    display: flex;
    text-decoration: none;
    color: #000000;
    font-family: para;
    font-size: 20px;
    font-weight: 500;
}

.home-trend-btn span {
    padding: 16px 30px;
    border: 2px solid #000000;
    background-color: #000;
    color: #fff;
    border-bottom-left-radius: 50px;
    border-top-left-radius: 50px;
    transition: all 0.4s ease;
}

.home-trend-btn i {
    padding: 10px 18px;
    border: 2px solid #000000;
    background-color: #000;
    color: #fff;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    transform: translateX(-30px);
}

.home-trend-btn:hover span {
    background-color: #000000;
    color: #fff;
    border-bottom-right-radius: 50px;
    border-top-right-radius: 50px;
}

.home-trend-btn:hover i {
    background-color: #000000;
    color: #fff;
    transform: translateX(0px);
    transform: rotate(-45deg);

}

.home-trend-bottom {
    display: flex;
    gap: 20px;
}

.home-trend-bottom-left {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 30px;
}

.home-trend-bottom-left-wrapper {
    width: 100%;
}

.home-trend-bottom-left-wrapper img {
    width: 100%;
}

.htbl-cont {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 10px;
}

.htbl-cont span {
    font-size: 17px;
    font-family: para;
    padding: 10px;
    background-color: #869570;
    color: #fff;
}

.htbl-cont h1 {
    font-size: 50px;
    font-family: para;
    font-weight: 500;
    margin: 0;
}

.htbl-cont p {
    font-size: 22px;
    font-family: para;
    margin: 0;
    font-weight: 600;
    text-align: justify;

}

.htbl-btn-date {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    width: 100%;
}

.htbl-btn {
    padding: 15px 40px;
    border: 2px solid #000;
    text-decoration: none;
    font-family: para;
    font-size: 17px;
    letter-spacing: 1px;
    color: #000;
    font-weight: 500;
    transition: all 0.4s ease;
}

.htbl-btn:hover {
    background-color: #000;
    color: #fff;
}

.htbl-date-time {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: para;
    font-weight: 500;
    padding: 10px;
    border-radius: 50px;
    border: 2px solid #000;
}

.htbl-date {
    display: flex;
    align-items: center;
    gap: 5px;
}

.date-time-divider {
    width: 2px;
    height: 20px;
    background-color: #000;
}

.htbl-time {
    display: flex;
    align-items: center;
    gap: 5px;
}

.home-trend-bottom-right {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.htbr-top {
    display: flex;
    gap: 20px;
}

.htbr-top-wrapper {
    width: 40%;
    height: 100%;
    overflow: hidden;
}

.htbr-top-wrapper img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

@media(max-width: 1550px) {
    .htbr-top-wrapper img {
        height: 250px;
    }
}

.htbr-top-cont {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
    gap: 10px;
    width: 60%;
}

.htbr-top-cont-adj {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: start;
}

.htbr-top-cont-adj span {
    border: 2px solid #000;
    padding: 5px 10px;
    font-family: para;
    font-size: 15px;
}

.htbr-top-cont-adj h1 {
    font-size: 30px;
    font-family: para;
    font-weight: 500;
    margin: 0;
}

.htbr-top-cont-adj p {
    font-size: 20px;
    font-family: para;
    font-weight: 600;
    font-family: para;
    text-align: justify;
}

.htbr-top-btn-adj {
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.htbr-top-btn {
    padding: 10px 30px;
    border: 2px solid #000;
    text-decoration: none;
    font-family: para;
    font-size: 17px;
    letter-spacing: 1px;
    color: #000;
    font-weight: 500;
    transition: all 0.4s ease;
}

.htbr-top-btn:hover {
    background-color: #000;
    color: #fff;
}


.htbr-middle {
    display: flex;
    gap: 20px;
}

.htbr-bottom {
    display: flex;
    gap: 20px;
}


@media(max-width: 1550px) {
    .home-trend-heading {
        font-size: 60px;
    }

    .htbl-cont h1 {
        font-size: 40px;
    }

    .htbl-cont p {
        font-size: 20px;
    }

    .htbr-top-cont-adj h1 {
        font-size: 26px;
    }

    .htbr-top-cont-adj {
        font-size: 18px;
    }
}

@media(max-width: 768px) {
    .home-trend-section {
        padding: 100px 20px 0px 20px;
    }

    .home-trend-top {
        flex-direction: column;
        gap: 30px;
        width: 100%;
        align-items: start;
    }

    .home-trend-heading {
        font-size: 40px;
    }

    .home-trend-btn {
        width: 100%;
    }

    .home-trend-btn span {
        padding: 10px 30px 10px 20px;
    }

    .home-trend-btn i {
        padding: 10px 12px;
        transform: translateX(-25px);
    }

    .home-trend-bottom {
        flex-direction: column;
        gap: 70px;
    }

    .home-trend-bottom-left {
        width: 100%;
    }

    .htbl-cont span {
        font-size: 13px;
        letter-spacing: 1px;
    }

    .htbl-cont h1 {
        font-size: 30px;
    }

    .htbl-cont p {
        font-size: 17px;
        text-align: left;
        line-height: 1.5;
    }

    .htbl-btn-date {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .htbl-btn {
        width: 100%;
        font-size: 15px;
        padding: 10px 30px;
        text-align: center;
    }

    .htbl-date-time {
        width: fit-content;
        justify-content: center;
        font-size: 13px !important;
    }

    .home-trend-bottom-right {
        width: 100%;
        gap: 60px;
    }

    .htbr-top {
        flex-direction: column;
    }

    .htbr-top-wrapper img {
        width: 100%;
    }

    .htbr-top-wrapper {
        width: 100%;
    }

    .htbr-top-cont-adj span {
        font-size: 13px;
        letter-spacing: 1px;
    }

    .htbr-top-cont {
        width: 100%;
    }

    .htbr-top-cont-adj h1 {
        font-size: 25px;
    }

    .htbr-top-cont-adj p {
        font-size: 17px;
        text-align: left;
        line-height: 1.5;
    }

    .htbr-top-btn {
        width: 100%;
        text-align: center;
    }



    .htbr-middle {
        flex-direction: column;
    }

    .htbr-middle-wrapper img {
        width: 100%;
    }

    .htbr-middle-wrapper {
        width: 100%;
    }

    .htbr-middle-cont-adj span {
        font-size: 13px;
        letter-spacing: 1px;
    }

    .htbr-middle-cont {
        width: 100%;
    }

    .htbr-middle-cont-adj h1 {
        font-size: 25px;
    }

    .htbr-middle-cont-adj p {
        font-size: 17px;
        text-align: left;
    }

    .htbr-middle-btn {
        width: 100%;
        text-align: center;
    }



    .htbr-bottom {
        flex-direction: column;
    }

    .htbr-bottom-wrapper img {
        width: 100%;
    }

    .htbr-bottom-wrapper {
        width: 100%;
    }

    .htbr-bottom-cont-adj span {
        font-size: 13px;
        letter-spacing: 1px;
    }

    .htbr-bottom-cont {
        width: 100%;
    }

    .htbr-bottom-cont-adj h1 {
        font-size: 25px;
    }

    .htbr-bottom-cont-adj p {
        font-size: 17px;
        text-align: left;
    }

    .htbr-bottom-btn {
        width: 100%;
        text-align: center;
    }
}

/* trending-section-end */



/* mow-section-start */

/* mow-section-end   */


/* chef-section-start */
/* .chef-section {
    padding: 100px 40px;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.chef-top {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chef-top-img {
    position: absolute;
    z-index: 10;
    width: 30%;
    top: 2.31%;
}

.chef-bottom {
    display: flex;
    gap: 10px;
}

.chef-bottom-left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
    gap: 20px;
    width: 50%;
}

.chef-tag {
    font-size: 17px;
    letter-spacing: 2px;
    font-family: para;
    padding: 10px;
    background-color: #869570;
    color: #fff;
}

.chef-bottom-adj {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.chef-bottom-adj h1 {
    font-size: 60px;
    font-family: para;
    font-weight: 500;
    margin: 0;
}

.chef-bottom-adj p {
    font-family: para;
    font-weight: 600;
    margin: 0;
    font-size: 22px;
    margin-bottom: 20px;
    text-align: justify;
} */


.chef-bottom-btn {
    display: flex;
    text-decoration: none;
    color: #000000;
    font-family: para;
    font-size: 20px;
    font-weight: 500;
    width: fit-content;
}

.chef-bottom-btn span {
    padding: 16px 30px;
    border: 2px solid #000000;
    background-color: #000;
    color: #fff;
    border-bottom-left-radius: 50px;
    border-top-left-radius: 50px;
    transition: all 0.4s ease;
}

.chef-bottom-btn i {
    padding: 10px 18px;
    border: 2px solid #000000;
    background-color: #000;
    color: #fff;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    transform: translateX(-30px);
}

.chef-bottom-btn:hover span {
    background-color: #000000;
    color: #fff;
    border-bottom-right-radius: 50px;
    border-top-right-radius: 50px;
}

.chef-bottom-btn:hover i {
    background-color: #000000;
    color: #fff;
    transform: translateX(0px);
    transform: rotate(-45deg);
}


/* .chef-1-img-set {
    width: 50%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.chef-1-img-set img {
    width: 100%;
    height: 400px;
    object-fit: cover;
} */

/* chef-section-end   */


.chef-2-section {
    padding: 100px 40px 100px 40px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.chef-2-img-set {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.chef-2-left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.chef-2-img-set img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

@media(max-width: 1550px) {
    .chef-2-img-set img {
        height: 250px;
    }
}

.chef-2-cont {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-self: start;
}

.chef-2-cont-span {
    font-size: 17px;
    letter-spacing: 2px;
    font-family: para;
    padding: 10px;
    background-color: #869570;
    color: #fff;
    width: fit-content;
}

.chef-2-cont h1 {
    font-size: 40px;
    font-family: para;
    font-weight: 500;
    margin: 0;
    overflow: hidden;
}

.chef-2-cont p {
    font-size: 20px;
    font-family: para;
    font-weight: 600;
    margin: 0;
    margin-bottom: 30px;
    text-align: justify;
}

.chef-2-right img {
    width: 100%;
    height: 700px;
    object-fit: cover;
}



@media(max-width: 768px) {
    .chef-2-section {
        display: flex;
        flex-direction: column-reverse;
        padding: 100px 20px 0px 20px;
    }

    .chef-2-right img {
        height: auto;
    }

    .chef-2-img-set {
        display: none;
    }

    .chef-2-cont-span {
        font-size: 13px;
        letter-spacing: 1px;
    }

    .chef-2-cont h1 {
        font-size: 30px;
    }

    .chef-2-cont p {
        font-size: 17px;
        text-align: left;
        line-height: 1.5;
    }
}



.home-ads-section {
    padding: 100px 50px;
}

.home-ads-cards {
    display: grid;
    grid-template-columns: 2fr 2fr;
    gap: 20px;
}

.home-ads-card {
    background-color: #000;
    height: 700px;
    width: 100%;
    text-decoration: none;
}

.home-ads-card-1 {
    background-image: url(/assets/images/banner/ad-1.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: column;
    gap: 20px;
    position: relative;
    transition: all 0.4s ease;
}

.home-ads-card-1:hover {
    transform: scale(1.01);
}

.home-ads-card-1-overlay {
    position: absolute;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.689) 0%, rgb(34, 34, 34) 99%);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.home-ads-card-1 h1 {
    font-size: 50px;
    font-family: head;
    color: #fff;
    margin: 0;
    position: relative;
    z-index: 10;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.home-ads-card-1 img {
    position: relative;
    z-index: 10;
    width: 20%;
}

.home-ads-card-1 p {
    font-size: 22px;
    font-family: para;
    font-weight: 500;
    color: #fff;
    position: relative;
    z-index: 10;
    max-width: 700px;
}

.home-ads-card-adj {
    display: flex;
    flex-direction: column;
    height: 700px;
    gap: 20px;
}

.home-ads-card-2 {
    background-image: url(/assets/images/banner/ad-2.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
    padding: 50px 20px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-direction: column;
    gap: 20px;
    position: relative;
    transition: all 0.4s ease;
}

.home-ads-card-2:hover {
    transform: scale(1.01);
}

.home-ads-card-2-overlay {
    position: absolute;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.689) 0%, rgba(255, 255, 255, 0) 99%);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.home-ads-card-2 h1 {
    font-size: 35px;
    font-family: head;
    color: #fff;
    margin: 0;
    position: relative;
    z-index: 10;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: right;
    margin: 0;
}

.home-ads-card-2 img {
    position: relative;
    z-index: 10;
    width: 20%;
}

.home-ads-card-2 p {
    font-size: 20px;
    font-family: para;
    font-weight: 500;
    letter-spacing: 1px;
    line-height: 1.5;
    color: #fff;
    position: relative;
    z-index: 10;
    text-align: right;
}


.home-ads-card-3 {
    background-image: url(/assets/images/banner/ad-3.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
    padding: 50px 20px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: column;
    gap: 20px;
    position: relative;
    transition: all 0.4s ease;
}

.home-ads-card-3:hover {
    transform: scale(1.01);
}

.home-ads-card-3-overlay {
    position: absolute;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.689) 0%, rgba(255, 255, 255, 0) 99%);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.home-ads-card-3 h1 {
    font-size: 35px;
    font-family: head;
    color: #fff;
    margin: 0;
    position: relative;
    z-index: 10;
    text-transform: uppercase;
    letter-spacing: 1px;
    /* text-align:right; */
}

.home-ads-card-3 img {
    position: relative;
    z-index: 10;
    width: 20%;
}


.home-ads-card-3 p {
    font-size: 22px;
    font-family: para;
    font-weight: 500;
    letter-spacing: 1px;
    line-height: 1.5;
    color: #fff;
    position: relative;
    z-index: 10;
    /* text-align: right; */
    max-width: 500px;
}


@media(max-width: 1550px) {
    .home-ads-card-1 img {
        width: 15%;
    }

    .home-ads-card-1 h1 {
        font-size: 40px;
    }
}

@media(max-width: 768px) {
    .home-ads-section {
        padding: 100px 0px 0px 0px;
    }

    .home-ads-cards {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .home-ads-card {
        height: 450px;
    }

    .home-ads-card-1 h1 {
        font-size: 25px;
    }

    .home-ads-card-1 p {
        font-size: 17px;
        line-height: 1.5;
    }

    .home-ads-card-1 img {
        width: 30%;
    }

    .home-ads-card-adj {
        height: auto;
        gap: 30px;
    }

    .home-ads-card-2 h1 {
        text-align: left;
        font-size: 25px;
    }

    .home-ads-card-2 img {
        width: 40%;
    }

    .home-ads-card-2 p {
        font-size: 16px;
        text-align: left;
    }

    .home-ads-card-3 h1 {
        font-size: 25px;
    }

    .home-ads-card-3 img {
        width: 40%;
    }

    .home-ads-card-3 p {
        font-size: 16px;
    }
}

/* caviar-section-start */
/* .caviar-section {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.caviar-bg {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
}

.caviar-mask {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40%;
    /* Starting Width *
    height: 40%;
    /* Starting Height *
    overflow: hidden;
    z-index: 1;
    will-change: width, height;
    border-radius: 50px;
}

.caviar-bg-overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.caviar-mask img {
    width: calc(100vw - 80px);
    height: 80vh;
    object-fit: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.caviar-bg h1 {
    font-size: clamp(40px, 7vw, 90px);
    font-family: "para", serif;
    font-weight: 500;
    color: #fff;
    position: relative;
    z-index: 10;
    text-align: center;
    margin: 0;
    pointer-events: none;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(30px);
} */

.caviar-cont-img {
    display: flex;
    gap: 25px;
    padding: 100px 40px 100px 40px;
}

.caviar-cont-img img {
    width: 50%;
}

.caviar-cont {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
    gap: 20px;
    width: 50%;
}

.caviar-cont-adj {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 20px;
}

.caviar-cont-span {
    font-family: para;
    font-size: 17px;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 10px;
    color: #fff;
    background: linear-gradient(90deg, rgba(255, 215, 0, 1) 0%, rgba(0, 0, 0, 1) 100%);
}

.caviar-cont h1 {
    font-size: 80px;
    font-family: para;
    font-weight: 500;
    margin: 0;
}

@media(max-width: 1550px) {
    .caviar-cont h1 {
        font-size: 60px;
    }
}

.caviar-cont p {
    font-size: 22px;
    font-family: para;
    font-weight: 600;
    margin: 0;
    text-align: justify;
}



.caviar-cont-btn-date {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    width: 100%;
}


.caviar-cont-btn {
    display: flex;
    text-decoration: none;
    color: #000000;
    font-family: para;
    font-size: 20px;
    font-weight: 500;
}

.caviar-cont-btn span {
    padding: 16px 30px;
    border: 2px solid #000000;
    background-color: #000;
    color: #fff;
    border-bottom-left-radius: 50px;
    border-top-left-radius: 50px;
    transition: all 0.4s ease;
}

.caviar-cont-btn i {
    padding: 10px 18px;
    border: 2px solid #000000;
    background-color: #000;
    color: #fff;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    transform: translateX(-30px);
}

.caviar-cont-btn:hover span {
    background-color: #000000;
    color: #fff;
    border-bottom-right-radius: 50px;
    border-top-right-radius: 50px;
}

.caviar-cont-btn:hover i {
    background-color: #000000;
    color: #fff;
    transform: translateX(0px);
    transform: rotate(-45deg);
}

.caviar-cont-date-time {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: para;
    font-weight: 500;
    padding: 10px;
    border-radius: 50px;
    border: 2px solid #000;
}

.caviar-cont-date {
    display: flex;
    align-items: center;
    gap: 5px;
}

.caviar-cont-date p {
    font-size: 15px;
}

.caviar-cont-time-divider {
    width: 2px;
    height: 20px;
    background-color: #000;
}

.caviar-cont-time {
    display: flex;
    align-items: center;
    gap: 5px;
}

.caviar-cont-time p {
    font-size: 15px;
}

/* caviar-section-end   */


/* partner-section-start */
.home-partner-section {
    background-color: #ffffff;
    color: #fff;
    padding: 120px 40px;
    /* Generous padding for luxury feel */
    width: 100%;
    overflow: hidden;
    position: relative;
    box-sizing: border-box;
    margin-top: 0px;
    margin-bottom: -10px;
}

.home-partner-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

/* Header Styling */
.home-partner-header {
    text-align: center;
    margin-bottom: 80px;
    opacity: 0;
    /* Hidden initially for GSAP */
    transform: translateY(20px);
}

.home-partner-heading {
    font-family: 'para', sans-serif;
    font-size: 24px;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    /* Wide tracking is very premium */
    font-weight: 500;
    color: rgb(0, 0, 0);
    margin: 0 0 20px 0;
}

.home-partner-separator {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0));
    margin: 0 auto;
}

/* Grid Layout */
.home-partner-grid {
    display: grid;
    /* 4 columns on desktop */
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    align-items: center;
    justify-items: center;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 60px 0;
}

.home-partner-grid-2 {
    display: grid;
    /* 4 columns on desktop */
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    align-items: center;
    justify-items: center;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 60px 0;
}

.home-partner-item {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.4s ease;
    padding: 20px;
}

/* Logo Styling */
.home-partner-logo {
    max-width: 250px;
    height: auto;
    max-height: 80px;
    object-fit: contain;
    /* Reduce opacity slightly to blend, full opacity on hover */
    opacity: 0.7;
    filter: grayscale(100%) brightness(1.2);
    /* Ensure crisp white look */
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    cursor: pointer;
}

/* Hover Effects */
.home-partner-item:hover .home-partner-logo {
    opacity: 1;
    transform: scale(1.05);
    filter: grayscale(0%) brightness(1.5);
    /* Glow effect */
}

/* Mobile Responsiveness */
@media(max-width: 768px) {
    .home-partner-section {
        padding: 100px 20px;
    }

    .home-partner-header {
        opacity: 1;
        transform: translateY(0px);
        margin-bottom: 30px;
    }

    .home-partner-grid {
        grid-template-columns: repeat(2, 1fr);
        column-gap: 20px;
        row-gap: 50px;
    }

    .home-partner-item {
        opacity: 1 !important;
        filter: blur(0px) !important;
        transform: translate(0px, 0px) !important;
        padding: 0;
    }

    .home-partner-logo {
        max-width: 130px;
    }

    .home-partner-grid-2 {
        grid-template-columns: repeat(2, 1fr);
        column-gap: 20px;
        row-gap: 50px;
    }
}

/* partner-section-end   */



/* main-footer-section-start */

.main-footer-section {
    background-color: #000;
    color: #fff;
    font-family: 'para', sans-serif;
    padding: 100px 0 20px 0;
    overflow: hidden;
}

.main-footer-common-section {
    height: 75vh;
}

.main-footer-container {
    max-width: 95%;
    margin: 0 auto;
}

/* --- Top Grid --- */
.main-footer-top-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    /* Asymmetric balance */
    gap: 100px;
    align-items: start;
    margin-bottom: 80px;
}

/* Left Col: Huge Links */
.main-footer-nav-col {
    display: flex;
    flex-direction: column;
}

.main-footer-huge-link {
    font-size: clamp(3rem, 8vw, 4.5rem);
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
    line-height: 0.9;
    letter-spacing: -0.04em;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    opacity: 0.3;
    /* Trendy dim state */
}

.main-footer-huge-link:hover {
    opacity: 1;
    transform: translateX(20px);
}

/* Right Col: Info */
.main-footer-info-col {
    padding-top: 20px;
}

.main-footer-label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #666;
    margin-bottom: 15px;
}

.main-footer-form {
    display: flex;
    border-bottom: 1px solid #333;
    padding-bottom: 10px;
    margin-bottom: 60px;
}

.main-footer-input {
    background: transparent;
    border: none;
    color: #fff;
    font-family: 'para', sans-serif;
    font-size: 14px;
    width: 100%;
    outline: none;
}

.main-footer-submit {
    background: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
    font-size: 12px;
    font-weight: 700;
}

.main-footer-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.main-footer-small-link {
    display: block;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    margin-bottom: 8px;
    transition: color 0.3s;
}

.main-footer-small-link:hover {
    color: #666;
}

/* --- Bottom Anchor --- */
.main-footer-line {
    width: 100%;
    height: 1px;
    background: #222;
    margin-bottom: 30px;
}

.main-footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.main-footer-copy {
    font-size: 18px;
    color: #dfdfdf;
    letter-spacing: 0.1em;
    white-space: nowrap;
}

.main-footer-logo-wrap {
    width: 60%;
    /* Occupies most of the bottom */
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.main-footer-mega-logo {
    width: 70%;
    height: auto;
    display: block;
}

.main-footer-logo-wrap h1 {
    font-size: 100px;
    font-weight: 400;
    font-family: 'Courier New', Courier, monospace;
}

/* Mobile Responsiveness */
@media (max-width: 900px) {
    .main-footer-top-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .main-footer-huge-link {
        font-size: 4rem;
    }

    .main-footer-logo-wrap {
        width: 100%;
    }

    .main-footer-bottom-flex {
        flex-direction: column-reverse;
        gap: 30px;
    }

    .main-footer-logo-wrap h1 {
        font-size: 25px;
        text-align: center;
    }
}

/* main-footer-section-end   */




/* common-hero-section-start */
.common-hero-container {
    width: 100%;
    height: 85vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 130px;
    /* Offset for your fixed header */
}

.common-hero-visual-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    padding: 0px 40px;
}

.common-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
    /* Ensures text readability */
}

/* .common-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.5) 100%);
} */

.common-hero-content-wrapper {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
    color: #ffffff;
}

.common-hero-subtitle {
    display: block;
    font-family: 'para', sans-serif;
    text-transform: uppercase;
    letter-spacing: 6px;
    font-size: 14px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.common-hero-title {
    font-family: 'para', sans-serif;
    font-size: clamp(40px, 6vw, 80px);
    /* Responsive sizing */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.1;
    margin-bottom: 30px;
}

.common-hero-divider {
    width: 60px;
    height: 1px;
    background-color: #ffffff;
    margin: 0 auto 30px;
}

.common-hero-description {
    font-family: 'para', sans-serif;
    font-size: 18px;
    line-height: 1.8;
    letter-spacing: 0.5px;
    opacity: 0.85;
    font-weight: 300;
}

@media (max-width: 768px) {
    .common-hero-container {
        height: 70vh;
        margin-top: 110px;
    }

    .common-hero-description {
        font-size: 16px;
    }
}

/* common-hero-section-end   */


/* common-card-section-start */
.common-mag-section {
    padding: 200px 40px;
    background-color: #ffffff;
}

.common-mag-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px 40px;
    margin: 0 auto;
}

.common-mag-card {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: transform 0.4s ease;
}


.common-mag-card-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 5 / 5;
    overflow: hidden;
    margin-bottom: 25px;
}

.common-mag-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.common-mag-card:hover .common-mag-card-image {
    transform: scale(1.08);
}

.common-mag-card-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.9);
    padding: 6px 15px;
    font-family: 'para', sans-serif;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    color: #000;
}

.common-mag-card-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 20%;
}

.common-mag-card-title {
    font-family: 'para', sans-serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.3;
    color: #000;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media(min-width: 1400px) and (max-width:1550px) {
    .common-mag-card-title {
        font-size: 20px;
    }
}

.common-mag-card-btn-badge {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.common-mag-card-btn {
    display: flex;
    text-decoration: none;
    color: #000000;
    font-family: para;
    font-size: 20px;
    font-weight: 500;
}

.common-mag-card-btn span {
    padding: 16px 30px;
    border: 2px solid #000000;
    background-color: #000000;
    color: #ffffff;
    border-bottom-left-radius: 50px;
    border-top-left-radius: 50px;
    transition: all 0.4s ease;
}

/* @media(max-width:1550px) {
    .common-mag-card-btn span {
        padding: 14px 25px;
    }
} */

.common-mag-card-btn i {
    padding: 17px 18px;
    border: 2px solid #000000;
    background-color: #000000;
    color: #ffffff;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    transform: translateX(-30px);
}

/* @media(max-width:1550px) {
    .common-mag-card-btn i {
        padding: 7px 15px;
        transform: translateX(-28px);
    }
} */

.common-mag-card-btn:hover span {
    border-bottom-right-radius: 50px;
    border-top-right-radius: 50px;
}

.common-mag-card-btn:hover i {
    transform: translateX(0px);
    transform: rotate(-45deg);

}

/* Replicating the Pill Badge */
.common-mag-card-badge {
    display: inline-flex;
    align-items: center;
    border: 1.5px solid #000;
    border-radius: 50px;
    /* Perfect pill shape */
    padding: 8px 20px;
    width: fit-content;
}

.common-mag-card-meta {
    font-family: 'para', sans-serif;
    font-size: 12px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #000;
}

.common-mag-card-meta-divider {
    width: 1.5px;
    height: 20px;
    background-color: #000;
    margin: 0 15px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .common-mag-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 1550px) {
    .common-mag-card-btn {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .common-mag-grid {
        grid-template-columns: 1fr;
    }

    .common-mag-section {
        padding: 160px 20px 60px 20px;
    }

    .common-mag-card-btn-badge {
        align-items: flex-start;
        justify-content: center;
        gap: 10px;
        flex-direction: column;
    }

    .common-mag-card-badge {
        width: fit-content;
        text-align: center;
    }

    .common-mag-card-content {
        height: auto;
    }

    .common-mag-card-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .common-mag-card-btn span {
        padding: 13px 30px 13px 30px;
        font-size: 17px;
        border-radius: 50px;
        color: #ffffff;
    }

    .common-mag-card-btn:hover span {
        transform: scale(1.01);
        border-radius: 50px;
    }

    .common-mag-card-btn i {
        display: none;
    }

    .common-mag-card-title {
        font-size: 20px;
    }
}




.common-mag-load-more-wrapper {
    text-align: center;
    margin-top: 70px;
}

.common-mag-load-more-btn {
    padding: 15px 40px;
    font-size: 14px;
    cursor: pointer;
    font-family: para;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    background-color: transparent;
    border: 2px solid #000;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.common-mag-load-more-btn:hover {
    background-color: #000;
    color: #ffff;
}

.common-mag-load-more-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    color: #000;
}

.common-mag-load-more-btn.disabled:hover {
    background-color: transparent;
}

/* common-card-section-end   */



.common-single-mag-container {
    width: 100%;
    background-color: #ffffff;
    padding-top: 130px;
    /* Space for the header */
    color: #000;
}

/* HERO SECTION - Symmetrical & Central */
.common-single-mag-hero {
    width: 100%;
    padding: 60px 40px;
    text-align: center;
}

.common-single-mag-hero-header {
    max-width: 900px;
    margin: 0 auto 60px;
}

.common-single-mag-category {
    font-family: 'para', sans-serif;
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 13px;
    color: #888;
    display: block;
    margin-bottom: 20px;
}

.common-single-mag-main-title {
    font-family: 'para', sans-serif;
    font-size: clamp(40px, 8vw, 85px);
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.common-single-mag-hero-line {
    width: 100px;
    height: 1px;
    background: #000;
    margin: 0 auto;
}

.common-single-mag-hero-visual {
    width: 100%;
    max-width: 1400px;
    height: 75vh;
    margin: 0 auto;
    overflow: hidden;
}

.common-single-mag-featured-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* GRID LAYOUT - 12 Columns */
.common-single-mag-grid-layout {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
    gap: 40px;
}

/* Intro spans across the main reading area */
.common-single-mag-intro-wrapper {
    grid-column: 3 / span 8;
    /* Centered with 2 empty columns on each side */
    margin-bottom: 80px;
}

.common-single-mag-lead {
    font-family: 'para', sans-serif;
    font-size: clamp(24px, 3vw, 32px);
    line-height: 1.4;
    font-weight: 500;
    text-align: center;
}

/* MAIN COLUMN - 7 Columns Wide */
.common-single-mag-column-main {
    grid-column: 1 / span 7;
}

.common-single-mag-subheading {
    font-family: 'para', sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    color: #888;
}

.common-single-mag-body-text {
    font-family: 'para', sans-serif;
    font-size: 19px;
    line-height: 1.8;
    margin-bottom: 40px;
}

.common-single-mag-image-split {
    margin: 60px 0;
}

.common-single-mag-image-split img {
    width: 100%;
}

.common-single-mag-caption {
    font-family: 'para', sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    margin-top: 15px;
    letter-spacing: 1px;
    color: #999;
}

/* SIDE COLUMN - 4 Columns Wide (Offset by 1 for gap) */
.common-single-mag-column-side {
    grid-column: 9 / span 4;
}

.common-single-mag-sticky-meta {
    position: sticky;
    top: 180px;
    /* Sticks as user scrolls article */
    border-left: 1px solid #eee;
    padding-left: 40px;
}

.common-single-mag-side-item {
    margin-bottom: 40px;
}

.common-single-mag-side-label {
    font-family: 'para', sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #999;
    margin-bottom: 10px;
}

.common-single-mag-side-value {
    font-family: 'para', sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
}

.common-single-mag-tag {
    display: inline-block;
    font-family: 'para', sans-serif;
    font-size: 11px;
    border: 1px solid #000;
    padding: 5px 12px;
    border-radius: 50px;
    margin-right: 10px;
    margin-top: 10px;
    text-transform: uppercase;
}

/* MOBILE */
@media (max-width: 992px) {
    .common-single-mag-grid-layout {
        display: block;
    }

    .common-single-mag-intro-wrapper {
        width: 100%;
    }

    .common-single-mag-column-side {
        margin-top: 60px;
        border-top: 1px solid #eee;
        padding-top: 40px;
    }

    .common-single-mag-sticky-meta {
        border-left: none;
        padding-left: 0;
    }
}

.common-single-mag-internal-gallery {
    margin: 60px 0;
}

.common-mag-gallery-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 15px;
}

.common-mag-gallery-row img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
}

/* Philosophical Quote within Text */
.common-single-mag-internal-quote {
    margin: 80px 0;
    padding: 40px;
    background-color: #fcfcfc;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
}

.common-single-mag-internal-quote p {
    font-family: 'para', sans-serif;
    font-size: 24px;
    font-style: italic;
    text-align: center;
    line-height: 1.4;
    color: #000;
    text-transform: uppercase;
}

/* Sidebar Extra Links */
.common-single-mag-side-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.common-single-mag-side-links li {
    margin-bottom: 10px;
}

.common-single-mag-side-links a {
    font-family: 'para', sans-serif;
    font-size: 13px;
    color: #000;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: 0.3s ease;
    text-transform: uppercase;
}

.common-single-mag-side-links a:hover {
    border-bottom: 1px solid #000;
}

.common-single-mag-sidebar-extra {
    margin-top: 60px;
    padding-top: 60px;
    border-top: 1px solid #eee;
}


.main-edition-section {
    background: #fff;
    padding: 140px 50px 140px 50px;
    position: relative;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    /* height: 100vh; */
}

/* .main-edition-container {
    display: flex;
    align-items: center;
    justify-content: center;
} */

/* initial cards */

.main-edition-card-selector {
    display: flex;
    justify-content: center;
    gap: 10%;
    transition: .6s;
    /* width: 100%; */
    position: absolute;
    top: 45%;
}

.main-edition-main-card {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000000;
    border-radius: 10px;
    cursor: pointer;
    transition: all .4s ease;
}

.main-edition-main-card img {
    height: 100px;
    transition: all .4s ease;
}

.main-edition-main-card:hover {
    transform: scale(1.05);
}


/* when active */

.main-edition-card-selector.active {
    transform: translateY(-80px);
    opacity: 0;
    pointer-events: none;
}

/* tabs */

.main-edition-tabs {
    display: flex;
    justify-content: center;
    gap: 40px;
    opacity: 0;
    transform: translateY(-20px);
    transition: .6s;
    margin-top: 60px;
}

.main-edition-tabs.active {
    opacity: 1;
    transform: translateY(0);
}

.main-edition-tab {
    font-family: head;
    text-transform: uppercase;
    font-size: 18px;
    background: none;
    border: none;
    cursor: pointer;
    color: #888;
    padding-bottom: 10px;
    position: relative;
}

.main-edition-tab::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #d4af37;
    transition: .4s;
}

.main-edition-tab.active {
    color: #000;
}

.main-edition-tab.active::after {
    width: 100%;
}

/* content */

.main-edition-content {
    margin-top: 80px;
}

.main-edition-tab-content {
    display: none;
    animation: mainEditionFade .5s ease;
}

.main-edition-tab-content.active {
    display: block;
}

@keyframes mainEditionFade {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}



/* magazine cards */

.main-edition-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.main-edition-card {
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-edition-card img {
    width: 70%;
    height: 100%;
    object-fit: cover;
}

/* coming soon */

.jlt-monolith {
    /* height: 10vh; */
    /* Controlled height for a section feel */
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 60px;
    position: relative;
    overflow: hidden;
}

/* --- Status Indicator --- */
.jlt-monolith-status {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: para, sans-serif;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: #000;
}

.jlt-monolith-live {
    display: flex;
    align-items: center;
    gap: 12px;
}

.jlt-monolith-dot {
    width: 7px;
    height: 7px;
    background-color: #ff0000;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(255, 0, 0, 0.4);
    animation: jlt-pulse 1.5s infinite;
}

@keyframes jlt-pulse {
    0% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.2;
        transform: scale(0.8);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* --- Main Typography --- */
.jlt-monolith-main {
    text-align: center;
}

.jlt-monolith-title {
    font-family: head, sans-serif;
    font-size: clamp(4rem, 10vw, 12rem);
    text-transform: uppercase;
    line-height: 0.8;
    margin: 0;
    letter-spacing: -2px;
}

.jlt-monolith-italic {
    font-style: italic;
    color: #C5A059;
    /* Your signature gold */
    font-weight: 300;
}

.jlt-monolith-sub {
    font-family: head, sans-serif;
    font-size: clamp(4rem, 10vw, 12rem);
    text-transform: uppercase;
    letter-spacing: -2px;
    color: #888;
    /* margin-top: 20px; */
    /* Centers the text perfectly despite letter spacing */
}

.jlt-coming {
    font-size: 30px;
    font-family: para;
    font-weight: 700;
    text-align: center;
    color: #000;
}

/* --- Bottom Line --- */
.jlt-monolith-line {
    width: 100%;
    height: 1px;
    background-color: #eeeeee;
}

/* Responsive */
@media (max-width: 768px) {
    .jlt-monolith {
        padding: 40px 20px;
        height: 60vh;
    }

    .jlt-monolith-volume {
        display: none;
    }
}

/* .edition-section {
    padding: 170px 50px 100px 50px;
    /* height: 100vh; *
}

.edition-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
}

.edition-card {
    width: 100%;
}

.edition-card img {
    width: 100%;
} */



@media(max-width: 768px) {
    .main-edition-card-selector {
        flex-direction: column;
        gap: 30px;
        top: 30%;
    }

    .main-edition-section {
        padding: 120px 20px 140px 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: auto;
    }

    .main-edition-cards {
        grid-template-columns: repeat(1, 1fr);
        gap: 40px;
    }

    .main-edition-main-card {
        width: 100%;
    }

    .main-edition-main-card img {
        height: 60px;
    }

    .main-edition-tab {
        font-size: 14px;
    }
}

/* --- Master Reset & Container --- */
.about-page-main {
    background-color: #ffffff;
    width: 100%;
    overflow: hidden;
    color: #000000;
}

/* --- SECTION 1: The Editorial Introduction --- */
.about-1-hero {
    min-height: 80vh;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 12vw 5vw 8vw 5vw;
    max-width: 1800px;
    margin: 0 auto;
}

.about-1-title-wrapper {
    width: 50%;
    position: relative;
}

.about-1-heading {
    font-family: head, sans-serif;
    font-size: clamp(4rem, 8vw, 10rem);
    line-height: 0.9;
    text-transform: uppercase;
    font-weight: 400;
    margin: 0;
    letter-spacing: -0.02em;
}

.about-1-gold-accent {
    width: 150px;
    height: 3px;
    background-color: #C5A059;
    /* Sophisticated Gold */
    margin-top: 40px;
}

.about-1-content-wrapper {
    width: 40%;
    padding-bottom: 2vw;
}

.about-1-lead {
    font-family: para, sans-serif;
    font-size: clamp(1.2rem, 1.5vw, 1.8rem);
    line-height: 1.6;
    font-weight: 600;
    margin: 0 0 40px 0;
}

.about-1-paragraph {
    font-family: para, sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.6;
    color: #333333;
    margin: 0 0 25px 0;
}

/* --- SECTION 2: Asymmetrical Platforms --- */
.about-2-platforms {
    padding: 10vw 5vw;
    display: flex;
    justify-content: space-between;
    max-width: 1800px;
    margin: 0 auto;
    position: relative;
}

.about-2-col-left {
    width: 40%;
    padding-top: 10vw;
    /* Pushes the left column down for asymmetry */
}

.about-2-col-right {
    width: 45%;
}

.about-2-subtitle {
    font-family: para, sans-serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #C5A059;
    display: block;
    margin-bottom: 20px;
}

.about-2-heading {
    font-family: head, sans-serif;
    font-size: clamp(2.5rem, 4vw, 5rem);
    font-weight: 400;
    line-height: 1.1;
    margin: 0 0 40px 0;
    text-transform: uppercase;
}

.about-2-paragraph {
    font-family: para, sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.6;
    color: #333333;
    margin: 0 0 25px 0;
}

/* --- SECTION 3: The Services Layout --- */
.about-3-services {
    padding: 5vw 5vw 10vw 5vw;
    max-width: 1800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 8vw;
    border-top: 1px solid #eeeeee;
}

.about-3-contract-box {
    padding-top: 4vw;
}

.about-3-heading {
    font-family: head, sans-serif;
    font-size: clamp(2rem, 3vw, 4rem);
    font-weight: 400;
    line-height: 1.1;
    margin: 0 0 30px 0;
}

.about-3-divider {
    width: 60px;
    height: 1px;
    background-color: #000000;
    margin-bottom: 30px;
}

.about-3-paragraph {
    font-family: para, sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.6;
    color: #333333;
    margin: 0 0 25px 0;
}

.about-3-distribution-box {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    padding: 5vw;
    position: relative;
    /* Creating a subtle staggered lift */
    transform: translateY(-4vw);
}

.about-3-list {
    list-style: none;
    padding: 0;
    margin: 40px 0;
}

.about-3-item {
    font-family: head, sans-serif;
    font-size: clamp(1.1rem, 1.5vw, 1.5rem);
    line-height: 1.4;
    padding: 15px 0 15px 40px;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
}

.about-3-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 1px;
    background-color: #C5A059;
}

.about-3-italic {
    font-style: italic;
    color: #666666;
    margin-top: 30px;
}

/* --- SECTION 4: The Monolith Card --- */
.about-4-launch {
    /* padding: 5vw; */
    max-width: 1400px;
    margin: 0 auto 7vw auto;
}

.about-4-inner {
    border: 1px solid #C5A059;
    padding: 8vw 10vw;
    text-align: center;
    position: relative;
}

.about-4-tag {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #ffffff;
    color: #C5A059;
    font-family: para, sans-serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    padding: 0 20px;
    font-weight: 600;
}

.about-4-heading {
    font-family: head, sans-serif;
    font-size: clamp(3rem, 5vw, 6rem);
    font-weight: 400;
    line-height: 1;
    text-transform: uppercase;
    margin: 0 0 40px 0;
}

.about-4-paragraph {
    font-family: para, sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.6;
    color: #333333;
    margin: 0 auto 25px auto;
    max-width: 800px;
}

.about-4-highlight {
    font-family: head, sans-serif;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 50px;
    color: #000000;
}

/* --- SECTION 5: The Vision Statement --- */
.about-5-vision {
    padding: 5vw 5vw;
    background-color: #ffffff;
    max-width: 1800px;
    margin: 0 auto;
    border-top: 1px solid #f0f0f0;
}

.about-5-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 6vw;
}

.about-5-label {
    font-family: para, sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: #C5A059;
    white-space: nowrap;
}

.about-5-line {
    flex-grow: 1;
    height: 1px;
    background-color: #eeeeee;
}

.about-5-container {
    max-width: 1200px;
    margin: 0 auto 8vw auto;
}

.about-5-heading {
    font-family: head, sans-serif;
    font-size: clamp(2.5rem, 5vw, 6.5rem);
    line-height: 1.1;
    font-weight: 400;
    text-align: center;
    color: #000000;
    letter-spacing: -0.02em;
}

.about-5-accent {
    color: #C5A059;
    /* Gold accent for key vision words */
    font-style: italic;
    font-family: head, sans-serif;
}

/* Footer Values Grid */
.about-5-footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4vw;
    border-top: 1px solid #000000;
    padding-top: 4vw;
}

.about-5-footer-item {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.about-5-footer-title {
    font-family: head, sans-serif;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #000000;
}

.about-5-footer-text {
    font-family: para, sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.6;
    color: #666666;
    margin: 0;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .about-5-heading {
        font-size: clamp(2rem, 8vw, 4rem);
        text-align: left;
    }

    .about-5-footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* --- Responsive Breakpoints --- */
@media (max-width: 1024px) {
    .about-1-hero {
        flex-direction: column;
        align-items: flex-start;
        padding-top: 45vw;
        /* height: 100vh; */
    }

    .about-1-title-wrapper,
    .about-1-content-wrapper {
        width: 100%;
    }

    .about-1-content-wrapper {
        padding-top: 5vw;
    }

    .about-2-platforms {
        flex-direction: column;
        gap: 10vw;
    }

    .about-2-col-left,
    .about-2-col-right {
        width: 100%;
        padding-top: 0;
    }

    .about-3-services {
        grid-template-columns: 1fr;
        gap: 10vw;
    }

    .about-3-distribution-box {
        transform: none;
        padding: 8vw 5vw;
    }

    .about-5-statement {
        column-count: 1;
    }
}


@media(max-width: 768px) {
    .about-1-heading {
        font-size: 3rem;
    }

    .about-1-lead {
        font-size: 17px;
    }

    .about-1-paragraph {
        font-size: 17px;
    }

    .about-2-heading {
        font-size: 3rem;
    }

    .about-2-paragraph {
        font-size: 17px;
    }


    .about-3-heading {
        font-size: 3rem;
    }

    .about-3-paragraph {
        font-size: 17px;
    }

    .about-3-item {
        font-size: 17px;
    }

    .about-4-heading {
        font-size: 3rem;
    }

    .about-4-inner {
        padding: 60px 20px;
    }

    .about-4-paragraph {
        font-size: 17px;
    }
}







/* --- Master Wrapper --- */
.about-svp-master {
    background-color: #ffffff;
    color: #000000;
    width: 100%;
    overflow: hidden;
}

/* --- SECTION 1: HERO --- */
.about-svp-1-hero {
    display: flex;
    justify-content: space-between;
    padding: 10vw 5vw;
    min-height: 90vh;
    align-items: flex-end;
}

.about-svp-1-title-container {
    width: 55%;
}

.about-svp-1-tag {
    font-family: para, sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    color: #C5A059;
    display: block;
    margin-bottom: 2rem;
}

.about-svp-1-heading {
    font-family: head, sans-serif;
    font-size: clamp(4rem, 10vw, 12rem);
    line-height: 0.85;
    text-transform: uppercase;
    margin: 0;
    font-weight: 400;
}

.about-svp-1-outline {
    -webkit-text-stroke: 1px #000;
    color: transparent;
}

.about-svp-1-content-block {
    width: 35%;
    padding-bottom: 2vw;
}

.about-svp-1-subheadline {
    font-family: head, sans-serif;
    font-size: 1.5rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 2.5rem;
    color: #C5A059;
}

.about-svp-1-paragraph {
    font-family: para, sans-serif;
    font-size: 1.15rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 2rem;
}

/* --- SECTION 2: EXPERTISE (STAGGERED GRID) --- */
.about-svp-2-expertise {
    display: flex;
    padding: 10vw 5vw;
    background-color: #fafafa;
}

.about-svp-2-sticky-label {
    width: 10%;
}

.about-svp-2-vertical {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-family: head, sans-serif;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5em;
    color: #000;
}

.about-svp-2-grid {
    width: 90%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10vw 5vw;
    padding-left: 5vw;
}

.about-svp-2-item {
    padding-bottom: 4vw;
    border-bottom: 1px solid #e0e0e0;
}

.about-svp-2-shift {
    margin-top: 8vw;
    /* Creates the staggered magazine effect */
}

.about-svp-2-num {
    font-family: head, sans-serif;
    color: #C5A059;
    font-size: 1rem;
    display: block;
    margin-bottom: 2rem;
}

.about-svp-2-title {
    font-family: head, sans-serif;
    font-size: clamp(1.8rem, 3vw, 3rem);
    text-transform: uppercase;
    margin-bottom: 2rem;
    line-height: 1;
}

.about-svp-2-text {
    font-family: para, sans-serif;
    line-height: 1.7;
    color: #444;
    max-width: 400px;
}

/* --- SECTION 3: THE PRESTIGE CREDIT ROLL --- */
.about-svp-partners {
    padding: 15vw 5vw;
    background-color: #000000;
    /* Deep Black for a prestige feel */
    color: #ffffff;
}

.about-svp-partners-inner {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 10vw;
    max-width: 1800px;
    margin: 0 auto;
}

.about-svp-partners-heading {
    font-family: head, sans-serif;
    font-size: clamp(4rem, 8vw, 10rem);
    line-height: 0.85;
    text-transform: uppercase;
    margin: 0 0 40px 0;
    font-weight: 400;
}

.about-svp-partners-line {
    width: 60px;
    height: 1px;
    background-color: #C5A059;
    margin-bottom: 40px;
}

.about-svp-partners-sub {
    font-family: para, sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #888;
    max-width: 350px;
}

.about-svp-partners-group {
    margin-bottom: 8vw;
}

.about-svp-partners-label {
    font-family: para, sans-serif;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    color: #C5A059;
    display: block;
    margin-bottom: 3rem;
    opacity: 0.8;
}

.about-svp-partners-list {
    list-style: none;
    padding: 0;
}

.about-svp-partners-item {
    font-family: head, sans-serif;
    font-size: clamp(1.5rem, 3vw, 3.5rem);
    line-height: 1.2;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #222;
    padding-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.about-svp-partners-parent {
    font-size: 1rem;
    color: #555;
    letter-spacing: 0.1em;
}

/* --- SECTION 4: THE LONGEVITY MANIFESTO --- */
.about-svp-wellbeing {
    padding: 15vw 5vw;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}

.about-svp-wellbeing-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: head, sans-serif;
    font-size: 25vw;
    color: #f9f9f9;
    /* Near-invisible background text */
    z-index: 0;
    font-weight: 900;
    pointer-events: none;
}

.about-svp-wellbeing-container {
    position: relative;
    z-index: 1;
    max-width: 1600px;
    margin: 0 auto;
}

.about-svp-wellbeing-header {
    margin-bottom: 8vw;
}

.about-svp-wellbeing-num {
    font-family: para, sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    color: #C5A059;
    display: block;
    margin-bottom: 20px;
}

.about-svp-wellbeing-main-title {
    font-family: head, sans-serif;
    font-size: clamp(3rem, 7vw, 9rem);
    line-height: 0.9;
    text-transform: uppercase;
    margin: 0;
}

.about-svp-wellbeing-gold {
    color: #C5A059;
    font-style: italic;
    font-weight: 300;
}

.about-svp-wellbeing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10vw;
}

.about-svp-wellbeing-lead {
    font-family: head, sans-serif;
    font-size: clamp(1.5rem, 2vw, 2.5rem);
    line-height: 1.3;
    margin-bottom: 40px;
}

.about-svp-wellbeing-body {
    font-family: para, sans-serif;
    font-size: 1.15rem;
    line-height: 1.8;
    color: #444;
}

.about-svp-wellbeing-cat-box {
    margin-bottom: 40px;
}

.about-svp-wellbeing-cat-title {
    font-family: head, sans-serif;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    display: block;
    margin-bottom: 15px;
}

.about-svp-wellbeing-cat-line {
    width: 100%;
    height: 1px;
    background-color: #000;
    transform-origin: left;
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .about-svp-1-hero {
        flex-direction: column;
        align-items: flex-start;
    }

    .about-svp-1-title-container,
    .about-svp-1-content-block {
        width: 100%;
    }

    .about-svp-2-grid {
        grid-template-columns: 1fr;
    }

    .about-svp-2-shift {
        margin-top: 0;
    }

    .about-svp-partners-inner,
    .about-svp-wellbeing-grid {
        grid-template-columns: 1fr;
    }

    .about-svp-partners-left {
        margin-bottom: 10vw;
    }
}

@media(max-width: 768px) {
    .about-svp-1-hero {
        height: auto;
        padding: 40vw 5vw 10vw 5vw;
    }
}






/* --- MASTER LAYOUT --- */
.contact-page-master {
    background-color: #ffffff;
    color: #000000;
    min-height: 100vh;
    padding: 0 5vw 10vw 5vw;
}

/* --- HERO SECTION --- */
.contact-page-hero {
    padding: 15vw 0 10vw 0;
}

.contact-page-label {
    font-family: para, sans-serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5em;
    color: #C5A059;
    /* Gold accent */
    display: block;
    margin-bottom: 2rem;
}

.contact-page-title {
    font-family: head, sans-serif;
    font-size: clamp(4rem, 10vw, 12rem);
    line-height: 0.85;
    text-transform: uppercase;
    margin: 0;
    font-weight: 400;
    letter-spacing: -0.02em;
}

.contact-page-italic {
    font-style: italic;
    color: #a0a0a0;
    /* Subtle silver/grey for contrast */
    font-weight: 300;
}

/* --- SPLIT MAIN LAYOUT --- */
.contact-page-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1600px;
    margin: 0 auto;
    gap: 10vw;
}

/* --- LEFT: FORM COLUMN --- */
.contact-page-form-col {
    width: 50%;
}

.contact-page-lead {
    font-family: para, sans-serif;
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 4vw;
    max-width: 500px;
}

.contact-page-form {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    /* Massive spacing between inputs */
}

.contact-page-input-row {
    display: flex;
    gap: 3rem;
}

.contact-page-input-group {
    flex-grow: 1;
    position: relative;
}

.contact-page-input-label {
    font-family: para, sans-serif;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #000;
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
}

/* Minimalist Form Elements */
.contact-page-input,
.contact-page-textarea {
    width: 100%;
    border: none;
    border-bottom: 1px solid #ddd;
    background: transparent;
    padding: 10px 0;
    font-family: para, sans-serif;
    font-size: 1.1rem;
    color: #000;
    outline: none;
    transition: border-color 0.4s ease;
}

/* Hide resize handle on textarea for a cleaner look */
.contact-page-textarea {
    resize: vertical;
    min-height: 40px;
}

/* Elegant Focus States */
.contact-page-input:focus,
.contact-page-textarea:focus {
    border-bottom: 1px solid #C5A059;
}

.contact-page-input::placeholder,
.contact-page-textarea::placeholder {
    color: #ccc;
    font-weight: 300;
}

/* The Submit Button */
.contact-page-submit {
    align-self: flex-start;
    margin-top: 2rem;
    background-color: #000;
    color: #fff;
    border: none;
    padding: 20px 50px;
    font-family: para, sans-serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    cursor: pointer;
    transition: background-color 0.4s ease;
}

.contact-page-submit:hover {
    background-color: #C5A059;
}

/* --- RIGHT: MAP & LOCATION COLUMN --- */
.contact-page-location-col {
    width: 40%;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

/* Map Frame - Mimics a dark, high-end editorial photo */
.contact-page-map-frame {
    width: 100%;
    aspect-ratio: 4/5;
    /* Tall, portrait orientation feels more editorial */
    background-color: #111;
    position: relative;
    overflow: hidden;
}

.contact-page-map-visual {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: radial-gradient(circle at center, #222 0%, #111 100%);
    /* Once you have a grayscale Google Map iframe, put it inside .contact-page-map-frame and cover this */
}

.contact-page-map-coords {
    font-family: para, sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.4em;
    color: #555;
    /* Very subtle text in the dark box */
    transform: rotate(-90deg);
    /* Vertical text for architectural feel */
}

/* HQ Details */
.contact-page-address-block {
    border-top: 1px solid #eee;
    padding-top: 2rem;
}

.contact-page-city {
    font-family: head, sans-serif;
    font-size: 2rem;
    text-transform: uppercase;
    margin: 0 0 1rem 0;
    line-height: 1;
}

.contact-page-address-text {
    font-family: para, sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.contact-page-contact-links {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-page-link {
    font-family: para, sans-serif;
    font-size: 1.4rem;
    color: #000;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    width: fit-content;
    transition: border-color 0.3s ease;
    text-transform: uppercase;
}

.contact-page-link:hover {
    border-color: #C5A059;
    color: #C5A059;
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {

    .contact-page-master {
        padding-top: 100px;
    }

    .contact-page-main {
        flex-direction: column;
        gap: 15vw;
    }

    .contact-page-form-col,
    .contact-page-location-col {
        width: 100%;
    }

    .contact-page-input-row {
        flex-direction: column;
        gap: 3rem;
    }

    .contact-page-map-frame {
        aspect-ratio: 16/9;
        /* Switch to landscape on mobile */
    }

    .contact-page-map-coords {
        transform: none;
    }
}




.main-privacy-container {
    max-width: 800px;
    margin: 100px auto;
    padding: 100px 40px 0px 40px;
    color: #1a1a1a;
    line-height: 1.6;
}

.main-privacy-title {
    font-family: head, serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

.main-privacy-effective-date {
    font-family: para;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: #888;
    margin-bottom: 40px;
}

.main-privacy-intro-text {
    font-size: 20px;
    font-weight: 600;
    font-family: para;
    letter-spacing: 1px;
    line-height: 1.4;
}

.main-privacy-consent {
    font-size: 20px;
    font-weight: 800;
    font-family: para;
    letter-spacing: 1px;
    line-height: 1.4;
}

.main-privacy-tertiary-title {
    font-family: para !important;
    font-size: 1.3rem;
    margin: 40px 0 20px 0;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.main-privacy-subtitle {
    font-family: para !important;
    font-size: 1.8rem;
    margin: 40px 0 20px 0;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}


.main-privacy-paragraph {
    font-family: para;
    font-size: 1.05rem;
    margin-bottom: 20px;
    font-weight: 600;
    color: #333;
}

.main-privacy-list {
    margin-bottom: 30px;
    padding-left: 20px;
}

.main-privacy-list-item {
    font-family: para;
    margin-bottom: 10px;
    list-style-type: square;
}

.main-privacy-link {
    color: #1a1a1a;
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: opacity 0.3s ease;
}

.main-privacy-link:hover {
    opacity: 0.6;
}

.main-privacy-signature {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid #1a1a1a;
}


.main-privacy-contact-meta{
    text-decoration: none;
    color: #000;
}












