:root {
    color-scheme: light;
    --bg: #eaf7ff;
    --surface: rgba(7, 18, 45, 0.92);
    --surface-soft: rgba(20, 31, 68, 0.78);
    --text: #f5fbff;
    --text-dark: #05061a;
    --muted: #aab8d7;
    --line: rgba(170, 194, 255, 0.24);
    --accent: #064a72;
    --accent-dark: #020617;
    --petal: rgba(78, 91, 147, 0.35);
    --cream: #f4fbff;
    --ink-soft: #b9c8e6;
    --gold: #a8d8ff;
    --success: #69d6ac;
    --error: #ff9a9a;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    background:
        radial-gradient(circle at 18% 8%, rgba(255, 255, 255, 0.95) 0 70px, transparent 71px),
        radial-gradient(circle at 82% 18%, rgba(201, 226, 255, 0.82) 0 96px, transparent 97px),
        linear-gradient(180deg, #eef9ff 0%, #dcecff 48%, #eff8ff 100%);
    color: var(--text-dark);
    font-size: 15px;
    font-family: "Avenir Next", "Nunito Sans", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body::before {
    content: none;
}

button,
input,
select {
    font: inherit;
}

.app-shell {
    width: min(100%, 430px);
    min-height: 100vh;
    margin: 0 auto;
    padding: 22px 16px 42px;
}

.admin-shell {
    max-width: 680px;
}

.admin-shell .top-bar {
    margin-bottom: 12px;
}

.top-bar {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
    border: 2px solid rgba(255, 255, 255, 0.86);
    border-radius: 22px;
    background:
        radial-gradient(circle at 92% 6%, rgba(75, 124, 190, 0.32), transparent 34%),
        linear-gradient(180deg, #0c2f58 0%, #080b25 100%);
    padding: 15px;
    box-shadow: 0 26px 50px rgba(22, 55, 105, 0.24);
}

.top-bar > div {
    position: relative;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    column-gap: 12px;
}

.top-bar > div::after {
    content: none;
}

.top-bar > div::before {
    content: none;
}

.brand-logo {
    display: block;
    grid-row: 1 / span 2;
    width: 62px;
    height: 62px;
    margin-bottom: 0;
    border: 1px solid rgba(168, 216, 255, 0.32);
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 16px 28px rgba(0, 0, 0, 0.24);
}

.eyebrow {
    align-self: end;
    margin: 0 0 4px;
    color: var(--gold);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

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

h1 {
    align-self: start;
    margin-bottom: 0;
    color: var(--text);
    font-size: 24px;
    font-weight: 850;
    line-height: 1.08;
}

h2 {
    margin-bottom: 12px;
    color: var(--text);
    font-size: 19px;
    font-weight: 850;
}

.link-button,
button,
.primary-action,
.secondary-action {
    border: 0;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 800;
    text-decoration: none;
}

.link-button {
    flex: 0 0 auto;
    border: 1px solid rgba(168, 216, 255, 0.34);
    border-radius: 14px;
    padding: 9px 12px;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 12px 24px rgba(0, 0, 0, 0.18);
    color: #fff;
    font-size: 13px;
}

.hero {
    position: relative;
    overflow: hidden;
    min-height: 430px;
    margin-bottom: 20px;
    border: 3px solid rgba(255, 255, 255, 0.92);
    border-radius: 24px;
    background: var(--accent);
    box-shadow: 0 26px 58px rgba(22, 55, 105, 0.28);
}

.photo-hero {
    isolation: isolate;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    animation: heroSlide 15s infinite;
}

.hero-slide.is-second {
    animation-delay: 5s;
}

.hero-slide.is-third {
    animation-delay: 10s;
}

.hero-slide img {
    display: block;
    width: 100%;
    height: 100%;
    background: var(--accent);
    object-fit: cover;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    border: 1px solid rgba(168, 216, 255, 0.16);
    background:
        radial-gradient(circle at 82% 8%, rgba(70, 120, 190, 0.24), transparent 34%),
        linear-gradient(180deg, rgba(5, 20, 46, 0.18), rgba(5, 14, 38, 0.44) 58%, rgba(2, 4, 18, 0.8)),
        linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 44%);
    pointer-events: none;
}

.hero-caption {
    position: absolute;
    right: 18px;
    bottom: 18px;
    left: 18px;
    z-index: 2;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 14px;
}

.hero-mark {
    width: 82px;
    height: 82px;
    border: 1px solid rgba(168, 216, 255, 0.36);
    border-radius: 14px;
    object-fit: cover;
    box-shadow: 0 18px 34px rgba(0, 20, 32, 0.28);
}

.hero-caption p {
    margin-bottom: 6px;
    color: rgba(226, 240, 255, 0.9);
    font-size: 12px;
    font-weight: 850;
    text-transform: uppercase;
}

@keyframes heroSlide {
    0% {
        opacity: 0;
        transform: scale(1.02);
    }
    8%,
    33% {
        opacity: 1;
    }
    41%,
    100% {
        opacity: 0;
        transform: scale(1.08);
    }
}

.panel,
.booking-card {
    position: relative;
    margin-bottom: 12px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background:
        radial-gradient(circle at 96% 0%, rgba(76, 115, 190, 0.26), transparent 32%),
        linear-gradient(180deg, rgba(14, 36, 75, 0.96) 0%, rgba(8, 10, 35, 0.96) 100%);
    padding: 17px;
    color: var(--text);
    box-shadow: 0 24px 48px rgba(22, 55, 105, 0.2);
    backdrop-filter: blur(10px);
}

.reservation-panel {
    margin-top: 18px;
    padding: 18px 16px 16px;
}

.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
    border-bottom: 1px solid rgba(168, 216, 255, 0.18);
    padding-bottom: 12px;
}

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

.section-head h2 {
    margin-bottom: 0;
    color: var(--text);
    font-size: 20px;
}

.reservation-step {
    position: relative;
    display: grid;
    gap: 10px;
    margin-bottom: 18px;
    padding-left: 42px;
}

.booking-form.reservation-step {
    margin-bottom: 0;
}

.step-label {
    position: absolute;
    top: 0;
    left: 0;
    display: grid;
    width: 28px;
    height: 28px;
    border: 1px solid rgba(168, 216, 255, 0.28);
    border-radius: 999px;
    color: var(--gold);
    font-size: 10px;
    font-weight: 900;
    place-items: center;
}

.step-title {
    color: var(--muted);
    font-size: 11px;
    font-weight: 850;
    text-transform: uppercase;
}

.panel::before,
.booking-card::before {
    content: "";
    position: absolute;
    top: 0;
    right: 20px;
    left: 20px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(168, 216, 255, 0.34), transparent);
}

.notice {
    margin-bottom: 12px;
    border-radius: 8px;
    padding: 12px 14px;
    font-weight: 800;
}

.success {
    background: #e2f4ea;
    color: var(--success);
}

.error {
    background: #fae2df;
    color: var(--error);
}

.alert-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: grid;
    overflow: hidden;
    background: rgba(4, 21, 37, 0.44);
    padding: 22px;
    place-items: center;
    overscroll-behavior: contain;
    touch-action: none;
}

.alert-modal[hidden] {
    display: none !important;
}

.alert-box {
    width: min(100%, 340px);
    border: 1px solid rgba(10, 50, 82, 0.12);
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255, 252, 246, 0.98), rgba(239, 248, 252, 0.98));
    padding: 20px;
    text-align: center;
    box-shadow: 0 24px 60px rgba(0, 47, 72, 0.18);
}

.alert-box h2 {
    margin-bottom: 8px;
    font-size: 17px;
}

.alert-box p {
    margin: 0 0 18px;
    color: #17314b;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.5;
    white-space: pre-line;
}

body.modal-open {
    overflow: hidden;
    overscroll-behavior: none;
    touch-action: none;
}

.alert-box button {
    width: 100%;
    min-height: 42px;
    background: linear-gradient(135deg, #245d8c, #102a55);
    color: #fff;
    font-size: 14px;
}

label {
    display: grid;
    gap: 7px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 850;
    text-transform: uppercase;
}

input,
select {
    width: 100%;
    min-height: 46px;
    border: 1px solid rgba(168, 216, 255, 0.22);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--text);
    font-size: 16px;
    font-weight: 650;
    letter-spacing: 0;
    padding: 0 12px;
}

input[type="date"] {
    color: var(--text);
    font-weight: 600;
    font-variant-numeric: tabular-nums;
}

input[type="date"]::-webkit-datetime-edit {
    color: var(--text);
    font-weight: 600;
    letter-spacing: 0;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    opacity: 0.72;
}

.inline-row,
.admin-form {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px;
}

.admin-form {
    grid-template-columns: 112px 1fr auto;
}

.admin-calendar-panel {
    padding: 14px;
}

.calendar-head {
    display: grid;
    grid-template-columns: 40px 1fr 40px;
    align-items: center;
    margin-bottom: 10px;
    text-align: center;
}

.calendar-head strong {
    color: var(--text);
    font-size: 16px;
    font-weight: 900;
}

.month-nav {
    display: grid;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(168, 216, 255, 0.24);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--text);
    font-size: 24px;
    font-weight: 800;
    line-height: 1;
    place-items: center;
    text-decoration: none;
}

.calendar-weekdays,
.calendar-row {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 6px;
}

.calendar-weekdays {
    margin-bottom: 5px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 850;
    text-align: center;
}

.calendar-row {
    margin-bottom: 5px;
}

.calendar-day {
    display: grid;
    align-content: start;
    min-height: 86px;
    border: 1px solid rgba(168, 216, 255, 0.18);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.07);
    padding: 6px 5px;
    color: var(--text);
    text-decoration: none;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.calendar-day.outside {
    opacity: 0.44;
}

.calendar-day.selected {
    border-color: rgba(168, 216, 255, 0.7);
    background: rgba(45, 80, 132, 0.48);
    box-shadow: inset 0 0 0 1px rgba(168, 216, 255, 0.28), 0 10px 22px rgba(0, 0, 0, 0.16);
}

.day-number {
    color: var(--ink-soft);
    font-size: 12px;
    font-weight: 900;
    line-height: 1;
}

.day-times {
    display: flex;
    flex-wrap: wrap;
    gap: 3px;
    margin-top: 5px;
}

.time-chip {
    border-radius: 4px;
    padding: 2px 5px;
    font-size: 9px;
    font-weight: 900;
    line-height: 1.1;
}

.time-chip.booked {
    background: rgba(168, 216, 255, 0.14);
    color: var(--text);
    box-shadow: inset 0 0 0 1px rgba(0, 68, 102, 0.22);
}

.time-chip.blocked {
    background: rgba(255, 255, 255, 0.08);
    color: var(--muted);
}

.time-chip.more {
    background: rgba(168, 216, 255, 0.14);
    color: var(--text);
}

.inline-row button,
.admin-form button,
.primary-action {
    min-height: 46px;
    padding: 0 16px;
    border: 1px solid rgba(168, 216, 255, 0.28);
    border-radius: 12px;
    background: linear-gradient(135deg, #245d8c, #102a55);
    color: #fff;
    font-size: 15px;
    box-shadow: 0 12px 24px rgba(0, 47, 72, 0.18);
}

.slot-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
    margin-bottom: 18px;
}

.slot {
    position: relative;
    display: grid;
    grid-template-columns: 78px 1fr;
    align-items: center;
    min-height: 48px;
    border: 1px solid rgba(168, 216, 255, 0.16);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.07);
    padding: 0 14px;
    text-align: left;
    color: var(--text);
    transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.slot input {
    position: absolute;
    inset: 0;
    opacity: 0;
}

.slot:has(input:checked) {
    border-color: rgba(168, 216, 255, 0.72);
    background: rgba(45, 80, 132, 0.48);
    box-shadow: inset 0 0 0 1px rgba(168, 216, 255, 0.26), 0 12px 26px rgba(0, 0, 0, 0.18);
    transform: translateY(-1px);
}

.slot.disabled {
    background: rgba(255, 255, 255, 0.045);
    color: var(--muted);
}

.slot-time {
    display: block;
    font-size: 15px;
    font-weight: 850;
}

.slot-label {
    display: block;
    justify-self: end;
    margin-top: 0;
    color: var(--ink-soft);
    font-size: 10px;
    font-weight: 750;
}

.form-grid {
    display: grid;
    gap: 10px;
    margin-bottom: 16px;
}

.primary-action {
    width: 100%;
}

.booking-card strong {
    display: block;
    margin-bottom: 7px;
    font-size: 15px;
    font-weight: 850;
}

.booking-card p {
    margin-bottom: 10px;
    color: var(--muted);
}

.admin-booking-row {
    display: grid;
    grid-template-columns: 54px 1fr auto auto auto;
    align-items: center;
    gap: 8px;
    padding: 12px 14px;
}

.admin-booking-row strong {
    margin-bottom: 0;
}

.admin-booking-row p {
    grid-column: 2 / -1;
    margin: -2px 0 0;
    font-size: 12px;
}

.admin-booking-row form {
    margin: 0;
}

.admin-booking-row .secondary-action {
    min-height: 32px;
    padding: 0 10px;
    font-size: 12px;
}

.admin-blocked-row {
    display: grid;
    grid-template-columns: 54px auto 1fr auto;
    align-items: center;
    gap: 8px;
    padding: 12px 14px;
}

.admin-blocked-row strong {
    margin-bottom: 0;
}

.admin-blocked-row form {
    margin: 0;
}

.admin-blocked-row .secondary-action {
    min-height: 32px;
    padding: 0 10px;
    font-size: 12px;
}

.my-lookup h2 {
    margin-bottom: 12px;
}

.my-page {
    background:
        radial-gradient(circle at 18% 8%, rgba(255, 255, 255, 0.95) 0 70px, transparent 71px),
        linear-gradient(180deg, #eef5fb 0%, #e4edf6 100%);
}

.my-shell {
    display: grid;
    gap: 14px;
}

.my-top-bar {
    margin-bottom: 0;
}

.my-top-bar h1 {
    margin-bottom: 5px;
}

.my-top-bar span {
    grid-column: 2;
    color: rgba(255, 255, 255, 0.78);
    font-size: 13px;
    line-height: 1.5;
}

.panel-title,
.result-heading {
    display: grid;
    grid-template-columns: 38px 1fr;
    align-items: start;
    gap: 12px;
    margin-bottom: 18px;
}

.panel-title > span,
.result-heading > span {
    display: grid;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(168, 216, 255, 0.16);
    color: var(--gold);
    font-size: 12px;
    font-weight: 900;
    place-items: center;
}

.panel-title h2,
.result-heading h2 {
    margin: 0 0 5px;
    color: var(--text);
}

.panel-title p,
.result-heading p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.5;
}

.my-lookup {
    margin-bottom: 0;
}

.my-lookup .form-grid {
    gap: 12px;
}

.my-booking-row {
    display: grid;
    grid-template-columns: 86px 1fr;
    align-items: stretch;
    gap: 12px;
    padding: 14px;
}

.booking-date-block {
    display: grid;
    align-content: center;
    justify-items: center;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 8px;
}

.booking-date-block span {
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
}

.booking-date-block strong {
    margin: 4px 0 0;
    color: var(--text);
    font-size: 24px;
    line-height: 1;
}

.booking-summary {
    display: grid;
    align-content: center;
    min-width: 0;
    gap: 8px;
}

.booking-summary p {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 10px;
    margin: 0;
}

.booking-summary b,
.booking-summary em {
    color: var(--text);
    font-size: 14px;
    font-style: normal;
}

.booking-summary em {
    color: var(--muted);
}

.my-booking-row form {
    grid-column: 1 / -1;
    margin: 0;
}

.my-booking-row .secondary-action {
    width: 100%;
    min-height: 42px;
    border-color: rgba(255, 154, 154, 0.34);
    background: rgba(255, 154, 154, 0.12);
    color: #ffd7d7;
    font-size: 13px;
    white-space: nowrap;
}

.my-empty {
    display: grid;
    gap: 6px;
    border: 1px dashed rgba(168, 216, 255, 0.25);
    border-radius: 18px;
    background: rgba(7, 18, 45, 0.42);
    padding: 24px 18px;
}

.my-empty strong {
    color: var(--text);
}

.my-empty p {
    margin: 0;
}

.muted-text {
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}

.status {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    border: 1px solid rgba(168, 216, 255, 0.18);
    border-radius: 999px;
    background: var(--petal);
    padding: 0 9px;
    color: var(--text);
    font-size: 11px;
    font-weight: 850;
}

.status.cancelled {
    border-color: rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.62);
}

.confirm-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 18px;
}

.confirm-actions button {
    min-height: 42px;
    border-radius: 12px;
}

.confirm-actions [data-confirm-cancel] {
    border: 1px solid rgba(6, 23, 41, 0.14);
    background: #fff;
    color: #061729;
}

.confirm-actions [data-confirm-ok] {
    border: 1px solid rgba(178, 54, 54, 0.42);
    background: #b23636;
    color: #fff;
}

.card-actions {
    display: grid;
    gap: 8px;
}

.card-actions form {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px;
}

.secondary-action {
    min-height: 40px;
    padding: 0 12px;
    border: 1px solid rgba(168, 216, 255, 0.22);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--text);
    font-size: 14px;
}

.empty {
    color: var(--muted);
    text-align: center;
}

.location-card {
    display: grid;
    gap: 14px;
    margin-bottom: 18px;
    background:
        radial-gradient(circle at 96% 0%, rgba(76, 115, 190, 0.26), transparent 32%),
        linear-gradient(180deg, rgba(14, 36, 75, 0.96) 0%, rgba(8, 10, 35, 0.96) 100%);
}

.location-card h2 {
    margin-bottom: 8px;
}

.address {
    margin-bottom: 0;
    color: var(--ink-soft);
    font-size: 15px;
    font-weight: 800;
}

.map-link {
    position: relative;
    display: block;
    overflow: hidden;
    border: 1px solid rgba(168, 216, 255, 0.18);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--text);
    text-decoration: none;
    box-shadow: 0 12px 24px rgba(0, 47, 72, 0.1);
}

.map-link img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.map-link span {
    position: absolute;
    right: 10px;
    bottom: 10px;
    border: 1px solid rgba(168, 216, 255, 0.2);
    border-radius: 999px;
    background: rgba(6, 18, 45, 0.86);
    padding: 7px 10px;
    color: var(--text);
    font-size: 12px;
    font-weight: 900;
    box-shadow: 0 8px 20px rgba(0, 47, 72, 0.14);
}

.social-footer {
    display: flex;
    justify-content: center;
    gap: 14px;
    padding: 6px 0 0;
}

.social-footer a {
    display: grid;
    width: 48px;
    height: 48px;
    border: 1px solid var(--line);
    border-color: rgba(168, 216, 255, 0.18);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 24px rgba(0, 47, 72, 0.1);
    place-items: center;
}

.social-icon {
    position: relative;
    display: block;
    width: 24px;
    height: 24px;
}

.social-icon.instagram {
    border: 2px solid var(--text);
    border-radius: 8px;
}

.social-icon.instagram::before {
    content: "";
    position: absolute;
    top: 6px;
    left: 6px;
    width: 8px;
    height: 8px;
    border: 2px solid var(--text);
    border-radius: 999px;
}

.social-icon.instagram::after {
    content: "";
    position: absolute;
    top: 4px;
    right: 4px;
    width: 4px;
    height: 4px;
    border-radius: 999px;
    background: var(--text);
}

.social-icon.openchat {
    border-radius: 8px;
    background: #fae100;
}

.social-icon.openchat::before {
    content: "";
    position: absolute;
    right: 5px;
    bottom: -4px;
    width: 9px;
    height: 9px;
    background: #fae100;
    transform: rotate(45deg);
}

.social-icon.openchat::after {
    content: "";
    position: absolute;
    top: 8px;
    left: 6px;
    width: 12px;
    height: 4px;
    border-top: 2px solid #3c2f00;
    border-bottom: 2px solid #3c2f00;
}

.home-page {
    background:
        radial-gradient(circle at 8% 18%, rgba(255, 255, 255, 0.95) 0 98px, transparent 99px),
        radial-gradient(circle at 88% 28%, rgba(197, 222, 255, 0.82) 0 126px, transparent 127px),
        linear-gradient(180deg, #eff9ff 0%, #dcecff 52%, #eef8ff 100%);
}

.home-page .app-shell {
    width: min(100%, 390px);
    padding: 4px 4px 26px;
}

.reference-phone {
    min-height: calc(100vh - 8px);
    overflow: hidden;
    border: 4px solid rgba(255, 255, 255, 0.95);
    border-radius: 30px;
    background:
        radial-gradient(circle at 92% 6%, rgba(62, 111, 184, 0.26), transparent 28%),
        radial-gradient(circle at 10% 42%, rgba(89, 70, 134, 0.18), transparent 34%),
        linear-gradient(180deg, #12355f 0%, #090b24 42%, #050414 100%);
    padding: 18px 16px 22px;
    box-shadow: 0 28px 70px rgba(31, 68, 121, 0.3);
}

.phone-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 46px;
}

.phone-brand {
    color: #f4fbff;
    font-size: 18px;
    font-weight: 950;
    letter-spacing: -0.02em;
    text-decoration: none;
}

.phone-menu {
    display: grid;
    gap: 4px;
    width: 30px;
    padding: 4px;
}

.phone-menu span {
    display: block;
    height: 2px;
    border-radius: 999px;
    background: rgba(244, 251, 255, 0.92);
}

.phone-title {
    margin-bottom: 28px;
    text-align: center;
}

.phone-title p,
.stack-heading p {
    margin-bottom: 10px;
    color: #c8d9ff;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.14em;
}

.phone-title h1 {
    display: block;
    margin-bottom: 8px;
    color: #b9dcff;
    font-size: 23px;
    font-weight: 950;
    line-height: 1.12;
    text-shadow: 0 0 18px rgba(105, 156, 255, 0.2);
}

.phone-title span {
    display: block;
    max-width: 270px;
    margin: 0 auto;
    color: rgba(229, 238, 255, 0.82);
    font-size: 12px;
    font-weight: 650;
    line-height: 1.45;
}

.reference-card {
    position: relative;
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 15px;
    margin-bottom: 16px;
    border: 1px solid rgba(158, 170, 232, 0.34);
    border-radius: 18px;
    background:
        radial-gradient(circle at 96% 0%, rgba(84, 74, 142, 0.22), transparent 38%),
        linear-gradient(180deg, rgba(30, 40, 80, 0.74), rgba(19, 18, 48, 0.78));
    padding: 17px 16px;
    color: #f4fbff;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 20px 34px rgba(0, 0, 0, 0.22);
}

.reference-card::after {
    content: "";
    position: absolute;
    right: 14px;
    bottom: 14px;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(158, 170, 232, 0.18);
    border-radius: 999px;
    opacity: 0.45;
}

.card-avatar {
    display: grid;
    width: 48px;
    height: 48px;
    overflow: hidden;
    border: 2px solid rgba(229, 238, 255, 0.22);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #d8e6ff;
    font-size: 12px;
    font-weight: 950;
    place-items: center;
}

.card-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.icon-avatar {
    background:
        radial-gradient(circle at 35% 30%, rgba(168, 216, 255, 0.34), transparent 34%),
        rgba(255, 255, 255, 0.08);
}

.card-copy {
    min-width: 0;
}

.card-copy strong {
    display: block;
    margin-bottom: 6px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 950;
    letter-spacing: -0.01em;
}

.card-copy p,
.card-copy span,
.inline-link {
    color: rgba(229, 238, 255, 0.82);
    font-size: 12px;
    font-weight: 650;
    line-height: 1.55;
}

.inline-link {
    display: inline-flex;
    margin-top: 8px;
    color: #a8d8ff;
    text-decoration: none;
}

.date-reference-card {
    align-items: center;
}

.date-action-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px;
}

.home-page input {
    min-height: 42px;
    border: 1px solid rgba(168, 216, 255, 0.2);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    color: #f4fbff;
    font-size: 14px;
    font-weight: 850;
}

.home-page input::placeholder {
    color: rgba(229, 238, 255, 0.52);
}

.home-page input[type="date"],
.home-page input[type="date"]::-webkit-datetime-edit {
    color: #f4fbff;
}

.home-page button,
.home-page .primary-action {
    min-height: 42px;
    border: 1px solid rgba(168, 216, 255, 0.26);
    border-radius: 12px;
    background: linear-gradient(135deg, #1e5b8a, #122b5f);
    color: #fff;
    font-size: 13px;
    font-weight: 950;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

.reference-stack {
    margin-top: 18px;
}

.stack-heading {
    margin: 28px 0 14px;
    text-align: center;
}

.stack-heading h2 {
    margin-bottom: 0;
    color: #b9dcff;
    font-size: 22px;
    font-weight: 950;
}

.time-reference-card {
    cursor: pointer;
    transition: border-color 160ms ease, transform 160ms ease, background 160ms ease;
}

.time-reference-card input {
    position: absolute;
    inset: 0;
    opacity: 0;
}

.time-reference-card:has(input:checked) {
    border-color: rgba(168, 216, 255, 0.82);
    background:
        radial-gradient(circle at 96% 0%, rgba(80, 116, 200, 0.34), transparent 38%),
        linear-gradient(180deg, rgba(40, 58, 105, 0.84), rgba(22, 26, 64, 0.86));
    transform: translateY(-1px);
}

.time-reference-card.disabled {
    opacity: 0.56;
}

.time-reference-card .card-copy {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.time-reference-card .card-copy strong {
    margin-bottom: 0;
    font-size: 17px;
}

.time-reference-card .card-copy span {
    flex: 0 0 auto;
    color: rgba(229, 238, 255, 0.76);
    font-size: 11px;
    font-weight: 850;
}

.customer-reference-card {
    margin-top: 20px;
}

.customer-fields {
    display: grid;
    gap: 9px;
    margin: 10px 0 12px;
}

.phone-social {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding-top: 8px;
}

.phone-social a {
    display: grid;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(168, 216, 255, 0.2);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    place-items: center;
}

.home-page .social-icon.instagram {
    border-color: #f4fbff;
}

.home-page .social-icon.instagram::before {
    border-color: #f4fbff;
}

.home-page .social-icon.instagram::after {
    background: #f4fbff;
}

.showroom-page {
    background: #f3f7fb;
    color: #07182b;
    font-family: Georgia, "Times New Roman", "Noto Serif KR", serif;
}

.showroom-shell {
    width: min(100%, 1280px);
    margin: 0 auto;
    padding-bottom: 0;
}

.showroom-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: start;
    min-height: 100vh;
}

.showroom-column {
    min-width: 0;
    background: #fffdf9;
    box-shadow: inset -1px 0 0 rgba(7, 24, 43, 0.12);
}

.brand-hero {
    position: relative;
    min-height: 930px;
    overflow: hidden;
    background: #03182a;
    color: #fff;
    padding: 38px 36px;
}

.brand-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(2, 16, 29, 0.22), rgba(2, 16, 29, 0.84)),
        url("/images/kakao/kea-place-04.jpg") center / cover;
    opacity: 0.94;
}

.brand-nav,
.hero-copy,
.scroll-sign {
    position: relative;
    z-index: 1;
}

.brand-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-nav strong {
    color: #fff;
    font-size: 36px;
    font-weight: 400;
    letter-spacing: -0.03em;
}

.brand-nav span,
.brand-nav span::before,
.brand-nav span::after {
    display: block;
    width: 32px;
    height: 3px;
    border-radius: 999px;
    background: #f8dfbc;
}

.brand-nav span {
    position: relative;
}

.brand-nav span::before,
.brand-nav span::after {
    content: "";
    position: absolute;
    left: 0;
}

.brand-nav span::before {
    top: -9px;
}

.brand-nav span::after {
    top: 9px;
}

.hero-copy {
    margin-top: 250px;
}

.hero-copy p {
    margin-bottom: 22px;
    font-size: 18px;
    font-weight: 500;
}

.hero-copy h1 {
    display: block;
    margin-bottom: 2px;
    color: #fff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 68px;
    font-weight: 400;
    letter-spacing: 0.02em;
}

.hero-copy em {
    display: block;
    margin-bottom: 42px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 30px;
    font-style: italic;
}

.hero-copy > span {
    display: block;
    margin-bottom: 36px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.9;
}

.kakao-cta,
.wide-dark-button,
.send-booking {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 58px;
    border-radius: 5px;
    background: #061d32;
    color: #fff;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    font-weight: 800;
    text-decoration: none;
}

.kakao-cta {
    min-width: 250px;
}

.scroll-sign {
    position: absolute;
    right: 0;
    bottom: 42px;
    left: 0;
    display: grid;
    justify-items: center;
    gap: 12px;
    color: #fff;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 12px;
    font-weight: 800;
}

.scroll-sign i {
    display: block;
    width: 1px;
    height: 42px;
    background: rgba(255, 255, 255, 0.84);
}

.light-section,
.light-card {
    padding: 48px 36px;
    background: #fffdf9;
    color: #07182b;
}

.section-kicker {
    margin-bottom: 30px;
    color: #07182b;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.light-section h2,
.light-card h2 {
    color: #07182b;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 30px;
    font-weight: 400;
    line-height: 1.35;
}

.body-copy {
    color: #263b4f;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.9;
}

.about-list {
    display: grid;
    gap: 28px;
    margin-top: 42px;
}

.about-list div,
.info-list article {
    display: grid;
    grid-template-columns: 72px 1fr;
    align-items: start;
    gap: 18px;
}

.about-list span,
.info-list span {
    display: grid;
    width: 42px;
    height: 42px;
    color: #07182b;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 24px;
    place-items: center;
}

.about-list p,
.info-list p {
    margin: 0;
    color: #263b4f;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.7;
}

.about-list small {
    color: #5d6b76;
    font-size: 14px;
}

.monthly-section {
    border-top: 1px solid rgba(7, 24, 43, 0.12);
}

.split-title {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 30px;
}

.split-title h2 {
    margin-bottom: 6px;
}

.split-title p {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-weight: 700;
}

.split-title a,
.outline-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    border: 1px solid rgba(7, 24, 43, 0.24);
    border-radius: 8px;
    padding: 0 18px;
    color: #07182b;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-weight: 800;
    text-decoration: none;
}

.monthly-list {
    display: grid;
    gap: 18px;
}

.monthly-list article {
    display: grid;
    grid-template-columns: 132px 1fr;
    align-items: center;
    gap: 28px;
}

.monthly-list img {
    width: 132px;
    height: 92px;
    border-radius: 8px;
    object-fit: cover;
}

.monthly-list strong,
.monthly-list span {
    display: block;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
}

.monthly-list strong {
    margin-bottom: 10px;
}

.wide-dark-button {
    width: 100%;
    margin-top: 28px;
}

.gallery-card {
    margin: 34px 14px 0;
    border: 1px solid rgba(7, 24, 43, 0.16);
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 18px 38px rgba(7, 24, 43, 0.12);
}

.gallery-card > p,
.info-card > p {
    margin-bottom: 36px;
    color: #4e5c68;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-weight: 700;
}

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

.gallery-grid img {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 8px;
    object-fit: cover;
}

.outline-button {
    width: 100%;
    margin-top: 28px;
}

.dark-card {
    margin: 0 14px 42px;
    padding: 48px 28px;
    border-radius: 0 0 12px 12px;
    background: #03182a;
    color: #fff;
}

.dark-card h2 {
    color: #fff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 31px;
    font-weight: 400;
    text-align: center;
}

.dark-card > p {
    margin-bottom: 34px;
    color: rgba(255, 255, 255, 0.84);
    text-align: center;
}

.reservation-card label {
    margin: 20px 0 10px;
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    text-transform: none;
}

.reservation-card input,
.reservation-card select,
.reservation-card textarea {
    width: 100%;
    min-height: 58px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 6px;
    background: #fff;
    color: #07182b;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 15px;
    font-weight: 700;
    padding: 0 16px;
}

.reservation-card textarea {
    min-height: 110px;
    padding: 16px;
    resize: vertical;
}

.select-row {
    display: grid;
    grid-template-columns: 1fr 72px;
    gap: 10px;
}

.select-row button {
    border-radius: 6px;
    background: #f5dab3;
    color: #07182b;
    font-weight: 900;
}

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

.time-segment-list label {
    margin: 0;
}

.time-segment-list input {
    position: absolute;
    opacity: 0;
}

.time-segment-list span {
    display: grid;
    min-height: 48px;
    border-radius: 6px;
    background: #fff;
    color: #07182b;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-weight: 800;
    place-items: center;
}

.time-segment-list label:has(input:checked) span {
    background: #f5dab3;
}

.time-segment-list label.disabled {
    opacity: 0.45;
}

.send-booking {
    width: 100%;
    margin-top: 24px;
    border: 0;
    background: #f5dab3;
    color: #07182b;
}

.reservation-note {
    margin-top: 24px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 8px;
    padding: 18px;
}

.reservation-note p {
    margin: 0 0 8px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 13px;
}

.info-card {
    min-height: 930px;
    padding-top: 54px;
    border-left: 1px solid rgba(7, 24, 43, 0.08);
    text-align: center;
}

.info-list {
    display: grid;
}

.info-list article {
    border-top: 1px solid rgba(7, 24, 43, 0.14);
    padding: 36px 0;
    text-align: left;
}

.info-list strong {
    display: block;
    margin-bottom: 10px;
    color: #07182b;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 17px;
}

.location-dark-card {
    margin: 0;
    border-radius: 0;
    text-align: left;
}

.location-dark-card .section-kicker,
.location-dark-card h2 {
    color: #fff;
    text-align: left;
}

.map-frame {
    display: block;
    overflow: hidden;
    margin: 24px 0;
    border-radius: 8px;
}

.map-frame img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 11;
    object-fit: cover;
}

.location-address {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.8;
}

.map-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 22px 0 40px;
}

.map-buttons a {
    display: grid;
    min-height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 6px;
    color: #f5dab3;
    font-weight: 900;
    place-items: center;
    text-decoration: none;
}

.parking-box {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 34px;
}

.parking-box strong {
    display: block;
    margin-bottom: 14px;
    color: #fff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 26px;
    font-weight: 400;
}

.parking-box span {
    color: #fff;
    font-weight: 700;
}

.parking-box b {
    color: #f5dab3;
    font-size: 54px;
}

.sign-photo {
    overflow: hidden;
    margin-bottom: 34px;
    border-radius: 8px;
    background: #0d2439;
}

.sign-photo img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.contact-list {
    display: grid;
    gap: 24px;
}

.contact-list p {
    display: grid;
    grid-template-columns: 36px 1fr;
    margin: 0;
    color: #fff;
}

.contact-list span {
    color: #f5dab3;
    font-size: 20px;
}

.contact-list strong,
.contact-list em {
    display: block;
    font-style: normal;
}

.contact-list em {
    grid-column: 2;
    margin-top: 6px;
    color: rgba(255, 255, 255, 0.84);
    line-height: 1.5;
}

.bottom-showroom-nav {
    position: sticky;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 20;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    width: min(100%, 760px);
    margin: -1px auto 0;
    border-radius: 12px 12px 0 0;
    background: #03182a;
    box-shadow: 0 -12px 30px rgba(7, 24, 43, 0.16);
}

.bottom-showroom-nav a {
    display: grid;
    gap: 4px;
    min-height: 74px;
    color: #fff;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 11px;
    font-weight: 700;
    place-items: center;
    text-decoration: none;
}

.bottom-showroom-nav span {
    font-size: 26px;
}

.bottom-showroom-nav .active {
    border-radius: 999px 999px 0 0;
    background: rgba(0, 0, 0, 0.16);
    transform: translateY(-18px);
}

@media (max-width: 980px) {
    .showroom-shell {
        overflow-x: auto;
    }

    .showroom-grid {
        width: 1080px;
        grid-template-columns: repeat(3, 360px);
    }

    .bottom-showroom-nav {
        width: 720px;
    }
}

@media (max-width: 380px) {
    .slot-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .admin-form,
    .admin-blocked-row,
    .my-booking-row,
    .card-actions form {
        grid-template-columns: 1fr;
    }
}

/* Showroom reference layout */
.showroom-page {
    overflow-x: auto;
    background: #f3f7fb;
    color: #061729;
    font-family: "Avenir Next", "Pretendard", "Apple SD Gothic Neo", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.showroom-page .showroom-shell {
    width: min(100%, 1260px);
    min-width: 1080px;
    margin: 0 auto;
    padding: 0 0 102px;
}

.showroom-page .showroom-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    align-items: start;
    min-height: 100vh;
}

.showroom-page .showroom-column {
    overflow: hidden;
    min-width: 0;
    background: #fffbf4;
    box-shadow: 0 0 0 1px rgba(5, 24, 42, 0.12);
}

.showroom-page .brand-hero {
    position: relative;
    display: flex;
    min-height: 920px;
    flex-direction: column;
    overflow: hidden;
    padding: 40px 34px;
    background: #061729;
    color: #fff;
}

.showroom-page .brand-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0, 12, 24, 0.1), rgba(0, 12, 24, 0.16) 34%, rgba(0, 12, 24, 0.82)),
        url("/images/kakao/kea-place-04.jpg") center / cover;
    filter: saturate(0.96);
}

.showroom-page .brand-nav,
.showroom-page .hero-copy,
.showroom-page .scroll-sign {
    position: relative;
    z-index: 1;
}

.showroom-page .brand-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.showroom-page .brand-nav strong,
.showroom-page .hero-copy h1,
.showroom-page .light-section h2,
.showroom-page .light-card h2,
.showroom-page .dark-card h2,
.showroom-page .parking-box strong {
    font-family: Georgia, "Times New Roman", "Noto Serif KR", serif;
    font-weight: 400;
    letter-spacing: 0;
}

.showroom-page .brand-nav strong {
    color: #fff;
    font-size: 36px;
    line-height: 1;
}

.showroom-page .brand-menu-toggle {
    display: grid;
    width: 42px;
    height: 42px;
    min-height: 0;
    border: 0;
    border-radius: 0;
    padding: 0;
    background: transparent;
    box-shadow: none;
    place-items: center;
}

.showroom-page .brand-menu-toggle span:not(.sr-only),
.showroom-page .brand-menu-toggle span:not(.sr-only)::before,
.showroom-page .brand-menu-toggle span:not(.sr-only)::after {
    display: block;
    width: 34px;
    height: 3px;
    border-radius: 999px;
    background: #f0d6ae;
}

.showroom-page .brand-menu-toggle span:not(.sr-only) {
    position: relative;
}

.showroom-page .brand-menu-toggle span:not(.sr-only)::before,
.showroom-page .brand-menu-toggle span:not(.sr-only)::after {
    content: "";
    position: absolute;
    left: 0;
}

.showroom-page .brand-menu-toggle span:not(.sr-only)::before {
    top: -9px;
}

.showroom-page .brand-menu-toggle span:not(.sr-only)::after {
    top: 9px;
}

.showroom-page .brand-menu {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    z-index: 5;
    display: grid;
    gap: 2px;
    width: min(232px, calc(100vw - 48px));
    padding: 10px;
    border: 1px solid rgba(240, 214, 174, 0.28);
    border-radius: 10px;
    background: rgba(3, 24, 42, 0.94);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.28);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
    backdrop-filter: blur(14px);
}

.showroom-page .brand-menu.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.showroom-page .brand-menu a {
    display: flex;
    align-items: center;
    min-height: 36px;
    border-radius: 6px;
    padding: 0 12px;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1;
    text-decoration: none;
}

.showroom-page .brand-menu a:hover,
.showroom-page .brand-menu a:focus-visible {
    background: rgba(240, 214, 174, 0.14);
    color: #f0d6ae;
}

.showroom-page .hero-copy {
    margin-top: auto;
    padding-bottom: 124px;
}

.showroom-page .hero-copy p {
    margin: 0 0 24px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 17px;
    font-weight: 500;
    line-height: 1.7;
}

.showroom-page .hero-copy h1 {
    margin: 0 0 2px;
    color: #fff;
    font-size: 74px;
    line-height: 1;
}

.showroom-page .hero-copy em {
    display: block;
    margin: 0 0 46px;
    color: rgba(255, 255, 255, 0.84);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 30px;
    font-style: italic;
}

.showroom-page .hero-copy > span {
    display: block;
    margin: 0 0 34px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.9;
}

.showroom-page .hero-cta,
.showroom-page .wide-dark-button,
.showroom-page .send-booking {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    border: 0;
    border-radius: 5px;
    background: #061d32;
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    text-decoration: none;
    box-shadow: none;
}

.showroom-page .hero-cta {
    width: 260px;
}

.showroom-page .scroll-sign {
    position: absolute;
    right: 0;
    bottom: 40px;
    left: 0;
    display: grid;
    gap: 12px;
    justify-items: center;
    color: rgba(255, 255, 255, 0.86);
    font-size: 12px;
    font-weight: 800;
}

.showroom-page .scroll-sign i {
    display: block;
    width: 1px;
    height: 44px;
    background: rgba(255, 255, 255, 0.76);
}

.showroom-page .light-section,
.showroom-page .light-card {
    background:
        radial-gradient(circle at 0 0, rgba(224, 199, 164, 0.13), transparent 38%),
        #fffbf4;
    color: #061729;
    padding: 48px 34px;
}

.showroom-page .section-kicker {
    margin: 0 0 28px;
    color: #061729;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.showroom-page .light-section h2,
.showroom-page .light-card h2,
.showroom-page .dark-card h2 {
    margin: 0;
    color: #061729;
    font-size: 30px;
    line-height: 1.35;
    word-break: keep-all;
}

.showroom-page .about-section h2 {
    font-size: 27px;
}

.showroom-page .body-copy,
.showroom-page .gallery-card > p,
.showroom-page .info-card > p {
    color: #304151;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.9;
}

.showroom-page .body-copy {
    margin: 22px 0 0;
}

.showroom-page .about-list {
    display: grid;
    gap: 30px;
    margin-top: 44px;
}

.showroom-page .about-list div,
.showroom-page .info-list article {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 18px;
    align-items: start;
}

.showroom-page .about-list span,
.showroom-page .info-list span {
    display: grid;
    width: 42px;
    height: 42px;
    color: #061729;
    font-size: 24px;
    place-items: center;
}

.showroom-page .about-list p,
.showroom-page .info-list p {
    margin: 0;
    color: #233647;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.7;
}

.showroom-page .about-list small {
    color: #60707d;
    font-size: 13px;
    font-weight: 600;
}

.showroom-page .monthly-section {
    border-top: 1px solid rgba(6, 23, 41, 0.12);
}

.showroom-page .split-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 28px;
}

.showroom-page .split-title h2 {
    font-size: 27px;
}

.showroom-page .split-title p {
    margin: 6px 0 0;
    color: #304151;
    font-size: 14px;
    font-weight: 700;
}

.showroom-page .split-title a,
.showroom-page .outline-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    border: 1px solid rgba(6, 23, 41, 0.26);
    border-radius: 8px;
    padding: 0 18px;
    color: #061729;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
}

.showroom-page .monthly-list {
    display: grid;
    gap: 16px;
}

.showroom-page .monthly-list article {
    display: grid;
    grid-template-columns: 128px 1fr;
    gap: 26px;
    align-items: center;
}

.showroom-page .monthly-list img {
    width: 128px;
    height: 92px;
    border-radius: 7px;
    object-fit: cover;
}

.showroom-page .monthly-list strong,
.showroom-page .monthly-list span {
    display: block;
    color: #061729;
    font-size: 15px;
    font-weight: 700;
}

.showroom-page .monthly-list strong {
    margin-bottom: 10px;
}

.showroom-page .wide-dark-button {
    width: 100%;
    margin-top: 28px;
}

.showroom-page .gallery-card,
.showroom-page .info-card {
    margin: 32px 16px 0;
    border: 1px solid rgba(6, 23, 41, 0.14);
    border-radius: 14px;
    box-shadow: 0 16px 42px rgba(6, 23, 41, 0.12);
    text-align: center;
}

.showroom-page .gallery-card {
    padding-top: 62px;
}

.showroom-page .gallery-card > p,
.showroom-page .info-card > p {
    margin: 10px 0 36px;
}

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

.showroom-page .gallery-grid img {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 8px;
    object-fit: cover;
}

.showroom-page .outline-button {
    width: 100%;
    margin-top: 28px;
}

.showroom-page .dark-card {
    margin: 0 16px 42px;
    padding: 48px 28px;
    border-radius: 0 0 10px 10px;
    background:
        radial-gradient(circle at 86% 8%, rgba(38, 85, 116, 0.4), transparent 32%),
        linear-gradient(180deg, #06233b 0%, #001524 100%);
    color: #fff;
}

.showroom-page .dark-card h2 {
    color: #fff;
    text-align: center;
}

.showroom-page .dark-card > p {
    margin: 12px 0 34px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
    font-weight: 700;
    text-align: center;
}

.showroom-page .reservation-card label {
    display: block;
    margin: 20px 0 10px;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0;
}

.showroom-page .reservation-card input,
.showroom-page .reservation-card select,
.showroom-page .reservation-card textarea {
    width: 100%;
    min-height: 58px;
    border: 1px solid rgba(6, 23, 41, 0.18);
    border-radius: 6px;
    background: #fff;
    color: #061729;
    font-size: 15px;
    font-weight: 700;
    padding: 0 16px;
}

.showroom-page .reservation-card input + input {
    margin-top: 12px;
}

.showroom-page .reservation-card input::placeholder,
.showroom-page .reservation-card textarea::placeholder {
    color: rgba(6, 23, 41, 0.46);
}

.showroom-page .reservation-card input[type="date"],
.showroom-page .reservation-card input[type="date"]::-webkit-datetime-edit {
    color: #061729;
}

.showroom-page .reservation-card textarea {
    min-height: 112px;
    padding: 16px;
    resize: vertical;
}

.showroom-page .select-row {
    display: grid;
    grid-template-columns: 1fr 72px;
    gap: 10px;
}

.showroom-page .select-row button {
    min-height: 58px;
    border: 0;
    border-radius: 6px;
    background: #f1d4a6;
    color: #061729;
    font-size: 14px;
    font-weight: 900;
    box-shadow: none;
}

.showroom-page .time-segment-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.showroom-page .time-segment-list label {
    position: relative;
    margin: 0;
}

.showroom-page .time-segment-list input {
    position: absolute;
    inset: 0;
    width: 100%;
    min-height: 0;
    opacity: 0;
}

.showroom-page .time-segment-list span {
    display: grid;
    min-height: 48px;
    border-radius: 6px;
    background: #fff;
    color: #061729;
    font-size: 14px;
    font-weight: 800;
    place-items: center;
}

.showroom-page .time-segment-list label:has(input:checked) span {
    background: #f1d4a6;
}

.showroom-page .time-segment-list label.disabled {
    opacity: 0.42;
}

.showroom-page .send-booking {
    width: 100%;
    margin-top: 24px;
    background: #f1d4a6;
    color: #061729;
}

.showroom-page .reservation-note {
    margin-top: 24px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    padding: 18px;
}

.showroom-page .reservation-note p {
    margin: 0 0 8px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 12px;
    line-height: 1.6;
}

.showroom-page .info-card {
    min-height: 930px;
    padding-top: 62px;
}

.showroom-page .info-list {
    display: grid;
}

.showroom-page .info-list article {
    border-top: 1px solid rgba(6, 23, 41, 0.14);
    padding: 35px 0;
    text-align: left;
}

.showroom-page .info-list strong {
    display: block;
    margin-bottom: 9px;
    color: #061729;
    font-size: 16px;
    font-weight: 900;
}

.showroom-page .location-dark-card {
    margin: 0;
    border-radius: 0;
    text-align: left;
}

.showroom-page .location-dark-card .section-kicker,
.showroom-page .location-dark-card h2 {
    color: #fff;
    text-align: left;
}

.showroom-page .location-dark-card h2 {
    font-size: 22px;
}

.showroom-page .map-frame {
    display: block;
    overflow: hidden;
    margin: 24px 0;
    border-radius: 8px;
}

.showroom-page .map-frame img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 11;
    object-fit: cover;
}

.showroom-page .location-address {
    margin: 0;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.8;
}

.showroom-page .map-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 22px 0 38px;
}

.showroom-page .map-buttons a {
    display: grid;
    min-height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.38);
    border-radius: 6px;
    color: #f1d4a6;
    font-size: 14px;
    font-weight: 900;
    place-items: center;
    text-decoration: none;
}

.showroom-page .parking-box {
    display: flex;
    align-items: end;
    justify-content: space-between;
    margin-bottom: 18px;
}

.showroom-page .parking-box strong {
    display: block;
    margin-bottom: 12px;
    color: #fff;
    font-size: 26px;
}

.showroom-page .parking-box span {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
}

.showroom-page .parking-box b {
    color: #f1d4a6;
    font-size: 52px;
}

.showroom-page .sign-photo {
    overflow: hidden;
    margin-bottom: 34px;
    border-radius: 8px;
    background: #082238;
}

.showroom-page .sign-photo img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.showroom-page .store-showcase {
    overflow: hidden;
    margin: 0 0 38px;
    border-radius: 12px;
    background: #fffbf4;
    padding: 12px;
}

.showroom-page .store-slider {
    display: flex;
    overflow-x: auto;
    gap: 12px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.showroom-page .store-slider::-webkit-scrollbar {
    display: none;
}

.showroom-page .store-slider img {
    display: block;
    flex: 0 0 88%;
    width: 88%;
    aspect-ratio: 4 / 3;
    border-radius: 8px;
    object-fit: cover;
    scroll-snap-align: center;
}

.showroom-page .contact-card {
    margin: 0;
    border-radius: 0;
}

.showroom-page .contact-card .section-kicker,
.showroom-page .contact-card h2 {
    color: #fff;
    text-align: left;
}

.showroom-page .contact-list {
    display: grid;
    gap: 23px;
}

.showroom-page .contact-list p {
    display: grid;
    grid-template-columns: 36px 1fr;
    margin: 0;
    color: #fff;
}

.showroom-page .contact-list span {
    color: #f1d4a6;
    font-size: 20px;
}

.showroom-page .contact-list strong,
.showroom-page .contact-list em {
    display: block;
    font-style: normal;
}

.showroom-page .contact-list strong {
    font-size: 14px;
    font-weight: 900;
}

.showroom-page .contact-list em {
    grid-column: 2;
    margin-top: 6px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 14px;
    line-height: 1.5;
}

.showroom-page .bottom-showroom-nav {
    position: sticky;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 20;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    width: 100%;
    min-width: 720px;
    margin: 0 auto;
    border-radius: 12px 12px 0 0;
    background: #061d32;
    box-shadow: 0 -16px 32px rgba(6, 23, 41, 0.18);
}

.showroom-page .bottom-showroom-nav a {
    display: grid;
    min-height: 78px;
    gap: 4px;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    place-items: center;
    text-decoration: none;
}

.showroom-page .bottom-showroom-nav span {
    font-size: 25px;
}

.showroom-page .bottom-showroom-nav .active {
    width: 96px;
    height: 96px;
    min-height: 96px;
    border-radius: 999px;
    background: #05192c;
    transform: translateY(-24px);
}

@media (max-width: 1080px) {
    .showroom-page .showroom-shell {
        width: 1080px;
        min-width: 1080px;
    }
}

/* Single vertical page: no horizontal canvas */
.showroom-page {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

.showroom-page .showroom-shell {
    width: 100%;
    min-width: 0;
    max-width: 520px;
    margin: 0 auto;
    padding: 0;
    overflow-x: hidden;
}

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

.showroom-page .showroom-grid {
    display: block;
    width: 100%;
    min-height: 0;
}

.showroom-page .showroom-column {
    width: 100%;
    overflow: visible;
    box-shadow: none;
}

.showroom-page .brand-hero {
    min-height: 100svh;
    max-height: 920px;
    padding: clamp(28px, 7vw, 40px) clamp(22px, 7vw, 34px);
}

.showroom-page .brand-nav strong {
    font-size: clamp(30px, 8vw, 38px);
}

.showroom-page .hero-copy {
    padding-bottom: clamp(100px, 18vh, 130px);
}

.showroom-page .hero-copy p {
    font-size: clamp(14px, 4vw, 17px);
}

.showroom-page .hero-copy h1 {
    font-size: clamp(58px, 17vw, 76px);
}

.showroom-page .hero-copy em {
    margin-bottom: clamp(32px, 7vh, 46px);
    font-size: clamp(25px, 7vw, 30px);
}

.showroom-page .hero-copy > span {
    font-size: clamp(13px, 3.8vw, 15px);
}

.showroom-page .hero-cta {
    width: min(100%, 260px);
}

.showroom-page .light-section,
.showroom-page .light-card,
.showroom-page .dark-card {
    width: 100%;
    margin: 0;
    border-radius: 0;
}

.showroom-page .light-section,
.showroom-page .light-card {
    padding: clamp(38px, 10vw, 52px) clamp(22px, 7vw, 34px);
}

.showroom-page .dark-card {
    padding: clamp(40px, 10vw, 52px) clamp(22px, 7vw, 34px);
}

.showroom-page .gallery-card,
.showroom-page .info-card {
    border-right: 0;
    border-left: 0;
    box-shadow: none;
}

.showroom-page .info-card {
    min-height: 0;
}

.showroom-page .about-section,
.showroom-page .monthly-section,
.showroom-page .gallery-card,
.showroom-page .info-card,
.showroom-page .reservation-card,
.showroom-page .location-dark-card {
    min-height: min(100svh, 900px);
    scroll-margin-top: 0;
}

.showroom-page .gallery-grid {
    gap: clamp(10px, 3vw, 14px);
}

.showroom-page .monthly-list article {
    grid-template-columns: minmax(104px, 34%) 1fr;
    gap: clamp(18px, 6vw, 26px);
}

.showroom-page .monthly-list img {
    width: 100%;
    max-width: 128px;
}

.showroom-page .about-list div,
.showroom-page .info-list article {
    grid-template-columns: 56px 1fr;
}

.showroom-page .select-row {
    grid-template-columns: minmax(0, 1fr) 64px;
}

.showroom-page .time-segment-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.showroom-page .map-buttons {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.showroom-page .bottom-showroom-nav {
    display: none;
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    width: min(100%, 520px);
    min-width: 0;
    margin: 0 auto;
    border-radius: 14px 14px 0 0;
}

.showroom-page .bottom-showroom-nav a {
    min-width: 0;
    min-height: 70px;
    font-size: 9px;
}

.showroom-page .bottom-showroom-nav span {
    font-size: 22px;
}

.showroom-page .bottom-showroom-nav .active {
    width: 78px;
    height: 78px;
    min-height: 78px;
    transform: translateY(-18px);
}

@media (min-width: 760px) {
    .showroom-page {
        background:
            linear-gradient(90deg, rgba(6, 29, 50, 0.04), transparent 18%, transparent 82%, rgba(6, 29, 50, 0.04)),
            #edf3f8;
    }

    .showroom-page .showroom-shell {
        box-shadow: 0 0 0 1px rgba(6, 23, 41, 0.1);
    }
}

@media (max-width: 390px) {
    .showroom-page .light-section h2,
    .showroom-page .light-card h2,
    .showroom-page .dark-card h2 {
        font-size: 27px;
    }

    .showroom-page .about-section h2,
    .showroom-page .split-title h2 {
        font-size: 25px;
    }

    .showroom-page .reservation-card input,
    .showroom-page .reservation-card select,
    .showroom-page .reservation-card textarea,
    .showroom-page .select-row button {
        min-height: 54px;
    }
}
