/* =====================================================================
   THE NATURAL HAIR LOFT — Global Stylesheet
   Editorial luxury · warm champagne, espresso & ivory
   ===================================================================== */

/* ---------- Design Tokens ---------- */
:root{
    --gold:#C9A96E;
    --gold-deep:#A8854B;
    --gold-light:#E4C893;
    --white: #fff;
    --gold-lt: #E8D5A3;
    --gold-dk: #9E7A43;
    --blush: #E8D5C4;
    --cream: #FDF9F4;
    --text-dark: #1C1008;
    --text-mid: #4A3728;
    --espresso:#2C1A0E;
    --espresso-soft:#473425;
    --espresso-mid: #2E1A0E;
    --espresso-lt: #5C3D2E;
    --ivory:#FAF6F0;
    --ivory-deep:#F1E9DD;
    --blush:#E8C4B8;
    --sage:#9DAF88;
    --line:rgba(201,169,110,.32);
    --shadow-soft:0 18px 50px -22px rgba(44,26,14,.30);
    --shadow-card:0 24px 60px -28px rgba(44,26,14,.45);

    --ff-display:'Cormorant Garamond', Georgia, serif;
    --ff-sub:'Playfair Display', Georgia, serif;
    --ff-body:'DM Sans', system-ui, sans-serif;
    --ff-script:'Great Vibes', cursive;

    --maxw:1240px;
    --ease:cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}
body {
    font-family: var(--ff-body);
    background: var(--ivory);
    color: var(--espresso);
    line-height: 1.7;
    font-size: 17px;
    overflow-x: hidden;
    letter-spacing: 0.01em;
    -webkit-font-smoothing: antialiased;
}
img {
    max-width: 100%;
    display: block;
}
a {
    color: inherit;
    text-decoration: none;
}
ul {
    list-style: none;
}
button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}
.container--sm {
    max-width: 860px;
}
.container--lg {
    max-width: 1440px;
}

.section {
    padding: 100px 0;
}
.section--sm {
    padding: 60px 0;
}
.section--lg {
    padding: 140px 0;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}
.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

/* ---------- Typography ---------- */
h1,
h2,
h3,
h4 {
    font-family: var(--ff-display);
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: 0.005em;
}
.serif-sub {
    font-family: var(--ff-sub);
}
h1 {
    font-size: clamp(2.8rem, 6vw, 5.6rem);
}
h2 {
    font-size: clamp(2.1rem, 4.6vw, 3.6rem);
}
h3 {
    font-size: clamp(1.5rem, 2.6vw, 2.1rem);
}
/*p {
    max-width: 62ch;
}*/
.split p,
p{
    margin-bottom: 14px;
}
.split ul li {
    position: relative;
    padding-left: 1.6rem;
    color: var(--espresso-soft);
    font-size: 0.96rem;
}
.split ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.7em;
    width: 8px;
    height: 8px;
    border: 1px solid var(--gold);
    border-radius: 50%;
}
.eyebrow {
    font-family: var(--ff-body);
    font-size: 0.72rem;
    letter-spacing: 0.42em;
    text-transform: uppercase;
    color: var(--gold-deep);
    font-weight: 600;
    display: inline-block;
}
.eyebrow::before {
    content: "";
    display: inline-block;
    width: 28px;
    height: 1px;
    background: var(--gold);
    vertical-align: middle;
    margin-right: 14px;
    transform: translateY(-3px);
}

.script {
    font-family: var(--ff-script);
    color: var(--gold-deep);
    font-size: 1.4em;
    line-height: 1;
}

.lead {
    font-size: 1.18rem;
    color: var(--espresso-soft);
}
.center {
    text-align: center;
}
.muted {
    color: var(--espresso-soft);
}

/* gold accent on words */
.gold {
    color: var(--gold-deep);
}



.method-tabs {
    display: flex;
    gap: 4px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}
.method-tab {
    padding: 12px 28px;
    border: none;
    background: var(--blush);
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    color: var(--text-mid);
    border-radius: 2px;
}
.method-tab:hover,
.method-tab.active {
    background: var(--espresso);
    color: var(--gold-lt);
}
.method-section {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: start;
    margin-bottom: 100px;
    padding-bottom: 100px;
    border-bottom: 1px solid var(--blush);
}
.method-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}
.method-section:nth-child(even) {
    direction: rtl;
}
.method-section:nth-child(even) > * {
    direction: ltr;
}
.method-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--espresso);
    color: var(--gold);
    font-family: var(--font-sans);
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 2px;
    margin-bottom: 20px;
}
.method-photo {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.method-photo img{
    width: 100%;
    height: 580px;
    object-fit: cover;
    border-radius: 15px;
}
.compare-table {
    width: 100%;
    border-collapse: collapse;
}
.compare-table th {
    padding: 16px 20px;
    background: var(--espresso);
    color: var(--gold-lt);
    font-family: var(--font-sans);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-align: left;
}
.compare-table td {
    padding: 16px 20px;
    border-bottom: 1px solid var(--blush);
    font-size: 0.88rem;
    color: var(--blush);
}
.compare-table tr:hover td {
    background: var(--ivory);
}
.compare-table tr:hover td{
    color: var(--dark);
}
.compare-table .best {
    color: var(--gold-dk);
    font-weight: 600;
}
.ideal-for {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 16px 0;
}
.ideal-tag {
    background: var(--blush);
    color: var(--espresso);
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    padding: 6px 14px;
    border-radius: 50px;
}
.hair-concerns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.concern-item {
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.concern-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
}
.concern-item h5 {
    font-size: 0.95rem;
    margin-bottom: 6px;
}
.concern-item p {
    font-size: 0.82rem;
    color: var(--text-lt);
    margin: 0;
}

.btn_group{
    display: block ruby;
    grid-template-columns: 1fr 1fr;
}
.text-center{
    text-align: center;
}
.justify-content-center{
    justify-content: center;
}
.align-items-center{
    align-items: center;
}
/* ---------- Layout ---------- */
.wrap {
    max-width: var(--maxw);
    margin-inline: auto;
    padding-inline: clamp(1.2rem, 5vw, 3rem);
}
section {
    position: relative;
}
.section-pad {
    padding-block: clamp(4.5rem, 9vw, 8rem);
}
.divider {
    width: 64px;
    height: 1px;
    background: var(--gold);
    margin: 1.5rem auto;
    opacity: 0.8;
}
.divider.left {
    margin-left: 0;
}

/* ornament */
.ornament {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--gold);
    justify-content: center;
    margin: 0 auto 1.4rem;
}
.ornament::before,
.ornament::after {
    content: "";
    height: 1px;
    width: 46px;
    background: linear-gradient(90deg, transparent, var(--gold));
}
.ornament::after {
    background: linear-gradient(90deg, var(--gold), transparent);
}
.ornament svg {
    width: 18px;
    height: 18px;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.7em;
    font-family: var(--ff-body);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    padding: 1.05em 2.2em;
    border-radius: 2px;
    transition: all 0.45s var(--ease);
    position: relative;
    overflow: hidden;
}
.btn-gold {
    background: var(--espresso);
    color: var(--ivory);
    border: 1px solid var(--espresso);
}
.btn-gold::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, var(--gold), var(--gold-light));
    transform: translateY(101%);
    transition: transform 0.5s var(--ease);
    z-index: -1;
}
.btn-gold:hover {
    color: var(--ivory);
    border-color: var(--gold);
}
.btn-gold:hover span{
    color: var(--gold) !important;
}
.btn-gold:hover::after {
    transform: translateY(0);
}
.btn-gold span,
.btn span {
    position: relative;
    z-index: 2;
}

.btn-outline {
    border: 1px solid var(--gold);
    color: var(--espresso);
    background: transparent;
}
.btn-outline:hover {
    background: var(--gold);
    color: #fff;
    border-color: var(--gold);
}
.btn-ghost-light {
    border: 1px solid rgba(255, 255, 255, 0.6);
    color: #fff;
}
.btn-ghost-light:hover {
    background: #fff;
    color: var(--espresso);
}

.btn .arr {
    transition: transform 0.4s var(--ease);
}
.btn:hover .arr {
    transform: translateX(5px);
}

/* ---------- Header ---------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 900;
    padding: 1.5rem 0;
    transition: all 0.5s var(--ease);
}
.site-header .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.brand {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    z-index: 5;
}
.brand .mark {
    width: 30px;
    height: 30px;
    flex: none;
}
.brand .mark path,
.brand .mark circle {
    stroke: var(--gold);
    fill: none;
    stroke-width: 1.6;
}
.brand .mark circle.dot {
    fill: var(--gold);
    stroke: none;
}
.brand-name {
    font-family: var(--ff-display);
    font-weight: 600;
    font-size: 1.12rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    line-height: 1;
    color: var(--espresso);
    transition: color 0.4s;
}
.brand-name small {
    display: block;
    font-family: var(--ff-body);
    font-size: 0.54rem;
    letter-spacing: 0.42em;
    color: var(--gold-deep);
    margin-top: 5px;
    font-weight: 600;
}

/* =========================================================
   MAIN NAVIGATION
========================================================= */

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links > a,
.nav-dropdown > .nav-dropdown-toggle {
    font-size: 0.74rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--gold);
    position: relative;
    padding: 4px 0;
    transition: color 0.35s ease;
}


/* Main navigation underline */

.nav-links > a::after,
.nav-dropdown > .nav-dropdown-toggle::after {
    content: "";
    position: absolute;

    left: 0;
    bottom: 0;

    width: 0;
    height: 1px;

    background: var(--gold);

    transition: width 0.4s var(--ease);
}

.nav-links > a:hover::after,
.nav-links > a.active::after,
.nav-dropdown:hover > .nav-dropdown-toggle::after,
.nav-dropdown > .nav-dropdown-toggle.active::after {
    width: 100%;
}


/* Main navigation hover */

.nav-links > a:hover,
.nav-dropdown:hover > .nav-dropdown-toggle {
    color: var(--gold-deep);
}
.nav-subdropdown-toggle{
    color: var(--espresso) !important;
}
.nav-links a {
    font-size: 0.74rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--white);
    position: relative;
    /*padding: 4px 0;*/
    transition: color 0.35s;
}
.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.4s var(--ease);
}
.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}
.nav-links a:hover {
    color: var(--gold-deep);
}
/* =========================================================
   SERVICES DROPDOWN WRAPPER
========================================================= */

.nav-dropdown {
    position: relative;

    height: 100%;

    display: flex;
    align-items: center;
}


/* Services link */

.nav-dropdown-toggle {
    display: flex !important;
    align-items: center;

    gap: 6px;

    cursor: pointer;
}


/* =========================================================
   MAIN DROPDOWN ARROW
========================================================= */

.dropdown-arrow {
    display: inline-block;

    font-size: 13px;
    line-height: 1;

    margin-top: -2px;

    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}


/* =========================================================
   SERVICES DROPDOWN MENU
========================================================= */

.nav-dropdown-menu {
    position: absolute;

    top: calc(100% + 18px);
    left: 50%;

    width: 250px;

    padding: 10px 0;

    background: #fff;

    border: 1px solid rgba(0, 0, 0, 0.07);

    box-shadow:
        0 20px 50px rgba(45, 30, 20, 0.13);

    transform:
        translateX(-50%)
        translateY(12px);

    opacity: 0;
    visibility: hidden;

    pointer-events: none;

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease,
        transform 0.25s ease;

    z-index: 9999;
}


/*
   Small bridge between Services and dropdown.
   Prevents the dropdown disappearing when moving
   mouse from Services to the dropdown.
*/

.nav-dropdown-menu::before {
    content: "";

    position: absolute;

    top: -18px;
    left: 0;

    width: 100%;
    height: 18px;
}


/* Show Services dropdown */

.nav-dropdown:hover > .nav-dropdown-menu {
    opacity: 1;

    visibility: visible;

    pointer-events: auto;

    transform:
        translateX(-50%)
        translateY(0);
}


/* =========================================================
   DROPDOWN LINKS
========================================================= */

.nav-dropdown-menu > a,
.nav-subdropdown-toggle {
    display: flex;

    align-items: center;
    justify-content: space-between;

    width: 100%;

    box-sizing: border-box;

    padding: 12px 20px;

    font-size: 0.68rem !important;

    letter-spacing: 0.08em !important;

    line-height: 1.4;

    font-weight: 500;

    text-transform: uppercase;

    color: var(--espresso);

    white-space: normal;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        padding-left 0.25s ease;
}


/*
   Remove the normal navigation underline
   from dropdown items.
*/

.nav-dropdown-menu > a::after,
.nav-subdropdown-toggle::after {
    display: none !important;
}


/* Dropdown hover */

.nav-dropdown-menu > a:hover,
.nav-subdropdown:hover > .nav-subdropdown-toggle {
    color: var(--gold-deep);

    background: rgba(190, 150, 85, 0.08);

    padding-left: 25px;
}


/* =========================================================
   NESTED DROPDOWN
   Keratin & Treatments
========================================================= */

.nav-subdropdown {
    position: relative;

    width: 100%;
}


/* Nested dropdown parent */

.nav-subdropdown-toggle {
    cursor: pointer;
}


/* =========================================================
   NESTED DROPDOWN ARROW
========================================================= */

.subdropdown-arrow {
    display: inline-block;

    font-size: 18px;

    line-height: 1;

    margin-left: 10px;

    transition:
        transform 0.25s ease,
        color 0.25s ease;
}

.nav-subdropdown:hover .subdropdown-arrow {
    transform: translateX(4px);

    color: var(--gold-deep);
}


/* =========================================================
   NESTED DROPDOWN MENU
========================================================= */

.nav-subdropdown-menu {
    position: absolute;

    top: -10px;

    left: calc(100% + 1px);

    width: 250px;

    padding: 10px 0;

    background: #fff;

    border: 1px solid rgba(0, 0, 0, 0.07);

    box-shadow:
        0 20px 50px rgba(45, 30, 20, 0.13);

    transform: translateX(12px);

    opacity: 0;
    visibility: hidden;

    pointer-events: none;

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease,
        transform 0.25s ease;

    z-index: 10000;
}


/*
   Small invisible bridge between parent
   and nested menu.
*/

.nav-subdropdown-menu::before {
    content: "";

    position: absolute;

    top: 0;

    left: -15px;

    width: 15px;

    height: 100%;
}


/* Show nested dropdown */

.nav-subdropdown:hover > .nav-subdropdown-menu {
    opacity: 1;

    visibility: visible;

    pointer-events: auto;

    transform: translateX(0);
}


/* =========================================================
   NESTED DROPDOWN LINKS
========================================================= */

.nav-subdropdown-menu a {
    display: block;

    width: 100%;

    box-sizing: border-box;

    padding: 12px 20px;

    font-size: 0.68rem !important;

    letter-spacing: 0.08em !important;

    line-height: 1.4;

    font-weight: 500;

    text-transform: uppercase;

    color: var(--espresso);

    white-space: normal;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        padding-left 0.25s ease;
}


/* Remove underline */

.nav-subdropdown-menu a::after {
    display: none !important;
}


/* Nested link hover */

.nav-subdropdown-menu a:hover {
    color: var(--gold-deep);

    background: rgba(190, 150, 85, 0.08);

    padding-left: 25px;
}


/* =========================================================
   DROPDOWN BUTTON / BOOK NOW FIX
========================================================= */

/*
   Your Book Now button should not receive
   the normal navigation underline.
*/

.nav-links > a.btn::after {
    display: none !important;
}

.nav-links > a.btn {
    padding: 12px 22px;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 991px) {

    /*
       If your mobile navigation uses .mobile-nav,
       hide desktop dropdown.
    */

    .nav-links {
        display: none;
    }

    .nav-dropdown-menu {
        display: none;
    }

    .nav-subdropdown-menu {
        display: none;
    }

}


/* =========================================================
   LARGE DESKTOP
========================================================= */

@media (min-width: 1200px) {

    .nav-dropdown-menu {
        width: 260px;
    }

    .nav-subdropdown-menu {
        width: 260px;
    }

}


/* =========================================================
   EXTRA SAFETY
========================================================= */

/*
   Prevent images/content from appearing above
   the dropdown.
*/

.site-header .wrap {
    position: relative;
    z-index: 10001;
}


/*
   Keep dropdown above hero and other sections.
*/

.page-hero,
section {
    position: relative;
    z-index: 1;
}

/* transparent over hero */
.site-header.over-hero .brand-name {
    color: #fff;
}
.site-header.over-hero .brand-name small {
    color: var(--gold-light);
}
/*.site-header.over-hero .nav-links a:not(.btn) {
    color: rgba(255, 255, 255, 0.92);
}
.site-header.over-hero .nav-links a:not(.btn):hover {
    color: #fff;
}*/
.site-header.over-hero .brand .mark path {
    stroke: var(--gold-light);
}
.site-header.over-hero .burger span {
    background: #111;
}
body.menu-open .burger span{
    background: #fff;
}
/* scrolled */
.site-header.scrolled {
    background: rgba(250, 246, 240, 0.88);
    backdrop-filter: blur(14px);
    padding: 0.85rem 0;
    box-shadow:
        0 1px 0 var(--line),
        0 14px 30px -24px rgba(44, 26, 14, 0.5);
}
.site-header.scrolled .brand-name {
    color: var(--espresso);
}
.site-header.scrolled .nav-links a:not(.btn) {
    color: var(--espresso);
}
.site-header.scrolled img{
    
}
.nav-links a.btn-gold,
.nav-links a.btn-gold span {
    color: var(--ivory);
}
.nav-links a.btn-gold:hover,
.nav-links a.btn-gold:hover span {
    color: var(--gold);
}

/* burger */
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 30px;
    z-index: 5;
}
.burger span {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--espresso);
    transition: 0.4s var(--ease);
}
body.menu-open .burger span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
body.menu-open .burger span:nth-child(2) {
    opacity: 0;
}
body.menu-open .burger span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* mobile overlay nav */
.mobile-nav {
    position: fixed;
    inset: 0;
    background: var(--espresso);
    z-index: 800;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 0.8rem;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s var(--ease);
    padding-top: 70px;
}
.mobile-nav.open {
    opacity: 1;
    visibility: visible;
}
.mobile-nav a {
    font-family: var(--ff-display);
    font-size: 1.2rem;
    color: var(--ivory);
    letter-spacing: 0.04em;
    opacity: 0;
    transform: translateY(18px);
    transition: 0.5s var(--ease);
}
.mobile-nav.open a {
    opacity: 1;
    transform: none;
}
.mobile-nav a:hover {
    color: var(--gold-light);
}
.mobile-nav .m-cta {
    margin-top: 1rem;
    font-family: var(--ff-body);
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border: 1px solid var(--gold);
    padding: 0.9em 2em;
    color: var(--gold-light);
}
.mobile-nav .m-social {
    margin-top: 1.4rem;
    font-family: var(--ff-body);
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    color: var(--gold);
    text-transform: uppercase;
}

/* ---------- Hero ---------- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    color: #fff;
}
.hero .wrap{
    margin-inline: unset;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -2;
}
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 22%;
}
.hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        rgba(28, 16, 8, 0.78) 0%,
        rgba(44, 26, 14, 0.45) 45%,
        rgba(44, 26, 14, 0.12) 100%
    );
}
.hero-grain {
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: 0.5;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
}
.hero-inner {
    max-width: 960px;
    padding-block: 8rem;
}
.hero .eyebrow {
    color: var(--gold-light);
}
.hero .eyebrow::before {
    background: var(--gold-light);
}
.hero h1 {
    color: #fff;
    margin: 1.2rem 0 1.4rem;
    text-shadow: 0 6px 40px rgba(0, 0, 0, 0.35);
}
.hero h1 em {
    font-style: italic;
    color: var(--gold-light);
}
.hero-tag {
    font-family: var(--ff-sub);
    font-style: italic;
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 2.2rem;
    max-width: 54ch;
}
.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.scroll-hint {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.62rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.scroll-hint::after {
    content: "";
    width: 1px;
    height: 42px;
    background: linear-gradient(var(--gold-light), transparent);
    animation: scrollPulse 2.4s var(--ease) infinite;
}

/* page hero (interior) */
.page-hero {
    min-height: 62vh;
    display: flex;
    align-items: flex-end;
    position: relative;
    color: #fff;
    overflow: hidden;
}
.page-hero .hero-bg img {
    object-position: center 28%;
}
.page-hero .hero-bg::after {
    background: linear-gradient(180deg, rgba(28, 16, 8, 0.55), rgba(28, 16, 8, 0.35) 50%, rgba(28, 16, 8, 0.8));
}
.page-hero .wrap {
    padding: 6.5rem 3.2rem 1.9rem;
    position: relative;
}
.page-hero h1 {
    color: #fff;
}
.page-hero .crumbs {
    font-size: 0.7rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 1rem;
    display: none;
}
.page-hero .crumbs a {
    opacity: 0.8;
}
.page-hero .crumbs a:hover {
    opacity: 1;
}

/* ---------- Stat / social proof bar ---------- */
.proofbar {
    background: var(--espresso);
    color: var(--ivory);
    text-align: center;
}
.proofbar .wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: clamp(1.5rem, 5vw, 4rem);
    padding-block: 2.4rem;
}
.proof {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}
.proof b {
    font-family: var(--ff-display);
    font-size: 2.4rem;
    color: var(--gold-light);
    line-height: 1;
}
.proof span {
    font-size: 0.66rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(250, 246, 240, 0.72);
}

/* ---------- Intro / split ---------- */
.split {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: clamp(2rem, 5vw, 5rem);
    align-items: center;
}
.split.reverse {
    direction: rtl;
}
.split.reverse > * {
    direction: ltr;
}
.split-media {
    position: relative;
}
.split-media img{
    border-radius: 15px;
}
.split-media img {
    box-shadow: var(--shadow-card);
    width: 100%;
    object-fit: cover;
}
.split-media .frame {
    position: absolute;
    inset: 18px -18px -18px 18px;
    border: 1px solid var(--gold);
    z-index: -1;
    border-radius: 2px;
}
.media-badge {
    position: absolute;
    bottom: -26px;
    right: -10px;
    background: var(--ivory);
    border: 1px solid var(--line);
    padding: 1rem 1.4rem;
    text-align: center;
    box-shadow: var(--shadow-soft);
}
.media-badge b {
    font-family: var(--ff-display);
    font-size: 2rem;
    color: var(--gold-deep);
    display: block;
    line-height: 1;
}
.media-badge span {
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--espresso-soft);
}

.br-15{
    border-radius: 15px !important;
}
/* ---------- Feature cards ---------- */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.4rem;
}
.s-card {
    position: relative;
    padding: 2.4rem 1.8rem;
    border-radius: 3px;
    overflow: hidden;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.7), rgba(241, 233, 221, 0.4));
    backdrop-filter: blur(8px);
    border: 1px solid rgba(201, 169, 110, 0.28);
    box-shadow: var(--shadow-soft);
    transition:
        transform 0.5s var(--ease),
        box-shadow 0.5s var(--ease),
        border-color 0.5s;
}
.s-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card);
    border-color: var(--gold);
}
.s-card img{
    width: 48px;
    margin-bottom: 15px;
}
.s-card .num {
    font-family: var(--ff-display);
    font-size: 1rem;
    color: var(--gold);
    letter-spacing: 0.2em;
}
.s-card .ico {
    width: 42px;
    height: 42px;
    color: var(--gold-deep);
    margin: 1rem 0;
}
.s-card h3 {
    font-size: 1.42rem;
    margin-bottom: 0.5rem;
}
.s-card p {
    font-size: 0.92rem;
    color: var(--espresso-soft);
}
.s-card .more {
    margin-top: 1.2rem;
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-deep);
    display: inline-flex;
    gap: 0.5em;
    font-weight: 600;
}
.s-card .more .arr {
    transition: transform 0.4s var(--ease);
}
.s-card:hover .more .arr {
    transform: translateX(5px);
}

/* ---------- Featured transformation ---------- */
.feature-tx {
    background: var(--ivory-deep);
}
.tx-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border: 1px solid var(--line);
    background: #fff;
    box-shadow: var(--shadow-card);
}
.tx-grid figure {
    position: relative;
    overflow: hidden;
    /*aspect-ratio: 4/5;*/
}
.tx-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.1s var(--ease);
}
.tx-grid figure:hover img {
    transform: scale(1.05);
}
.tx-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(44, 26, 14, 0.78);
    color: var(--gold-light);
    font-size: 0.6rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    padding: 0.5em 1em;
    backdrop-filter: blur(4px);
}

/* ---------- Meet Michelle ---------- */
.meet {
    background: linear-gradient(180deg, var(--ivory), var(--ivory-deep));
}

/* ---------- Instagram strip ---------- */
.ig-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
}
.ig-strip a {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    display: block;
}
.ig-strip img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition:
        transform 0.8s var(--ease),
        filter 0.5s;
}
.ig-strip a::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(44, 26, 14, 0);
    transition: 0.4s;
}
.ig-strip a:hover img {
    transform: scale(1.08);
}
.ig-strip a:hover::after {
    background: rgba(44, 26, 14, 0.28);
}

/* ---------- Testimonials ---------- */
.testi {
    background: var(--espresso);
    color: var(--ivory);
    text-align: center;
}
.testi .quote-mark {
    font-family: var(--ff-display);
    font-size: 6rem;
    color: var(--gold);
    line-height: 0.4;
    opacity: 0.6;
}
.testi-slide {
    max-width: 760px;
    margin-inline: auto;
}
.testi-q {
    font-family: var(--ff-sub);
    font-style: italic;
    font-size: clamp(1.4rem, 2.1vw, 1.4rem);
    line-height: 1.5;
    color: #fff;
    min-height: 5.5em;
    display: flex;
    align-items: center;
    justify-content: center;
}
.testi-name {
    margin-top: 1.4rem;
    font-size: 0.72rem;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--gold-light);
}
.testi-name span {
    display: block;
    color: rgba(250, 246, 240, 0.55);
    margin-top: 0.4rem;
    letter-spacing: 0.18em;
}
.testi-dots {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 2rem;
}
.testi-dots button {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    transition: 0.4s;
}
.testi-dots button.active {
    background: var(--gold);
    transform: scale(1.3);
}
.stars {
    color: var(--gold);
    letter-spacing: 0.2em;
    font-size: 0.9rem;
    margin-bottom: 1.2rem;
}

/* ---------- CTA band ---------- */
.cta-band {
    position: relative;
    color: #fff;
    text-align: center;
    overflow: hidden;
}
.cta-band .hero-bg img {
    object-position: center 35%;
}
.cta-band .hero-bg::after {
    background: linear-gradient(rgba(28, 16, 8, 0.72), rgba(28, 16, 8, 0.72));
}
.cta-band h2 {
    color: #fff;
    margin-bottom: 1rem;
}
.cta-band p {
    margin: 0 auto 2rem;
    color: rgba(255, 255, 255, 0.85);
}

/* ---------- Footer ---------- */
.site-footer {
    background: #211007;
    color: rgba(250, 246, 240, 0.7);
    font-size: 0.9rem;
}
.footer-top {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
    gap: 2.5rem;
    padding-block: 4.5rem 3rem;
}
.footer-brand .brand-name {
    color: var(--ivory);
}
.footer-brand p {
    margin-top: 1.2rem;
    max-width: 34ch;
    color: rgba(250, 246, 240, 0.55);
    font-size: 0.9rem;
}
.f-col h4 {
    font-family: var(--ff-body);
    font-size: 0.7rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.3rem;
    font-weight: 600;
}
.f-col a {
    display: block;
    padding: 0.35rem 0;
    color: rgba(250, 246, 240, 0.7);
    transition:
        color 0.3s,
        padding-left 0.3s;
}
.f-col a:hover {
    color: var(--gold-light);
    padding-left: 6px;
}
.f-col a.btn{
    text-align: center;
    padding: 18px 10px;
}
.f-contact p {
    margin-bottom: 0.6rem;
    color: rgba(250, 246, 240, 0.7);
}
.f-social {
    display: flex;
    gap: 0.8rem;
    margin-top: 1.2rem;
}
.f-social a {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(201, 169, 110, 0.4);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--gold);
    transition: 0.4s;
}
.f-social a:hover {
    background: var(--gold);
    color: var(--espresso);
    transform: translateY(-3px);
}
.f-social svg {
    width: 16px;
    height: 16px;
}
.footer-bottom {
    border-top: 1px solid rgba(201, 169, 110, 0.18);
    padding-block: 1.6rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.74rem;
    letter-spacing: 0.05em;
    color: rgba(250, 246, 240, 0.45);
}
.footer-bottom a:hover {
    color: var(--gold-light);
}

/* ---------- Floating book CTA ---------- */
.float-cta {
    position: fixed;
    right: 1.4rem;
    bottom: 1.4rem;
    z-index: 700;
    background: var(--espresso);
    color: var(--ivory);
    border: 1px solid var(--gold);
    padding: 0.95em 1.5em;
    border-radius: 50px;
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.6em;
    box-shadow: var(--shadow-card);
    transform: translateY(120%);
    transition:
        transform 0.6s var(--ease),
        background 0.4s;
}
.float-cta.show {
    transform: translateY(0);
}
.float-cta:hover {
    background: var(--gold);
    color: var(--espresso);
}
.float-cta svg {
    width: 15px;
    height: 15px;
}

/* ---------- Loading screen ---------- */
.loader {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: var(--espresso);
    display: grid;
    place-items: center;
    transition:
        opacity 0.8s var(--ease),
        visibility 0.8s;
}
.loader.done {
    opacity: 0;
    visibility: hidden;
}
.loader-mark {
    text-align: center;
}
.loader-mark .lm-name {
    font-family: var(--ff-display);
    color: var(--ivory);
    font-size: 1.6rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    overflow: hidden;
}
.loader-mark .lm-name span {
    display: inline-block;
    opacity: 0;
    transform: translateY(100%);
    animation: lmUp 0.7s var(--ease) forwards;
}
.loader-mark .lm-sub {
    font-family: var(--ff-body);
    font-size: 0.6rem;
    letter-spacing: 0.5em;
    color: var(--gold);
    text-transform: uppercase;
    margin-top: 1rem;
    opacity: 0;
    animation: fadeIn 0.8s 1s forwards;
}
.loader-line {
    width: 0;
    height: 1px;
    background: var(--gold);
    margin: 1.2rem auto 0;
    animation: lineGrow 1.4s 0.3s var(--ease) forwards;
}

/* ---------- Custom cursor ---------- */
.cursor-dot,
.cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    border-radius: 50%;
    pointer-events: none;
    z-index: 3000;
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
}
.cursor-dot {
    width: 6px;
    height: 6px;
    background: var(--gold-light);
}
.cursor-ring {
    width: 34px;
    height: 34px;
    border: 1px solid var(--gold);
    transition:
        width 0.3s,
        height 0.3s,
        background 0.3s,
        opacity 0.3s;
    opacity: 0.8;
}
.cursor-ring.hover {
    width: 54px;
    height: 54px;
    background: rgba(201, 169, 110, 0.12);
}
@media (hover: none) {
    .cursor-dot,
    .cursor-ring {
        display: none;
    }
}

/* ---------- generic intro grids ---------- */
.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.6rem;
    margin-top: 2.5rem;
}
.mini {
    padding: 1.8rem;
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 3px;
    box-shadow: var(--shadow-soft);
}
.mini .ico {
    width: 34px;
    height: 34px;
    color: var(--gold-deep);
    margin-bottom: 0.8rem;
}
.mini h4 {
    font-size: 1.25rem;
    margin-bottom: 0.4rem;
}
.mini p {
    font-size: 0.9rem;
    color: var(--espresso-soft);
}

/* utility */
.text-block p + p {
    margin-top: 1.1rem;
}
.tag-pill {
    display: inline-block;
    font-size: 0.62rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold-deep);
    border: 1px solid var(--line);
    padding: 0.45em 1em;
    border-radius: 40px;
    background: #fff;
}
.price-table {
    width: 100%;
    border-collapse: collapse;
}
.price-table thead th {
    padding: 14px 20px;
    background: var(--espresso);
    color: var(--gold-lt);
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-align: left;
}
.price-table thead th:last-child {
    text-align: right;
}
.price-table tbody tr {
    border-bottom: 1px solid var(--blush);
    transition: background 0.2s;
}
.price-table tbody tr:hover {
    background: var(--ivory);
}
.price-table tbody td {
    padding: 18px 20px;
    font-size: 0.9rem;
    color: var(--text-mid);
    vertical-align: top;
}
.price-table tbody td:first-child {
    color: var(--espresso);
    font-weight: 500;
}
.price-table tbody td:last-child {
    text-align: right;
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--gold-dk);
    font-weight: 500;
    white-space: nowrap;
}
.price-table tbody td.note {
    font-size: 0.78rem;
    color: var(--text-lt);
}
.price-section {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    margin-bottom: 40px;
}
.price-section__header {
    background: linear-gradient(90deg, var(--espresso), var(--espresso-mid));
    padding: 24px 28px;
    display: flex;
    align-items: center;
    gap: 16px;
}
.price-section__header .icon {
    font-size: 1.6rem;
}
.price-section__header h3 {
    color: var(--ivory);
    font-size: 1.3rem;
}
.price-section__header p {
    color: rgba(242, 235, 224, 0.6);
    font-size: 0.8rem;
    margin: 0;
}
.featured-pkg {
    border: 2px solid var(--gold);
    border-radius: var(--radius);
    overflow: hidden;
}
.pkg-header-gold {
    background: linear-gradient(90deg, var(--gold-dk), var(--gold));
    padding: 24px 28px;
}
.pkg-header-gold h3 {
    color: var(--espresso);
}
.pkg-header-gold p {
    color: var(--espresso-mid);
    font-size: 0.8rem;
    margin: 0;
}
.info-note {
    background: var(--blush);
    border-radius: var(--radius);
    padding: 20px 24px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-top: 24px;
}
.info-note .icon {
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 2px;
}
.info-note p {
    font-size: 0.85rem;
    color: var(--text-mid);
    margin: 0;
}

.position-relative {
    position: relative !important;
}
.masonry {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
}

.team_box{
    position: relative;
    height: 100%;
}
.card-style-fifteen {
    background: #fff;
    box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.02);
    border-radius: 30px;
    overflow: hidden;
    text-align: center;
    padding-bottom: 30px;

    height: 100%;
    display: flex;
    flex-direction: column;
}

.card-style-fifteen .media:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(41,89,75,.3);
    opacity: 0;
    transition: all .3s ease-in-out 0s
}

/* Team image container */
.card-style-fifteen .media {
    position: relative;
    overflow: hidden;
}

/* Both images */
.card-style-fifteen .media .team-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.5s ease, transform 0.6s ease;
}

/* Main image */
.card-style-fifteen .media .team-img-default {
    opacity: 1;
}

/* Hover image */
.card-style-fifteen .media .team-img-hover {
    position: absolute;
    inset: 0;
    opacity: 0;
}

/* Hover effect */
.card-style-fifteen:hover .media .team-img-default {
    opacity: 0;
    transform: scale(1.03);
}

.card-style-fifteen:hover .media .team-img-hover {
    opacity: 1;
    transform: scale(1.03);
}
.card-style-fifteen:hover .media::before,.card-style-fifteen:hover .round-btn {
    opacity: 1
}

.card-style-fifteen h4 {
    font-size: 26px;
    font-weight: 600;
}
.card-style-fifteen h5{
    color: var(--gold);
    margin-bottom: 7px;
    margin-top: 4px;
}
.card-style-fifteen p {
    color: #222;
    padding-left: 15px;
    padding-right: 15px;
    font-size: 15px;
}
.card-style-fifteen .fs-6 a{
    margin-top: 5px;
    display: block;
    color: var(--gold);
}
/* ==========================================
   TEAM POPUP
========================================== */

.team-modal {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;

    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;
    visibility: hidden;

    transition:
        opacity 0.35s ease,
        visibility 0.35s ease;
}

.team-modal.active {
    opacity: 1;
    visibility: visible;
}


/* Overlay */

.team-modal-overlay {
    position: absolute;
    inset: 0;

    background: rgba(20, 15, 10, 0.72);

    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}


/* Popup box */

.team-modal-box {
    position: relative;
    z-index: 2;

    width: min(1100px, 90%);
    height: min(650px, 85vh);

    display: grid;
    grid-template-columns: 45% 55%;

    background: #f8f4ed;

    overflow: hidden;

    transform: translateY(30px) scale(0.97);

    transition: transform 0.4s ease;

    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.25);
}

.team-modal.active .team-modal-box {
    transform: translateY(0) scale(1);
}


/* ==========================================
   LEFT IMAGE - 45%
========================================== */

.team-modal-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.team-modal-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center;
}


/* ==========================================
   RIGHT CONTENT - 55%
========================================== */

.team-modal-content {
    padding: 40px 35px 40px;
    display: block;
    /*flex-direction: column;
    justify-content: center;*/
    overflow-y: scroll;
}

.team-modal-label {
    display: block;

    margin-bottom: 18px;

    font-size: 12px;
    font-weight: 600;

    letter-spacing: 4px;

    color: #a27a3c;

    text-transform: uppercase;
}

.team-modal-content h2 {
    margin: 0 0 8px;

    font-size: clamp(21px, 3.8vw, 42px);
    font-weight: 500;

    line-height: 1.05;

    color: #24170f;
}

.team-modal-content h5 {
    margin: 0;

    font-size: 16px;
    font-weight: 500;

    letter-spacing: 1px;

    color: #9b743c;
}

.team-modal-divider {
    width: 10px;
    height: 1px;

    margin: 18px 0;

    background: #b28a4b;
}

.team-modal-content p {
    margin: 0 0 18px;

    max-width: 600px;

    font-size: 16px;
    line-height: 1.8;

    color: #4d4037;
}


/* Highlight box */

.team-modal-highlight {
    display: flex;
    flex-direction: column;

    gap: 5px;

    margin-top: 18px;
    padding: 18px 20px;

    border-left: 2px solid #b28a4b;

    background: rgba(178, 138, 75, 0.07);
}
.team-modal-highlight .btn{
    margin-top: 15px;
}
.team-modal-highlight strong {
    font-size: 13px;

    text-transform: uppercase;
    letter-spacing: 1.5px;

    color: #24170f;
}

.team-modal-highlight span {
    font-size: 14px;

    line-height: 1.6;

    color: #66584d;
}


/* ==========================================
   CLOSE BUTTON
========================================== */

.team-modal-close {
    position: absolute;

    top: 20px;
    right: 20px;

    z-index: 10;

    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 50%;

    background: rgba(255, 255, 255, 0.9);

    color: #24170f;

    font-size: 28px;
    font-weight: 300;

    line-height: 1;

    cursor: pointer;

    transition: all 0.25s ease;
}

.team-modal-close:hover {
    background: #24170f;
    color: #fff;

    transform: rotate(90deg);
}


/* Prevent body scroll */

body.team-modal-open {
    overflow: hidden;
}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767px) {

    .team-modal {
        align-items: center;
        width: 90%;
    }

    .team-modal-box {
        width: 92%;
        height: 88vh;

        display: flex;
        flex-direction: column;

        overflow-y: auto;
    }

    .team-modal-image {
        width: 100%;
        height: 42%;
        min-height: 260px;

        flex-shrink: 0;
    }

    .team-modal-content {
        width: 100%;

        padding: 35px 28px 40px;
    }

    .team-modal-content h2 {
        font-size: 24px;
    }

    .team-modal-content p {
        font-size: 15px;
        line-height: 1.7;
    }

    .team-modal-close {
        top: 12px;
        right: 12px;

        width: 38px;
        height: 38px;

        font-size: 24px;
    }
}



/* Padding Top */
.pt-0 { padding-top: 0 !important; }
.pt-1 { padding-top: 0.25rem !important; } /* 4px */
.pt-2 { padding-top: 0.5rem !important; }  /* 8px */
.pt-3 { padding-top: 1rem !important; }    /* 16px */
.pt-4 { padding-top: 1.5rem !important; }  /* 24px */
.pt-5 { padding-top: 3rem !important; }    /* 48px */

/* Padding Bottom */
.pb-0 { padding-bottom: 0 !important; }
.pb-1 { padding-bottom: 0.25rem !important; }
.pb-2 { padding-bottom: 0.5rem !important; }
.pb-3 { padding-bottom: 1rem !important; }
.pb-4 { padding-bottom: 1.5rem !important; }
.pb-5 { padding-bottom: 3rem !important; }

@media (min-width: 768px) {
    .pt-md-0 { padding-top: 0 !important; }
    .pt-md-1 { padding-top: 0.25rem !important; }
    .pt-md-2 { padding-top: 0.5rem !important; }
    .pt-md-3 { padding-top: 1rem !important; }
    .pt-md-4 { padding-top: 1.5rem !important; }
    .pt-md-5 { padding-top: 3rem !important; }

    .pb-md-0 { padding-bottom: 0 !important; }
    .pb-md-1 { padding-bottom: 0.25rem !important; }
    .pb-md-2 { padding-bottom: 0.5rem !important; }
    .pb-md-3 { padding-bottom: 1rem !important; }
    .pb-md-4 { padding-bottom: 1.5rem !important; }
    .pb-md-5 { padding-bottom: 3rem !important; }
}
.w-100{
    width: 100%;
}

/*
================================================
13. Blog Wrapper
================================================
*/
.blog-wrapper .section-title {
	margin: 0;
}
.innerpage-wrapper.blog-wrapper {
	padding: 40px 0 80px;
}
/** Single Blog Post **/
.single-blog {
	position: relative;
	margin: 40px 0 0;
}
.single-blog-img {
	width: 100%;
	overflow: hidden;
}
.single-blog-img img {
	width: 100%;
	transition: all 500ms ease;
}
.single-blog:hover .single-blog-img img {
	width: 100%;
	opacity: 0.9;
	transform: scale(1.1);
}
.single-blog .post-content {
	background-color: #fff;
	-webkit-box-shadow: 0 12px 20px rgba(1, 84, 85, 0.1);
	box-shadow: 0 12px 20px rgba(1, 84, 85, 0.1);
	border-radius: 10px;
	padding: 30px;
	position: relative;
	margin: 0 auto;
	margin-top: -95px;
	width: calc(100% - 20px);
	z-index: 1;
}
.single-blog h3 {
	font-size: 1.2rem;
}
.single-blog h3 a:hover {
	color: var(--gold);
}
.single-blog:hover h3 a {
	color: var(--gold);
}
.meta-tags {
	color: #83868c;
}
.meta-tags a, .meta-tags span {
	display: inline-block !important;
	color: #83868c;
	font-size: 12px;
	text-transform: uppercase;
	position: relative;
}
.meta-tags a i, .meta-tags span i {
	margin-right: 5px;
	color: var(--gold);
}
.meta-tags {
	color: #83868c;
}
.meta-tags .commentCount {
	margin-left: 15px;
}
/** Blog Details **/
.blog-content-wrap .blog-item {
	padding-top: 4px;
	margin-bottom: 30px;
	background-color: #fff;
	-webkit-box-shadow: 0 0 40px rgba(14,16,48,0.05);
	-moz-box-shadow: 0 0 40px rgba(14,16,48,0.05);
	box-shadow: 0 0 40px rgba(14,16,48,0.05);
	border: 1px solid rgba(127,136,152,0.1);
	position: relative;
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	-ms-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
}
.blog-content-wrap .blog-item .blog-img-box {
	position: relative;
	z-index: 1;
	width: calc(100% - 10px);
	margin-left: auto;
	margin-right: auto;
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	-ms-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
}
.blog-content-wrap .blog-item .blog-img-box img {
	width: 100%;
}
.blog-content-wrap .blog-item .blog-img-box .blog__date {
	position: absolute;
	top: 15px;
	left: 15px;
	z-index: 1;
	background-color: #fff;
	display: inline-block;
	padding: 8px 15px;
	font-weight: 600;
	font-size: 14px;
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	-ms-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
}
.blog-content-wrap .blog-item:hover .blog-img-box .blog__date {
	background-color: var(--gold);
	color: #fff;
}
.blog-content-wrap .blog-item .blog-img-box::after {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background-color: #131536;
	opacity: .20;
	content: "";
}
.blog-content-wrap .blog-item .blog-content h1{
    font-size: clamp(2.8rem, 3.8vw, 3.1rem);
    color: var(--gold-deep);
    margin-bottom: 15px;
}
.blog-content-wrap .blog-item .blog-content h2,
.blog-content-wrap .blog-item .blog-content h3,
.blog-content-wrap .blog-item .blog-content h4,
.blog-content-wrap .blog-item .blog-content ul,
.blog-content-wrap .blog-item .blog-content ol{
    margin-bottom: 15px;
}
.text_box h2,
.text_box h3,
.text_box h4,
.text_box ul,
.text_box ol{
    margin-bottom: 15px;
}
.blog-content-wrap .blog-item .blog-content {
	padding: 27px 30px 30px 30px;
}
.blog-content-wrap .blog-item .blog-content .blog-list {
	margin-bottom: 16px;
}
.blog-content-wrap .blog-item .blog-content .blog-list li {
	display: inline-block;
	font-size: 15px;
	font-weight: 500;
	position: relative;
	margin-right: 8px;
}
.blog-content-wrap .blog-item .blog-content .blog-list li span {
	color: #ff5e14;
	margin-right: 5px;
}
.blog-content-wrap .blog-item .blog-content .blockquote-box {
	margin-top: 30px;
	margin-bottom: 30px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	padding: 40px 40px;
	position: relative;
	background-image: url("../images/counter-bg.png");
	background-size: cover;
	background-position: center;
}
.blog-content-wrap .blog-item .blog-content .blockquote-box .quote-content {
	position: relative;
	z-index: 1;
}
.blog-content-wrap .blog-item .blog-content .blockquote-box .quote-content i {
	font-size: 40px;
	color: #fff;
}
.blog-content-wrap .blog-item .blog-content .blockquote-box .quote-content p {
	line-height: 28px;
	color: #fff;
	margin-top: 10px;
	margin-bottom: 10px;
}
.blog-content-wrap .blog-item .blog-content .blockquote-box .quote-content h4 {
	color: #fff;
	font-weight: 500;
}
.blog-content-wrap .blog-item .blog-content .blockquote-box .quote-content h4 span {
	font-size: 16px;
}
.blog-content-wrap .blog-item .blog-content .blockquote-box::after {
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #131536;
	opacity: .96;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
}
.blog-content-wrap .blog-item .blog-content .check-upcoming .blog__title {
	font-size: 26px;
	font-weight: 600;
	color: #151515;
}
.blog-content-wrap .blog-item .blog-content .check-upcoming ul {
	margin-bottom: 30px;
    padding-left: 15px;
}
.blog-content-wrap .blog-item .blog-content .check-upcoming ul li {
	position: relative;
	margin-bottom: 10px;
    list-style: disc;
}
.blog-content-wrap .blog-item .blog-content .check-upcoming .upcoming-img .upcoming__img {
	margin-bottom: 30px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
}
.blog-content-wrap .blog-item .blog-content .tags-item {
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
	border-top: 1px solid rgba(127,136,151,0.1);
	border-bottom: 1px solid rgba(127,136,151,0.1);
	margin-top: 30px;
	padding-top: 30px;
	padding-bottom: 30px;
	margin-bottom: 30px;
}
.blog-content-wrap .blog-item .blog-content .tags-item ul {
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
}
.blog-content-wrap .blog-item .blog-content .tags-item ul li {
	margin-right: 5px;
	text-transform: capitalize;
}
.blog-content-wrap .blog-item .blog-content .tags-item ul li {
	text-transform: capitalize;
}
.blog-content-wrap .blog-item .blog-content .tags-item ul li span {
	color: #131536;
	font-weight: 700;
}
.blog-content-wrap .blog-item .blog-content .tags-item ul li a {
	color: #7f8897;
	display: block;
	border: 1px solid rgba(127,136,151,0.2);
	padding: 4px 14px;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;
	font-weight: 500;
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	-ms-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
}
.blog-content-wrap .blog-item .blog-content .tags-item ul li a:hover {
	background-color: var(--gold);
	color: #fff;
	border-color: var(--gold);
}
.blog-content-wrap .blog-item .blog-content .tags-item ul.social__links {
	margin-left: auto;
}
.blog-content-wrap .blog-item .blog-content .tags-item ul.social__links li {
	margin-right: 14px;
}
.blog-content-wrap .blog-item .blog-content .tags-item ul.social__links li a {
	display: block;
	border: 0;
	padding: 0;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
}
.blog-content-wrap .blog-item .blog-content .tags-item ul.social__links li a:hover {
	color: var(--gold);
	background-color: transparent;
}
.blog-content-wrap .blog-item .blog-content .comments-wrapper .comments-title {
	font-size: 30px;
	font-weight: 600;
	margin-bottom: 30px;
}
.blog-content-wrap .blog-item .blog-content .comments-wrapper .comments-list li .comment {
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	margin-bottom: 50px;
	border-bottom: 1px solid rgba(127,136,151,0.1);
	padding-bottom: 50px;
}
.blog-content-wrap .blog-item .blog-content .comments-wrapper .comments-list li .comments-reply {
	margin-left: 125px;
}
.blog-content-wrap .blog-item .blog-content .comments-wrapper .comments-list li .comment .avatar__img {
	width: 100px;
	height: 100px;
	margin-right: 25px;
	flex-shrink: 0;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
}
.blog-content-wrap .blog-item .blog-content .comments-wrapper .comments-list li .comment .comment-body .meta-data .comment__author {
	color: #131536;
	font-weight: 700;
	font-size: 18px;
	text-transform: capitalize;
	display: block;
	margin-bottom: 2px;
}
.blog-content-wrap .blog-item .blog-content .comments-wrapper .comments-list li .comment .comment-body .meta-data .comment__date {
	display: block;
	font-weight: 500;
}
.blog-content-wrap .blog-item .blog-content .comments-wrapper .comments-list li .comment .comment-body .comment-content {
	margin-top: 20px;
	margin-bottom: 15px;
	line-height: 28px;
}
.blog-content-wrap .blog-item .blog-content .comments-wrapper .comments-list li .comment .comment-body .comment-reply .comment__btn {
	color: #131536;
	font-weight: 500;
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	-ms-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
}
.blog-content-wrap .blog-item .blog-content .comments-wrapper .comments-list li .comment .comment-body .comment-reply .comment__btn span {
	margin-right: 5px;
}
.blog-content-wrap .blog-item .blog-content .comments-wrapper .comments-list li .comment .comment-body .comment-reply .comment__btn span {
	margin-right: 5px;
}
.blog-content-wrap .blog-item .blog-content .comments-wrapper .comments-title {
	font-size: 30px;
	font-weight: 700;
	margin-bottom: 10px;
	color: #151515;
}
.comments-wrapper .contact-form-action form {
	margin-top: 35px;
}
.contact-form-action form .form-group {
	margin-bottom: 20px;
}
.contact-form-action form .form-group .form-control {
	height: auto;
	width: 100%;
	line-height: inherit;
	padding: 20px 20px 20px 50px;
	font-size: 16px;
	color: #131536;
	border: transparent;
	font-weight: 400;
	background-color: rgba(127,136,151,0.2);
	resize: none;
	-webkit-box-shadow: 0 0;
	-moz-box-shadow: 0 0;
	box-shadow: 0 0;
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	-ms-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
}
.contact-form-action form .form-group .input-icon {
	position: absolute;
	top: 21px;
	left: 40px;
	font-size: 18px;
}
.custom-checkbox {
	margin-bottom: 8px;
}
.custom-checkbox input[type="checkbox"]:not(:checked) + label::before, .custom-checkbox input[type="checkbox"]:checked + label::before {
	content: "";
	position: absolute;
	left: 0;
	top: 2px;
	width: 18px;
	height: 18px;
	border: 1px solid #bdbbbc;
	background: #fff;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
}
.custom-checkbox input[type="checkbox"]:not(:checked) + label::after, .custom-checkbox input[type="checkbox"]:checked + label::after {
	content: '\f14a';
	font-family: "Font Awesome 5 Free";
	position: absolute;
	top: 0;
	left: 3px;
	font-size: 13px;
	color: #fff;
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	-ms-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
}
.custom-checkbox input[type="checkbox"]:checked + label::before {
	background-color: #ff5e14;
	border-color: #ff5e14;
}
.custom-checkbox input[type="checkbox"]:not(:checked) + label::after {
	opacity: 0;
	visibility: hidden;
}
.custom-checkbox label {
	color: #7f8897;
	font-size: 16px;
	font-weight: 600;
}
.custom-checkbox input[type="checkbox"]:not(:checked), .custom-checkbox input[type="checkbox"]:checked {
	position: absolute;
	left: -9999px;
}
.custom-checkbox input[type="checkbox"]:not(:checked) + label, .custom-checkbox input[type="checkbox"]:checked + label {
	position: relative;
	padding-left: 26px;
	cursor: pointer;
	font-weight: 400;
}
.contact-form-action form .form-group .theme-btn {
	border: none;
}
/** Sidebar **/
.blog-details-wrapper .sidebar {
	padding: 30px;
	background-color: #fff;
	-webkit-box-shadow: 0 0 40px rgba(14,16,48,0.05);
	-moz-box-shadow: 0 0 40px rgba(14,16,48,0.05);
	box-shadow: 0 0 40px rgba(14,16,48,0.05);
	border: 1px solid rgba(127,136,152,0.1);
	position: relative;
}
.sidebar .sidebar-widget {
	margin-bottom: 40px;
}
.sidebar .sidebar-widget.contact-form-action form .form-group {
	position: relative;
}
.sidebar .sidebar-widget.contact-form-action form .form-group .form-control {
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;
	padding-left: 20px;
}
.sidebar .sidebar-widget.contact-form-action form .form-group .search__btn {
	position: absolute;
	top: 50%;
	right: 20px;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	border: 0;
	background-color: transparent;
	color: #131536;
	font-size: 18px;
}
.sidebar .sidebar-widget h3 {
	font-weight: 600;
	font-size: 24px;
	margin-bottom: 10px;
	color: #242c42;
}
.sidebar .sidebar-widget .widget__list {
	margin: 0 0 0 15px;
}
.sidebar .sidebar-widget .widget__list li {
	display: block;
	margin-bottom: 12px;
	position: relative;
	padding-left: 16px;
}
.sidebar .sidebar-widget .widget__list li::after {
	position: absolute;
	content: '\f35a';
	font-family: "Font Awesome 5 Free";
	top: 0;
	left: -6px;
	color: var(--gold);
}
.sidebar .sidebar-widget .widget__list li a {
	display: block;
	color: #7f8897;
	text-transform: capitalize;
	font-weight: 500;
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	-ms-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
}
.sidebar .sidebar-widget .widget__list li a:hover {
	color: var(--gold);
}
.sidebar .sidebar-widget .recent-item {
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	margin-bottom: 25px;
	padding-bottom: 25px;
	border-bottom: 1px solid rgba(127,136,152,0.1);
}
.sidebar .sidebar-widget .recent-item .recent-img {
	width: 85px;
	height: 85px;
	margin-right: 15px;
	flex-shrink: 0;
}
.sidebar .sidebar-widget .recent-item .recent-img img {
	width: 100%;
	height: 100%;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
}
.sidebar .sidebar-widget .recent-item .recentpost-body h4 {
	font-size: 16px;
	font-weight: 600;
	display: block;
	margin-top: 5px;
}
.sidebar .sidebar-widget .recent-item .recentpost-body h4 a {
	color: #131536;
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	-ms-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
}
.sidebar .sidebar-widget .recent-item .recentpost-body h4 a:hover {
	color: var(--gold);
}
.sidebar .tag-widget .widget__list {
	margin: 0;
}
.sidebar .tag-widget .widget__list li {
	padding-left: 0;
	display: inline-block;
}
.sidebar .tag-widget .widget__list li:after {
	display: none;
}
.sidebar .tag-widget .widget__list li a {
	border: 1px solid rgba(127,136,152,0.2);
	padding: 4px 14px;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;
	display: block;
}
.sidebar .tag-widget .widget__list li a:hover {
	background-color: var(--gold);
	color: #fff;
	border-color: var(--gold);
}
.sidebar .sidebar-widget .social__links li {
	display: inline-block;
}
.sidebar .sidebar-widget .social__links li a {
	color: #131536;
	display: block;
	width: 40px;
	height: 40px;
	text-align: center;
	line-height: 40px;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	border: 1px solid rgba(127,136,152,0.2);
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	-ms-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
}
.sidebar .sidebar-widget .social__links li a:hover {
	background-color: var(--gold);
	border-color: var(--gold);
	color: #fff;
}

/* =========================================================
   Bootstrap-style Grid System
   ========================================================= */

/* Container */
.container {
    width: 100%;
    padding-right: 12px;
    padding-left: 12px;
    margin-right: auto;
    margin-left: auto;
}

/* Container widths */
@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}


/* =========================================================
   Row
   ========================================================= */

.row {
    --bs-gutter-x: 24px;
    --bs-gutter-y: 0;

    display: flex;
    flex-wrap: wrap;

    margin-top: calc(-1 * var(--bs-gutter-y));
    margin-right: calc(-0.5 * var(--bs-gutter-x));
    margin-left: calc(-0.5 * var(--bs-gutter-x));
}

.row > * {
    box-sizing: border-box;
    flex-shrink: 0;
    width: 100%;

    max-width: 100%;

    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);

    margin-top: var(--bs-gutter-y);
}


/* =========================================================
   Base Columns
   ========================================================= */

.col {
    flex: 1 0 0%;
}

.col-auto {
    flex: 0 0 auto;
    width: auto;
}


/* =========================================================
   12 Column Grid
   ========================================================= */

.col-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
}

.col-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
}

.col-3 {
    flex: 0 0 auto;
    width: 25%;
}

.col-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
}

.col-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
}

.col-6 {
    flex: 0 0 auto;
    width: 50%;
}

.col-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
}

.col-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
}

.col-9 {
    flex: 0 0 auto;
    width: 75%;
}

.col-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
}

.col-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
}

.col-12 {
    flex: 0 0 auto;
    width: 100%;
}


/* =========================================================
   Small - sm (576px)
   ========================================================= */

@media (min-width: 576px) {

    .col-sm {
        flex: 1 0 0%;
    }

    .col-sm-auto {
        flex: 0 0 auto;
        width: auto;
    }

    .col-sm-1 {
        width: 8.33333333%;
    }

    .col-sm-2 {
        width: 16.66666667%;
    }

    .col-sm-3 {
        width: 25%;
    }

    .col-sm-4 {
        width: 33.33333333%;
    }

    .col-sm-5 {
        width: 41.66666667%;
    }

    .col-sm-6 {
        width: 50%;
    }

    .col-sm-7 {
        width: 58.33333333%;
    }

    .col-sm-8 {
        width: 66.66666667%;
    }

    .col-sm-9 {
        width: 75%;
    }

    .col-sm-10 {
        width: 83.33333333%;
    }

    .col-sm-11 {
        width: 91.66666667%;
    }

    .col-sm-12 {
        width: 100%;
    }
}


/* =========================================================
   Medium - md (768px)
   ========================================================= */

@media (min-width: 768px) {

    .col-md {
        flex: 1 0 0%;
    }

    .col-md-auto {
        flex: 0 0 auto;
        width: auto;
    }

    .col-md-1 {
        width: 8.33333333%;
    }

    .col-md-2 {
        width: 16.66666667%;
    }

    .col-md-3 {
        width: 25%;
    }

    .col-md-4 {
        width: 33.33333333%;
    }

    .col-md-5 {
        width: 41.66666667%;
    }

    .col-md-6 {
        width: 50%;
    }

    .col-md-7 {
        width: 58.33333333%;
    }

    .col-md-8 {
        width: 66.66666667%;
    }

    .col-md-9 {
        width: 75%;
    }

    .col-md-10 {
        width: 83.33333333%;
    }

    .col-md-11 {
        width: 91.66666667%;
    }

    .col-md-12 {
        width: 100%;
    }
}


/* =========================================================
   Large - lg (992px)
   ========================================================= */

@media (min-width: 992px) {

    .col-lg {
        flex: 1 0 0%;
    }

    .col-lg-auto {
        flex: 0 0 auto;
        width: auto;
    }

    .col-lg-1 {
        width: 8.33333333%;
    }

    .col-lg-2 {
        width: 16.66666667%;
    }

    .col-lg-3 {
        width: 25%;
    }

    .col-lg-4 {
        width: 33.33333333%;
    }

    .col-lg-5 {
        width: 41.66666667%;
    }

    .col-lg-6 {
        width: 50%;
    }

    .col-lg-7 {
        width: 58.33333333%;
    }

    .col-lg-8 {
        width: 66.66666667%;
    }

    .col-lg-9 {
        width: 75%;
    }

    .col-lg-10 {
        width: 83.33333333%;
    }

    .col-lg-11 {
        width: 91.66666667%;
    }

    .col-lg-12 {
        width: 100%;
    }
}


/* =========================================================
   Extra Large - xl (1200px)
   ========================================================= */

@media (min-width: 1200px) {

    .col-xl {
        flex: 1 0 0%;
    }

    .col-xl-auto {
        flex: 0 0 auto;
        width: auto;
    }

    .col-xl-1 {
        width: 8.33333333%;
    }

    .col-xl-2 {
        width: 16.66666667%;
    }

    .col-xl-3 {
        width: 25%;
    }

    .col-xl-4 {
        width: 33.33333333%;
    }

    .col-xl-5 {
        width: 41.66666667%;
    }

    .col-xl-6 {
        width: 50%;
    }

    .col-xl-7 {
        width: 58.33333333%;
    }

    .col-xl-8 {
        width: 66.66666667%;
    }

    .col-xl-9 {
        width: 75%;
    }

    .col-xl-10 {
        width: 83.33333333%;
    }

    .col-xl-11 {
        width: 91.66666667%;
    }

    .col-xl-12 {
        width: 100%;
    }
}


/* =========================================================
   XXL - xxl (1400px)
   ========================================================= */

@media (min-width: 1400px) {

    .col-xxl {
        flex: 1 0 0%;
    }

    .col-xxl-auto {
        flex: 0 0 auto;
        width: auto;
    }

    .col-xxl-1 {
        width: 8.33333333%;
    }

    .col-xxl-2 {
        width: 16.66666667%;
    }

    .col-xxl-3 {
        width: 25%;
    }

    .col-xxl-4 {
        width: 33.33333333%;
    }

    .col-xxl-5 {
        width: 41.66666667%;
    }

    .col-xxl-6 {
        width: 50%;
    }

    .col-xxl-7 {
        width: 58.33333333%;
    }

    .col-xxl-8 {
        width: 66.66666667%;
    }

    .col-xxl-9 {
        width: 75%;
    }

    .col-xxl-10 {
        width: 83.33333333%;
    }

    .col-xxl-11 {
        width: 91.66666667%;
    }

    .col-xxl-12 {
        width: 100%;
    }
}


/* =========================================================
   Row Gutters
   ========================================================= */

.g-0 {
    --bs-gutter-x: 0;
    --bs-gutter-y: 0;
}

.g-1 {
    --bs-gutter-x: 0.25rem;
    --bs-gutter-y: 0.25rem;
}

.g-2 {
    --bs-gutter-x: 0.5rem;
    --bs-gutter-y: 0.5rem;
}

.g-3 {
    --bs-gutter-x: 1rem;
    --bs-gutter-y: 1rem;
}

.g-4 {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 1.5rem;
}

.g-5 {
    --bs-gutter-x: 3rem;
    --bs-gutter-y: 3rem;
}


/* =========================================================
   Basic Offset Classes
   ========================================================= */

.offset-1 {
    margin-left: 8.33333333%;
}

.offset-2 {
    margin-left: 16.66666667%;
}

.offset-3 {
    margin-left: 25%;
}

.offset-4 {
    margin-left: 33.33333333%;
}

.offset-5 {
    margin-left: 41.66666667%;
}

.offset-6 {
    margin-left: 50%;
}

.offset-7 {
    margin-left: 58.33333333%;
}

.offset-8 {
    margin-left: 66.66666667%;
}

.offset-9 {
    margin-left: 75%;
}

.offset-10 {
    margin-left: 83.33333333%;
}

.offset-11 {
    margin-left: 91.66666667%;
}


/* =========================================================
   Responsive Offset
   ========================================================= */

@media (min-width: 768px) {

    .offset-md-1 { margin-left: 8.33333333%; }
    .offset-md-2 { margin-left: 16.66666667%; }
    .offset-md-3 { margin-left: 25%; }
    .offset-md-4 { margin-left: 33.33333333%; }
    .offset-md-5 { margin-left: 41.66666667%; }
    .offset-md-6 { margin-left: 50%; }
    .offset-md-7 { margin-left: 58.33333333%; }
    .offset-md-8 { margin-left: 66.66666667%; }
    .offset-md-9 { margin-left: 75%; }
    .offset-md-10 { margin-left: 83.33333333%; }
    .offset-md-11 { margin-left: 91.66666667%; }

}

@media (min-width: 992px) {

    .offset-lg-1 { margin-left: 8.33333333%; }
    .offset-lg-2 { margin-left: 16.66666667%; }
    .offset-lg-3 { margin-left: 25%; }
    .offset-lg-4 { margin-left: 33.33333333%; }
    .offset-lg-5 { margin-left: 41.66666667%; }
    .offset-lg-6 { margin-left: 50%; }
    .offset-lg-7 { margin-left: 58.33333333%; }
    .offset-lg-8 { margin-left: 66.66666667%; }
    .offset-lg-9 { margin-left: 75%; }
    .offset-lg-10 { margin-left: 83.33333333%; }
    .offset-lg-11 { margin-left: 91.66666667%; }

}
/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
    .ig-strip {
        grid-template-columns: repeat(4, 1fr);
    }
}
@media (max-width: 768px) {
    body {
        font-size: 16px;
    }
    .nav-links {
        display: none;
    }
    .burger {
        display: flex;
    }
    .split,
    .tx-grid {
        grid-template-columns: 1fr;
    }
    .split.reverse {
        direction: ltr;
    }
    .split-media .frame {
        inset: 12px -12px -12px 12px;
    }
    .media-badge {
        right: 0;
    }
    .intro-grid {
        grid-template-columns: 1fr;
    }
    .footer-top {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .tx-grid figure {
        aspect-ratio: 3/4;
    }
    .float-cta {
        right: 1rem;
        bottom: 1rem;
        padding: 0.85em 1.2em;
    }
    .ig-strip {
        grid-template-columns: repeat(2, 1fr);
    }
    .proof b {
        font-size: 1.9rem;
    }
}
@media (max-width: 420px) {
    .hero-inner {
        padding-block: 7rem;
    }
    .cards-grid {
        grid-template-columns: 1fr;
    }
    .brand-name small {
        display: none;
    }
}

