:root {
    --bg-main: #FFF8FA;
    --bg-header: #FFF8FA;
    --text-main: #2A4158;
    --bg-topbar: #3E4144;
    --text-topbar: #FAF7F2;
    --bg-card: #FFFFFF;
    --accent: #9AAB96;
    --promo-bar: #C4A484;
    --border-color: #E8E1D5;
    --image-mask: #3E4144;
}

html[data-theme="theme-3"] {
    --bg-main: #0F141A;
    --bg-header: #0F141A;
    --text-main: #E0E4E8;
    --bg-topbar: #080A0D;
    --text-topbar: #E0E4E8;
    --bg-card: #1A2129;
    --accent: #B89355;
    --promo-bar: #4A5D53;
    --border-color: #2A3542;
}

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    transition: background-color 0.4s ease, color 0.4s ease;
    line-height: 1.6;
    overflow-x: hidden;
}

body.has-panel {
    background-color: var(--bg-card);
    overflow: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    margin: 0;
}

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

.promo-banner {
    background-color: var(--promo-bar);
    color: var(--text-main);
    text-align: center;
    padding: 10px 20px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.4s ease;
}

.site-header-shell {
    position: sticky;
    top: 0;
    z-index: 50;
    background-color: var(--bg-header);
    box-shadow: 0 10px 30px rgba(20, 29, 38, 0.08);
}

.top-bar {
    background-color: var(--bg-topbar);
    color: var(--text-topbar);
    padding: 8px 40px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    font-size: 0.8rem;
    letter-spacing: 1px;
    transition: all 0.4s ease;
}

.top-bar-links {
    display: flex;
    gap: 18px;
    align-items: center;
}

.top-bar-links a:hover {
    opacity: 0.7;
}

.top-bar-links a.is-active {
    opacity: 1;
    text-decoration: underline;
    text-underline-offset: 0.28rem;
}

.top-bar-divider {
    opacity: 0.4;
}

.top-bar-divider--actions {
    margin: 0 2px 0 4px;
}

.top-bar-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: -2px;
}

.icon-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    color: var(--text-topbar);
}

.icon-link svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.icon-link--circle {
    border: 1px solid var(--text-topbar);
    border-radius: 50%;
}

.theme-toggle {
    background: none;
    border: 1px solid var(--text-topbar);
    color: var(--text-topbar);
    border-radius: 50%;
    width: 26px;
    height: 26px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.language-toggle {
    background: none;
    border: 0;
    color: var(--text-topbar);
    padding: 0;
    min-width: 24px;
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.language-toggle:hover,
.theme-toggle:hover,
.icon-link:hover {
    opacity: 0.72;
}

header {
    background-color: var(--bg-header);
    padding: 20px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.4s ease;
}

.logo-link {
    display: inline-flex;
    align-items: center;
}

.logo {
    height: 50px;
    transition: opacity 0.3s ease;
}

.main-nav {
    display: flex;
    gap: 30px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.main-nav a {
    padding: 10px 0;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 5px;
    left: 0;
    background-color: var(--text-main);
    transition: width 0.3s ease;
}

.main-nav a:hover::after {
    width: 100%;
}

.page-content {
    transition: opacity 0.35s ease, filter 0.35s ease;
}

body.has-panel .page-content {
    opacity: 0.5;
    filter: saturate(0.92);
    pointer-events: none;
}

.panel-stage {
    display: none;
    position: fixed;
    top: var(--sticky-shell-height, 118px);
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 35;
    overscroll-behavior-x: none;
    opacity: 1;
    transition: opacity 0.22s ease;
}

html[data-theme="theme-3"] .panel-stage {
    background: none;
}

body.has-panel .panel-stage {
    display: block;
    pointer-events: auto;
}

.panel-stage.is-switching-out {
    opacity: 0;
    pointer-events: none;
}

.info-panel,
.contact-panel {
    display: none;
    position: absolute;
    inset: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
}

.panel-stage[data-active-panel="about"] .info-panel--about,
.panel-stage[data-active-panel="pricing"] .info-panel--pricing {
    display: flex;
}

.panel-stage[data-active-panel="contact"] .contact-panel {
    display: grid;
}

.info-panel {
    align-items: flex-start;
    justify-content: flex-start;
    padding: 64px clamp(24px, 6vw, 96px);
}

.info-panel--about {
    animation: panel-slide-in-left 0.7s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.info-panel--pricing {
    justify-content: flex-end;
    animation: panel-slide-in-right 0.7s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.info-panel.is-dragging,
.contact-panel.is-dragging {
    transition: none;
}

.info-panel-inner {
    width: min(740px, 100%);
    max-width: 720px;
    padding: 36px;
    border: 1px solid rgba(232, 225, 213, 0.72);
    border-radius: 24px;
    background:
        radial-gradient(circle at top left, rgba(154, 171, 150, 0.16) 0%, rgba(154, 171, 150, 0) 42%),
        rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(12px);
    box-shadow: 0 24px 60px rgba(20, 29, 38, 0.12);
}

.info-panel-inner--wide {
    width: min(980px, 100%);
    max-width: 980px;
}

.info-panel-kicker {
    margin: 0 0 12px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    opacity: 0.74;
}

.info-panel h2,
.contact-panel-card h2 {
    font-size: clamp(2rem, 4.2vw, 3.8rem);
    line-height: 0.98;
    margin-bottom: 18px;
}

.info-panel p,
.contact-panel-card p {
    font-size: 1.02rem;
    max-width: 56ch;
}

.contact-panel {
    width: 100%;
    align-content: start;
    justify-items: center;
    padding: 64px 20px 72px;
    animation: panel-fade-in 0.45s ease both;
    overflow-x: hidden;
    box-sizing: border-box;
    touch-action: pan-y;
}

.contact-panel-card {
    width: min(560px, calc(100vw - 64px));
    max-width: 100%;
    padding: 32px;
    box-sizing: border-box;
    border: 1px solid var(--border-color);
    border-radius: 18px;
    background-color: rgba(255, 255, 255, 0.86);
    backdrop-filter: blur(8px);
    box-shadow: 0 20px 44px rgba(20, 29, 38, 0.08);
    margin: 0 auto;
    text-align: center;
    overflow-x: clip;
    touch-action: pan-y;
}

html[data-theme="theme-3"] .info-panel-inner {
    border-color: rgba(42, 53, 66, 0.82);
    background:
        radial-gradient(circle at top left, rgba(184, 147, 85, 0.14) 0%, rgba(184, 147, 85, 0) 42%),
        rgba(26, 33, 41, 0.88);
}

html[data-theme="theme-3"] .contact-panel-card {
    background-color: rgba(26, 33, 41, 0.88);
}

.site-footer {
    text-align: center;
    padding: 24px 20px 30px;
    border-top: 1px solid var(--border-color);
    background-color: var(--bg-topbar);
    color: var(--text-topbar);
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

body.has-panel .site-footer {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.site-footer p {
    margin: 0;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.72;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 68vh;
    min-height: 480px;
    background-color: var(--bg-card);
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    z-index: 0;
    transition: opacity 1.2s ease;
    display: flex;
    align-items: flex-end;
}

.hero-slide.is-current {
    opacity: 1;
    pointer-events: auto;
    z-index: 1;
}

.hero-slide.is-next {
    opacity: 1;
    z-index: 2;
}

.hero-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(23, 28, 32, 0.72) 0%, rgba(23, 28, 32, 0.4) 48%, rgba(23, 28, 32, 0.18) 100%),
        rgba(62, 65, 68, 0.58);
    z-index: 1;
}

.hero-slide-image {
    --hero-start-scale: 1.16;
    --hero-end-scale: 1.24;
    --hero-start-x: 0%;
    --hero-start-y: 0%;
    --hero-end-x: 0%;
    --hero-end-y: 0%;
    position: absolute;
    inset: -5%;
    background-size: cover;
    background-position: center;
    will-change: transform;
    transform: scale(var(--hero-start-scale)) translate3d(var(--hero-start-x), var(--hero-start-y), 0);
}

.hero-slide.is-current .hero-slide-image,
.hero-slide.is-next .hero-slide-image {
    animation: hero-pan 9s ease-out forwards;
}

.hero-slide:nth-child(2) .hero-slide-image {
    --hero-start-scale: 1.15;
    --hero-end-scale: 1.23;
    --hero-start-x: 4%;
    --hero-start-y: -2.5%;
    --hero-end-x: 0.5%;
    --hero-end-y: 1.8%;
}

.hero-slide:nth-child(3) .hero-slide-image {
    --hero-start-scale: 1.17;
    --hero-end-scale: 1.25;
    --hero-start-x: -2.5%;
    --hero-start-y: -4.5%;
    --hero-end-x: 1.2%;
    --hero-end-y: -0.5%;
}

.hero-slide:nth-child(4) .hero-slide-image {
    --hero-start-scale: 1.15;
    --hero-end-scale: 1.23;
    --hero-start-x: -4.8%;
    --hero-start-y: 1.2%;
    --hero-end-x: -1.4%;
    --hero-end-y: -2.2%;
}

.hero-slide:nth-child(1) .hero-slide-image {
    --hero-start-scale: 1.16;
    --hero-end-scale: 1.24;
    --hero-start-x: -4.2%;
    --hero-start-y: 2.2%;
    --hero-end-x: -0.6%;
    --hero-end-y: -1.4%;
}

.hero-text-overlay {
    position: relative;
    z-index: 2;
    margin: 0 40px 48px;
    max-width: 560px;
    text-align: left;
}

.hero-slide--facemodeling {
    justify-content: flex-start;
    align-items: flex-end;
}

.hero-slide--facemodeling .hero-text-overlay {
    margin: 0 0 52px 52px;
    max-width: 540px;
}

.hero-slide--kobido {
    justify-content: flex-start;
    align-items: flex-end;
}

.hero-slide--kobido .hero-text-overlay {
    margin: 0 0 52px 52px;
    max-width: 540px;
    text-align: left;
}

.hero-slide--acupuncture {
    justify-content: flex-start;
    align-items: flex-end;
}

.hero-slide--acupuncture .hero-text-overlay {
    margin: 0 0 52px 52px;
    max-width: 540px;
}

.hero-slide--breath {
    justify-content: flex-start;
    align-items: flex-end;
}

.hero-slide--breath .hero-text-overlay {
    margin: 0 0 52px 52px;
    max-width: 540px;
    text-align: left;
}

.hero-text-overlay h2 {
    font-size: clamp(2.2rem, 4vw, 4.8rem);
    line-height: 1;
    color: #FFFFFF;
    text-shadow: 1px 1px 12px rgba(0, 0, 0, 0.28);
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.hero-kicker {
    margin: 0 0 14px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.26em;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
}

.hero-description {
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.92);
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    font-weight: 400;
    line-height: 1.6;
    font-family: 'Montserrat', sans-serif;
    max-width: 34ch;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 18px 0 24px;
    background-color: var(--bg-main);
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: transparent;
    border: 1px solid var(--text-main);
    cursor: pointer;
    padding: 0;
    opacity: 0.45;
    transition: transform 0.25s ease, opacity 0.25s ease, background-color 0.25s ease;
}

.dot.active {
    background-color: var(--text-main);
    opacity: 1;
    transform: scale(1.1);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 28px 20px 60px;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.mobile-title-break {
    display: inline;
}

.section-title p {
    font-size: 0.9rem;
    letter-spacing: 1px;
    opacity: 0.8;
}

.offer-heading {
    max-width: 720px;
    margin: 0 auto 56px;
    text-align: center;
}

.offer-kicker {
    margin: 0 0 12px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    opacity: 0.72;
}

.offer-heading h2 {
    font-size: clamp(2rem, 4vw, 3.1rem);
    margin-bottom: 14px;
}

.offer-heading p:last-child {
    margin: 0;
    opacity: 0.82;
}

.treatments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 60px 40px;
}

.item-card {
    position: relative;
    display: grid;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(20, 29, 38, 0.06);
    cursor: pointer;
}

.item-card-face {
    grid-area: 1 / 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 24px;
    transition: opacity 0.45s ease, transform 0.45s ease, visibility 0.45s ease;
}

.item-card-front {
    text-align: center;
}

.item-card-back {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    align-items: flex-start;
    justify-content: space-between;
    text-align: left;
    transform: translateY(10px);
    background-color: var(--bg-card);
}

.item-card.is-open .item-card-front {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: scale(0.985);
}

.item-card.is-open .item-card-back {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.item-image-wrapper {
    width: 100%;
    aspect-ratio: 1 / 1;
    background-color: var(--bg-card);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 25px;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.item-image-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(62, 65, 68, 0.08) 0%, rgba(62, 65, 68, 0.3) 100%),
        rgba(62, 65, 68, 0.22);
    pointer-events: none;
}

.item-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.item-image-wrapper:hover .item-image {
    transform: scale(1.03);
}

.badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #000;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 2;
}

.item-title {
    font-size: 1.3rem;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.item-meta {
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 1px;
    opacity: 0.7;
}

.item-desc {
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 15px;
    max-width: 90%;
}

.expand-btn {
    background: none;
    border: 1px solid var(--text-main);
    color: var(--text-main);
    padding: 8px 20px;
    width: min(220px, 100%);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
    margin-top: auto;
}

.item-card-front .expand-btn {
    align-self: center;
}

.expand-btn:hover {
    background-color: var(--text-main);
    color: var(--bg-main);
}

.item-details {
    text-align: left;
    width: 100%;
    font-size: 0.85rem;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    padding-right: 6px;
}

.item-details h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    color: var(--accent);
}

.item-details ul {
    padding-left: 20px;
    margin-top: 0;
    margin-bottom: 15px;
}

.item-details p {
    margin: 0 0 16px;
    line-height: 1.65;
}

.item-details li {
    margin-bottom: 4px;
}

.item-back-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
    letter-spacing: 0.04em;
}

.item-card-back .item-meta {
    margin-bottom: 18px;
}

.item-back-btn {
    margin-top: 24px;
    align-self: center;
}

.about-quote {
    margin: 0 0 22px;
    font-size: 1.12rem;
    line-height: 1.8;
    font-style: italic;
    opacity: 0.9;
}

.about-facts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 28px;
}

.about-fact,
.pricing-category,
.contact-link {
    border: 1px solid rgba(62, 65, 68, 0.12);
    border-radius: 18px;
    background-color: rgba(255, 255, 255, 0.42);
}

.about-fact {
    padding: 18px 20px;
}

.about-fact h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.about-fact p {
    margin: 0;
}

.info-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.info-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border: 1px solid var(--text-main);
    border-radius: 999px;
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: background-color 0.3s ease, color 0.3s ease, opacity 0.3s ease;
}

.info-links a:hover {
    background-color: var(--text-main);
    color: var(--bg-main);
}

.pricing-intro {
    margin-top: 8px;
}

.pricing-intro h3,
.pricing-packages h3 {
    font-size: 1.3rem;
    margin-bottom: 16px;
}

.choice-list {
    display: grid;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.choice-list li {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 14px 16px;
    border: 1px solid rgba(62, 65, 68, 0.1);
    border-radius: 16px;
    background-color: rgba(255, 255, 255, 0.36);
}

.choice-list strong,
.pricing-item-top strong,
.pricing-inline-list strong,
.contact-link strong {
    font-weight: 600;
}

.choice-list span {
    max-width: 24ch;
    text-align: right;
    opacity: 0.78;
}

.pricing-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 28px;
}

.pricing-columns--packages {
    margin-top: 18px;
}

.pricing-category {
    padding: 20px;
}

.pricing-category h3,
.pricing-category h4 {
    font-size: 1.18rem;
    margin-bottom: 16px;
}

.pricing-item + .pricing-item {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(62, 65, 68, 0.1);
}

.pricing-item-top,
.pricing-inline-list div,
.contact-link {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
}

.pricing-item-top span,
.pricing-inline-list span {
    line-height: 1.45;
}

.pricing-item p {
    margin: 8px 0 0;
    font-size: 0.92rem;
    line-height: 1.65;
    opacity: 0.82;
}

.pricing-meta {
    margin-top: 10px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.62;
}

.pricing-inline-list {
    display: grid;
    gap: 10px;
}

.pricing-inline-list div {
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(62, 65, 68, 0.08);
}

.pricing-inline-list div:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.pricing-packages {
    margin-top: 32px;
}

.pricing-note {
    margin: 18px 0 0;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.66;
}

.pricing-note span {
    display: block;
}

.pricing-note span + span {
    margin-top: 4px;
}

.contact-lead {
    margin-bottom: 24px;
    opacity: 0.82;
}

.contact-links {
    display: grid;
    gap: 12px;
    text-align: left;
    width: 100%;
}

.contact-link {
    padding: 16px 18px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.contact-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(20, 29, 38, 0.08);
}

.contact-link-label {
    display: block;
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    opacity: 0.62;
}

.contact-link strong {
    min-width: 0;
    overflow-wrap: anywhere;
    word-break: break-word;
    text-align: right;
}

html[data-theme="theme-3"] .about-fact,
html[data-theme="theme-3"] .pricing-category,
html[data-theme="theme-3"] .contact-link,
html[data-theme="theme-3"] .choice-list li {
    border-color: rgba(224, 228, 232, 0.08);
    background-color: rgba(8, 10, 13, 0.24);
}

html[data-theme="theme-3"] .pricing-item + .pricing-item,
html[data-theme="theme-3"] .pricing-inline-list div {
    border-color: rgba(224, 228, 232, 0.08);
}

@media (max-width: 768px) {
    .hero-slider {
        min-height: 420px;
        height: 60vh;
    }

    .site-header-shell {
        box-shadow: 0 8px 18px rgba(20, 29, 38, 0.08);
    }

    .top-bar {
        padding: 10px 16px;
        justify-content: center;
        font-size: 0.68rem;
    }

    .top-bar-links {
        width: 100%;
        justify-content: center;
        gap: 12px;
        flex-wrap: wrap;
    }

    .top-bar-actions {
        gap: 6px;
        margin-left: 0;
    }

    .hero-slide {
        justify-content: flex-start;
        align-items: flex-end;
    }

    .hero-text-overlay {
        margin: 0 20px 24px;
        max-width: none;
        text-align: left;
    }

    .hero-slide--facemodeling .hero-text-overlay,
    .hero-slide--kobido .hero-text-overlay,
    .hero-slide--acupuncture .hero-text-overlay,
    .hero-slide--breath .hero-text-overlay {
        margin: 0 20px 24px;
        max-width: none;
        text-align: left;
    }

    .hero-slide--breath .hero-slide-image {
        background-position: 78% center;
        --hero-start-x: -2.4%;
        --hero-end-x: 0.2%;
    }

    .hero-kicker {
        letter-spacing: 0.18em;
    }

    .mobile-title-break {
        display: block;
    }

    .item-card {
        cursor: pointer;
    }

    .item-card .expand-btn {
        display: none;
    }

    .main-nav {
        display: none;
    }

    header {
        justify-content: center;
        padding: 16px 20px;
    }

    .panel-stage {
        top: var(--sticky-shell-height, 98px);
        bottom: 0;
        overflow-x: hidden;
    }

    .info-panel {
        padding: 54px 20px 48px;
    }

    .info-panel--pricing {
        justify-content: flex-start;
    }

    .contact-panel {
        padding: 62px 20px 72px;
    }

    .contact-panel-card {
        width: min(360px, calc(100vw - 72px));
        padding: 26px 22px;
    }

    .info-panel-inner {
        padding: 28px 22px;
    }

    .about-facts,
    .pricing-columns {
        grid-template-columns: 1fr;
    }

    .choice-list li,
    .pricing-item-top,
    .pricing-inline-list div,
    .contact-link {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-link strong {
        text-align: left;
    }

    .choice-list span {
        max-width: none;
        text-align: left;
    }

    .info-links {
        flex-direction: column;
        align-items: center;
    }

    .info-links a {
        width: auto;
        min-width: min(260px, 100%);
        max-width: 100%;
    }
}

@keyframes hero-pan {
    0% {
        transform: scale(var(--hero-start-scale)) translate3d(var(--hero-start-x), var(--hero-start-y), 0);
    }

    100% {
        transform: scale(var(--hero-end-scale)) translate3d(var(--hero-end-x), var(--hero-end-y), 0);
    }
}

@keyframes panel-slide-in-left {
    0% {
        opacity: 0;
        transform: translateX(-72px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes panel-slide-in-right {
    0% {
        opacity: 0;
        transform: translateX(72px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes panel-fade-in {
    0% {
        opacity: 0;
        transform: translateY(18px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
