/* =========================================================
   RESET
========================================================= */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
}

/* =========================================================
   VARIABLES
========================================================= */
:root {
    --gold: #c9a04d;
    --gold-dark: #b8903f;
    --text-dark: #1c1c1c;
    --white: #ffffff;
}

body {
    font-family: var(--font-sans);
    color: var(--text-dark);
}

@font-face {
    font-family: "CarltonFont";
    src: url("../font/KokilaRegular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* =========================================================
   DESKTOP — CARLTON HERO
========================================================= */
.carlton-hero {
    position: relative;
    width: 100%;
    height: 990px;
    max-height: 100vh;
    background-image: url("../images/hero-bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center bottom;
}

/* ---------- Logo ---------- */
.carlton-logo {
    position: absolute;
    top: 25px;
    left: 230px;
    width: 120px;
    height: auto;
}

/* ---------- Content block ---------- */
.carlton-content {
    position: absolute;
    top: 58px;
    right: 190px;
    width: 780px;
    max-width: 46%;
    text-align: right;
}

.carlton-eyebrow {
    font-family: "Poppins";
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-dark);
    margin-bottom: 22px;
}

.carlton-title {
    font-family: "CarltonFont";
    font-size: clamp(52px, 1vw, 72px);
    line-height: 80%;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px;
}

.carlton-cta {
    display: inline-block;
    background: var(--gold);
    color: var(--white);
    font-family: "Poppins";
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 9px 14px;
    border-radius: 40px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
    transition: opacity 0.2s ease;
}

.carlton-cta:hover {
    opacity: 0.9;
}

/* =========================================================
   TABLET
========================================================= */
@media (max-width: 1024px) {
    .carlton-hero {
        height: 900px;
        background-position: 65% top;
    }

    .carlton-logo {
        top: 36px;
        left: 40px;
        width: 140px;
    }

    .carlton-content {
        top: 110px;
        right: 40px;
        width: auto;
        max-width: 60%;
    }

    .carlton-eyebrow {
        font-size: 16px;
        letter-spacing: 2px;
        margin-bottom: 16px;
    }

    .carlton-title {
        font-size: clamp(30px, 5vw, 52px);
        margin-bottom: 28px;
    }

    .carlton-cta {
        font-size: 14px;
        padding: 16px 34px;
    }
}

/* =========================================================
   MOBILE
========================================================= */
@media (max-width: 768px) {
    .carlton-hero {
        height: auto;
        min-height: 100svh;
        max-height: none;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        padding: 28px 24px 48px;
        background-position: 68% top;
    }

    .carlton-logo {
        position: static;
        width: 110px;
        margin-bottom: 32px;
    }

    .carlton-content {
        position: static;
        width: 100%;
        max-width: 100%;
        text-align: left;
        margin-top: auto;
    }

    .carlton-eyebrow {
        font-size: 14px;
        letter-spacing: 1.5px;
        margin-bottom: 14px;
    }

    .carlton-title {
        font-size: clamp(28px, 7vw, 42px);
        line-height: 1.22;
        margin-bottom: 26px;
    }

    .carlton-cta {
        display: block;
        width: 100%;
        text-align: center;
        font-size: 13px;
        letter-spacing: 1px;
        padding: 16px 20px;
    }
}

/* =========================================================
   SMALL MOBILE
========================================================= */
@media (max-width: 480px) {
    .carlton-hero {
        padding: 22px 18px 40px;
        background-position: 70% top;
    }

    .carlton-logo {
        width: 90px;
        margin-bottom: 24px;
    }

    .carlton-eyebrow {
        font-size: 12px;
    }

    .carlton-title {
        font-size: clamp(24px, 8vw, 34px);
        margin-bottom: 20px;
    }

    .carlton-cta {
        font-size: 12px;
        padding: 14px 16px;
    }
}

.location-section {
    position: relative;
    width: 100%;
    max-width: 100%;
    min-height: 400px;
    font-family: var(--font-sans);
}
 
/* =========================================================
   3. BACKGROUND HANDLING
   (background image already contains the cream color,
   sunburst pattern, person image and blending — do not
   recreate any of it here)
========================================================= */
.location-section {
    position: relative;
    background-image: url("../images/hero2-bg.jpg");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 140% auto;
    background-color: var(--cream);
}

/* CONTENT */
.location-content {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    padding: 55px 60px 65px;
}

/* FEATURE GRID */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 29px;
    row-gap: 30px;
    width: 100%;
    max-width: 800px;
}

/* FEATURE ITEM */
.feature-item {
    display: flex;
    align-items: center;
    gap: 18px;
}

/* ICON */
.feature-icon {
    flex: 0 0 auto;
    width: 55px;
    height: 55px;
    background: var(--white);
    border: 1px solid var(--gold-border);
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

/* TEXT */
.feature-text {
    display: flex;
    flex-direction: column;
    color: var(--gold-dark);
    font-size: 15px;
    font-weight: 100;
    line-height: 1.2;
    font-family:"Poppins";
}

.feature-text span {
    white-space: nowrap;
}

/* GOLD LINE */
.bottom-gold-line {
    position: absolute;
    left: 50%;
    bottom: 173px;
    transform: translateX(-50%);
    width: 75%;
    height: 10px;
    background: var(--gold);
}
 
/* =========================================================
   7. ICON CONTAINER
========================================================= */
.feature-icon {
    flex: 0 0 auto;
    width: 55px;
    height: 55px;
    background: var(--white);
    border: 1px solid var(--gold-border);
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
}
 
.feature-icon img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}
 
/* =========================================================
   TYPOGRAPHY (feature text)
========================================================= */
.feature-text {
    display: flex;
    flex-direction: column;
    color: var(--gold-dark);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.2;
}
 
.feature-text span {
    white-space: nowrap;
}
 
/* =========================================================
   8. BOTTOM GOLD LINE
========================================================= */
.bottom-gold-line {
    position: absolute;
    left: 50%;
    bottom: -2%;
    transform: translateX(-50%);
    width: 75%;
    max-width: 100%;
    height: 10px;
    background: var(--gold);
    z-index: 5;
}
 
/* =========================================================
   MOBILE FEATURES SECTION — scoped variables
   Own local variable names (mfs-*) so nothing here can
   collide with the existing desktop .location-section
   variables (--gold, --cream, --white, --gold-border, etc).
========================================================= */
.mobile-features-section {
    --mfs-gold: #b18a27;
    --mfs-gold-border: #e6d3a6;
    --mfs-cream: #fff3e3;
    --mfs-white: #ffffff;
    --mfs-font-sans: "Montserrat", "Segoe UI", Arial, sans-serif;
}

/* =========================================================
   SECTION — hidden by default, shown only on mobile below

   Background image (./images/mobile-3.jpg) is 384x967 in its
   source form: the portrait occupies roughly the top third,
   already fading naturally into the cream/sunburst pattern
   that fills the rest of the image. background-size: 100% auto
   keeps that ratio locked to the viewport width instead of
   cropping the sides the way `cover` would on wider phones.

   padding-top is expressed as a % of the section's own width
   (percentage padding is always resolved against the
   containing block's width) so the feature list's starting
   position scales in lockstep with the background image
   across 320px–430px viewports.
========================================================= */
.mobile-features-section {
    display: none;
    position: relative;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 84% 0 40px;

    background-image: url("../images/mobile-3.jpg");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 100% auto;
    background-color: var(--mfs-cream);

    font-family: var(--mfs-font-sans);
    overflow-x: hidden;
}

.mobile-features-section *,
.mobile-features-section *::before,
.mobile-features-section *::after {
    box-sizing: border-box;
}

/* =========================================================
   FEATURE LIST
========================================================= */
.mobile-features-section__list {
    width: calc(100% - 36px);
    max-width: 360px;
    margin: 8px auto 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* =========================================================
   FEATURE ITEM
========================================================= */
.mobile-features-section__item {
    display: flex;
    align-items: center;
    gap: 14px;
}

/* =========================================================
   ICON CONTAINER
========================================================= */
.mobile-features-section__icon {
    flex: 0 0 auto;
    width: clamp(40px, 11vw, 45px);
    height: clamp(40px, 11vw, 45px);
    background: var(--mfs-white);
    border: 1px solid var(--mfs-gold-border);
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-features-section__icon img {
    width: 52%;
    height: 52%;
    object-fit: contain;
}

/* =========================================================
   FEATURE TEXT
========================================================= */
.mobile-features-section__text {
    display: flex;
    flex-direction: column;
    color: var(--mfs-gold);
    font-family: var(--mfs-font-sans);
    font-size: clamp(11px, 3.1vw, 13px);
    font-weight: 600;
    line-height: 1.15;
    text-align: left;
}

/* =========================================================
   ACTIVATE ONLY ON MOBILE
========================================================= */
@media (max-width: 767px) {

    .location-section{
        display: none;
    }
    .mobile-features-section {
        display: block;
        background-size: 60% auto;
    }
        .mobile-features-section__icon {
        border-radius: 8px;
        width: 50px;
        height: 50px;
    }
    .mobile-features-section__text{
        font-size: clamp(11px, 5.1vw, 20px);
    }
    .mobile-features-section__list{
        width: calc(100% - 110px);
        gap: 15px;
    }
}

/* =========================================================
   SMALL MOBILE — down to 320px
========================================================= */
@media (max-width: 390px) {
    .mobile-features-section__list {
        width: calc(100% - 90px);
        gap: 12px;
    }


}

/* =========================================================
   PROCESS SECTION — scoped variables
========================================================= */
.process-section {
    --process-gold: #c99f3d;
    --process-gold-dark: #b8903f;
    --process-card-bg: #fafafa;
    --process-text-dark: #111111;
    --process-font-serif: Georgia, "Times New Roman", serif;
    --process-font-sans: "Montserrat", "Segoe UI", Arial, sans-serif;
}

/* =========================================================
   SECTION
========================================================= */
.process-section {
    position: relative;
    width: 90%;
    max-width: 1100px;
    min-height: 362px;
    background: #ffffff;
    padding: 40px 20px 0px;
    font-family: var(--process-font-sans);
    overflow-x: hidden;
    margin:0 auto;
}

.process-inner {
    width: 100%;
    max-width: 1360px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* =========================================================
   LABEL PILL
========================================================= */
.process-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 365px;
    max-width: 100%;
    height: 44px;
    background: var(--process-gold);
    color: #ffffff;
    font-family: var(--process-font-sans);
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 25px;
}

/* =========================================================
   MAIN HEADING
========================================================= */
.process-title {
    margin: 30px 0 0;
    font-family: "CarltonFont";
    font-size: clamp(32px, 3.4vw, 56px);
    line-height: 1.05;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--process-gold);
}

/* =========================================================
   SUBTITLE
========================================================= */
.process-subtitle {
    margin: 24px 0 0;
    max-width: 500px;
    font-family: "Poppins";
    font-size: 15px;
    line-height: 1.4;
    font-weight: 400;
    color: var(--process-text-dark);
}

/* =========================================================
   CARDS ROW
========================================================= */
.process-cards {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    width: 100%;
    max-width: 1300px;
    margin: 45px auto 0;
}

/* =========================================================
   CARD
========================================================= */
.process-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 242px;
    min-height: 300px;
    margin: 0 auto;
    padding: 37px 18px 28px;
    background: var(--process-card-bg);
    border-radius: 10px;
}

/* =========================================================
   ICON BOX
========================================================= */
.process-icon-box {
    flex: 0 0 auto;
    width: 105px;
    height: 105px;
    border: 2px dashed var(--process-gold);
    border-radius: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-icon-box img {
    max-width: 50px;
    max-height: 50px;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* =========================================================
   CARD HEADING
========================================================= */
.process-card-title {
    margin: 20px 0 0;
    font-family: "CarltonFont";
    font-size: 20px;
    font-weight: 400;
    color: var(--process-gold);
    text-align: center;
}

/* =========================================================
   CARD DESCRIPTION
========================================================= */
.process-card-desc {
    margin: 14px 0 0;
    max-width: 190px;
    font-family:"Poppins";
    font-size: 12px;
    line-height: 1.2;
    font-weight: 400;
    color: var(--process-text-dark);
    text-align: center;
}

/* =========================================================
   BOTTOM GOLD LINE
========================================================= */
.process-bottom-line {
    width: 76%;
    max-width: 100%;
    height: 9px;
    margin: 80px auto 0;
    background: var(--process-gold);
}

/* =========================================================
   TABLET — 768px to 1199px
==/* =========================================================
   MOBILE PROCESS SECTION — scoped variables
   Own local variable names (mps-*) so nothing here can
   collide with the existing desktop .process-section
   variables (--process-gold, --process-card-bg, etc).
========================================================= */
.mobile-process-section {
    --mps-gold: #c99f3d;
    --mps-card-bg: #fafafa;
    --mps-text-dark: #6b6b6b;
    --mps-white: #ffffff;
    --mps-font-serif: Georgia, "Times New Roman", serif;
    --mps-font-sans: "Montserrat", "Segoe UI", Arial, sans-serif;
}

/* =========================================================
   SECTION — hidden by default, shown only on mobile below
========================================================= */
.mobile-process-section {
    display: none;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 30px 20px 44px;
    background: #ffffff;
    text-align: center;
    font-family: var(--mps-font-sans);
    overflow-x: hidden;
}

.mobile-process-section *,
.mobile-process-section *::before,
.mobile-process-section *::after {
    box-sizing: border-box;
}

/* =========================================================
   TOP PILL
========================================================= */
.mobile-process-section__label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 3% 18%;
    /* height: 76%; */
    background: var(--mps-gold);
    color: #ffffff;
    font-size: 3vh;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    border-radius: 90px;
}

/* =========================================================
   HEADING
========================================================= */
.mobile-process-section__heading {
    margin: 12px auto 0;
    max-width: 295px;
    font-family: var(--mps-font-serif);
    font-size: 2.9vh;
    line-height: 1.15;
    font-weight: 400;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    color: var(--mps-gold);
}

/* =========================================================
   TIMELINE
========================================================= */
/* .mobile-process-section__timeline {
    position: relative;
    max-width: 320px;
    margin: 26px auto 0;
    text-align: left;
} */

.mobile-process-section__timeline {
    position: relative;
    width: 100%;
    max-width: 320px;
    margin: 26px auto 0;
    text-align: left;
}

/* continuous vertical gold line running behind all nodes */
.mobile-process-section__timeline::before {
    content: "";
    position: absolute;
    top: 99px;
    bottom: 159px;
    left: 24.6%;
    width: 2px;
    background: var(--mps-gold);
    z-index: 0;
}

/* =========================================================
   STEP ROW (node column + card)
========================================================= */
/* .mobile-process-section__step {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
} */

.mobile-process-section__step {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;

    /* Center the whole row */
    justify-content: center;
}


/* small downward chevron between stages, sitting on the line */
.mobile-process-section__step:not(.mobile-process-section__step--last)::after {
    content: "";
    position: absolute;
    left: 24%;
    bottom: 6px;
    width: 6px;
    height: 6px;
    border-right: 1.5px solid var(--mps-gold);
    border-bottom: 1.5px solid var(--mps-gold);
    transform: rotate(45deg);
    z-index: 1;
}

/* =========================================================
   TIMELINE NODE
========================================================= */
/* .mobile-process-section__node-col {
    position: relative;
    z-index: 1;
    flex: 0 0 auto;
    width: 22px;
    display: flex;
    justify-content: center;
    padding-top: 14px;
} */


.mobile-process-section__node-col {
    position: relative;
    z-index: 1;
    flex: 0 0 22px;
    width: 22px;
    display: flex;
    justify-content: center;
    padding-top: 14px;
}


.mobile-process-section__node {
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: var(--mps-gold);
    display: block;
    position: relative;
    top: 75px;
}

/* =========================================================
   CARD
========================================================= */
/* .mobile-process-section__card {
    flex: 1 1 auto;
    max-width: 105px;
    min-height: 96px;
    background: var(--mps-card-bg);
    border-radius: 11px;
    padding: 10px 8px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
} */

.mobile-process-section__card {
    flex: 0 0 105px;
    width: 105px;
    max-width: 105px;
    min-height: 96px;
    background: var(--mps-card-bg);
    border-radius: 11px;
    padding: 10px 8px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* =========================================================
   ICON BOX
========================================================= */
.mobile-process-section__icon {
    width: clamp(60px, 10vw, 42px);
    height: clamp(60px, 10vw, 42px);
    border: 1.5px dashed var(--mps-gold);
    border-radius: 8px;
    background: var(--mps-white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-process-section__icon img {
    max-width: 35px;
    max-height: 35px;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* =========================================================
   TITLE
========================================================= */
.mobile-process-section__title {
    margin: 8px 0 0;
    font-family: var(--mps-font-serif);
    font-size: 1.5vh;
    font-weight: 400;
    color: var(--mps-gold);
    line-height: 1.15;
}

/* =========================================================
   DESCRIPTION
========================================================= */
.mobile-process-section__description {
    margin: 5px 0 0;
    font-family: "Poppins";
    font-size: 1vh;
    line-height: 1.25;
    color: var(--mps-text-dark);
}


.mobile-process-section__step--last {
    margin-bottom: 0;
}

/* =========================================================
   ACTIVATE ONLY ON MOBILE
========================================================= */
@media (max-width: 767px) {
    .process-section{
        display: none;
    }
    .mobile-process-section {
        display: block;
    }
}

/* =========================================================
   MOBILE — WIDER PROCESS CARDS
========================================================= */
@media (max-width: 767px) {

    .mobile-process-section__card {
        flex: 0 0 150px;
        width: 150px;
        max-width: 150px;

        min-height: 120px;

        padding: 20px 12px 20px;
    }

    .mobile-process-section__icon {
        width: 85px;
        height: 85px;
    }

    .mobile-process-section__icon img {
        max-width:71px;
        max-height: 50px;
    }

    .mobile-process-section__title {
        margin-top: 9px;
        font-size: 22px;
        line-height: 1.15;
    }

    .mobile-process-section__description {
        margin-top: 6px;
        font-size: 14px;
        line-height: 1.3;
    }
}

/* =========================================================
   INVESTMENT SECTION — scoped variables
========================================================= */
.investment-section {
    --inv-gold: #c99f3d;
    --inv-gold-card: #a3822f;
    --inv-dark: #1a1a1a;
    --inv-text-gray: #333333;
    --inv-font-serif: Georgia, "Times New Roman", serif;
    --inv-font-sans: "Montserrat", "Segoe UI", Arial, sans-serif;
}

/* =========================================================
   SECTION
========================================================= */
.investment-section {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 60px 20px 30px;
    background: #ffffff;
    font-family: var(--inv-font-sans);
    overflow-x: hidden;
}

.investment-section *,
.investment-section *::before,
.investment-section *::after {
    box-sizing: border-box;
}

.investment-inner {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
}

/* =========================================================
   MAIN VISUAL CARD (background image + text)
========================================================= */
.investment-visual {
    position: relative;
    width: 100%;
    min-height: 340px;
    border-radius: 28px;
    overflow: hidden;
    background-image: url("../images/r.png");
    background-repeat: no-repeat;
    background-position: right center;
    background-size: cover;
}

.investment-visual-text {
    position: relative;
    z-index: 1;
    max-width: 55%;
    padding: 48px 40px 48px 48px;
}

.investment-heading {
    margin: 0;
    font-family: "CarltonFont";
    font-size: clamp(24px, 2vw, 34px);
    line-height: 1.3;
    font-weight: 400;
    color: var(--inv-dark);
}

.investment-amount {
    margin: 18px 0 0;
    font-family: Times, "Times New Roman", serif;
    font-size: clamp(40px, 5vw, 68px);
    line-height: 1;
    font-weight: 600;
    color: var(--inv-gold);
}

/* =========================================================
   OVERLAPPING STAT CARDS
========================================================= */
.investment-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    width: 92%;
    max-width: 1240px;
    margin: -55px auto 0;
    position: relative;
    z-index: 2;
}

.investment-card {
    display: flex;
    align-items: center;
    gap: 18px;
    flex: 1 1 300px;
    max-width: 400px;
    min-height: 112px;
    padding: 18px 26px;
    background: var(--inv-gold-card);
    border-radius: 18px;
}

.investment-card-icon {
    flex: 0 0 auto;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.investment-card-icon img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.investment-card-text {
    display: flex;
    flex-direction: column;
}

.investment-card-value {
    margin: 0;
    font-family: var(--inv-font-serif);
    font-size: 28px;
    line-height: 1.15;
    font-weight: 400;
    color: #ffffff;
}

.investment-card-label {
    margin: 4px 0 0;
    font-family: var(--inv-font-sans);
    font-size: 14px;
    line-height: 1.3;
    font-weight: 400;
    color: #ffffff;
}

/* =========================================================
   BOTTOM HEADING
========================================================= */
.investment-bottom {
    text-align: center;
    margin-top: 40px;
}

.investment-bottom-title {
    margin: 0;
    font-family: "CarltonFont";
    text-transform: uppercase;
    font-size: clamp(22px, 2.4vw, 34px);
    line-height: 1.3;
    font-weight: 400;
}



.investment-bottom-title .is-gold {
    color: var(--inv-gold);
}

.investment-bottom-title .is-dark {
    color: #a8842c;
    font-weight: 600;
}

.investment-bottom-desc {
    margin: 10px 0 0;
    font-family: "Poppins";
    font-size: 13px;
    line-height: 1.5;
    color: var(--inv-text-gray);
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
}

/* =========================================================
   TABLET — 768px to 1023px
========================================================= */
@media (max-width: 1023px) {
    .investment-visual {
        min-height: 280px;
        border-radius: 22px;
    }

    .investment-visual-text {
        max-width: 65%;
        padding: 36px 28px;
    }

    .investment-cards {
        margin-top: -42px;
        gap: 18px;
    }

    .investment-card {
        flex: 1 1 260px;
        min-height: 96px;
        padding: 14px 20px;
    }

    .investment-card-icon {
        width: 52px;
        height: 52px;
    }

    .investment-card-value {
        font-size: 24px;
    }

    .investment-bottom {
        margin-top: 56px;
    }
}

/* =========================================================
   MOBILE INVESTMENT SECTION — scoped variables
   Own local variable names (mis-*) so nothing here can
   collide with the existing desktop .investment-section
   variables (--inv-gold, --inv-dark, etc).
========================================================= */
.mobile-investment-section {
    --mis-gold: #b18a27;
    --mis-gold-card: #a3822f;
    --mis-dark: #1a1a1a;
    --mis-text-gray: #6b6b6b;
    --mis-font-serif: Georgia, "Times New Roman", serif;
    --mis-font-sans: "Montserrat", "Segoe UI", Arial, sans-serif;
}

/* =========================================================
   SECTION — hidden by default, shown only on mobile below
========================================================= */
.mobile-investment-section {
    display: none;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0 18px 40px;
    background: #ffffff;
    font-family: var(--mis-font-sans);
    overflow-x: hidden;
}

.mobile-investment-section *,
.mobile-investment-section *::before,
.mobile-investment-section *::after {
    box-sizing: border-box;
}

/* =========================================================
   VISUAL (background image + heading + amount badge)
   Supplied image is 314x676 — background-size: 100% auto
   keeps that ratio locked to the viewport width instead of
   cropping the sides the way `cover` would.
========================================================= */
.mobile-investment-section__visual {
    position: relative;
    width: calc(100% + 36px);
    margin: 0 -18px;
    padding: 34px 24px 0;
    min-height: 260px;
    aspect-ratio: 314 / 676;

    background-image: url("../images/mobile-5.png");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 100% auto;

    text-align: center;
}

.mobile-investment-section__heading {
    margin: 0;
    font-family: var(--mis-font-serif);
    font-size: clamp(18px, 5.6vw, 22px);
    line-height: 1.3;
    font-weight: 400;
    color: var(--mis-dark);
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.mobile-investment-section__amount {
    display: inline-block;
    margin: 16px 0 0;
    padding: 8px 22px;
    background: var(--mis-gold);
    border-radius: 30px;
    font-family: var(--mis-font-serif);
    font-size: clamp(20px, 6vw, 26px);
    line-height: 1;
    font-weight: 400;
    color: #ffffff;
}

/* =========================================================
   STAT CARDS — full-width, stacked
========================================================= */
.mobile-investment-section__cards {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 18px;
}

.mobile-investment-section__card {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    min-height: 68px;
    padding: 12px 18px;
    background: var(--mis-gold-card);
    border-radius: 14px;
}

.mobile-investment-section__card-icon {
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-investment-section__card-icon img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.mobile-investment-section__card-text {
    display: flex;
    flex-direction: column;
}

.mobile-investment-section__card-value {
    margin: 0;
    font-family: var(--mis-font-serif);
    font-size: 30px;
    line-height: 1.15;
    font-weight: 400;
    color: #ffffff;
}

.mobile-investment-section__card-label {
    margin: 3px 0 0;
    font-family: var(--mis-font-sans);
    font-size: 15px;
    line-height: 1.3;
    font-weight: 400;
    color: #ffffff;
}

/* =========================================================
   BOTTOM HEADING
========================================================= */
.mobile-investment-section__bottom {
    text-align: center;
    margin-top: 30px;
}

.mobile-investment-section__bottom-title {
    margin: 0;
    font-family: var(--mis-font-serif);
    text-transform: uppercase;
    font-size: clamp(18px, 5.5vw, 22px);
    line-height: 1.3;
    font-weight: 400;
}

.mobile-investment-section__is-gold {
    color: var(--mis-gold);
}

.mobile-investment-section__is-dark {
    color: #a8842c;
    font-weight: 600;
}

.mobile-investment-section__bottom-desc {
    margin: 10px 0 0;
    font-family: "Poppins";
    font-size: 12px;
    line-height: 1.3;
    color: var(--mis-text-gray);
}

/* =========================================================
   ACTIVATE ONLY ON MOBILE
========================================================= */
@media (max-width: 767px) {
    .investment-section{
        display: none;
    }
    .mobile-investment-section {
        display: block;
        padding: 0px 49px 40px;
    }
    .mobile-investment-section__heading{
        font-size: clamp(18px, 10.6vw, 31px);
    }
    .mobile-investment-section__amount{
            display: inline-block;
    margin: 16px 0 0;
    padding: 17px 45px;
    background: var(--mis-gold);
    border-radius: 10px;
    font-family: "CarltonFont";
    font-size: clamp(20px, 10vw, 41px);
    }
}

/* =========================================================
   SMALL MOBILE — down to 320px
========================================================= */
@media (max-width: 340px) {
    .mobile-investment-section {
        padding-left: 14px;
        padding-right: 14px;
    }

    .mobile-investment-section__visual {
        width: calc(100% + 28px);
        margin: 0 -14px;
        padding: 26px 18px 0;
    }

    .mobile-investment-section__card {
        padding: 10px 14px;
    }
}

/* =========================================================
   ECOSYSTEM SECTION — scoped variables
========================================================= */
.ecosystem-section {
    --eco-gold-bg: #b18a27;
    --eco-gold-text: #b18a27;
    --eco-card-bg: #fff3e3;
    --eco-white: #fffdf8;
    --eco-font-serif: Georgia, "Times New Roman", serif;
    --eco-font-sans: Arial, Helvetica, sans-serif;
}

/* =========================================================
   SECTION WRAPPER
   (position: relative + no overflow-hidden so cards can
   visually protrude into the next section)
========================================================= */
.ecosystem-section {
    position: relative;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    font-family: var(--eco-font-sans);
}

.ecosystem-section *,
.ecosystem-section *::before,
.ecosystem-section *::after {
    box-sizing: border-box;
}

/* =========================================================
   GOLD/BROWN TOP AREA
========================================================= */
.ecosystem-gold-area {
    width: 100%;
    background: var(--eco-gold-bg);
    padding: 40px 24px 260px;
    text-align: center;
}

.ecosystem-heading {
    margin: 0;
    font-family: "CarltonFont";
    font-size: clamp(28px, 3vw, 56px);
    line-height: 1.15;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--eco-white);
}

.ecosystem-subtitle {
    margin: 22px auto 0;
    max-width: 1080px;
    font-family: "Poppins";
    font-size: 19px;
    line-height: 1.45;
    letter-spacing: 0.2px;
    color: var(--eco-white);
}

/* =========================================================
   CARDS ROW — pulled up over the gold area, protrudes
   below it into whatever section follows in the DOM
========================================================= */
.ecosystem-cards {
    position: relative;
    z-index: 5;
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 10px;
    max-width: 1440px;
    margin: -320px auto 0;
    padding: 0 24px;
    top: 100px;
}

/* =========================================================
   CARD
========================================================= */
.ecosystem-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 217px;
    min-height: 322px;
    padding: 30px 20px 0px;
    background: var(--eco-card-bg);
    border-bottom: 4px solid var(--eco-gold-text);
}

/* =========================================================
   ICON
========================================================= */
.ecosystem-icon {
    width: 50px;
    height: 50px;
    color: var(--eco-gold-text);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ecosystem-icon svg {
    width: 100%;
    height: 100%;
}

/* =========================================================
   CARD TITLE
========================================================= */
.ecosystem-card-title {
    margin: 20px 0 0;
    height: 40%;
    font-family: CarltonFont;
    font-size: 41px;
    line-height: 0.9;
    font-weight: 400;
    color: var(--eco-gold-text);
    text-align: center;
}

/* =========================================================
   CARD DESCRIPTION
========================================================= */
.ecosystem-card-desc {
    margin: 22px 0 0;
    font-family: "Poppins";
    font-size: 14px;
    line-height: 1.2;
    color: var(--eco-gold-text);
    text-align: center;
    height: 100%;

}

/* =========================================================
   ECOSYSTEM SECTION — MOBILE OVERRIDES
   Uses the exact same HTML/classes already shown above.
   Everything here is wrapped in the mobile breakpoint, so
   none of it touches the existing desktop rules — it only
   adds overrides that apply below 768px.
========================================================= */
@media (max-width: 767px) {

    .ecosystem-cards {
        display: flex;
        flex-wrap: nowrap;
        justify-content: flex-start;

        width: 100%;
        overflow-x: auto;
        overflow-y: hidden;

        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;

        gap: 14px;

        margin-top: -212px;

        padding-left: 12vw;
        padding-right: 12vw;
        padding-bottom: 10px;

        /* Important */
        box-sizing: border-box;
    }

    .ecosystem-cards::-webkit-scrollbar {
        display: none;
    }

    .ecosystem-card {
        flex: 0 0 76vw;
        width: 76vw;
        max-width: 300px;
        min-width: 76vw;

        scroll-snap-align: center;
        scroll-snap-stop: always;

        min-height: 300px;
        box-sizing: border-box;
    }
    .ecosystem-icon{
        width: 60px;
        height: 60px;
    }
    .ecosystem-card-desc{
        font-size: 18px;
    }
}

/* =========================================================
   SMALL MOBILE — down to 320px
========================================================= */
@media (max-width: 360px) {

    .ecosystem-gold-area {
        padding: 40px 30px 130px;
    }

    .ecosystem-cards {
        margin-top: -182px;
        padding-left: 8vw;
        padding-right: 8vw;
    }

    .ecosystem-card {
        flex-basis: 82vw;
        min-height: 270px;
        padding: 24px 16px 22px;
    }

    .ecosystem-card-title {
        font-size: 31px;
      
    }
}

/* =========================================================
   INVESTOR SECTION — scoped variables
========================================================= */
.investor-section {
    --inv-gold: #b18a27;
    --inv-gold-dark: #96721e;
    --inv-cream: #fff3e3;
    --inv-text: #1d1d1d;
    --inv-placeholder: #777777;
    --inv-white: #ffffff;
}

/* =========================================================
   SECTION
========================================================= */
.investor-section {
    position: relative;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 14% 7% 7%;
    font-family: var(--inv-font-sans);

    background-image: url("../images/contact-bg.jpeg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.investor-section *,
.investor-section *::before,
.investor-section *::after {
    box-sizing: border-box;
}

.investor-container {
    width: 100%;
    max-width: 1250px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

/* =========================================================
   LEFT CONTENT
========================================================= */
.investor-content {
    flex: 1 1 45%;
    max-width: 560px;
    padding-top: 30px;
}

.investor-heading {
    margin: 0;
    font-family: "CarltonFont";
    font-size: clamp(34px, 3.4vw, 56px);
    line-height: 1.02;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--inv-gold);
}

.investor-description {
    margin: 34px 0 0;
    max-width: 490px;
    font-family: "Poppins";
    font-size: 17px;
    line-height: 1.45;
    font-weight: 400;
    color: var(--inv-text);
}

/* =========================================================
   RIGHT FORM CARD
========================================================= */
.investor-form-card {
    flex: 1 1 55%;
    max-width: 553px;
    width: 100%;
    box-sizing: border-box;
    background: var(--inv-cream);
    border: 1px solid var(--inv-gold);
    border-radius: 2px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.investor-form-heading {
    margin: 0;
    font-family: "CarltonFont";
    font-size: clamp(28px, 5.6vw, 43px);
    line-height: 0.8;
    font-weight: 400;
    color: var(--inv-gold);
    text-transform: uppercase;
}

.investor-form-intro {
    margin: 5px 0 0;
    font-family: var(--inv-font-sans);
    font-size: 14px;
    line-height: 1.4;
    color: var(--inv-text);
    letter-spacing: 1px;
    width: 62%;
}

/* =========================================================
   FORM
========================================================= */
.investor-form {
    margin-top: 22px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.investor-visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.investor-field {
    width: 100%;
}

.investor-field input {
    width: 100%;
    height: 51px;
    padding: 0 22px;
    background: var(--inv-white);
    border: 1px solid rgba(177, 138, 39, 0.25);
    border-radius: 2px;
    font-family: "Poppins";
    font-size: 13px;
    color: var(--inv-text);
    outline: none;
}

.investor-field input::placeholder {
    color: var(--inv-placeholder);
    font-family: "Poppins";
}

.investor-field input:focus {
    border-color: var(--inv-gold);
}

/* =========================================================
   BUTTON
========================================================= */
.investor-submit {
    margin-top: 0px;
    width: 100%;
    height: 55px;
    background: var(--inv-gold);
    color: var(--inv-white);
    border: none;
    border-radius: 2px;
    font-family: "Poppins";
    font-size: clamp(18px, 1.6vw, 24px);
    font-weight: 500;
    letter-spacing: 0.3px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.investor-submit:hover {
    background: var(--inv-gold-dark);
}

/* =========================================================
   TABLET — 768px to 1199px
========================================================= */
@media (max-width: 1199px) {
    .investor-section {
        padding: 70px 24px;
    }

    .investor-container {
        gap: 32px;
    }

    .investor-content {
        padding-top: 10px;
    }

    .investor-form-card {
        padding: 44px;
    }

    .investor-field input {
        height: 56px;
        font-size: 16px;
    }

    .investor-submit {
        height: 66px;
    }
}

@media (max-width: 900px) {
    .investor-container {
        flex-direction: column;
        align-items: stretch;
    }

    .investor-content,
    .investor-form-card {
        max-width: 100%;
        flex: 1 1 100%;
    }

    .investor-form-card {
        margin-top: 10px;
    }
}

/* =========================================================
   MOBILE — up to 767px
========================================================= */
@media (max-width: 767px) {
    .investor-section {
        background-image: none;
        padding: 112px 18px 44px;
        text-align: center;
    }

    .investor-heading {
        font-size: clamp(32px, 9vw, 42px);
    }

    .investor-description {
        margin-top: 22px;
        font-size: 16px;
        max-width: 100%;
    }

    .investor-form-card {
        padding: 28px;
        margin-top: 36px;
        display: none;
    }

    .investor-form-heading {
        font-size: clamp(26px, 8vw, 32px);
    }

    .investor-form-intro {
        font-size: 16px;
        margin-top: 14px;
    }

    .investor-form {
        margin-top: 22px;
        gap: 10px;
    }

    .investor-field input {
        height: 54px;
        font-size: 16px;
        padding: 0 18px;
    }

    .investor-submit {
        height: 62px;
        font-size: 18px;
        margin-top: 14px;
    }
}

/* =========================================================
   SMALL MOBILE — up to 380px
========================================================= */
@media (max-width: 380px) {
    .investor-form-card {
        padding: 22px;
    }

    .investor-heading {
        font-size: 30px;
    }
}


/* =========================================================
   CARLTON FOOTER — scoped variables
========================================================= */
.carlton-footer {
    --footer-gold: #b18a27;
    --footer-cream: #fff3e3;
    --footer-white: #ffffff;
    --footer-divider: #fff3e3;
    --footer-font-sans: Arial, Helvetica, sans-serif;
}

/* =========================================================
   FOOTER WRAPPER
========================================================= */
.carlton-footer {
    position: relative;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    background: var(--footer-white);
    padding: 0px 24px 25px;
    text-align: center;
    overflow: visible;
    font-family: var(--footer-font-sans);
}

.carlton-footer *,
.carlton-footer *::before,
.carlton-footer *::after {
    box-sizing: border-box;
}

/* =========================================================
   TOP PAPER TEXTURE
   (image supplied separately — placed as a full-width
   pseudo-element behind everything else)
========================================================= */
.carlton-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 105px;
    background-image: url("../images/footer-texture.jpg");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    z-index: 0;
}

/* =========================================================
   HORIZONTAL DIVIDER
   (full-width, sits behind the logo card)
========================================================= */
.carlton-footer__divider {
    position: absolute;
    top: 0px;
    left: 0;
    right: 0;
    height: 7px;
    background: var(--footer-divider);
    z-index: 1;
}

/* =========================================================
   LOGO CARD
   (floats over both the texture and the divider)
========================================================= */
.carlton-footer__logo-card {
    position: relative;
    z-index: 5;
    width: min(278px, calc(100% - 40px));
    height: 85px;
    margin: 0 auto;
    background: var(--footer-cream);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 30px;
    top: -39px;
}

.carlton-footer__logo {
    display: block;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* =========================================================
   COPYRIGHT CONTENT
========================================================= */
.carlton-footer__content {
    position: relative;
    z-index: 2;
    margin-top: 10px;
    font-family: "Poppins";
}

.carlton-footer__copyright {
    margin: 0;
    /* font-family: var(--footer-font-sans); */
    font-size: clamp(15px, 1.2vw, 24px);
    line-height: 1.5;
    font-weight: 500;
    color: var(--footer-gold);
}
.carlton-footer__copyright br{
    display: none;
}
.carlton-footer__links {
    margin: 10px 0 0;
    /* font-family: var(--footer-font-sans); */
    font-size: clamp(15px, 1.2vw, 24px);
    line-height: 1.5;
    font-weight: 500;
    color: var(--footer-gold);
}
.carlton-footer__links br{
    display: none;
}
.carlton-footer__links a {
    color: var(--footer-gold);
    text-decoration: none;
}

.carlton-footer__links a:hover {
    text-decoration: underline;
}

.carlton-footer__links span {
    margin: 0 8px;
    color: var(--footer-gold);
}

/* =========================================================
   TABLET — 768px to 1199px
========================================================= */
@media (max-width: 1199px) {
    .carlton-footer {
        padding-top: 40px;
        padding-bottom: 32px;
    }

    .carlton-footer::before {
        height: 90px;
    }

    .carlton-footer__divider {
        top: 88px;
    }

    .carlton-footer__logo-card {
        width: min(380px, calc(100% - 40px));
        height: 106px;
        border-radius: 18px;
    }

    .carlton-footer__content {
        margin-top: 40px;
    }
}

/* =========================================================
   MOBILE — up to 767px
========================================================= */
@media (max-width: 767px) {
    .carlton-footer {
        padding: 32px 20px 30px;
    }

    .carlton-footer::before {
        height: 72px;
    }

    .carlton-footer__divider {
        top: 70px;
        height: 5px;
    }

    .carlton-footer__logo-card {
        width: min(400px, calc(100% - 40px));
        max-width: 380px;
        height: 92px;
        border-radius: 16px;
        padding: 0 20px;
        top: -8px;
    }

    .carlton-footer__content {
        margin-top: 30px;
    }

    .carlton-footer__copyright,
    .carlton-footer__links {
        font-size: 16px;
        line-height: 1.5;
        margin-top: 0px;
    }
.carlton-footer__copyright br{
    display: block;
}
.carlton-footer__links br{
    display: block;
}
    .carlton-footer__links span {
        margin: 0 6px;
        display: none;
    }
}

/* =========================================================
   SMALL MOBILE — up to 380px
========================================================= */
@media (max-width: 380px) {
    .carlton-footer__logo-card {
        height: 80px;
        border-radius: 14px;
        padding: 0 16px;
        top: -8px;
    }

    .carlton-footer__copyright,
    .carlton-footer__links {
        font-size: 15px;
    }
}


/* =========================================================
   MOBILE WIZARD HERO — scoped variables
   All selectors are prefixed with .mobile-wizard-hero so this
   cannot leak into the existing desktop hero or any other
   section of the site.
========================================================= */
.mobile-wizard-hero {
    --mwh-gold: #b18a27;
    --mwh-question-gold: #c79b35;
    --mwh-cream: #fff8ef;
    --mwh-option-bg: #f4ede3;
    --mwh-navy: #172d4b;
    --mwh-muted: #6b6b6b;
    --mwh-white: #ffffff;
    /* --mwh-font-sans: "Montserrat", "Segoe UI", Arial, sans-serif; */
}

/* =========================================================
   SECTION — full-height background image
========================================================= */
.mobile-wizard-hero {
    position: relative;
    display: none; /* becomes flex only under the mobile breakpoint below */
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    min-height: 100svh;
    padding: 34px 18px 40px;
    flex-direction: column;
    align-items: center;

    background-image: url("../images/mobile-2.jpg");
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;

    font-family: var(--mwh-font-sans);
    overflow-x: hidden;
}

.mobile-wizard-hero *,
.mobile-wizard-hero *::before,
.mobile-wizard-hero *::after {
    box-sizing: border-box;
}

/* =========================================================
   LOGO
========================================================= */
.mobile-wizard-hero__logo {
    display: block;
    width: clamp(90px, 26vw, 120px);
    height: auto;
    object-fit: contain;
    margin-bottom: 22px;
}

/* =========================================================
   WIZARD CARD
========================================================= */
.mobile-wizard-hero__card {
    width: calc(100% - 0px);
    max-width: 340px;
    background: var(--mwh-cream);
    border: 1px solid rgba(177, 138, 39, 0.25);
    border-radius: 22px;
    padding: clamp(20px, 5vw, 28px) clamp(16px, 4.5vw, 22px) clamp(18px, 4.5vw, 24px);
    display: flex;
    flex-direction: column;
}

/* =========================================================
   QUESTION
========================================================= */
.mobile-wizard-hero__question {
    margin: 0 0 18px;
    font-family: var(--mwh-font-sans);
    font-size: clamp(19px, 5.2vw, 22px);
    line-height: 1.2;
    font-weight: 700;
    color: var(--mwh-question-gold);
    text-align: center;
}

/* =========================================================
   OPTIONS
========================================================= */
.mobile-wizard-hero__options {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-wizard-hero__option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 30px;
    padding: 8px 14px;
    background: var(--mwh-option-bg);
    border: 1px solid transparent;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.15s ease, border-color 0.15s ease;
    -webkit-tap-highlight-color: transparent;
}

.mobile-wizard-hero__option:active {
    background: #efe4d4;
}

.mobile-wizard-hero__option--selected {
    border-color: var(--mwh-gold);
    background: #efe2ca;
}

.mobile-wizard-hero__option-label {
    font-family: var(--mwh-font-sans);
    font-size: clamp(10px, 2.9vw, 11px);
    font-weight: 500;
    color: var(--mwh-navy);
}

.mobile-wizard-hero__option-price {
    font-family: var(--mwh-font-sans);
    font-size: clamp(10px, 2.9vw, 11px);
    font-weight: 700;
    color: var(--mwh-navy);
}

/* =========================================================
   PROGRESS
========================================================= */
.mobile-wizard-hero__progress-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 22px;
}

.mobile-wizard-hero__progress-text,
.mobile-wizard-hero__progress-percent {
    font-family: var(--mwh-font-sans);
    font-size: clamp(8px, 2.4vw, 10px);
    font-weight: 600;
    color: var(--mwh-navy);
}

.mobile-wizard-hero__progress-track {
    margin-top: 6px;
    width: 100%;
    height: 2px;
    background: rgba(23, 45, 75, 0.15);
    border-radius: 2px;
    overflow: hidden;
}

.mobile-wizard-hero__progress-fill {
    height: 100%;
    background: var(--mwh-navy);
    border-radius: 2px;
    transition: width 0.2s ease;
}

/* =========================================================
   STEP BACK BUTTON
========================================================= */
.mobile-wizard-hero__step-back {
    display: inline-flex;
    align-items: center;
    gap: 4px;

    margin: 0 0 14px;
    padding: 6px 10px 6px 0;

    background: transparent;
    border: 0;

    color: var(--mwh-muted);

    font-family: var(--mwh-font-sans);
    font-size: 12px;
    font-weight: 600;

    cursor: pointer;

    -webkit-tap-highlight-color: transparent;
}

.mobile-wizard-hero__step-back:hover,
.mobile-wizard-hero__step-back:focus-visible {
    color: var(--mwh-navy);
}

/* =========================================================
   TERMS
========================================================= */
.mobile-wizard-hero__terms {
    margin: 10px 0 0;
    font-family: var(--mwh-font-sans);
    font-size: clamp(7px, 2.1vw, 8px);
    line-height: 1.3;
    color: var(--mwh-muted);
    text-align: center;
}

.mobile-wizard-hero__terms-link {
    color: var(--mwh-muted);
    text-decoration: underline;
}

/* =========================================================
   APPROVAL BADGE
========================================================= */
.mobile-wizard-hero__badge {
    display: block;
    width: clamp(56px, 16vw, 72px);
    height: auto;
    object-fit: contain;
    margin-top: 20px;
}

/* =========================================================
   ACTIVATE ONLY ON MOBILE
   The section is `display: none` by default (see top of file)
   so it never renders on tablet/desktop even if mounted in
   the DOM alongside the existing desktop hero.
========================================================= */
@media (max-width: 767px) {
    .carlton-hero{
        display: none;
    }
    .mobile-wizard-hero {
        display: flex;
    }
}

/* =========================================================
   SMALL MOBILE — down to 320px
========================================================= */
@media (max-width: 360px) {
    .mobile-wizard-hero {
        padding: 26px 14px 32px;
    }

    .mobile-wizard-hero__card {
        max-width: 100%;
    }
}

/* =========================================================
   WIZARD STEPS
========================================================= */

.mobile-wizard-hero__step[hidden],
.mobile-wizard-hero__thankyou[hidden] {
    display: none;
}

.mobile-wizard-hero__step {
    width: 100%;
}


/* =========================================================
   OPTIONS
========================================================= */

.mobile-wizard-hero__options {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-wizard-hero__option {
    display: flex;
    align-items: center;
    justify-content: space-between;

    width: 100%;
    min-height: 38px;

    padding: 9px 14px;

    background: var(--mwh-option-bg);

    border: 1px solid transparent;
    border-radius: 8px;

    cursor: pointer;

    transition:
        background-color 0.15s ease,
        border-color 0.15s ease,
        transform 0.15s ease;

    -webkit-tap-highlight-color: transparent;
    text-align: left;
}

.mobile-wizard-hero__option:active {
    transform: scale(0.98);
    background: #efe4d4;
}

.mobile-wizard-hero__option--selected {
    border-color: var(--mwh-gold);
    background: #efe2ca;
}

.mobile-wizard-hero__option-label {
    font-family: var(--mwh-font-sans);
    font-size: clamp(10px, 2.9vw, 11px);
    font-weight: 500;
    line-height: 1.3;
    color: var(--mwh-navy);
}

.mobile-wizard-hero__option-price {
    flex-shrink: 0;
    margin-left: 10px;

    font-family: var(--mwh-font-sans);
    font-size: clamp(10px, 2.9vw, 11px);
    font-weight: 700;
    color: var(--mwh-navy);
}


/* =========================================================
   STATE DROPDOWN
========================================================= */

.mobile-wizard-hero__select-wrap {
    width: 100%;
}

.mobile-wizard-hero__select {
    width: 100%;
    min-height: 42px;

    padding: 10px 36px 10px 14px;

    background: var(--mwh-option-bg);
    border: 1px solid rgba(177, 138, 39, 0.2);
    border-radius: 8px;

    font-family: var(--mwh-font-sans);
    font-size: 12px;
    font-weight: 500;
    color: var(--mwh-navy);

    outline: none;
    cursor: pointer;

    appearance: auto;
}

.mobile-wizard-hero__select:focus {
    border-color: var(--mwh-gold);
}


/* =========================================================
   PROGRESS
========================================================= */

.mobile-wizard-hero__progress {
    width: 100%;
}

.mobile-wizard-hero__progress-row {
    display: flex;
    justify-content: space-between;
    align-items: center;

    margin-top: 22px;
}

.mobile-wizard-hero__progress-text,
.mobile-wizard-hero__progress-percent {
    font-family: var(--mwh-font-sans);
    font-size: clamp(8px, 2.4vw, 10px);
    font-weight: 600;
    color: var(--mwh-navy);
}

.mobile-wizard-hero__progress-track {
    margin-top: 6px;

    width: 100%;
    height: 2px;

    background: rgba(23, 45, 75, 0.15);

    border-radius: 2px;
    overflow: hidden;
}

.mobile-wizard-hero__progress-fill {
    width: 17%;
    height: 100%;

    background: var(--mwh-navy);

    border-radius: 2px;

    transition: width 0.25s ease;
}


/* =========================================================
   TERMS
========================================================= */

.mobile-wizard-hero__terms {
    margin: 10px 0 0;

    font-family: var(--mwh-font-sans);

    font-size: clamp(7px, 2.1vw, 8px);
    line-height: 1.3;

    color: var(--mwh-muted);
    text-align: center;
}

.mobile-wizard-hero__terms-link {
    color: var(--mwh-muted);
    text-decoration: underline;
}


/* =========================================================
   THANK YOU
========================================================= */

.mobile-wizard-hero__thankyou {
    display: flex;
    flex-direction: column;
    align-items: center;

    width: 100%;

    text-align: center;
}

.mobile-wizard-hero__thankyou-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 48px;
    height: 48px;

    margin-bottom: 14px;

    border: 1px solid var(--mwh-gold);
    border-radius: 50%;

    color: var(--mwh-gold);

    font-size: 25px;
    font-weight: 600;
}

.mobile-wizard-hero__thankyou-title {
    margin: 0;

    font-family: var(--mwh-font-sans);
    font-size: 24px;
    line-height: 1.2;
    font-weight: 700;

    color: var(--mwh-question-gold);
}

.mobile-wizard-hero__thankyou-text {
    margin: 12px 0 20px;

    max-width: 270px;

    font-family: var(--mwh-font-sans);
    font-size: 11px;
    line-height: 1.5;

    color: var(--mwh-muted);
}

.mobile-wizard-hero__back {
    min-height: 40px;

    padding: 9px 24px;

    background: var(--mwh-gold);
    border: 0;
    border-radius: 20px;

    color: #ffffff;

    font-family: var(--mwh-font-sans);
    font-size: 11px;
    font-weight: 600;

    cursor: pointer;

    -webkit-tap-highlight-color: transparent;
}
/* =========================================================
   STEP 7 — CONTACT FORM
========================================================= */

.mobile-wizard-hero__contact-form {
    display: flex;
    flex-direction: column;
    gap: 11px;
    width: 100%;
}

.mobile-wizard-hero__field {
    display: flex;
    flex-direction: column;
    width: 100%;
    text-align: left;
}

.mobile-wizard-hero__field label {
    margin-bottom: 5px;

    font-family: var(--mwh-font-sans);
    font-size: 10px;
    font-weight: 600;

    color: var(--mwh-navy);
}

.mobile-wizard-hero__field input {
    width: 100%;
    min-height: 40px;

    padding: 9px 12px;

    background: var(--mwh-option-bg);

    border: 1px solid rgba(177, 138, 39, 0.2);
    border-radius: 8px;

    outline: none;

    font-family: var(--mwh-font-sans);
    font-size: 11px;
    color: var(--mwh-navy);
}

.mobile-wizard-hero__field input::placeholder {
    color: #999;
}

.mobile-wizard-hero__field input:focus {
    border-color: var(--mwh-gold);
}

.mobile-wizard-hero__submit {
    width: 100%;
    min-height: 42px;

    margin-top: 5px;

    background: var(--mwh-gold);
    border: 0;
    border-radius: 22px;

    color: #ffffff;

    font-family: var(--mwh-font-sans);
    font-size: 12px;
    font-weight: 600;

    cursor: pointer;

    transition:
        background-color 0.2s ease,
        transform 0.15s ease;

    -webkit-tap-highlight-color: transparent;
}

.mobile-wizard-hero__submit:active {
    transform: scale(0.98);
}
/*.location-section::after {*/
/*    content: "";*/
/*    position: absolute;*/
/*    left: 50%;*/
/*    bottom: -3%;*/
/*    transform: translateX(-50%);*/
/*    width: 75%;*/
/*    height: 5px;*/
/*    background: var(--gold);*/
/*    z-index: 5;*/
/*}*/
.location-section {
    position: relative;
    width: 100%;
    max-width: 100%;
    min-height: 30vh;
    font-family: var(--font-sans);
}