:root {
    --navy: #06244a;
    --navy-deep: #141d29;
    --navy-soft: #123a64;
    --gold: #bd772f;
    --gold-soft: #d7a15b;
    --water: #eef7fd;
    --water-strong: #dcecf7;
    --white: #fff;
    --silk: #f8fbfe;
    --line: rgba(6, 36, 74, .18);
    --line-gold: rgba(189, 119, 47, .38);
    --text: #071f3f;
    --muted: #4d6075;
    --shadow: 0 18px 46px rgba(7, 31, 63, .08);
    --radius: 6px;
    --container: 1100px;
    --wide: 1280px;
    --gutter: clamp(1rem, 4vw, 4rem);
    --section: clamp(3.25rem, 7vw, 5.75rem);
    --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
    --font-script: "Allura", "Brush Script MT", cursive;
    --font-body: "Inter", Arial, sans-serif;
    --transition: 180ms ease;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    min-width: 320px;
    margin: 0;
    background: var(--white);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
}

body.menu-open {
    overflow: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
}

p {
    margin: 0;
}

.skip-link {
    position: absolute;
    top: -100px;
    left: 1rem;
    z-index: 200;
    padding: .7rem 1rem;
    background: var(--navy);
    color: var(--white);
}

.skip-link:focus {
    top: 1rem;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 1.5rem;
    min-height: 88px;
    padding: .95rem var(--gutter);
    background: rgba(255, 255, 255, .92);
    color: var(--navy-deep);
    backdrop-filter: blur(16px);
    transition: box-shadow var(--transition), min-height var(--transition), background var(--transition);
}

.site-header.is-scrolled {
    min-height: 76px;
    box-shadow: 0 10px 34px rgba(7, 31, 63, .08);
}

.page-home .site-header,
.page-shop .site-header,
.page-about .site-header,
.page-services .site-header,
.page-service-facial .site-header,
.page-service-wax .site-header,
.page-service-brow-and-lash .site-header,
.page-service-dermaplaning .site-header,
.page-service-hydro-verstand .site-header,
.page-service-jet-plasma .site-header,
.page-service-v-line-lift-facial .site-header,
.page-service-needle-free-filler-facial .site-header {
    position: fixed;
    right: 0;
    left: 0;
    background: transparent;
    box-shadow: none;
}

.page-home .site-header.is-scrolled,
.page-shop .site-header.is-scrolled,
.page-about .site-header.is-scrolled,
.page-services .site-header.is-scrolled,
.page-service-facial .site-header.is-scrolled,
.page-service-wax .site-header.is-scrolled,
.page-service-brow-and-lash .site-header.is-scrolled,
.page-service-dermaplaning .site-header.is-scrolled,
.page-service-hydro-verstand .site-header.is-scrolled,
.page-service-jet-plasma .site-header.is-scrolled,
.page-service-v-line-lift-facial .site-header.is-scrolled,
.page-service-needle-free-filler-facial .site-header.is-scrolled {
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 10px 34px rgba(7, 31, 63, .08);
}

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    color: var(--navy);
    text-decoration: none;
}

.brand-mark,
.footer-brand img {
    width: 42px;
    height: 32px;
    object-fit: contain;
}

.brand-name,
.footer-brand span span {
    display: block;
    font-family: var(--font-script);
    font-size: clamp(2rem, 3.2vw, 3.15rem);
    line-height: .8;
    letter-spacing: 0;
}

.brand-place,
.footer-brand small {
    display: block;
    margin-top: .2rem;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .42em;
    line-height: 1;
    text-transform: uppercase;
}

.brand-place {
    text-align: center;
    letter-spacing: 1em;
}

.brand {
    align-items: flex-start;
}

.brand .brand-mark {
    margin-top: .05rem;
}

.desktop-nav {
    display: none;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(1rem, 2.3vw, 2.2rem);
    font-size: .86rem;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.desktop-nav a {
    position: relative;
    text-decoration: none;
}

.desktop-nav a::after {
    position: absolute;
    right: 0;
    bottom: -.55rem;
    left: 0;
    height: 2px;
    background: var(--gold);
    content: "";
    opacity: 0;
    transform: scaleX(.55);
    transition: opacity var(--transition), transform var(--transition);
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after,
.desktop-nav a.is-active::after {
    opacity: 1;
    transform: scaleX(1);
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown::after {
    position: absolute;
    top: 100%;
    right: -1rem;
    left: -1rem;
    height: 1rem;
    content: "";
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + .35rem);
    left: 50%;
    z-index: 120;
    min-width: 220px;
    padding: .75rem;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .98);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 0);
    transition: opacity var(--transition), transform var(--transition);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

.nav-dropdown-menu a {
    display: block;
    padding: .55rem .65rem;
    color: var(--navy);
    text-transform: none;
    letter-spacing: 0;
}

.nav-dropdown-menu a::after {
    display: none;
}

.nav-dropdown-menu-wide {
    display: grid;
    grid-template-columns: repeat(2, minmax(180px, 1fr));
    min-width: min(560px, 80vw);
}

.nav-dropdown-cart-link {
    grid-column: 1 / -1;
    display: flex !important;
    align-items: center;
    gap: .45rem;
    margin-top: .35rem;
    padding-top: .75rem !important;
    border-top: 1px solid var(--line-gold);
    color: var(--gold) !important;
    font-weight: 900;
    letter-spacing: .12em !important;
    text-transform: uppercase !important;
}

.nav-cart-icon {
    display: inline-grid;
    place-items: center;
    width: 13px;
    height: 13px;
    flex: 0 0 13px;
    color: currentColor;
}

.nav-cart-icon svg {
    display: block;
    width: 13px;
    height: 13px;
    fill: currentColor;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: .75rem;
}

.button,
button.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    border: 1px solid var(--navy);
    border-radius: var(--radius);
    background: var(--navy);
    color: var(--white);
    font-family: var(--font-body);
    font-size: .82rem;
    font-weight: 800;
    letter-spacing: .08em;
    line-height: 1.1;
    padding: .85rem 1.35rem;
    text-decoration: none;
    text-transform: uppercase;
    cursor: pointer;
    transition: background var(--transition), border-color var(--transition), color var(--transition), transform var(--transition);
}

.button:hover,
.button:focus-visible {
    background: var(--navy-deep);
    border-color: var(--navy-deep);
    transform: translateY(-1px);
}

.button-secondary {
    background: transparent;
    color: var(--navy);
}

.button-secondary:hover,
.button-secondary:focus-visible {
    background: var(--navy);
    color: var(--white);
}

.button-gold {
    border-color: var(--gold-soft);
    background: linear-gradient(180deg, #e6b873, #cf9148);
    color: var(--navy-deep);
}

.button-gold:hover,
.button-gold:focus-visible {
    border-color: #f1c782;
    background: #e2ac62;
    color: var(--navy-deep);
}

.error-page {
    display: grid;
    place-items: center;
    min-height: clamp(520px, 70vh, 760px);
    padding: clamp(5rem, 10vw, 8rem) var(--gutter);
}

.error-card {
    width: min(100%, 680px);
    padding: clamp(2rem, 5vw, 3.5rem);
    border: 1px solid rgba(6, 38, 75, .1);
    background: rgba(255, 255, 255, .88);
    box-shadow: 0 24px 70px rgba(6, 38, 75, .1);
    backdrop-filter: blur(10px);
    text-align: center;
}

.error-card h1 {
    margin: 0;
    color: var(--navy-deep);
    font-family: var(--font-display);
    font-size: clamp(2.55rem, 8vw, 5.25rem);
    font-weight: 500;
    letter-spacing: 0;
    line-height: .95;
}

.error-card p:not(.eyebrow) {
    max-width: 520px;
    margin: 1.1rem auto 0;
    color: var(--muted);
    font-size: clamp(.98rem, 2vw, 1.08rem);
    line-height: 1.7;
}

.error-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: .85rem;
    margin-top: 1.65rem;
}

.button.button-danger,
button.button-danger {
    border-color: #b42318;
    background: #b42318;
    color: var(--white);
}

.button.button-danger:hover,
.button.button-danger:focus-visible,
button.button-danger:hover,
button.button-danger:focus-visible {
    border-color: #8f1d14;
    background: #8f1d14;
    color: var(--white);
}

.button-small {
    min-height: 42px;
    padding: .75rem 1.15rem;
}

.button-compact {
    min-height: 34px;
    padding: .48rem .8rem;
    font-size: .68rem;
}

.menu-toggle,
.icon-button {
    display: inline-grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--white);
    color: var(--navy);
    cursor: pointer;
}

.menu-toggle-lines,
.menu-toggle-lines::before,
.menu-toggle-lines::after {
    display: block;
    width: 18px;
    height: 2px;
    background: currentColor;
    content: "";
}

.menu-toggle-lines {
    position: relative;
}

.menu-toggle-lines::before,
.menu-toggle-lines::after {
    position: absolute;
    left: 0;
}

.menu-toggle-lines::before {
    top: -6px;
}

.menu-toggle-lines::after {
    top: 6px;
}

.site-main {
    overflow: hidden;
}

.page-shop .site-main {
    overflow: visible;
}

.page-product .site-main {
    overflow: visible;
}

.page-cart .site-main {
    overflow: visible;
}

.hero,
.catalog-hero,
.service-page-hero,
.about-hero,
.shop-hero,
.contact-hero,
.signature-treatment-cards,
.service-list-section,
.facial-menu-section,
.wax-menu-section,
.brow-lash-menu-section,
.dermaplaning-menu-section,
.hydro-brochure-intro,
.hydro-method-section,
.hydro-brochure-feature,
.hydro-transformation-section,
.hydro-guidance-section,
.hydro-expect-section,
.hydro-cta-panel,
.shop-editorial,
.about-story,
.services-discovery,
.related-services,
.contact-form-section {
    width: min(calc(100% - (var(--gutter) * 2)), var(--container));
    margin-inline: auto;
}

.water-field {
    position: relative;
    isolation: isolate;
}

.water-field::before,
.water-field::after {
    display: none;
}

.eyebrow,
.breadcrumb {
    color: var(--gold);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .16em;
    line-height: 1.2;
    text-transform: uppercase;
}

.breadcrumb {
    margin: 0 0 1.65rem;
    letter-spacing: .08em;
}

.breadcrumb a {
    color: var(--gold);
    text-decoration: none;
}

h1,
h2,
h3 {
    color: var(--navy-deep);
    font-family: var(--font-display);
    font-weight: 500;
    letter-spacing: 0;
    line-height: .98;
}

h1 {
    margin: 0;
    font-size: clamp(3.1rem, 5.2vw, 4.85rem);
}

h2 {
    margin: 0;
    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
}

h3 {
    margin: 0;
    font-size: clamp(1.6rem, 2.4vw, 2.15rem);
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, .8fr) minmax(420px, 1fr);
    align-items: center;
    gap: clamp(2rem, 5vw, 5rem);
    min-height: 520px;
    padding: clamp(1.5rem, 4vw, 3.25rem) 0;
}

.sketch-hero {
    position: relative;
    overflow: hidden;
    width: 100%;
    min-height: clamp(650px, 100svh, 820px);
    padding: clamp(8rem, 12vw, 10.5rem) var(--gutter) clamp(3rem, 6vw, 5rem);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(246, 251, 255, .38));
}

.sketch-hero::before {
    display: none;
}

.sketch-hero::after {
    display: none;
}

.hero-copy {
    position: relative;
    z-index: 2;
    min-width: 0;
    max-width: 620px;
    padding-left: clamp(0rem, 5vw, 4.5rem);
}

.hero h1 {
    max-width: 620px;
    margin-top: 1.1rem;
}

.sketch-hero h1 {
    max-width: 560px;
    font-size: clamp(2.75rem, 4.6vw, 4.2rem);
}

.hero-lede {
    max-width: 480px;
    margin-top: 1.2rem;
    color: var(--text);
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .14em;
    line-height: 1.65;
    text-transform: uppercase;
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.8rem;
}

.hero-provider {
    display: grid;
    gap: .2rem;
    margin-top: 1.55rem;
    color: var(--navy-deep);
}

.hero-provider strong {
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 2.2vw, 1.85rem);
    font-weight: 500;
    line-height: 1;
}

.hero-provider small {
    color: var(--gold);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .18em;
    line-height: 1.2;
    text-transform: uppercase;
}

.hero-image,
.catalog-hero-image,
.service-hero-image,
.contact-image,
.shop-image,
.skincare-image {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--water);
}

.hero-image {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 0;
    width: clamp(58%, 64vw, 70%);
    height: 100%;
    border-radius: 0;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, transparent 5%, rgba(0, 0, 0, .55) 24%, #000 50%);
    mask-image: linear-gradient(90deg, transparent 0%, transparent 5%, rgba(0, 0, 0, .55) 24%, #000 50%);
}

.hero-image::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, .82) 20%, rgba(255, 255, 255, .14) 44%, rgba(255, 255, 255, 0) 66%);
    content: "";
    pointer-events: none;
}

.hero-image img,
.catalog-hero-image img,
.service-hero-image img,
.contact-image img,
.shop-image img,
.skincare-image img,
.treatment-card-image img,
.service-list-image img,
.facial-treatment-image img,
.feature-panel-media img,
.about-story img,
.portrait-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-image img {
    position: absolute;
    inset: 0;
    opacity: 0;
    object-position: center;
    transition: opacity 900ms ease;
}

.hero-image img.is-active {
    opacity: 1;
}

.hero-water {
    position: absolute;
    pointer-events: none;
    background-image: var(--water-overlay-image);
    background-repeat: no-repeat;
}

.hero-water-sweep {
    inset: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    opacity: .7;
    background-position: left bottom;
    background-size: auto 100%;
    mix-blend-mode: screen;
}

.hero-water-sweep:not([style]) {
    display: none;
}

.hero-water-sweep:not([style])::before {
    display: none;
}

.benefit-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    max-width: 610px;
    margin-top: 2.2rem;
}

.benefit-row div,
.contact-benefits div {
    text-align: center;
}

.benefit-row strong,
.contact-benefits strong {
    display: block;
    margin-top: .45rem;
    color: var(--navy-deep);
    font-size: .82rem;
    font-weight: 700;
    line-height: 1.25;
}

.line-icon {
    position: relative;
    display: inline-grid;
    place-items: center;
    width: 50px;
    height: 50px;
    border: 1px solid var(--line-gold);
    border-radius: 999px;
    color: var(--gold);
}

.line-icon::before,
.line-icon::after {
    position: absolute;
    content: "";
}

.icon-face::before {
    width: 21px;
    height: 21px;
    border: 2px solid currentColor;
    border-radius: 50%;
}

.icon-face::after {
    width: 30px;
    height: 20px;
    border: 2px solid currentColor;
    border-top: 0;
    border-radius: 0 0 22px 22px;
    top: 19px;
}

.icon-care::before {
    width: 24px;
    height: 19px;
    border: 2px solid currentColor;
    border-top: 0;
    border-radius: 0 0 20px 20px;
    transform: rotate(-20deg);
}

.icon-care::after {
    width: 19px;
    height: 19px;
    border: 2px solid currentColor;
    border-radius: 50% 50% 45% 45%;
    transform: translate(7px, -7px) rotate(34deg);
}

.icon-bottle::before {
    width: 17px;
    height: 25px;
    border: 2px solid currentColor;
    border-radius: 3px;
    top: 17px;
}

.icon-bottle::after {
    width: 10px;
    height: 8px;
    border: 2px solid currentColor;
    border-bottom: 0;
    top: 9px;
}

.icon-shield::before {
    width: 24px;
    height: 28px;
    border: 2px solid currentColor;
    border-radius: 15px 15px 18px 18px;
}

.icon-shield::after {
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
}

.icon-drop::before {
    width: 22px;
    height: 29px;
    border: 2px solid currentColor;
    border-radius: 54% 46% 58% 42%;
    transform: rotate(38deg);
}

.icon-spark::before {
    width: 26px;
    height: 26px;
    border: 2px solid currentColor;
    transform: rotate(45deg) scale(.72);
}

.icon-spark::after {
    width: 34px;
    height: 2px;
    background: currentColor;
}

.icon-calendar::before {
    width: 25px;
    height: 24px;
    border: 2px solid currentColor;
    border-radius: 3px;
}

.icon-calendar::after {
    width: 25px;
    height: 2px;
    background: currentColor;
    top: 18px;
}

.icon-chat::before {
    width: 27px;
    height: 20px;
    border: 2px solid currentColor;
    border-radius: 12px;
}

.icon-chat::after {
    width: 8px;
    height: 8px;
    border-left: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    bottom: 13px;
    transform: rotate(-28deg);
}

.icon-phone::before {
    width: 22px;
    height: 22px;
    border-left: 3px solid currentColor;
    border-bottom: 3px solid currentColor;
    border-radius: 0 0 0 12px;
    transform: rotate(-42deg);
}

.icon-pin::before {
    width: 21px;
    height: 27px;
    border: 2px solid currentColor;
    border-radius: 50% 50% 48% 48%;
    transform: rotate(45deg);
}

.icon-pin::after {
    width: 6px;
    height: 6px;
    border: 2px solid currentColor;
    border-radius: 50%;
}

.icon-clock::before {
    width: 25px;
    height: 25px;
    border: 2px solid currentColor;
    border-radius: 50%;
}

.icon-clock::after {
    width: 9px;
    height: 9px;
    border-left: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translate(3px, -3px);
}

.icon-mail::before {
    width: 28px;
    height: 20px;
    border: 2px solid currentColor;
    border-radius: 2px;
}

.icon-mail::after {
    width: 18px;
    height: 18px;
    border-left: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(-45deg) translateY(-4px);
}

.section-heading {
    max-width: 720px;
    margin-bottom: 2.1rem;
}

.section-heading.centered {
    margin-inline: auto;
    text-align: center;
}

.section-heading p:not(.eyebrow) {
    max-width: 650px;
    margin: 1rem auto 0;
    color: var(--muted);
}

.signature-treatment-cards,
.service-list-section,
.facial-menu-section,
.brow-lash-menu-section,
.wax-menu-section,
.dermaplaning-menu-section,
.shop-editorial,
.about-story,
.services-discovery,
.related-services,
.contact-form-section {
    padding: var(--section) 0;
}

.treatment-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.treatment-card,
.service-list-row,
.facial-treatment-row,
.contact-form-card,
.contact-info-card,
.hours-card,
.mini-service-card,
.feature-panel {
    border: 1px solid var(--line-gold);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .88);
}

.treatment-card {
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(7, 31, 63, .05);
}

.treatment-card-image {
    display: block;
    height: 245px;
    overflow: hidden;
}

.treatment-card-image img,
.service-list-image img,
.facial-treatment-image img {
    transition: transform 550ms ease;
}

.treatment-card:hover img,
.service-list-row:hover img,
.facial-treatment-row:hover img {
    transform: scale(1.035);
}

.treatment-card-body {
    position: relative;
    min-height: 215px;
    padding: 2.2rem 1.65rem 1.55rem;
}

.treatment-card-body .line-icon {
    position: absolute;
    top: -26px;
    left: 1.4rem;
    background: var(--white);
}

.treatment-card-body p {
    color: var(--muted);
    font-size: .95rem;
    line-height: 1.55;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    margin-top: 1rem;
    color: var(--gold);
    font-size: .82rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-decoration: none;
    text-transform: uppercase;
}

.text-link::after {
    content: "->";
    transition: transform var(--transition);
}

.text-link:hover::after,
.text-link:focus-visible::after {
    transform: translateX(.25rem);
}

.centered-action {
    display: flex;
    justify-content: center;
    margin-top: 1.4rem;
}

.offer-band {
    width: min(calc(100% - 2rem), var(--wide));
    margin-inline: auto;
}

.offer-band,
.booking-band {
    width: 100%;
    max-width: none;
    margin-inline: 0;
}

.water-band {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(250px, .48fr) minmax(0, 1fr);
    align-items: center;
    gap: clamp(1.5rem, 5vw, 4rem);
    padding: clamp(1.8rem, 4vw, 3.4rem) clamp(1.25rem, 6vw, 4rem);
    background: linear-gradient(135deg, var(--navy-deep), var(--navy) 55%, #00122a);
    color: var(--white);
}

.offer-band.water-band,
.booking-band.water-band {
    min-height: clamp(210px, 22vw, 300px);
    padding-inline: max(var(--gutter), calc((100vw - var(--wide)) / 2 + 4rem));
    background:
        var(--offer-band-background),
        linear-gradient(135deg, var(--navy-deep), var(--navy) 55%, #00122a);
    background-position: center;
    background-size: cover;
    border-radius: 0;
}

.gift-card-band {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: clamp(1.5rem, 4vw, 3rem);
    width: 100%;
    margin-top: var(--section);
    padding: clamp(2.5rem, 6vw, 5rem) max(var(--gutter), calc((100vw - var(--wide)) / 2 + 4rem));
    background:
        var(--offer-band-background),
        linear-gradient(135deg, var(--navy-deep), var(--navy) 55%, #00122a);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    color: var(--white);
}

.gift-card-band > div {
    width: min(100%, 720px);
}

.gift-card-band h2 {
    color: var(--white);
}

.gift-card-band p:not(.eyebrow) {
    max-width: 760px;
    color: rgba(255, 255, 255, .86);
}

.gift-card-band .button {
    white-space: nowrap;
}

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

.booking-band h2 {
    color: var(--white);
}

.booking-band p:not(.eyebrow) {
    max-width: 520px;
    color: rgba(255, 255, 255, .86);
}

.booking-band > .button {
    justify-self: end;
    min-width: min(100%, 240px);
}

.owner-slogan {
    display: grid;
    place-items: center;
    min-height: clamp(280px, 34vw, 430px);
    padding: clamp(3.5rem, 7vw, 6rem) var(--gutter);
    border-top: 1px solid var(--line-gold);
    border-bottom: 1px solid var(--line-gold);
    background:
        var(--owner-slogan-background),
        linear-gradient(135deg, #dbe9e6, #eef6f3);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
}

.owner-slogan-inner {
    width: min(100%, 720px);
}

.owner-slogan-mark {
    display: block;
    height: 32px;
    color: #315e57;
    font-family: var(--font-display);
    font-size: 4.2rem;
    line-height: .8;
}

.owner-slogan h2 {
    margin: .4rem auto 1.35rem;
    color: #06463d;
    font-size: clamp(1.65rem, 2.6vw, 2.15rem);
    line-height: 1.35;
}

.owner-slogan-credit {
    display: grid;
    justify-items: center;
    gap: .25rem;
}

.owner-slogan-credit img {
    width: 38px;
    height: 38px;
    border: 2px solid rgba(255, 255, 255, .86);
    border-radius: 999px;
    object-fit: cover;
    box-shadow: 0 8px 18px rgba(7, 31, 63, .12);
}

.owner-slogan-credit strong {
    margin-top: .35rem;
    color: #06463d;
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .32em;
    line-height: 1.2;
    text-transform: uppercase;
}

.owner-slogan-credit small {
    color: #4b706a;
    font-size: .78rem;
    line-height: 1.1;
}

.offer-medallion {
    justify-self: center;
    display: grid;
    place-items: center;
    width: clamp(170px, 18vw, 230px);
    height: clamp(170px, 18vw, 230px);
    border: 2px solid var(--gold-soft);
    border-radius: 50%;
    text-align: center;
}

.offer-medallion span,
.offer-medallion small {
    color: rgba(255, 255, 255, .85);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.offer-medallion strong {
    display: block;
    color: var(--white);
    font-family: var(--font-display);
    font-size: clamp(2.6rem, 5vw, 4.1rem);
    font-weight: 500;
    line-height: .9;
    text-transform: uppercase;
}

.offer-copy {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 2rem;
    border-left: 1px solid rgba(255, 255, 255, .35);
    padding-left: clamp(1.5rem, 4vw, 3.2rem);
}

.offer-copy p {
    grid-column: 1;
    max-width: 460px;
    color: var(--white);
    font-size: clamp(.92rem, 1.5vw, 1.1rem);
    font-weight: 300;
    letter-spacing: .12em;
    line-height: 1.45;
    text-transform: uppercase;
}

.offer-copy small {
    grid-column: 1;
    max-width: 680px;
    color: rgba(255, 255, 255, .82);
    font-size: .84rem;
    font-weight: 400;
    letter-spacing: .02em;
    line-height: 1.65;
}

.offer-copy .button {
    grid-column: 2;
    grid-row: 1 / span 2;
    min-width: 260px;
    white-space: nowrap;
}

.skincare-showcase {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, .75fr) minmax(420px, 1fr);
    align-items: center;
    gap: clamp(1.5rem, 5vw, 4rem);
    width: 100%;
    padding: var(--section) var(--gutter);
    background:
        var(--shop-showcase-background),
        linear-gradient(90deg, var(--silk), var(--water));
    background-position: center;
    background-size: cover;
}

.skincare-showcase::before {
    left: -4rem;
    bottom: 1rem;
}

.skincare-showcase::after {
    right: 4rem;
    top: 2rem;
}

.skincare-copy {
    max-width: 500px;
    justify-self: end;
}

.skincare-copy p:not(.eyebrow) {
    margin: 1rem 0 1.5rem;
    color: var(--muted);
}

.skincare-image {
    position: relative;
    height: clamp(280px, 35vw, 430px);
    background: transparent;
}

.skincare-image img {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 850ms ease;
}

.skincare-image img.is-active {
    opacity: 1;
}

.skincare-image.has-product-rotator img {
    object-fit: contain;
}

.brow-lash-menu-section {
    padding-bottom: clamp(1.25rem, 3vw, 2.5rem);
}

.brow-lash-shop-showcase {
    display: flex;
    align-items: center;
    min-height: clamp(360px, 42vw, 520px);
    margin-top: 0;
    background:
        var(--shop-showcase-background),
        linear-gradient(135deg, var(--navy-deep), var(--navy));
    background-position: center;
    background-size: cover;
    color: var(--white);
}

.brow-lash-shop-showcase .skincare-copy {
    width: min(100%, var(--container));
    max-width: 600px;
    margin-inline: auto;
    padding: clamp(1.35rem, 3vw, 2.25rem);
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: var(--radius);
    background: rgba(3, 26, 54, .72);
    box-shadow: 0 22px 52px rgba(3, 26, 54, .24);
    backdrop-filter: blur(8px);
    justify-self: auto;
}

.brow-lash-shop-showcase h2,
.brow-lash-shop-showcase .eyebrow,
.brow-lash-shop-showcase p:not(.eyebrow) {
    color: var(--white);
}

.brow-lash-shop-showcase p:not(.eyebrow) {
    color: rgba(255, 255, 255, .86);
}

.brow-lash-shop-showcase .button-secondary {
    border-color: var(--white);
    color: var(--white);
}

.brow-lash-shop-showcase .button-secondary:hover,
.brow-lash-shop-showcase .button-secondary:focus-visible {
    background: var(--white);
    color: var(--navy-deep);
}

.feature-panels {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    width: min(calc(100% - 2rem), var(--wide));
    margin: 1rem auto 0;
}

.homepage-feature-panels {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    width: 100%;
    margin: 0;
}

.feature-panel {
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(160px, .55fr) minmax(0, 1fr);
    align-items: center;
    min-height: 190px;
    background: linear-gradient(135deg, var(--white), var(--water));
}

.homepage-feature-panels .feature-panel {
    display: grid;
    grid-template-columns: minmax(var(--gutter), 1fr) minmax(260px, 46%) var(--gutter);
    align-items: center;
    min-height: clamp(260px, 27vw, 360px);
    border-left: 0;
    border-radius: 0;
    background-image:
        var(--feature-panel-background, none),
        linear-gradient(135deg, var(--white), var(--water));
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.homepage-feature-panels .feature-panel.has-background-image {
    background-image: var(--feature-panel-background);
}

.homepage-feature-panels .feature-panel:first-child {
    border-right: 0;
}

.homepage-feature-panels .feature-panel:last-child {
    border-right: 0;
}

.feature-panel::before {
    right: -3rem;
    bottom: -4rem;
}

.homepage-feature-panels .feature-panel::before {
    left: 3vw;
    bottom: -5rem;
    right: auto;
}

.homepage-feature-panels .feature-panel::after {
    right: 7vw;
    top: 2.5rem;
}

.homepage-feature-panels .feature-panel.has-background-image::before,
.homepage-feature-panels .feature-panel.has-background-image::after {
    display: none;
}

.feature-panel-media {
    height: 100%;
    min-height: 190px;
    opacity: .72;
}

.feature-panel-media.is-decorative {
    background: linear-gradient(135deg, #f9fcff, var(--water));
}

.feature-panel > div:last-child {
    padding: 1.4rem;
}

.feature-panel-copy {
    position: relative;
    z-index: 1;
    grid-column: 2;
    justify-self: stretch;
    width: 100%;
    padding: clamp(2rem, 4vw, 3.4rem) 0;
}

.homepage-feature-panels .feature-panel-copy {
    padding: clamp(2rem, 4vw, 3.4rem) 0;
}

.homepage-feature-panels .feature-panel > .feature-panel-copy {
    padding: clamp(2rem, 4vw, 3.4rem) 0;
}

.feature-panel h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
}

.homepage-feature-panels .feature-panel h2 {
    font-size: clamp(2.35rem, 4.2vw, 4rem);
}

.feature-panel p:not(.eyebrow) {
    max-width: 360px;
    color: var(--muted);
}

.homepage-feature-panels .feature-panel p:not(.eyebrow) {
    max-width: 390px;
    margin-top: .75rem;
    color: var(--muted);
}

.homepage-feature-panels .feature-panel .text-link,
.homepage-feature-panels .feature-panel .button {
    margin-top: 1.2rem;
}

.feature-panel-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
}

.feature-panel-actions .button {
    flex: 1 1 160px;
    padding-right: 1rem;
    padding-left: 1rem;
}

.catalog-hero,
.service-page-hero,
.contact-hero,
.about-hero,
.shop-hero {
    display: grid;
    grid-template-columns: minmax(0, .82fr) minmax(360px, .95fr);
    align-items: center;
    gap: clamp(2rem, 5vw, 4.5rem);
    min-height: 410px;
    padding: clamp(2rem, 5vw, 4rem) 0;
}

.catalog-hero::before,
.service-page-hero::before,
.contact-hero::before,
.about-hero::before,
.shop-hero::before {
    left: -8rem;
    bottom: 2rem;
}

.catalog-hero p:not(.eyebrow):not(.breadcrumb),
.service-page-hero p:not(.eyebrow):not(.breadcrumb),
.contact-hero p:not(.eyebrow):not(.breadcrumb),
.about-hero p:not(.eyebrow):not(.breadcrumb),
.shop-hero p:not(.eyebrow):not(.breadcrumb) {
    max-width: 520px;
    margin-top: 1.2rem;
    color: var(--muted);
}

.catalog-hero-image,
.service-hero-image,
.contact-image,
.shop-image {
    height: clamp(280px, 38vw, 480px);
    box-shadow: var(--shadow);
}

.contact-hero {
    width: min(calc(100% - 2rem), var(--wide));
    grid-template-columns: minmax(0, .78fr) minmax(480px, 1fr);
}

.contact-benefits {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 2.3rem;
}

.contact-benefits div {
    border-right: 1px solid var(--line);
    padding-inline: .7rem;
}

.contact-benefits div:last-child {
    border-right: 0;
}

.contact-benefits small {
    display: block;
    color: var(--muted);
    font-size: .78rem;
    line-height: 1.45;
}

.contact-form-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, .78fr);
    gap: clamp(1.5rem, 4vw, 3rem);
}

.contact-form-card,
.contact-info-card {
    padding: clamp(1.5rem, 4vw, 3rem);
}

.contact-form-card h2,
.contact-info-card h2,
.hours-card h3 {
    margin-bottom: .8rem;
}

.contact-form-card p,
.contact-info-card p {
    color: var(--muted);
}

.contact-form-card label {
    display: grid;
    gap: .35rem;
    margin-top: 1rem;
    color: var(--navy);
    font-size: .86rem;
    font-weight: 600;
}

.contact-form-card input,
.contact-form-card select,
.contact-form-card textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 3px;
    background: rgba(255, 255, 255, .9);
    color: var(--text);
    font: inherit;
    min-height: 42px;
    padding: .65rem .8rem;
}

.contact-form-card textarea {
    resize: vertical;
}

.contact-detail-list {
    display: grid;
    margin: 1.6rem 0;
}

.contact-detail-list section {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    align-items: center;
    gap: .9rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--line);
}

.contact-detail-list .line-icon {
    width: 34px;
    height: 34px;
    border: 0;
}

.contact-detail-list address {
    font-style: normal;
}

.hours-card {
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--white), var(--silk));
}

.hours-list {
    display: grid;
    gap: .55rem;
    margin: .8rem 0 0;
}

.hours-list div {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1rem;
}

.hours-list dt {
    color: var(--navy);
    font-size: .86rem;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.hours-list dd {
    margin: 0;
    color: var(--text);
}

.service-list {
    display: grid;
    gap: .75rem;
}

.service-list-row,
.facial-treatment-row {
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(190px, 320px) 72px minmax(0, 1fr) auto;
    align-items: center;
    min-height: 158px;
}

.service-list-row {
    height: 210px;
}

.service-list-image,
.facial-treatment-image {
    height: 100%;
    min-height: 158px;
    overflow: hidden;
}

.service-list-row > .line-icon,
.facial-treatment-row > .line-icon {
    justify-self: center;
    background: var(--white);
}

.service-list-copy,
.facial-treatment-copy {
    padding: 1.2rem 1rem 1.2rem 0;
}

.service-list-copy .eyebrow,
.facial-treatment-copy small {
    display: block;
    margin-bottom: .4rem;
    color: var(--gold);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.service-list-copy h2,
.facial-treatment-copy h3 {
    margin-bottom: .35rem;
    font-size: clamp(1.7rem, 2.8vw, 2.3rem);
}

.service-list-copy h2 a,
.facial-treatment-copy h3 a,
.mini-service-card h3 a {
    text-decoration: none;
}

.service-list-copy p,
.facial-treatment-copy p {
    color: var(--muted);
    font-size: .92rem;
    line-height: 1.55;
}

.facial-treatment-grid,
.wax-treatment-grid,
.brow-lash-treatment-grid,
.dermaplaning-treatment-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.hydroglow-feature {
    display: grid;
    grid-template-columns: minmax(220px, .78fr) minmax(280px, 1fr) minmax(220px, .78fr);
    align-items: stretch;
    gap: 0;
    margin: clamp(2rem, 5vw, 4rem) auto clamp(2rem, 4vw, 3.5rem);
    background: var(--white);
    box-shadow: 0 18px 44px rgba(7, 31, 63, .08);
}

.hydroglow-feature-intro {
    grid-column: 1 / -1;
    padding: clamp(1.8rem, 4vw, 3rem) clamp(1.5rem, 4vw, 2.5rem) 1rem;
    background: linear-gradient(135deg, #dbe9e6, #eef6f3);
}

.hydroglow-feature-intro h2 {
    font-size: clamp(2.1rem, 3.6vw, 3.1rem);
}

.hydroglow-feature-intro p:not(.eyebrow) {
    max-width: 940px;
    margin-top: 1rem;
    color: var(--muted);
    line-height: 1.75;
}

.hydroglow-feature-card {
    display: grid;
    align-content: start;
    padding: clamp(1.5rem, 3vw, 2.4rem);
}

.hydroglow-feature-card small {
    color: var(--gold);
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.hydroglow-feature-card h3 {
    margin-top: .35rem;
    font-size: clamp(1.35rem, 2vw, 1.8rem);
}

.hydroglow-feature-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    margin: 1.25rem 0;
    object-fit: cover;
}

.hydroglow-feature-card p,
.hydroglow-feature-copy p {
    color: var(--muted);
    font-size: .95rem;
    line-height: 1.7;
}

.hydroglow-feature-image {
    min-height: 520px;
    overflow: hidden;
}

.hydroglow-feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hydroglow-feature-copy {
    display: grid;
    align-content: center;
    justify-items: start;
    padding: clamp(1.5rem, 4vw, 3rem);
}

.hydroglow-feature-copy h3 {
    max-width: 320px;
    font-size: clamp(2.45rem, 4.2vw, 4rem);
    font-weight: 400;
    line-height: 1.05;
}

.hydroglow-feature-copy .text-link:last-child {
    margin-top: clamp(3rem, 9vw, 8rem);
}

.facial-treatment-tile,
.wax-treatment-tile,
.brow-lash-treatment-tile,
.dermaplaning-treatment-tile {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 500px;
    padding: 0 1.45rem 1.45rem;
    border: 1px solid var(--line-gold);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .9);
}

.facial-treatment-tile-image,
.wax-treatment-tile-image,
.brow-lash-treatment-tile-image,
.dermaplaning-treatment-tile-image {
    display: block;
    height: 190px;
    margin: 0 -1.45rem 0;
    overflow: hidden;
    background: var(--water);
}

.facial-treatment-tile-image img,
.wax-treatment-tile-image img,
.brow-lash-treatment-tile-image img,
.dermaplaning-treatment-tile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 550ms ease;
}

.facial-treatment-tile:hover .facial-treatment-tile-image img,
.wax-treatment-tile:hover .wax-treatment-tile-image img,
.brow-lash-treatment-tile:hover .brow-lash-treatment-tile-image img,
.dermaplaning-treatment-tile:hover .dermaplaning-treatment-tile-image img {
    transform: scale(1.035);
}

.facial-treatment-tile .line-icon,
.wax-treatment-tile .line-icon,
.brow-lash-treatment-tile .line-icon,
.dermaplaning-treatment-tile .line-icon {
    margin: -26px 0 1rem;
    background: var(--white);
}

.facial-treatment-tile small,
.wax-treatment-tile small,
.brow-lash-treatment-tile small,
.dermaplaning-treatment-tile small {
    display: block;
    margin-bottom: .55rem;
    color: var(--gold);
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .12em;
    line-height: 1.35;
    text-transform: uppercase;
}

.facial-treatment-tile h3,
.wax-treatment-tile h3,
.brow-lash-treatment-tile h3,
.dermaplaning-treatment-tile h3 {
    margin-bottom: .75rem;
    font-size: clamp(1.55rem, 2.2vw, 2rem);
}

.facial-treatment-tile p,
.wax-treatment-tile p,
.brow-lash-treatment-tile p,
.dermaplaning-treatment-tile p {
    margin-bottom: 1rem;
    color: var(--muted);
    font-size: .92rem;
    line-height: 1.55;
}

.facial-treatment-tile strong,
.wax-treatment-tile strong,
.brow-lash-treatment-tile strong,
.dermaplaning-treatment-tile strong {
    display: block;
    color: var(--gold);
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.facial-treatment-tile-footer,
.wax-treatment-tile-footer,
.brow-lash-treatment-tile-footer,
.dermaplaning-treatment-tile-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: auto;
    padding-top: 1rem;
}

.facial-treatment-tile-footer .button,
.wax-treatment-tile-footer .button,
.brow-lash-treatment-tile-footer .button,
.dermaplaning-treatment-tile-footer .button {
    flex: 0 0 auto;
    min-height: 40px;
    margin-top: 0;
    padding: .65rem 1rem;
}

.brow-lash-info-tile {
    display: grid;
    grid-template-columns: minmax(260px, .42fr) minmax(0, 1fr);
    gap: clamp(1.4rem, 4vw, 3rem);
    align-items: stretch;
    margin-top: 1.2rem;
    overflow: hidden;
    border: 1px solid var(--line-gold);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .9);
}

.brow-lash-info-image {
    min-height: 320px;
    background: var(--water);
}

.brow-lash-info-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brow-lash-info-copy {
    display: grid;
    align-content: center;
    gap: .9rem;
    padding: clamp(1.5rem, 4vw, 3rem);
}

.brow-lash-info-copy h3 {
    max-width: 640px;
}

.brow-lash-info-copy p:not(.eyebrow) {
    max-width: 760px;
    color: var(--muted);
    line-height: 1.65;
}

.facial-treatment-copy strong {
    display: block;
    margin-top: .6rem;
    color: var(--gold);
    font-size: .8rem;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.facial-treatment-row > .button,
.service-list-row > .button {
    margin-right: 1rem;
    white-space: nowrap;
}

.consultation-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 1.5rem;
    margin-top: 1.25rem;
    padding: clamp(1.5rem, 4vw, 2.5rem);
    border: 1px solid var(--line-gold);
    border-radius: var(--radius);
    background: linear-gradient(135deg, var(--white), var(--water));
}

.consultation-panel h2 {
    max-width: none;
    font-size: clamp(1.85rem, 3vw, 2.65rem);
}

.treatment-menu {
    display: grid;
    grid-template-columns: minmax(260px, .42fr) minmax(0, 1fr);
    gap: clamp(1.5rem, 4vw, 3rem);
    width: min(calc(100% - (var(--gutter) * 2)), var(--container));
    margin-inline: auto;
    padding: var(--section) 0;
}

.menu-intro {
    position: sticky;
    top: 110px;
    align-self: start;
}

.menu-sections {
    display: grid;
    gap: 2rem;
}

.pricing-list {
    display: grid;
    border-top: 1px solid var(--line-gold);
}

.pricing-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--line);
}

.pricing-row h4 {
    margin: 0;
    color: var(--navy-deep);
    font-family: var(--font-display);
    font-size: 1.45rem;
    font-weight: 500;
    line-height: 1.2;
}

.pricing-row p,
.menu-intro p:not(.eyebrow) {
    color: var(--muted);
}

.pricing-row strong {
    color: var(--gold);
    white-space: nowrap;
}

.pricing-row-action {
    display: flex;
    align-items: center;
    gap: .8rem;
}

.contact-panel {
    width: min(calc(100% - (var(--gutter) * 2)), var(--container));
    margin-inline: auto;
}

.policy-page {
    min-height: 52vh;
    display: grid;
    align-items: center;
    width: min(calc(100% - (var(--gutter) * 2)), 860px);
    margin-inline: auto;
    padding: var(--section) 0;
}

.plain-list {
    margin: 0;
    color: var(--muted);
}

.mini-service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.mini-service-card {
    padding: 1.3rem;
}

.mini-service-card p {
    color: var(--muted);
}

.about-hero {
    grid-template-columns: minmax(0, 1fr) minmax(220px, 360px);
}

.about-sketch-hero {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    min-height: clamp(640px, 72vh, 780px);
    width: 100%;
    margin-top: calc(-1 * var(--header-height));
    padding: calc(var(--header-height) + 3rem) var(--gutter) 4.5rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(246, 251, 255, .46));
}

.services-sketch-hero,
.facial-sketch-hero,
.wax-sketch-hero,
.brow-lash-sketch-hero,
.dermaplaning-sketch-hero,
.hydro-verstand-sketch-hero,
.jet-plasma-sketch-hero,
.needle-free-sketch-hero {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    min-height: clamp(640px, 72vh, 780px);
    width: 100%;
    margin-top: calc(-1 * var(--header-height));
    padding: calc(var(--header-height) + 3rem) var(--gutter) 4.5rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(246, 251, 255, .46));
}

.services-sketch-hero .hero-copy,
.facial-sketch-hero .hero-copy,
.wax-sketch-hero .hero-copy,
.brow-lash-sketch-hero .hero-copy,
.dermaplaning-sketch-hero .hero-copy,
.hydro-verstand-sketch-hero .hero-copy,
.jet-plasma-sketch-hero .hero-copy,
.needle-free-sketch-hero .hero-copy {
    min-width: 0;
    max-width: 650px;
    padding-left: clamp(0rem, 5vw, 4.5rem);
}

.services-sketch-hero h1,
.facial-sketch-hero h1,
.wax-sketch-hero h1,
.brow-lash-sketch-hero h1,
.dermaplaning-sketch-hero h1,
.hydro-verstand-sketch-hero h1,
.jet-plasma-sketch-hero h1,
.needle-free-sketch-hero h1 {
    max-width: 650px;
    font-size: clamp(2.75rem, 4.6vw, 4.2rem);
}

.services-hero-image,
.facial-hero-image,
.wax-hero-image,
.brow-lash-hero-image,
.dermaplaning-hero-image,
.hydro-verstand-hero-image,
.jet-plasma-hero-image,
.needle-free-hero-image {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 0;
    width: clamp(68%, 74vw, 80%);
    height: 100%;
    overflow: hidden;
    background: var(--water);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, .38) 12%, rgba(0, 0, 0, .82) 28%, #000 46%);
    mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, .38) 12%, rgba(0, 0, 0, .82) 28%, #000 46%);
}

.services-hero-image::after,
.facial-hero-image::after,
.wax-hero-image::after,
.brow-lash-hero-image::after,
.dermaplaning-hero-image::after,
.hydro-verstand-hero-image::after,
.jet-plasma-hero-image::after,
.needle-free-hero-image::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, .86) 0%, rgba(255, 255, 255, .54) 18%, rgba(255, 255, 255, .08) 38%, rgba(255, 255, 255, 0) 58%);
    content: "";
    pointer-events: none;
}

.services-hero-image img,
.facial-hero-image img,
.wax-hero-image img,
.brow-lash-hero-image img,
.dermaplaning-hero-image img,
.hydro-verstand-hero-image img,
.jet-plasma-hero-image img,
.needle-free-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.about-hero-image {
    width: clamp(68%, 74vw, 80%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, .38) 12%, rgba(0, 0, 0, .82) 28%, #000 46%);
    mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, .38) 12%, rgba(0, 0, 0, .82) 28%, #000 46%);
}

.about-hero-image::after {
    background: linear-gradient(90deg, rgba(255, 255, 255, .86) 0%, rgba(255, 255, 255, .54) 18%, rgba(255, 255, 255, .08) 38%, rgba(255, 255, 255, 0) 58%);
}

.about-sketch-hero .hero-copy {
    min-width: 0;
    max-width: 500px;
    padding-left: clamp(0rem, 5vw, 4.5rem);
}

.about-sketch-hero h1 {
    max-width: 500px;
    font-size: clamp(2.75rem, 4.6vw, 4.2rem);
}

.about-hero-image {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 0;
    height: 100%;
    overflow: hidden;
    background: var(--water);
}

.about-hero-image::after {
    position: absolute;
    inset: 0;
    content: "";
    pointer-events: none;
}

.about-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hydro-brochure-intro {
    display: grid;
    grid-template-columns: minmax(0, .72fr) minmax(0, 1fr);
    gap: clamp(1.5rem, 5vw, 4rem);
    padding: var(--section) 0 clamp(2rem, 4vw, 3.5rem);
}

.hydro-brochure-copy {
    display: grid;
    gap: 1rem;
    color: var(--muted);
    font-size: clamp(1.05rem, 1.6vw, 1.25rem);
    line-height: 1.75;
}

.hydro-method-section {
    width: 100%;
    max-width: none;
    padding: var(--section) var(--gutter);
    background: #338ef3;
    color: var(--white);
}

.hydro-method-intro {
    width: min(100%, var(--container));
    margin: 0 auto clamp(2rem, 5vw, 4rem);
}

.hydro-method-intro h2 {
    max-width: 760px;
    color: var(--white);
    font-size: clamp(2rem, 3.8vw, 3.2rem);
}

.hydro-method-intro p {
    max-width: 500px;
    margin-top: 1.1rem;
    color: rgba(255, 255, 255, .9);
    font-size: clamp(1.05rem, 1.8vw, 1.35rem);
    line-height: 1.55;
}

.hydro-method-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: clamp(1rem, 2.6vw, 2.4rem);
    width: min(100%, var(--wide));
    margin-inline: auto;
}

.hydro-method-card {
    min-width: 0;
}

.hydro-method-image {
    display: grid;
    place-items: center;
    width: clamp(130px, 11vw, 170px);
    aspect-ratio: 1;
    margin: 0 auto 1.4rem;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 16px 34px rgba(3, 26, 54, .18);
}

.hydro-method-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hydro-method-image .line-icon {
    width: 64px;
    height: 64px;
    border-color: rgba(6, 36, 74, .22);
    color: var(--navy);
}

.hydro-method-card h3 {
    color: var(--white);
    font-family: var(--font-body);
    font-size: clamp(1rem, 1.45vw, 1.25rem);
    font-weight: 900;
    line-height: 1.2;
}

.hydro-method-card p {
    margin-top: .4rem;
    color: rgba(255, 255, 255, .88);
    font-size: clamp(.96rem, 1.35vw, 1.18rem);
    line-height: 1.45;
}

.hydro-brochure-feature {
    display: grid;
    grid-template-columns: minmax(240px, .52fr) minmax(300px, .8fr) minmax(240px, .48fr);
    align-items: stretch;
    padding: 0 0 var(--section);
}

.hydro-brochure-card,
.hydro-brochure-aside,
.hydro-brochure-image {
    min-height: clamp(430px, 48vw, 660px);
}

.hydro-brochure-card,
.hydro-brochure-aside {
    display: grid;
    align-content: center;
    padding: clamp(1.5rem, 4vw, 2.4rem);
    background: var(--white);
}

.hydro-brochure-card {
    border: 1px solid var(--line-gold);
    border-right: 0;
}

.hydro-brochure-card small,
.hydro-transformation-card small {
    color: var(--gold);
    font-size: .76rem;
    font-weight: 900;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.hydro-brochure-card h2 {
    margin-top: .8rem;
    font-size: clamp(2rem, 3.5vw, 3rem);
}

.hydro-brochure-card p {
    margin-top: 1rem;
    color: var(--muted);
}

.hydro-brochure-image {
    overflow: hidden;
    background: var(--water);
}

.hydro-brochure-image img,
.hydro-guidance-image img,
.hydro-transformation-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hydro-brochure-aside {
    border: 1px solid var(--line-gold);
    border-left: 0;
    background: linear-gradient(180deg, var(--silk), var(--water));
}

.hydro-brochure-aside ul {
    display: grid;
    gap: .8rem;
    margin: 1.2rem 0 0;
    padding: 0;
    list-style: none;
}

.hydro-brochure-aside li {
    padding-bottom: .8rem;
    border-bottom: 1px solid var(--line);
    color: var(--navy-deep);
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 2.3vw, 1.9rem);
    line-height: 1.05;
}

.hydro-transformation-section {
    padding: var(--section) 0;
    background: linear-gradient(180deg, var(--water), var(--silk));
}

.hydro-transformation-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.hydro-transformation-card {
    overflow: hidden;
    display: grid;
    grid-template-rows: minmax(260px, 1fr) auto;
    min-height: 520px;
    border: 1px solid var(--line-gold);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .9);
}

.hydro-transformation-card > img {
    min-height: 280px;
}

.hydro-transformation-card > div {
    display: grid;
    align-content: center;
    padding: clamp(1.25rem, 3vw, 2rem);
}

.hydro-transformation-card h3 {
    margin-top: .55rem;
}

.hydro-transformation-card ul {
    display: grid;
    gap: .7rem;
    margin: 1rem 0 0;
    padding-left: 1.1rem;
    color: var(--muted);
}

.hydro-guidance-section {
    display: grid;
    grid-template-columns: minmax(300px, .7fr) minmax(0, 1fr);
    align-items: center;
    gap: clamp(1.5rem, 5vw, 4rem);
    padding: var(--section) 0;
}

.hydro-guidance-image {
    overflow: hidden;
    height: clamp(390px, 44vw, 600px);
    border-radius: var(--radius);
    background: var(--water);
    box-shadow: var(--shadow);
}

.hydro-guidance-list {
    display: grid;
    gap: .95rem;
    margin-top: 1.5rem;
}

.hydro-guidance-list article {
    padding: 1.2rem 0;
    border-top: 1px solid var(--line);
}

.hydro-guidance-list h3 {
    font-size: clamp(1.5rem, 2.4vw, 2rem);
}

.hydro-guidance-list p,
.hydro-expect-section p {
    color: var(--muted);
}

.hydro-expect-section {
    display: grid;
    grid-template-columns: minmax(0, .62fr) minmax(0, 1fr);
    gap: clamp(1.5rem, 5vw, 4rem);
    padding: var(--section) 0;
    border-top: 1px solid var(--line);
}

.hydro-expect-section > div:first-child p {
    margin-top: 1rem;
}

.hydro-expect-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.hydro-expect-grid article {
    min-height: 225px;
    padding: 1.35rem;
    border: 1px solid var(--line-gold);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .9);
}

.hydro-expect-grid h3 {
    margin-top: 1rem;
    font-size: clamp(1.45rem, 2.2vw, 1.9rem);
}

.hydro-expect-grid p {
    margin-top: .75rem;
    font-size: .94rem;
}

.hydro-cta-panel {
    margin-bottom: var(--section);
}

.jet-brochure-intro {
    display: block;
    width: min(100%, 920px);
    margin-inline: auto;
    padding: var(--section) 0 clamp(2rem, 4vw, 3.5rem);
}

.jet-brochure-intro h2,
.jet-session-band h2,
.jet-device-copy h2,
.jet-how-section h2,
.jet-safety-section h2 {
    color: #205b4f;
}

.jet-intro-title-block {
    padding: clamp(1.35rem, 3vw, 2.2rem);
    background: #d3bb84;
}

.jet-intro-title-block .eyebrow,
.jet-intro-title-block h2 {
    color: #111;
}

.jet-brochure-copy {
    display: grid;
    gap: 1rem;
    padding: clamp(1.35rem, 3vw, 2.2rem);
    border: 1px solid rgba(211, 187, 132, .75);
    border-top: 0;
    background: var(--white);
    color: var(--muted);
    font-size: clamp(1.05rem, 1.6vw, 1.25rem);
    line-height: 1.75;
}

.jet-benefit-section {
    display: grid;
    grid-template-columns: minmax(0, .62fr) minmax(280px, .38fr);
    align-items: center;
    width: min(100%, var(--container));
    min-height: clamp(520px, 52vw, 680px);
    margin-inline: auto;
    padding: clamp(.5rem, 1.4vw, 1rem) 0;
    background: transparent;
}

.jet-benefit-image,
.jet-device-image {
    overflow: hidden;
    background: var(--water);
}

.jet-benefit-image img,
.jet-device-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.jet-benefit-image {
    height: clamp(500px, 52vw, 660px);
    border: 2px solid #d3bb84;
}

.jet-benefit-copy {
    display: grid;
    gap: 1rem;
    align-content: center;
    margin-left: clamp(-6rem, -5vw, -3rem);
}

.jet-spotlight-card {
    padding: 1rem 1.1rem 1.15rem;
    border: 2px solid var(--white);
    border-radius: var(--radius);
    background: #242a29;
    color: var(--white);
    box-shadow: 0 18px 34px rgba(3, 26, 54, .18);
}

.jet-spotlight-card .line-icon {
    width: 40px;
    height: 40px;
    border-color: rgba(255, 255, 255, .45);
    color: rgba(255, 255, 255, .72);
}

.jet-spotlight-card h3 {
    margin-top: .65rem;
    color: var(--white);
    font-family: var(--font-body);
    font-size: clamp(1.05rem, 1.45vw, 1.25rem);
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.05;
    text-transform: uppercase;
}

.jet-spotlight-card ul {
    display: grid;
    gap: .2rem;
    margin: .45rem 0 0;
    padding: 0;
    list-style: none;
}

.jet-spotlight-card li {
    color: rgba(255, 255, 255, .92);
    font-size: clamp(.72rem, 1vw, .86rem);
    font-weight: 700;
    line-height: 1.18;
}

.jet-spotlight-card li::before {
    content: "- ";
}

.jet-treat-section {
    width: min(100%, var(--container));
    margin-inline: auto;
    padding: var(--section) 0;
}

.jet-treat-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.jet-treat-grid article,
.jet-plasma-types article,
.jet-how-list article {
    min-height: 170px;
    padding: 1.2rem;
    border: 1px solid rgba(211, 187, 132, .72);
    background: rgba(255, 255, 255, .92);
}

.jet-treat-grid small,
.jet-plasma-types small,
.jet-how-list small {
    color: #d3bb84;
    font-weight: 900;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.jet-treat-grid h3,
.jet-plasma-types h3 {
    margin-top: .8rem;
    color: #205b4f;
    font-size: clamp(1.4rem, 2.3vw, 1.95rem);
}

.jet-session-band {
    display: grid;
    grid-template-columns: minmax(0, .7fr) minmax(0, 1fr);
    gap: clamp(1.5rem, 5vw, 4rem);
    width: min(100%, var(--container));
    margin-inline: auto;
    padding: clamp(2rem, 5vw, 4rem);
    background: #d3bb84;
    color: #111;
}

.jet-device-section,
.jet-plasma-types,
.jet-how-section,
.jet-safety-section,
.jet-cta-panel {
    width: min(100%, var(--container));
    margin-inline: auto;
}

.jet-session-copy {
    display: grid;
    gap: 1rem;
    font-size: clamp(1.05rem, 1.6vw, 1.22rem);
    line-height: 1.7;
}

.jet-device-section {
    display: grid;
    grid-template-columns: minmax(0, .82fr) minmax(300px, .72fr);
    align-items: stretch;
    gap: clamp(1.5rem, 5vw, 4rem);
    padding: var(--section) 0;
}

.jet-device-copy {
    display: grid;
    align-content: center;
    gap: 1rem;
}

.jet-device-copy p:not(.eyebrow),
.jet-plasma-types p,
.jet-how-list p,
.jet-safety-section p {
    color: var(--muted);
}

.jet-device-image {
    min-height: clamp(360px, 42vw, 540px);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.jet-plasma-types {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    padding-bottom: var(--section);
}

.jet-plasma-types article {
    display: grid;
    align-content: start;
    background: #205b4f;
}

.jet-plasma-types h3,
.jet-plasma-types p,
.jet-plasma-types small {
    color: var(--white);
}

.jet-plasma-types p {
    color: rgba(255, 255, 255, .82);
}

.jet-how-section {
    display: grid;
    grid-template-columns: minmax(0, .62fr) minmax(0, 1fr);
    gap: clamp(1.5rem, 5vw, 4rem);
    padding: var(--section) 0;
    border-top: 1px solid var(--line);
}

.jet-how-list {
    display: grid;
    gap: .9rem;
}

.jet-how-list article {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    align-items: center;
    min-height: 96px;
    padding: 1rem 1.2rem;
}

.jet-safety-section {
    display: grid;
    grid-template-columns: minmax(0, .78fr) minmax(0, 1fr);
    gap: clamp(1.5rem, 5vw, 4rem);
    padding: var(--section) 0;
    border-top: 1px solid var(--line);
}

.jet-safety-section ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .75rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.jet-safety-section li {
    padding: .9rem 1rem;
    border: 1px solid rgba(211, 187, 132, .72);
    background: #fbfaf5;
    color: #205b4f;
    font-size: .92rem;
    font-weight: 800;
    line-height: 1.35;
}

.jet-cta-panel {
    margin-bottom: var(--section);
    background:
        linear-gradient(135deg, rgba(32, 91, 79, .94), rgba(6, 36, 74, .95)),
        #205b4f;
}

.jet-cta-panel h2,
.jet-cta-panel p {
    color: var(--white);
}

.vline-intro-section {
    display: grid;
    grid-template-columns: minmax(0, .7fr) minmax(320px, .52fr);
    align-items: center;
    gap: 0;
    width: min(100%, var(--container));
    margin-inline: auto;
    padding: var(--section) 0;
}

.vline-intro-copy {
    position: relative;
    z-index: 1;
    margin-left: clamp(-13rem, -12vw, -7rem);
    padding: clamp(1.35rem, 3.5vw, 2.6rem);
    border: 1px solid rgba(240, 90, 9, .18);
    background: rgba(255, 252, 247, .44);
    box-shadow: 0 18px 46px rgba(7, 31, 63, .1);
    backdrop-filter: blur(10px);
}

.vline-intro-copy h2,
.vline-results-section h2,
.vline-protocol-section h2,
.vline-formula-section h2,
.vline-experience-section h2 {
    color: #111;
}

.vline-intro-copy h3 {
    margin: .6rem 0 1rem;
    color: #f05a09;
    font-family: var(--font-body);
    font-size: clamp(1rem, 1.7vw, 1.35rem);
    font-weight: 900;
    line-height: 1.3;
}

.vline-intro-copy p:not(.eyebrow),
.vline-formula-copy p {
    color: var(--muted);
}

.vline-product-image {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    background: #fff8f1;
    box-shadow: var(--shadow);
}

.vline-product-image img {
    width: 100%;
    aspect-ratio: 5 / 4;
    object-fit: cover;
}

.vline-callout-band {
    width: min(100%, var(--container));
    margin: 0 auto;
    padding: clamp(1.2rem, 3vw, 1.75rem);
    background: #fb5208;
    color: var(--white);
    text-align: center;
}

.vline-callout-band p {
    color: var(--white);
    font-size: clamp(1.25rem, 2.4vw, 2rem);
    font-weight: 900;
    letter-spacing: .03em;
    line-height: 1.25;
    text-transform: uppercase;
}

.vline-callout-band.compact {
    margin-top: 1.5rem;
}

.vline-callout-band.final {
    margin-bottom: var(--section);
}

.vline-results-section {
    display: grid;
    grid-template-columns: minmax(0, .72fr) minmax(260px, .66fr) minmax(0, .9fr);
    gap: clamp(1rem, 3vw, 2rem);
    align-items: stretch;
    width: min(100%, var(--container));
    margin-inline: auto;
    padding: var(--section) 0;
}

.vline-results-section article {
    padding: clamp(1.25rem, 3vw, 2rem);
    border: 1px solid rgba(240, 90, 9, .22);
    background: var(--white);
}

.vline-results-section ul {
    display: grid;
    gap: .9rem;
    margin: 1.1rem 0 0;
    padding: 0;
    list-style: none;
}

.vline-results-section li {
    color: var(--text);
    font-weight: 800;
    line-height: 1.35;
}

.vline-results-section li::before {
    color: #fb5208;
    content: "✓ ";
}

.vline-before-after {
    display: grid;
    grid-template-rows: 1fr 1fr auto;
    gap: .5rem;
}

.vline-before-after div {
    position: relative;
    display: grid;
    align-items: start;
    min-height: 115px;
    padding: .65rem;
    overflow: hidden;
    background: linear-gradient(135deg, #f3eee8, #fff);
}

.vline-before-after div.has-image {
    min-height: 150px;
    padding: .55rem;
}

.vline-before-after img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vline-before-after span {
    position: relative;
    z-index: 1;
    width: max-content;
    padding: .25rem .55rem;
    background: #111;
    color: var(--white);
    font-size: .75rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.vline-before-after div + div span {
    background: #fb5208;
}

.vline-before-after small {
    color: var(--muted);
    font-size: .72rem;
    text-align: right;
}

.vline-protocol-section {
    width: min(100%, var(--container));
    margin-inline: auto;
    padding: var(--section) 0;
}

.vline-protocol-grid {
    display: grid;
    gap: 1rem;
}

.vline-protocol-grid article {
    display: grid;
    grid-template-columns: 70px minmax(180px, .46fr) minmax(150px, .34fr) minmax(0, 1fr);
    gap: 1rem;
    align-items: center;
    padding: clamp(1rem, 2.5vw, 1.45rem);
    border: 1px solid rgba(240, 90, 9, .2);
    background: #fff8f1;
}

.vline-protocol-grid small,
.vline-protocol-grid strong,
.vline-experience-grid h3 {
    color: #fb5208;
    font-family: var(--font-body);
    font-weight: 900;
    letter-spacing: .02em;
    text-transform: uppercase;
}

.vline-protocol-grid h3 {
    color: #111;
    font-family: var(--font-body);
    font-size: clamp(1rem, 1.6vw, 1.25rem);
    font-weight: 900;
}

.vline-protocol-grid p,
.vline-experience-grid p {
    color: var(--text);
    font-size: .94rem;
    line-height: 1.5;
}

.vline-results-section {
    display: block;
    width: min(100%, var(--container));
    margin-inline: auto;
    padding: clamp(1.2rem, 3vw, 2rem) clamp(1rem, 3vw, 2.2rem) 0;
    border: 1px solid rgba(240, 90, 9, .14);
    background: var(--white);
    box-shadow: 0 20px 60px rgba(7, 31, 63, .08);
}

.vline-results-top {
    display: grid;
    grid-template-columns: minmax(0, .8fr) minmax(250px, .78fr) minmax(0, 1fr);
    gap: clamp(1rem, 3vw, 2rem);
    align-items: start;
}

.vline-results-section article {
    padding: 0;
    border: 0;
    background: transparent;
}

.vline-results-section li {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: .75rem;
    align-items: center;
    font-size: .92rem;
}

.vline-results-section li::before {
    content: none;
}

.vline-result-list li span {
    display: block;
    width: 42px;
    height: 42px;
    border: 1px solid #111;
    border-radius: 50%;
    background:
        radial-gradient(circle at 50% 34%, transparent 0 9px, #111 10px 11px, transparent 12px),
        linear-gradient(90deg, transparent 18px, #111 19px 20px, transparent 21px),
        linear-gradient(0deg, transparent 19px, #111 20px 21px, transparent 22px);
    opacity: .9;
}

.vline-reason-list li {
    grid-template-columns: 22px minmax(0, 1fr);
    font-weight: 700;
}

.vline-reason-list h2 {
    font-size: clamp(1.15rem, 1.75vw, 1.55rem);
}

.vline-reason-list li::before {
    align-self: start;
    display: grid;
    place-items: center;
    width: 22px;
    height: 22px;
    border: 1px solid #fb5208;
    border-radius: 50%;
    color: #fb5208;
    content: "✓";
    font-size: .82rem;
    font-weight: 900;
}

.vline-before-after {
    gap: .3rem;
}

.vline-before-after div,
.vline-before-after div.has-image {
    min-height: 112px;
}

.vline-before-after div.has-image {
    padding: 0;
}

.vline-result-strip {
    display: grid;
    grid-template-columns: minmax(180px, 1.25fr) repeat(4, minmax(120px, 1fr));
    align-items: center;
    gap: 0;
    margin: clamp(1.6rem, 3vw, 2.2rem) calc(clamp(1rem, 3vw, 2.2rem) * -1) 0;
    padding: clamp(1.2rem, 3vw, 1.75rem) clamp(1rem, 3vw, 2.2rem);
    background: #050505;
    color: var(--white);
}

.vline-result-strip p {
    min-height: 62px;
    margin: 0;
    padding: 0 clamp(.85rem, 2vw, 1.35rem);
    border-left: 1px solid rgba(211, 187, 132, .42);
    color: var(--white);
    font-family: var(--font-body);
    font-size: .88rem;
    font-weight: 900;
    line-height: 1.25;
    text-align: center;
}

.vline-result-strip p:first-child {
    border-left: 0;
}

.vline-result-strip .is-statement {
    color: #d3bb84;
    font-size: clamp(.95rem, 1.4vw, 1.25rem);
    text-align: left;
    text-transform: uppercase;
}

.vline-formula-section {
    width: min(100%, var(--container));
    margin-inline: auto;
    padding: var(--section) 0;
}

.vline-formula-copy {
    display: grid;
    gap: 1rem;
    max-width: 980px;
}

.vline-experience-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 1.5rem;
    border-top: 1px solid rgba(240, 90, 9, .2);
    border-left: 1px solid rgba(240, 90, 9, .2);
}

.vline-experience-grid article {
    min-height: 155px;
    padding: 1.2rem;
    border-right: 1px solid rgba(240, 90, 9, .2);
    border-bottom: 1px solid rgba(240, 90, 9, .2);
    background: #fffaf4;
}

.vline-experience-section {
    width: min(100%, var(--container));
    margin-inline: auto;
    padding: var(--section) 0;
    border-top: 1px solid var(--line);
}

.vline-product-showcase {
    display: flex;
    align-items: center;
    min-height: clamp(430px, 48vw, 560px);
    margin-bottom: var(--section);
    background-image:
        var(--shop-showcase-background),
        linear-gradient(135deg, #111, #2c211c);
    background-position: center;
    background-size: cover;
    color: var(--white);
}

.vline-product-showcase .skincare-copy {
    width: min(100%, var(--container));
    max-width: 600px;
    margin-left: max(var(--gutter), calc((100vw - var(--container)) / 2 + (var(--container) * .12)));
    margin-right: auto;
    padding: clamp(1.35rem, 3vw, 2.25rem);
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: var(--radius);
    background: rgba(36, 42, 41, .72);
    box-shadow: 0 22px 52px rgba(3, 26, 54, .24);
    backdrop-filter: blur(8px);
    justify-self: auto;
    transform: translateX(-25%);
}

.vline-product-showcase h2,
.vline-product-showcase .eyebrow,
.vline-product-showcase p:not(.eyebrow) {
    color: var(--white);
}

.vline-product-showcase p:not(.eyebrow) {
    color: rgba(255, 255, 255, .86);
}

.vline-product-showcase .button-secondary {
    border-color: var(--white);
    color: var(--white);
}

.vline-product-showcase .button-secondary:hover,
.vline-product-showcase .button-secondary:focus-visible {
    background: var(--white);
    color: var(--navy-deep);
}

.needle-intro-section,
.needle-benefit-section,
.needle-clinical-section {
    width: min(100%, var(--container));
    margin-inline: auto;
}

.needle-intro-section {
    display: grid;
    grid-template-columns: minmax(0, .86fr) minmax(320px, 1fr);
    gap: clamp(1.5rem, 5vw, 4rem);
    align-items: center;
    padding: var(--section) 0;
}

.needle-intro-copy {
    display: grid;
    gap: 1rem;
    padding: clamp(1.5rem, 4vw, 2.75rem);
    border-left: 6px solid #f2c230;
    background: #3b0f50;
    box-shadow: var(--shadow);
}

.needle-intro-copy h2,
.needle-intro-copy p,
.needle-intro-copy .eyebrow {
    color: var(--white);
}

.needle-intro-copy h2 {
    font-size: clamp(2.1rem, 4vw, 3.5rem);
}

.needle-intro-copy .eyebrow {
    color: #f2c230;
}

.needle-intro-image,
.needle-benefit-image,
.needle-clinical-image {
    overflow: hidden;
    border-radius: var(--radius);
    background: #3b0f50;
    box-shadow: var(--shadow);
}

.needle-intro-image {
    aspect-ratio: 1 / 1;
}

.needle-intro-image img,
.needle-benefit-image img,
.needle-clinical-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.needle-intro-image img {
    aspect-ratio: 1 / 1;
}

.needle-benefit-section {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
    align-items: stretch;
    margin-bottom: var(--section);
    background: #801048;
    color: var(--white);
}

.needle-benefit-image {
    border-radius: 0;
    box-shadow: none;
}

.needle-benefit-image img {
    aspect-ratio: 16 / 9;
}

.needle-benefit-copy {
    display: grid;
    align-content: center;
    gap: 1rem;
    padding: clamp(1.5rem, 4vw, 3rem);
}

.needle-benefit-copy h2,
.needle-benefit-copy p,
.needle-benefit-copy li,
.needle-benefit-copy .eyebrow {
    color: var(--white);
}

.needle-benefit-copy .eyebrow {
    color: #f2c230;
}

.needle-benefit-copy ul,
.needle-clinical-card ul {
    display: grid;
    gap: .85rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.needle-benefit-copy li,
.needle-clinical-card li {
    position: relative;
    padding-left: 1.4rem;
    line-height: 1.45;
}

.needle-benefit-copy li::before,
.needle-clinical-card li::before {
    position: absolute;
    top: .5rem;
    left: 0;
    width: .5rem;
    height: .5rem;
    border-radius: 50%;
    background: #f2c230;
    content: "";
}

.needle-clinical-section {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    align-items: stretch;
    overflow: hidden;
    border: 1px solid rgba(59, 15, 80, .18);
    padding-bottom: var(--section);
}

.needle-clinical-card {
    display: grid;
    align-content: center;
    gap: 1rem;
    padding: clamp(1.5rem, 4vw, 2.75rem);
    aspect-ratio: 1 / 1;
    border: 0;
    background: #fbf7ff;
}

.needle-clinical-card h2 {
    color: #3b0f50;
    font-size: clamp(1.55rem, 2.6vw, 2.35rem);
}

.needle-clinical-image {
    aspect-ratio: 1 / 1;
    border-radius: 0;
    box-shadow: none;
}

.needle-clinical-image img {
    aspect-ratio: 1 / 1;
}

.needle-feature-band {
    min-height: clamp(520px, 52vw, 740px);
    margin-top: 0;
    margin-bottom: var(--section);
    padding: clamp(2rem, 6vw, 4.5rem) var(--gutter);
    border: 0;
    border-radius: 0;
    background:
        linear-gradient(90deg, rgba(59, 15, 80, .78), rgba(59, 15, 80, .4) 42%, rgba(59, 15, 80, .08) 74%),
        var(--needle-feature-background),
        #3b0f50;
    background-position: center;
    background-size: cover;
}

.needle-cta-panel {
    grid-template-columns: minmax(0, 620px);
    justify-content: start;
}

.needle-cta-panel > div {
    display: grid;
    gap: .9rem;
    width: min(100%, 620px);
    margin-left: max(var(--gutter), calc((100vw - var(--container)) / 2));
    padding: clamp(1.5rem, 4vw, 2.75rem);
    border: 1px solid rgba(255, 255, 255, .55);
    background: rgba(255, 255, 255, .24);
    box-shadow: 0 22px 52px rgba(3, 26, 54, .22);
    backdrop-filter: blur(8px);
}

.needle-cta-panel h2 {
    color: #3b0f50;
}

.needle-cta-panel p {
    color: rgba(29, 20, 35, .78);
}

.needle-cta-panel .button {
    justify-self: start;
    margin-top: .45rem;
    border-color: rgba(255, 255, 255, .72);
    background: rgba(255, 255, 255, .28);
    color: #3b0f50;
    box-shadow: 0 16px 36px rgba(3, 26, 54, .24);
    backdrop-filter: blur(8px);
}

.needle-cta-panel .button:hover,
.needle-cta-panel .button:focus-visible {
    background: var(--white);
    color: #3b0f50;
}

.about-bio-section {
    display: block;
    padding-top: clamp(4rem, 8vw, 7rem);
}

.about-bio-heading {
    max-width: 760px;
    margin-inline: auto;
    text-align: center;
}

.about-bio-copy {
    max-width: 920px;
    margin: clamp(1.75rem, 4vw, 3rem) auto 0;
    color: var(--muted);
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 2.1vw, 1.85rem);
    line-height: 1.55;
    text-align: center;
}

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

.about-services {
    padding-top: clamp(4rem, 8vw, 7rem);
}

.about-mini-service-grid .mini-service-card {
    display: grid;
    align-content: start;
    min-height: 150px;
}

.portrait-frame {
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.portrait-frame img {
    aspect-ratio: 4 / 5;
}

.about-story {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, .9fr);
    align-items: center;
    gap: clamp(1.5rem, 5vw, 4rem);
}

.about-story img {
    aspect-ratio: 16 / 9;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.about-story p:not(.eyebrow),
.shop-editorial p,
.feature-panel p {
    color: var(--muted);
}

.services-discovery.compact {
    padding-top: 0;
}

.shop-editorial {
    display: grid;
    grid-template-columns: minmax(0, .75fr) minmax(0, 1fr);
    gap: clamp(1.5rem, 5vw, 4rem);
    border-top: 1px solid var(--line);
}

.editorial-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.2rem;
}

.contact-panel {
    display: grid;
    grid-template-columns: minmax(0, .8fr) minmax(0, 1fr);
    gap: 2rem;
    padding: var(--section) 0;
}

.contact-details {
    display: grid;
    gap: 1rem;
}

.contact-details section {
    border-top: 1px solid var(--line);
    padding-top: 1rem;
}

.site-footer {
    position: relative;
    overflow: hidden;
    margin-top: 0;
    padding: clamp(2rem, 4vw, 3.5rem) var(--gutter) 1rem;
    background-color: var(--navy-deep);
    background-image: var(--footer-bg-image, linear-gradient(135deg, var(--navy-deep), var(--navy)));
    background-position: center;
    background-size: cover;
    color: rgba(255, 255, 255, .82);
}

.site-footer::before {
    position: absolute;
    inset: 0;
    display: block;
    background: rgba(0, 0, 0, .4);
    content: "";
    pointer-events: none;
}

.site-footer::after {
    display: none;
}

.footer-grid,
.footer-bottom {
    position: relative;
    z-index: 1;
    width: min(100%, var(--container));
    margin-inline: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(280px, 1.25fr) minmax(260px, .9fr) minmax(180px, .55fr);
    gap: 1.8rem;
}

.footer-grid > * + * {
    border-left: 1px solid rgba(255, 255, 255, .22);
    padding-left: 1.8rem;
}

.footer-brand {
    color: var(--white);
}

.footer-brand img {
    width: 46px;
    height: 32px;
}

.footer-brand span span {
    font-size: 2.6rem;
}

.footer-brand small {
    font-size: .65rem;
}

.footer-grid h2 {
    margin: 0 0 .75rem;
    color: var(--white);
    font-family: var(--font-body);
    font-size: .82rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.footer-grid p,
.footer-grid address {
    margin: .4rem 0 0;
    font-style: normal;
}

.footer-brand-block > p {
    margin-top: .75rem;
}

.footer-service-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .35rem .9rem;
    margin: 1rem 0 0;
    padding: 0;
    list-style: none;
    font-size: .84rem;
}

.footer-list {
    display: grid;
    gap: .35rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-grid a {
    color: var(--white);
    text-decoration: none;
}

.footer-contact-row {
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr);
    align-items: start;
    gap: .65rem;
    margin-top: .85rem;
}

.footer-contact-row .line-icon {
    width: 24px;
    height: 24px;
    border: 0;
    color: rgba(255, 255, 255, .86);
}

.footer-contact-row .line-icon::before {
    transform: scale(.78) rotate(45deg);
}

.footer-contact-row .icon-phone::before {
    transform: rotate(-42deg) scale(.78);
}

.footer-contact-row .icon-mail::before {
    transform: scale(.78);
}

.footer-contact-row .icon-mail::after {
    transform: rotate(-45deg) translateY(-4px) scale(.78);
}

.footer-contact address,
.footer-contact-row p {
    color: rgba(255, 255, 255, .78);
    font-size: .82rem;
    line-height: 1.5;
}

.footer-address-link {
    display: inline-block;
}

.footer-social-links {
    display: flex;
    gap: .75rem;
    margin-top: .9rem;
}

.footer-social-link {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, .52);
    border-radius: 999px;
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 900;
    line-height: 1;
    transition: background var(--transition), color var(--transition), transform var(--transition);
}

.footer-social-link:hover,
.footer-social-link:focus-visible {
    background: var(--white);
    color: var(--navy-deep);
    transform: translateY(-1px);
}

.footer-social-link .line-icon {
    width: 26px;
    height: 26px;
    border: 0;
    color: currentColor;
}

.footer-social-link .icon-calendar::before {
    transform: scale(.78);
}

.footer-social-link .icon-calendar::after {
    transform: scale(.78);
}

.footer-social .button {
    margin-top: 1rem;
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, .22);
    font-size: .78rem;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
    outline: 3px solid rgba(189, 119, 47, .55);
    outline-offset: 3px;
}

.admin-body {
    min-height: 100vh;
    margin: 0;
    background: var(--silk);
    color: var(--navy-deep);
    font-family: var(--font-body);
}

.admin-shell {
    width: min(100% - 1.25rem, 1480px);
    margin-inline: auto;
    padding: clamp(1rem, 4vw, 3rem) 0;
}

.admin-auth-card,
.admin-panel {
    border: 1px solid var(--line-gold);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .94);
    box-shadow: var(--shadow);
}

.admin-auth-card {
    display: grid;
    gap: 1.2rem;
    width: min(100%, 440px);
    margin: 8vh auto 0;
    padding: clamp(1.4rem, 5vw, 2.2rem);
}

.admin-auth-card h1,
.admin-panel h1 {
    margin: 0;
    font-size: clamp(2rem, 5vw, 3rem);
}

.admin-form {
    display: grid;
    gap: 1rem;
}

.admin-form label {
    display: grid;
    gap: .4rem;
    color: var(--navy-deep);
    font-size: .85rem;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.admin-form input,
.admin-form select {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 4px;
    padding: .85rem;
    color: var(--navy-deep);
    font: inherit;
}

.admin-form textarea {
    width: 100%;
    min-height: 96px;
    border: 1px solid var(--line);
    border-radius: 4px;
    padding: .85rem;
    color: var(--navy-deep);
    font: inherit;
    resize: vertical;
}

.admin-editor {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: end;
    margin-top: 1.5rem;
}

.admin-create-panel {
    margin-top: 1.5rem;
}

.admin-create-panel summary {
    width: fit-content;
    list-style: none;
}

.admin-create-panel summary::-webkit-details-marker {
    display: none;
}

.admin-filter-bar {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) minmax(180px, 240px) auto auto;
    align-items: end;
    gap: .75rem;
    margin-top: 1.5rem;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(248, 251, 254, .86);
}

.admin-filter-bar label {
    display: grid;
    gap: .35rem;
    color: var(--navy-deep);
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.admin-filter-bar input,
.admin-filter-bar select {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 4px;
    padding: .68rem .75rem;
    color: var(--navy-deep);
    font: inherit;
}

.admin-span-2,
.admin-editor .button {
    grid-column: 1 / -1;
}

.admin-checkbox-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .5rem 1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1rem;
}

.admin-checkbox-grid legend {
    padding: 0 .35rem;
    color: var(--navy-deep);
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.admin-check {
    display: flex !important;
    flex-direction: row;
    align-items: center;
    gap: .55rem !important;
}

.admin-check input {
    width: auto;
}

.admin-alert {
    border-left: 4px solid var(--gold);
    padding: .75rem .9rem;
    background: #fff4e8;
    color: var(--navy-deep);
}

.admin-panel {
    padding: clamp(1.4rem, 4vw, 2.4rem);
}

.admin-panel-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.admin-panel-header p {
    max-width: 620px;
    margin: .4rem 0 0;
    color: var(--muted);
}

.admin-dashboard-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.admin-dashboard-grid a {
    display: grid;
    gap: .4rem;
    min-height: 150px;
    align-content: start;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1rem;
    background: var(--white);
    color: var(--navy-deep);
    text-decoration: none;
}

.admin-dashboard-grid strong {
    font-family: var(--font-display);
    font-size: 1.7rem;
    line-height: 1;
}

.admin-dashboard-grid em {
    display: block;
    color: var(--gold-dark);
    font-size: .78rem;
    font-style: normal;
    font-weight: 800;
    letter-spacing: .08em;
    line-height: 1.35;
    text-transform: uppercase;
}

.admin-dashboard-grid span {
    color: var(--muted);
    font-size: .92rem;
    line-height: 1.45;
}

.admin-detail-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.admin-detail-grid section,
.admin-order-totals {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1rem;
    background: var(--white);
}

.admin-detail-grid h2 {
    margin: 0 0 .7rem;
    color: var(--navy-deep);
    font-family: var(--font-display);
    font-size: 1.55rem;
    line-height: 1;
}

.admin-detail-grid p {
    margin: .35rem 0;
    color: var(--muted);
    line-height: 1.45;
}

.admin-order-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .55rem;
    margin-top: .85rem;
}

.admin-order-actions form {
    margin: 0;
}

.admin-order-actions .button {
    width: auto;
}

.admin-order-totals {
    display: grid;
    gap: .65rem;
    justify-self: end;
    width: min(100%, 360px);
    margin-top: 1.25rem;
}

.admin-order-totals div {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(88px, max-content);
    gap: 1rem;
    color: var(--navy-deep);
    font-size: .8rem;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.admin-order-totals span,
.admin-order-totals strong {
    text-align: right;
}

.admin-table-wrap {
    margin-top: 2rem;
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
}

.admin-table th,
.admin-table td {
    border-bottom: 1px solid var(--line);
    padding: .8rem;
    text-align: left;
    vertical-align: middle;
}

.admin-table th {
    color: var(--muted);
    font-size: .75rem;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.admin-table tr.is-inactive {
    color: rgba(6, 36, 74, .55);
    background: #f6f1ea;
}

.admin-table span {
    color: var(--muted);
    font-size: .85rem;
}

.admin-product-name-link {
    color: var(--navy-deep);
    text-decoration: none;
}

.admin-product-name-link:hover,
.admin-product-name-link:focus-visible {
    color: var(--gold-dark);
    text-decoration: underline;
}

.admin-thumb {
    width: 56px;
    height: 56px;
    object-fit: cover;
    border-radius: 6px;
    background: #f7f9fb;
}

.admin-link-button {
    border: 0;
    padding: 0;
    background: transparent;
    color: var(--gold);
    cursor: pointer;
    font: inherit;
    font-weight: 800;
}

.admin-toggle-group {
    display: inline-flex;
    flex-wrap: nowrap;
    gap: .35rem;
    align-items: center;
}

.admin-toggle-group form {
    margin: 0;
}

.admin-toggle-button {
    min-height: 30px;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: .35rem .62rem;
    background: var(--white);
    color: var(--navy);
    cursor: pointer;
    font: inherit;
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .08em;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
}

.admin-toggle-button:hover,
.admin-toggle-button:focus-visible {
    border-color: var(--navy);
}

.admin-toggle-button.is-selected {
    cursor: default;
}

.admin-toggle-active.is-selected {
    border-color: #174ea6;
    background: #174ea6;
    color: var(--white);
}

.admin-toggle-inactive.is-selected {
    border-color: #b42318;
    background: #b42318;
    color: var(--white);
}

.admin-subpanel {
    margin-top: 2rem;
    border-top: 1px solid var(--line);
    padding-top: 1.5rem;
}

.admin-subpanel h2 {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(1.7rem, 3vw, 2.4rem);
}

.admin-image-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.25rem;
}

.admin-image-card {
    display: grid;
    gap: .75rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: .75rem;
    background: var(--white);
}

.admin-image-card img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 6px;
    background: #f7f9fb;
}

.admin-image-card form {
    display: grid;
    gap: .6rem;
}

.shop-catalog-hero {
    min-height: clamp(320px, 54vw, 440px);
    padding-top: clamp(4rem, 10vw, 5rem);
    padding-bottom: clamp(4.75rem, 8vw, 6rem);
}

.shop-catalog-hero .skincare-copy {
    max-width: 560px;
}

.shop-catalog-hero h1 {
    margin: 0;
    color: var(--navy-deep);
    font-size: clamp(2rem, 7vw, 4rem);
    line-height: .92;
}

.shop-category-nav-shell {
    position: sticky;
    top: 76px;
    z-index: 99;
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    align-items: center;
    gap: .55rem;
    box-sizing: border-box;
    width: min(calc(100% - (var(--page-x) * 2)), var(--wide));
    margin: clamp(-5rem, -7vw, -4.35rem) auto 0;
    min-height: 108px;
    padding: 1.15rem 1.2rem;
    background: rgba(238, 240, 243, .82);
    backdrop-filter: blur(16px);
    box-shadow: 0 18px 46px rgba(7, 31, 63, .12);
}

.product-category-nav-shell {
    margin-top: 1rem;
}

.cart-category-nav-shell {
    width: 100%;
    margin: 0 auto;
}

.page-shop .site-header:not(.is-scrolled) + .site-main .shop-category-nav-shell {
    top: 88px;
}

.shop-category-nav {
    grid-column: 2;
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: .75rem;
    overflow-x: auto;
    overflow-y: hidden;
    padding: .25rem;
    scrollbar-width: none;
}

.shop-category-nav::-webkit-scrollbar {
    display: none;
}

.shop-category-nav a {
    flex: 0 0 150px;
    border: 0;
    border-radius: 0;
    padding: .65rem .35rem;
    color: var(--navy-deep);
    font-size: .9rem;
    font-weight: 900;
    letter-spacing: .06em;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    background: transparent;
}

.shop-category-nav a.is-active,
.shop-category-nav a:hover,
.shop-category-nav a:focus-visible {
    color: var(--gold);
}

.shop-category-scroll {
    display: inline-grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(6, 36, 74, .14);
    border-radius: 999px;
    background: rgba(255, 255, 255, .4);
    color: var(--navy-deep);
    cursor: pointer;
    font: inherit;
    font-size: 1rem;
    font-weight: 900;
    line-height: 1;
}

.shop-category-scroll-left {
    grid-column: 1;
}

.shop-category-scroll-right {
    grid-column: 3;
    justify-self: end;
}

.shop-category-scroll[hidden] {
    display: none;
}

@media (max-width: 760px) {
    .page-shop .shop-catalog-hero {
        min-height: auto;
        padding-top: 5.75rem;
        padding-bottom: 3.5rem;
    }

    .page-shop .shop-catalog-hero .skincare-copy {
        max-width: 100%;
        justify-self: start;
    }

    .page-shop .shop-catalog-hero h1 {
        font-size: clamp(1.85rem, 9vw, 2.45rem);
        line-height: 1;
    }

    .page-shop .shop-catalog-hero .skincare-copy p:not(.eyebrow) {
        margin: .75rem 0 0;
        font-size: .88rem;
        line-height: 1.45;
    }

    .page-shop .shop-catalog-hero .skincare-copy .eyebrow {
        font-size: .66rem;
    }

    .page-shop .shop-catalog-hero .skincare-image {
        display: none;
    }

    .shop-category-nav-shell {
        grid-template-columns: 38px minmax(0, 1fr) 38px;
        width: calc(100% - 1rem);
        min-height: 92px;
        padding: .9rem .65rem;
    }

    .shop-category-scroll {
        width: 36px;
        height: 36px;
    }

    .page-shop .shop-category-nav-shell {
        min-height: 68px;
        margin-top: -1.65rem;
        padding: .55rem .55rem;
        gap: .35rem;
    }

    .page-shop .shop-category-nav {
        gap: .45rem;
        padding: .1rem;
    }

    .page-shop .shop-category-nav a {
        flex-basis: 118px;
        padding: .45rem .25rem;
        font-size: .72rem;
        letter-spacing: .045em;
    }

    .page-shop .shop-category-scroll {
        width: 32px;
        height: 32px;
        font-size: .9rem;
    }
}

.shop-catalog-section {
    padding:
        clamp(2.75rem, 5vw, 4.5rem)
        clamp(1rem, 6vw, 5.5rem)
        clamp(2rem, 5vw, 4rem);
}

.shop-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 230px), 300px));
    justify-content: start;
    gap: clamp(1rem, 2vw, 1.5rem);
}

.shop-product-card {
    display: grid;
    grid-template-rows: auto 1.7em 3.05em 1.35em;
    align-items: start;
    gap: .55rem;
    border-radius: var(--radius);
    padding: .35rem;
    color: var(--navy);
    text-decoration: none;
    background: var(--white);
}

.shop-product-card[data-product-list-hidden] {
    display: none !important;
}

.shop-product-image {
    position: relative;
    display: block;
}

.shop-product-card img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 6px;
    background: #f7f9fb;
}

.shop-product-card > span:not(.shop-product-image),
.shop-product-card em,
.shop-empty {
    color: var(--muted);
    font-style: normal;
}

.shop-load-more-shell {
    display: flex;
    justify-content: center;
    padding: clamp(2.5rem, 6vw, 5rem) 0 clamp(1rem, 3vw, 2rem);
}

.shop-load-more {
    min-width: min(100%, 240px);
    min-height: 54px;
    padding: .95rem 1.5rem;
    border: 0;
    border-radius: var(--radius);
    background: var(--navy-deep);
    color: var(--white);
    cursor: pointer;
    font-size: .82rem;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
    box-shadow: 0 16px 36px rgba(3, 26, 54, .18);
}

.shop-load-more:hover,
.shop-load-more:focus-visible {
    background: var(--gold);
    color: var(--navy-deep);
}

.shop-load-more[hidden] {
    display: none;
}

.shop-product-card > span:not(.shop-product-image) {
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .12em;
    line-height: 1.25;
    text-transform: uppercase;
    overflow: hidden;
}

.shop-product-card em {
    color: var(--gold);
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1;
}

.shop-product-card strong {
    font-family: var(--font-display);
    font-size: 1.35rem;
    line-height: 1.1;
    overflow: hidden;
}

.product-detail {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1fr);
    gap: clamp(1.5rem, 5vw, 4rem);
    max-width: var(--wide);
    margin: 0 auto;
    padding: clamp(1.5rem, 3vw, 2.5rem) 0 clamp(3rem, 6vw, 5rem);
}

.product-detail-shell {
    padding: clamp(2rem, 5vw, 4rem) clamp(1rem, 6vw, 5.5rem) 0;
}

.product-back-link {
    display: inline-flex;
    margin-bottom: clamp(1.25rem, 3vw, 2rem);
    color: var(--gold);
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .1em;
    text-decoration: none;
    text-transform: uppercase;
}

.product-zoom-trigger {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    border-radius: var(--radius);
    background: transparent;
    cursor: zoom-in;
    overflow: hidden;
}

.product-zoom-trigger:focus-visible {
    outline: 3px solid rgba(187, 116, 47, .45);
    outline-offset: 6px;
}

.product-media img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: var(--radius);
    background: #f7f9fb;
}

.product-zoom-modal {
    position: fixed;
    inset: 0;
    z-index: 180;
    display: grid;
    place-items: center;
    padding: clamp(1rem, 4vw, 3rem);
}

.product-zoom-modal[hidden] {
    display: none;
}

.product-zoom-backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(3, 26, 54, .72);
    cursor: zoom-out;
}

.product-zoom-dialog {
    position: relative;
    z-index: 1;
    width: min(92vw, 980px);
    max-height: 88vh;
    display: grid;
    place-items: center;
}

.product-zoom-dialog img {
    display: block;
    max-width: 100%;
    max-height: 88vh;
    object-fit: contain;
    border-radius: var(--radius);
    background: #f7f9fb;
    box-shadow: 0 26px 70px rgba(0, 0, 0, .35);
}

.product-zoom-close {
    position: absolute;
    top: -.85rem;
    right: -.85rem;
    z-index: 2;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, .8);
    border-radius: 999px;
    background: var(--white);
    color: var(--navy-deep);
    cursor: pointer;
    font-size: 1.6rem;
    line-height: 1;
}

.product-zoom-open {
    overflow: hidden;
}

.product-copy {
    align-self: center;
}

.product-copy h1 {
    margin: 0;
    color: var(--navy-deep);
    font-size: clamp(2.0rem, 5vw, 3.8rem);
    line-height: .98;
}

.product-category-chips {
    display: flex;
    flex-wrap: wrap;
    gap: .55rem;
    margin-top: 1rem;
}

.product-category-chips a {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: .4rem .72rem;
    border: 1px solid #d9dde3;
    border-radius: .45rem;
    background: #eef0f3;
    color: var(--navy);
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .1em;
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;
}

.product-category-chips a:hover,
.product-category-chips a:focus-visible {
    border-color: #c8ced6;
    background: #dfe3e8;
}

.product-price-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .75rem;
    margin-top: .8rem;
}

.product-price {
    margin: 0;
    color: var(--gold);
    font-weight: 900;
    letter-spacing: .08em;
}

.product-stock-label {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: .45rem .85rem;
    border-radius: .55rem;
    background: #eef0f3;
    color: #b42318;
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .12em;
    line-height: 1;
    text-transform: uppercase;
}

.product-image-badge {
    position: absolute;
    top: .8rem;
    left: .8rem;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    padding: .45rem .75rem;
    border-radius: 7px;
    background: #ef4444;
    color: var(--white);
    font-size: .68rem;
    font-weight: 900;
    letter-spacing: .08em;
    line-height: 1;
    text-transform: uppercase;
    box-shadow: 0 12px 24px rgba(180, 35, 24, .18);
}

.product-short-description,
.product-description {
    margin-top: 1rem;
    color: var(--muted);
    line-height: 1.75;
}

.product-short-description strong,
.product-description strong {
    color: var(--navy-deep);
}

.product-short-description ul,
.product-description ul {
    margin: .75rem 0 0;
    padding-left: 1.2rem;
}

.product-short-description li + li,
.product-description li + li {
    margin-top: .25rem;
}

.product-purchase-panel {
    display: flex;
    flex-wrap: wrap;
    align-items: end;
    gap: 1rem;
    margin-top: clamp(1.25rem, 3vw, 2rem);
}

.product-instructions {
    flex-basis: 100%;
    max-width: 620px;
    border-top: 1px solid var(--line);
    padding-top: 1rem;
    color: var(--muted);
    line-height: 1.7;
}

.product-instructions summary {
    display: inline-flex;
    color: var(--navy-deep);
    cursor: pointer;
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .12em;
    list-style: none;
    text-transform: uppercase;
}

.product-instructions summary::-webkit-details-marker {
    display: none;
}

.product-instructions summary span:last-child,
.product-instructions[open] summary span:first-child {
    display: none;
}

.product-instructions[open] summary span:last-child {
    display: inline;
}

.product-instructions div {
    margin-top: .8rem;
}

.product-instructions strong,
.product-instructions b {
    color: var(--navy-deep);
}

.product-instructions ul {
    margin: .75rem 0 0;
    padding-left: 1.2rem;
}

.quantity-control {
    display: grid;
    gap: .4rem;
    color: var(--navy);
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.quantity-stepper {
    display: grid;
    grid-template-columns: 42px 70px 42px;
    min-height: 46px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
}

.quantity-stepper button,
.quantity-stepper input {
    border: 0;
    background: var(--white);
    color: var(--navy);
    font: inherit;
    font-weight: 900;
    text-align: center;
}

.quantity-stepper button {
    cursor: pointer;
}

.quantity-stepper button:hover,
.quantity-stepper button:focus-visible {
    background: var(--water);
}

.product-cart-button {
    min-width: min(100%, 220px);
}

.product-cart-button:disabled {
    border-color: var(--line);
    background: #d9dde3;
    color: var(--navy);
    cursor: not-allowed;
}

.commerce-page {
    width: min(calc(100% - (clamp(1.25rem, 6vw, 5rem) * 2)), var(--wide));
    margin: 0 auto;
    padding: clamp(3rem, 7vw, 6rem) 0;
}

.commerce-heading {
    max-width: 760px;
    margin-bottom: clamp(1.4rem, 3vw, 2.35rem);
}

.commerce-heading h1 {
    margin: 0;
    color: var(--navy-deep);
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 6vw, 4rem);
    line-height: .95;
}

.cart-page .commerce-heading h1 {
    font-size: clamp(2rem, 4.8vw, 3.35rem);
}

.commerce-heading p:not(.eyebrow) {
    color: var(--muted);
    line-height: 1.7;
}

.commerce-alert {
    margin-bottom: 1.25rem;
    padding: .9rem 1rem;
    border-radius: var(--radius);
    background: #eef6fb;
    color: var(--navy);
    font-weight: 800;
}

.commerce-alert-error {
    background: #fff1f1;
    color: #b42318;
}

.commerce-alert-success {
    background: #eff8f2;
    color: #17663a;
}

.commerce-alert-warning {
    background: #fff7ed;
    color: #9a3412;
}

.cart-empty-state {
    display: grid;
    justify-items: start;
    gap: .85rem;
    max-width: 620px;
    padding: clamp(1.5rem, 5vw, 3rem);
    background: var(--white);
    box-shadow: 0 18px 50px rgba(7, 31, 63, .08);
}

.cart-empty-state h2,
.checkout-form h2,
.cart-summary h2,
.order-confirmation-card h2 {
    margin: 0 0 .75rem;
    color: var(--navy-deep);
    font-family: var(--font-display);
    font-size: clamp(1.55rem, 4vw, 2.4rem);
    line-height: 1;
}

.checkout-layout,
.order-confirmation-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(380px, .48fr);
    gap: clamp(1.25rem, 4vw, 3rem);
    align-items: start;
}

.cart-layout {
    display: grid;
    gap: 0;
}

.cart-table-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 190px 130px;
    gap: clamp(1rem, 3vw, 3rem);
    align-items: end;
    padding: 0 0 .9rem;
    border-bottom: 1px solid #d9dde3;
    color: #8d96a2;
    font-size: .73rem;
    letter-spacing: .24em;
    line-height: 1;
    text-transform: uppercase;
}

.cart-table-head span:nth-child(2),
.cart-table-head span:nth-child(3) {
    text-align: right;
}

.cart-items {
    display: grid;
    gap: 0;
}

.cart-item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 190px 130px;
    gap: clamp(1rem, 3vw, 3rem);
    align-items: center;
    padding: 2rem 0;
    background: transparent;
    box-shadow: none;
}

.cart-product-cell {
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
    gap: clamp(1rem, 3vw, 2.2rem);
    align-items: center;
}

.cart-product-cell img {
    width: min(100%, 92px);
    max-height: 120px;
    justify-self: center;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 0;
    background: transparent;
}

.cart-item-copy {
    display: grid;
    gap: .55rem;
    align-content: center;
}

.cart-item-copy a {
    color: var(--navy-deep);
    font-family: var(--font-body);
    font-size: .86rem;
    font-weight: 500;
    letter-spacing: .24em;
    line-height: 1.35;
    text-decoration: none;
    text-transform: uppercase;
}

.cart-item-copy span {
    color: var(--muted);
    font-size: .72rem;
    font-weight: 400;
    letter-spacing: .22em;
    text-transform: uppercase;
}

.cart-item-copy strong,
.cart-line-total {
    margin: 0;
    color: var(--muted);
    font-size: .82rem;
    font-weight: 400;
    letter-spacing: .22em;
}

.cart-item-controls {
    display: grid;
    justify-items: center;
    gap: .6rem;
}

.cart-quantity-form {
    display: grid;
    justify-items: center;
    gap: .45rem;
}

.cart-quantity-form .quantity-control {
    gap: 0;
}

.cart-quantity-form .quantity-control > span:first-child {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

.cart-quantity-form .quantity-stepper {
    grid-template-columns: 32px 36px 32px;
    min-height: 40px;
    border-radius: 0;
}

.cart-quantity-form .quantity-stepper input {
    -moz-appearance: textfield;
}

.cart-quantity-form .quantity-stepper input::-webkit-outer-spin-button,
.cart-quantity-form .quantity-stepper input::-webkit-inner-spin-button {
    margin: 0;
    -webkit-appearance: none;
}

.cart-remove-button {
    padding: 0 0 .25rem;
    border: 0;
    border-bottom: 1px solid #b8bec8;
    background: transparent;
    color: #8d96a2;
    cursor: pointer;
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.cart-line-total {
    justify-self: end;
}

.cart-summary,
.checkout-form,
.order-confirmation-card {
    padding: clamp(1.25rem, 3vw, 2rem);
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 18px 50px rgba(7, 31, 63, .08);
}

.cart-summary {
    position: sticky;
    top: 104px;
    display: grid;
    gap: .9rem;
}

.cart-summary div {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    color: var(--muted);
}

.cart-summary div strong,
.cart-summary-total strong {
    color: var(--navy-deep);
}

.cart-summary div em {
    color: var(--muted);
    font-style: normal;
    font-weight: 700;
}

.cart-summary-total {
    margin-top: .45rem;
    padding-top: .9rem;
    border-top: 1px solid var(--line);
    font-size: 1.1rem;
    font-weight: 900;
}

.cart-page .cart-summary {
    justify-self: end;
    width: min(100%, 360px);
    margin-top: 1.2rem;
    padding-top: 1.6rem;
    border-top: 1px solid #d9dde3;
    background: transparent;
    box-shadow: none;
    position: static;
    justify-items: end;
    gap: .85rem;
    text-align: right;
}

.cart-page .cart-summary div {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(82px, max-content);
    justify-content: end;
    color: var(--navy-deep);
    font-size: .78rem;
    font-weight: 500;
    letter-spacing: .18em;
    line-height: 1.35;
    text-transform: uppercase;
    width: 100%;
}

.cart-page .cart-summary div span,
.cart-page .cart-summary div strong {
    font-weight: 500;
}

.cart-page .cart-summary div span {
    text-align: right;
}

.cart-page .cart-summary div strong {
    text-align: right;
}

.cart-page .cart-summary-total {
    margin-top: .1rem;
    padding-top: .6rem;
    border-top: 1px solid #d9dde3;
    color: var(--navy-deep);
    font-size: .9rem;
    letter-spacing: .22em;
}

.cart-page .cart-summary-total strong {
    font-weight: 700;
}

.cart-page .cart-summary p {
    margin: -.25rem 0 .75rem;
    color: var(--muted);
    font-size: .78rem;
    line-height: 1.4;
}

.checkout-page .cart-summary > div:not(.checkout-summary-item),
.payment-page .cart-summary > div:not(.checkout-summary-item) {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(88px, max-content);
    color: var(--navy-deep);
    font-size: .78rem;
    font-weight: 500;
    letter-spacing: .18em;
    line-height: 1.35;
    text-transform: uppercase;
}

.checkout-page .cart-summary > div:not(.checkout-summary-item) span,
.checkout-page .cart-summary > div:not(.checkout-summary-item) strong,
.payment-page .cart-summary > div:not(.checkout-summary-item) span,
.payment-page .cart-summary > div:not(.checkout-summary-item) strong {
    font-weight: 500;
    text-align: right;
}

.checkout-page .cart-summary .cart-summary-total,
.payment-page .cart-summary .cart-summary-total {
    margin-top: .1rem;
    padding-top: .7rem;
    border-top: 1px solid var(--line);
    font-size: .95rem;
    letter-spacing: .22em;
}

.checkout-page .cart-summary .cart-summary-total strong,
.payment-page .cart-summary .cart-summary-total strong {
    font-weight: 700;
}

.cart-checkout-button.is-disabled {
    pointer-events: none;
    opacity: .45;
}

.checkout-fields {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.checkout-fields label {
    display: grid;
    gap: .35rem;
    color: var(--navy);
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.checkout-fields input,
.checkout-fields select {
    min-height: 48px;
    width: 100%;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: .75rem .85rem;
    color: var(--navy);
    font: inherit;
    letter-spacing: 0;
    text-transform: none;
}

.checkout-fields select {
    background: var(--white);
}

.checkout-wide {
    grid-column: 1 / -1;
}

.field-error {
    color: #b42318;
    font-size: .68rem;
    letter-spacing: 0;
    text-transform: none;
}

.checkout-submit {
    margin-top: 1.25rem;
}

.stripe-payment-element {
    margin: 1rem 0 1.25rem;
}

.payment-submit {
    width: min(100%, 280px);
}

.payment-submit:disabled {
    border-color: var(--line);
    background: #d9dde3;
    color: var(--navy);
    cursor: wait;
}

.checkout-summary-item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(88px, max-content);
    align-items: baseline;
    padding-bottom: .7rem;
    border-bottom: 1px solid var(--line);
    color: var(--navy-deep);
    font-size: .78rem;
    font-weight: 500;
    letter-spacing: .14em;
    line-height: 1.45;
    text-transform: uppercase;
}

.checkout-summary-item span {
    text-align: left;
}

.checkout-summary-item strong {
    text-align: right;
}

.checkout-summary-item strong {
    font-weight: 500;
}

.checkout-note {
    margin: .25rem 0 0;
    color: var(--muted);
    font-size: .9rem;
    line-height: 1.6;
}

.checkout-free-shipping-note {
    margin: .15rem 0 0;
    color: var(--gold);
    font-size: .82rem;
    font-weight: 800;
    line-height: 1.45;
}

.floating-cart-button {
    position: fixed;
    right: clamp(1rem, 3vw, 2rem);
    bottom: clamp(1rem, 3vw, 2rem);
    z-index: 110;
    display: inline-flex;
    align-items: center;
    gap: .7rem;
    min-height: 54px;
    padding: .85rem 1rem .85rem 1.15rem;
    border-radius: 999px;
    background: var(--navy-deep);
    color: var(--white);
    text-decoration: none;
    box-shadow: 0 18px 46px rgba(3, 26, 54, .24);
}

.floating-cart-icon {
    display: inline-grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255, 255, 255, .72);
    border-radius: 999px;
    background: rgba(255, 255, 255, .1);
}

.floating-cart-icon svg {
    display: block;
    width: 19px;
    height: 19px;
    fill: currentColor;
}

.floating-cart-button strong {
    display: inline-grid;
    place-items: center;
    min-width: 28px;
    height: 28px;
    border-radius: 999px;
    background: var(--gold);
    color: var(--navy-deep);
    font-size: .82rem;
}

.floating-cart-button:hover,
.floating-cart-button:focus-visible {
    background: var(--gold);
    color: var(--navy-deep);
}

.floating-cart-button:hover strong,
.floating-cart-button:focus-visible strong {
    background: var(--white);
}

@media (max-width: 760px) {
    .admin-panel-header,
    .admin-dashboard-grid,
    .admin-detail-grid {
        grid-template-columns: 1fr;
    }

    .admin-panel-header {
        display: grid;
    }

    .admin-editor {
        grid-template-columns: 1fr;
    }

    .admin-filter-bar {
        grid-template-columns: 1fr;
    }

    .admin-checkbox-grid,
    .admin-image-list,
    .shop-catalog-section,
    .shop-product-grid,
    .product-detail,
    .cart-layout,
    .checkout-layout,
    .order-confirmation-layout {
        grid-template-columns: 1fr;
    }

    .cart-item {
        grid-template-columns: 1fr;
        gap: 1rem;
        align-items: start;
        padding: 1.5rem 0;
        border-bottom: 1px solid #e5e8ec;
    }

    .cart-table-head {
        display: none;
    }

    .cart-product-cell {
        grid-template-columns: 82px minmax(0, 1fr);
        gap: 1rem;
    }

    .cart-product-cell img {
        width: 74px;
        max-height: 96px;
    }

    .cart-item-controls {
        justify-items: start;
    }

    .cart-quantity-form {
        justify-items: start;
    }

    .cart-summary {
        position: static;
    }

    .cart-page .cart-summary {
        width: 100%;
        justify-items: start;
        text-align: left;
    }

    .cart-page .cart-summary div {
        justify-content: flex-start;
    }

    .cart-line-total {
        justify-self: start;
    }

    .checkout-fields {
        grid-template-columns: 1fr;
    }

    .floating-cart-button {
        right: .85rem;
        bottom: .85rem;
    }
}

.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 120;
    background: rgba(3, 26, 54, .54);
}

.mobile-menu-panel {
    margin-left: auto;
    width: min(88vw, 380px);
    height: 100dvh;
    max-height: 100dvh;
    padding: 1rem;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background: var(--white);
    box-shadow: -18px 0 44px rgba(7, 31, 63, .18);
}

.mobile-menu-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.mobile-menu-title {
    color: var(--navy);
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.mobile-menu nav {
    display: grid;
    gap: .35rem;
}

.mobile-menu a,
.mobile-services-title {
    display: block;
    min-height: 46px;
    padding: .75rem;
    color: var(--navy);
    font-weight: 800;
    text-decoration: none;
}

.mobile-services-list {
    display: grid;
    gap: .1rem;
}

.mobile-services-title {
    color: var(--navy);
    letter-spacing: .04em;
    text-transform: uppercase;
}

.mobile-services-list a {
    display: block;
    width: 100%;
    margin-left: 0;
    padding: .42rem 1.25rem .42rem .95rem;
    border: 0;
    background: transparent;
    color: var(--muted);
    font-size: .92rem;
    min-height: 34px;
}

.mobile-services-list a.mobile-cart-link {
    display: flex;
    align-items: center;
    gap: .45rem;
    margin-top: .45rem;
    padding-top: .72rem;
    border-top: 1px solid var(--line-gold);
    color: var(--gold);
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.mobile-menu a.button {
    margin-top: .8rem;
    color: var(--white);
}

.reveal-item {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 500ms ease, transform 500ms ease;
}

.reveal-item.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (min-width: 940px) {
    .desktop-nav {
        display: flex;
    }

    .menu-toggle {
        display: none;
    }
}

@media (max-width: 1080px) {
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-grid > * + * {
        border-left: 0;
        padding-left: 0;
    }
}

@media (max-width: 900px) {
    .hero,
    .catalog-hero,
    .service-page-hero,
    .contact-hero,
    .about-hero,
    .about-story,
    .shop-hero,
    .skincare-showcase,
    .contact-form-section,
    .treatment-menu,
    .contact-panel,
    .shop-editorial {
        grid-template-columns: 1fr;
    }

    .sketch-hero {
        min-height: auto;
        padding: 0 0 3rem;
    }

    .about-sketch-hero {
        display: grid;
        min-height: auto;
        margin-top: 0;
        padding: 0 0 3rem;
    }

    .services-sketch-hero,
    .facial-sketch-hero,
    .wax-sketch-hero,
    .brow-lash-sketch-hero,
    .dermaplaning-sketch-hero,
    .hydro-verstand-sketch-hero,
    .jet-plasma-sketch-hero,
    .needle-free-sketch-hero {
        display: grid;
        min-height: auto;
        margin-top: 0;
        padding: 0 0 3rem;
    }

    .hero-copy {
        width: min(calc(100% - (var(--gutter) * 2)), var(--container));
        margin-inline: auto;
        padding-left: 0;
    }

    .sketch-hero .hero-image {
        order: -1;
        position: relative;
        width: 100%;
        height: clamp(280px, 62vw, 520px);
        margin-bottom: 2rem;
        border-radius: 0;
        -webkit-mask-image: none;
        mask-image: none;
    }

    .sketch-hero .hero-image::after {
        background: linear-gradient(0deg, rgba(255, 255, 255, .1), rgba(255, 255, 255, 0));
    }

    .about-sketch-hero .about-hero-image {
        order: -1;
        position: relative;
        width: 100%;
        height: clamp(300px, 66vw, 540px);
        margin-bottom: 2rem;
        -webkit-mask-image: none;
        mask-image: none;
    }

    .about-sketch-hero .about-hero-image::after {
        background: linear-gradient(0deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, 0));
    }

    .services-sketch-hero .services-hero-image,
    .facial-sketch-hero .facial-hero-image,
    .wax-sketch-hero .wax-hero-image,
    .brow-lash-sketch-hero .brow-lash-hero-image,
    .dermaplaning-sketch-hero .dermaplaning-hero-image,
    .hydro-verstand-sketch-hero .hydro-verstand-hero-image,
    .jet-plasma-sketch-hero .jet-plasma-hero-image,
    .needle-free-sketch-hero .needle-free-hero-image {
        order: -1;
        position: relative;
        width: 100%;
        height: clamp(300px, 66vw, 540px);
        margin-bottom: 2rem;
        -webkit-mask-image: none;
        mask-image: none;
    }

    .services-sketch-hero .services-hero-image::after,
    .facial-sketch-hero .facial-hero-image::after,
    .wax-sketch-hero .wax-hero-image::after,
    .brow-lash-sketch-hero .brow-lash-hero-image::after,
    .dermaplaning-sketch-hero .dermaplaning-hero-image::after,
    .hydro-verstand-sketch-hero .hydro-verstand-hero-image::after,
    .jet-plasma-sketch-hero .jet-plasma-hero-image::after,
    .needle-free-sketch-hero .needle-free-hero-image::after {
        background: linear-gradient(0deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, 0));
    }

    .about-sketch-hero .hero-copy,
    .services-sketch-hero .hero-copy,
    .facial-sketch-hero .hero-copy,
    .wax-sketch-hero .hero-copy,
    .brow-lash-sketch-hero .hero-copy,
    .dermaplaning-sketch-hero .hero-copy,
    .hydro-verstand-sketch-hero .hero-copy,
    .jet-plasma-sketch-hero .hero-copy,
    .needle-free-sketch-hero .hero-copy {
        width: min(calc(100% - (var(--gutter) * 2)), var(--container));
        max-width: var(--container);
        padding-left: 0;
    }

    .hydroglow-feature {
        grid-template-columns: minmax(0, 1fr);
    }

    .hydro-brochure-intro,
    .hydro-method-grid,
    .hydro-brochure-feature,
    .hydro-guidance-section,
    .hydro-expect-section,
    .jet-brochure-intro,
    .jet-benefit-section,
    .jet-session-band,
    .jet-device-section,
    .jet-how-section,
    .jet-safety-section,
    .vline-intro-section,
    .vline-results-section,
    .vline-experience-section,
    .needle-intro-section,
    .needle-benefit-section,
    .needle-clinical-section {
        grid-template-columns: 1fr;
    }

    .vline-results-top,
    .vline-result-strip {
        grid-template-columns: 1fr;
    }

    .jet-brochure-intro,
    .jet-benefit-section,
    .jet-treat-section,
    .jet-session-band,
    .jet-device-section,
    .jet-plasma-types,
    .jet-how-section,
    .jet-safety-section,
    .jet-cta-panel {
        width: min(calc(100% - (var(--gutter) * 2)), var(--container));
    }

    .vline-result-strip p {
        min-height: auto;
        padding: .8rem 0;
        border-top: 1px solid rgba(211, 187, 132, .42);
        border-left: 0;
    }

    .vline-result-strip p:first-child {
        border-top: 0;
        text-align: center;
    }

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

    .hydro-brochure-card,
    .hydro-brochure-aside {
        border: 1px solid var(--line-gold);
    }

    .hydro-brochure-image {
        min-height: 420px;
    }

    .hydro-transformation-card {
        grid-template-columns: 1fr;
    }

    .hydro-transformation-card img {
        min-height: 260px;
    }

    .hydro-transformation-grid {
        grid-template-columns: 1fr;
    }

    .hydro-expect-grid {
        grid-template-columns: 1fr;
    }

    .jet-treat-grid,
    .jet-plasma-types,
    .jet-safety-section ul,
    .vline-experience-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .jet-benefit-image,
    .jet-device-image {
        min-height: 360px;
    }

    .jet-benefit-copy {
        margin-left: 0;
        margin-top: -4rem;
        padding-inline: clamp(1rem, 4vw, 2rem);
    }

    .vline-intro-copy {
        margin: -4rem clamp(1rem, 4vw, 2rem) 0;
    }

    .brow-lash-info-tile {
        grid-template-columns: 1fr;
    }

    .hydroglow-feature-image {
        min-height: 360px;
    }

    .about-bio-section,
    .about-mini-service-grid {
        grid-template-columns: 1fr;
    }

    .hero-water-sweep {
        inset: 0;
        width: 100%;
        height: 100%;
        opacity: .42;
        background-position: left bottom;
        background-size: auto 100%;
    }

    .treatment-card-grid,
    .mini-service-grid {
        grid-template-columns: 1fr;
    }

    .facial-treatment-grid,
    .wax-treatment-grid,
    .brow-lash-treatment-grid,
    .dermaplaning-treatment-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .offer-copy {
        display: grid;
        border-left: 0;
        padding-left: 0;
    }

    .offer-copy p,
    .offer-copy small,
    .offer-copy .button {
        grid-column: 1;
        grid-row: auto;
    }

    .offer-copy .button {
        width: min(100%, 280px);
    }

    .service-list-row,
    .facial-treatment-row {
        grid-template-columns: minmax(160px, 230px) 64px minmax(0, 1fr);
    }

    .service-list-row > .button,
    .facial-treatment-row > .button {
        grid-column: 3;
        justify-self: start;
        margin: 0 0 1.1rem;
    }

    .menu-intro {
        position: static;
    }
}

@media (max-width: 760px) {
    :root {
        --gutter: 1rem;
        --section: 3rem;
    }

    .site-header {
        grid-template-columns: minmax(0, 1fr) auto;
        width: 100vw;
        max-width: 100vw;
        overflow: hidden;
        min-height: 72px;
        padding: .7rem 1rem;
        gap: .5rem;
    }

    .page-home .site-header,
    .page-about .site-header,
    .page-services .site-header,
    .page-service-facial .site-header,
    .page-service-wax .site-header,
    .page-service-brow-and-lash .site-header,
    .page-service-dermaplaning .site-header,
    .page-service-hydro-verstand .site-header,
    .page-service-jet-plasma .site-header,
    .page-service-v-line-lift-facial .site-header,
    .page-service-needle-free-filler-facial .site-header {
        background: rgba(255, 255, 255, .74);
    }

    .brand {
        min-width: 0;
        max-width: min(245px, calc(100vw - 92px));
        gap: .4rem;
    }

    .brand-mark {
        width: 28px;
        height: 22px;
    }

    .brand-name {
        font-size: 1.65rem;
    }

    .brand-place {
        font-size: .48rem;
        letter-spacing: .3em;
    }

    .header-actions .button-small {
        display: none;
    }

    .header-actions {
        justify-self: end;
        min-width: 46px;
    }

    .menu-toggle {
        display: inline-grid;
        flex: 0 0 46px;
        position: fixed;
        top: 13px;
        right: 1rem;
        z-index: 110;
        border-color: rgba(6, 36, 74, .28);
        background: rgba(255, 255, 255, .94);
        box-shadow: 0 8px 22px rgba(7, 31, 63, .1);
    }

    h1 {
        font-size: clamp(2.8rem, 14vw, 4rem);
        line-height: .94;
    }

    h2 {
        font-size: clamp(2.1rem, 10vw, 3rem);
    }

    .section-heading h1,
    .section-heading h2 {
        max-width: 100%;
        overflow-wrap: break-word;
    }

    .section-heading.centered h2 {
        font-size: clamp(2rem, 8.6vw, 2.35rem);
    }

    .hero {
        padding-top: 1rem;
    }

    .sketch-hero .hero-copy {
        padding-top: 2.8rem;
    }

    .sketch-hero .eyebrow {
        max-width: 30ch;
        line-height: 1.45;
    }

    .sketch-hero h1,
    .about-sketch-hero h1,
    .services-sketch-hero h1,
    .facial-sketch-hero h1,
    .wax-sketch-hero h1,
    .brow-lash-sketch-hero h1,
    .dermaplaning-sketch-hero h1,
    .hydro-verstand-sketch-hero h1,
    .jet-plasma-sketch-hero h1,
    .needle-free-sketch-hero h1 {
        max-width: 7.1em;
        font-size: clamp(2.15rem, 8.8vw, 2.65rem);
        line-height: 1.02;
    }

    .sketch-hero .button-row {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
        max-width: 100%;
    }

    .sketch-hero .button-row .button {
        justify-content: center;
        width: 100%;
    }

    .benefit-row,
    .contact-benefits {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .contact-benefits div {
        border-right: 0;
    }

    .button-row .button,
    .contact-form-card .button,
    .consultation-panel .button {
        width: 100%;
    }

    .water-band,
    .consultation-panel {
        grid-template-columns: 1fr;
    }

    .booking-band > .button {
        justify-self: start;
    }

    .homepage-feature-panels .feature-panel {
        grid-template-columns: var(--gutter) minmax(0, 1fr) var(--gutter);
        min-height: 360px;
        background-image:
            var(--feature-panel-background, none),
            linear-gradient(135deg, var(--white), var(--water));
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }

    .homepage-feature-panels {
        grid-template-columns: 1fr;
    }

    .homepage-feature-panels .feature-panel.has-background-image {
        background-image: var(--feature-panel-background);
    }

    .homepage-feature-panels .feature-panel-copy {
        align-self: center;
        justify-self: end;
        width: min(58%, 280px);
        padding: 2rem 0;
    }

    .homepage-feature-panels .feature-panel h2 {
        font-size: clamp(1.9rem, 9vw, 2.6rem);
    }

    .homepage-feature-panels .feature-panel p:not(.eyebrow) {
        font-size: .92rem;
        line-height: 1.45;
    }

    .owner-slogan {
        min-height: 320px;
        padding: 3rem 1rem;
    }

    .owner-slogan h2 {
        font-size: clamp(1.35rem, 6vw, 1.8rem);
    }

    .offer-medallion {
        justify-self: start;
    }

    .service-list-row,
    .facial-treatment-row {
        grid-template-columns: 1fr;
    }

    .service-list-row {
        height: auto;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .service-list-image,
    .facial-treatment-image {
        min-height: 210px;
        height: 210px;
    }

    .service-list-row > .line-icon,
    .facial-treatment-row > .line-icon {
        justify-self: start;
        margin: -26px 0 0 1.25rem;
        background: var(--white);
    }

    .service-list-copy,
    .facial-treatment-copy {
        padding: .8rem 1.25rem 1rem;
    }

    .service-list-row > .button,
    .facial-treatment-row > .button {
        grid-column: auto;
        width: calc(100% - 2.5rem);
        margin: 0 1.25rem 1.25rem;
    }

    .service-list-section,
    .service-list {
        width: min(calc(100% - (var(--gutter) * 2)), var(--container));
        max-width: 100%;
        margin-inline: auto;
        overflow: hidden;
    }

    .facial-treatment-grid,
    .wax-treatment-grid,
    .brow-lash-treatment-grid,
    .dermaplaning-treatment-grid {
        grid-template-columns: 1fr;
    }

    .hydroglow-feature-card,
    .hydroglow-feature-copy {
        padding: 1.25rem;
    }

    .brow-lash-info-copy {
        padding: 1.25rem;
    }

    .brow-lash-info-image {
        min-height: 240px;
    }

    .hydro-brochure-image,
    .hydro-guidance-image,
    .hydro-transformation-card img,
    .jet-benefit-image,
    .jet-device-image,
    .needle-benefit-image,
    .needle-clinical-image {
        min-height: 240px;
        height: 240px;
    }

    .needle-feature-band {
        min-height: 440px;
        padding: 2rem 1rem;
    }

    .needle-cta-panel > div {
        width: 100%;
        margin-inline: auto;
    }

    .needle-clinical-section .needle-clinical-image {
        min-height: 0;
        height: auto;
        aspect-ratio: 1 / 1;
    }

    .hydro-method-grid {
        grid-template-columns: 1fr;
    }

    .jet-treat-grid,
    .jet-plasma-types,
    .jet-how-list article,
    .jet-safety-section ul,
    .vline-experience-grid {
        grid-template-columns: 1fr;
    }

    .jet-benefit-copy {
        margin-top: -2rem;
        padding-inline: .8rem;
    }

    .vline-intro-copy {
        margin: -2rem .8rem 0;
        padding: 1.2rem;
    }

    .vline-product-showcase .skincare-copy {
        width: calc(100% - 2rem);
        margin-inline: 1rem;
        transform: none;
    }

    .jet-treat-grid article,
    .jet-plasma-types article,
    .jet-how-list article {
        min-height: auto;
    }

    .hydro-method-card {
        text-align: center;
    }

    .hydro-brochure-card,
    .hydro-brochure-aside {
        min-height: auto;
        padding: 1.25rem;
    }

    .hydro-expect-grid article {
        min-height: auto;
    }

    .hydroglow-feature-image {
        min-height: 300px;
    }

    .editorial-columns,
    .hours-list div,
    .pricing-row {
        grid-template-columns: 1fr;
    }

    .pricing-row strong,
    .hours-list dd {
        justify-self: start;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 430px) {
    .hero-image,
    .catalog-hero-image,
    .service-hero-image,
    .contact-image,
    .shop-image {
        height: 285px;
    }

    .treatment-card-image {
        height: 215px;
    }

    .contact-form-card,
    .contact-info-card {
        padding: 1.25rem;
    }

    .footer-brand span span {
        font-size: 2.1rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }

    .reveal-item {
        opacity: 1;
        transform: none;
    }
}
