:root {
    color-scheme: dark;
    --ink: #2d1324;
    --ink-deep: #1e0c19;
    --wine: #713459;
    --rose: #d68aa8;
    --rose-bright: #ecabc3;
    --blush: #f7dce6;
    --cream: #fff8f5;
    --green: #a8e6bd;
    --muted: rgba(255, 248, 245, 0.67);
    --line: rgba(255, 255, 255, 0.11);
    --panel: rgba(255, 255, 255, 0.065);
    --app-bg: #2d1324;
    --shadow: 0 22px 50px rgba(13, 4, 10, 0.28);
}

* {
    box-sizing: border-box;
}

html {
    min-width: 320px;
    min-height: 100%;
    background: var(--app-bg);
}

body {
    min-width: 320px;
    min-height: 100vh;
    min-height: 100dvh;
    margin: 0;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 7%, rgba(214, 138, 168, 0.28), transparent 30%),
        radial-gradient(circle at 93% 64%, rgba(151, 68, 111, 0.28), transparent 35%),
        linear-gradient(155deg, #38182f 0%, var(--ink) 52%, var(--ink-deep) 100%);
    color: var(--cream);
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    -webkit-font-smoothing: antialiased;
}

.site-loader {
    position: fixed;
    z-index: 9999;
    inset: 0;
    display: grid;
    place-content: center;
    justify-items: center;
    gap: 22px;
    padding: 24px;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 38%, rgba(236, 171, 195, 0.2), transparent 28%),
        radial-gradient(circle at 12% 8%, rgba(214, 138, 168, 0.2), transparent 32%),
        linear-gradient(155deg, #38182f 0%, var(--ink) 52%, var(--ink-deep) 100%);
    opacity: 1;
    visibility: visible;
    transition: opacity 420ms ease, visibility 420ms ease;
}

.site-loader::before,
.site-loader::after {
    position: absolute;
    width: 240px;
    height: 240px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    content: "";
}

.site-loader::before {
    top: -130px;
    right: -90px;
}

.site-loader::after {
    bottom: -160px;
    left: -70px;
}

.site-is-ready .site-loader {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.site-is-loading .app {
    opacity: 0;
    transform: scale(0.985);
}

.site-is-ready .app {
    opacity: 1;
    transform: none;
}

.loader-emblem {
    position: relative;
    display: grid;
    width: 112px;
    height: 112px;
    place-items: center;
}

.loader-orbit {
    position: absolute;
    border-radius: 50%;
}

.loader-orbit-outer {
    inset: 0;
    border: 1px solid rgba(255, 248, 245, 0.13);
    border-top-color: var(--rose-bright);
    border-right-color: rgba(236, 171, 195, 0.5);
    animation: loader-spin 1.7s linear infinite;
}

.loader-orbit-inner {
    inset: 12px;
    border: 1px solid rgba(255, 248, 245, 0.08);
    border-bottom-color: rgba(255, 248, 245, 0.72);
    animation: loader-spin-reverse 2.2s linear infinite;
}

.loader-monogram {
    display: grid;
    width: 66px;
    height: 66px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    background: linear-gradient(145deg, rgba(236, 171, 195, 0.96), rgba(113, 52, 89, 0.94));
    box-shadow: 0 16px 36px rgba(13, 4, 10, 0.34);
    color: var(--cream);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 34px;
    font-style: italic;
}

.loader-spark {
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--cream);
    box-shadow: 0 0 12px rgba(255, 248, 245, 0.85);
    animation: loader-pulse 1.3s ease-in-out infinite alternate;
}

.loader-spark-one {
    top: 9px;
    right: 13px;
}

.loader-spark-two {
    bottom: 14px;
    left: 8px;
    width: 3px;
    height: 3px;
    animation-delay: 420ms;
}

.loader-copy {
    text-align: center;
}

.loader-copy strong,
.loader-copy span {
    display: block;
}

.loader-copy strong {
    color: var(--cream);
    font-size: 14px;
    letter-spacing: 0.27em;
}

.loader-copy span {
    margin-top: 7px;
    color: var(--muted);
    font-size: 10px;
    letter-spacing: 0.08em;
}

.loader-progress {
    width: 124px;
    height: 2px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
}

.loader-progress span {
    display: block;
    width: 44%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, transparent, var(--rose-bright), var(--cream));
    animation: loader-progress 1.15s ease-in-out infinite;
}

.loader-noscript {
    max-width: 260px;
    margin: 0;
    color: var(--cream);
    font-size: 11px;
    line-height: 1.5;
    text-align: center;
}

@keyframes loader-spin {
    to { transform: rotate(360deg); }
}

@keyframes loader-spin-reverse {
    to { transform: rotate(-360deg); }
}

@keyframes loader-pulse {
    from { opacity: 0.35; transform: scale(0.75); }
    to { opacity: 1; transform: scale(1.3); }
}

@keyframes loader-progress {
    from { transform: translateX(-110%); }
    to { transform: translateX(255%); }
}

button,
input,
textarea {
    font: inherit;
}

button,
a,
label {
    -webkit-tap-highlight-color: transparent;
}

button {
    color: inherit;
}

.app {
    position: relative;
    isolation: isolate;
    display: flex;
    width: min(100%, 480px);
    height: 100vh;
    height: 100dvh;
    margin: 0 auto;
    flex-direction: column;
    overflow: hidden;
    background:
        radial-gradient(circle at 85% 18%, rgba(255, 255, 255, 0.035), transparent 27%);
    transition: opacity 380ms ease, transform 420ms cubic-bezier(.22, .8, .26, 1);
}

.app::before,
.app::after {
    position: absolute;
    z-index: -1;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 50%;
    content: "";
    pointer-events: none;
}

.app::before {
    top: 14%;
    right: -175px;
    width: 350px;
    height: 350px;
}

.app::after {
    right: -125px;
    bottom: -165px;
    width: 330px;
    height: 330px;
}

.topbar {
    position: relative;
    z-index: 8;
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: space-between;
    min-height: 68px;
    padding:
        max(14px, env(safe-area-inset-top))
        20px
        10px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.brand-mark {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
    color: var(--blush);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 22px;
    font-style: italic;
}

.brand-name,
.brand-caption {
    display: block;
    text-align: left;
}

.brand-name {
    font-size: 12px;
    font-weight: 750;
    letter-spacing: 0.18em;
    line-height: 1;
}

.brand-caption {
    margin-top: 5px;
    color: var(--muted);
    font-size: 9px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.status {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 10px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.055);
    color: rgba(255, 255, 255, 0.75);
    font-size: 10px;
    font-weight: 650;
}

.status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 4px rgba(168, 230, 189, 0.1);
}

.progress {
    display: none;
    align-items: center;
    gap: 10px;
}

.progress.is-visible {
    display: flex;
}

.progress-copy {
    color: var(--muted);
    font-size: 10px;
    font-weight: 650;
    letter-spacing: 0.04em;
}

.progress-dots {
    display: flex;
    gap: 4px;
}

.progress-dot {
    width: 18px;
    height: 4px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    transition: width 0.25s ease, background 0.25s ease;
}

.progress-dot.is-active {
    width: 29px;
    background: var(--rose);
}

.stage {
    position: relative;
    flex: 1 1 auto;
    min-height: 0;
}

.screen {
    position: absolute;
    inset: 0;
    display: flex;
    visibility: hidden;
    flex-direction: column;
    transform: translateX(28px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.28s ease, transform 0.32s cubic-bezier(.22, .8, .26, 1), visibility 0.32s;
}

.screen.is-active {
    visibility: visible;
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
}

html.reveal-enabled [data-reveal] {
    opacity: 0;
    transform: translate3d(0, 24px, 0) scale(0.985);
    filter: blur(3px);
    transition:
        opacity 680ms cubic-bezier(.22, .75, .2, 1),
        transform 760ms cubic-bezier(.22, .75, .2, 1),
        filter 680ms ease;
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform, filter;
}

html.reveal-enabled [data-reveal].is-revealed {
    opacity: 1;
    transform: none;
    filter: none;
    will-change: auto;
}

.screen.is-exiting {
    transform: translateX(-24px);
}

.scroll-area {
    flex: 1 1 auto;
    min-height: 0;
    padding: 10px 20px 26px;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-width: none;
}

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

.screen-heading {
    margin-bottom: 23px;
}

.back-button {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin: 0 0 21px;
    padding: 0;
    border: 0;
    background: transparent;
    color: rgba(255, 248, 245, 0.69);
    font-size: 12px;
    font-weight: 650;
    cursor: pointer;
}

.back-arrow {
    font-size: 18px;
    line-height: 1;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 0 0 10px;
    color: var(--blush);
    font-size: 10px;
    font-weight: 750;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.eyebrow::before {
    width: 27px;
    height: 1px;
    background: currentColor;
    content: "";
}

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

h1,
h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
    letter-spacing: -0.04em;
    text-wrap: balance;
}

h1 {
    margin-bottom: 0;
    font-size: clamp(37px, 10.4vw, 50px);
    line-height: 0.99;
}

h2 {
    margin-bottom: 0;
    font-size: clamp(31px, 8.5vw, 41px);
    line-height: 1.02;
}

h1 em,
h2 em {
    color: var(--rose);
    font-weight: 400;
}

.subtitle {
    max-width: 390px;
    margin: 14px 0 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.55;
}

.button {
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 0 18px;
    border: 0;
    border-radius: 18px;
    font-size: 13px;
    font-weight: 750;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
}

.button:active:not(:disabled) {
    transform: scale(0.978);
}

.button:focus-visible,
.service-toggle:focus-visible,
.variant-chip:focus-visible,
.date-card:focus-visible,
.time-chip:focus-visible,
.back-button:focus-visible,
.brand:focus-visible,
.link-button:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.44);
    outline-offset: 3px;
}

.button-primary {
    background: var(--cream);
    box-shadow: 0 15px 32px rgba(10, 3, 8, 0.27);
    color: var(--ink);
}

.button-secondary {
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.07);
    color: rgba(255, 248, 245, 0.88);
    backdrop-filter: blur(12px);
}

.button:disabled {
    box-shadow: none;
    cursor: not-allowed;
    opacity: 0.43;
}

.button.is-loading {
    cursor: wait;
}

.arrow {
    font-size: 18px;
    font-weight: 400;
    line-height: 1;
}

/* Welcome */
.home-screen {
    padding: 0;
}

.home-scroll {
    display: flex;
    flex-direction: column;
    padding-top: 0;
    padding-bottom: 30px;
}

.home-visual-column,
.home-copy-column,
.home-lower-column {
    display: block;
    min-width: 0;
}

.hero-media {
    position: relative;
    aspect-ratio: 4 / 5;
    margin: 4px 0 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 24px 54px rgba(13, 4, 10, 0.34);
}

.hero-media::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 58%, rgba(30, 12, 25, 0.58));
    content: "";
    pointer-events: none;
}

.hero-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 48%;
}

.hero-media figcaption {
    position: absolute;
    z-index: 1;
    right: 14px;
    bottom: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 10px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    background: rgba(45, 19, 36, 0.58);
    color: rgba(255, 248, 245, 0.86);
    font-size: 9px;
    letter-spacing: 0.04em;
    backdrop-filter: blur(12px);
}

.home-content {
    position: relative;
    z-index: 2;
}

.home-content .subtitle {
    margin-top: 13px;
}

.home-info-section,
.visit-card,
.home-note-card {
    margin-top: 34px;
}

.home-section-heading h2,
.visit-card h2 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(29px, 8vw, 38px);
    font-weight: 400;
    line-height: 1.02;
    letter-spacing: -0.035em;
}

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

.home-feature-card {
    min-height: 156px;
    padding: 15px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035));
}

.feature-number {
    display: inline-grid;
    width: 31px;
    height: 31px;
    place-items: center;
    border-radius: 50%;
    background: rgba(214, 138, 168, 0.12);
    color: var(--rose-bright);
    font-family: Georgia, serif;
    font-size: 11px;
}

.home-feature-card h3 {
    margin: 20px 0 7px;
    color: var(--cream);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 17px;
    font-weight: 400;
}

.home-feature-card p {
    margin: 0;
    color: var(--muted);
    font-size: 10px;
    line-height: 1.5;
}

.visit-card {
    padding: 20px;
    border: 1px solid rgba(214, 138, 168, 0.24);
    border-radius: 25px;
    background: linear-gradient(145deg, rgba(214, 138, 168, 0.13), rgba(255, 255, 255, 0.045));
}

.visit-steps {
    display: grid;
    gap: 0;
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
}

.visit-steps li {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 2px 10px;
    padding: 13px 0;
    border-top: 1px solid var(--line);
}

.visit-steps li > span {
    grid-row: 1 / 3;
    color: var(--rose-bright);
    font-family: Georgia, serif;
    font-size: 23px;
}

.visit-steps strong,
.visit-steps small {
    display: block;
}

.visit-steps strong {
    color: var(--cream);
    font-size: 11px;
}

.visit-steps small {
    color: var(--muted);
    font-size: 9px;
}

.home-note-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.055);
}

.home-note-card p {
    margin: 0;
    color: var(--muted);
    font-size: 10px;
    line-height: 1.55;
}

.home-note-card strong {
    color: var(--cream);
}

.proof {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 16px;
    padding: 11px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.proof-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 248, 245, 0.77);
    font-size: 10px;
    font-weight: 650;
    white-space: nowrap;
}

.proof-icon {
    display: grid;
    width: 25px;
    height: 25px;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: var(--blush);
    font-size: 10px;
}

.home-actions {
    position: relative;
    z-index: 6;
    display: grid;
    grid-template-columns: 1.45fr 1fr;
    gap: 10px;
    flex: 0 0 auto;
    margin: 0;
    padding: 12px 20px max(17px, env(safe-area-inset-bottom));
    border-top: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(45, 19, 36, 0.88), rgba(30, 12, 25, 0.98));
    box-shadow: 0 -15px 35px rgba(22, 7, 17, 0.18);
    backdrop-filter: blur(20px);
}

.booking-reminder {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 7px 14px;
    padding: 13px 14px;
    border: 1px solid rgba(236, 171, 195, 0.3);
    border-radius: 17px;
    background:
        radial-gradient(circle at 90% 5%, rgba(236, 171, 195, 0.16), transparent 38%),
        linear-gradient(145deg, rgba(214, 138, 168, 0.14), rgba(255, 255, 255, 0.055));
    box-shadow: 0 12px 30px rgba(13, 4, 10, 0.2);
    animation: booking-reminder-in 560ms cubic-bezier(.22, .75, .2, 1) both;
}

.booking-reminder[hidden] {
    display: none;
}

.booking-reminder-heading {
    display: flex;
    grid-column: 1 / -1;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.booking-reminder-heading strong {
    color: var(--cream);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 14px;
    font-weight: 400;
    text-align: right;
}

.booking-reminder-kicker {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--rose-bright);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.booking-reminder-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--rose-bright);
    box-shadow: 0 0 0 4px rgba(236, 171, 195, 0.1);
}

.booking-reminder-services {
    min-width: 0;
    margin: 0;
    overflow: hidden;
    color: rgba(255, 248, 245, 0.75);
    font-size: 9px;
    line-height: 1.45;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.booking-reminder-meta {
    display: flex;
    grid-column: 1 / -1;
    align-items: center;
    gap: 8px 12px;
    color: var(--blush);
    font-size: 9px;
    font-weight: 700;
}

.booking-reminder-meta small {
    margin-left: auto;
    color: rgba(255, 248, 245, 0.42);
    font-size: 8px;
    font-weight: 500;
}

.booking-reminder-room {
    padding: 4px 7px;
    border-radius: 999px;
    background: rgba(236, 171, 195, 0.12);
    color: var(--cream);
}

@keyframes booking-reminder-in {
    from { opacity: 0; transform: translateY(12px) scale(0.985); }
    to { opacity: 1; transform: none; }
}

/* Portfolio */
.portfolio-scroll {
    padding-bottom: 36px;
}

.portfolio-heading {
    margin-bottom: 18px;
}

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

.portfolio-card {
    position: relative;
    aspect-ratio: 1;
    padding: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--panel);
    cursor: zoom-in;
}

.portfolio-card::after {
    position: absolute;
    inset: auto 8px 8px auto;
    display: grid;
    width: 27px;
    height: 27px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.17);
    border-radius: 50%;
    background: rgba(30, 12, 25, 0.62);
    color: var(--cream);
    content: "+";
    font-size: 15px;
    backdrop-filter: blur(10px);
}

.portfolio-card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 320ms ease;
}

.portfolio-card:hover img {
    transform: scale(1.035);
}

.portfolio-message {
    grid-column: 1 / -1;
    margin: 0;
    padding: 34px 20px;
    border: 1px dashed var(--line);
    border-radius: 20px;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.55;
    text-align: center;
}

.portfolio-retry {
    width: 100%;
    background: rgba(255, 255, 255, 0.055);
    cursor: pointer;
}

.portfolio-lightbox {
    width: min(94vw, 680px);
    height: min(90vh, 860px);
    height: min(90dvh, 860px);
    padding: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.17);
    border-radius: 24px;
    background: rgba(20, 7, 16, 0.96);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.58);
}

.portfolio-lightbox[open] {
    display: grid;
    place-items: center;
}

.portfolio-lightbox::backdrop {
    background: rgba(10, 3, 8, 0.82);
    backdrop-filter: blur(12px);
}

.portfolio-lightbox img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    z-index: 2;
    top: 12px;
    right: 12px;
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    padding: 0 0 3px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    background: rgba(30, 12, 25, 0.72);
    color: var(--cream);
    font-size: 25px;
    cursor: pointer;
    backdrop-filter: blur(12px);
}

/* Services */
.service-helper {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 14px;
    padding: 7px 9px;
    border: 1px solid rgba(214, 138, 168, 0.18);
    border-radius: 999px;
    background: rgba(214, 138, 168, 0.08);
    color: var(--blush);
    font-size: 10px;
    font-weight: 650;
}

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

.service-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 19px;
    background: var(--panel);
    transition: border-color 0.22s ease, background 0.22s ease, transform 0.18s ease;
    backdrop-filter: blur(14px);
}

.service-card.is-selected {
    border-color: rgba(236, 171, 195, 0.58);
    background: linear-gradient(135deg, rgba(214, 138, 168, 0.16), rgba(255, 255, 255, 0.07));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.service-toggle {
    display: grid;
    width: 100%;
    grid-template-columns: 41px minmax(0, 1fr) auto;
    align-items: center;
    gap: 11px;
    padding: 14px;
    border: 0;
    background: transparent;
    text-align: left;
    cursor: pointer;
}

.service-index {
    display: grid;
    width: 41px;
    height: 41px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.055);
    color: var(--rose-bright);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 14px;
    transition: background 0.22s ease, color 0.22s ease;
}

.service-card.is-selected .service-index {
    background: var(--cream);
    color: var(--wine);
}

.service-name {
    display: block;
    font-size: 13px;
    font-weight: 680;
    line-height: 1.3;
}

.service-meta {
    display: block;
    margin-top: 4px;
    color: var(--muted);
    font-size: 10px;
    line-height: 1.35;
}

.service-price-wrap {
    display: flex;
    min-width: 67px;
    max-width: 118px;
    align-items: flex-end;
    flex-direction: column;
    gap: 7px;
}

.service-price {
    color: var(--blush);
    font-size: 12px;
    font-weight: 750;
    line-height: 1.25;
    text-align: right;
}

.check {
    display: grid;
    width: 20px;
    height: 20px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 7px;
    color: transparent;
    font-size: 12px;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.service-card.is-selected .check {
    border-color: var(--cream);
    background: var(--cream);
    color: var(--wine);
}

.variant-options {
    display: none;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
    padding: 0 14px 14px 66px;
    animation: reveal 0.2s ease both;
}

.service-card.is-selected .variant-options {
    display: grid;
}

.variant-chip {
    min-width: 0;
    min-height: 48px;
    padding: 8px 5px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 11px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--muted);
    font-size: 9px;
    font-weight: 650;
    text-align: center;
    cursor: pointer;
}

.variant-chip span,
.variant-chip strong {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
}

.variant-chip strong {
    margin-top: 4px;
    color: inherit;
    font-size: 9px;
    white-space: nowrap;
}

.variant-chip.is-selected {
    border-color: rgba(255, 248, 245, 0.72);
    background: var(--cream);
    color: var(--ink);
}

.design-note {
    display: flex;
    gap: 11px;
    margin-top: 14px;
    padding: 14px;
    border: 1px dashed rgba(214, 138, 168, 0.32);
    border-radius: 17px;
    background: rgba(214, 138, 168, 0.06);
    color: var(--muted);
    font-size: 11px;
    line-height: 1.45;
}

.note-heart {
    color: var(--rose-bright);
    font-size: 16px;
}

.dock {
    position: relative;
    z-index: 6;
    flex: 0 0 auto;
    padding: 12px 20px max(17px, env(safe-area-inset-bottom));
    border-top: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(45, 19, 36, 0.88), rgba(30, 12, 25, 0.98));
    box-shadow: 0 -15px 35px rgba(22, 7, 17, 0.18);
    backdrop-filter: blur(20px);
}

.selection-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
}

.summary-label {
    color: var(--muted);
    font-size: 10px;
}

.summary-label strong {
    display: block;
    margin-top: 3px;
    color: var(--cream);
    font-size: 12px;
}

.summary-total {
    max-width: 64%;
    color: var(--blush);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(17px, 5.6vw, 24px);
    line-height: 1.08;
    text-align: right;
}

.dock .button {
    width: 100%;
}

/* Booking */
.booking-summary {
    margin-bottom: 22px;
    padding: 15px;
    border: 1px solid rgba(214, 138, 168, 0.23);
    border-radius: 19px;
    background: linear-gradient(135deg, rgba(214, 138, 168, 0.12), rgba(255, 255, 255, 0.055));
}

.booking-summary-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.booking-summary-title {
    margin: 0;
    font-size: 11px;
    font-weight: 750;
}

.link-button {
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--rose-bright);
    font-size: 10px;
    font-weight: 700;
    cursor: pointer;
}

.selected-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 11px;
}

.selected-chip {
    padding: 6px 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.055);
    color: rgba(255, 248, 245, 0.77);
    font-size: 9px;
    line-height: 1.3;
}

.booking-total {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-top: 13px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    color: var(--muted);
    font-size: 10px;
}

.booking-total strong {
    color: var(--cream);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 21px;
    font-weight: 400;
}

.form-section {
    margin: 0 0 22px;
    padding: 0;
    border: 0;
}

.form-section legend {
    width: 100%;
    margin-bottom: 12px;
    padding: 0;
    color: var(--cream);
    font-size: 12px;
    font-weight: 750;
}

.section-hint {
    display: block;
    margin-top: 4px;
    color: var(--muted);
    font-size: 9px;
    font-weight: 450;
}

.date-list {
    display: flex;
    gap: 8px;
    margin-right: -20px;
    padding: 2px 20px 4px 0;
    overflow-x: auto;
    scrollbar-width: none;
    scroll-snap-type: x proximity;
}

.date-list::-webkit-scrollbar {
    display: none;
}

.calendar-message {
    width: 100%;
    min-height: 58px;
    margin: 0;
    padding: 16px;
    border: 1px dashed rgba(255, 255, 255, 0.14);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.035);
    color: var(--muted);
    font: inherit;
    font-size: 11px;
    line-height: 1.45;
    text-align: center;
}

.calendar-retry {
    color: var(--cream);
    cursor: pointer;
}

.calendar-retry:hover {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.date-card {
    flex: 0 0 68px;
    min-height: 78px;
    padding: 9px 6px;
    border: 1px solid var(--line);
    border-radius: 17px;
    background: var(--panel);
    color: var(--muted);
    text-align: center;
    scroll-snap-align: start;
    cursor: pointer;
}

.date-card span,
.date-card strong {
    display: block;
}

.date-card .weekday {
    font-size: 9px;
    text-transform: uppercase;
}

.date-card strong {
    margin: 4px 0 2px;
    color: var(--cream);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 24px;
    font-weight: 400;
}

.date-card .month {
    font-size: 9px;
}

.date-card.is-selected {
    border-color: var(--cream);
    background: var(--cream);
    box-shadow: 0 10px 22px rgba(13, 4, 10, 0.2);
    color: rgba(45, 19, 36, 0.6);
}

.date-card.is-selected strong {
    color: var(--ink);
}

.time-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 7px;
}

.time-chip {
    min-height: 40px;
    padding: 0 5px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--panel);
    color: rgba(255, 248, 245, 0.79);
    font-size: 11px;
    font-weight: 650;
    cursor: pointer;
}

.time-chip.is-selected {
    border-color: var(--cream);
    background: var(--cream);
    color: var(--ink);
}

.time-list .calendar-message {
    grid-column: 1 / -1;
}

.fields {
    display: grid;
    gap: 10px;
}

.field {
    position: relative;
}

.field label {
    display: block;
    margin: 0 0 7px 2px;
    color: var(--muted);
    font-size: 10px;
    font-weight: 650;
}

.field input,
.field textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 15px;
    outline: 0;
    background: rgba(255, 255, 255, 0.065);
    color: var(--cream);
    font-size: 13px;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
    -webkit-appearance: none;
}

.field input {
    height: 50px;
    padding: 0 14px;
}

.field textarea {
    min-height: 83px;
    padding: 13px 14px;
    resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
    color: rgba(255, 248, 245, 0.32);
}

.field input:focus,
.field textarea:focus {
    border-color: rgba(236, 171, 195, 0.65);
    background: rgba(255, 255, 255, 0.085);
    box-shadow: 0 0 0 3px rgba(214, 138, 168, 0.1);
}

.field input:invalid:not(:placeholder-shown) {
    border-color: rgba(255, 157, 166, 0.6);
}

.privacy-note {
    margin: 10px 0 0;
    color: rgba(255, 248, 245, 0.42);
    font-size: 9px;
    line-height: 1.45;
    text-align: center;
}

.booking-dock .validation-copy {
    min-height: 13px;
    margin: 0 0 7px;
    color: var(--muted);
    font-size: 9px;
    text-align: center;
}

/* Success */
.success-screen {
    align-items: center;
    justify-content: center;
    padding: 28px 22px max(28px, env(safe-area-inset-bottom));
    text-align: center;
}

.success-mark {
    position: relative;
    display: grid;
    width: 116px;
    height: 116px;
    margin-bottom: 29px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(214, 138, 168, 0.2), rgba(255, 255, 255, 0.035) 62%, transparent 63%);
    box-shadow: 0 25px 55px rgba(13, 4, 10, 0.25);
}

.success-mark::before {
    position: absolute;
    inset: -16px;
    border: 1px dashed rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    content: "";
    animation: orbit 22s linear infinite;
}

.success-check {
    display: grid;
    width: 57px;
    height: 57px;
    place-items: center;
    border-radius: 50%;
    background: var(--cream);
    box-shadow: 0 10px 24px rgba(13, 4, 10, 0.23);
    color: var(--wine);
    font-size: 26px;
}

.success-screen h2 {
    max-width: 370px;
}

.success-copy {
    max-width: 345px;
    margin: 14px auto 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.55;
}

.success-copy strong {
    color: var(--cream);
    font-weight: 750;
}

.success-copy a {
    color: var(--rose-bright);
    font-weight: 750;
    text-decoration: none;
    border-bottom: 1px solid rgba(236, 171, 195, 0.45);
}

.success-copy a:hover {
    border-bottom-color: currentColor;
}

.success-details {
    width: 100%;
    margin: 24px 0;
    padding: 15px;
    border: 1px solid var(--line);
    border-radius: 19px;
    background: var(--panel);
    text-align: left;
}

.detail-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding: 9px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.075);
    color: var(--muted);
    font-size: 10px;
}

.detail-row:first-child {
    padding-top: 0;
}

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

.detail-row strong {
    max-width: 68%;
    color: var(--cream);
    font-size: 11px;
    font-weight: 680;
    line-height: 1.4;
    text-align: right;
}

.success-actions {
    display: grid;
    width: 100%;
    grid-template-columns: 1.25fr 1fr;
    gap: 9px;
}

.toast {
    position: fixed;
    z-index: 30;
    bottom: max(22px, env(safe-area-inset-bottom));
    left: 50%;
    width: max-content;
    max-width: calc(100% - 40px);
    padding: 12px 16px;
    transform: translate(-50%, 18px);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 14px;
    background: rgba(30, 12, 25, 0.94);
    box-shadow: var(--shadow);
    color: var(--cream);
    font-size: 11px;
    font-weight: 650;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.23s ease, transform 0.23s ease;
    backdrop-filter: blur(14px);
}

.toast.is-visible {
    transform: translate(-50%, 0);
    opacity: 1;
}

@keyframes reveal {
    from { transform: translateY(-5px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@media (max-height: 740px) {
    .topbar {
        min-height: 60px;
        padding-bottom: 7px;
    }

    h1 {
        font-size: clamp(34px, 9.5vw, 43px);
    }

    .home-content .subtitle {
        margin-top: 9px;
    }

    .proof {
        margin-top: 10px;
        padding: 8px 0;
    }

    .button {
        min-height: 49px;
    }
}

@media (max-width: 360px) {
    .topbar,
    .scroll-area,
    .dock,
    .home-actions {
        padding-right: 16px;
        padding-left: 16px;
    }

    .brand-caption {
        display: none;
    }

    .status {
        padding: 7px 8px;
    }

    .proof-item {
        gap: 4px;
        font-size: 9px;
    }

    .proof-icon {
        width: 22px;
        height: 22px;
    }

    .home-actions {
        grid-template-columns: 1.15fr 1fr;
        gap: 7px;
    }

    .home-actions .button {
        padding-right: 10px;
        padding-left: 10px;
        font-size: 10px;
    }

    .service-toggle {
        grid-template-columns: 36px minmax(0, 1fr) auto;
        gap: 9px;
        padding: 12px;
    }

    .service-index {
        width: 36px;
        height: 36px;
    }

    .variant-options {
        padding-right: 12px;
        padding-left: 57px;
    }

    .time-list {
        grid-template-columns: repeat(3, 1fr);
    }

    .success-actions {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 900px) {
    body {
        padding: 18px;
    }

    .app {
        width: min(100%, 1440px);
        height: calc(100vh - 36px);
        height: calc(100dvh - 36px);
        border: 1px solid rgba(255, 255, 255, 0.09);
        border-radius: 30px;
        background:
            radial-gradient(circle at 84% 16%, rgba(255, 255, 255, 0.045), transparent 26%),
            linear-gradient(145deg, rgba(55, 22, 45, 0.96), rgba(30, 12, 25, 0.98));
        box-shadow: 0 30px 90px rgba(13, 4, 10, 0.42);
    }

    .topbar {
        min-height: 82px;
        padding: 17px 42px 14px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.075);
    }

    .brand-mark {
        width: 44px;
        height: 44px;
    }

    .brand-name {
        font-size: 13px;
    }

    .status,
    .progress-copy {
        font-size: 11px;
    }

    .scroll-area {
        padding: 26px 48px 42px;
        scrollbar-width: thin;
        scrollbar-color: rgba(236, 171, 195, 0.28) transparent;
    }

    .scroll-area::-webkit-scrollbar {
        display: block;
        width: 5px;
    }

    .scroll-area::-webkit-scrollbar-thumb {
        border-radius: 999px;
        background: rgba(236, 171, 195, 0.24);
    }

    h1 {
        font-size: clamp(52px, 5.4vw, 76px);
    }

    h2 {
        font-size: clamp(40px, 4vw, 58px);
    }

    .subtitle {
        max-width: 570px;
        font-size: 15px;
    }

    .home-scroll {
        display: grid;
        grid-template-columns: minmax(350px, 0.88fr) minmax(440px, 1.12fr);
        grid-template-areas:
            "visual copy"
            "lower copy";
        column-gap: clamp(34px, 4vw, 70px);
        row-gap: 26px;
        align-items: start;
        padding-top: 28px;
    }

    .home-visual-column {
        grid-area: visual;
    }

    .home-visual-column .hero-media {
        width: min(100%, 520px);
        max-height: none;
        margin: 0;
        border-radius: 28px;
        order: initial;
    }

    .home-content {
        padding-top: clamp(12px, 3vh, 42px);
    }

    .home-copy-column {
        grid-area: copy;
    }

    .home-copy-column .home-info-section {
        margin-top: 6px;
    }

    .home-lower-column {
        display: flex;
        grid-area: lower;
        flex-direction: column;
        gap: 26px;
    }

    .home-lower-column .visit-card,
    .home-lower-column .home-note-card {
        margin-top: 0;
    }

    .home-feature-card {
        min-height: 180px;
        padding: 19px;
    }

    .home-feature-card h3 {
        font-size: 20px;
    }

    .home-feature-card p,
    .home-note-card p {
        font-size: 11px;
    }

    .proof {
        max-width: 560px;
        margin-top: 24px;
        padding: 15px 0;
    }

    .proof-item {
        font-size: 11px;
    }

    .home-actions {
        grid-template-columns: minmax(250px, 330px) minmax(190px, 240px);
        justify-content: end;
        padding: 14px 48px 20px;
    }

    .portfolio-scroll {
        padding-right: 56px;
        padding-left: 56px;
    }

    .portfolio-heading {
        max-width: 760px;
    }

    .portfolio-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 14px;
    }

    .portfolio-card {
        border-radius: 22px;
    }

    #services-scroll {
        padding-right: 56px;
        padding-left: 56px;
    }

    #screen-services .screen-heading {
        max-width: 820px;
    }

    .service-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 13px;
        align-items: start;
    }

    .service-toggle {
        min-height: 82px;
        padding: 17px;
    }

    .service-name {
        font-size: 14px;
    }

    .service-meta {
        font-size: 11px;
    }

    .variant-options {
        padding: 0 17px 17px 69px;
    }

    #screen-services > .dock {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
        gap: 34px;
        align-items: center;
        padding: 14px 56px 20px;
    }

    #screen-services .selection-summary {
        margin: 0;
    }

    #screen-services .summary-total {
        font-size: 26px;
    }

    #booking-scroll {
        display: grid;
        grid-template-columns: minmax(300px, 0.62fr) minmax(520px, 1.38fr);
        grid-template-areas:
            "back form"
            "heading form"
            "summary form";
        column-gap: clamp(30px, 4vw, 66px);
        align-content: start;
        align-items: start;
        padding-right: 56px;
        padding-left: 56px;
    }

    #booking-scroll > .back-button {
        grid-area: back;
    }

    #booking-scroll > .screen-heading {
        grid-area: heading;
    }

    #booking-scroll > .booking-summary {
        grid-area: summary;
        margin-bottom: 0;
        padding: 20px;
    }

    #booking-form {
        display: grid;
        grid-area: form;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }

    #booking-form .form-section {
        margin: 0;
        padding: 20px;
        border: 1px solid var(--line);
        border-radius: 20px;
        background: rgba(255, 255, 255, 0.035);
    }

    #booking-form .form-section:first-child {
        grid-column: 1 / -1;
    }

    .date-list {
        margin-right: 0;
        padding-right: 0;
    }

    .date-card {
        flex-basis: 76px;
    }

    .time-list {
        grid-template-columns: repeat(3, 1fr);
    }

    #screen-booking > .booking-dock {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
        gap: 32px;
        align-items: center;
        padding: 14px 56px 20px;
    }

    .booking-dock .validation-copy {
        margin: 0;
        font-size: 10px;
        text-align: left;
    }

    .success-screen {
        padding-right: max(22px, calc((100% - 760px) / 2));
        padding-left: max(22px, calc((100% - 760px) / 2));
    }

    .success-details {
        padding: 22px;
    }

    .success-actions {
        max-width: 520px;
    }

    .toast {
        bottom: 34px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
