    /*
  BRAND PALETTE
  Blush pink:  #E8B4B8  /  #F2CCCE  (light)
  Pale blush:  #FBF0F1  (bg tint)
  Charcoal:    #2C2424  (text / dark)
  Mid:         #7A6868
  White:       #FFFFFF
  Off-white:   #FAF6F7
*/
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --pink: #E8B4B8;
    --pink-lt: #F2CCCE;
    --pink-pale: #FBF0F1;
    --pink-deep: #C8848A;
    --charcoal: #2C2424;
    --charcoal2: #1A1414;
    --mid: #7A6868;
    --gray-lt: #C4AFAF;
    --white: #FFFFFF;
    --off: #FAF6F7;
    --border: rgba(200, 132, 138, 0.2);
    --nav-h: 78px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--off);
    color: var(--charcoal);
    overflow-x: hidden;
}

::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-track {
    background: var(--pink-pale);
}

::-webkit-scrollbar-thumb {
    background: var(--pink);
    border-radius: 2px;
}

/*  PAGE SYSTEM  */
.page {
    display: none;
}

.page.active {
    display: block;
    animation: pgIn .35s ease;
}

@keyframes pgIn {
    from {
    opacity: 0;
    }

    to {
    opacity: 1;
    }
}

/* Fade-in animation class - used only for entrance effects */
.fade-in {
    opacity: 1;
    transform: none;
    transition: opacity .5s ease, transform .5s ease;
}

/*  HEADER  */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 500;
    height: var(--nav-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    background: rgba(251, 240, 241, 0.96);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow .3s;
}

header.scrolled {
    box-shadow: 0 2px 20px rgba(44, 36, 36, 0.08);
}

.header-left {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-shrink: 0;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 0;
}

.phone-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--charcoal);
    font-weight: 500;
    font-size: 0.85rem;
    transition: color .2s;
}

.phone-link:hover {
    color: var(--pink-deep);
}

.phone-link i {
    font-size: 0.9rem;
    color: var(--pink-deep);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    text-decoration: none;
}

.nav-logo img {
    height: 50px;
    width: 50px;
    object-fit: contain;
    border-radius: 50%;
}

.nav-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.nav-logo-text b {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--charcoal);
}

.nav-logo-text span {
    font-size: 0.55rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--pink-deep);
    font-weight: 600;
}

nav {
    display: flex;
    align-items: center;
    gap: 0;
    list-style: none;
}

nav li a {
    display: block;
    padding: 0.45rem 0.9rem;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--mid);
    font-weight: 500;
    text-decoration: none;
    transition: color .2s;
    cursor: pointer;
}

nav li a:hover,
nav li a.active {
    color: var(--charcoal);
}

.nav-book {
    background: var(--charcoal);
    color: var(--white) !important;
    padding: 0.6rem 1.4rem !important;
    margin-left: 0.5rem;
    border-radius: 2px;
    font-weight: 600 !important;
    transition: background .25s !important;
}

.nav-book:hover {
    background: var(--pink-deep) !important;
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
}

.burger span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--charcoal);
    transition: .3s;
}

/*  MOBILE NAV  */
.mob-nav {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 490;
    background: var(--pink-pale);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
}

.mob-nav.open {
    display: flex;
}

.mob-nav a {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 400;
    color: var(--charcoal);
    text-decoration: none;
    cursor: pointer;
    letter-spacing: 0.04em;
    transition: color .2s;
}

.mob-nav a:hover {
    color: var(--pink-deep);
}

.mob-x {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    font-size: 1.8rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--charcoal);
    opacity: .5;
    line-height: 1;
}

.mob-x:hover {
    opacity: 1;
}

/*  SHARED  */
.label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.62rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--pink-deep);
    font-weight: 600;
    margin-bottom: 0.9rem;
}

.label::before {
    content: '';
    display: block;
    width: 28px;
    height: 1px;
    background: var(--pink-deep);
}

.display {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    line-height: 1.04;
    color: var(--charcoal);
}

.display em {
    font-style: italic;
    color: var(--pink-deep);
}

.btn {
    display: inline-block;
    text-decoration: none;
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 2px;
    transition: .25s;
    cursor: pointer;
    border: none;
    font-family: 'Outfit', sans-serif;
}

.btn-dark {
    background: var(--charcoal);
    color: var(--white);
    padding: .9rem 2.2rem;
}

.btn-dark:hover {
    background: var(--pink-deep);
}

.btn-pink {
    background: var(--pink);
    color: var(--charcoal);
    padding: .9rem 2.2rem;
}

.btn-pink:hover {
    background: var(--pink-deep);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--charcoal);
    padding: .85rem 2.2rem;
    border: 1.5px solid rgba(44, 36, 36, 0.3);
}

.btn-outline:hover {
    border-color: var(--charcoal);
    background: var(--charcoal);
    color: var(--white);
}

.btn-outline-pink {
    background: transparent;
    color: var(--pink-deep);
    padding: .85rem 2.2rem;
    border: 1.5px solid var(--pink);
}

.btn-outline-pink:hover {
    background: var(--pink);
    color: var(--charcoal);
}

/*  LIGHTBOX  */
.lb {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(44, 36, 36, 0.97);
    align-items: center;
    justify-content: center;
}

.lb.open {
    display: flex;
}

.lb-img {
    max-width: 90vw;
    max-height: 88vh;
    object-fit: contain;
    border-radius: 2px;
}

.lb-x {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    font-size: 2rem;
    color: var(--white);
    cursor: pointer;
    opacity: .5;
    background: none;
    border: none;
    line-height: 1;
    transition: opacity .2s;
}

.lb-x:hover {
    opacity: 1;
}

.lb-prev,
.lb-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2.5rem;
    color: var(--white);
    cursor: pointer;
    opacity: .4;
    background: none;
    border: none;
    padding: 1rem;
    line-height: 1;
    transition: opacity .2s;
}

.lb-prev:hover,
.lb-next:hover {
    opacity: 1;
}

.lb-prev {
    left: 1rem;
}

.lb-next {
    right: 1rem;
}

/*
PAGE: HOME
*/

/*  HERO  */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: var(--charcoal2);
}

/*  Background VIDEO  */
.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.55;
    z-index: 0;
}

/*  Fallback slideshow (plays if video fails)  */
.hero-slides {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: slideShow 24s infinite;
}

.hero-slide:nth-child(1) {
    background-image: url('g2.jpg');
    animation-delay: 0s;
}

.hero-slide:nth-child(2) {
    background-image: url('g3.jpg');
    animation-delay: 6s;
}

.hero-slide:nth-child(3) {
    background-image: url('g5.jpg');
    animation-delay: 12s;
}

.hero-slide:nth-child(4) {
    background-image: url('g4.jpg');
    animation-delay: 18s;
}

@keyframes slideShow {
    0% {
    opacity: 0;
    transform: scale(1.08);
    }

    5% {
    opacity: 1;
    }

    25% {
    opacity: 1;
    transform: scale(1.15);
    }

    30% {
    opacity: 0;
    transform: scale(1.15);
    }

    100% {
    opacity: 0;
    transform: scale(1.08);
    }
}

/*  Gradient overlay  */
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(135deg,
        rgba(44, 20, 20, 0.78) 0%,
        rgba(44, 20, 20, 0.42) 55%,
        rgba(200, 132, 138, 0.12) 100%);
}

/*  Floating animated orbs  */
.hero-orbs {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232, 180, 184, 0.25) 0%, transparent 70%);
    animation: orbFloat linear infinite;
}

.orb:nth-child(1) {
    width: 320px;
    height: 320px;
    top: 10%;
    left: 60%;
    animation-duration: 14s;
    animation-delay: 0s;
}

.orb:nth-child(2) {
    width: 180px;
    height: 180px;
    top: 55%;
    left: 75%;
    animation-duration: 10s;
    animation-delay: -4s;
}

.orb:nth-child(3) {
    width: 250px;
    height: 250px;
    top: 70%;
    left: 20%;
    animation-duration: 18s;
    animation-delay: -7s;
}

.orb:nth-child(4) {
    width: 120px;
    height: 120px;
    top: 20%;
    left: 80%;
    animation-duration: 8s;
    animation-delay: -2s;
}

.orb:nth-child(5) {
    width: 200px;
    height: 200px;
    top: 40%;
    left: 45%;
    animation-duration: 12s;
    animation-delay: -9s;
}

.orb:nth-child(6) {
    width: 90px;
    height: 90px;
    top: 85%;
    left: 55%;
    animation-duration: 7s;
    animation-delay: -1s;
}

@keyframes orbFloat {
    0% {
    transform: translateY(0px) translateX(0px) scale(1);
    opacity: 0.6;
    }

    25% {
    transform: translateY(-30px) translateX(18px) scale(1.08);
    opacity: 0.9;
    }

    50% {
    transform: translateY(-15px) translateX(-20px) scale(0.95);
    opacity: 0.7;
    }

    75% {
    transform: translateY(-40px) translateX(10px) scale(1.05);
    opacity: 0.85;
    }

    100% {
    transform: translateY(0px) translateX(0px) scale(1);
    opacity: 0.6;
    }
}

/*  Animated shimmer line  */
.hero-shimmer {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(105deg,
        transparent 35%,
        rgba(232, 180, 184, 0.06) 50%,
        transparent 65%);
    background-size: 200% 100%;
    animation: shimmerMove 6s ease-in-out infinite;
}

@keyframes shimmerMove {
    0% {
    background-position: 200% 0;
    }

    100% {
    background-position: -200% 0;
    }
}

/*  Floating particles  */
.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(232, 180, 184, 0.5);
    animation: particleDrift linear infinite;
}

.particle:nth-child(1) {
    width: 4px;
    height: 4px;
    left: 10%;
    animation-duration: 12s;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    width: 3px;
    height: 3px;
    left: 25%;
    animation-duration: 9s;
    animation-delay: -3s;
}

.particle:nth-child(3) {
    width: 5px;
    height: 5px;
    left: 40%;
    animation-duration: 15s;
    animation-delay: -6s;
}

.particle:nth-child(4) {
    width: 2px;
    height: 2px;
    left: 55%;
    animation-duration: 11s;
    animation-delay: -1s;
}

.particle:nth-child(5) {
    width: 4px;
    height: 4px;
    left: 70%;
    animation-duration: 13s;
    animation-delay: -5s;
}

.particle:nth-child(6) {
    width: 3px;
    height: 3px;
    left: 85%;
    animation-duration: 10s;
    animation-delay: -8s;
}

.particle:nth-child(7) {
    width: 5px;
    height: 5px;
    left: 15%;
    animation-duration: 16s;
    animation-delay: -2s;
}

.particle:nth-child(8) {
    width: 2px;
    height: 2px;
    left: 60%;
    animation-duration: 8s;
    animation-delay: -4s;
}

.particle:nth-child(9) {
    width: 3px;
    height: 3px;
    left: 32%;
    animation-duration: 14s;
    animation-delay: -7s;
}

.particle:nth-child(10) {
    width: 4px;
    height: 4px;
    left: 78%;
    animation-duration: 11s;
    animation-delay: -9s;
}

@keyframes particleDrift {
    0% {
    bottom: -10px;
    opacity: 0;
    transform: translateX(0) scale(1);
    }

    10% {
    opacity: 1;
    }

    50% {
    transform: translateX(30px) scale(1.2);
    }

    90% {
    opacity: 0.5;
    }

    100% {
    bottom: 105vh;
    opacity: 0;
    transform: translateX(-20px) scale(0.8);
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    padding: calc(var(--nav-h) + 2rem) 8% 5rem;
    max-width: 750px;
}

.hero-content .label {
    color: var(--pink-lt);
}

.hero-content .label::before {
    background: var(--pink-lt);
}

.hero-content h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 6.5vw, 7rem);
    font-weight: 300;
    line-height: 1;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.hero-content h1 em {
    font-style: italic;
    color: var(--pink-lt);
}

.hero-content p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    max-width: 500px;
    font-weight: 300;
    margin-bottom: 2.5rem;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Scrolling ticker at bottom of hero */
.hero-ticker {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    background: rgba(232, 180, 184, 0.15);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(232, 180, 184, 0.25);
    padding: 0.85rem 0;
    overflow: hidden;
}

.ticker-inner {
    display: flex;
    animation: tickerMove 30s linear infinite;
    white-space: nowrap;
}

.ticker-inner span {
    font-size: 0.62rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    padding: 0 2.5rem;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

@keyframes tickerMove {
    from {
    transform: translateX(0);
    }

    to {
    transform: translateX(-50%);
    }
}

/*  INTRO BAND  */
.intro-band {
    background: var(--charcoal);
    padding: 5rem 8%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.ib-left .label {
    color: var(--pink-lt);
}

.ib-left .label::before {
    background: var(--pink-lt);
}

.ib-left h2 {
    font-size: clamp(2rem, 3.5vw, 3.5rem);
    color: var(--white);
    margin: .5rem 0 1.5rem;
}

.ib-left p {
    color: rgba(255, 255, 255, 0.5);
    font-size: .9rem;
    line-height: 1.9;
    font-weight: 300;
    margin-bottom: 1rem;
}

.ib-right {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.ib-stat {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(232, 180, 184, 0.15);
    border-radius: 2px;
}

.ib-stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    font-weight: 300;
    color: var(--pink);
    line-height: 1;
    flex-shrink: 0;
    min-width: 80px;
}

.ib-stat-text .ib-stat-title {
    font-size: .88rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: .2rem;
}

.ib-stat-text .ib-stat-sub {
    font-size: .76rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 300;
}

/*  SERVICES GRID  */
.svc-section {
    padding: 6rem 8%;
    background: var(--off);
}

.svc-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
}

.svc-head h2 {
    font-size: clamp(2rem, 3.5vw, 3.2rem);
}

.svc-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1px;
    background: var(--pink-lt);
    border: 1px solid var(--pink-lt);
    border-radius: 3px;
    overflow: hidden;
}

.svc-card {
    background: var(--off);
    padding: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    cursor: pointer;
    transition: background .3s;
}

.svc-card:hover {
    background: var(--white);
}

.svc-card-img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    display: block;
    opacity: .82;
    transition: opacity .3s, transform .4s;
}

.svc-card:hover .svc-card-img {
    opacity: 1;
    transform: scale(1.04);
}

.svc-card-img-wrap {
    overflow: hidden;
    flex-shrink: 0;
}

.svc-card-body {
    padding: 1.3rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.svc-card-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    color: var(--charcoal);
    margin-bottom: .4rem;
    line-height: 1.2;
}

.svc-card-desc {
    font-size: .72rem;
    color: var(--mid);
    line-height: 1.6;
    flex: 1;
    font-weight: 300;
    margin-bottom: .9rem;
}

.svc-card-link {
    font-size: .6rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--pink-deep);
    font-weight: 600;
    text-decoration: none;
    transition: letter-spacing .2s;
}

.svc-card:hover .svc-card-link {
    letter-spacing: .22em;
}

/*  NP PROFILE BAND  */
.np-band {
    background: var(--pink-pale);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 5rem 8%;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 5rem;
    align-items: center;
}

.np-img-wrap {
    position: relative;
    flex-shrink: 0;
}

.np-img {
    width: 260px;
    height: 320px;
    object-fit: cover;
    object-position: center top;
    border-radius: 3px;
    display: block;
    box-shadow: 0 20px 60px rgba(44, 36, 36, 0.15);
}

.np-badge {
    position: absolute;
    bottom: -1rem;
    right: -1.5rem;
    background: var(--charcoal);
    padding: 1rem 1.4rem;
    border-radius: 2px;
    text-align: center;
}

.np-badge-title {
    font-size: .58rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--pink);
    margin-bottom: .2rem;
}

.np-badge-val {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    color: var(--white);
    font-style: italic;
}

.np-text h2 {
    font-size: clamp(2rem, 3vw, 3rem);
    margin: .5rem 0 1.5rem;
}

.np-text p {
    color: var(--mid);
    font-size: .9rem;
    line-height: 1.9;
    font-weight: 300;
    margin-bottom: 1rem;
}

.np-creds {
    display: flex;
    flex-direction: column;
    gap: .65rem;
    margin: 1.8rem 0;
}

.np-cred {
    display: flex;
    align-items: flex-start;
    gap: .9rem;
    padding: .9rem 1.1rem;
    background: var(--white);
    border-left: 2px solid var(--pink);
    border-radius: 0 2px 2px 0;
}

.np-cred-ico {
    font-size: 1.1rem;
    flex-shrink: 0;
}

.np-cred-head {
    font-size: .82rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: .1rem;
}

.np-cred-sub {
    font-size: .74rem;
    color: var(--mid);
}

/*  WEIGHT LOSS BAND  */
.wl-band {
    background: var(--charcoal);
    padding: 5rem 8%;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 4rem;
    align-items: center;
}

.wl-pill {
    display: inline-block;
    background: var(--pink);
    color: var(--charcoal);
    font-size: .58rem;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    padding: .3rem .9rem;
    border-radius: 2px;
    margin-bottom: .9rem;
}

.wl-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    color: var(--white);
    line-height: 1.05;
    margin-bottom: 1rem;
}

.wl-desc {
    color: rgba(255, 255, 255, 0.45);
    font-size: .88rem;
    line-height: 1.85;
    max-width: 520px;
    font-weight: 300;
}

.wl-right {
    display: flex;
    flex-direction: column;
    gap: .9rem;
    align-items: center;
}

.wl-note {
    font-size: .62rem;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: .1em;
}

/*  REVIEWS  */
.rv-section {
    padding: 6rem 8%;
    background: var(--white);
}

.rv-head {
    text-align: center;
    margin-bottom: 3.5rem;
}

.rv-head .label {
    justify-content: center;
}

.rv-head .label::before {
    display: none;
}

.rv-head h2 {
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    margin: .4rem 0 .7rem;
}

.rv-head p {
    color: var(--mid);
    font-size: .88rem;
    font-weight: 300;
}

.rv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.rv-card {
    background: var(--pink-pale);
    border: 1px solid rgba(200, 132, 138, 0.3);
    border-radius: 3px;
    padding: 2rem;
    transition: border-color .3s, transform .3s;
}

.rv-card:hover {
    border-color: var(--pink);
    transform: translateY(-3px);
}

.rv-stars {
    color: var(--pink-deep);
    font-size: .9rem;
    margin-bottom: .9rem;
}

.rv-text {
    font-size: .8rem;
    color: var(--mid);
    line-height: 1.8;
    font-style: italic;
    font-weight: 300;
    margin-bottom: 1.3rem;
}

.rv-author {
    display: flex;
    align-items: center;
    gap: .7rem;
}

.rv-av {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--pink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .8rem;
    font-weight: 700;
    color: var(--charcoal);
    flex-shrink: 0;
    font-family: 'Cormorant Garamond', serif;
}

.rv-name {
    font-size: .8rem;
    font-weight: 600;
    color: var(--charcoal);
}

.rv-date {
    font-size: .65rem;
    color: var(--gray-lt);
}

/*  GALLERY STRIP  */
.gal-strip {
    padding: 6rem 8%;
    background: var(--off);
}

.gal-strip-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2.5rem;
}

.gal-strip-head h2 {
    font-size: clamp(2rem, 3.5vw, 3.2rem);
}

.gal-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 200px 200px;
    gap: 5px;
    border-radius: 3px;
    overflow: hidden;
}

.gal-item {
    overflow: hidden;
    cursor: pointer;
}

.gal-item:hover .gal-el {
    opacity: 1;
    transform: scale(1.05);
}

.gal-el {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: .75;
    transition: opacity .3s, transform .45s;
}

.gal-item.span2 {
    grid-column: span 2;
    grid-row: span 2;
}

/*
PAGE: SERVICES
*/
.page-banner {
    padding: calc(var(--nav-h) + 4rem) 8% 4rem;
    background: var(--pink-pale);
    border-bottom: 1px solid var(--border);
}

.page-banner h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin: .4rem 0 1rem;
}

.page-banner p {
    color: var(--mid);
    font-size: .95rem;
    font-weight: 300;
    max-width: 560px;
    line-height: 1.8;
}

.svc-full {
    padding: 5rem 8%;
    background: var(--off);
}

.svc-feature-banner {
    background: var(--charcoal);
    border-radius: 3px;
    padding: 3rem 3.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 5rem;
}

.sfb-eye {
    font-size: .58rem;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--pink-lt);
    margin-bottom: .6rem;
    font-weight: 600;
}

.sfb-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.6rem, 2.5vw, 2.4rem);
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.1;
}

.sfb-desc {
    color: rgba(255, 255, 255, 0.45);
    font-size: .85rem;
    line-height: 1.85;
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.sfb-feats {
    display: flex;
    flex-direction: column;
    gap: .55rem;
}

.sfb-feat {
    display: flex;
    align-items: center;
    gap: .8rem;
    padding: .65rem 1rem;
    background: rgba(232, 180, 184, 0.08);
    border-radius: 2px;
    font-size: .8rem;
    color: rgba(255, 255, 255, 0.75);
}

.svc-cat {
    margin-bottom: 4.5rem;
}

.svc-cat-hd {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding-bottom: 1.2rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(200, 132, 138, 0.3);
}

.svc-cat-ico {
    font-size: 2.2rem;
}

.svc-cat-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: var(--charcoal);
}

.svc-cat-sub {
    font-size: .72rem;
    color: var(--pink-deep);
    letter-spacing: .1em;
    margin-top: .15rem;
}

.svc-full-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.sfc {
    background: var(--white);
    border: 1px solid rgba(200, 132, 138, 0.2);
    border-radius: 3px;
    overflow: hidden;
    transition: border-color .3s, transform .3s;
}

.sfc:hover {
    border-color: var(--pink);
    transform: translateY(-3px);
}

.sfc img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    display: block;
    opacity: .8;
}

.sfc-body {
    padding: 1.4rem;
}

.sfc-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: var(--charcoal);
    margin-bottom: .4rem;
}

.sfc-desc {
    font-size: .76rem;
    color: var(--mid);
    line-height: 1.7;
    font-weight: 300;
    margin-bottom: 1rem;
}

.sfc-link {
    font-size: .6rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--pink-deep);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid transparent;
    transition: border-color .2s;
    display: inline-block;
}

.sfc-link:hover {
    border-color: var(--pink-deep);
}

/*
PAGE: SPA DAY
*/
.spa-full {
    padding: 5rem 8%;
    background: var(--off);
}

.spa-intro {
    background: var(--pink-pale);
    border: 1px solid var(--border);
    border-radius: 3px;
    padding: 3rem;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.spa-intro-ico {
    font-size: 4rem;
    flex-shrink: 0;
}

.spa-cat {
    margin-bottom: 4rem;
}

.spa-cat-hd {
    border-bottom: 1px solid var(--border);
    padding-bottom: 1rem;
    margin-bottom: 2rem;
}

.spa-cat-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.7rem;
    color: var(--charcoal);
    display: flex;
    align-items: center;
    gap: .75rem;
}

.spa-cat-sub {
    font-size: .72rem;
    color: var(--pink-deep);
    letter-spacing: .1em;
    margin-top: .2rem;
}

.spa-pkg {
    background: var(--white);
    border: 1px solid rgba(200, 132, 138, 0.2);
    border-radius: 3px;
    padding: 2.5rem;
    margin-bottom: 1.5rem;
}

.spa-pkg-dark {
    background: var(--charcoal);
    border-color: transparent;
}

.spa-pkg-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    color: var(--charcoal);
    margin-bottom: .3rem;
}

.spa-pkg-dark .spa-pkg-name {
    color: var(--white);
}

.spa-pkg-price {
    font-size: .72rem;
    font-weight: 600;
    color: var(--pink-deep);
    letter-spacing: .1em;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.spa-pkg-dark .spa-pkg-price {
    color: var(--pink-lt);
}

.spa-pkg-desc {
    font-size: .84rem;
    color: var(--mid);
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.spa-pkg-dark .spa-pkg-desc {
    color: rgba(255, 255, 255, 0.45);
}

.spa-pkg-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .75rem;
    margin-bottom: 1.5rem;
}

.spa-pkg-item {
    background: var(--pink-pale);
    border: 1px solid var(--border);
    border-radius: 2px;
    padding: 1rem;
    text-align: center;
}

.spa-pkg-dark .spa-pkg-item {
    background: rgba(232, 180, 184, 0.1);
    border-color: rgba(232, 180, 184, 0.2);
}

.spa-pkg-item-ico {
    font-size: 1.4rem;
    margin-bottom: .3rem;
}

.spa-pkg-item-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: .95rem;
    color: var(--charcoal);
}

.spa-pkg-dark .spa-pkg-item-name {
    color: var(--white);
}

.spa-pkg-item-sub {
    font-size: .68rem;
    color: var(--mid);
    margin-top: .15rem;
}

.spa-pkg-dark .spa-pkg-item-sub {
    color: rgba(255, 255, 255, 0.4);
}

.iv-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.iv-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 3px;
    padding: 2rem;
}

.iv-card.popular {
    border-color: var(--pink);
}

.iv-card-tag {
    background: var(--pink);
    color: var(--charcoal);
    font-size: .58rem;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    padding: .3rem .8rem;
    border-radius: 2px;
    display: inline-block;
    margin-bottom: .9rem;
}

.iv-card-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: var(--charcoal);
    margin-bottom: .3rem;
}

.iv-card-price {
    font-size: .72rem;
    color: var(--pink-deep);
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: .9rem;
}

.iv-card-desc {
    font-size: .78rem;
    color: var(--mid);
    line-height: 1.7;
    font-weight: 300;
    margin-bottom: 1.2rem;
}

.iv-card ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.iv-card ul li {
    font-size: .74rem;
    color: var(--mid);
    padding: .3rem 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: .5rem;
}

.iv-card ul li:last-child {
    border-bottom: none;
}

.iv-card ul li::before {
    content: '';
    color: var(--pink-deep);
    font-weight: 700;
    flex-shrink: 0;
}

/*
PAGE: GALLERY
*/
.gal-full {
    padding: 5rem 8%;
    background: var(--off);
}

.gal-masonry {
    columns: 4;
    gap: 8px;
}

.gm-item {
    break-inside: avoid;
    margin-bottom: 8px;
    cursor: pointer;
    overflow: hidden;
    border-radius: 2px;
    display: block;
}

.gm-img {
    width: 100%;
    display: block;
    opacity: .78;
    transition: opacity .3s, transform .4s;
}

.gm-item:hover .gm-img {
    opacity: 1;
    transform: scale(1.04);
}

/*
PAGE: ABOUT
*/
.about-full {
    padding: 5rem 8%;
    background: var(--off);
}

.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    margin-bottom: 5rem;
}

.about-img-wrap {
    position: relative;
}

.about-img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    object-position: center top;
    border-radius: 3px;
    display: block;
}

.about-img-tag {
    position: absolute;
    bottom: -1.5rem;
    right: -2rem;
    background: var(--charcoal);
    padding: 1.3rem 1.7rem;
    border-radius: 2px;
}

.ait-label {
    font-size: .58rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--pink);
    margin-bottom: .3rem;
    font-weight: 600;
}

.ait-val {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: var(--white);
    font-style: italic;
    line-height: 1.3;
}

.about-text h2 {
    font-size: clamp(1.8rem, 3vw, 3rem);
    margin: .5rem 0 1.5rem;
}

.about-text p {
    color: var(--mid);
    font-size: .9rem;
    line-height: 1.9;
    font-weight: 300;
    margin-bottom: 1rem;
}

.about-pillars {
    display: flex;
    flex-direction: column;
    gap: .7rem;
    margin: 1.8rem 0;
}

.ap {
    display: flex;
    gap: .9rem;
    align-items: flex-start;
    padding: 1rem 1.2rem;
    background: var(--pink-pale);
    border-left: 2px solid var(--pink);
    border-radius: 0 2px 2px 0;
}

.ap-ico {
    font-size: 1.1rem;
    flex-shrink: 0;
}

.ap-head {
    font-size: .82rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: .1rem;
}

.ap-body {
    font-size: .74rem;
    color: var(--mid);
}

.about-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 3px;
    padding: 3rem;
    margin-bottom: 4rem;
}

.av-ico {
    font-size: 2.2rem;
    margin-bottom: .9rem;
}

.av-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: var(--charcoal);
    margin-bottom: .5rem;
}

.av-desc {
    font-size: .76rem;
    color: var(--mid);
    line-height: 1.65;
    font-weight: 300;
}

/*
PAGE: CONTACT
*/
.contact-full {
    padding: 5rem 8%;
    background: var(--off);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}
 
.contact-info-text {
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;

    max-width: 100%;
    box-sizing: border-box;
}

.cl-info h2 {
    font-size: clamp(1.8rem, 3vw, 3rem);
    margin: .5rem 0 1.5rem;
}

.cl-info p {
    color: var(--mid);
    font-size: .9rem;
    line-height: 1.85;
    font-weight: 300;
    margin-bottom: 2rem;
}

.ci-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.ci-row {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.ci-ico {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--pink-pale);
    border: 1px solid var(--pink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.ci-lbl {
    font-size: .58rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--pink-deep);
    margin-bottom: .2rem;
    font-weight: 600;
}

.ci-val {
    font-size: .87rem;
    color: var(--charcoal);
    text-decoration: none;
    display: block;
    line-height: 1.5;
    transition: color .2s;
}

.ci-val:hover {
    color: var(--pink-deep);
}

.hours-box {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 3px;
    padding: 1.8rem;
    margin-bottom: 1.5rem;
}

.hb-ttl {
    font-size: .6rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--pink-deep);
    font-weight: 600;
    margin-bottom: 1.1rem;
}

.hb-row {
    display: flex;
    justify-content: space-between;
    font-size: .82rem;
    padding: .45rem 0;
    border-bottom: 1px solid rgba(200, 132, 138, 0.15);
}

.hb-row:last-child {
    border-bottom: none;
}

.hb-day {
    color: var(--mid);
}

.hb-time {
    color: var(--charcoal);
    font-weight: 500;
}

.form-box {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 3px;
    padding: 2.5rem;
}

.form-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    margin-bottom: .4rem;
}

.form-sub {
    font-size: .76rem;
    color: var(--mid);
    margin-bottom: 2rem;
    font-weight: 300;
}

.form-grp {
    margin-bottom: 1.1rem;
}

.form-lbl {
    font-size: .6rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--pink-deep);
    display: block;
    margin-bottom: .45rem;
    font-weight: 600;
}

.form-inp,
.form-sel,
.form-ta {
    width: 100%;
    background: var(--pink-pale);
    border: 1px solid rgba(200, 132, 138, 0.35);
    border-radius: 2px;
    padding: .8rem 1rem;
    color: var(--charcoal);
    font-size: .84rem;
    font-family: 'Outfit', sans-serif;
    transition: border-color .2s;
    outline: none;
}

.form-inp:focus,
.form-sel:focus,
.form-ta:focus {
    border-color: var(--pink-deep);
    background: var(--white);
}

.form-ta {
    height: 110px;
    resize: vertical;
}

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

.form-success {
    display: none;
    text-align: center;
    padding: 2rem;
}

.fs-ico {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.fs-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    margin-bottom: .5rem;
}

.fs-sub {
    color: var(--mid);
    font-size: .84rem;
    font-weight: 300;
}

.map-wrap {
    border-top: 1px solid var(--border);
}

.map-wrap iframe {
    width: 100%;
    height: 360px;
    display: block;
    border: none;
    filter: saturate(.35) contrast(1.1);
}

/*
PAGE: FINANCE
*/
.fin-full {
    padding: 5rem 8%;
    background: var(--off);
}

.fin-hero {
    background: var(--charcoal);
    border-radius: 3px;
    padding: 3.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.fin-hero h2 {
    font-size: clamp(1.8rem, 3vw, 3rem);
    color: var(--white);
    margin: .5rem 0 1rem;
}

.fin-hero p {
    color: rgba(255, 255, 255, 0.45);
    font-size: .88rem;
    line-height: 1.85;
    font-weight: 300;
    margin-bottom: 2rem;
}

.fin-feat {
    background: rgba(232, 180, 184, 0.1);
    border: 1px solid rgba(232, 180, 184, 0.2);
    border-radius: 2px;
    padding: 1.1rem;
    display: flex;
    align-items: center;
    gap: .85rem;
    margin-bottom: .65rem;
}

.fin-feat-ico {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.fin-feat-head {
    font-size: .82rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: .1rem;
}

.fin-feat-sub {
    font-size: .72rem;
    color: rgba(255, 255, 255, 0.4);
}

.fin-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.fin-step {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 3px;
    padding: 2rem;
    text-align: center;
}

.fin-step-num {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--pink-pale);
    border: 2px solid var(--pink);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    color: var(--pink-deep);
    font-weight: 500;
}

.fin-step-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    color: var(--charcoal);
    margin-bottom: .5rem;
}

.fin-step-desc {
    font-size: .74rem;
    color: var(--mid);
    font-weight: 300;
    line-height: 1.65;
}

.fin-eligible {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 4rem;
}

.fin-el-item {
    background: var(--off);
    padding: 1.5rem 1rem;
    text-align: center;
}

.fin-el-ico {
    font-size: 1.6rem;
    margin-bottom: .5rem;
}

.fin-el-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: .95rem;
    color: var(--charcoal);
}

/*  FOOTER  */
footer {
    background: var(--charcoal2);
    padding: 4.5rem 8% 2.5rem;
}

.ft-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.ft-logo-img {
    height: 55px;
    width: 55px;
    object-fit: contain;
    border-radius: 50%;
    margin-bottom: .8rem;
}

.ft-brand-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: var(--white);
    font-weight: 400;
}

.ft-brand-sub {
    font-size: .55rem;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--pink);
    font-weight: 600;
    display: block;
    margin-top: .2rem;
}

.ft-brand-desc {
    font-size: .76rem;
    color: rgba(255, 255, 255, 0.28);
    line-height: 1.75;
    margin-top: 1rem;
    max-width: 220px;
    font-weight: 300;
}

.ft-col h4 {
    font-size: .6rem;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--pink);
    margin-bottom: 1.2rem;
    font-weight: 600;
}

.ft-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .6rem;
}

.ft-col ul li a,
.ft-col ul li span {
    font-size: .76rem;
    color: rgba(255, 255, 255, 0.3);
    text-decoration: none;
    transition: color .2s;
    cursor: pointer;
}

.ft-col ul li a:hover,
.ft-col ul li span:hover {
    color: var(--pink-lt);
}

.ft-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.ft-copy {
    font-size: .68rem;
    color: rgba(255, 255, 255, 0.2);
}

.ft-legal {
    display: flex;
    gap: 2rem;
}

.ft-legal a {
    font-size: .68rem;
    color: rgba(255, 255, 255, 0.2);
    text-decoration: none;
    transition: color .2s;
}

.ft-legal a:hover {
    color: var(--pink);
}


/* Clinically proven results */
.Clinically_proven_results_box{ 
    display: grid ;
    grid-template-columns: repeat(3, 1fr); 
    gap: 1rem; 
}

.logo_text_constact{
    display: flex;
    align-items: center;
    gap: 10px;
}
 
 
.nav-contact-mobile .phone-number{
    display: block;
}
    .nav-contact {
       display: none;
    }
 


/*  RESPONSIVE  */
@media (max-width: 1100px) {
    
    .svc-grid {
    grid-template-columns: repeat(3, 1fr);
    }

    .gal-masonry {
    columns: 3;
    }

    .ft-top {
    grid-template-columns: 1fr 1fr;
    }

    .fin-steps {
    grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1250px) {
        .logocontact{
      display: none ;
    }
        .nav-contact {
       display: block;
    }
}

@media (min-width: 600px) {



}
@media (max-width: 900px) {
    nav {
    display: none;
    }
    

    .burger {
    display: flex;
    }

    /* .nav-logo-text {
    display: none;
    } */



    .hero-content h1 {
    font-size: clamp(2.5rem, 8vw, 4rem);
    }

    .intro-band,
    .np-band,
    .about-intro,
    .contact-layout,
    .svc-feature-banner,
    .fin-hero {
    grid-template-columns: 1fr;
    gap: 3rem;
    }

    .np-img {
    width: 100%;
    height: 300px;
    }

    .np-badge {
    display: none;
    }

    .about-img-tag {
    display: none;
    }

    .svc-grid,
    .svc-full-cards,
    .rv-grid {
    grid-template-columns: 1fr 1fr;
    }

    .gal-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    }

    .gal-item.span2 {
    grid-column: span 1;
    grid-row: span 1;
    }

    .gal-masonry {
    columns: 2;
    }

    .about-values {
    grid-template-columns: 1fr;
    }

    .wl-band {
    grid-template-columns: 1fr;
    }

    .spa-pkg-items {
    grid-template-columns: 1fr 1fr;
    }

    .iv-cards {
    grid-template-columns: 1fr;
    }

    .valmont-results {
    grid-template-columns: 1fr !important;
    }

    .fin-eligible {
    grid-template-columns: repeat(3, 1fr);
    }

    .ft-top {
    grid-template-columns: 1fr;
    }

    .spa-intro {
    grid-template-columns: 1fr;
    }

    .fin-hero {
    grid-template-columns: 1fr;
    }

    .fin-steps {
    grid-template-columns: 1fr 1fr;
    }
}

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



    .logo-img{
        margin-top: 0rem
    }



    .svc-grid,
    .svc-full-cards,
    .rv-grid {
    grid-template-columns: 1fr;
    }

    .gal-masonry {
    columns: 1;
    }

    .spa-pkg-items {
    grid-template-columns: 1fr;
    }

    .fin-steps {
    grid-template-columns: 1fr;
    }

    .fin-eligible {
    grid-template-columns: repeat(2, 1fr);
    }

    .form-row {
    grid-template-columns: 1fr;
    }
    .Clinically_proven_results_box{  
    grid-template-columns: repeat(2, 1fr);   
    }
}
@media (max-width: 450px) {

   .svc-head{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
   }

   .svc-head .view_all_services_btn{
    margin-top: .6rem;
   }
   .Clinically_proven_results{
    padding: 1rem;
   }
       .Clinically_proven_results_box{  
    grid-template-columns: repeat(1, 1fr);   
    }
}

.ft-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.ft-soc-link {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(232, 180, 184, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.45);
    transition: background .2s, color .2s;
    text-decoration: none;
}

.ft-soc-link:hover {
    background: var(--pink);
    color: var(--charcoal);
    border-color: var(--pink);
}