/* =============================================================
   PAGE.CSS  –  All page/component styles extracted from PHP
   Sections:
   1.  Global utilities
   2.  Header (homepage scroll nav)
   3.  Header-inner (fixed inner-page nav)
   4.  Footer
   5.  Connect social
   6.  Index page
   7.  About page
   8.  Editorials page
   9.  Futures page
   10. Corporate-styling page
   11. Connect page
   12. Thank-you page
   13. Request-access page
============================================================= */


/* =============================================================
   1. GLOBAL UTILITIES
============================================================= */

.blog-row-text li {
    font-weight: 300 !important;
}

.blog-row-text a {
    color: #0f2a1d;
    font-weight: 500;
}

/* Hide on mobile, show on desktop */
.desktop-break {
    display: none;
}
@media (min-width: 992px) {
    .desktop-break {
        display: block;
    }
}

/* Hide on desktop, show on mobile */
.mobile-break {
    display: none;
}
@media (max-width: 768px) {
    .mobile-break {
        display: block;
    }
}

@media (max-width: 600px) {
    .dir-btn__text {
        transition: none !important;
    }
}


/* =============================================================
   2. HEADER  (homepage – absolute/scroll nav)
============================================================= */

/* Dropdown arrow rotation */
.dropdown-arrow {
    transition: transform 0.4s ease;
    font-size: 18px;
}
.dropdown-arrow.rotate {
    transform: rotate(180deg);
}

.services-mobtoggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

a.lvx-services-toggle.mobmobmenu {
    margin-top: 60px;
    z-index: 9989;
    position: relative;
    display: flex !important;
    justify-content: space-between;
    align-items: center;
}

/* Header bar */
.lvx-header {
    position: absolute;
    width: 100%;
    max-width: 1200px;
    margin: auto;
    left: 0;
    right: 0;
    padding: 22px 36px;
    z-index: 6;
}

.lvx-header-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}

.lvx-nav-left,
.lvx-nav-right {
    display: flex;
    gap: 34px;
}
.lvx-nav-left { justify-content: flex-start; }
.lvx-nav-right { justify-content: flex-end; }

.lvx-header a {
    color: #f5f5ee;
    font-size: 16px;
    text-decoration: none;
    text-transform: lowercase;
}

.lvx-brand img { width: 40px; display: block; }

/* Mobile toggle */
.lvx-mobile-toggle {
    display: none;
    position: relative;
    width: 25px;
    height: 18px;
    background: none;
    border: 0;
    cursor: pointer;
    z-index: 20;
}

.lvx-mobile-toggle::before,
.lvx-mobile-toggle::after,
.lvx-mobile-toggle span {
    content: "";
    position: absolute;
    width: 25px;
    height: 2px;
    background: #f5f5ee;
    transition: .4s;
}

.lvx-mobile-toggle::before { top: 0; }
.lvx-mobile-toggle span    { top: 8px; }
.lvx-mobile-toggle::after  { bottom: 0; }

.lvx-mobile-toggle.active::before { transform: translateY(10px); }
.lvx-mobile-toggle.active::after  { transform: translateY(-10px); }
.lvx-mobile-toggle.active span    { opacity: 1; height: 2px; background: #0f2a1d; }

/* Sticky bar */
.lvx-sticky {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(-2px);
    width: calc(100% - 24px);
    max-width: 1200px;
    height: 86px;
    background: #f5f5ee;
    border-radius: 10px;
    display: flex;
    align-items: center;
    padding: 0 36px;
    opacity: 0;
    pointer-events: none;
    transition: .3s;
    z-index: 999;
}

.lvx-sticky.active {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.lvx-sticky a { color: #0f2a1d; }

.lvx-sticky-inner {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}

/* Mobile menu overlay */
.lvx-mobile-menu {
    position: fixed;
    inset: 0;
    background: #f5f5ee;
    z-index: 9999;
    transform: translateY(-30px);
    transform-origin: top left;
    opacity: 0;
    pointer-events: none;
    transition: transform .5s cubic-bezier(.77,0,.175,1),
                opacity .6s ease;
    padding: 20px;
    margin-left: 12px;
    margin-right: 12px;
    margin-top: 20px;
    border-radius: 0.625rem;
}

.lvx-mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.lvx-mobile-menu a {
    display: block;
    margin-bottom: 12px;
    font-size: 18px;
    color: #0f2a1d;
    text-decoration: none;
}

.lvx-close {
    width: 25px;
    height: 2px;
    background: #0f2a1d;
    cursor: pointer;
    position: relative;
    left: 3px;
    z-index: 9999;
}

/* Services dropdown */
.lvx-services-dropdown {
    max-height: 0;
    overflow: hidden;
    transition: .4s;
    margin: 0 !important;
}
.lvx-services-dropdown.active {
    max-height: 300px;
    margin-bottom: 20px !important;
}

/* Space above "about" when services dropdown is open — homepage */
.lvx-services-dropdown.active + a { margin-top: 20px; }

/* Mobile breakpoint */
@media (max-width: 992px) {
    .lvx-nav-left,
    .lvx-nav-right { display: none; }

    .lvx-mobile-toggle {
        display: block;
        position: absolute;
        left: 24px;
        top: 67%;
        transform: translateY(-50%);
    }

    button#lvxStickyToggle { top: 50%; }

    .lvx-header-grid {
        display: flex;
        justify-content: center;
        position: relative;
        padding-top: 20px;
    }

    .lvx-brand {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .lvx-sticky-inner {
        display: flex;
        justify-content: center;
        position: relative;
    }

    .lvx-sticky .lvx-brand {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .lvx-mobile-menu {
        transform-origin: 20px 20px;
    }
}

/* Sticky toggle bars on light background */
.lvx-sticky .lvx-mobile-toggle::before,
.lvx-sticky .lvx-mobile-toggle::after,
.lvx-sticky .lvx-mobile-toggle span {
    background: #0f2a1d !important;
}

.lvx-services-toggle svg {
    transition: transform .4s cubic-bezier(.77,0,.175,1);
}
.lvx-services-toggle.active svg { transform: rotate(180deg); }

@media (max-width: 640px) {
    .luxe-service-title { font-size: 16px; }
}

/* Mobile menu stagger animation */
.lvx-mobile-header,
.lvx-mobile-inner > a,
.luxe-service-card {
    opacity: 1;
    transform: translateY(14px);
    transition: all .75s cubic-bezier(.77,0,.175,1);
}

.lvx-mobile-menu.active .lvx-mobile-header {
    opacity: 1;
    transform: translateY(0);
    transition-delay: .2s;
}

.lvx-mobile-menu.active .lvx-mobile-inner > a {
    opacity: 1;
    transform: translateY(0);
}

.lvx-mobile-menu.active .lvx-mobile-inner > a:nth-of-type(1) { transition-delay: .18s; }
.lvx-mobile-menu.active .lvx-mobile-inner > a:nth-of-type(2) { transition-delay: .24s; }
.lvx-mobile-menu.active .lvx-mobile-inner > a:nth-of-type(3) { transition-delay: .30s; }
.lvx-mobile-menu.active .lvx-mobile-inner > a:nth-of-type(4) { transition-delay: .36s; }
.lvx-mobile-menu.active .lvx-mobile-inner > a:nth-of-type(5) { transition-delay: .42s; }
.lvx-mobile-menu.active .lvx-mobile-inner > a:nth-of-type(6) { transition-delay: .48s; }

.lvx-mobile-menu.active .luxe-service-card {
    opacity: 1;
    transform: translateY(0);
    transition-delay: .28s;
}

/* Mega menu */
.luxe-mega-inner {
    padding: 80px 36px;
    position: relative;
}

.luxe-mega-inner::before {
    content: "";
    position: absolute;
    top: -10px;
    left: 0;
    width: 100%;
    height: 36px;
}

.luxe-service-grid {
    margin-top: 10px;
    margin-bottom: 0px;
}

.lvx-services-dropdown.luxe-service-grid.active {
    margin-bottom: 20px;
}

.luxe-mega {
    pointer-events: none;
}

.luxe-mega .luxe-mega-inner {
    pointer-events: auto;
}

@media (max-width: 640px) {
    .luxe-service-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        height: 314px;
    }

    .mobile-menu-service-grid .luxe-service-title {
        font-size: 16px;
    }
}


/* =============================================================
   3. HEADER-INNER  (fixed inner-page nav)
============================================================= */

.header-inner {
    position: fixed !important;
    top: 20px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: calc(100% - 24px) !important;
    max-width: 1200px !important;
    background: #f5f5ee !important;
    padding: 0 36px !important;
    height: 86px !important;
    border-top-left-radius: 0.625rem !important;
    border-top-right-radius: 0.625rem !important;
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
    display: flex !important;
    align-items: center !important;
    z-index: 1000 !important;
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
                opacity 0.35s ease !important;
}

.header-inner.is-hidden {
    transform: translateX(-50%) translateY(-120%) !important;
    opacity: 0 !important;
}

/* Full border-radius variant (thank-you, request-access) */
.header-inner--rounded {
    border-radius: 0.625rem !important;
}

.header-inner .header-grid {
    width: 100% !important;
    display: grid !important;
    grid-template-columns: 1fr auto 1fr !important;
    align-items: center !important;
}

.header-inner .nav-left {
    display: flex !important;
    justify-content: flex-start !important;
    gap: 28px !important;
}

.header-inner .nav-right {
    display: flex !important;
    justify-content: flex-end !important;
    gap: 28px !important;
}

.header-inner a {
    color: #0f2a1d !important;
    font-size: 16px !important;
    text-transform: lowercase !important;
    text-decoration: none !important;
}

.header-inner .brand {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}

.header-inner .brand img {
    height: 40px !important;
    width: auto !important;
    display: block !important;
    max-width: none !important;
}

/* Mobile toggle */
.mobile-toggle {
    display: none;
    position: relative;
    width: 25px;
    height: 18px;
    background: none;
    border: 0;
    cursor: pointer;
    z-index: 20;
    padding: 0;
    top: 16px;
}

.mobile-toggle::before,
.mobile-toggle::after,
.mobile-toggle span {
    content: "";
    position: absolute;
    left: 24px;
    width: 25px;
    height: 2px;
    background: #0f2a1d;
    transition: .4s;
    border-radius: 0px !important;
}

.mobile-toggle::before { top: 0; }
.mobile-toggle span    { top: 8px; }
.mobile-toggle::after  { top: 17px; bottom: 0; }

/* Mobile menu overlay */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 9999;
    transform: translateY(-30px);
    transform-origin: top left;
    opacity: 0;
    pointer-events: none;
    transition: transform .5s cubic-bezier(.77,0,.175,1),
                opacity .6s ease;
    max-width: 1200px;
    margin: 12px auto 15px;
    border-radius: 0.625rem;
    padding: 22px 16px;
    letter-spacing: 1px;
    margin-left: 12px;
    margin-right: 12px;
    background: #f5f5ee;
    margin-bottom: -10%;
    margin-top: 0%;
}

@media (min-width: 992px) {
    .mobile-menu { display: none; }
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
    margin-top: 12px;
    background: #f5f5ee;
}

.mobile-menu-inner { padding: 0px 8px; }

.mobile-menu-service-grid {
    margin-top: 0px;
    margin-bottom: 0px;
    display: grid;
}

.mobile-menu a {
    display: block;
    font-family: "Inter", serif;
    font-size: 18px;
    color: #0f2a1d;
    margin-bottom: 10px;
    letter-spacing: 1px;
    text-decoration: none;
}

.mobile-close {
    font-size: 28px;
    margin-bottom: 20px;
    cursor: pointer;
}

.mob-menu-header {
    display: flex;
    width: 100%;
    gap: 34%;
}

.services-mobdropdown {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: all 0.45s cubic-bezier(.77,0,.175,1);
}

.services-mobdropdown.active {
    max-height: 1000px;
    opacity: 1;
    margin-bottom: 20px;
}

/* Space above "about" when services dropdown is open — inner pages */
.services-mobdropdown.active + a { margin-top: 20px; }

.services-mobtoggle {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.luxe-service-grid.mobile-menu-service-grid.services-mobdropdown {
    margin-bottom: 0px;
}

/* Mobile stagger animation */
.mob-menu-header,
.mobile-menu-inner > a,
.mobile-menu .luxe-service-card {
    opacity: 0;
    transform: translateY(14px);
    transition: all .75s cubic-bezier(.77,0,.175,1);
}

.mobile-menu.active .mob-menu-header {
    opacity: 1;
    transform: translateY(0);
    transition-delay: .2s;
}

.mobile-menu.active .mobile-menu-inner > a {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu.active .mobile-menu-inner > a:nth-of-type(1) { transition-delay: .18s; }
.mobile-menu.active .mobile-menu-inner > a:nth-of-type(2) { transition-delay: .24s; }
.mobile-menu.active .mobile-menu-inner > a:nth-of-type(3) { transition-delay: .30s; }
.mobile-menu.active .mobile-menu-inner > a:nth-of-type(4) { transition-delay: .36s; }
.mobile-menu.active .mobile-menu-inner > a:nth-of-type(5) { transition-delay: .42s; }
.mobile-menu.active .mobile-menu-inner > a:nth-of-type(6) { transition-delay: .48s; }

.mobile-menu.active .luxe-service-card {
    opacity: 1;
    transform: translateY(0);
    transition-delay: .28s;
}

/* Mega menu (inner pages) */
.luxe-mega-inner {
    padding: 80px 36px;
    position: relative;
}

.luxe-service-grid {
    margin-top: 10px;
    margin-bottom: 50px;
}

.luxe-mega {
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity .3s ease, transform .3s ease, visibility .3s ease;
}

.luxe-mega.show {
    pointer-events: auto;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.luxe-mega .luxe-mega-inner { pointer-events: auto; }

/* Mobile header-inner overrides */
@media (max-width: 992px) {
    .header-inner {
        height: 78px !important;
        padding: 0 20px !important;
    }

    .header-inner .brand img {
        height: auto !important;
        width: 40px !important;
        margin-top: 4px;
    }

    .header-inner .header-grid {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        position: relative !important;
    }

    .header-inner .nav-left,
    .header-inner .nav-right { display: none !important; }

    .header-inner .brand {
        position: absolute !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .mobile-toggle {
        display: block;
        position: absolute;
        left: 0;
        top: 54%;
        transform: translateY(-50%);
    }

    .header-inner .mobile-toggle span,
    .header-inner .mobile-toggle::before,
    .header-inner .mobile-toggle::after {
        background: #0f2a1d !important;
    }

    .mobile-menu { transform-origin: 20px 20px; }
}


/* =============================================================
   4. FOOTER
============================================================= */

.footer-tagline {
    padding-bottom: 30px;
}

@media (max-width: 768px) {
    .footer-tagline { padding: 0px; }
}

.form-below { margin-top: -8px; }
.form-below p { font-size: 13px; margin-bottom: 2px; }

input[type="checkbox"] {
    width: 10px;
    margin-right: 3px;
    position: relative;
    top: 2px;
}

@media (max-width: 640px) {
    input[type="checkbox"] {
        -webkit-appearance: none;
        appearance: none;
        width: 10px;
        height: 10px;
        border: 1.5px solid #2c454c;
        border-radius: 4px !important;
        background: transparent;
        cursor: pointer;
        position: relative;
        vertical-align: middle;
        padding: 6px !important;
        top: 0px;
    }

    input[type="checkbox"]:checked {
        background-color: #0f3b2e;
        border-color: #0f3b2e;
    }

    input[type="checkbox"]:checked::after {
        content: "";
        position: absolute;
        left: 2px;
        top: 2px;
        width: 5px;
        height: 5px;
        border: solid #fff;
        border-width: 0 2px 2px 0;
        transform: rotate(45deg);
        font-size: 5px;
    }
}

/* Phone field */
.phone-field {
    position: relative;
    width: 100%;
}

.phone-field input { width: 100%; }

.phone-error {
    position: absolute;
    left: 0;
    bottom: -12px;
    font-size: 12px;
    line-height: 1;
    pointer-events: none;
}

#countryCode option { font-size: 13px; }

.flag-box {
    cursor: pointer;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 11px 12px;
    border: 1px solid #0f2a1d;
    border-right: none;
    background: #ecece4;
    min-width: 35px;
    width: 95px;
}

.dialCode { font-size: 13px; }
.flag-box img { width: 20px; height: 13px; }
.flag-box span { font-size: 13px; }

.split-row-phone {
    display: flex;
    align-items: center;
    position: relative;
}

.split-row-phone select {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 95px;
    opacity: 0;
    cursor: pointer;
    z-index: 3;
    border: none;
    appearance: auto;
}

/* Button loader */
.iti { width: 100%; }

.split-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.split-btn .btn-loader {
    position: absolute;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(245, 245, 238, 0.3);
    border-top: 2px solid #f5f5ee;
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
    display: none;
}

.split-btn.loading .btn-text { opacity: 0; }
.split-btn.loading .btn-loader { display: block; }
.split-btn.loading { pointer-events: none; opacity: 0.85; }

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Directional hover button */
.lvx-btn {
    position: relative;
    padding: 6px 32px;
    border: 1.5px solid #0f2a1d;
    border-radius: 999px;
    background: #0f2a1d;
    overflow: hidden;
    cursor: pointer;
    font-family: "Inter", sans-serif;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    width: 150px;
}

.lvx-btn__text {
    position: relative;
    z-index: 2;
    color: #ffffff;
    transition: color 0.3s ease;
}

.lvx-btn__bg {
    position: absolute;
    inset: 0;
    background: #f5f5ee;
    z-index: 1;
    transform: translateX(-100%);
    transition: transform .35s ease;
}

.lvx-btn:hover .lvx-btn__text { color: #0f2a1d; }


/* =============================================================
   5. CONNECT SOCIAL (common/connect.php)
============================================================= */

.connect-social-minimal {
    display: flex;
    gap: 18px;
    margin-top: 8px;
}

.connect-social-minimal a {
    color: #0f2a1d;
    font-size: 22px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.connect-social-minimal a:hover {
    opacity: 0.6;
    transform: translateY(-2px);
}


/* =============================================================
   6. INDEX PAGE
============================================================= */

@media (max-width: 992px) {
    .service-prev,
    .service-next {
        top: 80% !important;
    }
}

/* Approach section */
.approach-box {
    max-width: 1200px;
    margin: 0 auto;
    background: transparent;
    overflow: visible;
}

.approach-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 550px;
    gap: 35px;
}

.approach-visual {
    position: relative;
    overflow: hidden;
    color: #f5f5ee;
    border-radius: 0.625rem;
    background: #000;
}

.approach-visual-viewport {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.approach-visual-track {
    height: 100%;
    display: flex;
    transition: transform 0.8s ease-in-out;
}

.approach-visual-slide {
    flex: 0 0 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    position: relative;
    overflow: hidden;
}

.approach-visual-bg {
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
    transform: scale(1);
    transform-origin: center center;
    will-change: transform;
}

.approach-visual-viewport::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    pointer-events: none;
    z-index: 1;
}

.approach-title {
    position: relative;
    z-index: 2;
    padding: 48px;
    font-family: "Cormorant Garamond", serif;
    font-size: 64px;
    line-height: 23px;
    padding-top: 15%;
    letter-spacing: -2px;
    font-weight: 300;
}

.approach-title span {
    display: block;
    font-size: 42px;
    font-weight: 300;
}

.approach-dots {
    position: absolute;
    bottom: 32px;
    left: 48px;
    display: flex;
    gap: 10px;
    z-index: 2;
}

.approach-dots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid #fff;
    background: transparent;
    opacity: 0.6;
    cursor: pointer;
}

.approach-dots button.active {
    background: #fff;
    opacity: 1;
}

.approach-content {
    position: relative;
    background: #f5f5ee;
    padding: 34px 120px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    flex-wrap: wrap;
    border-radius: 0.625rem;
}

.approach-content-viewport { width: 100%; overflow: hidden; }

.approach-content-track {
    display: flex;
    gap: 0;
    transition: transform 0.8s ease-in-out;
}

.approach-slide { flex: 0 0 100%; }

.approach-slide-inner {
    max-width: 420px;
    transition: opacity 0.4s ease-in-out;
}

.approach-slide h4 {
    font-family: "Inter", sans-serif;
    font-size: 38px;
    letter-spacing: -2px;
    margin-bottom: 5px;
    color: #0f2a1d;
}

.approach-slide p {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    font-weight: 300;
    color: #0f2a1d;
}

.approach-arrow {
    position: absolute;
    bottom: 50%;
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
    color: #0f2a1d;
    padding: 8px 10px;
}

.approach-arrow.prev,
.approach-arrow.next {
    font-size: 20px;
    background: transparent;
    border: 1px solid #0f2a1d;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    padding: 23px 23px;
    line-height: 0px;
}

.approach-arrow.prev { left: 40px; }
.approach-arrow.next { right: 40px; }

.approach-arrow.prev:hover,
.approach-arrow.next:hover { background: #0f2a1d; }

button#approachPrev:after,
button#approachNext:after {
    font-size: 20px;
    color: #0f2a1d;
}

button#approachPrev:hover::after,
button#approachNext:hover::after { color: #fff; }

button#approachPrev,
button#approachNext {
    bottom: 70% !important;
    top: auto !important;
}

@media (min-width: 600px) {
    button#approachPrev,
    button#approachNext {
        bottom: 20% !important;
        top: auto !important;
    }
}

@media (max-width: 992px) {
    .approach-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .approach-title {
        font-size: 48px;
        padding: 65px 30px 255px 24px;
    }

    .approach-content {
        padding: 24px 30px;
        min-height: 320px;
    }
}

/* Unified front section */
.unified-front-section { padding: 37px; }

@media (max-width: 600px) {
    .unified-front-section { padding: 24px; }
}

/* The Front Row marquee box */
.frbox {
    border: 2px solid #0f2a1d;
    isolation: isolate;
    contain: layout style;
}

.marquee {
    width: 100%;
    overflow: hidden;
}

.marquee-track {
    display: flex;
    width: max-content;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    /* Animation duration set by JS based on measured width */
}

.marquee-track span {
    position: relative;
    padding-right: 10px;
    color: #0f2a1d;
    font-size: 42px;
    white-space: nowrap;
    font-weight: 400;
    letter-spacing: -2px;
}

.marquee-track span::after {
    content: "";
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 40px;
    color: #0f2a1d;
    opacity: 1;
}

.marquee-track span:last-child::after { display: none; }

@-webkit-keyframes marquee-scroll {
    from { -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); }
    to   { -webkit-transform: translate3d(-50%, 0, 0); transform: translate3d(-50%, 0, 0); }
}
@keyframes marquee-scroll {
    from { transform: translate3d(0, 0, 0); }
    to   { transform: translate3d(-50%, 0, 0); }
}

@media (max-width: 600px) {
    .marquee-track span { font-size: 32px; }
    .front-row-text h2  { font-size: 26px; }
}

section.unified-front-section.request {
    border: 3px solid #0f2a1d !important;
    border-radius: 0 !important;
    max-width: 1200px;
    margin: 0 auto;
    background: #f5f5ee;
    padding: 50px 0;
}

h2.front-row-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: 100px;
    letter-spacing: -7px;
    margin-top: -80px;
    margin-bottom: 50px;
    font-weight: 400;
}

.best-stylist-left p        { font-size: 17px; }
.best-stylist-left-inner    { max-width: 490px; }


/* =============================================================
   7. ABOUT PAGE
============================================================= */

.about-bg {
    background: url('/assets/img/about page-main banner image.JPG');
    background-position: center;
    background-size: cover;
}

@media (max-width: 600px) {
    .about-bg {
        background: url('/assets/img/about mobile.jpeg');
        background-position: center;
        background-size: cover;
    }
}

.desk-only-grid { display: grid; }

@media (max-width: 768px) {
    .desk-only-grid { display: none !important; }
    .mob-only       { display: block !important; }
}

.best-stylist-left { align-items: flex-end !important; }


/* =============================================================
   8. EDITORIALS PAGE
============================================================= */

.editorial-bg {
    background: url('/assets/img/editorial page-main banner image.jpg') !important;
    background-position: center center !important;
    background-size: cover !important;
}

@media (max-width: 600px) {
    .editorial-bg {
        background: url('/assets/img/editorial mobile.jpeg') !important;
        background-position: center center !important;
        background-size: cover !important;
    }
}

/* Blog grid */
.blog-section {
    margin: 40px auto;
    width: 100%;
}

.blog-box {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
}

.blog-card {
    background: #f5f5ee;
    border-radius: 22px;
    padding: 90px 28px;
    min-height: 420px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    isolation: isolate;
}

.blog-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--card-bg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transform: scale(1.04);
    transition: opacity 0.6s ease, transform 0.8s ease;
    z-index: 1;
}

.blog-card > * {
    position: relative;
    z-index: 2;
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.blog-card h3 {
    margin: 0 0 18px;
    font-family: "Inter", sans-serif;
    font-size: 22px;
    line-height: 1.35;
    letter-spacing: 1.5px;
    color: #0f2a1d;
    text-transform: none;
}

.blog-card p {
    margin: 0;
    font-size: 15px;
    line-height: 1.65;
    font-weight: 300;
    color: #0f2a1d;
}

.blog-cta {
    position: absolute;
    left: 50%;
    bottom: 45px;
    transform: translateX(-50%) translateY(24px);
    opacity: 0;
    pointer-events: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 26px;
    border: 1px solid #f5f5ee;
    border-radius: 999px;
    background: #f5f5ee;
    color: #0f2a1d;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 2px;
    white-space: nowrap;
    transition: opacity 0.45s ease, transform 0.45s ease;
    z-index: 3;
}

/* Desktop hover */
.blog-card:hover::after        { opacity: 1; transform: scale(1); }
.blog-card:hover h3,
.blog-card:hover p             { opacity: 0; transform: translateY(-8px); }
.blog-card:hover .blog-cta     { opacity: 1; pointer-events: auto; transform: translateX(-50%) translateY(0); }

@media (max-width: 992px) {
    .blog-grid  { grid-template-columns: 1fr; }
    .blog-card  { min-height: 420px; }
}

@media (max-width: 768px) {
    .blog-card { padding: 70px 24px; min-height: 420px; }

    .blog-card > * {
        transition: opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1),
                    transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .blog-card::after {
        opacity: 0;
        transform: scale(1.05);
        transition: opacity 1.1s ease, transform 1.2s ease;
    }

    .blog-card.mobile-active::after       { opacity: 1; transform: scale(1); }
    .blog-card.mobile-active h3,
    .blog-card.mobile-active p            { opacity: 0; transform: translateY(-12px); }
    .blog-card.mobile-active .blog-cta    { opacity: 1; pointer-events: auto; transform: translateX(-50%) translateY(0); }
}


/* =============================================================
   9. FUTURES PAGE
============================================================= */

.frbox a { color: #0f2a1d; }


/* =============================================================
   10. CORPORATE-STYLING PAGE
============================================================= */

.customadjust {
    height: auto !important;
    padding-top: 20px !important;
}

@media (max-width: 768px) {
    .customadjust {
        height: 136% !important;
        padding-top: 0px !important;
    }
}


/* =============================================================
   11. CONNECT PAGE
============================================================= */

.main-left-cta {
    border-left: 2px solid #0f2a1d;
    padding-left: 20px;
    height: 239px;
    position: absolute;
    display: flex;
}

@media (max-width: 576px) {
    .main-left-cta { height: 238px; }
    .split-contact-content { padding: 60px 60px 0px 24px; }
}

@media (min-width: 576px) {
    .split-contact-content { padding: 80px 80px 0px 48px; }
}


/* =============================================================
   12. THANK-YOU PAGE
============================================================= */

.lux-thankyou-section {
    max-width: 1200px;
    margin: 140px auto 40px auto;
    border-radius: 10px;
    overflow: hidden;
    background: #f5f5ee;
    padding: 120px 40px;
}

.lux-thankyou-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.lux-thankyou-content { max-width: 700px; }

.lux-thankyou-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 60px;
    font-weight: 400;
    color: #0f2a1d;
    letter-spacing: -2px;
    line-height: 1.1;
    margin-bottom: 30px;
}

.lux-thankyou-title em { font-style: italic; }

.lux-thankyou-divider {
    width: 120px;
    height: 2px;
    background: #0f2a1d;
    margin: 0 auto 40px;
    opacity: 0.8;
}

.lux-thankyou-text {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 1.8;
    color: #0f2a1d;
    margin-bottom: 50px;
}

.lux-thankyou-btn {
    display: inline-block;
    padding: 12px 40px;
    border: 1px solid #0f2a1d;
    border-radius: 999px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #0f2a1d;
    text-decoration: none;
    transition: all 0.3s ease;
}

.lux-thankyou-btn:hover {
    background: #0f2a1d;
    color: #f5f5ee;
}

@media (max-width: 768px) {
    .lux-thankyou-section {
        padding: 120px 24px;
        margin: 40px 0px;
    }

    .lux-thankyou-title {
        font-size: 36px;
        letter-spacing: -1px;
    }

    .lux-thankyou-text { font-size: 15px; }
}


/* =============================================================
   13. REQUEST-ACCESS PAGE
============================================================= */

.custom-select {
    position: relative;
    width: 100%;
    font-family: "Inter";
}

.select-selected {
    background-color: #f5f5ee;
    padding: 12px 16px;
    border: 1px solid #0f2a1d;
    cursor: pointer;
    color: #757575;
}

.select-items {
    position: absolute;
    background-color: #0f2a1d;
    color: #ffffff;
    width: 100%;
    border-radius: 6px;
    margin-top: 5px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    z-index: 99;
    font-size: 14px;
}

.select-items div { padding: 12px 16px; cursor: pointer; }
.select-items div:hover { background-color: #1e293b; }
.select-hide { display: none; }

.access-inner {
    max-width: 1200px;
    margin: 0 auto;
    background: #f5f5ee;
    border-radius: 0.625rem;
    padding: 80px 0;
    display: flex;
    justify-content: center;
}

.access-content {
    width: 100%;
    max-width: 720px;
    padding: 0 24px;
}

.access-header { margin-bottom: 56px; }

.access-header h2 {
    font-family: "Inter", sans-serif;
    font-size: 48px;
    letter-spacing: -2px;
    margin-bottom: 14px;
    color: #0f2a1d;
}

.form-consent p a { color: #0f2a1d; }

.access-header p {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.7;
    color: #0f2a1d;
}

.access-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.form-group { display: flex; flex-direction: column; }

.form-group label {
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: #0f2a1d;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 10px 12px;
    background: transparent;
    border: 1px solid #0f2a1d;
    outline: none;
    color: #757575;
}

.form-group small {
    margin-top: 8px;
    font-size: 13px;
    font-style: italic;
    font-weight: 300;
}

.form-submit { margin-top: 32px; }

.access-btn {
    position: relative;
    padding: 6px 30px;
    border-radius: 999px;
    overflow: hidden;
    font-size: 13px;
    letter-spacing: 2px;
    background: #0f2a1d;
    border: 1px solid rgba(15, 42, 29, 0.6);
    color: #f5f5ee;
    margin-top: -30px;
}

.access-btn:hover { background: #0f2a1d; color: #f5f5ee; }

@media (max-width: 992px) {
    .access-header h2 { font-size: 38px; }
}

@media (max-width: 576px) {
    .access-inner        { padding: 56px 0; }
    .access-header h2    { font-size: 32px; }
}

.form-below {
    margin-top: 8px !important;
    margin-bottom: 10px !important;
}

/* Lifestyle tag input */
.lifestyle-field { position: relative; }

.lifestyle-input {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    padding: 10px 12px;
    border: 1px solid #0f2a1d;
    background: transparent;
}

.lifestyle-input input {
    border: none;
    outline: none;
    background: transparent;
    flex: 1;
    min-width: 160px;
    font-size: 16px;
    color: #757575;
    padding: 0;
}

.lifestyle-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(15, 42, 29, 0.08);
    font-size: 13px;
    color: #0f2a1d;
    white-space: nowrap;
}

.lifestyle-tag button {
    border: none;
    background: none;
    cursor: pointer;
    font-size: 14px;
    line-height: 1;
    padding: 0;
    color: #0f2a1d;
}

.lifestyle-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: 100%;
    display: none;
    list-style: none;
    margin: 0;
    padding: 0;
    background: #0f2a1d;
    border: 1px solid #0f2a1d;
    border-radius: 0.625rem;
    overflow: hidden;
    z-index: 20;
}

.lifestyle-dropdown li {
    padding: 12px 14px;
    cursor: pointer;
    font-size: 14px;
    color: #f5f5ee;
}

.lifestyle-dropdown li:hover { background: rgb(7 27 18); }
