:root {
    --bg: #f2ece8;
    --bg-soft: #e8dfd8;
    --bg-cream: #f7f1ec;
    --bg-warm: #eee4dc;
    --bg-muted: #e5d9d0;
    --panel: #fffdfb;
    --panel-strong: #fffdfb;
    --ink: #3e2c23;
    --ink-soft: #6b5a4e;
    --line: #d6ccc4;
    --accent: #8c6d5b;
    --accent-soft: #efe5df;
    --cta: #4a3422;
    --cta-hover: #2f2119;
    --white: #fffdfb;
    --shadow-soft: 0 24px 52px rgba(62, 44, 35, 0.08);
    --shadow-card: 0 14px 34px rgba(62, 44, 35, 0.07);
    --radius-sm: 16px;
    --radius-md: 24px;
    --radius-lg: 36px;
    --container: 1100px;
    --home-container: 1100px;
    --gutter: 24px;
    --content-rail: calc(100% - (var(--gutter) * 2));
    --mobile-block-padding: 22px;
    --section-space: clamp(76px, 9vw, 118px);
    --transition: 180ms ease;
    --section-light-bg: linear-gradient(180deg, rgba(247, 241, 236, 0.96), rgba(242, 236, 232, 0.86));
    --section-warm-bg: linear-gradient(180deg, rgba(238, 228, 220, 0.94), rgba(242, 236, 232, 0.8));
    --section-muted-bg: linear-gradient(180deg, rgba(229, 217, 208, 0.92), rgba(239, 232, 226, 0.82));
    --section-deep-bg: linear-gradient(180deg, rgba(74, 52, 34, 0.96), rgba(47, 33, 25, 0.98));
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    overflow-x: clip;
    font-family: "Manrope", sans-serif;
    color: var(--ink);
    background:
        radial-gradient(circle at top left, rgba(255, 253, 251, 0.88), transparent 22%),
        radial-gradient(circle at 90% 12%, rgba(214, 204, 196, 0.36), transparent 20%),
        linear-gradient(180deg, #f6f1ed 0%, var(--bg) 100%);
    line-height: 1.65;
}

img {
    display: block;
    width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea {
    font: inherit;
}

p,
ul {
    margin: 0;
}

ul {
    padding: 0;
    list-style: none;
}

h1,
h2,
h3 {
    margin: 0;
    font-family: "Cormorant Garamond", serif;
    font-weight: 600;
    line-height: 0.96;
    letter-spacing: -0.02em;
    color: #875d3b;
}

h1 {
    font-size: clamp(3.15rem, 7vw, 5.55rem);
}

h2 {
    font-size: clamp(2.35rem, 5vw, 4rem);
}

h3 {
    font-size: clamp(1.55rem, 2.6vw, 2rem);
}

.container,
.site-container {
    width: min(var(--container), var(--content-rail));
    margin: 0 auto;
}

.section {
    padding: var(--section-space) 0;
}

.section-light,
.page-hero.section-light,
.hero-section.section-light {
    background: var(--section-light-bg);
}

.section-warm,
.section-soft {
    background: var(--section-warm-bg);
}

.section-muted {
    background: var(--section-muted-bg);
}

.section-deep {
    background: var(--section-deep-bg);
    color: var(--white);
}

.home-main {
    display: block;
}

.home-main .container,
.home-main .hero-content-shell {
    width: min(var(--home-container), var(--content-rail));
    margin: 0 auto;
}

.site-header .container,
.site-footer .container,
.mega-panel-inner {
    width: min(var(--home-container), var(--content-rail));
    margin: 0 auto;
}

.home-main > .section {
    padding: clamp(82px, 8vw, 112px) 0;
}

.eyebrow {
    margin-bottom: 16px;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ink-soft);
}

.eyebrow-light {
    color: rgba(255, 248, 241, 0.78);
}

.lead {
    max-width: 40rem;
    font-size: clamp(1.08rem, 1.8vw, 1.28rem);
    color: var(--ink-soft);
}

.supporting-copy {
    max-width: 36rem;
    color: var(--ink-soft);
}

.section-heading {
    display: grid;
    justify-items: start;
    gap: 1rem;
    max-width: 36rem;
    margin: 0 0 3rem;
    text-align: left;
}

.section-heading .eyebrow {
    margin-bottom: 0;
}

.section-heading p:last-child {
    color: var(--ink-soft);
    max-width: 36rem;
    line-height: 1.7;
}

.section-head-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 42px;
}

.section-head-row .section-heading {
    margin: 0;
}

.align-left {
    margin-left: 0;
    text-align: left;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 24px;
    border: 1px solid transparent;
    border-radius: 999px;
    transition:
        transform var(--transition),
        background-color var(--transition),
        color var(--transition),
        border-color var(--transition),
        box-shadow var(--transition);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    text-align: center;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-1px);
}

.button-primary {
    background: var(--cta);
    color: var(--white);
    box-shadow: 0 12px 26px rgba(74, 52, 34, 0.18);
}

.button-primary:hover,
.button-primary:focus-visible {
    background: var(--cta-hover);
}

.button-secondary {
    border-color: var(--line);
    background: rgba(255, 253, 251, 0.68);
    color: var(--ink);
}

.button-secondary:hover,
.button-secondary:focus-visible {
    background: rgba(255, 253, 251, 0.96);
}

.button-light {
    background: var(--white);
    color: var(--cta);
}

.button-light:hover,
.button-light:focus-visible {
    background: #f6eee9;
}

.button-outline-light {
    border-color: rgba(255, 248, 241, 0.32);
    color: var(--white);
}

.button-outline-light:hover,
.button-outline-light:focus-visible {
    background: rgba(255, 248, 241, 0.08);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: var(--cta);
}

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

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

.inline-link {
    color: var(--cta);
    font-weight: 600;
    text-decoration-line: underline;
    text-decoration-color: rgba(74, 52, 34, 0.52);
    text-decoration-thickness: 1px;
    text-underline-offset: 0.18em;
    transition:
        color var(--transition),
        text-decoration-color var(--transition),
        box-shadow var(--transition);
}

.inline-link:hover,
.inline-link:focus-visible {
    color: var(--cta-hover);
    text-decoration-color: currentColor;
}

.inline-link:focus-visible {
    outline: none;
    box-shadow: inset 0 -1px 0 currentColor;
}

.animate-button {
    will-change: transform;
}

@media (hover: hover) and (pointer: fine) {
    .animate-button:hover,
    .animate-button:focus-visible {
        transform: translateY(-2px);
        box-shadow: 0 16px 28px rgba(74, 52, 34, 0.2);
    }
}

.animate-card {
    transition:
        transform 280ms ease,
        box-shadow 280ms ease,
        border-color 280ms ease;
}

@media (hover: hover) and (pointer: fine) {
    .animate-card:hover,
    .animate-card:focus-within {
        transform: translateY(-4px);
        box-shadow: 0 18px 34px rgba(62, 44, 35, 0.1);
        border-color: rgba(214, 204, 196, 1);
    }
}

.js-enhanced .reveal {
    opacity: 0;
    transition:
        opacity 520ms cubic-bezier(0.22, 1, 0.36, 1),
        transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform;
}

.js-enhanced .reveal-up {
    transform: translate3d(0, 18px, 0);
}

.js-enhanced .reveal.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    backdrop-filter: blur(18px);
    background: rgba(242, 236, 232, 0.88);
    border-bottom: 1px solid rgba(214, 204, 196, 0.9);
}

.nav-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 84px;
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    gap: 14px;
}

.brand-monogram {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(180deg, #f4ece7, #e0d2c7);
    border: 1px solid rgba(214, 204, 196, 0.95);
    font-family: "Cormorant Garamond", serif;
    font-size: 1.45rem;
    font-weight: 700;
}

.brand-copy {
    display: flex;
    flex-direction: column;
}

.brand-copy strong {
    font-size: 1rem;
    letter-spacing: 0.04em;
}

.brand-copy small {
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink-soft);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-item-mobile-dropdown.nav-link-mobile-only {
    display: none;
}

.nav-item {
    display: flex;
    align-items: center;
}

.nav-item-mega {
    position: static;
}

.nav-link {
    position: relative;
    font-size: 0.95rem;
    color: var(--ink-soft);
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 1px;
    background: var(--cta);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform var(--transition);
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link.is-active {
    color: var(--ink);
}

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

.nav-link-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    border: 0;
    background: none;
    cursor: pointer;
}

.nav-chevron {
    width: 9px;
    height: 9px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg) translateY(-1px);
    transition: transform var(--transition);
}

.nav-item-mega.is-open .nav-chevron,
.nav-item-mega.mega-menu-open .nav-chevron,
.nav-item-mobile-dropdown.is-open .nav-chevron {
    transform: rotate(-135deg) translateY(-1px);
}

.nav-toggle {
    display: none;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: rgba(255, 253, 251, 0.82);
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 1.5px;
    margin: 4px auto;
    background: var(--cta);
    transition: transform var(--transition), opacity var(--transition);
}

.mega-panel {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    z-index: 39;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(6px);
    transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
}

.nav-item-mega.is-open .mega-panel,
.nav-item-mega.mega-menu-open .mega-panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.mega-panel-inner {
    width: min(var(--container), calc(100% - (var(--gutter) * 2)));
    margin: 0 auto;
    padding: 24px 28px 24px;
    border: 1px solid rgba(214, 204, 196, 0.96);
    border-radius: 28px;
    background: #ffffff;
    box-shadow: 0 24px 44px rgba(62, 44, 35, 0.09);
}

.mega-panel-top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 22px;
}

.mega-eyebrow {
    margin: 0 0 8px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ink-soft);
}

.mega-heading {
    max-width: 34rem;
    color: var(--ink);
    font-size: 1rem;
    line-height: 1.5;
}

.mega-overview-link {
    white-space: nowrap;
    color: var(--cta);
    font-weight: 700;
}

.mega-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(150px, 1fr);
    gap: 16px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    padding-top: 4px;
    padding-bottom: 4px;
}

.mega-card {
    display: grid;
    gap: 10px;
    padding: 10px;
    border: 1px solid rgba(176, 151, 135, 0.72);
    border-radius: 26px;
    background: #ffffff;
    box-shadow: var(--shadow-card);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.mega-card:hover,
.mega-card:focus-visible {
    transform: translateY(-4px);
    box-shadow: 0 18px 34px rgba(62, 44, 35, 0.11);
    border-color: rgba(140, 109, 91, 0.58);
}

.mega-card-image {
    display: block;
    overflow: hidden;
    border-radius: 20px;
    aspect-ratio: 0.96;
    background: #ffffff;
}

.mega-card-image img {
    height: 100%;
    object-fit: cover;
    transition: transform 260ms ease;
}

.mega-card:hover .mega-card-image img,
.mega-card:focus-visible .mega-card-image img {
    transform: scale(1.04);
}

.mega-card-body {
    display: grid;
    gap: 6px;
}

.mega-card-body strong {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.34rem;
    font-weight: 600;
    line-height: 1.02;
    color: var(--ink);
}

.mega-card-body span {
    color: var(--ink-soft);
    font-size: 0.86rem;
    line-height: 1.4;
}

.mega-cta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 22px;
    padding-top: 20px;
    border-top: 1px solid rgba(214, 204, 196, 0.92);
}

.mega-cta-row p {
    color: var(--ink-soft);
    font-weight: 600;
}

.hero-section {
    position: relative;
    min-height: clamp(720px, calc(100vh - 84px), 960px);
    display: flex;
    align-items: center;
    overflow: clip;
    isolation: isolate;
}

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

.hero-media picture {
    display: block;
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
    transform: scale(1.03);
    animation: heroImageSettle 1400ms ease-out forwards;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(242, 236, 232, 0.95) 0%, rgba(242, 236, 232, 0.7) 40%, rgba(242, 236, 232, 0.2) 70%);
    z-index: 1;
}

.hero-content-shell {
    position: relative;
    z-index: 2;
    padding: clamp(4.25rem, 8vw, 6.75rem) 0 clamp(4rem, 8vw, 5.8rem);
}

.hero-copy {
    display: grid;
    gap: 1.65rem;
    max-width: 37.5rem;
    animation: heroContentFade 820ms ease-out both;
}

.hero-title {
    display: grid;
    gap: 0.2rem;
    font-size: clamp(4rem, 7vw, 5.35rem);
}

.hero-title-accent {
    color: #875d3b;
    font-weight: 500;
}

.hero-divider {
    width: 60px;
    height: 1px;
    background: var(--line);
}

.hero-lead {
    max-width: 30rem;
    line-height: 1.55;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1.15rem;
}

.hero-outline-button {
    border-color: var(--ink);
    background: transparent;
}

.hero-outline-button:hover,
.hero-outline-button:focus-visible {
    background: rgba(255, 253, 251, 0.5);
}

.hero-trust-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1.4rem 2rem;
    margin-top: 0.15rem;
}

.hero-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    color: var(--ink-soft);
    font-size: 0.94rem;
}

.hero-trust-item strong {
    color: var(--ink);
}

.hero-trust-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.15rem;
    height: 1.15rem;
    color: var(--accent);
}

.hero-trust-icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

@keyframes heroContentFade {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroImageSettle {
    from {
        transform: scale(1.03);
    }
    to {
        transform: scale(1);
    }
}

.image-frame {
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--panel-strong);
    border: 1px solid rgba(214, 204, 196, 0.88);
    box-shadow: var(--shadow-soft);
}

.image-frame img {
    display: block;
    width: 100%;
    height: auto;
}

.portrait-frame {
    aspect-ratio: 0.92;
}

.portrait-frame img,
.about-frame img,
.card-media img,
.page-hero-layout .image-frame img,
.treatment-detail .image-frame img {
    height: 100%;
    object-fit: cover;
}

.floating-note {
    position: absolute;
    right: -12px;
    bottom: 36px;
    max-width: 260px;
    padding: 18px 20px;
    border-radius: 20px;
    background: rgba(255, 253, 251, 0.94);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-card);
}

.floating-note strong {
    display: block;
    margin-bottom: 8px;
    font-size: 1rem;
}

.floating-note span {
    font-size: 0.92rem;
    color: var(--ink-soft);
}

.trust-strip {
    padding: 24px 0;
    background: #fffdfb;
}

.trust-strip-inline {
    margin: 0 0 1.75rem;
    padding: 0;
    background: transparent;
}

.trust-strip-inner {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(0.85rem, 1.7vw, 1.35rem);
    padding: 0;
}

.trust-strip-inner span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 52px;
    padding: 0.72rem 1.3rem;
    border-radius: 999px;
    background: #f0e8e2;
    font-size: 0.83rem;
    font-weight: 600;
    letter-spacing: 0.025em;
    text-align: center;
    color: #3e2c23;
    border: 1px solid rgba(214, 204, 196, 0.98);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.025);
    transition: transform var(--transition), box-shadow var(--transition);
}

.trust-strip-inner span::before {
    content: "";
    width: 17px;
    height: 17px;
    flex: 0 0 17px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transform: translateY(0.5px);
}

.trust-strip-inner span:nth-child(1)::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233E2C23' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='8.5'/%3E%3Cpath d='M8.5 12.2l2.2 2.2 4.8-5'/%3E%3C/svg%3E");
}

.trust-strip-inner span:nth-child(2)::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233E2C23' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3.5l1.7 4.7 4.8 1.7-4.8 1.7-1.7 4.9-1.7-4.9-4.8-1.7 4.8-1.7L12 3.5Z'/%3E%3Cpath d='M18.5 14.5l.8 2.2 2.2.8-2.2.8-.8 2.2-.8-2.2-2.2-.8 2.2-.8.8-2.2Z'/%3E%3C/svg%3E");
    transform: translateY(0.5px) scale(1.04);
}

.trust-strip-inner span:nth-child(3)::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233E2C23' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 20.5s-7-4.2-7-10.2A4.2 4.2 0 0 1 9.2 6c1.4 0 2.4.7 2.8 1.4.4-.7 1.4-1.4 2.8-1.4A4.2 4.2 0 0 1 19 10.3c0 6-7 10.2-7 10.2Z'/%3E%3C/svg%3E");
}

.trust-strip-inner span:nth-child(4)::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233E2C23' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3.5l7 3v5.2c0 4.5-2.9 7.5-7 8.8-4.1-1.3-7-4.3-7-8.8V6.5l7-3Z'/%3E%3Cpath d='M9 12l2 2 4-4'/%3E%3C/svg%3E");
}

@media (hover: hover) and (pointer: fine) {
    .trust-strip-inner span:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 14px rgba(0, 0, 0, 0.04);
    }
}

.testimonials-section {
    background: #f2ece8;
}

.testimonials-editorial {
    padding: clamp(1rem, 2vw, 1.6rem) 0;
}

.testimonials-editorial-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 2.7rem;
}

.testimonials-heading {
    max-width: 36rem;
    margin-bottom: 0;
}

.testimonials-heading h2 {
    line-height: 0.98;
}

.testimonials-heading p:last-child {
    max-width: 36rem;
    font-size: clamp(1rem, 1.45vw, 1.08rem);
    line-height: 1.7;
}

.testimonial-controls {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 1.15rem;
    flex-shrink: 0;
}

.testimonial-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: #875d3b;
    cursor: pointer;
    transition: color var(--transition), background-color var(--transition), transform var(--transition);
    font-size: 2rem;
    line-height: 1;
}

.testimonial-arrow:hover,
.testimonial-arrow:focus-visible {
    background: rgba(214, 204, 196, 0.4);
    color: var(--ink);
    transform: translateY(-1px);
}

.testimonial-arrow:disabled {
    opacity: 0.35;
    cursor: default;
    transform: none;
}

.testimonials-viewport {
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    gap: 40px;
    transition: transform 260ms ease;
    will-change: transform;
}

.testimonial-slide {
    flex: 0 0 calc((100% - (40px * 3)) / 4);
    min-width: 0;
}

.testimonial-entry {
    display: grid;
    gap: 0.7rem;
    color: #3e2c23;
}

.testimonial-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    color: #875d3b;
}

.testimonial-stars {
    letter-spacing: 0.18em;
    font-size: 0.9rem;
}

.testimonial-name {
    font-size: 0.92rem;
    letter-spacing: 0.03em;
    color: #875d3b;
}

.testimonial-quote {
    color: #3e2c23;
    font-size: 0.98rem;
    line-height: 1.72;
}

.testimonials-footer {
    margin-top: 2.5rem;
}

.testimonials-button {
    border-color: transparent;
    background: var(--cta);
    color: var(--white);
    padding-inline: 2.45rem;
    box-shadow: 0 12px 26px rgba(74, 52, 34, 0.18);
}

.testimonials-button:hover,
.testimonials-button:focus-visible {
    background: var(--cta-hover);
}

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

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

.panel-card,
.info-card {
    border: 1px solid rgba(214, 204, 196, 0.92);
    border-radius: var(--radius-md);
    background: var(--panel);
    box-shadow: var(--shadow-card);
}

.panel-card {
    padding: 28px;
}

.panel-card p {
    color: var(--ink-soft);
}

.testimonial-card,
.feature-card {
    height: 100%;
}

.testimonial-card {
    display: grid;
    grid-template-rows: auto 1fr auto auto;
    gap: 14px;
}

.stars {
    color: #9a6b4b;
    letter-spacing: 0.18em;
}

.testimonial-card span {
    color: var(--ink-soft);
    font-size: 0.92rem;
}

.why-choose-heading {
    max-width: 36rem;
}

.why-choose-heading h2 {
    line-height: 0.98;
}

.why-choose-heading p:last-child {
    font-size: clamp(1rem, 1.45vw, 1.08rem);
    line-height: 1.7;
}

.why-choose-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    align-items: stretch;
}

.why-choose-card {
    display: grid;
    align-content: start;
    gap: 1.35rem;
    height: 100%;
    padding: 34px 32px 32px;
    border-radius: 16px;
    background: #e8dfd8;
    border: 1px solid rgba(214, 204, 196, 0.98);
    box-shadow: 0 10px 22px rgba(62, 44, 35, 0.045);
}

.why-choose-icon {
    display: inline-flex;
    width: 34px;
    height: 34px;
    color: #9a6b4b;
}

.why-choose-icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
}

.why-choose-card h3 {
    font-size: clamp(2rem, 2.6vw, 2.4rem);
    line-height: 1.02;
}

.why-choose-card p {
    color: var(--ink-soft);
    font-size: 0.98rem;
    line-height: 1.7;
    max-width: 19rem;
}

.section-cta {
    display: flex;
    justify-content: flex-start;
    margin-top: 2rem;
}

.section-cta-stack {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    text-align: left;
}

.section-cta-stack p {
    color: var(--ink-soft);
    font-weight: 600;
    max-width: 32rem;
}

.pricing-card {
    padding: 0;
    overflow: hidden;
}

.pricing-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 28px;
    border-bottom: 1px solid rgba(214, 204, 196, 0.88);
}

.pricing-row:last-child {
    border-bottom: 0;
}

.pricing-copy {
    display: grid;
    gap: 6px;
}

.pricing-copy h3 {
    font-size: clamp(1.45rem, 2vw, 1.72rem);
    line-height: 1.02;
}

.pricing-link {
    display: inline-flex;
    color: inherit;
    text-decoration: none;
    border-bottom: 1px solid rgba(74, 52, 34, 0.24);
    transition: color var(--transition), border-color var(--transition);
}

.pricing-link:hover,
.pricing-link:focus-visible {
    color: var(--cta);
    border-bottom-color: currentColor;
}

.pricing-copy p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 0.95rem;
    line-height: 1.6;
}

.pricing-value {
    flex-shrink: 0;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2rem, 3vw, 2.45rem);
    font-weight: 600;
    line-height: 1;
    color: var(--ink);
    white-space: nowrap;
}

.pricing-cta {
    margin-top: 1.5rem;
}

.card-grid > .panel-card .image-frame {
    aspect-ratio: 4 / 5;
    overflow: hidden;
}

.card-image {
    overflow: hidden;
    aspect-ratio: 4 / 5;
}

.card-image img,
.card-grid > .panel-card .image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

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

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

.treatments-offered-heading {
    max-width: 36rem;
    margin-bottom: 1.5rem;
}

.treatments-offered-grid {
    gap: 24px;
    padding-top: 4px;
}

.treatment-showcase-card {
    min-height: 100%;
    border-radius: 16px;
    overflow: visible;
    box-shadow: 0 7px 20px rgba(0, 0, 0, 0.05);
    background: #fff;
    transform: translateY(0);
    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
}

.treatment-showcase-link {
    position: relative;
    display: grid;
    min-height: 100%;
    aspect-ratio: 1 / 1;
    isolation: isolate;
    overflow: hidden;
    border-radius: inherit;
}

.treatment-showcase-link::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.1) 62%, rgba(0, 0, 0, 0) 100%);
    transition: background 0.4s ease;
    z-index: 1;
}

.treatment-showcase-media,
.treatment-showcase-media img {
    width: 100%;
    height: 100%;
}

.treatment-showcase-media {
    position: absolute;
    inset: 0;
    background: #fff;
}

.treatment-showcase-media img {
    display: block;
    object-fit: cover;
    object-position: center;
    transform: scale(var(--image-scale, 1));
    transition: transform 0.4s ease;
}

.treatment-showcase-content {
    position: relative;
    z-index: 2;
    align-self: end;
    display: grid;
    gap: 0.5rem;
    grid-template-rows: auto auto auto;
    padding: 1.55rem 1.5rem 1.35rem;
    color: #fffdfb;
}

.treatment-showcase-content h3 {
    display: inline-grid;
    align-items: start;
    width: fit-content;
    min-height: 1.92em;
    font-size: clamp(1.7rem, 2.2vw, 2.1rem);
    line-height: 0.96;
    letter-spacing: 0.01em;
    color: #fffdfb;
}

.treatment-showcase-content h3::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    margin-top: 0.4rem;
    background: rgba(255, 253, 251, 0.88);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.4s ease;
}

.treatment-showcase-content p {
    max-width: 18rem;
    min-height: 3em;
    font-size: 0.94rem;
    line-height: 1.5;
    color: rgba(255, 253, 251, 0.88);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
}

.treatment-showcase-action {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    width: fit-content;
    margin-top: 0.2rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #fffdfb;
}

.treatment-showcase-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 0.85rem;
    border: 1px solid rgba(255, 253, 251, 0.46);
    border-radius: 999px;
    background: rgba(242, 236, 232, 0.9);
    backdrop-filter: blur(10px);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: #5f4637;
}

.treatment-showcase-card--lip {
    --image-scale: 1.05;
}

.treatment-showcase-card--lip img {
    object-position: 50% 56%;
}

.treatment-showcase-card--brows {
    --image-scale: 1.05;
}

.treatment-showcase-card--brows img {
    object-position: 52% 33%;
}

.treatment-showcase-card--eyes {
    --image-scale: 1.05;
}

.treatment-showcase-card--eyes img {
    object-position: 52% 48%;
}

.treatment-showcase-card--medical {
    --image-scale: 1.05;
}

.treatment-showcase-card--medical img {
    object-position: 50% 46%;
}

.treatment-showcase-card--skin {
    --image-scale: 1.05;
}

.treatment-showcase-card--skin img {
    object-position: 50% 30%;
}

.treatment-showcase-card--anti-wrinkle {
    --image-scale: 1.05;
}

.treatment-showcase-card--anti-wrinkle img {
    object-position: 50% 24%;
}

.treatments-offered-cta {
    margin-top: 2.7rem;
}

.treatments-offered-cta p {
    color: var(--ink);
}

@media (hover: hover) and (pointer: fine) {
    .treatment-showcase-card:hover,
    .treatment-showcase-card:focus-within {
        transform: translateY(-4px);
        box-shadow: 0 16px 32px rgba(33, 22, 16, 0.12);
    }

    .treatment-showcase-link:hover::after,
    .treatment-showcase-link:focus-visible::after {
        background: linear-gradient(to top, rgba(0, 0, 0, 0.56) 0%, rgba(0, 0, 0, 0.16) 62%, rgba(0, 0, 0, 0.02) 100%);
    }

    .treatment-showcase-link:hover img,
    .treatment-showcase-link:focus-visible img {
        transform: scale(calc(var(--image-scale, 1) + 0.04));
    }

    .treatment-showcase-link:hover h3::after,
    .treatment-showcase-link:focus-visible h3::after {
        transform: scaleX(1);
    }
}

.about-split,
.faq-layout,
.split-layout {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(32px, 4vw, 56px);
    align-items: center;
}

.about-frame {
    aspect-ratio: 0.92;
}

.content-stack {
    display: grid;
    gap: 20px;
}

.home-main .about-split {
    align-items: center;
}

.home-main .about-split .content-stack {
    max-width: 36rem;
    gap: 1rem;
}

.home-main .about-split .content-stack p {
    max-width: 36rem;
    line-height: 1.74;
}

.home-main .about-split .content-stack .button {
    margin-top: 0.25rem;
}

.faq-layout {
    align-items: start;
}

.faq-list {
    display: grid;
    gap: 14px;
}

.faq-item {
    padding: 0 24px;
    border: 1px solid rgba(214, 204, 196, 0.92);
    border-radius: 20px;
    background: rgba(255, 253, 251, 0.94);
    box-shadow: var(--shadow-card);
}

.faq-item summary {
    padding: 21px 0;
    cursor: pointer;
    list-style: none;
    font-weight: 700;
    color: var(--ink);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    float: right;
    font-size: 1.2rem;
    color: var(--ink-soft);
}

.faq-item[open] summary::after {
    content: "-";
}

.faq-item p {
    padding: 0 0 22px;
    color: var(--ink-soft);
}

.cta-band {
    background: var(--section-deep-bg);
    color: var(--white);
}

.cta-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.cta-panel > div:first-child {
    display: grid;
    gap: 1rem;
    max-width: 36rem;
}

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

.cta-panel h2 {
    margin-bottom: 0.2rem;
}

.cta-panel .hero-actions {
    align-items: center;
}

.cta-panel .button-light {
    box-shadow: 0 12px 24px rgba(255, 248, 241, 0.1);
}

.cta-panel .button-outline-light {
    border-color: rgba(255, 248, 241, 0.26);
    background: transparent;
}

.site-footer {
    background: #2f2119;
    color: rgba(255, 248, 241, 0.82);
    padding-top: 44px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 28px;
    padding-bottom: 32px;
}

.footer-brand {
    display: grid;
    gap: 20px;
}

.footer-trust-line {
    font-size: 0.9rem;
    color: rgba(255, 248, 241, 0.86);
}

.site-footer .brand-monogram {
    background: linear-gradient(180deg, rgba(244, 236, 231, 0.96), rgba(214, 195, 183, 0.94));
}

.site-footer .brand-copy small,
.site-footer p,
.footer-links a,
.footer-links li {
    color: rgba(255, 248, 241, 0.72);
}

.site-footer h3 {
    margin-bottom: 16px;
    color: var(--white);
    font-size: 1.55rem;
}

.footer-links {
    display: grid;
    gap: 10px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    opacity: 0.9;
}

.footer-contact-address {
    align-items: flex-start;
}

.footer-contact-icon {
    width: 17px;
    height: 17px;
    flex: 0 0 17px;
    color: currentColor;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.footer-contact-address .footer-contact-icon {
    margin-top: 0.12rem;
}

.footer-contact-note a {
    color: rgba(255, 248, 241, 0.86);
}

.footer-links a:hover,
.footer-links a:focus-visible {
    color: var(--white);
}

.social-row {
    display: flex;
    gap: 12px;
}

.social-link {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255, 248, 241, 0.14);
    background: rgba(255, 248, 241, 0.06);
}

.social-link svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 0 28px;
    border-top: 1px solid rgba(255, 248, 241, 0.1);
    font-size: 0.92rem;
}

.footer-bottom-links {
    display: flex;
    gap: 18px;
}

.footer-bottom-links a {
    color: rgba(255, 248, 241, 0.76);
}

.footer-bottom-links a:hover,
.footer-bottom-links a:focus-visible {
    color: var(--white);
}

.floating-whatsapp-button,
.floating-top-button {
    position: fixed;
    right: 24px;
    z-index: 45;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(74, 52, 34, 0.96);
    color: var(--white);
    box-shadow: 0 12px 24px rgba(47, 33, 25, 0.22);
    transition: transform 0.3s ease, background-color 0.3s ease, opacity var(--transition);
}

.floating-whatsapp-button {
    bottom: 92px;
    width: 56px;
    height: 56px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
}

.floating-whatsapp-button svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.floating-whatsapp-button.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.floating-whatsapp-button:hover,
.floating-whatsapp-button:focus-visible {
    background: var(--cta-hover);
    transform: translateY(0) scale(1.05);
}

.floating-top-button {
    bottom: 24px;
    width: 48px;
    height: 48px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity var(--transition), transform var(--transition), background-color var(--transition);
}

.floating-top-button.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.floating-top-button:hover,
.floating-top-button:focus-visible {
    background: var(--cta-hover);
}

.mobile-cta-bar {
    display: none;
}

.page-hero {
    padding: clamp(62px, 7vw, 104px) 0 clamp(48px, 6vw, 76px);
}

.treatment-template {
    --treatment-section-space: clamp(72px, 7.8vw, 108px);
    --treatment-flow-space: clamp(1rem, 1.9vw, 1.28rem);
}

.treatment-template .section {
    padding: var(--treatment-section-space) 0;
}

.treatment-template .page-hero-copy,
.treatment-template .treatment-section-copy,
.treatment-template .suitability-stack {
    gap: var(--treatment-flow-space);
}

.treatment-template .page-hero-copy h1,
.treatment-template .section-heading h2 {
    line-height: 0.96;
}

.treatment-template .page-hero-copy .eyebrow,
.treatment-template .section-heading .eyebrow {
    letter-spacing: 0.18em;
}

.treatment-template .page-hero-copy p,
.treatment-template .treatment-section-copy p,
.treatment-template .pricing-copy p,
.treatment-template .panel-card p,
.treatment-template .info-card p,
.treatment-template .faq-item p,
.treatment-template .cta-panel p {
    line-height: 1.68;
}

.treatment-template .page-hero-copy .hero-actions {
    margin-top: 0.45rem;
}

.treatment-template .section-heading {
    gap: 0.7rem;
    margin-bottom: clamp(1.75rem, 3vw, 2.45rem);
}

.treatment-template .section-heading p:last-child {
    line-height: 1.68;
}

.treatment-template .card-grid,
.treatment-template .info-grid,
.treatment-template .faq-list {
    gap: clamp(18px, 2.2vw, 26px);
}

.treatment-template .info-card {
    display: grid;
    align-content: start;
    gap: 0.85rem;
}

.treatment-split-layout,
.process-layout {
    gap: clamp(32px, 4vw, 56px);
    align-items: start;
}

.treatment-side-image,
.suitability-image,
.process-image {
    align-self: start;
}

.treatment-side-image,
.suitability-image {
    aspect-ratio: 0.92;
}

.process-image {
    aspect-ratio: 0.98;
}

.treatment-side-image img,
.suitability-image img,
.process-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pricing-card.reveal {
    overflow: hidden;
}

.lip-blush-template .page-hero-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(32px, 4vw, 56px);
    align-items: center;
}

.lip-blush-template .what-is-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(32px, 4vw, 56px);
    align-items: center;
}

.lip-blush-template .page-hero-copy,
.lip-blush-template .what-is-layout .treatment-section-copy,
.lip-blush-template .suitability-text,
.lip-blush-template .process-section-stack .section-heading {
    max-width: 38rem;
}

.lip-blush-hero-image,
.lip-blush-template .what-is-image {
    width: min(100%, 470px);
    justify-self: end;
    aspect-ratio: 1.02;
}

.lip-blush-hero-image img,
.lip-blush-template .what-is-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lip-blush-template .what-is-image {
    order: 1;
    justify-self: start;
}

.lip-blush-template .what-is-layout .treatment-section-copy {
    order: 2;
}

.lip-blush-section-stack,
.process-section-stack {
    display: grid;
    gap: clamp(30px, 3.2vw, 40px);
}

.lip-blush-template .suitability-top-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
    gap: clamp(24px, 3vw, 40px);
    align-items: start;
}

.lip-blush-template .suitability-card {
    display: grid;
    min-height: 100%;
    width: 100%;

}

.lip-blush-template .suitability-image,
.lip-blush-template .process-image {
    width: 100%;
    aspect-ratio: 16 / 9;
}

.lip-blush-template .process-grid {
    grid-template-columns: repeat(3, minmax(220px, 1fr));
    order: 1;
}

.lip-blush-template .process-image {
    order: 2;
}

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

.lip-blush-benefits-section {
    padding-top: calc(var(--treatment-section-space) + 12px);
}

.lip-blush-template .info-card,
.lip-blush-template .panel-card:not(.pricing-card) {
    padding: clamp(24px, 2.4vw, 30px);
}

.lip-blush-template .panel-card p,
.lip-blush-template .info-card p,
.lip-blush-template .pricing-copy p,
.lip-blush-template .section-heading p:last-child {
    line-height: 1.74;
}

.lip-blush-template .check-list {
    gap: 14px;
}

.lip-blush-template .pricing-card {
    margin-top: 0.7rem;
}

.lip-blush-template .pricing-cta {
    margin-top: clamp(2.3rem, 3.4vw, 3rem);
    gap: 0.35rem;
}

.lip-blush-template .pricing-cta .button {
    margin-top: clamp(1.5rem, 2vw, 2rem);
}

.lip-blush-template .treatment-grid {
    gap: clamp(22px, 2.6vw, 30px);
}

.page-hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
    gap: 28px;
    align-items: center;
}

.page-hero-copy {
    max-width: 36rem;
}

.page-hero-layout p {
    color: var(--ink-soft);
}

.page-hero-layout .image-frame {
    aspect-ratio: 1.05;
}

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

.info-card {
    padding: 28px;
}

.info-card p,
.split-layout p {
    color: var(--ink-soft);
}

.treatment-detail-grid {
    display: grid;
    gap: 24px;
}

.reviews-intro-copy {
    margin-bottom: clamp(2rem, 3vw, 2.5rem);
}

.treatment-detail {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 28px;
    padding: 24px;
    align-items: center;
}

.treatment-detail .image-frame {
    aspect-ratio: 1.05;
}

.treatment-detail ul,
.contact-list,
.check-list {
    display: grid;
    gap: 12px;
}

.treatment-detail li,
.contact-list li,
.check-list li {
    position: relative;
    padding-left: 22px;
    color: var(--ink-soft);
}

.treatment-detail li::before,
.contact-list li::before,
.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 24px;
    align-items: start;
}

.contact-panel-group {
    display: grid;
    gap: 1.15rem;
}

.contact-panel-group-details {
    display: flex;
    flex-direction: column;
    align-self: stretch;
}

.contact-panel-heading {
    margin-bottom: 0;
}

.contact-panel {
    display: grid;
    gap: 20px;
    padding: 28px;
}

.contact-side-image {
    flex: 1 1 auto;
    min-height: 260px;
}

.contact-side-image img {
    height: 100%;
    object-fit: cover;
}

.mini-note {
    font-size: 0.92rem;
    color: var(--ink-soft);
}

.hours-grid {
    display: grid;
    gap: 10px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(214, 204, 196, 0.92);
    color: var(--ink-soft);
}

.legal-copy {
    display: grid;
    gap: 18px;
    max-width: 54rem;
}

.legal-copy h2 {
    font-size: clamp(1.8rem, 3vw, 2.35rem);
}

.badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.badge {
    padding: 11px 16px;
    border-radius: 999px;
    border: 1px solid rgba(214, 204, 196, 0.92);
    background: rgba(255, 253, 251, 0.9);
    font-size: 0.9rem;
    color: var(--ink-soft);
}

@media (max-width: 1040px) {
    .why-choose-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-slide {
        flex-basis: calc((100% - 40px) / 2);
    }

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

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

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

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

    .section-head-row {
        flex-direction: column;
        align-items: stretch;
    }

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

@media (max-width: 860px) {
    body.menu-open {
        overflow: hidden;
    }

    .testimonials-editorial-head {
        flex-direction: column;
        align-items: stretch;
    }

    .testimonial-controls {
        justify-content: flex-end;
        margin-top: 0;
    }

    .nav-toggle {
        display: inline-block;
        position: relative;
        z-index: 2;
    }

    .site-nav {
        position: fixed;
        top: calc(84px + 10px);
        left: var(--gutter);
        right: var(--gutter);
        max-height: calc(100vh - 108px);
        overflow-y: auto;
        display: grid;
        align-content: start;
        gap: 10px;
        padding: 20px;
        border-radius: 24px;
        border: 1px solid rgba(214, 204, 196, 0.92);
        background: rgba(255, 253, 251, 0.97);
        box-shadow: var(--shadow-soft);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-12px);
        transition: opacity var(--transition), transform var(--transition);
    }

    .site-header.menu-open .site-nav {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .site-header.menu-open .nav-toggle span:nth-child(1) {
        transform: translateY(5.5px) rotate(45deg);
    }

    .site-header.menu-open .nav-toggle span:nth-child(2) {
        opacity: 0;
    }

    .site-header.menu-open .nav-toggle span:nth-child(3) {
        transform: translateY(-5.5px) rotate(-45deg);
    }

    .nav-link {
        display: block;
        padding: 14px 4px;
    }

    .nav-link::after {
        bottom: 2px;
    }

    .nav-item-mobile-dropdown.nav-link-mobile-only {
        display: block;
        width: 100%;
    }

    .nav-desktop-only {
        display: none;
    }

    .nav-cta {
        margin-top: 10px;
    }

    .site-nav .button {
        width: 100%;
        justify-content: center;
    }

    .nav-item,
    .nav-link-button {
        width: 100%;
    }

    .nav-item-mobile-dropdown {
        width: 100%;
    }

    .site-nav .nav-link-button {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 14px 4px;
        text-align: left;
    }

    .site-nav .nav-link-button::after {
        display: none;
    }

    .mobile-treatments-trigger {
        width: 100%;
        color: var(--ink-soft);
    }

    .mobile-treatments-trigger .nav-chevron {
        margin-left: auto;
        flex-shrink: 0;
    }

    .nav-item-mobile-dropdown.is-open > .mobile-treatments-trigger {
        color: var(--ink);
    }

    .mobile-nav-panel {
        display: grid;
        gap: 2px;
        max-height: 0;
        overflow: hidden;
        padding-left: 16px;
        transition: max-height 220ms ease;
    }

    .nav-item-mobile-dropdown.is-open .mobile-nav-panel {
        max-height: 480px;
        margin-top: 2px;
    }

    .mobile-nav-sublink {
        display: block;
        padding: 12px 4px 12px 12px;
    }

    .mega-panel {
        display: none;
    }

    .mega-panel-inner {
        width: 100%;
        margin: 10px 0 0;
        padding: 0;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
    }

    .mega-panel-top {
        display: none;
    }

    .mega-grid,
    .mega-card,
    .mega-card-image,
    .mega-cta-row {
        display: none;
    }

    .about-split,
    .faq-layout,
    .split-layout,
    .page-hero-layout,
    .contact-grid,
    .treatment-detail,
    .cta-panel {
        grid-template-columns: 1fr;
    }

    .hero-section {
        min-height: 760px;
    }

    .hero-content-shell {
        padding-right: 0;
        padding-left: 0;
    }

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

    .treatment-template .section {
        padding: clamp(56px, 11vw, 76px) 0;
    }

    .treatment-template .section-heading {
        margin-bottom: 1.45rem;
    }

    .lip-blush-template .what-is-layout,
    .lip-blush-template .page-hero-layout,
    .lip-blush-template .suitability-top-grid {
        grid-template-columns: 1fr;
    }

    .lip-blush-template .what-is-image,
    .lip-blush-template .lip-blush-hero-image,
    .lip-blush-template .suitability-image,
    .lip-blush-template .process-image {
        width: 100%;
        justify-self: stretch;
    }

    .lip-blush-template .lip-blush-hero-image {
        order: 2;
    }

    .lip-blush-template .page-hero-copy {
        order: 1;
    }

    .lip-blush-template .suitability-image {
        order: 1;
    }

    .lip-blush-template .suitability-top-grid {
        order: 2;
    }

    .lip-blush-template .process-grid {
        order: 2;
    }

    .lip-blush-template .process-image {
        order: 1;
    }

    .lip-blush-template .cta-panel {
        width: min(var(--container), var(--content-rail));
        padding: clamp(1.7rem, 6vw, 2.3rem) var(--mobile-block-padding);
        border-radius: var(--radius-md);
        gap: 1.35rem;
    }

    .treatment-side-image,
    .suitability-image,
    .process-image {
        aspect-ratio: 1.02;
    }
}

@media (max-width: 767px) {
    .lip-blush-template .page-hero-layout,
    .lip-blush-template .what-is-layout {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        align-items: stretch;
    }

    .lip-blush-template .page-hero-copy,
    .lip-blush-template .what-is-layout .treatment-section-copy {
        width: 100%;
        max-width: none;
    }

    .lip-blush-template .lip-blush-hero-image,
    .lip-blush-template .what-is-image {
        display: block;
        width: 100%;
        max-width: 100%;
        margin: 0;
        justify-self: stretch;
        align-self: stretch;
    }

    .lip-blush-template .lip-blush-hero-image {
        order: 2;
        border-radius: 24px;
    }

    .lip-blush-template .page-hero-copy {
        order: 1;
    }

    .lip-blush-template .lip-blush-hero-image img,
    .lip-blush-template .what-is-image img {
        display: block;
        width: 100%;
        max-width: 100%;
        height: auto;
        object-fit: cover;
    }

    .lip-blush-template .cta-panel {
        width: min(var(--container), var(--content-rail));
        margin-inline: auto;
        padding: 1.85rem var(--mobile-block-padding) calc(1.95rem + env(safe-area-inset-bottom));
    }

    .lip-blush-template .cta-panel .hero-actions {
        width: 100%;
    }
}

@media (max-width: 640px) {
    .testimonial-slide {
        flex-basis: 100%;
    }

    .testimonials-track {
        gap: 18px;
    }

    .testimonials-editorial-head {
        margin-bottom: 2rem;
    }

    .testimonials-heading p:last-child {
        font-size: 1rem;
    }

    .testimonials-footer {
        margin-top: 2rem;
    }

    :root {
        --gutter: 18px;
        --mobile-block-padding: 22px;
    }

    .home-main {
        padding-bottom: 0;
    }

    .site-footer {
        padding-bottom: calc(92px + env(safe-area-inset-bottom));
    }

    .hero-section {
        min-height: 720px;
        align-items: flex-end;
    }

    .hero-overlay {
        background: linear-gradient(to bottom, rgba(242, 236, 232, 0.64) 0%, rgba(242, 236, 232, 0.86) 40%, rgba(242, 236, 232, 0.96) 100%);
    }

    .hero-content-shell {
        padding: 7.2rem 0 3.2rem;
    }

    .hero-copy {
        gap: 1.35rem;
        max-width: 100%;
    }

    .hero-title {
        font-size: clamp(3rem, 12vw, 4.1rem);
    }

    .hero-lead {
        max-width: 100%;
    }

    .hero-actions,
    .footer-bottom,
    .footer-bottom-links {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-panel {
        flex-direction: column;
        align-items: stretch;
        gap: 1.5rem;
    }

    .cta-panel .hero-actions {
        width: 100%;
        align-items: stretch;
    }

    .button,
    .hero-actions .button,
    .mobile-cta-bar .button {
        width: 100%;
    }

    .hero-trust-list {
        display: grid;
        gap: 0.9rem;
    }

    .hero-trust-item {
        font-size: 0.92rem;
    }

    .trust-strip-inner,
    .testimonial-grid,
    .feature-grid,
    .treatment-grid,
    .pm-featured-grid,
    .pm-secondary-grid,
    .info-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

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

    .trust-strip-inner span {
        font-size: 0.79rem;
        padding: 0.72rem 0.9rem;
    }

    .pricing-row {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px var(--mobile-block-padding);
    }

    .treatment-template .page-hero-copy,
    .treatment-template .treatment-section-copy,
    .treatment-template .suitability-stack {
        gap: 0.95rem;
    }

    .treatment-template .section-heading {
        gap: 0.55rem;
    }

    .lip-blush-template .feature-grid,
    .lip-blush-template .process-grid {
        grid-template-columns: 1fr;
    }

    .lip-blush-template .cta-panel .hero-actions {
        gap: 0.85rem;
        width: 100%;
    }

    .pricing-value {
        white-space: normal;
    }

    .panel-card,
    .card-body,
    .info-card,
    .contact-panel,
    .treatment-detail,
    .why-choose-card {
        padding: var(--mobile-block-padding);
    }

    .panel-card,
    .info-card,
    .pricing-card,
    .faq-item,
    .contact-panel,
    .contact-panel-group,
    .contact-side-image,
    .cta-panel,
    .footer-grid,
    .footer-bottom {
        width: 100%;
        min-width: 0;
    }

    .faq-item {
        padding-inline: var(--mobile-block-padding);
    }

    .brand-copy strong {
        font-size: 0.92rem;
    }

    .brand-copy small {
        letter-spacing: 0.12em;
    }

    .floating-top-button {
        right: 18px;
        bottom: 92px;
    }

    .floating-whatsapp-button {
        right: 18px;
        bottom: 160px;
        width: 54px;
        height: 54px;
    }

    .mega-card {
        padding: 14px 16px;
    }

    .mobile-cta-bar {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 44;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        padding: 12px 18px calc(12px + env(safe-area-inset-bottom));
        background: rgba(242, 236, 232, 0.96);
        border-top: 1px solid rgba(214, 204, 196, 0.96);
        backdrop-filter: blur(18px);
    }
}

@media (max-width: 420px) {
    .trust-strip-inner {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
    }

    .js-enhanced .reveal {
        opacity: 1 !important;
        transform: none !important;
    }

    .hero-copy,
    .hero-media img {
        animation: none;
        transform: none;
    }

    .floating-whatsapp-button,
    .floating-top-button {
        transition: none;
    }

    .treatment-showcase-card,
    .treatment-showcase-link::after,
    .treatment-showcase-media img,
    .treatment-showcase-content h3::after {
        transition: none;
    }

    .treatment-showcase-card:hover,
    .treatment-showcase-card:focus-within,
    .treatment-showcase-link:hover::after,
    .treatment-showcase-link:focus-visible::after,
    .treatment-showcase-link:hover h3::after,
    .treatment-showcase-link:focus-visible h3::after {
        transform: none;
    }

    .treatment-showcase-link:hover::after,
    .treatment-showcase-link:focus-visible::after {
        background: linear-gradient(to top, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.1) 62%, rgba(0, 0, 0, 0) 100%);
    }

    .treatment-showcase-link:hover img,
    .treatment-showcase-link:focus-visible img {
        transform: scale(var(--image-scale, 1));
    }
}

.lip-blush-template .suitability-text.content-stack {
    gap: 16px;
}

.lip-blush-template .suitability-text .section-heading {
    gap: 6px;
    margin: 0;
}

.lip-blush-template .suitability-text p {
    margin: 0;
}

.lip-blush-template .panel-card.suitability-card {
  padding-top: 2.5rem;
}

.contact-panel {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.contact-panel > * {
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.contact-panel p {
  max-width: 100%;
  overflow-wrap: anywhere;
}

.contact-panel label {
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.contact-panel input,
.contact-panel textarea {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.contact-panel button,
.contact-panel .button-primary {
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  white-space: normal;
}

@media (max-width: 640px) {
  .contact-panel button,
  .contact-panel .button-primary {
    width: 100%;
  }
}

.cta-band .container {
  width: min(var(--home-container), var(--content-rail));
  margin-inline: auto;
}

.cta-panel {
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}
