:root {
    --fixed-promo-height: 38px;
    --fixed-nav-height: 82px;
    --fixed-nav-gap: 14px;
    --fixed-header-space: calc(var(--fixed-promo-height) + var(--fixed-nav-height) + var(--fixed-nav-gap) + 18px);
}

body {
    padding-top: 0;
}

.promo-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 90;
    display: grid;
    place-items: center;
    min-height: var(--fixed-promo-height);
    padding: 7px 16px;
    background: linear-gradient(90deg, #053f40, #075f5b 48%, #053f40);
    color: #fff;
    font-size: .92rem;
    font-weight: 700;
    text-align: center;
    box-shadow: 0 8px 26px rgba(0, 0, 0, .16);
}

.site-header {
    position: fixed;
    top: calc(var(--fixed-promo-height) + var(--fixed-nav-gap));
    left: 50%;
    z-index: 80;
    width: min(90vw, 1460px);
    transform: translateX(-50%);
    border: 1px solid rgba(190, 255, 246, .18);
    border-radius: 999px;
    background:
        linear-gradient(135deg, rgba(6, 28, 32, .86), rgba(8, 54, 58, .78)),
        rgba(7, 29, 33, .74);
    color: #fff;
    box-shadow: 0 22px 60px rgba(0, 0, 0, .22), inset 0 1px 0 rgba(255, 255, 255, .12);
    backdrop-filter: blur(20px) saturate(150%);
    transition: background .2s ease, box-shadow .2s ease, border-color .2s ease, transform .2s ease;
}

.site-header.is-scrolled {
    border-color: rgba(130, 215, 207, .34);
    background:
        linear-gradient(135deg, rgba(5, 22, 27, .94), rgba(7, 48, 53, .88)),
        rgba(7, 29, 33, .86);
    box-shadow: 0 26px 70px rgba(0, 0, 0, .28), inset 0 1px 0 rgba(255, 255, 255, .14);
}

.header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 18px;
    align-items: center;
    width: 100%;
    min-height: var(--fixed-nav-height);
    padding-inline: clamp(12px, 2vw, 24px);
}

.brand img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    filter: drop-shadow(0 8px 18px rgba(0, 0, 0, .18));
}

.site-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
}

.site-nav a {
    padding: 10px 14px;
    border-radius: 999px;
    font-size: .88rem;
    font-weight: 800;
    color: rgba(235, 255, 252, .84);
    transition: background .2s ease, color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.site-nav a:hover,
.site-nav a.active {
    background: rgba(255, 255, 255, .16);
    color: #fff;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .12);
}

.site-nav a:hover {
    transform: translateY(-1px);
}

.site-nav a.active {
    background: linear-gradient(135deg, rgba(255, 255, 255, .24), rgba(255, 255, 255, .12));
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.icon-link {
    display: inline-grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255, 255, 255, .36);
    border-radius: 50%;
    background: rgba(255, 255, 255, .06);
    color: #fff;
    transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.icon-link svg {
    width: 17px;
    height: 17px;
    display: block;
    fill: currentColor;
}

.icon-link:hover {
    transform: translateY(-1px);
    border-color: rgba(130, 215, 207, .75);
    background: rgba(130, 215, 207, .14);
}

.phone-link {
    font-weight: 900;
    white-space: nowrap;
    color: rgba(255, 255, 255, .96);
}

.site-header .btn {
    border-color: #10a49d;
    background: linear-gradient(135deg, #12aaa2, #098d88);
    box-shadow: 0 12px 24px rgba(9, 141, 136, .28);
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255, 255, 255, .5);
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    color: #fff;
}

.menu-toggle span:not(.sr-only) {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    background: currentColor;
}

@media (max-width: 1060px) {
    :root {
        --fixed-promo-height: 44px;
        --fixed-nav-height: 72px;
        --fixed-nav-gap: 10px;
        --fixed-header-space: calc(var(--fixed-promo-height) + var(--fixed-nav-height) + var(--fixed-nav-gap) + 16px);
    }

    .site-header {
        width: min(92vw, 760px);
    }

    .menu-open .site-header {
        border-radius: 28px;
        background:
            linear-gradient(135deg, rgba(5, 18, 22, .98), rgba(6, 48, 53, .96)),
            rgba(5, 18, 22, .98);
    }

    .header-inner {
        padding-inline: 14px;
    }

    .brand img {
        width: 56px;
        height: 56px;
    }

    body.menu-open {
        overflow: hidden !important;
    }
}

@media (max-width: 640px) {
    :root {
        --fixed-promo-height: 56px;
        --fixed-nav-height: 70px;
        --fixed-header-space: calc(var(--fixed-promo-height) + var(--fixed-nav-height) + var(--fixed-nav-gap) + 16px);
    }

    .promo-bar {
        padding-inline: 20px;
        font-size: .88rem;
        line-height: 1.35;
    }

    .site-header {
        width: calc(100% - 24px);
    }
}

.hero,
.page-hero,
.article-hero,
.service-detail-hero,
.legal-hero {
    position: relative;
    padding: calc(clamp(72px, 9vw, 128px) + var(--fixed-header-space)) 0 clamp(72px, 9vw, 128px);
}

.home-hero {
    min-height: 100vh;
    min-height: 100svh;
    display: grid;
    align-items: center;
    padding: calc(var(--fixed-header-space) + clamp(48px, 7vh, 82px)) 0 clamp(58px, 8vh, 92px);
    background: #06090a;
    color: #fff;
    overflow: hidden;
    isolation: isolate;
}

.home-hero picture,
.hero-overlay {
    position: absolute;
    inset: 0;
}

.home-hero picture {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.home-hero picture > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.home-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(circle at 50% 42%, rgba(0, 250, 235, .14), transparent 32%),
        linear-gradient(180deg, rgba(5, 7, 8, .3), rgba(5, 7, 8, .28));
    pointer-events: none;
}

.hero-overlay {
    background: linear-gradient(90deg, rgba(5, 20, 24, .78), rgba(5, 20, 24, .28) 60%, rgba(5, 20, 24, .68));
}

.hero-content {
    position: relative;
    padding-bottom: clamp(42px, 8vw, 88px);
}

.hero-content p:not(.eyebrow) {
    max-width: 680px;
    font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.home-hero-wrap {
    position: relative;
    z-index: 2;
    display: grid;
    place-items: center;
}

.home-hero-card {
    position: relative;
    width: min(940px, 100%);
    min-height: clamp(430px, 54vh, 560px);
    display: grid;
    justify-items: center;
    align-content: center;
    padding: clamp(42px, 6vw, 76px) clamp(22px, 6vw, 88px);
    border: 1px solid rgba(226, 183, 91, .62);
    border-radius: 22px;
    background:
        linear-gradient(180deg, rgba(8, 17, 18, .74), rgba(7, 15, 16, .66)),
        rgba(6, 18, 19, .62);
    box-shadow: 0 28px 90px rgba(0, 0, 0, .42), inset 0 1px 0 rgba(255, 255, 255, .08), 0 0 42px rgba(231, 181, 87, .16);
    text-align: center;
    backdrop-filter: blur(12px) saturate(130%);
}

.home-hero-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    margin-bottom: clamp(34px, 5vh, 52px);
    padding: 0 28px;
    border-radius: 999px;
    background: linear-gradient(135deg, #10fff0, #12a8ff);
    color: #001d21;
    font-size: .78rem;
    font-weight: 900;
    line-height: 1;
    box-shadow: 0 16px 34px rgba(0, 224, 220, .26);
}

.home-hero-card h1 {
    max-width: 100%;
    margin-bottom: 22px;
    color: #36fbf1;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3rem, 5vw, 4.8rem);
    font-weight: 800;
    letter-spacing: 0;
    white-space: nowrap;
    text-shadow: 0 0 30px rgba(0, 255, 240, .18);
}

.home-hero-card > p:not(.home-hero-trust) {
    max-width: 770px;
    margin-bottom: 34px;
    color: rgba(255, 255, 255, .9);
    font-size: clamp(1.08rem, 1.55vw, 1.38rem);
    font-weight: 800;
    line-height: 1.4;
}

.home-hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
}

.home-hero-actions .btn {
    min-width: 146px;
    min-height: 56px;
    border-color: rgba(16, 255, 240, .92);
    background: linear-gradient(135deg, #11fff0, #0bd5c7);
    color: #032124;
    box-shadow: 0 16px 30px rgba(0, 230, 220, .18);
}

.home-hero-actions .btn-ghost {
    border-color: rgba(255, 255, 255, .42);
    background: rgba(255, 255, 255, .08);
    color: #fff;
    backdrop-filter: blur(10px);
}

.home-hero-trust {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    color: rgba(255, 255, 255, .9);
    font-size: .9rem;
    font-weight: 900;
}

.home-hero-trust span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #1efff1;
    box-shadow: 0 0 18px rgba(30, 255, 241, .72);
}

.home-hero-hipaa {
    position: absolute;
    right: clamp(24px, 4vw, 42px);
    bottom: clamp(24px, 4vw, 42px);
    width: clamp(96px, 10vw, 132px);
    height: auto;
    padding: 10px 12px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 14px 30px rgba(230, 193, 112, .28);
}

.page-hero {
    background: linear-gradient(135deg, #f3fffb, #eef6f4 55%, #ffffff);
}

.page-hero-grid,
.article-hero-grid,
.two-column,
.split-grid,
.note-grid,
.form-grid,
.location-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, .9fr);
    gap: clamp(28px, 5vw, 76px);
    align-items: center;
}

.page-hero-grid > *,
.article-hero-grid > *,
.two-column > *,
.split-grid > *,
.note-grid > *,
.form-grid > *,
.location-content > * {
    min-width: 0;
}

.page-hero-grid > img,
.article-hero-grid > img,
.rounded-media {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.product-media {
    aspect-ratio: 4 / 5;
    padding: clamp(16px, 3vw, 28px);
    background: #fff;
    object-fit: contain;
    object-position: center;
}

.card-grid {
    display: grid;
    gap: 22px;
}

.card-grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card-grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-card,
.article-card,
.text-card,
.contact-card,
.hours-card,
.team-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 12px 36px rgba(17, 38, 41, .08);
}

.service-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    text-align: center;
}

.service-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    background: var(--rose);
    color: #fff;
    font-family: var(--font-display);
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .08em;
    line-height: 1;
    text-transform: uppercase;
    box-shadow: 0 10px 24px rgba(233, 61, 131, .26);
}

.service-badge-inline {
    position: static;
    margin-bottom: 14px;
}

.service-card > img {
    width: 100%;
    aspect-ratio: 4 / 5;
    padding: 18px 20px 8px;
    background: linear-gradient(180deg, #f7fbfd, #ffffff);
    object-fit: contain;
    object-position: center;
}

.article-card > img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.service-card-body,
.service-card > h3,
.service-card > p,
.service-card > a,
.article-card > div,
.text-card,
.contact-card,
.hours-card {
    padding: 18px;
}

.service-card > h3 {
    padding-bottom: 0;
    min-height: 3.1em;
    display: grid;
    place-items: end center;
}

.service-card > h3,
.service-card > p {
    text-align: center;
}

.service-card > a {
    display: block;
    margin-top: auto;
    text-align: right;
    text-decoration: none;
    text-underline-offset: 4px;
}

.service-card > a:hover {
    text-decoration: underline;
}

.service-card > a.btn {
    display: inline-flex;
    align-self: center;
    text-align: center;
    text-decoration: none;
}

.service-card > a.btn:hover {
    text-decoration: none;
}

.service-card > p {
    padding-top: 0;
}

.service-card > p:not(.service-price) {
    text-align: justify;
    text-align-last: left;
}

.service-price {
    display: inline-grid;
    place-items: center;
    justify-content: center;
    width: max-content;
    max-width: 100%;
    min-height: 50px;
    margin: 0 0 14px;
    padding: 0 24px;
    border: 1px solid rgba(15, 141, 134, .18);
    border-radius: 999px;
    background: #e8f8f4;
    color: var(--teal-dark);
    font-weight: 900;
    line-height: 1;
    text-align: center;
}

.service-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
}

.service-card-body .button-row {
    margin-top: auto;
}

.service-card > .service-price {
    display: inline-grid;
    min-height: 50px;
    max-width: calc(100% - 36px);
    margin: 10px auto 12px;
    padding: 0 24px;
}

.service-detail-price {
    margin: 8px 0 18px;
    font-size: 1.18rem;
}

.included {
    color: var(--muted);
    font-size: .94rem;
}

.injection-card .injection-card-image {
    width: min(190px, 70%);
    aspect-ratio: 1 / 1;
    margin: 18px auto 4px;
    padding: 16px;
    background: linear-gradient(180deg, #f7fbfd, #ffffff);
    object-fit: contain;
}

.injection-card .service-card-body {
    padding-top: 12px;
}

.serum-popup[hidden] {
    display: none;
}

.serum-popup {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: grid;
    place-items: center;
    padding: 18px;
}

.serum-popup-backdrop {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 18%, rgba(255, 205, 70, .35), transparent 26%),
        radial-gradient(circle at 84% 18%, rgba(233, 61, 131, .32), transparent 28%),
        rgba(5, 18, 22, .66);
    backdrop-filter: blur(10px) saturate(140%);
}

.serum-popup-panel {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(180px, .72fr) minmax(0, 1fr);
    gap: clamp(18px, 3vw, 30px);
    align-items: center;
    width: min(760px, 100%);
    padding: clamp(20px, 4vw, 34px);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .58);
    border-radius: 18px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .98), rgba(235, 255, 249, .96) 46%, rgba(255, 246, 252, .98)),
        #fff;
    box-shadow: 0 34px 100px rgba(0, 0, 0, .32);
}

.serum-popup-panel::before {
    content: "";
    position: absolute;
    inset: -40% auto auto -20%;
    width: 340px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 198, 54, .36), transparent 64%);
    pointer-events: none;
}

.serum-popup-close {
    position: absolute;
    top: 12px;
    right: 12px;
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(13, 19, 26, .16);
    border-radius: 50%;
    background: #fff;
    color: #0d131a;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
}

.serum-popup-media {
    display: grid;
    place-items: center;
    min-height: 230px;
    border-radius: 14px;
    background:
        radial-gradient(circle at 50% 36%, rgba(255, 204, 41, .34), transparent 42%),
        linear-gradient(160deg, #e8fff9, #fff 58%, #fff0f7);
    box-shadow: inset 0 0 0 1px rgba(15, 141, 134, .12);
}

.serum-popup-media img {
    width: min(220px, 82%);
    aspect-ratio: 1 / 1;
    object-fit: contain;
    filter: drop-shadow(0 18px 30px rgba(15, 141, 134, .24));
}

.serum-popup-copy h2 {
    max-width: 420px;
    color: #051216;
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    line-height: .95;
}

.serum-popup-tag {
    display: inline-flex;
    align-items: center;
    width: max-content;
    max-width: 100%;
    min-height: 34px;
    margin: 0 0 12px;
    padding: 0 13px;
    border-radius: 999px;
    background: #d71920;
    color: #fff !important;
    font-size: .78rem;
    font-weight: 1000;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.serum-popup-tag::after {
    content: "20% OFF";
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    margin-left: 8px;
    padding: 0 9px;
    border-radius: 999px;
    background: linear-gradient(90deg, #ffcc29, #ff7a59);
    color: #051216;
    font-size: .72rem;
    font-weight: 1000;
    letter-spacing: .06em;
}

.serum-popup-offer {
    margin: 12px 0 10px;
    color: #e93d83;
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    font-weight: 1000;
    line-height: 1.2;
}

.serum-popup-copy > p:not(.eyebrow):not(.service-price) {
    color: var(--muted);
}

.serum-popup-copy .service-price {
    background: #fff3c4;
    border-color: rgba(255, 122, 89, .28);
    color: #8a3f00;
}

.serum-popup-price {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 10px;
    margin: 8px 0 14px;
}

.serum-popup-price-original {
    color: #7b858d;
    font-size: 1.05rem;
    font-weight: 900;
    text-decoration: line-through;
    text-decoration-thickness: 3px;
    text-decoration-color: #d71920;
}

.serum-popup-price-sale {
    color: #d71920;
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 1000;
    line-height: 1;
}

.serum-popup-cta {
    min-height: 48px;
    padding-inline: 28px;
    border-color: #e93d83;
    background: linear-gradient(90deg, #e93d83, #ff7a59);
    box-shadow: 0 16px 36px rgba(233, 61, 131, .28);
    animation: serumButtonShake 3s ease-in-out infinite;
}

.serum-popup-cta:hover {
    border-color: #c92d6e;
    background: linear-gradient(90deg, #c92d6e, #ec6548);
}

@keyframes serumButtonShake {
    0%, 78%, 100% {
        transform: translateX(0);
    }

    82%, 90% {
        transform: translateX(-4px);
    }

    86%, 94% {
        transform: translateX(4px);
    }
}

body.serum-popup-open {
    overflow: hidden;
}

@media (max-width: 640px) {
    .serum-popup-panel {
        grid-template-columns: 1fr;
        max-height: min(720px, calc(100vh - 36px));
        overflow-y: auto;
    }

    .serum-popup-media {
        min-height: 190px;
    }

    .serum-popup-media img {
        width: min(170px, 72%);
    }
}

.section-heading {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: end;
    margin-bottom: 28px;
}

.site-footer {
    background: #071d21;
    color: rgba(255, 255, 255, .82);
    padding: 58px 0 26px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
    gap: 34px;
}

.footer-logo {
    width: 86px;
    height: 86px;
    object-fit: contain;
    margin-bottom: 10px;
}

.footer-tagline {
    color: #fff;
    font-weight: 900;
}

.site-footer h2 {
    color: #fff;
    font-size: 1.05rem;
}

.site-footer a {
    color: #fff;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li + li {
    margin-top: 8px;
}

.site-form input,
.site-form textarea {
    width: 100%;
    min-height: 46px;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    font: inherit;
}

.site-form button {
    cursor: pointer;
}

.hipaa-logo {
    width: 160px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-top: 30px;
    margin-top: 34px;
    border-top: 1px solid rgba(255, 255, 255, .12);
}
