:root {
    --background: #ffffff;
    --foreground: #111111;
    --muted: #f4f4f4;
    --muted-strong: #ebebeb;
    --muted-foreground: #626262;
    --border: #dedede;
    --card: #ffffff;
    --card-elevated: #fafafa;
    --accent: #111111;
    --accent-foreground: #ffffff;
    --shadow: 0 18px 48px rgba(0, 0, 0, 0.08);
    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 26px;
    --header-height: 56px;
    color-scheme: light;
}

.dark {
    --background: #0a0a0a;
    --foreground: #ffffff;
    --muted: #171717;
    --muted-strong: #222222;
    --muted-foreground: #aaaaaa;
    --border: #303030;
    --card: #111111;
    --card-elevated: #181818;
    --accent: #ffffff;
    --accent-foreground: #0a0a0a;
    --shadow: 0 18px 48px rgba(0, 0, 0, 0.34);
    color-scheme: dark;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    background: var(--background);
    color: var(--foreground);
    font-family: "Open Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -webkit-tap-highlight-color: transparent;
    transition: background-color 220ms ease, color 220ms ease;
}

button,
a {
    font: inherit;
}

a {
    color: inherit;
}

button {
    color: inherit;
}

img,
svg {
    display: block;
}

[hidden] {
    display: none !important;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3,
.footer-brand,
.service-price,
.feature-price,
.package-price,
.duration {
    font-family: "Commissioner", system-ui, sans-serif;
}

h1,
h2,
h3 {
    line-height: 1.18;
    text-wrap: balance;
}

.shell {
    width: min(100% - 32px, 768px);
    margin-inline: auto;
}

.skip-link {
    position: fixed;
    z-index: 999;
    top: 12px;
    left: 12px;
    padding: 10px 14px;
    border-radius: 10px;
    background: var(--accent);
    color: var(--accent-foreground);
    text-decoration: none;
    transform: translateY(-160%);
    transition: transform 160ms ease;
}

.skip-link:focus {
    transform: translateY(0);
}

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

.site-header {
    position: sticky;
    z-index: 100;
    top: 0;
    border-bottom: 1px solid color-mix(in srgb, var(--border), transparent 50%);
    background: color-mix(in srgb, var(--background), transparent 15%);
    backdrop-filter: blur(12px);
}

.topbar {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 56px;
}

.control-button {
    display: grid;
    min-width: 44px;
    height: 44px;
    place-items: center;
    padding: 0 13px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: var(--background);
    cursor: pointer;
    transition: background-color 160ms ease, transform 160ms ease, border-color 160ms ease;
}

.control-button:hover {
    background: var(--muted);
    border-color: var(--muted-foreground);
}

.control-button:active {
    transform: scale(0.96);
}

.control-button svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.language-toggle {
    display: inline-flex;
    justify-content: center;
    min-width: 170px;
    gap: 8px;
    border-color: color-mix(in srgb, var(--border), transparent 70%);
    background: var(--muted);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0;
}

.language-caret {
    margin-left: 2px;
    color: var(--muted-foreground);
    font-size: 11px;
}

.language-flag {
    width: 18px;
    height: 18px;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 50%;
}

.language-flag img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#theme-toggle {
    position: absolute;
    right: 0;
}

.quick-nav {
    position: sticky;
    z-index: 90;
    top: 56px;
    padding-block: 8px;
    background: color-mix(in srgb, var(--background), transparent 10%);
    backdrop-filter: blur(12px);
}

.nav-scroll {
    display: flex;
    justify-content: safe center;
    gap: 6px;
    overflow-x: auto;
    padding: 6px;
    border: 1px solid color-mix(in srgb, var(--border), transparent 70%);
    border-radius: 999px;
    background: var(--muted);
    scrollbar-width: none;
    overscroll-behavior-inline: contain;
}

.modal-open {
    overflow: hidden;
}

.modal-backdrop {
    position: fixed;
    z-index: 200;
    inset: 0;
    background: rgba(0, 0, 0, 0.62);
    backdrop-filter: blur(5px);
}

.language-modal {
    position: fixed;
    z-index: 201;
    top: 50%;
    left: 50%;
    width: min(calc(100% - 32px), 400px);
    padding: 26px 20px 22px;
    border: 1px solid var(--border);
    border-radius: 26px;
    background: var(--card);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
    transform: translate(-50%, -50%);
}

.modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: var(--muted);
    color: var(--muted-foreground);
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
}

.modal-heading {
    padding-inline: 24px;
    text-align: center;
}

.modal-heading h2 {
    margin-bottom: 5px;
    font-size: 22px;
}

.modal-heading p {
    margin-bottom: 24px;
    color: var(--muted-foreground);
    font-size: 14px;
}

.modal-label {
    margin-bottom: 10px;
    color: var(--muted-foreground);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.language-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.language-option {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 11px;
    padding: 13px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: var(--background);
    color: var(--foreground);
    text-align: left;
    cursor: pointer;
}

.language-option.active {
    border-color: #2ba6ff;
    background: color-mix(in srgb, #2ba6ff, transparent 90%);
}

.language-option img {
    width: 24px;
    height: 24px;
    flex: 0 0 auto;
    border-radius: 50%;
    object-fit: cover;
}

.language-option span,
.language-option strong,
.language-option small {
    display: block;
}

.language-option strong {
    font-size: 13px;
}

.language-option small {
    margin-top: 2px;
    color: var(--muted-foreground);
    font-size: 11px;
}

.nav-scroll::-webkit-scrollbar {
    display: none;
}

.nav-chip {
    flex: 0 0 auto;
    padding: 7px 14px;
    border: 1px solid transparent;
    border-radius: 999px;
    color: var(--muted-foreground);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.35;
    text-decoration: none;
    white-space: nowrap;
    transition: background-color 160ms ease, color 160ms ease, border-color 160ms ease;
}

.nav-chip:hover {
    color: var(--foreground);
}

.nav-chip.active {
    border-color: transparent;
    background: var(--card);
    color: var(--foreground);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
}

.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-block: 32px 22px;
    text-align: center;
}

.logo-wrap {
    display: grid;
    width: 96px;
    height: 96px;
    place-items: center;
    overflow: hidden;
    margin-bottom: 16px;
    border: 2px solid var(--border);
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
}

.logo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.eyebrow,
.mini-eyebrow {
    margin-bottom: 10px;
    color: var(--muted-foreground);
    font-family: "Commissioner", system-ui, sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hero h1 {
    margin-bottom: 10px;
    font-size: clamp(30px, 6vw, 36px);
    letter-spacing: -0.035em;
}

.hero-subtitle {
    max-width: 520px;
    margin: 0 auto 16px;
    color: var(--muted-foreground);
    font-size: clamp(15px, 2.5vw, 18px);
}

.contact-line {
    margin-bottom: 4px;
    color: var(--muted-foreground);
    font-size: 14px;
}

.phone-link {
    display: inline-block;
    margin: 4px 0 20px;
    font-size: 15px;
    font-weight: 700;
    text-underline-offset: 4px;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 22px;
}

.social-button {
    display: grid;
    width: 32px;
    height: 32px;
    place-items: center;
    border: 0;
    background: transparent;
    text-decoration: none;
    transition: transform 160ms ease, background-color 160ms ease;
}

.social-button:hover {
    color: #2ba6ff;
    transform: translateY(-2px);
}

.social-button svg {
    width: 32px;
    height: 32px;
    fill: currentColor;
}

.primary-button {
    display: inline-flex;
    min-width: min(100%, 238px);
    min-height: 48px;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 999px;
    background: var(--accent);
    color: var(--accent-foreground);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: var(--shadow);
    transition: opacity 160ms ease, transform 160ms ease;
}

.primary-button:hover {
    opacity: 0.88;
}

.primary-button:active {
    transform: scale(0.98);
}

.hero-note {
    margin: 15px 0 0;
    color: var(--muted-foreground);
    font-size: 12px;
}

.hero-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border) 22%, var(--border) 78%, transparent);
}

.menu-content {
    margin-top: 16px;
    padding-bottom: 84px;
}

.menu-section {
    padding-top: clamp(64px, 10vw, 88px);
    scroll-margin-top: 128px;
}

.menu-section:first-child {
    padding-top: 24px;
}

.section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    margin-bottom: 30px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

.section-heading h2 {
    margin-bottom: 12px;
    font-size: clamp(30px, 6vw, 43px);
    letter-spacing: -0.055em;
}

.section-heading > p:last-child {
    max-width: 650px;
    margin-bottom: 0;
    color: var(--muted-foreground);
}

.section-blocks {
    display: grid;
    gap: 28px;
}

.menu-block {
    min-width: 0;
}

.block-title {
    margin-bottom: 14px;
    font-size: clamp(20px, 4vw, 26px);
    letter-spacing: -0.035em;
}

.service-list {
    display: grid;
    gap: 12px;
}

.service-card {
    padding: 18px;
    border: 1px solid color-mix(in srgb, var(--border), transparent 40%);
    border-radius: var(--radius-md);
    background: var(--muted);
}

.service-topline {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
}

.service-topline h3,
.service-card h3 {
    margin-bottom: 0;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -0.025em;
}

.service-card > p,
.lash-copy > p,
.feature-card p,
.experience-card > p {
    margin: 10px 0 0;
    color: var(--muted-foreground);
    font-size: 13px;
    line-height: 1.6;
}

.service-price,
.feature-price,
.package-price {
    flex: 0 0 auto;
    font-variant-numeric: tabular-nums;
    line-height: 1.25;
    text-align: right;
}

.service-price strong,
.feature-price strong,
.package-price strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    white-space: nowrap;
}

.service-price small,
.feature-price small,
.package-price small,
.combo-option small {
    margin-left: 2px;
    font-family: "Open Sans", system-ui, sans-serif;
    font-size: 0.66em;
    font-weight: 600;
}

.service-price span,
.feature-price span {
    display: block;
    max-width: 150px;
    margin-top: 2px;
    color: var(--muted-foreground);
    font-family: "Open Sans", system-ui, sans-serif;
    font-size: 10px;
    font-weight: 600;
    white-space: normal;
}

.service-tag {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    margin-top: 9px;
    padding: 3px 8px;
    border: 1px solid var(--border);
    border-radius: 999px;
    color: var(--muted-foreground);
    font-size: 10px;
    font-weight: 700;
    line-height: 1.3;
}

.feature-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: center;
    padding: clamp(22px, 5vw, 30px);
    border-radius: var(--radius-lg);
    background: var(--accent);
    color: var(--accent-foreground);
    box-shadow: var(--shadow);
}

.feature-card h3 {
    margin-bottom: 0;
    font-size: clamp(19px, 4vw, 25px);
}

.feature-card p,
.feature-card .mini-eyebrow {
    color: color-mix(in srgb, var(--accent-foreground), transparent 35%);
}

.feature-price strong {
    font-size: clamp(20px, 4vw, 28px);
}

.combo-block {
    padding: clamp(18px, 4vw, 28px);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--card-elevated);
}

.combo-block .block-title {
    margin-bottom: 20px;
    font-size: clamp(22px, 4.5vw, 28px);
}

.combo-choice-list {
    display: grid;
    gap: 12px;
}

.combo-choice-row {
    display: grid;
    grid-template-columns: minmax(205px, 1.12fr) minmax(0, 2fr);
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--card);
}

.combo-base {
    display: flex;
    min-width: 0;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 20px;
    border-right: 1px solid var(--border);
}

.combo-base h4 {
    margin: 0;
    font-family: "Commissioner", system-ui, sans-serif;
    font-size: 15px;
    line-height: 1.35;
}

.combo-base .service-tag {
    margin-top: 8px;
}

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

.combo-option {
    position: relative;
    display: flex;
    min-width: 0;
    min-height: 112px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 8px;
    text-align: center;
}

.combo-option + .combo-option {
    border-left: 1px solid var(--border);
}

.combo-option-name {
    display: block;
    min-height: 2.6em;
    color: var(--muted-foreground);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 1.3;
    text-transform: uppercase;
}

.combo-option strong {
    font-family: "Commissioner", system-ui, sans-serif;
    font-size: 15px;
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}

.combo-option.recommended {
    background: var(--muted);
    box-shadow: inset 0 3px 0 var(--foreground);
}

.choice-label {
    display: inline-flex;
    padding: 3px 7px;
    border: 1px solid var(--border);
    border-radius: 999px;
    color: var(--muted-foreground);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 1.2;
    text-transform: uppercase;
}

.detail-card,
.notice-card,
.policy-card {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
}

.detail-card {
    padding: 20px;
    background: var(--card-elevated);
}

.detail-card ul,
.policy-card ul,
.feature-list {
    margin: 0;
    padding-left: 19px;
    color: var(--muted-foreground);
    font-size: 13px;
}

.detail-card li + li,
.policy-card li + li,
.feature-list li + li {
    margin-top: 7px;
}

.notice-card,
.policy-card {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 15px;
    padding: 20px;
    background: var(--card);
}

.notice-mark,
.policy-icon {
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    border: 1px solid var(--border);
    border-radius: 50%;
    font-weight: 700;
}

.notice-card h3,
.policy-card h3 {
    margin-bottom: 7px;
    font-size: 15px;
}

.notice-card p {
    margin: 0;
    color: var(--muted-foreground);
    font-size: 13px;
}

.experience-grid,
.package-grid {
    display: grid;
    gap: 14px;
}

.experience-card,
.package-card {
    display: flex;
    min-height: 100%;
    flex-direction: column;
    justify-content: space-between;
    padding: clamp(22px, 5vw, 28px);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--card);
}

.duration {
    margin-bottom: 16px;
    font-size: 38px;
    font-weight: 500;
    letter-spacing: -0.06em;
}

.experience-card h3,
.package-card h3 {
    margin-bottom: 0;
    font-size: 20px;
}

.variant-list {
    display: grid;
    gap: 10px;
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid var(--border);
}

.variant-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    font-size: 12px;
}

.variant-row > div:first-child {
    min-width: 0;
}

.variant-row .service-tag {
    display: flex;
}

.feature-list {
    margin-top: 18px;
}

.package-card .service-tag {
    margin: 0 0 12px;
}

.package-price {
    margin-top: 17px;
    text-align: left;
}

.package-price strong {
    font-size: clamp(27px, 5vw, 36px);
}

.package-meta {
    margin: 7px 0 0;
    color: var(--muted-foreground);
    font-size: 12px;
}

.package-card.featured {
    border-color: transparent;
    background: var(--accent);
    color: var(--accent-foreground);
    box-shadow: var(--shadow);
}

.package-card.featured .service-tag,
.package-card.featured .package-meta,
.package-card.featured .feature-list {
    color: color-mix(in srgb, var(--accent-foreground), transparent 30%);
    border-color: color-mix(in srgb, var(--accent-foreground), transparent 70%);
}

.lash-grid {
    display: grid;
    gap: 14px;
}

.lash-card {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--card);
}

.lash-image {
    position: relative;
    display: grid;
    aspect-ratio: 16 / 10.3;
    place-items: center;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
    background:
        linear-gradient(135deg, transparent 46%, color-mix(in srgb, var(--border), transparent 15%) 47%, color-mix(in srgb, var(--border), transparent 15%) 53%, transparent 54%),
        var(--muted);
    background-size: 22px 22px;
}

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

.lash-image span {
    max-width: 190px;
    padding: 7px 10px;
    border-radius: 999px;
    background: color-mix(in srgb, var(--background), transparent 8%);
    color: var(--muted-foreground);
    font-size: 10px;
    font-weight: 700;
    text-align: center;
}

.image-fallback {
    display: none;
}

.lash-image.load-error img {
    display: none;
}

.lash-image.load-error .image-fallback {
    display: block;
}

.lash-copy {
    padding: 17px;
}

.lash-copy h3 {
    margin-bottom: 0;
    font-size: 16px;
}

.site-footer {
    background: color-mix(in srgb, var(--muted), transparent 60%);
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 124px;
    padding-block: 30px;
}

.footer-brand {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.04em;
}

.footer-inner p:last-child,
.footer-inner a {
    margin-bottom: 0;
    color: var(--muted-foreground);
    font-size: 18px;
}

.footer-inner a {
    color: var(--foreground);
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
}

.mobile-actions {
    position: fixed;
    z-index: 90;
    right: 12px;
    bottom: max(12px, env(safe-area-inset-bottom));
    left: 12px;
    display: none;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 8px;
    padding: 7px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: color-mix(in srgb, var(--background), transparent 7%);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.mobile-actions a {
    display: flex;
    min-height: 45px;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.mobile-actions a:first-child {
    background: var(--muted);
}

.mobile-actions a:last-child {
    background: var(--accent);
    color: var(--accent-foreground);
}

.noscript-message {
    position: fixed;
    z-index: 999;
    right: 12px;
    bottom: 12px;
    left: 12px;
    padding: 14px;
    border-radius: 12px;
    background: #fff2cc;
    color: #1a1a1a;
    text-align: center;
}

:focus-visible {
    outline: 3px solid color-mix(in srgb, var(--foreground), transparent 55%);
    outline-offset: 3px;
}

@media (max-width: 649px) {
    .combo-block {
        padding: 16px;
    }

    .combo-block .block-title {
        margin-bottom: 16px;
    }

    .combo-choice-row {
        grid-template-columns: 1fr;
    }

    .combo-base {
        padding: 15px 16px;
        border-right: 0;
        border-bottom: 1px solid var(--border);
    }

    .combo-option {
        min-height: 104px;
        padding: 14px 5px;
    }

    .combo-option strong {
        font-size: 14px;
    }
}

@media (min-width: 650px) {
    .section-heading {
        grid-template-columns: minmax(240px, 0.85fr) minmax(300px, 1.15fr);
        column-gap: 44px;
    }

    .section-heading .eyebrow {
        grid-column: 1 / -1;
    }

    .section-heading h2,
    .section-heading > p:last-child {
        margin-bottom: 0;
    }

    .service-list.compact,
    .experience-grid,
    .package-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

@media (max-width: 480px) {
    .shell {
        width: min(100% - 24px, 768px);
    }

    .feature-card {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .feature-price {
        text-align: left;
    }

    .service-card {
        padding: 16px;
    }

    .service-topline {
        gap: 10px;
    }

    .service-topline h3 {
        font-size: 15px;
    }

    .service-price strong {
        font-size: 14px;
    }

    .footer-inner {
        align-items: center;
        flex-direction: row;
        justify-content: center;
    }

    .footer-inner span {
        font-size: 12px;
    }

    .footer-inner a {
        font-size: 17px;
    }
}

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

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}
