:root {
    --bg: #f4f1e9;
    --ink: #111;
    --muted: #6f675f;
    --line: rgba(17, 17, 17, .12);
    --card: rgba(255, 255, 255, .76);
    --accent: #eadfd1;
    --warn-bg: rgba(155, 90, 31, .10);
    --warn-br: rgba(155, 90, 31, .25);
    --r-lg: 28px;
    --r-md: 18px;
    --shadow: 0 24px 70px rgba(17, 17, 17, .12);
    --shadow-soft: 0 14px 34px rgba(17, 17, 17, .08);
    --max: 1180px
}

* {
    box-sizing: border-box
}

[hidden] {
    display: none !important
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--ink);
    background: radial-gradient(circle at top left, rgba(234, 223, 209, .9), transparent 34rem), linear-gradient(135deg, var(--bg), #f8f4ed 52%, #eee8dd)
}

button,
input,
select,
textarea {
    font: inherit
}

button {
    color: inherit
}

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

a {
    color: inherit
}

.page-shell {
    width: min(var(--max), calc(100% - 32px));
    margin: 0 auto
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(18px);
    background: rgba(244, 241, 233, .78);
    border-bottom: 1px solid var(--line)
}

.topbar-inner {
    width: min(var(--max), calc(100% - 32px));
    min-height: 74px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px
}

.brand {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    min-width: 0
}

.brand-name {
    font-size: 1.05rem;
    font-weight: 500;
    letter-spacing: -.015em;
    color: var(--ink)
}

.nav {
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: .94rem
}

.nav a {
    text-decoration: none;
    color: var(--muted)
}

.nav a:hover {
    color: var(--ink)
}

body.is-booking-mode .hero {
    display: none
}

.hero {
    padding: 58px 0 32px;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(300px, .95fr);
    gap: 30px;
    align-items: stretch
}

.hero-copy {
    padding: clamp(24px, 5vw, 52px);
    min-height: 470px;
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    background: rgba(255, 255, 255, .42);
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    justify-content: center
}

.eyebrow {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(17, 17, 17, .06);
    color: var(--muted);
    font-size: .82rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-weight: 800
}

h1 {
    margin: 20px 0 14px;
    font-size: clamp(2.45rem, 8vw, 5.8rem);
    letter-spacing: -.0em;
    line-height: .92
}

.hero-copy p {
    margin: 0;
    max-width: 620px;
    color: var(--muted);
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.65
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px
}

.btn {
    border: 0;
    cursor: pointer;
    text-decoration: none;
    min-height: 52px;
    padding: 0 20px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 850;
    letter-spacing: -.01em;
    transition: transform .18s, box-shadow .18s, background .18s, opacity .18s
}

.btn:hover:not(:disabled) {
    transform: translateY(-2px)
}

.btn:disabled {
    cursor: not-allowed;
    opacity: .45;
    transform: none;
    box-shadow: none
}

.btn-primary {
    background: var(--ink);
    color: #fff;
    box-shadow: 0 18px 34px rgba(17, 17, 17, .20)
}

.btn-secondary {
    background: rgba(255, 255, 255, .62);
    color: var(--ink);
    border: 1px solid var(--line)
}

.hero-visual {
    position: relative;
    overflow: hidden;
    border-radius: var(--r-lg);
    min-height: 470px;
    box-shadow: var(--shadow);
    background: #e7e1d8;
    isolation: isolate
}

.hero-visual img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: .94
}

.hero-visual:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, .74))
}

.visual-caption {
    position: absolute;
    z-index: 1;
    left: 22px;
    right: 22px;
    bottom: 22px;
    color: #fff;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 16px
}

.visual-caption strong {
    display: block;
    font-size: 1.35rem;
    letter-spacing: -.04em
}

.visual-caption span {
    color: rgba(255, 255, 255, .75)
}

.live-pill {
    flex: 0 0 auto;
    padding: 10px 13px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .16);
    border: 1px solid rgba(255, 255, 255, .26);
    backdrop-filter: blur(14px);
    font-weight: 850
}

#booking,
.flow-section,
.summary-panel {
    scroll-margin-top: 112px
}

.booking-grid {
    padding: 34px 0 80px;
    display: none;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 24px;
    align-items: start
}

.booking-grid.is-started {
    display: grid;
    animation: fadeInUp .42s ease both
}

.booking-grid.is-started:not(.has-summary) {
    grid-template-columns: minmax(0, 860px);
    justify-content: center
}

.booking-panel,
.summary-panel {
    border: 1px solid var(--line);
    background: var(--card);
    backdrop-filter: blur(18px);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-soft)
}

.booking-panel {
    padding: clamp(18px, 3vw, 30px)
}

.summary-panel {
    display: none;
    position: sticky;
    top: 96px;
    padding: 24px;
    overflow: hidden;
    isolation: isolate;
    background: rgba(255, 255, 255, .94)
}

.booking-grid.has-summary .summary-panel {
    display: block;
    animation: fadeInUp .42s ease both
}

.summary-panel:before {
    display: none
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-bottom: 26px
}

.step-chip {
    border-radius: 999px;
    border: 1px solid var(--line);
    padding: 10px;
    font-size: .82rem;
    color: var(--muted);
    text-align: center;
    background: rgba(255, 255, 255, .42);
    font-weight: 850
}

.step-chip.is-active {
    color: #fff;
    background: #111;
    border-color: #111;
    box-shadow: 0 12px 24px rgba(17, 17, 17, .14)
}

.flow-section {
    display: none
}

.flow-section.is-visible {
    display: block;
    animation: fadeSlideIn .46s ease both
}

.flow-section.is-leaving {
    display: block;
    animation: fadeSlideOut .22s ease both
}

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

.section h2 {
    margin: 0;
    font-size: clamp(1.35rem, 3vw, 2rem);
    letter-spacing: -.055em
}

.section small {
    color: var(--muted);
    line-height: 1.45
}

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

.service-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch
}

.service-cards .choice-card-wrap,
.service-cards .choice-card {
    height: 100%
}

.choice-card-wrap {
    position: relative
}

.choice-card {
    position: relative;
    cursor: pointer;
    width: 100%;
    min-height: 214px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .55);
    border-radius: var(--r-md);
    overflow: hidden;
    text-align: left;
    padding: 0;
    transition: transform .18s, border-color .18s, box-shadow .18s, background .18s
}

.choice-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-soft)
}

.choice-card.is-selected {
    border-color: #111;
    box-shadow: 0 0 0 3px rgba(17, 17, 17, .08), var(--shadow-soft);
    background: #fff
}

.choice-image {
    position: relative;
    aspect-ratio: 1/.74;
    min-height: 170px;
    overflow: hidden;
    background: #e7e1d8;
    isolation: isolate
}

.choice-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform .3s
}

.choice-card:hover .choice-image img {
    transform: scale(1.03)
}

.choice-content {
    min-height: 112px;
    padding: 15px;
    display: grid;
    gap: 5px
}

.choice-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    min-height: 26px;
    font-weight: 900;
    letter-spacing: -.025em
}

.choice-meta {
    color: var(--muted);
    font-size: .88rem;
    line-height: 1.38;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden
}

.checkmark {
    width: 26px;
    height: 26px;
    border: 1px solid var(--line);
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    background: rgba(255, 255, 255, .55);
    color: transparent
}

.is-selected .checkmark {
    background: #111;
    color: #fff;
    border-color: #111
}

.info-button,
.option-visual-info {
    position: absolute;
    z-index: 5;
    width: 28px;
    height: 28px;
    border: 1px solid rgba(17, 17, 17, .14);
    border-radius: 999px;
    background: rgba(255, 255, 255, .96);
    color: #111;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: .78rem;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 6px 14px rgba(17, 17, 17, .08)
}

.info-button {
    top: 12px;
    right: 12px
}

.option-visual-info {
    top: 10px;
    right: 10px
}

.info-button:hover,
.option-visual-info:hover {
    transform: translateY(-1px);
    background: #fff
}

.option-group {
    display: grid;
    gap: 10px;
    margin-bottom: 18px
}

.option-group h3 {
    margin: 0;
    font-size: 1rem;
    letter-spacing: -.025em
}

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

.option-list--visual {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px
}

.option-visual-wrap {
    position: relative
}

.option-visual-input {
    position: absolute;
    opacity: 0;
    pointer-events: none
}

.option-visual-card {
    cursor: pointer;
    width: 100%;
    height: 100%;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(255, 255, 255, .62);
    overflow: hidden;
    transition: transform .18s, box-shadow .18s, border-color .18s, background .18s
}

.option-visual-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-soft);
    background: #fff
}

.option-visual-card.is-selected {
    border-color: #111;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(17, 17, 17, .08), var(--shadow-soft)
}

.option-visual-image {
    position: relative;
    aspect-ratio: 1/.78;
    min-height: 150px;
    overflow: hidden;
    background: #e7e1d8;
    isolation: isolate
}

.option-visual-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform .28s
}

.option-visual-card:hover .option-visual-image img {
    transform: scale(1.03)
}

.option-visual-content {
    padding: 14px;
    display: grid;
    gap: 6px
}

.option-visual-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    font-weight: 900;
    letter-spacing: -.02em
}

.option-visual-meta {
    color: var(--muted);
    font-size: .9rem;
    line-height: 1.4
}

.option-card {
    cursor: pointer;
    border-radius: 18px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .58);
    min-height: 86px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 10px;
    padding: 14px;
    align-items: start;
    transition: all .18s
}

.option-card:hover {
    transform: translateY(-2px);
    background: #fff
}

.option-card.is-selected {
    border-color: #111;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(17, 17, 17, .07)
}

.option-card input {
    margin-top: 3px;
    accent-color: #111
}

.option-card strong {
    display: block;
    margin-bottom: 3px;
    letter-spacing: -.02em
}

.option-card span span {
    display: block;
    color: var(--muted);
    font-size: .88rem;
    line-height: 1.35
}

.empty-state {
    padding: 18px;
    border: 1px dashed rgba(17, 17, 17, .24);
    border-radius: var(--r-md);
    color: var(--muted);
    background: rgba(255, 255, 255, .35);
    line-height: 1.55
}

.adult-card {
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    padding: 18px;
    background: rgba(255, 255, 255, .56);
    display: grid;
    gap: 14px
}

.adult-row {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    line-height: 1.45
}

.adult-row input {
    width: 20px;
    height: 20px;
    accent-color: #111;
    margin-top: 1px;
    flex: 0 0 auto
}

.minor-notice,
.deposit-notice {
    padding: 14px;
    border-radius: 18px;
    line-height: 1.5
}

.minor-notice {
    display: none;
    background: var(--warn-bg);
    border: 1px solid var(--warn-br);
    color: #6b3a11
}

.minor-notice.is-visible {
    display: block
}

.minor-notice a {
    font-weight: 900
}

.deposit-notice {
    background: rgba(17, 17, 17, .055);
    border: 1px solid var(--line);
    color: var(--muted)
}

.deposit-notice strong {
    color: var(--ink)
}

.flow-actions {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 22px
}

.flow-actions .btn {
    min-width: 148px
}

.flow-hint {
    margin: 14px 0 0;
    color: var(--muted);
    font-size: .9rem;
    line-height: 1.45
}

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

.summary-title h2 {
    margin: 0;
    letter-spacing: -.055em;
    font-size: 1.55rem
}

.summary-image {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    aspect-ratio: 4/3;
    background: #e7e1d8;
    margin-bottom: 18px;
    isolation: isolate
}

.summary-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center
}

.summary-lines {
    display: grid;
    gap: 10px;
    margin-bottom: 20px
}

.summary-line {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--line);
    color: var(--muted);
    line-height: 1.4
}

.summary-line strong {
    color: var(--ink);
    text-align: right
}

.totals {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 18px 0
}

.total-card {
    border-radius: 20px;
    background: #111;
    color: #fff;
    padding: 16px;
    min-height: 92px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 16px 28px rgba(17, 17, 17, .16)
}

.total-card:nth-child(2) {
    background: var(--accent);
    color: #111
}

.total-card span {
    font-size: .82rem;
    opacity: .72;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: .08em
}

.total-card strong {
    font-size: 1.7rem;
    letter-spacing: -.055em
}



.request-modal {
    position: fixed;
    inset: 0;
    z-index: 180;
    display: none;
    padding: 14px;
    min-height: 100dvh;
    align-items: center;
    justify-content: center
}

.request-modal.is-open {
    display: flex
}

.request-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(17, 17, 17, .48);
    backdrop-filter: blur(9px);
    animation: modalFadeIn .18s ease
}

.request-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(980px, 100%);
    max-height: calc(100dvh - 28px);
    overflow: auto;
    margin: 0 auto;
    border-radius: 30px;
    border: 1px solid rgba(17, 17, 17, .12);
    background: rgba(255, 255, 255, .97);
    box-shadow: 0 30px 80px rgba(17, 17, 17, .20);
    animation: modalSlideIn .22s ease;
    -webkit-overflow-scrolling: touch
}

.request-modal__close {
    position: sticky;
    top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    float: none;
    margin: 12px 12px -54px auto;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 999px;
    background: #111;
    color: #fff;
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
    z-index: 2
}

.request-form {
    padding: 24px;
    display: grid;
    gap: 16px
}

.request-form__header {
    display: grid;
    gap: 10px;
    padding-right: 54px
}

.request-form__header h2 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3.4rem);
    letter-spacing: -.06em;
    line-height: .96
}

.request-form__header p {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
    max-width: 780px
}

.request-selection {
    width: fit-content;
    max-width: 100%;
    padding: 10px 13px;
    border-radius: 999px;
    background: rgba(17, 17, 17, .06);
    border: 1px solid var(--line);
    color: var(--ink);
    font-weight: 850;
    line-height: 1.35
}

.request-block {
    display: grid;
    gap: 12px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(244, 241, 233, .58)
}

.request-block h3 {
    margin: 0;
    font-size: 1.08rem;
    letter-spacing: -.03em
}

.form-grid {
    display: grid;
    gap: 12px
}

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

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

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

.field-card {
    display: grid;
    gap: 7px;
    min-width: 0
}

.field-card--wide {
    margin-top: 2px
}

.field-card span {
    font-size: .82rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .08em;
    font-weight: 900
}

.field-card input,
.field-card select,
.field-card textarea {
    width: 100%;
    border: 1px solid rgba(17, 17, 17, .14);
    border-radius: 18px;
    background: rgba(255, 255, 255, .86);
    color: var(--ink);
    min-height: 52px;
    padding: 0 14px;
    outline: none;
    transition: border-color .18s, box-shadow .18s, background .18s
}

.field-card textarea {
    min-height: 126px;
    padding: 14px;
    resize: vertical;
    line-height: 1.45
}

.field-card input:focus,
.field-card select:focus,
.field-card textarea:focus {
    border-color: #111;
    box-shadow: 0 0 0 3px rgba(17, 17, 17, .08);
    background: #fff
}

.chip-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px
}

.chip-check {
    cursor: pointer
}

.chip-check input {
    position: absolute;
    opacity: 0;
    pointer-events: none
}

.chip-check span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .72);
    color: var(--muted);
    font-weight: 850;
    transition: transform .18s, background .18s, color .18s, border-color .18s, box-shadow .18s
}

.chip-check:hover span {
    transform: translateY(-1px);
    background: #fff;
    color: var(--ink)
}

.chip-check input:checked + span {
    background: #111;
    color: #fff;
    border-color: #111;
    box-shadow: 0 12px 22px rgba(17, 17, 17, .15)
}

.consent-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px;
    border-radius: 20px;
    background: rgba(17, 17, 17, .055);
    border: 1px solid var(--line);
    line-height: 1.45;
    color: var(--muted)
}

.consent-row input {
    width: 20px;
    height: 20px;
    flex: 0 0 auto;
    accent-color: #111;
    margin-top: 1px
}

.request-status {
    margin: 0;
    padding: 14px;
    border-radius: 18px;
    line-height: 1.5;
    border: 1px solid var(--line);
    background: rgba(17, 17, 17, .055);
    color: var(--muted)
}

.request-status[hidden] {
    display: none
}

.request-status--success {
    background: rgba(28, 120, 72, .10);
    border-color: rgba(28, 120, 72, .24);
    color: #1c6d43
}

.request-status--error {
    background: var(--warn-bg);
    border-color: var(--warn-br);
    color: #6b3a11
}

.request-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    flex-wrap: wrap
}

.hp-field {
    position: absolute !important;
    left: -9999px !important;
    opacity: 0 !important;
    pointer-events: none !important
}

.info-modal {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: none
}

.info-modal.is-open {
    display: block
}

.info-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(17, 17, 17, .46);
    backdrop-filter: blur(8px);
    animation: modalFadeIn .18s ease
}

.info-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(920px, calc(100% - 24px));
    max-height: calc(100vh - 32px);
    overflow: auto;
    margin: 16px auto;
    border-radius: 28px;
    border: 1px solid rgba(17, 17, 17, .12);
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 28px 70px rgba(17, 17, 17, .18);
    animation: modalSlideIn .22s ease;
    -webkit-overflow-scrolling: touch
}

.info-modal__content {
    padding: 22px
}

.info-modal__close {
    position: sticky;
    top: 10px;
    float: right;
    margin: 12px 12px 0 0;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 999px;
    background: #111;
    color: #fff;
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
    z-index: 2
}

.info-modal__eyebrow {
    display: inline-flex;
    padding: 7px 11px;
    border-radius: 999px;
    background: rgba(17, 17, 17, .06);
    color: var(--muted);
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-weight: 900
}

.info-modal__header h2 {
    margin: 14px 0 10px;
    font-size: clamp(1.8rem, 4vw, 3rem);
    letter-spacing: -.06em;
    line-height: .96
}

.info-modal__header p {
    margin: 0 0 18px;
    color: var(--muted);
    line-height: 1.6
}

.info-modal__gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 12px;
    margin-bottom: 18px;
    max-height: 420px;
    overflow-y: auto;
    padding-right: 4px;
    -webkit-overflow-scrolling: touch
}

.info-modal__gallery[hidden] {
    display: none
}

.info-modal__gallery.is-single {
    grid-template-columns: minmax(0, 260px);
    justify-content: start;
    max-height: none;
    overflow: visible;
    padding-right: 0
}

.info-modal__gallery img {
    display: block;
    width: 100%;
    aspect-ratio: 4/5;
    max-height: 320px;
    object-fit: cover;
    object-position: center;
    border-radius: 20px;
    background: #e7e1d8
}

.info-modal__gallery.is-single img {
    max-height: 320px
}

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

.info-detail-card {
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(244, 241, 233, .7);
    padding: 18px
}

.info-detail-card h3 {
    margin: 0 0 8px;
    font-size: 1.05rem;
    letter-spacing: -.03em
}

.info-detail-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.6
}

.footer {
    border-top: 1px solid var(--line);
    padding: 26px 0 40px;
    color: var(--muted);
    font-size: .92rem
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap
}

.legal-links {
    display: flex;
    gap: 14px;
    flex-wrap: wrap
}

.legal-links a {
    color: var(--muted);
    text-decoration: none
}

.legal-links a:hover {
    color: var(--ink)
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(18px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes fadeSlideIn {
    from {
        opacity: 0;
        transform: translateY(18px) scale(.985);
        filter: blur(6px)
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0)
    }
}

@keyframes fadeSlideOut {
    from {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0)
    }

    to {
        opacity: 0;
        transform: translateY(-10px) scale(.99);
        filter: blur(5px)
    }
}

@keyframes modalFadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(16px) scale(.985)
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1)
    }
}

@media (prefers-reduced-motion:reduce) {

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

@media (max-width:980px) {

    .hero,
    .booking-grid,
    .booking-grid.is-started:not(.has-summary) {
        grid-template-columns: 1fr
    }

    .summary-panel {
        position: static
    }

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

    .choice-image {
        min-height: 185px
    }

    .option-list--visual {
        grid-template-columns: repeat(3, minmax(0, 1fr))
    }

    .option-visual-image {
        min-height: 145px
    }
}

@media (max-width:720px) {
    .form-grid--2,
    .form-grid--3,
    .form-grid--4 {
        grid-template-columns: 1fr
    }

    .request-form {
        padding: 64px 16px 16px
    }

    .request-form__header {
        justify-items: center;
        padding-right: 0;
        text-align: center
    }

    .request-selection {
        margin-inline: auto;
        text-align: center
    }

    .request-modal {
        padding: 8px;
        align-items: center;
    }

    .request-modal__dialog {
        width: 100%;
        margin: 0 auto;
        max-height: calc(100dvh - 16px)
    }

    .request-actions {
        justify-content: stretch
    }

    .request-actions .btn {
        flex: 1 1 100%
    }

    .info-modal__details {
        grid-template-columns: 1fr
    }

    .info-modal__dialog {
        width: min(100% - 16px, 920px);
        margin: 8px auto;
        max-height: calc(100vh - 16px)
    }

    .info-modal__content {
        padding: 16px
    }

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

    .info-modal__gallery.is-single {
        grid-template-columns: minmax(0, 230px)
    }
}

@media (max-width:640px) {
    .option-list--visual {
        grid-template-columns: 1fr
    }

    .option-visual-image {
        min-height: 190px;
        aspect-ratio: 1/.78
    }

    .choice-image {
        min-height: 190px;
        aspect-ratio: 1/.78
    }

    .page-shell,
    .topbar-inner {
        width: min(100% - 20px, var(--max))
    }

    .topbar-inner {
        min-height: 68px
    }

    .brand-name {
        font-size: 1rem
    }

    .nav {
        gap: 12px;
        font-size: .86rem
    }

    .hero {
        padding-top: 28px
    }

    .hero-copy,
    .hero-visual {
        min-height: auto
    }

    .hero-visual {
        min-height: 340px
    }

    .cards,
    .service-cards,
    .option-list {
        grid-template-columns: 1fr
    }

    .steps {
        grid-template-columns: repeat(2, 1fr)
    }

    .section-head {
        display: grid
    }

    .visual-caption {
        align-items: start;
        flex-direction: column
    }

    .flow-actions .btn {
        flex: 1 1 100%
    }
}

.submit-frame {
    display: none !important;
    width: 0;
    height: 0;
    border: 0;
    position: absolute;
    left: -9999px;
}

/* Page confirmation Nail Art — FINAL14 clean layout */
.confirmation-page {
    min-height: 100dvh;
    margin: 0;
    padding: clamp(14px, 3vw, 34px);
    color: var(--ink);
    background:
        radial-gradient(circle at top left, rgba(234, 223, 209, .92), transparent 32rem),
        linear-gradient(135deg, var(--bg), #f8f4ed 52%, #eee8dd);
}

.confirmation-page * {
    box-sizing: border-box;
}

.confirmation-wrap {
    width: min(1040px, 100%);
    margin: 0 auto;
}

.confirmation-hero {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    border: 1px solid rgba(17, 17, 17, .10);
    border-radius: clamp(24px, 3vw, 34px);
    background: linear-gradient(135deg, rgba(255, 255, 255, .94), rgba(250, 246, 239, .88));
    box-shadow: 0 24px 70px rgba(17, 17, 17, .11);
    padding: clamp(22px, 5vw, 50px);
}

.confirmation-hero::before {
    content: "";
    position: absolute;
    z-index: -1;
    right: -92px;
    top: -110px;
    width: 270px;
    height: 270px;
    border-radius: 999px;
    background: rgba(234, 223, 209, .85);
    filter: blur(2px);
}

.confirmation-hero::after {
    content: "";
    position: absolute;
    z-index: -1;
    left: -130px;
    bottom: -150px;
    width: 310px;
    height: 310px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .72);
}

.confirmation-pill {
    width: fit-content;
    max-width: 100%;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 13px;
    border-radius: 999px;
    font-size: .74rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .09em;
    background: rgba(28, 120, 72, .10);
    color: #17633a;
    border: 1px solid rgba(28, 120, 72, .18);
}

.confirmation-page--error .confirmation-pill {
    background: #fff0ed;
    color: #8a2b1d;
    border-color: rgba(138, 43, 29, .18);
}

.confirmation-pill::before {
    content: "✓";
    width: 18px;
    height: 18px;
    display: inline-grid;
    place-items: center;
    border-radius: 999px;
    background: currentColor;
    color: #fff;
    font-size: .72rem;
}

.confirmation-page--error .confirmation-pill::before {
    content: "!";
}

.confirmation-hero h1 {
    margin: 18px 0 12px;
    max-width: 870px;
    font-size: clamp(2.1rem, 7vw, 4.85rem);
    line-height: .94;
    letter-spacing: -.07em;
}

.confirmation-lead {
    margin: 0;
    max-width: 770px;
    color: var(--muted);
    font-size: clamp(1rem, 2vw, 1.12rem);
    line-height: 1.68;
}

.confirmation-next {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 24px;
}

.confirmation-next-card {
    border: 1px solid rgba(17, 17, 17, .10);
    border-radius: 22px;
    background: rgba(255, 255, 255, .74);
    padding: 16px;
    box-shadow: 0 12px 26px rgba(17, 17, 17, .04);
}

.confirmation-next-card span,
.confirmation-item > span {
    display: block;
    color: var(--muted);
    font-size: .74rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .095em;
    margin-bottom: 7px;
}

.confirmation-next-card strong,
.confirmation-item > strong {
    display: block;
    line-height: 1.42;
    word-break: break-word;
    overflow-wrap: anywhere;
}

.confirmation-recap {
    margin-top: 18px;
    display: grid;
    gap: 14px;
}

.confirmation-section {
    overflow: hidden;
    border: 1px solid rgba(17, 17, 17, .09);
    border-radius: 28px;
    background: rgba(255, 255, 255, .82);
    box-shadow: 0 14px 34px rgba(17, 17, 17, .055);
}

.confirmation-section h2 {
    margin: 0;
    padding: 18px 20px 14px;
    background: transparent;
    border-bottom: 1px solid rgba(17, 17, 17, .07);
    font-size: clamp(1.15rem, 2.2vw, 1.45rem);
    letter-spacing: -.045em;
}

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

.confirmation-item {
    min-height: 86px;
    padding: 18px 20px;
    border-top: 1px solid rgba(17, 17, 17, .065);
}

.confirmation-item:nth-child(1),
.confirmation-item:nth-child(2) {
    border-top: 0;
}

.confirmation-item:nth-child(odd) {
    border-right: 1px solid rgba(17, 17, 17, .055);
}

.confirmation-item--full {
    grid-column: 1 / -1;
    border-right: 0 !important;
}

.confirmation-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: flex-start;
}

.confirmation-item .confirmation-tag {
    display: inline-flex;
    width: auto;
    max-width: 100%;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid rgba(17, 17, 17, .10);
    background: rgba(234, 223, 209, .62);
    color: var(--ink);
    padding: 8px 12px;
    font-size: .88rem;
    font-weight: 850;
    text-transform: none;
    letter-spacing: -.01em;
    line-height: 1.2;
    box-shadow: none;
}

.confirmation-muted {
    color: var(--muted);
    font-weight: 650;
}

.confirmation-link {
    color: var(--ink);
    font-weight: 850;
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
    overflow-wrap: anywhere;
}

.confirmation-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.confirmation-btn {
    min-height: 50px;
    padding: 0 20px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 900;
    transition: transform .18s, box-shadow .18s, background .18s;
}

.confirmation-btn:hover {
    transform: translateY(-2px);
}

.confirmation-btn--primary {
    background: #111;
    color: #fff;
    box-shadow: 0 18px 34px rgba(17, 17, 17, .18);
}

.confirmation-btn--secondary {
    background: rgba(255, 255, 255, .74);
    color: #111;
    border: 1px solid var(--line);
}

.confirmation-note {
    margin: 18px 0 0;
    color: var(--muted);
    font-size: .92rem;
    line-height: 1.55;
}

@media (max-width: 720px) {
    .confirmation-page {
        padding: 12px;
    }

    .confirmation-wrap {
        width: 100%;
    }

    .confirmation-hero,
    .confirmation-section {
        border-radius: 24px;
    }

    .confirmation-hero {
        padding: 22px 18px;
    }

    .confirmation-hero h1 {
        font-size: clamp(2.2rem, 13vw, 3.25rem);
    }

    .confirmation-next,
    .confirmation-grid {
        grid-template-columns: 1fr;
    }

    .confirmation-item:nth-child(2) {
        border-top: 1px solid rgba(17, 17, 17, .065);
    }

    .confirmation-item:nth-child(odd) {
        border-right: 0;
    }

    .confirmation-section h2,
    .confirmation-item {
        padding-left: 16px;
        padding-right: 16px;
    }

    .confirmation-item .confirmation-tag {
        font-size: .86rem;
        padding: 8px 11px;
    }

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

    .confirmation-btn {
        width: 100%;
    }
}
