:root {
    --gold: #CB8918;
}

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

body {
    font-family: "IBM Plex Sans", sans-serif;
    background: #fff;
    padding: 0;
    margin: 0;
}

h1,
h2,
h3 {
    font-family: "Playfair", serif;
}

img {
    max-width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}


/* CONTAINER */
.hero-container {
    width: min(1400px, 92%);
    margin: auto;
}

.container {
    width: min(1280px, 92%);
    margin: auto;
}

/* HEADER */
.header {
    background: #282828;
    padding: 0;
    position: relative;
}

/* NAV */
.nav {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.nav-sec {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

/* LOGO */
.logo span {
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    color: white;
}

.logo small {
    display: block;
    font-size: clamp(0.6rem, 1vw, 0.7rem);
    color: #aaa;
}

/* NAV LINKS */
.nav-items {
    display: flex;
    gap: clamp(1rem, 2vw, 2rem);
    list-style: none;
}

.nav-item {
    position: relative;
}

.nav-item::after {
    position: absolute;
    content: "";
    width: 0;
    height: 5px;
    background: var(--gold);
    bottom: 0;
    left: 0;
    transition: all 0.3s ease;
}

.nav-item:hover::after {
    width: 100%;
}

.nav-link {
    color: #fff;
    font-size: clamp(0.8rem, 1vw, 0.95rem);
    cursor: pointer;
    position: relative;
    font-weight: 400;
    letter-spacing: 10%;
    text-transform: uppercase;
    text-decoration: none;
    padding: 22px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* RIGHT SIDE ACTIONS */
.actions {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-left: auto;
}

.actionlink {
    background: #202020;
    color: #fff;
    text-decoration: none;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 10%;
    text-transform: uppercase;
    line-height: 1;
}


/* ================= DROPDOWN ================= */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 300px;
    background: #eaeaea;
    padding: 20px;
    display: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    flex-direction: column;
    z-index: 3;
}

/* SHOW */
.dropdown:hover .dropdown-menu {
    display: flex;
}

/* ITEMS */

.dropdown-item {
    display: block;
    border-left: 1px solid #A1A1A1;
    position: relative;
}

.dropdown-item::before {
    content: "";
    position: absolute;
    left: -2px;
    top: 0;
    width: 4px;
    height: 100%;
    background: #000000;
    opacity: 0;
    transition: all 0.4s ease;
}

.dropdown-item:hover::before {
    opacity: 1;
}


.dropdown-nav-link {
    display: block;
    padding: 10px;
    color: #444;
}

/* ACTIVE */
.dropdown-nav-link.active,
.dropdown-nav-link:hover {
    color: #000;
}

.btn-arrow {
    display: inline-flex;
    align-items: center;
    gap: 30px;
    border-radius: 5px;
    padding: 20px 22px;
    background: #000;
    color: #fff;
    outline: none;
    border: none;
    cursor: pointer;
    font-size: clamp(0.75rem, 1vw, 0.9rem);
    letter-spacing: 10%;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-arrow span {
    position: relative;
}

.btn-arrow img {
    width: 25px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.btn-arrow::before {
    content: "";
    position: absolute;
    width: 0;
    height: 100%;
    background: var(--gold);
    top: 0;
    left: 0;
    transition: all 0.3s ease;
}

.btn-arrow:hover::before {
    width: 100%;
}

.btn-arrow:hover img {
    transform: translateX(6px);
    filter: brightness(100);
}

.hero {
    background: #282828;
}


.hero-slide {
    position: relative;
}

.hero-img-box {
    width: 100%;
    height: 580px;
    position: relative;
    overflow: hidden;
}

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

    transform: scale(1.3);
    transition: transform 6s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ACTIVE SLIDE → ZOOM OUT */
.slick-current .hero-img {
    transform: scale(1);
}

.hero-content {
    position: absolute;
    bottom: 20%;
    left: 5%;
    max-width: 390px;
}

.hero-footer {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    padding-left: 5%;
}

.hero-footer-left {
    max-width: 600px;
}

.hero-footer-text {
    font-size: clamp(0.75rem, 1vw, 0.9rem);
    margin-top: 20px;
    color: #fff;
    font-weight: 400;
    margin-bottom: 20px;
}

.slider-wrapper {
    position: relative;
    overflow: hidden;
}

.custom-dots {
    display: flex;
    gap: 20px;
}

/* DOT BASE */
.custom-dots .dot {
    width: 10px;
    height: 10px;
    background: #000;
    border-radius: 50%;
    cursor: pointer;
}

.hero-content h1 {
    color: #fff;
    line-height: 1;
    font-family: "Playfair", serif;
    font-size: clamp(3.5rem, 5vw, 5rem);
    font-weight: 500;
    letter-spacing: -5%;
    line-height: .9;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(60px);
    transition: all 2s ease 0.5s;
}

/* ACTIVE TEXT */
.slick-current .hero-content h1 {
    opacity: 1;
    transform: translateY(0);
}

.hero-footer {
    opacity: 0;
    transition: all 2s ease 0.5s;
}

.slick-current .hero-footer {
    opacity: 1;
}

.hero-img-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-img-wrapper::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.slick-slide {
    transition: opacity 1s ease;
}

/* ACTIVE DOT */
.custom-dots .dot.active {
    background: #fff;
    transform: scale(1.1);
}

.btn-next {
    width: 6.5vw;
    height: 6.5vw;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid #FFFFFF;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-next img {
    transition: all 0.3s ease;
}

.btn-next:hover {
    background: #000;
}

.btn-next:hover img {
    transform: translateX(5px);
}

.dots-arrows {
    position: absolute;
    bottom: 5%;
    right: 5%;
    display: flex;
    align-items: center;
    gap: 100px;
}

/* SECTION BACKGROUND */
.advantage {
    background: #f3f3f3;
    padding: 100px 0;
}

/* GRID */
.advantage-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: start;
}

/* LEFT SIDE */
.heading1 {
    font-family: "Playfair", serif;
    font-size: clamp(5rem, 8.7vw, 9rem);
    color: #1B1B1B;
    margin-bottom: 20px;
    font-weight: 400;
    letter-spacing: -5%;
    line-height: .9;
}

.heading1.adv {
    margin-bottom: 40px;
}

/* BREADCRUMB */
.breadcrumb {
    display: flex;
    gap: 10px;
    font-size: 14px;
    color: #282828;
    margin-bottom: 20px;
    text-decoration: underline;
}

/* TEXT */
.adv-left p {
    color: #282828;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 1rem;
}

/* RIGHT GRID */
.adv-right {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* CARD */
.card {
    background: #fff;
    padding: 2.5vw clamp(20px, 2vw, 32px);
    text-align: left;
    box-shadow: 0px 0px 30px 0px #00000012;
}

/* ICON */
.card .icon {
    width: 40px;
    margin-bottom: 20px;
}

/* NUMBER */
.card h3 {
    font-family: "Playfair", serif;
    font-size: clamp(2.5rem, 5vw, 5.5rem);
    color: #EA8423;
    margin-bottom: 10px;
    letter-spacing: -5%;
    font-weight: 500;
}

/* TEXT */
.card p {
    font-size: 1rem;
    color: #282828;
}

/* SECTION */
.investment {
    background: #fff;
    padding: 100px 0 160px;
    position: relative;
}


.inv-top p {
    max-width: 600px;
    color: #282828;
    line-height: 1.6;
    font-size: 1rem;
    font-weight: 400;
}

/* VISUAL */
.inv-visual {
    position: relative;
    margin-top: 40px;
}

.inv-visual img {
    width: 100%;
    object-fit: cover;
}

/* CARDS */
.inv-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;

    position: relative;
    margin-top: -154px;
    z-index: 2;
}

/* CARD */
.inv-card {
    background: #282828;
    color: #fff;
    padding: 60px 48px;
    position: relative;
}

.inv-card.one {
    background: #282828 url("../images/mask1.svg") no-repeat top center;
}

.inv-card.two {
    background: #282828 url("../images/mask2.svg") no-repeat top right;
}

/* HEADING */
.inv-card h3 {
    font-family: "Playfair", serif;
    font-size: clamp(3rem, 5vw, 5.25rem);
    line-height: .85;
    letter-spacing: -5%;
    font-weight: 500;
}

/* BADGE */
.h3badge {
    display: inline-block;
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 14px;
    border-radius: 5px;
    padding: 6px 8px;
    border: 1px solid #D2D2D2;
    top: -8px;
    position: relative;
    font-weight: 400;
    letter-spacing: 0;
}

/* FOOTER */
.inv-footer-wrapper {
    position: relative;
    max-width: 70%;
}

.inv-footer-wrapper.active {
    background-color: #fff;
    border-radius: 5px 5px 0 0;
}

.inv-footer {
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #454545;
    padding: 16px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 4;
}

.inv-footer span {
    font-size: clamp(1rem, 1.2vw, 1.25rem);
    letter-spacing: 10%;
    color: #fff;
    text-transform: uppercase;
    font-weight: 400;
}

.inv-footer-wrapper.active .inv-footer span {
    color: #000;
}

.inv-footer-wrapper.active .inv-footer {
    border-bottom: 1px solid #fff;
}

.dowmbx {
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    transform-origin: center center;
}

.dowmbx.rotate {
    transform: rotate(180deg);
    transform-origin: center center;
}

.inv-footer-dropdown {
    position: absolute;
    top: 100%;
    padding: 0 20px 20px;
    width: 100%;
    background: #fff;
    border-radius: 0 0 5px 5px;
    box-shadow: 0px 4px 8px 0px #00000014;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition:
        max-height 0.4s ease,
        opacity 0.2s ease,
        transform 0.2s ease;
    z-index: 3;
}

.inv-footer-wrapper.active .inv-footer-dropdown {
    max-height: 190px;
    /* adjust if needed */
    opacity: 1;
    transform: translateY(-1px);
}

.droptitle {
    color: #000;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: 0%;
    margin-bottom: 6px;
}

.dropul {
    display: flex;
    flex-direction: column;
    list-style-type: none;
}

.dropli {
    display: block;
    list-style-type: none;
    border-bottom: solid 1px #C9C9C9;
    transition: all 0.3s ease;
}

.dropli a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #000;
    padding: 14px 0;
    font-weight: 500;
    font-size: 12px;
    line-height: 100%;
    letter-spacing: 10%;
    text-transform: uppercase;
}

.dropli:hover {
    border-bottom: solid 1px #000;
}

.dropli:hover a {
    font-weight: 600;
}

.gobtn {
    width: 16px;
    height: 16px;
    border-radius: 2px;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.dropli:hover .gobtn {
    background: #CB8918;
}

.footer-section {
    background: linear-gradient(90deg, rgba(248, 248, 248, 1) 50%, rgba(246, 242, 240, 1) 50%);
}

.footer {
    font-family: "IBM Plex Sans", sans-serif;
}

/* ================= LINKS ================= */
.footer-links {
    background: #F8F8F8;
    padding: 40px 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.footer-links a {
    font-size: 14px;
    letter-spacing: 10%;
    color: #000;
    text-transform: uppercase;
    font-weight: 400;
}

/* ================= RIGHT ================= */
.footer-right {
    background: #F6F2F0;
    padding: 30px 20px;
}

/* SUBSCRIBE */
.footer-right h4 {
    font-family: "Playfair", serif;
    font-size: 22px;
    line-height: 1;
    font-weight: 500;
    text-transform: unset;
    letter-spacing: -3%;
    padding-left: 16px;
}

.subscribe-box {
    display: flex;
    border-radius: 5px;
    overflow: hidden;
    border: 1px solid #DADADA;
    background: #fff;
}

.subscribe-box input {
    flex: 1;
    padding: 16px;
    border: none;
    font-size: 14px;
    outline: none;
    box-shadow: none;
    font-weight: 400;
    color: #6D6D6D;
    letter-spacing: 10%;
    background: #fff;
}

.subscribe-box button {
    padding: 0 15px;
    border: none;
    font-size: 18px;
    background: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* SOCIAL */
.social {
    margin-top: 14px;
    display: flex;
    align-items: center;
    gap: 30px;
}

.social p {
    font-size: 14px;
    letter-spacing: 10%;
    text-transform: uppercase;
    font-weight: 400;
    color: #000;
}

.icons {
    display: flex;
    align-items: center;
    gap: 30px;
}

.icons a {
    flex-shrink: 0;
}

/* ADDRESS */
.address {
    margin-top: 16px;
    font-size: 14px;
    letter-spacing: 10%;
    text-transform: uppercase;
    font-weight: 400;
    color: #000;
}

.phonelink {
    display: inline-block;
    margin-top: 14px;
    color: #000;
}

/* APPS */
.apps {
    margin-top: 25px;
}

.apps p {
    font-size: 14px;
    letter-spacing: 10%;
    text-transform: uppercase;
    font-weight: 400;
    color: #000;
    display: block;
}

.apps small {
    color: #CB8918;
    letter-spacing: 10%;
    display: block;
    margin-bottom: 10px;
    font-size: 12px;
    font-weight: 500;
}

.app-buttons {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.app-btn {
    padding: 6px 16px;
    background: transparent;
    border: 1px solid #CB8918;
    outline: none;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    color: #000;
    font-weight: 600;
    font-size: 12px;
    line-height: 20px;
    letter-spacing: 10%;
    text-transform: uppercase;
}

/* BOTTOM */
.footer-bottom {
    font-size: 12px;
    color: #000;
    font-weight: 400;
    line-height: 1.5;
    padding: 20px;
}

.mob {
    display: none;
}

.desktop {
    display: block;
}

/* SECTION */
.faq {
    background: #fff;
    padding: 60px 0;
}

/* GRID */
.faq-grid {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 60px;
    align-items: flex-start;
}

/* LEFT */
.faq-left {
    background: #F5EFEC;
    padding: 40px;
    margin-top: 20px;
}

.faq-left h2 {
    font-family: "Playfair", serif;
    margin-bottom: 20px;
    font-weight: 500;
    font-size: clamp(2.5rem, 4.12vw, 5rem);
    line-height: 1;
    letter-spacing: -5%;
    text-transform: uppercase;
    color: #282828;
}

.faq-left p {
    color: #282828;
    font-weight: 400;
    font-size: clamp(1rem, 1.35vw, 1.5rem);
    margin-bottom: 20px;
}

/* RIGHT */
.faq-right {
    display: flex;
    flex-direction: column;
}

/* ITEM */
.faq-item {
    border-bottom: 1px solid #bbb;
    padding: 20px 0;
}

/* QUESTION */
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h4 {
    font-size: 1rem;
    font-weight: 500;
    color: #282828;
}

/* ICON */
.faq-icon {
    transition: transform 0.3s ease;
}

/* ANSWER */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    transition: max-height 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-answer p {
    font-size: 1rem;
    font-weight: 400;
    margin-top: 10px;
    color: #000;
    line-height: 1.6;
}

/* ACTIVE */
.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

/* SECTION */
.contact {
    background: #fff;
    padding: 100px 0;
}

/* HEADING */
.contact h2 {
    font-family: "Playfair", serif;
    font-size: clamp(4rem, 4.35vw, 5rem);
    color: #282828;
    font-weight: 500;
    line-height: .9;
    letter-spacing: -5%;
    text-transform: uppercase;
}

/* BOX */
.contact-box {
    background: #fff;
    border: 40px solid #F8F8F8;
    padding: 40px;
}

/* SUBTEXT */
.contact-sub {
    margin-bottom: 30px;
    color: #282828;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4;
    letter-spacing: 0%;
}

/* FORM */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* ROW */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.form-row.full {
    grid-template-columns: 1fr;
}

/* INPUT */
.input-field {
    padding: 22px 24px;
    background: #f8f8f8;
    font-size: 14px;
    outline: none;
    border: 1px solid #DCDCDC;
    border-radius: 5px;
    color: #282828;
    font-weight: 400;
}

.input-field:focus {
    border-color: #c8871a;
}

/* SELECT */
.custom-select {
    padding: 22px 50px 22px 24px;
    /* extra right space */
    background: #f8f8f8 url("../images/chev-down.svg") no-repeat right 18px center;
    background-size: 14px;

    font-size: 14px;
    border: 1px solid #DCDCDC;
    border-radius: 5px;
    color: #282828;
    font-weight: 400;
    cursor: pointer;

    appearance: none;
    /* remove default arrow */
    -webkit-appearance: none;
    -moz-appearance: none;
}

.custom-select:hover {
    border-color: #c8871a;
}

.custom-select:focus {
    border-color: #c8871a;
    outline: none;
}

.custom-select::-ms-expand {
    display: none;
}

/* CAPTCHA */
.captcha-box {
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #DCDCDC;
    border-radius: 5px;
    overflow: hidden;
}

.captcha-box img {
    width: 100%;
}

/* BOTTOM */
.form-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

/* CHECKBOX */
/* WRAPPER */
.custom-checkbox {
    display: flex;
    align-items: center;
    gap: 14px;
    cursor: pointer;
    font-size: 16px;
    color: #282828;
}

/* HIDE DEFAULT */
.custom-checkbox input {
    display: none;
}

/* BOX */
.checkmark {
    width: 28px;
    height: 28px;
    border: 1px solid #ccc;
    border-radius: 6px;
    background: #f2f2f2;
    display: inline-block;
    position: relative;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

/* CHECK ICON */
.checkmark::after {
    content: "";
    position: absolute;
    top: 6px;
    left: 10px;
    width: 6px;
    height: 12px;
    border: solid #000;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    opacity: 0;
    transition: 0.2s;
}

/* ACTIVE */
.custom-checkbox input:checked+.checkmark {
    background: #fff;
    border-color: #c8871a;
}

.custom-checkbox input:checked+.checkmark::after {
    opacity: 1;
}

/* TEXT */
.label-text {
    line-height: 1.5;
}

/* SECTION */
.philosophy {
    background: #fff;
    padding: 0px 0 160px;
    position: relative;
    max-width: 100vw;
    overflow: hidden;
}

/* TOP */
.philo-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

.philo-top h2 {
    font-family: "Playfair", serif;
    font-size: clamp(5rem, 8.75vw, 9rem);
    color: #282828;
    line-height: .8;
    letter-spacing: -5%;
    font-weight: 400;
}

.sub {
    font-size: clamp(1.4rem, 1.5vw, 1.5rem);
    margin-top: 20px;
    color: #282828;
    line-height: 1.5;
}

.small {
    font-size: 16px;
    color: #282828;
}

.philo-image-wrapper {
    display: flex;
}

.textbx {
    width: 44%;
}

/* IMAGE */
.philo-image {
    position: relative;
    flex: 1;
    width: calc(100% - 45%);
}

.philo-image img {
    height: 420px;
    object-fit: cover;
    width: 125%;
    max-width: unset;
}

/* CARDS WRAPPER */
.philo-cards {
    display: flex;
    gap: 30px;
    position: relative;
    margin-top: -230px;
    z-index: 2;
}

/* CARD */
.philo-card {
    background: #F5EFEC;
    padding: 30px 24px;
    min-height: 400px;
    position: relative;
    max-width: 325px;
}

/* NUMBER */
.philo-card .num {
    display: inline-flex;
    padding: 10px;
    margin-bottom: 80px;
    font-family: "Playfair", serif;
    border: 1px solid #C7C7C7;
    border-radius: 5px;
    width: 60px;
    height: 70px;
    align-items: end;
    color: #282828;
    font-weight: 500;
    font-size: clamp(3.8rem, 3.8vw, 4rem);
    line-height: 50px;
    letter-spacing: -5%;
    text-transform: uppercase;
}

.philo-card h4 {
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: 500;
    color: #282828;
}

/* TEXT */
.philo-card p {
    font-size: 14px;
    color: #282828;
    line-height: 1.6;
    font-weight: 400;
}

/* SECTION */
.market {
    background: #282828;
    padding: 150px 0 100px;
    color: #fff;
}

/* GRID */
.two-col-section {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

/* LEFT */
.heading2 {
    font-family: "Playfair", serif;
    font-size: clamp(4rem, 4.25vw, 5rem);
    line-height: 1;
    font-weight: 500;
    letter-spacing: -5%;
    text-transform: uppercase;
}

.secp {
    margin: 20px 0;
    color: #fff;
    font-weight: 300;
    font-size: clamp(1.2rem, 1.4vw, 1.5rem);
    line-height: 1.4;
    letter-spacing: 0%;
}

/* RIGHT */
.girid2 {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* CARD */
.market-card {
    position: relative;
    background: #E19B35;
    padding: 20px;
}

/* IMAGE */
.market-img {
    position: relative;
    bottom: -40px;
    margin-top: -23%;
    margin-inline: auto;
    display: table;
}

/* DATE */
.market-card .date {
    position: absolute;
    top: 20px;
    left: 20px;
    color: #000;
    font-weight: 400;
    font-size: clamp(1.2rem, 1.4vw, 1.5rem);
    line-height: 1.4;
    letter-spacing: 0%;
    text-transform: uppercase;
}

/* WATCH BUTTON */
.watch-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    border-radius: 5px;
    background: #fff;
    color: #000;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 10%;
    text-transform: uppercase;
    z-index: 2;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ICON CIRCLE */
.watch-btn .play {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 12px;
    transition: all 0.35s ease;
}

/* BACKGROUND SLIDE EFFECT */
.watch-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #000;
    transform: translateX(-100%);
    transition: transform 0.4s ease;
    z-index: -1;
}

/* HOVER STATE */
.watch-btn:hover {
    color: #fff;
}

.watch-btn:hover::before {
    transform: translateX(0);
}

/* ICON ANIMATION */
.watch-btn:hover .play {
    background: #fff;
    transform: translateX(4px);
}

/* TABS */
.market-tabs {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    max-width: 100%;
    padding-bottom: 20px;
}

.market-tabs span {
    padding: 8px 14px;
    border-radius: 3px;
    cursor: pointer;
    color: #ccc;
    border: 0.5px solid #595959;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.7;
    letter-spacing: 0%;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.market-tabs span:hover {
    background: #000;
    color: #fff;
}

/* ACTIVE TAB */
.market-tabs .active {
    background: #fff !important;
    color: #000 !important;
    border-color: #fff !important;
}

/* SECTION */
.news {
    background: #242424;
    padding: 100px 0;
    color: #fff;
}

/* GRID */
.news-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}


/* RIGHT */
.news-right {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* CARD */
.news-card {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 20px;
    transition: 0.3s;
}

/* ACTIVE CARD (CENTER) */
.news-card.active,
.news-card:hover {
    background: #1B1B1B;
}

/* LOGO BOX */
.news-logo {
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1/1;
}

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

/* DATE */
.news-card .date {
    color: #fff;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.7;
    letter-spacing: 0%;
}

/* TITLE */
.news-card h4 {
    color: #fff;
    font-weight: 300;
    font-size: clamp(1.15rem, 1.2vw, 1.25rem);
    line-height: 1.2;
    letter-spacing: 0%;
    margin-bottom: 40px;
}

/* LINK */
.news-link {
    margin-top: auto;
    font-size: 16px;
    color: #fff;
    text-decoration: underline;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 300;
}

/* HOVER */
.news-card:hover {
    transform: translateY(-6px);
}

.news-card.active:hover {
    transform: scale(1.03);
}

/* SECTION */
.leadership {
    background: #282828;
    padding: 100px 0;
    color: #fff;
}

/* GRID */
.lead-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

/* RIGHT */
.lead-right {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* CARD */
.lead-card {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    transition: 0.3s;
    border: 1px solid #444444;
    align-items: flex-start;
}

/* TAG */
.tag {
    display: inline-block;
    background: #fff;
    color: #CB8918;
    padding: 8px 10px;
    font-weight: 500;
    border-radius: 2px;
    font-weight: 700;
    font-size: 12px;
    line-height: 100%;
    letter-spacing: 10%;
    text-transform: uppercase;
}

/* TITLE */
.lead-card h4 {
    font-weight: 300;
    font-size: clamp(1.15rem, 1.2vw, 1.25rem);
    line-height: 1.2;
    letter-spacing: 0%;
    color: #fff;
}

/* IMAGE */
.lead-img {
    margin-top: auto;
    aspect-ratio: 1/1;
    width: 100%;
}

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

/* HOVER */
.lead-card:hover {
    transform: translateY(-6px);
    border-color: #555;
}

/* MODAL */
.video-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;

    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;
    visibility: hidden;
    transition: 0.4s ease;
}

/* ACTIVE */
.video-modal.active {
    opacity: 1;
    visibility: visible;
}

/* BACKDROP */
.video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(6px);
}

/* CONTENT */
.video-content {
    position: relative;
    width: 80%;
    max-width: 900px;
    aspect-ratio: 16/9;
    transform: scale(0.9);
    transition: 0.4s ease;
    z-index: 2;
}

/* SCALE IN */
.video-modal.active .video-content {
    transform: scale(1);
}

/* IFRAME */
.video-content iframe {
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

/* CLOSE BUTTON */
.video-close {
    position: absolute;
    top: -60px;
    right: 0;
    background: transparent;
    border: none;
    cursor: pointer;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.video-close:hover {
    opacity: 1;
}

.no-scroll {
    overflow: hidden;
}

/* HAMBURGER */
.hamburger {
    background: transparent !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    cursor: pointer;
}

/* OVERLAY */

.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(6px);

    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 999;
}

/* DRAWER */
.side-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    min-width: 320px;
    width: 50%;
    height: 100vh;
    background: #F5EFEC url(../images/mask3.svg) no-repeat bottom right;
    padding: 40px 60px;
    z-index: 1000;
    transition: right 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    overflow-y: auto;
    background-size: 40%;
}

/* ACTIVE STATES */
.side-drawer.active {
    right: 0;
}

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

.drawer-content {
    padding-top: 22px;
}

/* CONTENT */
.drawer-content h2 {
    font-size: clamp(2.5rem, 3vw, 3.125rem);
    margin-bottom: 6px;
    font-weight: 500;
    letter-spacing: -5%;
    color: #282828;
    line-height: 1;
    display: flex;
    padding: 0;
}

.drawer-content ul {
    list-style: none;
    padding: 0;
    display: inline-block;
}

.drawer-content li {
    padding: 12px 0;
    border-bottom: 1px solid #CBCBCB;
    font-size: clamp(1.15rem, 1.2vw, 1.25rem);
    color: #000000;
}

.drawer-content li:last-child {
    border-bottom: none;
}

/* DIVIDER */
.drawer-content hr {
    margin: 30px 0;
    border: none;
    border-top: 1px solid #CBCBCB;
    width: 70%;
}

/* CLOSE */
.drawer-close {
    width: 32px;
    height: 32px;
    border-radius: 4px;
    background: #CB8918;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    border: solid 1px #CB8918;
}

/* WRAPPER */
.bottom-drawer {
    position: fixed;
    inset: 0;
    z-index: 9999;

    opacity: 0;
    visibility: hidden;
    transition: 0.4s ease;
}

.bottom-drawer.active {
    opacity: 1;
    visibility: visible;
}

/* OVERLAY */
.bottom-drawer-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.panel-inner {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.bottom-drawer-content {
    padding-top: 22px;
    display: flex;
    gap: 30px;
}

/* PANEL */
.bottom-drawer-panel {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    height: 500px;
    background: #ebe7e4;
    padding: 40px;
    transition: 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    border-top: solid 8px #CB8918;
}

.drawer-card {
    flex: 1;
    display: flex;
    gap: 12px;
    background: #f8f8f8;
    padding: 12px;
    border: 1.5px solid #DEDEDE;
}

.bottom-drawer-img-box {
    width: 160px;
    height: 230px;
    flex-shrink: 0;
    overflow: hidden;
}

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

.bottom-drawer-text-box {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.drawer-header-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.drawer-sub {
    color: #9E9E9E;
    font-weight: 400;
    font-size: clamp(1.15rem, 1.2vw, 1.25rem);
    line-height: 1;
    letter-spacing: 0%;
    text-transform: uppercase;
}

.drawer-title {
    font-weight: 500;
    font-size: clamp(2.5rem, 3vw, 3.125rem);
    line-height: .9;
    letter-spacing: -5%;
    text-transform: uppercase;
    color: #282828;
}

.bottom-drawer-text-box h4 {
    color: #282828;
    font-weight: 500;
    font-size: clamp(1.15rem, 1.2vw, 1.25rem);
    line-height: 1.2;
    letter-spacing: 10%;
    text-transform: uppercase;
}

.bottom-drawer-text-box p {
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: 0%;
    color: #282828;
}

.knowmore-btn {
    font-weight: 500;
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: 10%;
    text-align: left;
    text-transform: uppercase;
    text-decoration: underline;
    color: #282828;
}

/* OPEN */
.bottom-drawer.active .bottom-drawer-panel {
    bottom: 0;
}

/* CLOSE BUTTON */
.bottom-drawer-close {
    background: #fff;
    border: none;
    padding: 10px 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 26px;
    color: #000;
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 10%;
    text-transform: uppercase;
}

/* SECTION */
.inner-banner {
    background: #282828;
    padding: 80px 0 0;
    color: #fff;
}

/* GRID */
.inner-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

/* LEFT */
.inner-left h1 {
    font-family: 'Playfair', serif;
    font-size: clamp(3rem, 5vw, 5rem);
    line-height: .9;
    margin: 20px 0;
    letter-spacing: -5%;
    font-weight: 500;
    text-transform: uppercase;
}

.inner-subtitle {
    color: #fff;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.3;
    letter-spacing: 0%;
    margin-top: 30px;
}

.subtitle {
    color: #fff;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    text-transform: uppercase;
}

/* BREADCRUMB */
.page-breadcrumb {
    display: flex;
    gap: 10px;
    color: #ccc;
    font-weight: 400;
    font-size: 12px;
    line-height: 1;
    letter-spacing: 0%;
    text-transform: uppercase;
    flex-wrap: wrap;
    transition: all 0.3s ease;
}

.page-breadcrumb a:hover {
    color: #fff;
}

.page-breadcrumb .active {
    color: #c8871a !important;
}

/* RIGHT IMAGE */
.inner-right {
    position: relative;
}

.inner-right img {
    object-fit: cover;
    height: 100%;
}

.inttertape-section {
    position: sticky;
    top: 0;
    z-index: 9;
}

.inttertape {
    background: #282828;
    color: #fff;
}

.inttertape ul {
    display: flex;
    list-style-type: none;
    padding: 10px 20px;
    gap: 30px;
}

.inttertape ul li {
    display: flex;
    list-style-type: none;
    align-items: center;
}

.inttertape ul li a {
    display: flex;
    align-items: center;
    padding: 8px 14px;
    position: relative;
    gap: 16px;
    font-weight: 300;
    font-size: 12px;
    line-height: 1;
    letter-spacing: 10%;
    transition: all 0.3s ease;
}

.inttertape ul li a::before {
    content: "";
    width: 5px;
    height: 5px;
    background: #fff;
    transition: all 0.3s ease;
}

.inttertape ul li:last-child a::before {
    display: none;
}

.inttertape ul li a:hover,
.inttertape ul li a.active {
    color: #CB8918;
}

.inttertape ul li a:hover::before,
.inttertape ul li a.active::before {
    background: #CB8918;
}

/* SECTION */
.snapshot {
    padding: 100px 0;
    background: #fff;
}

/* TOP TEXT */
.snapshot-top-text {
    max-width: 820px;
    margin: 0 auto;
    color: #282828;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0%;
    text-align: center;
}

/* TITLE */
.snapshot-title {
    text-align: center;
    font-size: clamp(4.5rem, 5vw, 5rem);
    margin: 40px 0 0px;
    font-weight: 500;
    line-height: .7;
    letter-spacing: -5%;
    position: relative;
}

/* GRID */
.snapshot-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 40px;
    background: #F8F8F8;
}

/* LEFT */
.snapshot-left {
    background: #F8F8F8;
    padding: 30px;
}

/* LIST */
.snapshot-list {
    list-style: none;
    padding: 0;
}

.snapshot-list li {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #E2E2E2;
    font-size: 14px;
}

.snapshot-list li span {
    position: relative;
    display: flex;
    align-items: center;
}

/* BULLET DOT */
.snapshot-list li span:first-child::before {
    content: " ";
    background: #CB8918;
    margin-right: 8px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}

/* ARROW */
.snapshot-list .arrow {
    margin: 0 10px;
    color: #aaa;
}

/* NOTE */
.snapshot-note {
    font-size: 10px;
    color: #282828;
    margin-top: 20px;
}

/* RIGHT */
.snapshot-right {
    position: relative;
}

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

/* BUTTON */
.snapshot-btn {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: #fff;
    padding: 18px 20px;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    color: #000;
    border-radius: 6px;
    font-weight: 400;
    letter-spacing: 10%;
    overflow: hidden;
    z-index: 1;
    transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ICON */
.snapshot-btn img {
    width: 22px;
    height: 25px;
    transition: all 0.35s ease;
}

/* BACKGROUND SLIDE */
.snapshot-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #000;
    transform: translateX(-100%);
    transition: transform 0.4s ease;
    z-index: -1;
}

/* HOVER */
.snapshot-btn:hover {
    color: #fff;
}

/* SLIDE IN */
.snapshot-btn:hover::before {
    transform: translateX(0);
}

/* ICON MOTION */
.snapshot-btn:hover img {
    transform: translateX(6px) scale(1.05);
    filter: brightness(0) invert(1);
}

/* SECTION */
.alchemy-why {
    background: #fff;
    padding: 30px 0;
    position: relative;
    overflow: hidden;
}

.alchemy-why-container {
    width: 90%;
    max-width: 1280px;
    margin: auto;
    position: relative;
}

/* HEADER */
.alchemy-why-header h2 {
    font-size: clamp(4.8rem, 5vw, 5rem);
    line-height: 1;
    margin-bottom: 30px;
    font-weight: 500;
    letter-spacing: -5%;
    max-width: 390px;
    width: 100%;
}

/* RIGHT DARK BG */
.alchemy-why-bg {
    position: absolute;
    top: 120px;
    right: -30%;
    width: 75%;
    height: 400px;
    background: #282828 url(../images/shap4.svg) no-repeat center;
    z-index: 0;
}

/* CARDS WRAPPER */
.alchemy-why-cards {
    display: flex;
    gap: 25px;
    margin-top: 60px;
    position: relative;
    z-index: 2;
    justify-content: flex-start;
}

/* CARD */
.alchemy-why-card {
    min-width: 260px;
    background: #F5EFEC;
    padding: 36px 25px;
    display: inline-flex;
    flex-direction: column;
    justify-content: space-between;
    height: 400px;
    width: 260px;
    transition: all 0.3s ease;
}

/* ICON */
.alchemy-why-card img {
    width: 60px;
    height: 60px;
    margin-bottom: 40px;
}

/* TEXT */
.alchemy-why-card p {
    color: #282828;
    line-height: 1.3;
    font-weight: 400;
    font-size: clamp(1.125rem, 1.4vw, 1.5rem);
    letter-spacing: 0%;
}


/* HOVER */
.alchemy-why-card:hover {
    transform: translateY(-10px);
}

/* WRAPPER */
.inttertape {
    position: relative;
}

/* DESKTOP */
.inttertape-list {
    display: flex;
    gap: 30px;
    list-style: none;
    padding: 10px 20px;
}


/* ================= MOBILE SELECT ================= */

.inttertape-select {
    display: none;
    align-items: center;
    justify-content: space-between;
    background: #1f1f1f;
    color: #d89b2b;
    padding: 16px 20px;
    font-size: 14px;
    letter-spacing: 10%;
    cursor: pointer;
}

.select-arrow img {
    width: 20px;
    transition: transform 0.3s ease;
}

/* ACTIVE */
.inttertape.active .select-arrow img {
    transform: rotate(180deg);
}

/* DROPDOWN */
.inttertape-list {
    transition: all 0.3s ease;
}

/* SECTION */
.fm-section {
    background: #fff;
    padding: 100px 0;
}

/* TITLE */
.fm-title {
    font-size: clamp(4.5rem, 5vw, 5.2rem);
    font-weight: 500;
    line-height: .58;
    letter-spacing: -5%;
    text-align: center;
    color: #282828;
}

/* WRAPPER */
.fm-wrapper {
    padding: 55px max(8vw, 60px);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    background: #F5F8FB url(../images/shapbg.png) no-repeat top center;
    background-size: cover;
}

/* CARD */
.fm-card {
    display: flex;
    gap: 30px;
    flex-direction: column;
}

/* IMAGE */
.fm-img img {
    width: 250px;
    height: 250px;
    object-fit: cover;
    background: #fff;
}

/* CONTENT */
.fmname {
    margin-bottom: 5px;
    font-weight: 400;
    font-size: clamp(1.4rem, 1.5vw, 1.5rem);
    line-height: 1;
    letter-spacing: 0%;
    color: #000;
}

.fm-role {
    color: #000;
    margin-bottom: 15px;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0%;
}

.fm-desc {
    color: #282828;
    line-height: 1.6;
    margin-bottom: 20px;
    font-family: IBM Plex Sans;
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 0%;
}

/* SOCIAL */
.fm-social {
    display: flex;
    gap: 30px;
}

.fm-social img {
    width: 28px;
    height: 28px;
}

/* SECTION */
.alchemy-request {
    padding: 80px 0;
    background: #fff;
}

/* BOX */
.alchemy-request-content {
    background: #1f1f1f;
    color: #fff;
    padding: max(5vw, 30px);
    display: flex;
    gap: 40px;
    position: relative;
    overflow: hidden;
    flex-direction: column;
    max-width: 940px;
    margin: 0 auto;
}

/* SUBTLE DOT PATTERN */
.alchemy-request-content::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.2) 4px, transparent 4px);
    background-size: 40px 40px;
    opacity: 0.4;
    z-index: 0;
}

/* CONTENT */
.alchemy-request-box {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

/* BUTTON WRAPPER */
.alchemy-request-action {
    position: relative;
    z-index: 1;
}

/* BUTTON */
.alchemy-request-btn {
    background: #fff;
    color: #000;
    padding: 14px 22px;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 1px;
    transition: all 0.35s ease;
}

.reqest-title {
    font-size: clamp(4rem, 5vw, 5rem);
    margin-bottom: 15px;
    font-weight: 700;
    line-height: .9;
    letter-spacing: -5%;
    text-transform: uppercase;
}

.reqest-subtitle {
    font-size: 16px;
    line-height: 1.53;
    letter-spacing: 0%;
    max-width: 370px;
    font-weight: 300;
}

/* ICON */
.alchemy-request-btn img {
    width: 16px;
    height: 16px;
    border-radius: 2px;
    transition: all 0.3s ease;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #CB8918;
}

/* HOVER */
.alchemy-request-btn:hover {
    background: #CB8918;
    color: #fff;
}

.alchemy-request-btn:hover img {
    transform: translate-x(4px);
    background: #000;
}

/* SECTION */
.video-slider-section {
    padding: 20px 0;
    background: #fff;
    max-width: 100vw;
    overflow-x: hidden;
}

/* SLIDER */
.video-slide {
    padding: 0 20px;
}

/* CARD */
.video-card {
    position: relative;
    flex-direction: column;
    height: 600px;
    display: flex;
    justify-content: flex-end;
}

.video-slider-img-box {
    background: #d6922d;
    height: 70%;
    position: relative;
    width: 100%;
    display: flex;
    align-items: end;
    justify-content: center;
}

/* IMAGE */
.video-slider-img {
    width: 70%;
    margin-bottom: -50px;
}

/* TITLE */
.video-slider-img-box h4 {
    position: absolute;
    top: 20px;
    left: 20px;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: 0%;
    text-transform: uppercase;
    font-size: clamp(1.2rem, 1.4vw, 1.5rem);
    color: #000;
}


/* CENTER ACTIVE EFFECT */
.slick-center .video-card {
    opacity: 1;
    transform: scale(1);
}

.video-slide.slick-slide.slick-current.slick-active .video-card {
    opacity: 1;
    transform: scale(1);
}

.video-card {
    transition: all 0.5s ease;
}

.video-slide:not(.slick-center) .video-card {
    /* transform: scale(0.9); */
    opacity: 0.5;
}

/* CONTROLS */
.video-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    margin-top: 30px;
}

.video-dots {
    margin-left: 44%;
}

/* DOTS */
.video-dots .slick-dots {
    display: flex;
    gap: 20px;
    list-style-type: none;
}

.video-dots button {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ccc;
    border: none;
    font-size: 0;
    cursor: pointer;
}

.video-dots .slick-active button {
    background: #c8871a;
}

/* NEXT BUTTON */
.video-next {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 1px solid #aaa;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
}

.video-next img {
    width: 30px;
}

.left-aligned {
    margin-left: calc((100vw - 1280px) / 2);
}

.performance-section {
    padding: 80px 0;
    background: #fff;
}

.performancegraph-block {
    background: #F8F8F8;
    background: linear-gradient(90deg, rgba(248, 248, 248, 1) 50%, rgba(245, 239, 236, 1) 50%);
}

.perf-title {
    color: #282828;
    font-weight: 500;
    font-size: clamp(4.5rem, 5vw, 5rem);
    line-height: 70px;
    letter-spacing: -5%;
}

.perf-top {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    margin-bottom: 70px;
    color: #282828;
    font-weight: 400;
    font-size: 12px;
    line-height: 1;
    letter-spacing: 0%;
}

.perf-wrapper {
    display: flex;
    gap: 40px;
    justify-content: space-between;
}

/* LEFT */
.perf-left {
    width: 400px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding-bottom: 40px;
}

.perf-chart-box {
    width: 800px;
    position: relative;
}

.perf-btn {
    display: block;
    width: 100%;
    margin-top: 15px;
    padding: 14px;
    border-radius: 6px;
    border: 1px solid #ddd;
    background: #fff;
}

.perf-btn.primary {
    background: #000;
    color: #fff;
}

.btngroup {
    display: flex;
    gap: 10px;
    flex-direction: column;
    align-items: flex-start;
}

.snapshot-btn.sm,
.btn-arrow.sm {
    position: relative;
    left: unset;
    bottom: unset;
    padding: 14px 18px;
}

.performancetext {
    max-width: 356px;
    color: #282828;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.45;
    letter-spacing: 0%;
}

/* RIGHT */
.perf-chart-box {
    background: #F5EFEC;
    padding: 40px;
    position: relative;
}

.perf-chart-box h4 {
    position: absolute;
    top: -29px;
    font-family: IBM Plex Sans;
    font-weight: 400;
    font-size: clamp(1.4rem, 1.5vw, 1.5rem);
    line-height: 100%;
    letter-spacing: 0%;
}



/* ================= RESPONSIVE ================= */
@media (min-width: 992px) {
    .footer {
        display: grid;
        grid-template-columns: 2fr 1fr;
    }

    .footer-links {
        grid-template-columns: repeat(3, 1fr);
        padding: 60px 60px 30px 0;
    }

    .footer-right {
        padding: 30px 60px;
    }

    .footer-bottom {
        grid-column: span 3;
        padding: 20px 0px 0;
        border-top: 1px solid #E5E5E5;
    }


}

@media (max-width: 992px) {
    .nav-bar {
        display: none;
    }

    .nav {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .logo {
        width: 100px;
    }

    .actionlink span {
        display: none;
    }

    .card {
        padding: 2.5vw 1.75vw;
    }

    .advantage-grid {
        grid-template-columns: 1fr;
    }

    .adv-left h2 {
        font-size: 2.5rem;
    }

    .inv-cards {
        grid-template-columns: 1fr;
        margin-top: 40px;
    }

    .inv-card {
        padding: 40px 30px;
    }

    .footer-section {
        background: linear-gradient(180deg, rgba(248, 248, 248, 1) 50%, rgba(246, 242, 240, 1) 50%);
    }

    .footer-section>.container {
        width: 100%;
    }

    .footer-bottom {
        background: rgba(248, 248, 248, 1);
    }

    .philo-cards {
        overflow-x: auto;
        padding-bottom: 30px;
        gap: 16px;
        margin-right: -10%;
        padding-right: 40px;
    }

    .philo-image-wrapper {
        display: flex;
        margin-left: 14%;
    }

    .philosophy {
        padding: 0px 0 40px;
    }

    .philo-card {
        flex-shrink: 0;
    }

    .philo-top {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

    .philo-image img {
        height: 300px;
    }

    .two-col-section {
        grid-template-columns: 1fr;
    }

    .market-card img {
        position: relative;
        width: 100%;
        height: auto;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .news-right {
        grid-template-columns: 1fr;
    }

    .lead-grid {
        grid-template-columns: 1fr;
    }

    .lead-right {
        grid-template-columns: 1fr;
    }

    .mob {
        display: block;
    }

    .desktop {
        display: none;
    }

    .bottom-drawer-panel {
        padding: 30px 0px;
    }

    .bottom-drawer-img-box {
        width: 120px;
        height: 170px;
        flex-shrink: 0;
        overflow: hidden;
    }

    .bottom-drawer-text-box p {
        font-size: 12px;
        line-height: 1.4;
    }

    .knowmore-btn {
        font-size: 12px;
    }

    .drawer-card {
        min-width: 312px;
        flex-shrink: 0;
    }

    .bottom-drawer-content {
        padding-top: 12px;
        gap: 6px;
    }

    .bottom-drawer-panel {
        height: 400px;
    }

    .inv-card h3 {
        line-height: 1;
    }

    .market-tabs {
        max-width: 90vw;
    }

    .market {
        padding: 70px 0 40px;
    }

    .news {
        padding: 50px 0;
    }

    .leadership {
        padding: 50px 0;
    }

    .watch-btn {
        top: unset;
        right: unset;
        left: 20px;
        bottom: 20px;
    }

    .inner-grid {
        grid-template-columns: 1fr;
    }

    .inner-right img {
        height: 250px;
    }

    .inner-banner {
        background: #282828;
        padding: 32px 0;
        color: #fff;
    }

    .snapshot-grid {
        grid-template-columns: 1fr;
    }

    .snapshot-right {
        height: 300px;
    }

    .snapshot-title {
        text-align: left;
        line-height: 1;
    }

    .inttertape-select {
        display: flex;
    }

    .inttertape-list {
        width: 100%;
        background: #1f1f1f;
        gap: 0 !important;
        max-height: 0;
        overflow: hidden;
        padding: 0 !important;
        flex-direction: column;
    }

    .inttertape ul li a {
        padding: 12px 14px;
    }

    .inttertape.active .inttertape-list {
        max-height: 400px;
        padding: 10px 0;
    }

    .inttertape-list li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .snapshot-left {
        background: #F8F8F8;
        padding: 12px 12px;
    }

    .snapshot-list li {
        font-size: 12px;
    }

    .fm-wrapper {
        grid-template-columns: 1fr;
        padding: 30px;
    }

    .fm-card {
        flex-direction: column;
    }

    .fm-img img {
        width: 100%;
        height: auto;
    }

    .alchemy-request-box {
        flex-direction: column;
        align-items: flex-start;
    }

    .alchemy-request-action {
        width: 100%;
    }

    .alchemy-request-btn {
        width: 100%;
        justify-content: space-between;
    }

    .left-aligned {
        margin-left: 0;
    }


}

@media (max-width: 768px) {
    .actions {
        gap: 10px;
    }

    .actionlink {
        padding: 10px 10px;
    }

    .heading1.adv {
        margin-bottom: 20px;
    }

    .slider-arrows {
        display: none;
    }

    .card {
        padding: 24px 20px;
    }

    .card .icon {
        margin-bottom: 0;
    }

    .inv-footer-wrapper {
        max-width: 100%;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

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

    .contact-box {
        padding: 0;
        border: none;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-bottom {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

    .bottom-drawer-content {
        overflow-x: auto;
        padding-bottom: 30px;
    }

    .investment {
        background: #fff;
        padding: 100px 0 80px;
    }

    .contact h2 {
        margin-bottom: 30px;
    }

    .alchemy-why-bg {
        display: none;
    }

    .alchemy-why-cards {
        overflow-x: auto;
        padding-bottom: 20px;
    }

    .alchemy-why-cards::-webkit-scrollbar {
        display: none;
    }

    .alchemy-why-card {
        flex: 0 0 260px;
    }

    .side-drawer {
        width: 100%;
    }

    .alchemy-why-bg {
        top: 184px;
        right: -10%;
        width: 90%;
    }

    .alchemy-why-cards {
        gap: 15px;
        margin-right: -10%;
        padding-right: 40px;
        padding-bottom: 30px;
    }

    .snapshot-grid {
        grid-template-columns: 1fr;
        padding: 0 16px;
    }

    .snapshot-btn {
        padding: 12px 14px;
        font-size: 12px;
    }

    .snapshot {
        padding: 30px 0;
    }

    .reqest-title {
        margin-bottom: 0;
    }

    .video-card {
        height: 400px;
    }

    .video-slider-img {
        width: min(100%, 360px);
        margin-bottom: -16px;
    }

    .video-slider-img-box h4 {
        max-width: 220px;
    }

    .perf-wrapper {
        flex-direction: column;
    }

    .performancegraph-block {
        background: #F8F8F8;
    }

    .perf-left {
        width: 100%;
        gap: 15px;
    }

    .perf-chart-box {
        width: unset;
        padding: 10px;
        margin-inline: -4%;
    }

    .video-dots {
        margin-left: 0;
    }

    .video-next {
        display: none;
    }

    .perf-top {
        flex-direction: column;
        gap: 20px;
    }

    .ddt {
        display: none;
    }

    #performanceChart {
        height: 320px;
    }

    .perf-icon {
        width: 40px;
    }

    .performance-section {
        padding: 0px 0;
        background: #fff;
    }
}