:root {
    --ink: #333333;
    --stone: #a6aaa9;
    --sand: #eae2d8;
    --ivory: #f7f2ec;
    --rosewood: #8f6b60;
    --paper: #fffdf9;
    --line: rgba(51, 51, 51, 0.12);
    --success: #466b4c;
    --danger: #8a3d36;
    --muted: #6f7473;
    --review-gold: #f7b500;
    --review-ash: #cfd2d6;
    --shadow: 0 24px 70px rgba(34, 34, 34, 0.12);
    --radius-lg: 28px;
    --radius-md: 18px;
    --radius-sm: 12px;
}
::selection {
    background: transparent;
    color: var(--stone); ;
    
  }
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}
button,
a,
[role="button"],
.burger,
.nav-burger,
img,
.burger * {
  -webkit-tap-highlight-color: transparent;
} 
body {
    margin: 0;
    font-family: "Manrope", sans-serif;
    color: var(--ink);
    background:
        radial-gradient(circle at top left, rgba(166, 170, 169, 0.18), transparent 30%),
        linear-gradient(180deg, #f6f1eb 0%, #fcfaf7 45%, #f2ebe2 100%);
}

body.nav-open,
body.modal-open {
    overflow: hidden;
}

.admin-body {
    overflow-x: hidden;
}

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

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

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

.site-shell-minimal {
    width: min(960px, calc(100% - 24px));
}

.admin-shell {
    width: min(1240px, 100%);
    margin: 0 auto;
    /* padding: 0 16px 32px; */
}

.admin-app-shell {
    display: grid;
    grid-template-columns: minmax(260px, 290px) minmax(0, 1fr);
    min-height: 100vh;
    transition: grid-template-columns 0.56s cubic-bezier(0.22, 1, 0.36, 1);
}

.admin-main-shell {
    min-width: 0;
    overflow-x: hidden;
    transition: transform 0.56s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.36s ease;
    will-change: transform, opacity;
}

.admin-sidebar-open {
    position: fixed;
    top: 18px;
    left: 18px;
    z-index: 65;
    padding: 0;
    min-width: auto;
    min-height: auto;
    border: 0;
    background: transparent;
    box-shadow: none;
    color: var(--ink);
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transform: translateX(-12px);
    transition: opacity 0.42s ease, transform 0.56s cubic-bezier(0.22, 1, 0.36, 1);
}

.admin-sidebar-scrim {
    position: fixed;
    inset: 0;
    z-index: 64;
    background: rgba(31, 31, 31, 0.26);
}

.admin-sidebar-scrim[hidden] {
    display: none;
}

.admin-sidebar {
    position: sticky;
    top: 20px;
    align-self: start;
    display: grid;
    align-content: start;
    gap: 20px;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    overflow-x: hidden;
    padding: 24px 20px;
    margin: 20px 0;
    background: rgba(255, 255, 255, 0.68);
    backdrop-filter: blur(16px);
    border-right: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 32px;
    box-shadow: var(--shadow);
    transition: transform 0.56s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.36s ease;
    z-index: 65;
    direction: rtl;
    scrollbar-width: thin;
    scrollbar-color: rgba(111, 116, 115, 0.45) transparent;
    will-change: transform, opacity;
}

.admin-sidebar::-webkit-scrollbar {
    width: 8px;
}

.admin-sidebar::-webkit-scrollbar-track {
    background: transparent;
}

.admin-sidebar::-webkit-scrollbar-thumb {
    background: rgba(111, 116, 115, 0.45);
    border-radius: 999px;
}

.admin-sidebar::-webkit-scrollbar-thumb:hover {
    background: rgba(111, 116, 115, 0.65);
}

.admin-sidebar > * {
    direction: ltr;
}

.admin-sidebar-top {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 10px;
    min-width: 0;
}

.admin-sidebar-close {
    flex-shrink: 0;
    padding: 0;
    min-width: auto;
    min-height: auto;
    border: 0;
    background: transparent;
    box-shadow: none;
    color: var(--danger);
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
}

.admin-brand {
    flex: 1 1 auto;
    min-width: 0;
    margin-bottom: 8px;
    gap: 0;
}

.admin-sidebar-card {
    display: grid;
    gap: 6px;
    padding: 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(255, 255, 255, 0.45);
    box-shadow: var(--shadow);
    min-width: 0;
}

.admin-sidebar-card p,
.admin-nav-link {
    color: var(--muted);
}

.admin-sidebar-plan {
    display: inline-flex;
    width: fit-content;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(51, 51, 51, 0.06);
    color: var(--ink);
    font-size: 0.76rem;
    font-weight: 700;
}

.admin-sidebar-nav {
    display: grid;
    gap: 10px;
}

.admin-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 46px;
    padding: 0 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(51, 51, 51, 0.08);
    transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
    min-width: 0;
}

.admin-nav-link:hover {
    transform: translateX(2px);
    border-color: rgba(143, 107, 96, 0.24);
    color: var(--ink);
}

.admin-nav-link.is-active {
    background: var(--ink);
    color: white;
    border-color: transparent;
}

.admin-nav-link.is-locked {
    background: rgba(239, 235, 230, 0.82);
    border-color: rgba(51, 51, 51, 0.08);
    color: var(--muted);
}

.admin-nav-link.is-locked:hover {
    transform: none;
    color: var(--muted);
    border-color: rgba(51, 51, 51, 0.08);
}

.admin-nav-lock {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(51, 51, 51, 0.08);
    color: var(--ink);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.admin-nav-link.is-active .admin-nav-lock {
    background: rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.92);
}

.admin-body.admin-sidebar-collapsed .admin-app-shell {
    grid-template-columns: 0 minmax(0, 1fr);
}

.admin-body.admin-sidebar-collapsed .admin-sidebar {
    transform: translateX(calc(-100% - 28px));
    opacity: 0;
    pointer-events: none;
}

.admin-body.admin-sidebar-collapsed .admin-sidebar-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
}

.admin-body.admin-sidebar-transitioning:not(.admin-sidebar-collapsed) .admin-main-shell {
    transform: translateX(10px) scale(0.994);
    opacity: 0.97;
}

.admin-body.admin-sidebar-transitioning.admin-sidebar-collapsed .admin-main-shell {
    transform: translateX(-6px) scale(0.997);
    opacity: 0.98;
}

.admin-body.admin-sidebar-transitioning .admin-sidebar {
    opacity: 0.98;
}

.site-header,
.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding: 24px 0;
}

.site-header {
    position: relative;
}

.site-header-minimal {
    padding: 18px 0 10px;
}

.site-header-minimal .brand {
    min-width: 0;
}

.site-header-minimal .brand span:last-child {
    min-width: 0;
}

.site-minimal-return {
    flex-shrink: 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
}

.brand strong,
.site-nav a,
.admin-header h1,
.section-heading h2,
.hero h1,
.hero-panel h2,
.admin-login-card h1 {
    font-family: "Cormorant Garamond", serif;
}

.brand strong {
    display: block;
    font-size: 1.65rem;
}

.brand small {
    display: block;
    color: var(--muted);
}

.site-nav,
.admin-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.admin-actions-planning {
    align-items: flex-end;
}

.site-nav-panel {
    display: flex;
    align-items: center;
}

.site-nav-item {
    display: flex;
    align-items: center;
}

.site-nav-item-dropdown {
    position: relative;
}

.site-nav-toggle {
    display: none;
    align-items: center;
    gap: 8px;
    min-height: 48px;
    padding: 0 16px;
    border: 1px solid rgba(51, 51, 51, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    color: var(--ink);
    cursor: pointer;
}

.site-nav-icon {
    display: grid;
    gap: 4px;
}

.site-nav-icon span {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
}

.site-nav-toggle strong {
    font-size: 0.92rem;
}

.site-nav a,
.site-nav-dropdown-toggle {
    padding: 10px 16px;
    border-radius: 999px;
    color: var(--muted);
}

.site-nav-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.site-nav-dropdown-arrow {
    font-size: 0.75rem;
    transition: transform 0.2s ease;
}

.site-nav-item-dropdown.is-open .site-nav-dropdown-arrow {
    transform: rotate(180deg);
}

.site-nav a:hover,
.site-nav-dropdown-toggle:hover {
    background: rgba(255, 255, 255, 0.75);
    color: var(--ink);
}

.site-nav a.is-active,
.site-nav-dropdown-toggle.is-active {
    background: rgba(255, 255, 255, 0.82);
    color: var(--ink);
}

.site-nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    display: none;
    min-width: 240px;
    padding: 12px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.45);
    box-shadow: var(--shadow);
    z-index: 35;
}

.site-nav-item-dropdown.is-open .site-nav-dropdown-menu {
    display: grid;
    gap: 8px;
}

.site-nav-dropdown-menu a {
    display: block;
    width: 100%;
    background: rgba(255, 255, 255, 0.7);
}

.hero {
    display: grid;
    grid-template-columns: 1.35fr 0.95fr;
    gap: 28px;
    align-items: stretch;
    padding: 28px 0 16px;
}

.hero-copy,
.hero-panel,
.service-category-card,
.booking-section,
.dashboard-card,
.stat-card,
.admin-login-card,
.about-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.45);
    box-shadow: var(--shadow);
}

.hero-copy {
    padding: 42px;
    border-radius: 36px;
}

.hero h1,
.admin-login-card h1 {
    margin: 12px 0 16px;
    font-size: clamp(3rem, 5vw, 5rem);
    line-height: 0.95;
}

.hero-text,
.section-heading p,
.booking-summary p,
.service-row p,
.table-wrap small,
.empty-side-state,
.auto-refresh-note,
.about-band p {
    color: var(--muted);
}

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

.hero-panel {
    position: sticky;
    top: 24px;
    padding: 32px;
    border-radius: 32px;
    align-self: start;
    background: linear-gradient(160deg, rgba(166, 170, 169, 0.35), rgba(255, 255, 255, 0.82));
    z-index: 1;
}

.hero-panel h2,
.section-heading h2,
.dashboard-header h2 {
    margin: 12px 0 14px;
    font-size: 2rem;
    line-height: 1;
}

.hero-payment-sticky {
    position: sticky;
    top: 28px;
    width: fit-content;
    margin: 0 0 16px auto;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255, 253, 249, 0.92);
    border: 1px solid rgba(51, 51, 51, 0.08);
    box-shadow: 0 16px 36px rgba(34, 34, 34, 0.08);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    z-index: 2;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 18px 0 0;
    display: grid;
    gap: 10px;
}

.feature-list li {
    position: relative;
    padding-left: 18px;
}

.feature-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.7em;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--rosewood);
}

.eyebrow,
.summary-kicker {
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--rosewood);
}

.panel-chip,
.badge,
.status-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
}

.panel-chip,
.badge-available {
    background: rgba(70, 107, 76, 0.12);
    color: var(--success);
}

.badge-muted,
.status-muted {
    background: rgba(111, 116, 115, 0.12);
    color: var(--muted);
}

.badge-danger,
.status-danger {
    background: rgba(138, 61, 54, 0.12);
    color: var(--danger);
}

.status-success {
    background: rgba(70, 107, 76, 0.12);
    color: var(--success);
}

.status-warning {
    background: rgba(143, 107, 96, 0.14);
    color: var(--rosewood);
}

.status-info {
    background: rgba(51, 51, 51, 0.08);
    color: var(--ink);
}

.status-default {
    background: rgba(51, 51, 51, 0.08);
    color: var(--ink);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 18px;
    border-radius: 999px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.button:hover,
.table-action:hover {
    transform: translateY(-1px);
}

.button:disabled {
    opacity: 0.58;
    cursor: not-allowed;
    pointer-events: none;
    transform: none;
}

.button.is-disabled {
    opacity: 0.58;
}

.button-primary {
    background: var(--ink);
    color: white;
}

.button-secondary {
    background: rgba(255, 255, 255, 0.6);
    border-color: var(--line);
}

.button-block {
    width: 100%;
}

.about-band {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 24px;
    align-items: center;
    padding: 20px 0 8px;
}

.about-band p {
    font-size: 1.05rem;
}

.about-card {
    display: grid;
    gap: 12px;
    padding: 22px;
    border-radius: 24px;
}

.about-card-stack {
    display: grid;
    gap: 16px;
}

.about-card span {
    display: block;
    color: var(--rosewood);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.72rem;
}

.about-card strong {
    font-size: 1.2rem;
    line-height: 1.3;
}

.content-grid,
.dashboard-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.9fr;
    gap: 28px;
    align-items: start;
    padding: 18px 0 34px;
}

.page-main {
    display: grid;
    gap: 28px;
    padding-bottom: 40px;
}

.page-transactional .page-main {
    gap: 20px;
    padding-bottom: 28px;
}

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

.service-catalog,
.hours-grid,
.stats-grid {
    display: grid;
    gap: 18px;
}

.service-category-card,
.booking-section,
.dashboard-card,
.stat-card,
.admin-login-card {
    border-radius: var(--radius-lg);
}

.service-category-card {
    padding: 26px;
}

.service-accordion {
    overflow: hidden;
    scroll-margin-top: 28px;
}

.service-accordion-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    list-style: none;
    font-family: "Cormorant Garamond", serif;
    font-size: 1.7rem;
    font-weight: 700;
}

.service-accordion-summary::-webkit-details-marker {
    display: none;
}

.service-accordion-summary::after {
    content: "+";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: rgba(166, 170, 169, 0.2);
    font-family: "Manrope", sans-serif;
    font-size: 1.2rem;
    transition: transform 0.72s cubic-bezier(0.22, 1, 0.36, 1), background-color 0.3s ease;
}

.service-accordion[open] .service-accordion-summary::after {
    content: "-";
    transform: rotate(180deg);
}

.service-accordion[open] {
    background: rgba(255, 255, 255, 0.82);
}

.service-accordion-content {
    display: grid;
    grid-template-rows: 0fr;
    opacity: 0;
    transform: translateY(-10px);
    transition:
        grid-template-rows 0.78s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.6s ease,
        transform 0.78s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-accordion[open] .service-accordion-content {
    grid-template-rows: 1fr;
    opacity: 1;
    transform: translateY(0);
}

.service-accordion-content > .service-list {
    min-height: 0;
    overflow: hidden;
}

.service-list {
    display: grid;
    gap: 16px;
    margin-top: 18px;
}

.service-row {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding-top: 16px;
    border-top: 1px solid var(--line);
}

.service-row:first-child {
    border-top: 0;
    padding-top: 4px;
}

.service-row strong {
    display: block;
    margin-bottom: 6px;
}

.service-meta {
    display: grid;
    justify-items: end;
    gap: 8px;
    text-align: right;
    white-space: nowrap;
}

.booking-section,
.dashboard-card {
    padding: 28px;
}

.booking-section {
    position: sticky;
    top: 24px;
    align-self: start;
    height: fit-content;
}

.booking-section-wizard .section-heading {
    margin-bottom: 10px;
}

.booking-form-wizard {
    gap: 18px;
}

.booking-step-panels {
    min-height: 328px;
}

.booking-step-panel {
    display: grid;
    align-content: start;
    gap: 16px;
    min-height: 328px;
    animation: booking-step-fade 0.28s ease;
}

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

.booking-step-panel h3 {
    margin: 0;
    font-family: "Cormorant Garamond", serif;
    font-size: 2rem;
    line-height: 0.95;
}

.booking-date-toolbar {
    display: grid;
    grid-template-columns: 42px 1fr 42px;
    gap: 12px;
    align-items: center;
}

.booking-date-range {
    margin: 0;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--ink);
}

.booking-date-nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid rgba(51, 51, 51, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    color: var(--ink);
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, opacity 0.2s ease;
}

.booking-date-nav:hover {
    transform: translateY(-1px);
    border-color: rgba(143, 107, 96, 0.32);
}

.booking-date-nav:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
}

.booking-date-nav.is-hidden {
    visibility: hidden;
    pointer-events: none;
}

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

.booking-date-card {
    display: grid;
    gap: 6px;
    align-content: start;
    min-height: 112px;
    padding: 14px 12px;
    border: 1px solid rgba(51, 51, 51, 0.12);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.84);
    color: var(--ink);
    text-align: left;
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}

.booking-date-card:hover {
    transform: translateY(-1px);
    border-color: rgba(143, 107, 96, 0.32);
}

.booking-date-card strong {
    font-size: 1.4rem;
    line-height: 1;
}

.booking-date-day {
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--rosewood);
}

.booking-date-month,
.booking-date-status {
    font-size: 0.82rem;
    color: var(--muted);
}

.booking-date-card.is-active {
    background: var(--ink);
    color: white;
    border-color: transparent;
}

.booking-date-card.is-active .booking-date-day,
.booking-date-card.is-active .booking-date-month,
.booking-date-card.is-active .booking-date-status {
    color: rgba(255, 255, 255, 0.8);
}

.booking-date-card.is-disabled {
    opacity: 0.45;
    cursor: not-allowed;
    background: rgba(235, 232, 228, 0.84);
}

.booking-date-card.is-disabled:hover {
    transform: none;
    border-color: rgba(51, 51, 51, 0.12);
}

.booking-date-card.is-loading {
    opacity: 0.72;
}

.booking-step-number {
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--rosewood);
}

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

.booking-staff-card {
    display: grid;
    gap: 8px;
    align-content: center;
    min-height: 110px;
    padding: 18px 16px;
    border: 1px solid rgba(51, 51, 51, 0.12);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.84);
    color: var(--ink);
    text-align: left;
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.booking-staff-card-visual {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
}

.booking-staff-card-photo {
    display: grid;
    place-items: center;
    width: 56px;
    height: 56px;
    border-radius: 18px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(166, 170, 169, 0.35), rgba(255, 255, 255, 0.92));
    box-shadow: inset 0 0 0 1px rgba(51, 51, 51, 0.08);
}

.booking-staff-card-photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.booking-staff-card-photo-empty {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--ink);
}

.booking-staff-card-copy {
    display: grid;
    gap: 8px;
    min-width: 0;
}

.booking-staff-card:hover {
    transform: translateY(-1px);
    border-color: rgba(143, 107, 96, 0.34);
}

.booking-staff-card[hidden] {
    display: none !important;
}

.booking-staff-card strong {
    font-size: 1.1rem;
    line-height: 1.1;
    text-transform: lowercase;
}

.booking-staff-card span {
    color: var(--muted);
    font-size: 0.88rem;
}

.booking-staff-card.is-active {
    background: var(--ink);
    color: white;
    border-color: transparent;
}

.booking-staff-card.is-active .booking-staff-card-photo {
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);
}

.booking-staff-card.is-active .booking-staff-card-copy span {
    color: rgba(255, 255, 255, 0.78);
}

.booking-staff-card.is-active .booking-staff-card-photo-empty {
    color: #fff;
}

.booking-step-note {
    margin-top: auto;
}

.booking-payment-methods {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 18px;
    border: 1px solid rgba(51, 51, 51, 0.12);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.72);
}

.booking-payment-methods legend {
    padding: 0 8px;
    font-weight: 700;
}

.booking-payment-option {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 8px 12px;
    align-items: start;
    padding: 14px 16px;
    border: 1px solid rgba(51, 51, 51, 0.12);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.9);
}

.booking-payment-option input {
    width: auto;
    margin: 3px 0 0;
}

.booking-payment-option span {
    margin: 0;
}

.booking-payment-option strong {
    display: block;
    margin-bottom: 4px;
}

.booking-payment-option small {
    color: var(--muted);
}

.booking-memory-option,
.payment-group-option {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 8px 12px;
    align-items: start;
    padding: 14px 16px;
    border: 1px solid rgba(51, 51, 51, 0.12);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.82);
}

.booking-memory-option input,
.payment-group-option input {
    width: auto;
    margin: 3px 0 0;
}

.booking-memory-option span,
.payment-group-option span {
    margin: 0;
}

.booking-memory-option strong,
.payment-group-option strong {
    display: block;
    margin-bottom: 4px;
}

.booking-memory-option small,
.payment-group-option small {
    color: var(--muted);
    line-height: 1.45;
}

.booking-form,
.form-grid {
    display: grid;
    gap: 16px;
}

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

.form-grid > * {
    min-width: 0;
}

label span {
    display: block;
    margin-bottom: 8px;
    font-size: 0.92rem;
    font-weight: 600;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid rgba(51, 51, 51, 0.14);
    background: rgba(255, 255, 255, 0.86);
    border-radius: var(--radius-sm);
    padding: 14px 16px;
    color: var(--ink);
}

textarea {
    resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
    outline: 2px solid rgba(143, 107, 96, 0.26);
    border-color: rgba(143, 107, 96, 0.45);
}

.booking-summary {
    padding: 18px;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(234, 226, 216, 0.86), rgba(255, 255, 255, 0.84));
}

.booking-summary-compact {
    gap: 8px;
    padding: 18px 20px;
}

.booking-success {
    display: grid;
    gap: 18px;
    padding: 22px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(234, 226, 216, 0.9), rgba(255, 255, 255, 0.9));
    border: 1px solid rgba(51, 51, 51, 0.08);
}

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

.booking-success h3 {
    margin: 0;
    font-family: "Cormorant Garamond", serif;
    font-size: 2rem;
    line-height: 0.95;
}

.booking-success-copy {
    margin: 0;
    color: var(--muted);
}

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

.booking-success-item {
    display: grid;
    gap: 6px;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(51, 51, 51, 0.08);
}

.booking-success-item span {
    margin: 0;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--rosewood);
}

.booking-success-item strong {
    font-size: 1rem;
    line-height: 1.3;
}

.booking-success-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

#summary-service {
    display: block;
    margin: 10px 0 8px;
    font-size: 1.2rem;
}

#summary-price {
    font-weight: 700;
    color: var(--ink);
}

.form-note {
    margin: 0;
    font-size: 0.92rem;
    color: var(--muted);
}

.form-feedback {
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(70, 107, 76, 0.12);
    color: var(--success);
    transition: opacity 0.35s ease, transform 0.35s ease, max-height 0.35s ease, margin 0.35s ease, padding 0.35s ease;
    opacity: 1;
}

.form-feedback-error {
    background: rgba(138, 61, 54, 0.12);
    color: var(--danger);
}

.form-feedback.is-dismissing {
    opacity: 0;
    transform: translateY(-6px);
}

.form-feedback.is-dismissed {
    opacity: 0;
    transform: translateY(-6px);
    max-height: 0;
    margin: 0;
    padding-top: 0;
    padding-bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

.review-form {
    gap: 20px;
}

.review-form-head h2 {
    margin: 10px 0 0;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2rem, 3vw, 2.8rem);
    line-height: 0.95;
}

.review-question-card {
    display: grid;
    gap: 14px;
    margin: 0;
    padding: 18px 20px 20px;
    border: 1px solid rgba(51, 51, 51, 0.08);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.82);
}

.review-question-card legend {
    padding: 0 8px 0 0;
    font-weight: 700;
    color: var(--ink);
}

.review-scale {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
}

.review-scale-option {
    position: relative;
    display: block;
}

.review-scale-option input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}

.review-scale-option span {
    display: grid;
    place-items: center;
    min-height: 52px;
    border-radius: 18px;
    border: 1px solid rgba(51, 51, 51, 0.12);
    background: rgba(247, 242, 236, 0.82);
    font-weight: 700;
    color: var(--ink);
    transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.review-scale-option input:hover + span {
    transform: translateY(-1px);
    border-color: rgba(143, 107, 96, 0.32);
}

.review-scale-option input:focus-visible + span {
    outline: 2px solid rgba(143, 107, 96, 0.28);
    outline-offset: 2px;
}

.review-scale-option input:checked + span {
    border-color: transparent;
    background: var(--ink);
    color: #fff;
}

.review-page-shell {
    padding: 0 0 40px;
}

.review-page-card {
    width: min(880px, 100%);
    margin: 0 auto;
}

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

.review-success-summary div {
    display: grid;
    gap: 6px;
    padding: 16px 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(51, 51, 51, 0.08);
}

.review-success-summary span {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--rosewood);
}

.booking-wizard-footer {
    display: grid;
    grid-template-columns: 58px 1fr max-content;
    gap: 14px;
    align-items: center;
    margin-top: 2px;
    margin-bottom: -4px;
}

.booking-wizard-spacer {
    min-height: 1px;
}

.booking-nav-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    padding: 0;
    border-radius: 999px;
    border: 1px solid rgba(51, 51, 51, 0.18);
    background: rgba(255, 255, 255, 0.82);
    color: var(--ink);
    font-size: 1.4rem;
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.booking-nav-button-next {
    justify-self: end;
    width: auto;
    min-width: 58px;
    padding: 0;
    gap: 0;
    overflow: hidden;
    white-space: nowrap;
    transition: min-width 0.3s ease, padding 0.3s ease, transform 0.2s ease, opacity 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.booking-nav-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    flex: 0 0 auto;
}

.booking-nav-text {
    max-width: 0;
    margin-left: 0;
    opacity: 0;
    overflow: hidden;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    transition: max-width 0.32s ease, margin-left 0.32s ease, opacity 0.2s ease;
}

.booking-nav-button-next.is-ready {
    min-width: 248px;
    padding: 0 20px 0 18px;
    border-color: rgba(51, 51, 51, 0.9);
    background: var(--ink);
    color: #fff;
}

.booking-nav-button-next.is-ready .booking-nav-text {
    max-width: 190px;
    margin-left: 10px;
    opacity: 1;
}

.booking-nav-button-next.is-submit-mode {
    min-width: 294px;
}

.booking-nav-button-next.is-submit-mode .booking-nav-text {
    max-width: 228px;
}

.booking-nav-button:hover {
    transform: translateY(-1px);
    border-color: rgba(143, 107, 96, 0.34);
}

.booking-nav-button-next.is-ready:hover {
    border-color: rgba(51, 51, 51, 0.94);
    background: #252525;
}

.booking-nav-button:disabled {
    opacity: 0.42;
    cursor: not-allowed;
    transform: none;
}

@keyframes booking-step-fade {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

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

.hours-section {
    padding: 0 0 40px;
}

.hours-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 26px 24px;
    align-items: stretch;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    min-height: 92px;
    padding: 18px 30px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: var(--shadow);
}

.hours-cta-card {
    grid-column: 3 / span 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hours-cta-panel {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: auto;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
}

.hours-cta-button {
    min-height: 72px;
    padding: 0 28px;
    border-radius: 999px;
    font-size: 1.2rem;
    font-weight: 600;
    box-shadow: none;
}

.hours-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.hours-call-button {
    margin-top: 0;
}

.hours-cta-button:hover {
    transform: translateY(-1px);
}

.hours-reviews-block {
    display: grid;
    gap: 18px;
    margin-top: 30px;
}

.hours-reviews-head {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: end;
}

.hours-reviews-head h3 {
    margin: 10px 0 10px;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(1.9rem, 3vw, 2.6rem);
    line-height: 0.96;
}

.hours-reviews-head p {
    margin: 0;
    color: var(--muted);
}

.review-summary-card,
.review-card,
.review-empty-card,
.review-admin-card {
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: var(--shadow);
}

.review-summary-card {
    display: grid;
    gap: 8px;
    min-width: min(100%, 240px);
    padding: 22px 24px;
    justify-items: end;
    text-align: right;
}

.review-summary-card strong {
    font-size: 2rem;
    font-family: "Cormorant Garamond", serif;
    line-height: 0.95;
}

.review-summary-card span {
    color: var(--muted);
}

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

.review-card,
.review-empty-card {
    padding: 22px;
}

.review-card {
    display: grid;
    gap: 14px;
}

.review-card-head,
.review-admin-card-head {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    align-items: start;
}

.review-card-head strong,
.review-admin-card-head strong {
    display: block;
    margin-bottom: 6px;
}

.review-card-head span,
.review-card-head small,
.review-card-breakdown,
.review-empty-card p,
.review-admin-card-head p,
.review-admin-breakdown {
    color: var(--muted);
}

.review-card-score {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--ink);
}

.review-card-breakdown,
.review-admin-breakdown {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.55;
}

.review-stars {
    display: inline-flex;
    gap: 6px;
    align-items: center;
}

.review-star {
    font-size: 1.5rem;
    line-height: 1;
    color: var(--review-ash);
}

.review-star.is-filled {
    color: var(--review-gold);
}

.review-empty-card {
    display: grid;
    gap: 10px;
}

.review-empty-card strong {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.7rem;
    line-height: 0.98;
}

.review-admin-list {
    display: grid;
    gap: 16px;
}

.review-admin-card {
    display: grid;
    gap: 14px;
    padding: 22px;
}

.review-admin-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: end;
}

.review-admin-score-line {
    display: flex;
    align-items: end;
    gap: 10px;
}

.review-admin-score-line strong {
    font-size: 2rem;
    font-family: "Cormorant Garamond", serif;
    line-height: 0.95;
}

.review-admin-score-line span {
    color: var(--muted);
}

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

.hours-editor-row {
    display: grid;
    gap: 16px;
    padding: 20px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(255, 255, 255, 0.45);
}

.hours-editor-day {
    display: grid;
    gap: 6px;
}

.hours-editor-day small {
    color: var(--muted);
}

.hours-editor-toggle {
    max-width: 220px;
}

.hours-editor-grid {
    align-items: end;
}

.admin-body,
.admin-login-body {
    min-height: 100vh;
}

.admin-login-body {
    display: grid;
    place-items: center;
}

.admin-login-card {
    width: min(540px, calc(100% - 32px));
    padding: 34px;
}

.stats-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-bottom: 24px;
}

.stat-card {
    padding: 24px;
}

.stat-card span {
    display: block;
    color: var(--muted);
    margin-bottom: 10px;
}

.stat-card strong {
    font-size: 2rem;
    font-family: "Cormorant Garamond", serif;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: end;
    margin-bottom: 18px;
}

.table-wrap {
    overflow-x: auto;
}

.appointments-table {
    width: 100%;
    border-collapse: collapse;
}

.appointments-table th,
.appointments-table td {
    padding: 14px 12px;
    text-align: left;
    border-top: 1px solid var(--line);
    vertical-align: top;
}

.appointments-table thead th {
    border-top: 0;
    color: var(--muted);
    font-size: 0.86rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.row-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.payment-cell {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
}

.payment-cell small {
    color: var(--muted);
    line-height: 1.35;
}

.table-action {
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.75);
    color: var(--ink);
    border-radius: 999px;
    padding: 9px 12px;
    cursor: pointer;
}

.table-action:disabled {
    opacity: 0.42;
    cursor: not-allowed;
    pointer-events: none;
    transform: none;
}

.table-action-danger {
    border-color: rgba(138, 61, 54, 0.2);
    color: var(--danger);
}

.table-action-payment {
    border-color: rgba(70, 107, 76, 0.2);
    color: var(--success);
}

.row-actions-note {
    display: block;
    margin-top: 8px;
    color: var(--muted);
    font-size: 0.82rem;
    line-height: 1.4;
}

.payment-modal-summary {
    display: grid;
    gap: 8px;
    padding: 14px 16px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.68);
}

.payment-modal-summary p {
    margin: 0;
}

.payment-group-panel {
    display: grid;
    gap: 12px;
    padding: 16px 18px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.72);
}

.payment-group-panel[hidden] {
    display: none;
}

.payment-group-panel strong {
    font-size: 1rem;
}

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

.payment-group-option input:disabled {
    opacity: 1;
}

.blocked-card {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: start;
    padding: 16px 0;
    border-top: 1px solid var(--line);
}

.blocked-card:first-child {
    border-top: 0;
    padding-top: 0;
}

.empty-state,
.empty-side-state {
    padding: 22px 0;
}

.date-filter {
    min-width: 180px;
}

.site-nav a.is-active {
    background: rgba(255, 255, 255, 0.85);
    color: var(--ink);
    box-shadow: inset 0 0 0 1px rgba(51, 51, 51, 0.06);
}

.gallery-section,
.map-section,
.legal-section {
    padding: 8px 0 8px;
}

.gallery-grid,
.info-grid,
.staff-summary-grid,
.staff-management-grid,
.finance-grid,
.legal-section {
    display: grid;
    gap: 18px;
}

.gallery-grid,
.info-grid,
.staff-summary-grid,
.staff-management-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.gallery-card,
.info-card,
.staff-summary-card,
.staff-management-item {
    background: rgba(255, 255, 255, 0.76);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.45);
    box-shadow: var(--shadow);
    border-radius: var(--radius-lg);
}

.gallery-card {
    overflow: hidden;
}

.gallery-card-link {
    display: block;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gallery-card-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 26px 80px rgba(34, 34, 34, 0.18);
}

.gallery-card img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    background: linear-gradient(135deg, rgba(166, 170, 169, 0.35), rgba(255, 255, 255, 0.9));
}

.gallery-card-copy,
.info-card,
.staff-summary-card {
    padding: 24px;
}

.gallery-card-copy p,
.info-card p,
.site-footer p,
.site-footer a,
.staff-summary-card p,
.blocked-card p,
.blocked-card small {
    color: var(--muted);
}

.gallery-card-copy strong {
    display: block;
    margin-top: 8px;
    font-size: 1.45rem;
    font-family: "Cormorant Garamond", serif;
}

.footer-phone-link,
.info-phone-link {
    color: var(--ink);
    text-decoration: underline;
    text-decoration-color: rgba(143, 107, 96, 0.35);
    text-underline-offset: 3px;
}

.footer-phone-link:hover,
.info-phone-link:hover {
    text-decoration-color: rgba(143, 107, 96, 0.8);
}

.phone-link-mobile-only,
.site-footer a.phone-link-mobile-only,
.phone-link-mobile-only-block {
    display: none;
}

.presentation-document {
    min-height: 100vh;
    background:
        radial-gradient(circle at top left, rgba(166, 170, 169, 0.16), transparent 26%),
        linear-gradient(180deg, #f7f2ec 0%, #fcfaf7 100%);
}

.presentation-shell {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 28px 0 48px;
}

.presentation-topbar {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: start;
    margin-bottom: 20px;
}

.presentation-kicker {
    display: block;
    margin-top: 8px;
    font-size: 1.05rem;
}

.presentation-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: end;
    gap: 10px;
}

.presentation-sheet {
    margin-bottom: 22px;
    padding: 34px;
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.45);
    box-shadow: var(--shadow);
}

.presentation-sheet-hero {
    padding-bottom: 28px;
}

.presentation-hero-grid,
.presentation-cta-grid,
.presentation-dual-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.presentation-hero-copy h1,
.presentation-section-head h2,
.presentation-cta-grid h2 {
    margin: 10px 0 16px;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2.4rem, 5vw, 4.1rem);
    line-height: 0.96;
}

.presentation-section-head h2,
.presentation-cta-grid h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

.presentation-lead,
.presentation-section-head p,
.presentation-cta-grid p,
.presentation-card-block p,
.presentation-contact-card p,
.presentation-contact-card small,
.presentation-step-card p {
    color: var(--muted);
}

.presentation-metric-grid,
.presentation-offer-grid,
.presentation-step-grid {
    display: grid;
    gap: 16px;
}

.presentation-metric-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 24px;
}

.presentation-metric-card,
.presentation-card-block,
.presentation-offer-card,
.presentation-step-card,
.presentation-contact-card {
    padding: 22px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(51, 51, 51, 0.08);
}

.presentation-metric-card strong,
.presentation-step-card strong {
    display: block;
    margin-bottom: 10px;
    font-size: 1.7rem;
    font-family: "Cormorant Garamond", serif;
}

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

.presentation-visual-card {
    margin: 0;
    overflow: hidden;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.presentation-visual-card img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    background: linear-gradient(135deg, rgba(166, 170, 169, 0.35), rgba(255, 255, 255, 0.92));
}

.presentation-visual-card figcaption {
    padding: 14px 16px 16px;
    font-size: 0.9rem;
    color: var(--muted);
}

.presentation-section-head {
    margin-bottom: 20px;
}

.presentation-card-block h3,
.presentation-offer-card h3,
.presentation-contact-card h3 {
    margin: 0 0 14px;
    font-family: "Cormorant Garamond", serif;
    font-size: 1.9rem;
}

.presentation-list {
    margin: 0;
    padding-left: 18px;
    display: grid;
    gap: 10px;
}

.presentation-list li {
    color: var(--ink);
}

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

.presentation-offer-card {
    display: grid;
    align-content: start;
    gap: 16px;
}

.presentation-offer-card.is-featured {
    background: var(--ink);
    color: #fff;
    border-color: transparent;
    transform: translateY(-8px);
}

.presentation-offer-card.is-featured .presentation-list li,
.presentation-offer-card.is-featured .presentation-price-line span,
.presentation-offer-card.is-featured .presentation-offer-badge {
    color: rgba(255, 255, 255, 0.82);
}

.presentation-offer-head {
    display: grid;
    gap: 10px;
}

.presentation-offer-badge {
    color: var(--rosewood);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.presentation-price-line {
    display: grid;
    gap: 4px;
    padding: 14px 0;
    border-top: 1px solid rgba(51, 51, 51, 0.08);
}

.presentation-offer-card.is-featured .presentation-price-line {
    border-top-color: rgba(255, 255, 255, 0.14);
}

.presentation-price-line strong {
    font-size: 1.65rem;
    font-family: "Cormorant Garamond", serif;
}

.presentation-price-line span {
    color: var(--muted);
}

.presentation-price-line-secondary strong {
    font-size: 1.35rem;
}

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

.presentation-highlight {
    font-size: 1.05rem;
}

.presentation-contact-card {
    align-self: start;
}

.presentation-contact-card p {
    margin: 0 0 10px;
}

@media (max-width: 960px) {
    .presentation-topbar,
    .presentation-hero-grid,
    .presentation-cta-grid,
    .presentation-dual-grid,
    .presentation-offer-grid,
    .presentation-step-grid {
        grid-template-columns: 1fr;
    }

    .presentation-topbar {
        display: grid;
    }

    .presentation-actions {
        justify-content: start;
    }

    .presentation-metric-grid,
    .presentation-visual-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .presentation-offer-card.is-featured {
        transform: none;
    }
}

@media (max-width: 640px) {
    .presentation-shell {
        width: min(100%, calc(100% - 20px));
        padding: 18px 0 32px;
    }

    .presentation-sheet {
        padding: 22px;
        border-radius: 24px;
    }

    .presentation-metric-grid,
    .presentation-visual-grid {
        grid-template-columns: 1fr;
    }
}

@media print {
    @page {
        size: A4;
        margin: 12mm;
    }

    body.presentation-document {
        background: #fff;
    }

    .presentation-shell {
        width: 100%;
        padding: 0;
    }

    .presentation-sheet {
        margin-bottom: 10mm;
        padding: 22px;
        border-radius: 18px;
        background: #fff;
        box-shadow: none;
        border: 1px solid rgba(51, 51, 51, 0.12);
        break-inside: avoid;
    }

    .presentation-offer-card.is-featured {
        color: #fff;
        print-color-adjust: exact;
        -webkit-print-color-adjust: exact;
    }

    .no-print {
        display: none !important;
    }
}

.staff-photo-field {
    display: grid;
    gap: 14px;
}

.staff-photo-preview {
    display: grid;
    place-items: center;
    width: 78px;
    height: 78px;
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(166, 170, 169, 0.35), rgba(255, 255, 255, 0.92));
    box-shadow: inset 0 0 0 1px rgba(51, 51, 51, 0.08);
}

.staff-photo-preview-large {
    width: 96px;
    height: 96px;
    border-radius: 28px;
}

.staff-photo-preview-summary {
    width: 84px;
    height: 84px;
    border-radius: 24px;
}

.staff-photo-preview img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.staff-photo-preview-empty {
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--ink);
}

.staff-service-fieldset {
    display: grid;
    gap: 14px;
    margin: 0;
    padding: 18px;
    border: 1px solid rgba(51, 51, 51, 0.1);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.72);
}

.staff-service-fieldset legend {
    padding: 0 8px;
    font-weight: 700;
}

.staff-service-groups {
    display: grid;
    gap: 14px;
}

.staff-service-accordion {
    border: 1px solid rgba(51, 51, 51, 0.1);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.82);
    overflow: hidden;
}

.staff-service-accordion-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    cursor: pointer;
    list-style: none;
    font-weight: 700;
}

.staff-service-accordion-summary::-webkit-details-marker {
    display: none;
}

.staff-service-accordion-summary span {
    font-size: 0.92rem;
    color: var(--rosewood);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.staff-service-accordion-summary small {
    color: var(--muted);
    font-weight: 600;
}

.staff-service-accordion-summary::after {
    content: "+";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: rgba(166, 170, 169, 0.18);
    color: var(--ink);
    font-size: 1rem;
    flex: 0 0 auto;
}

.staff-service-accordion[open] .staff-service-accordion-summary::after {
    content: "-";
}

.staff-service-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 10px;
    padding: 0 16px 16px;
}

.staff-service-option {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 10px;
    align-items: center;
    padding: 12px 14px;
    border: 1px solid rgba(51, 51, 51, 0.12);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.9);
}

.staff-service-option input {
    width: auto;
    margin: 0;
}

.staff-service-option span,
.staff-service-option small {
    margin: 0;
}

.staff-service-option small {
    color: var(--muted);
}

.page-hero {
    padding: 34px;
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.45);
    box-shadow: var(--shadow);
}

.page-hero h1 {
    margin: 12px 0 14px;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2.6rem, 5vw, 4.3rem);
    line-height: 0.95;
}

.page-hero p,
.legal-section p {
    color: var(--muted);
}

.detail-hero {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 24px;
    align-items: stretch;
}

.detail-hero-visual {
    overflow: hidden;
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.45);
    box-shadow: var(--shadow);
}

.detail-hero-visual img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
}

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

.info-card h2,
.site-footer h3,
.site-footer h4,
.staff-summary-card strong {
    margin: 0 0 12px;
    font-family: "Cormorant Garamond", serif;
}

.info-card h2 {
    font-size: 1.7rem;
}

.info-card p:last-child,
.staff-summary-card p:last-child,
.site-footer p:last-child,
.blocked-card p:last-child {
    margin-bottom: 0;
}

.contact-grid {
    grid-template-columns: 0.9fr 1.1fr;
}

.contact-call-button {
    margin-top: 14px;
}

.map-card {
    min-height: 360px;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.45);
    box-shadow: var(--shadow);
}

.map-card iframe,
.map-placeholder {
    width: 100%;
    min-height: 360px;
}

.map-card iframe {
    display: block;
    border: 0;
}

.map-placeholder {
    display: grid;
    place-items: center;
    gap: 18px;
    padding: 32px;
    text-align: center;
    background:
        radial-gradient(circle at top, rgba(166, 170, 169, 0.2), transparent 40%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(234, 226, 216, 0.82));
}

.map-placeholder p {
    margin: 0;
    color: var(--muted);
}

.site-footer {
    margin: 20px 0 40px;
    padding: 28px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.45);
    box-shadow: var(--shadow);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 24px;
}

.site-footer a,
.footer-link-button {
    display: block;
    margin-top: 10px;
}

.site-footer a.phone-link-mobile-only {
    display: none;
    margin-top: 0;
}

.footer-link-button {
    padding: 0;
    border: 0;
    background: transparent;
    text-align: left;
    color: var(--muted);
    cursor: pointer;
}

.footer-link-button:hover,
.site-footer a:hover {
    color: var(--ink);
}

.cookie-modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 60;
    display: grid;
    place-items: center;
    padding: 18px;
    background: rgba(31, 31, 31, 0.48);
}

.cookie-modal-backdrop[hidden] {
    display: none;
}

.cookie-modal {
    width: min(560px, 100%);
    padding: 28px;
    border-radius: 28px;
    background: var(--paper);
    box-shadow: var(--shadow);
}

.cookie-modal h2 {
    margin: 0 0 12px;
    font-family: "Cormorant Garamond", serif;
    font-size: 2rem;
}

.cookie-modal p {
    color: var(--muted);
}

.cookie-option {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 0;
    margin: 22px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.cookie-switch {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.cookie-switch input {
    width: auto;
}

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

.modal-open {
    overflow: hidden;
}

.back-to-top {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 400;
    min-width: 58px;
    min-height: 58px;
    border: 0;
    border-radius: 999px;
    background: var(--ink);
    color: white;
    box-shadow: var(--shadow);
    cursor: pointer;
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.back-to-top.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.back-to-top-admin {
    left: 18px;
    right: auto;
}

.dashboard-stack {
    display: grid;
    gap: 24px;
    padding-bottom: 36px;
}

.finance-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-bottom: 24px;
}

.finance-card {
    min-height: 150px;
}

.finance-card-loss {
    background: linear-gradient(180deg, rgba(255, 248, 247, 0.85), rgba(255, 255, 255, 0.75));
}

.finance-toolbar {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.staff-summary-card p {
    margin: 8px 0 0;
}

.staff-management-item {
    overflow: hidden;
}

.staff-management-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 24px;
    cursor: pointer;
    list-style: none;
}

.staff-management-summary::-webkit-details-marker {
    display: none;
}

.staff-management-summary::after {
    content: "+";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: rgba(51, 51, 51, 0.08);
    color: var(--ink);
    flex: 0 0 auto;
}

.staff-management-item[open] .staff-management-summary::after {
    content: "-";
}

.staff-management-summary-stack,
.staff-management-summary-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.staff-management-summary-stack {
    gap: 12px;
    text-align: center;
}

.staff-management-summary-copy {
    gap: 6px;
}

.staff-management-summary-copy strong {
    font-size: 1.08rem;
}

.staff-management-summary-copy small {
    color: var(--muted);
    line-height: 1.45;
}

.staff-management-summary-add .staff-management-summary-copy {
    align-items: flex-start;
    text-align: left;
}

.staff-management-summary-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    margin: 2px auto 0;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.staff-management-summary-add .staff-management-summary-status {
    margin-left: 0;
    margin-right: 0;
}

.staff-management-summary-status.is-active {
    background: rgba(110, 150, 108, 0.16);
    color: #4d6d49;
}

.staff-management-summary-status.is-inactive {
    background: rgba(138, 61, 54, 0.12);
    color: var(--danger);
}

.staff-management-body {
    padding: 0 24px 24px;
    border-top: 1px solid rgba(51, 51, 51, 0.08);
}

.staff-management-form,
.staff-management-card {
    display: grid;
    gap: 14px;
}

.staff-card-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 6px;
}

.staff-card-actions .button {
    flex: 1 1 180px;
}

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

.service-admin-item {
    border: 1px solid rgba(51, 51, 51, 0.08);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.74);
    overflow: hidden;
}

.service-admin-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 22px;
    cursor: pointer;
    list-style: none;
}

.service-admin-summary::-webkit-details-marker {
    display: none;
}

.service-admin-summary::after {
    content: "+";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: rgba(51, 51, 51, 0.08);
    color: var(--ink);
    flex: 0 0 auto;
}

.service-admin-item[open] .service-admin-summary::after {
    content: "-";
}

.service-admin-summary-copy {
    display: grid;
    gap: 10px;
}

.service-admin-summary-copy strong {
    font-size: 1.05rem;
}

.service-admin-summary-copy small {
    color: var(--muted);
    line-height: 1.5;
}

.service-admin-summary-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.service-admin-summary-meta span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(166, 170, 169, 0.14);
    color: var(--ink);
    font-size: 0.84rem;
    font-weight: 600;
}

.service-admin-summary-add .service-admin-summary-copy {
    max-width: 740px;
}

.service-admin-body {
    padding: 0 22px 22px;
    border-top: 1px solid rgba(51, 51, 51, 0.08);
}

.service-admin-form {
    display: grid;
    gap: 14px;
}

.service-admin-warning {
    margin: 0;
}

.button-danger-soft {
    border-color: rgba(138, 61, 54, 0.22);
    color: var(--danger);
}

.checkbox-field {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border: 1px solid rgba(51, 51, 51, 0.14);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.86);
}

.checkbox-field span {
    margin: 0;
}

.checkbox-field input {
    width: auto;
    margin: 0;
}

.admin-inline-form {
    display: flex;
    align-items: end;
    gap: 12px;
    flex-wrap: wrap;
}

.admin-modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 70;
    display: grid;
    place-items: center;
    padding: 18px;
    background: rgba(31, 31, 31, 0.48);
}

.admin-modal-backdrop[hidden] {
    display: none;
}

.admin-modal {
    width: min(520px, 100%);
    padding: 28px;
    border-radius: 28px;
    background: var(--paper);
    box-shadow: var(--shadow);
}

.admin-modal-wide {
    width: min(1080px, 100%);
    max-height: calc(100vh - 36px);
    overflow-y: auto;
}

.admin-booking-page-card {
    display: grid;
    gap: 24px;
}

.admin-booking-page-head {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: flex-end;
}

.admin-booking-page-head h2 {
    margin: 10px 0 0;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2rem, 3vw, 2.8rem);
    line-height: 0.95;
}

.admin-booking-page-head p {
    margin: 12px 0 0;
}

.admin-booking-page-wizard {
    display: grid;
    gap: 18px;
    padding-top: 18px;
    margin-top: 18px;
    border-top: 1px solid var(--line);
}

.admin-modal h2 {
    margin: 0 0 12px;
    font-family: "Cormorant Garamond", serif;
    font-size: 2rem;
}

.admin-modal p {
    color: var(--muted);
}

.admin-session-switch {
    display: grid;
    gap: 14px;
    padding: 18px 0 20px;
    margin-bottom: 18px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

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

.admin-tabs {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.admin-tab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid var(--line);
    color: var(--muted);
}

.admin-tab.is-active {
    background: var(--ink);
    color: white;
    border-color: transparent;
}

.editor-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(360px, 0.75fr);
    gap: 24px;
    align-items: start;
    padding-bottom: 36px;
}

.editor-main {
    display: grid;
    gap: 24px;
}

.editor-preview {
    position: sticky;
    top: 20px;
}

.editor-subsection {
    display: grid;
    gap: 16px;
    padding-top: 8px;
    border-top: 1px solid var(--line);
}

.current-image-banner {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 16px;
    align-items: center;
    padding: 16px;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(234, 226, 216, 0.82), rgba(255, 255, 255, 0.88));
}

.current-image-banner img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.8);
}

.current-image-banner p,
.image-choice-card small,
.preview-frame-wrap small {
    color: var(--muted);
}

.image-choice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 14px;
}

.image-choice-card {
    display: grid;
    gap: 8px;
    padding: 14px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(51, 51, 51, 0.1);
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.image-choice-card:hover {
    transform: translateY(-2px);
    border-color: rgba(143, 107, 96, 0.35);
}

.image-choice-card input {
    width: auto;
    margin: 0;
}

.image-choice-card img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.82);
}

.image-choice-card strong {
    font-size: 0.98rem;
}

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

.photo-manager-card {
    display: grid;
    gap: 16px;
    padding: 20px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.45);
}

.inline-delete-form {
    display: inline-flex;
}

.image-picker-details {
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.7);
}

.image-picker-details summary {
    cursor: pointer;
    font-weight: 600;
    color: var(--ink);
}

.image-picker-details .image-choice-grid {
    margin-top: 14px;
}

.preview-frame-wrap {
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid rgba(51, 51, 51, 0.1);
    background: white;
}

.preview-frame-wrap iframe {
    display: block;
    width: 100%;
    min-height: 720px;
    border: 0;
}

.version-current-grid,
.version-plan-grid,
.version-feature-grid {
    display: grid;
    gap: 18px;
}

.version-current-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 24px;
}

.version-plan-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-bottom: 24px;
}

.version-plan-card,
.version-feature-card {
    display: grid;
    align-content: start;
    gap: 16px;
}

.version-plan-card.is-active {
    background: linear-gradient(180deg, rgba(51, 51, 51, 0.96), rgba(51, 51, 51, 0.88));
    color: #fff;
    border-color: transparent;
}

.version-plan-card.is-active p,
.version-plan-card.is-active .eyebrow,
.version-plan-card.is-active .version-price-stack span,
.version-plan-card.is-active .version-readonly-note {
    color: rgba(255, 255, 255, 0.82);
}

.version-plan-head,
.version-feature-head {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 12px;
}

.version-plan-head h2,
.version-active-card h2 {
    margin: 8px 0 6px;
    font-family: "Cormorant Garamond", serif;
    font-size: 2.3rem;
    line-height: 0.95;
}

.version-plan-head p,
.version-active-card p,
.version-feature-card p {
    margin: 0;
    color: var(--muted);
}

.version-plan-card.is-active .version-plan-head p,
.version-plan-card.is-active .version-feature-head p {
    color: rgba(255, 255, 255, 0.82);
}

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

.version-price-stack div {
    display: grid;
    gap: 4px;
    padding: 16px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(51, 51, 51, 0.08);
}

.version-price-stack strong {
    font-size: 1.4rem;
    font-family: "Cormorant Garamond", serif;
}

.version-price-stack span,
.version-readonly-note,
.version-feature-card small {
    color: var(--muted);
}

.version-plan-feature-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.version-plan-feature-list li {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding-top: 10px;
    border-top: 1px solid rgba(51, 51, 51, 0.08);
}

.version-plan-feature-list li:first-child {
    padding-top: 0;
    border-top: 0;
}

.version-plan-feature-list strong {
    white-space: nowrap;
}

.version-switch-form {
    margin-top: auto;
}

.version-readonly-note {
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(51, 51, 51, 0.08);
}

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

.version-feature-card {
    padding: 22px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(255, 255, 255, 0.45);
    box-shadow: var(--shadow);
}

.version-feature-card.is-unavailable {
    opacity: 0.68;
    filter: grayscale(0.12);
}

.version-feature-card strong {
    font-size: 1.02rem;
}

.version-settings-block {
    display: grid;
    gap: 16px;
    padding: 22px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.64);
    border: 1px solid rgba(51, 51, 51, 0.08);
}

.version-placeholder-list {
    display: grid;
    gap: 8px;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(51, 51, 51, 0.08);
}

.version-placeholder-list p {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
}

.client-filter-form {
    margin-bottom: 22px;
}

.client-search-field {
    min-width: 280px;
    flex: 1 1 280px;
}

.client-directory-grid {
    display: grid;
    grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
    gap: 18px;
    align-items: start;
}

.client-directory-list,
.client-detail-panel,
.client-campaign-sample-list {
    display: grid;
    gap: 12px;
}

.client-directory-list {
    max-height: 980px;
    overflow: auto;
    padding-right: 4px;
}

.client-list-card {
    display: grid;
    gap: 12px;
    padding: 18px;
    border-radius: 24px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(255, 255, 255, 0.45);
    box-shadow: var(--shadow);
    transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.client-list-card:hover {
    transform: translateY(-2px);
    border-color: rgba(143, 107, 96, 0.18);
}

.client-list-card.is-active {
    background: linear-gradient(180deg, rgba(51, 51, 51, 0.96), rgba(51, 51, 51, 0.88));
    border-color: transparent;
    color: #fff;
}

.client-list-card.is-active p,
.client-list-card.is-active small,
.client-list-card.is-active .client-list-card-meta {
    color: rgba(255, 255, 255, 0.82);
}

.client-list-card-top {
    display: flex;
    gap: 14px;
    align-items: center;
}

.client-list-card-top strong {
    display: block;
    margin-bottom: 4px;
    font-size: 1.1rem;
}

.client-list-card-top p,
.client-campaign-sample-card p,
.client-campaign-sample-card small,
.client-detail-top p,
.client-detail-metric small {
    margin: 0;
    color: var(--muted);
}

.client-avatar {
    display: inline-grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border-radius: 999px;
    background: rgba(51, 51, 51, 0.08);
    font-weight: 700;
    letter-spacing: 0.04em;
}

.client-list-card.is-active .client-avatar {
    background: rgba(255, 255, 255, 0.14);
}

.client-list-card-badges,
.client-detail-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.client-list-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    color: var(--muted);
    font-size: 0.9rem;
}

.client-detail-empty,
.client-detail-hero,
.client-spotlight-card,
.client-campaign-preview {
    display: grid;
    gap: 16px;
    padding: 22px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(51, 51, 51, 0.08);
}

.client-detail-empty h2,
.client-detail-top h2,
.client-spotlight-card h3 {
    margin: 0;
    font-family: "Cormorant Garamond", serif;
    line-height: 0.95;
}

.client-detail-top h2 {
    margin-top: 10px;
    font-size: clamp(2rem, 3vw, 2.8rem);
}

.client-spotlight-card h3 {
    font-size: 1.8rem;
}

.client-detail-top {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 16px;
}

.client-detail-badges {
    justify-content: end;
}

.client-detail-metrics,
.client-spotlight-grid,
.client-campaign-grid {
    display: grid;
    gap: 16px;
}

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

.client-detail-metric {
    display: grid;
    gap: 6px;
    padding: 16px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(51, 51, 51, 0.08);
}

.client-detail-metric span {
    color: var(--muted);
}

.client-detail-metric strong {
    font-size: 1.35rem;
    font-family: "Cormorant Garamond", serif;
}

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

.client-insight-list {
    margin: 0;
}

.client-campaign-grid {
    grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
    align-items: start;
}

.client-campaign-preview > strong {
    font-size: 1.15rem;
}

.client-campaign-sample-card {
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(51, 51, 51, 0.08);
}

.admin-help-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 24px;
}

.admin-help-card {
    display: grid;
    gap: 18px;
}

.admin-help-card h2 {
    margin: 0;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2rem, 3vw, 2.8rem);
    line-height: 0.95;
}

.admin-help-card p {
    margin: 0;
}

.admin-help-support-card {
    align-content: start;
}

.admin-help-support-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.admin-help-support-meta {
    display: grid;
    gap: 4px;
    padding: 16px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(51, 51, 51, 0.08);
}

.admin-help-support-meta span {
    color: var(--muted);
}

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

.admin-help-item {
    padding: 0 18px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(51, 51, 51, 0.08);
}

.admin-help-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 0;
    cursor: pointer;
    list-style: none;
    font-weight: 700;
    color: var(--ink);
}

.admin-help-summary::-webkit-details-marker {
    display: none;
}

.admin-help-summary::after {
    content: "+";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: rgba(51, 51, 51, 0.08);
    color: var(--ink);
    flex: 0 0 auto;
}

.admin-help-item[open] .admin-help-summary::after {
    content: "-";
}

.admin-help-answer {
    padding: 0 0 18px;
}

.admin-help-answer p {
    color: var(--muted);
    line-height: 1.6;
}

.admin-support-form-card {
    gap: 24px;
}

.finance-prep-grid {
    margin-top: 6px;
}

.legal-section {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

@media (max-width: 1080px) {
    .admin-app-shell {
        grid-template-columns: 1fr;
    }

    .admin-sidebar {
        position: fixed;
        top: 20px;
        left: 20px;
        bottom: 20px;
        width: min(320px, calc(100vw - 40px));
        max-height: calc(100vh - 40px);
        margin: 0;
        border-radius: 0 32px 32px 0;
        border-right: 0;
        border-bottom: 0;
    }

    .hero,
    .content-grid,
    .dashboard-grid,
    .about-band,
    .detail-hero,
    .editor-layout,
    .client-directory-grid,
    .client-campaign-grid,
    .version-current-grid,
    .version-plan-grid,
    .version-feature-grid {
        grid-template-columns: 1fr;
    }

    .hero-panel {
        position: relative;
        top: auto;
    }

    .booking-section {
        position: relative;
        top: auto;
        height: auto;
    }

    .booking-step-panels,
    .booking-step-panel {
        min-height: auto;
    }

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

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

    .detail-info-grid {
        grid-template-columns: 1fr;
    }

    .client-directory-list {
        max-height: none;
        overflow: visible;
        padding-right: 0;
    }

    .client-detail-metrics {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .editor-preview {
        position: static;
    }

    .hours-cta-card {
        grid-column: span 2;
    }

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

@media (max-width: 720px) {
    .site-header,
    .admin-header,
    .dashboard-header {
        flex-direction: column;
        align-items: start;
    }

    .site-header-minimal {
        gap: 14px;
    }

    .site-minimal-return {
        width: 100%;
    }

    .site-nav,
    .admin-actions,
    .form-grid,
    .stats-grid {
        width: 100%;
    }

    .site-nav-toggle {
        display: inline-flex;
        align-self: end;
    }

    .site-nav-panel {
        position: absolute;
        top: calc(100% + 10px);
        right: 0;
        left: 0;
        display: none;
        padding: 14px;
        border-radius: 24px;
        background: rgba(255, 255, 255, 0.94);
        border: 1px solid rgba(255, 255, 255, 0.45);
        box-shadow: var(--shadow);
        z-index: 30;
    }

    .site-nav-panel.is-open {
        display: block;
    }

    .phone-link-mobile-only {
        display: inline;
    }

    .site-footer a.phone-link-mobile-only {
        display: inline;
        margin-top: 0;
    }

    .phone-link-mobile-only-block {
        display: block;
    }

    .phone-link-mobile-only-block.button {
        display: flex;
    }

    .phone-text-mobile-fallback.is-mobile-hidden {
        display: none;
    }

    .site-nav {
        display: grid;
        gap: 10px;
    }

    .site-nav a,
    .site-nav-dropdown-toggle {
        width: 100%;
        justify-content: flex-start;
        background: rgba(255, 255, 255, 0.66);
    }

    .site-nav-item,
    .site-nav-item-dropdown {
        width: 100%;
    }

    .site-nav-dropdown-toggle {
        justify-content: space-between;
    }

    .site-nav-dropdown-menu {
        position: static;
        min-width: 0;
        margin-top: 10px;
        padding: 10px;
        background: rgba(247, 242, 236, 0.82);
        box-shadow: none;
    }

    .form-grid,
    .stats-grid,
    .finance-grid,
    .footer-grid,
    .contact-grid,
    .cookie-option,
    .current-image-banner {
        grid-template-columns: 1fr;
    }

    .booking-staff-grid {
        grid-template-columns: 1fr;
    }

    .hero-copy,
    .hero-panel,
    .booking-section,
    .dashboard-card,
    .service-category-card,
    .admin-login-card,
    .page-hero,
    .site-footer,
    .cookie-modal {
        padding: 22px;
    }

    .hero-payment-sticky {
        position: static;
        margin-right: 0;
    }

    .hero h1,
    .admin-login-card h1 {
        font-size: 2.6rem;
    }

    .service-row,
    .blocked-card,
    .client-detail-top,
    .footer-grid,
    .cookie-option,
    .cookie-actions {
        flex-direction: column;
    }

    .service-meta {
        justify-items: start;
        text-align: left;
    }

    .cookie-actions .button,
    .admin-actions .button,
    .admin-actions .date-filter,
    .admin-inline-form,
    .admin-inline-form .button,
    .admin-inline-form .date-filter {
        width: 100%;
    }

    .admin-modal-actions {
        flex-direction: column;
    }

    .admin-booking-page-head {
        flex-direction: column;
        align-items: start;
    }

    .client-search-field,
    .client-detail-badges {
        width: 100%;
    }

    .admin-help-grid {
        grid-template-columns: 1fr;
    }

    .client-detail-badges {
        justify-content: flex-start;
    }

    .client-detail-metrics,
    .client-spotlight-grid {
        grid-template-columns: 1fr;
    }

    .admin-help-support-actions .button {
        width: 100%;
    }

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

    .version-price-stack {
        grid-template-columns: 1fr;
    }

    .current-image-banner {
        grid-template-columns: 1fr;
    }

    .admin-sidebar {
        padding-bottom: 18px;
    }

    .hours-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .hours-row {
        padding: 18px 22px;
        border-radius: 22px;
    }

    .hours-cta-card {
        grid-column: span 1;
    }

    .hours-cta-panel {
        min-height: auto;
        padding: 0;
    }

    .hours-cta-button {
        width: 100%;
        min-width: 0;
        min-height: 62px;
        padding: 0 24px;
        font-size: 1.1rem;
    }

    .hours-reviews-head,
    .review-card-head,
    .review-admin-card-head {
        display: grid;
    }

    .review-summary-card {
        justify-items: start;
        text-align: left;
    }

    .review-grid,
    .review-scale {
        grid-template-columns: 1fr 1fr;
    }

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

    .booking-date-toolbar {
        grid-template-columns: 38px 1fr 38px;
        gap: 10px;
    }

    .booking-date-nav {
        width: 38px;
        height: 38px;
    }

    .booking-wizard-footer {
        grid-template-columns: 52px 1fr max-content;
    }

    .booking-nav-button {
        width: 52px;
        height: 52px;
    }

    .booking-nav-button-next {
        min-width: 52px;
    }

    .booking-nav-button-next.is-ready {
        min-width: 208px;
        padding: 0 18px 0 16px;
    }

    .booking-nav-button-next.is-ready .booking-nav-text {
        max-width: 152px;
        margin-left: 8px;
        font-size: 0.88rem;
    }

    .booking-nav-button-next.is-submit-mode {
        min-width: 236px;
    }

    .booking-nav-button-next.is-submit-mode .booking-nav-text {
        max-width: 180px;
    }

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

@media (max-width: 680px) {
    .review-grid,
    .review-scale {
        grid-template-columns: 1fr;
    }
}
