/*
|--------------------------------------------------------------------------
| BronzeMe Public Booking Styles
|--------------------------------------------------------------------------
*/

:root {
    --colour-sage: #C0CDB5;
    --colour-charcoal: #373737;
    --colour-cream: #FFFBFA;

    --site-bg: var(--colour-cream);
    --site-card: #ffffff;
    --site-text: var(--colour-charcoal);
    --site-muted: rgba(55, 55, 55, 0.68);
    --site-border: rgba(55, 55, 55, 0.12);
    --site-primary: var(--colour-charcoal);
    --site-primary-text: var(--colour-cream);
    --site-soft: rgba(192, 205, 181, 0.28);
    --site-soft-strong: var(--colour-sage);

    --site-success-bg: #effaf1;
    --site-success-border: #b8e3bf;
    --site-error-bg: #fff0f0;
    --site-error-border: #f3b8b8;
    --site-error-text: #8a1f1f;

    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Montserrat', Arial, sans-serif;

    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 28px;

    --shadow-soft: 0 18px 45px rgba(55, 55, 55, 0.08);
    --shadow-card: 0 5px 16px rgba(55, 55, 55, 0.08);
    --shadow-card-hover: 0 14px 34px rgba(55, 55, 55, 0.12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--site-text);
    background:
        radial-gradient(circle at top left, rgba(192, 205, 181, 0.26), transparent 34rem),
        linear-gradient(180deg, #FFFBFA 0%, #fbf8f6 100%);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(55, 55, 55, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(55, 55, 55, 0.03) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.18), transparent 55%);
}

a {
    color: inherit;
}

h1,
h2,
h3,
h4,
.booking-title,
.section-title,
.card-title {
    font-family: var(--font-heading);
    font-weight: 400;
    letter-spacing: 0.02em;
    color: var(--site-text);
}

p {
    color: var(--site-muted);
}

/*
|--------------------------------------------------------------------------
| Header / footer
|--------------------------------------------------------------------------
*/

.site-header,
.site-footer {
    padding: 18px clamp(16px, 4vw, 54px);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    padding: 0 16px;
    background: #ffffff;
    border-bottom: 1px solid rgba(55, 55, 55, 0.10);
    backdrop-filter: none;
    box-shadow: 0 8px 24px rgba(31, 31, 34, 0.05);
}

.site-header__inner {
    width: min(1180px, 100%);
    margin: 0 auto;
    min-height: 75px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 22px;
}

.site-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    line-height: 1;
    padding: 0;
    border-radius: 0;
    background: transparent;
}

.site-logo__image {
    display: block;
    width: clamp(172px, 19vw, 230px);
    height: auto;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    font-family: var(--font-body);
}

.site-nav a,
.site-nav__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 39px;
    padding: 0.62rem 0.88rem;
    border-radius: 5px;
    text-decoration: none;
    color: #111111;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: background-color .18s ease, color .18s ease, transform .18s ease;
}

.site-nav a:hover,
.site-nav a:focus,
.site-nav__link:hover,
.site-nav__link:focus,
.site-nav__link--active {
    background-color: #eef0ea;
    color: #111111;
}

.site-nav__link--active::after {
    display: none;
}

.site-nav__cta {
    margin-left: 0.75rem;
}

.site-nav .site-nav__cta,
.site-nav__cta,
.site-nav__cta.site-nav__link--active,
.site-nav__cta:hover,
.site-nav__cta:focus {
    background-color: #292929;
    color: #ffffff;
    border-radius: 6px;
    padding: 13px 30px;
    font-weight: 400;
    letter-spacing: 0.03em;
}

.site-nav .site-nav__cta:hover,
.site-nav .site-nav__cta:focus {
    background: #1f1f1f;
    color: #ffffff;
    transform: none;
}

.site-nav-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border: 1px solid var(--site-border);
    border-radius: 999px;
    background: #ffffff;
    color: var(--site-text);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    box-shadow: 0 10px 24px rgba(55, 55, 55, 0.06);
}

.site-nav-toggle__line {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform .2s ease, opacity .2s ease;
}

body.nav-open {
    overflow: hidden;
}

body.nav-open .site-nav-toggle__line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

body.nav-open .site-nav-toggle__line:nth-child(2) {
    opacity: 0;
}

body.nav-open .site-nav-toggle__line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/*
|--------------------------------------------------------------------------
| Layout / cards
|--------------------------------------------------------------------------
*/

.site-main {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: clamp(30px, 5vw, 58px) 0;
}

.card,
.form-card,
.hero {
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid var(--site-border);
    border-radius: var(--radius-lg);
    padding: clamp(24px, 4vw, 46px);
    box-shadow: var(--shadow-soft);
}

.card h1,
.form-card h1,
.hero h1 {
    margin-top: 0;
}

.hero {
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(192, 205, 181, 0.24), transparent 38%),
        rgba(255, 255, 255, 0.86);
}

.hero h1,
.card h1,
.form-card h1,
.booking-title {
    font-size: clamp(3rem, 7vw, 3.6rem);
    line-height: 0.95;
    margin-bottom: 14px;
}

.hero p,
.card > p,
.form-card > p,
.booking-intro {
    font-size: 1.02rem;
}

/*
|--------------------------------------------------------------------------
| Forms / buttons
|--------------------------------------------------------------------------
*/

.form-row {
    margin-bottom: 16px;
}

.form-row label {
    display: block;
    margin-bottom: 7px;
    color: var(--site-text);
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: 0.03em;
}

input,
textarea,
select {
    width: 100%;
    padding: 13px 15px;
    border: 1px solid var(--site-border);
    border-radius: var(--radius-sm);
    font: inherit;
    background: rgba(255, 255, 255, 0.9);
    color: var(--site-text);
    outline: none;
    transition: border-color .18s ease, box-shadow .18s ease, background-color .18s ease;
}

input:focus,
textarea:focus,
select:focus {
    border-color: var(--site-soft-strong);
    box-shadow: 0 0 0 4px rgba(192, 205, 181, 0.28);
    background: #ffffff;
}

input[type="checkbox"],
input[type="radio"] {
    width: auto;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.checkbox-row {
    display: flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    margin: 4px 0 20px;
    color: var(--site-text);
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.4;
    cursor: pointer;
}

.checkbox-row input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    display: inline-grid;
    place-items: center;
    width: 18px;
    min-width: 18px;
    height: 18px;
    margin: 0;
    padding: 0;
    border: 1.5px solid var(--site-soft-strong);
    border-radius: 5px;
    background: #ffffff;
    cursor: pointer;
}

.checkbox-row input[type="checkbox"]:checked {
    background: var(--site-primary);
    border-color: var(--site-primary);
}

.checkbox-row input[type="checkbox"]:checked::after {
    content: '✓';
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 900;
    line-height: 1;
}

.checkbox-row input[type="checkbox"]:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(192, 205, 181, 0.28);
}

.checkbox-row span {
    display: inline-block;
}

.booking-checkbox {
    display: flex !important;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 18px;
    border: 1px solid rgba(192, 205, 181, 0.75);
    border-radius: 16px;
    background: rgba(192, 205, 181, 0.12);
    cursor: pointer;
    transition: border-color .18s ease, background-color .18s ease, box-shadow .18s ease;
}

.booking-checkbox:hover {
    border-color: var(--site-soft-strong);
    background: rgba(192, 205, 181, 0.18);
}

.booking-checkbox input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
    margin: 2px 0 0;
    border: 1.5px solid var(--site-soft-strong);
    border-radius: 6px;
    background: #ffffff;
    position: relative;
    cursor: pointer;
}

.booking-checkbox input[type="checkbox"]:checked {
    background: var(--site-primary);
    border-color: var(--site-primary);
}

.booking-checkbox input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 900;
    line-height: 1;
}

.booking-checkbox input[type="checkbox"]:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(192, 205, 181, 0.28);
}

.booking-checkbox span {
    display: block;
    color: var(--site-text);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.5;
}

button,
.button-primary,
.button-secondary {
    display: inline-block;
    border: 0;
    border-radius: 999px;
    padding: 13px 22px;
    text-decoration: none;
    font-family: var(--font-body);
    font-weight: 800;
    cursor: pointer;
    line-height: 1.2;
    transition: background-color .18s ease, color .18s ease, border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}

button,
.button-primary {
    background: var(--site-primary);
    color: var(--site-primary-text);
}

button:hover,
button:focus,
.button-primary:hover,
.button-primary:focus {
    background: var(--site-soft-strong);
    color: var(--site-text);
    transform: translateY(-1px);
    box-shadow: 0 12px 22px rgba(55, 55, 55, 0.1);
}

.button-secondary {
    background: var(--site-soft);
    color: var(--site-text);
}

.form-message {
    padding: 13px 15px;
    border-radius: var(--radius-sm);
    margin-bottom: 18px;
}

.form-message--error {
    background: var(--site-error-bg);
    border: 1px solid var(--site-error-border);
    color: var(--site-error-text);
}

.form-message--success {
    background: var(--site-success-bg);
    border: 1px solid var(--site-success-border);
}

.form-help {
    margin: 0.45rem 0 0;
    color: #666;
    font-size: 0.95rem;
}

.form-optional {
    color: #777;
    font-weight: 400;
}

.empty-state {
    border: 1px dashed var(--site-border);
    border-radius: var(--radius-md);
    padding: 24px;
    background: rgba(255, 255, 255, 0.7);
}

.empty-state h2,
.empty-state h3 {
    margin-top: 0;
}

.empty-state p {
    color: var(--site-muted);
}

/*
|--------------------------------------------------------------------------
| Booking page
|--------------------------------------------------------------------------
*/

.booking-page {
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.92);
    border-color: rgba(55, 55, 55, 0.08);
    box-shadow: 0 18px 48px rgba(55, 55, 55, 0.06);
}

.booking-page::after {
    content: '';
    position: absolute;
    top: -90px;
    right: -80px;
    width: 230px;
    height: 230px;
    border-radius: 50%;
    background: rgba(234, 236, 227, 0.9);
    z-index: 0;
}

.booking-page > * {
    position: relative;
    z-index: 1;
}

.booking-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    border: 1px solid rgba(55, 55, 55, 0.08);
    border-radius: 999px;
    background: #eef2eb;
    padding: 8px 14px;
    color: #1f1f22;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.booking-title {
    max-width: 760px;
    font-size: clamp(3rem, 7vw, 4.4rem);
    letter-spacing: 0.01em;
}

.booking-intro {
    max-width: none;
    width: 100%;
    margin-bottom: 26px;
    color: #4f4f4f;
}

.booking-loyalty-message {
    padding: 18px 20px;
    margin-bottom: 28px;
    line-height: 1.65;
}

.booking-loyalty-message strong {
    margin-right: 4px;
}

.booking-loyalty-message .booking-loyalty-exclusions {
    display: block;
    margin-top: 8px;
    font-size: 0.86rem;
    line-height: 1.55;
}

.booking-loyalty-message__small {
    display: block;
    margin-top: 8px;
    font-size: 0.86rem;
    line-height: 1.55;
    color: #4f4f4f;
}

/*
|--------------------------------------------------------------------------
| Booking account prompt
|--------------------------------------------------------------------------
*/

.booking-account-prompt {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
    margin: 28px 0 30px;
    padding: 22px 24px;
    border: 1px solid rgba(192, 205, 181, 0.55);
    border-radius: 18px;
    background:
        linear-gradient(135deg, rgba(234, 236, 227, 0.9), rgba(255, 255, 255, 0.88) 72%),
        #ffffff;
    box-shadow: none;
}

.booking-account-prompt > div:first-child {
    width: 100%;
    max-width: 100%;
}

.booking-account-prompt p {
    max-width: none;
    width: 100%;
}

.booking-account-prompt__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 12px;
    width: 100%;
}

.booking-account-prompt .button-secondary,
.booking-account-prompt .button-primary {
    min-width: 150px;
    padding: 13px 22px;
}

/*
|--------------------------------------------------------------------------
| Booking progress
|--------------------------------------------------------------------------
*/

.booking-progress {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin: 28px 0 36px;
}

.booking-progress__item {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 50px;
    border: 1px solid rgba(55, 55, 55, 0.1);
    border-radius: 999px;
    background: #ffffff;
    padding: 10px 16px;
    color: #555;
    font-size: 0.86rem;
    font-weight: 800;
    box-shadow: 0 5px 14px rgba(55, 55, 55, 0.035);
}

.booking-progress__number {
    display: inline-grid;
    place-items: center;
    width: 30px;
    height: 30px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: #eef2eb;
    color: #1f1f22;
    font-size: 0.82rem;
}

.booking-progress__item:first-child {
    border-color: rgba(192, 205, 181, 0.85);
    background: rgba(234, 236, 227, 0.45);
}

.booking-progress__item:first-child .booking-progress__number {
    background: var(--colour-sage);
}

/*
|--------------------------------------------------------------------------
| Booking steps / filters
|--------------------------------------------------------------------------
*/

.booking-step {
    margin-top: 42px;
    padding-top: 4px;
    scroll-margin-top: 120px;
}

.booking-step--hidden {
    display: none !important;
}

.booking-step h2 {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: clamp(2.3rem, 5vw, 3.1rem);
    line-height: 1;
}

.booking-filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 28px;
}

.booking-filter-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 10px 18px;
    border: 1px solid rgba(55, 55, 55, 0.1);
    border-radius: 999px;
    background: #ffffff;
    color: #1f1f22;
    font: inherit;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(55, 55, 55, 0.035);
    transition: background-color .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
}

.booking-filter-button:hover,
.booking-filter-button:focus {
    background: #eef2eb;
    border-color: rgba(192, 205, 181, 0.9);
    transform: translateY(-1px);
}

.booking-filter-button--active {
    background: #252525;
    border-color: #252525;
    color: #ffffff;
}

/*
|--------------------------------------------------------------------------
| Booking service cards
|--------------------------------------------------------------------------
*/

.booking-service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 22px;
}

.booking-service-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 280px;
    padding: 24px 24px 22px;
    border: 1px solid rgba(55, 55, 55, 0.08);
    border-radius: 10px;
    background: #ffffff;
    text-align: left;
    text-decoration: none;
    color: var(--site-text);
    box-shadow: var(--shadow-card);
    transition: background-color .18s ease, border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.booking-service-card:hover,
.booking-service-card:focus {
    border-color: rgba(192, 205, 181, 0.95);
    background: #ffffff;
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-3px);
}

.booking-service-card--selected,
.booking-service-card--selected:hover,
.booking-service-card--selected:focus {
    border-color: #9eac93;
    background: linear-gradient(135deg, rgba(234, 236, 227, 0.86), #ffffff 72%);
    box-shadow: 0 16px 36px rgba(55, 55, 55, 0.13);
}

.booking-service-card--selected::after {
    content: '✓';
    position: absolute;
    top: 18px;
    right: 18px;
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #252525;
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 900;
    box-shadow: 0 8px 18px rgba(55, 55, 55, 0.16);
}

.booking-service-card__category {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 18px;
    border-radius: 999px;
    background: #eef2eb;
    padding: 5px 11px;
    color: #6b7067;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.booking-service-card h3 {
    margin: 0 0 12px;
    padding-right: 34px;
    font-size: clamp(1.5rem, 2.4vw, 1.85rem);
    line-height: 1.05;
}

.booking-service-card__description {
    min-height: 0;
    margin: 0 0 22px;
    color: #4f4f4f;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.45;
}

.booking-service-meta {
    display: grid;
    gap: 8px;
    margin: auto 0 0;
    padding-top: 18px;
    border-top: 1px solid rgba(55, 55, 55, 0.08);
}

.booking-service-meta p {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin: 0;
    color: #1f1f22;
    font-size: 0.94rem;
    line-height: 1.45;
}

.booking-service-meta strong {
    color: #777;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-right: 6px;
}

.booking-badge {
    display: inline-flex;
    width: fit-content;
    margin-top: 18px;
    border-radius: 999px;
    background: #eef2eb;
    padding: 6px 10px;
    color: #1f1f22;
    font-size: 0.78rem;
    font-weight: 800;
}

/*
|--------------------------------------------------------------------------
| Calendar date picker
|--------------------------------------------------------------------------
*/

.booking-calendar {
    width: min(720px, 100%);
    border: 1px solid rgba(55, 55, 55, 0.08);
    border-radius: var(--radius-md);
    background: #ffffff;
    padding: clamp(18px, 4vw, 28px);
    box-shadow: 0 5px 18px rgba(55, 55, 55, 0.07);
}

.booking-calendar__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.booking-calendar__header strong {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 400;
    line-height: 1;
    color: var(--site-text);
    text-align: center;
}

.booking-calendar__nav {
    display: inline-grid;
    place-items: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid var(--site-border);
    border-radius: 50%;
    background: #ffffff;
    color: var(--site-text);
    font-size: 1.1rem;
    font-weight: 900;
}

.booking-calendar__nav:disabled {
    opacity: 0.35;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.booking-calendar__weekdays,
.booking-calendar__grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 8px;
}

.booking-calendar__weekdays {
    margin-bottom: 8px;
}

.booking-calendar__weekdays span {
    color: var(--site-muted);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-align: center;
    text-transform: uppercase;
}

.booking-calendar__blank {
    min-height: 46px;
}

.booking-calendar__day {
    display: inline-grid;
    place-items: center;
    min-width: 0;
    width: 100%;
    height: 48px;
    padding: 0;
    border: 1px solid transparent;
    border-radius: 14px;
    background: transparent;
    color: rgba(55, 55, 55, 0.32);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 800;
    box-shadow: none;
    cursor: default;
}

.booking-calendar__day:hover,
.booking-calendar__day:focus {
    transform: none;
    box-shadow: none;
}

.booking-calendar__day--available {
    border-color: rgba(55, 55, 55, 0.1);
    background: #ffffff;
    color: var(--site-text);
    cursor: pointer;
}

.booking-calendar__day--available:hover,
.booking-calendar__day--available:focus {
    background: #eef2eb;
    border-color: rgba(192, 205, 181, 0.95);
    color: var(--site-text);
    transform: translateY(-1px);
    box-shadow: 0 10px 18px rgba(55, 55, 55, 0.07);
}

.booking-calendar__day--selected,
.booking-calendar__day--selected:hover,
.booking-calendar__day--selected:focus {
    border-color: #252525;
    background: #252525;
    color: #ffffff;
}

.booking-calendar__selected {
    margin: 18px 0 0;
    border-radius: 14px;
    background: rgba(192, 205, 181, 0.18);
    padding: 12px 14px;
    color: var(--site-text);
    font-weight: 700;
}

.booking-calendar__empty {
    grid-column: 1 / -1;
}

/*
|--------------------------------------------------------------------------
| Time picker
|--------------------------------------------------------------------------
*/

.booking-time-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
    align-items: start;
    gap: 12px;
    margin-bottom: 24px;
}

.booking-time-button,
.booking-time-option span {
    display: block;
    width: 100%;
    min-height: 48px;
    border: 1px solid rgba(55, 55, 55, 0.1);
    border-radius: 999px;
    background: #ffffff;
    padding: 13px 14px;
    color: var(--site-text);
    text-align: center;
    font-weight: 900;
    box-shadow: 0 4px 12px rgba(55, 55, 55, 0.035);
}

.booking-time-button:hover,
.booking-time-button:focus {
    background: #eef2eb;
    border-color: rgba(192, 205, 181, 0.95);
    color: #1f1f22;
    transform: translateY(-1px);
}

.booking-time-button--selected,
.booking-time-option input:checked + span {
    background: #252525;
    border-color: #252525;
    color: #ffffff;
    transform: translateY(-1px);
}

.booking-time-option {
    cursor: pointer;
}

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

/*
|--------------------------------------------------------------------------
| Booking details / summary / payment
|--------------------------------------------------------------------------
*/

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

.booking-step-details,
#booking-step-details {
    max-width: 100%;
}

.booking-future-event-box,
.booking-account-create-box {
    margin-top: 1rem;
    padding: 18px;
    border: 1px solid rgba(55, 55, 55, 0.08);
    border-radius: 18px;
    background:
        linear-gradient(135deg, rgba(234, 236, 227, 0.78), rgba(255, 255, 255, 0.96) 72%),
        #ffffff;
    box-shadow: 0 5px 16px rgba(55, 55, 55, 0.045);
}

.booking-future-event-box .booking-checkbox,
.booking-account-create-box .booking-checkbox,
#terms_accepted + span,
label[for="terms_accepted"] {
    margin-bottom: 0;
}

.booking-future-event-box .form-help,
.booking-account-create-box .form-help {
    margin: 10px 0 0 46px;
    color: #666;
    font-size: 0.92rem;
}

.booking-summary {
    position: relative;
    overflow: hidden;
    margin: 22px 0 22px;
    padding: clamp(22px, 4vw, 32px);
    border: 1px solid rgba(55, 55, 55, 0.08);
    border-radius: 22px;
    background:
        linear-gradient(135deg, rgba(234, 236, 227, 0.58), transparent 46%),
        #ffffff;
    box-shadow: 0 5px 16px rgba(55, 55, 55, 0.045);
}

.booking-summary::after {
    content: '';
    position: absolute;
    right: -60px;
    top: -60px;
    width: 150px;
    height: 150px;
    border-radius: 999px;
    background: rgba(234, 236, 227, 0.9);
    z-index: 0;
}

.booking-summary > * {
    position: relative;
    z-index: 1;
}

.booking-summary h3 {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: clamp(2rem, 4vw, 2.6rem);
    line-height: 1;
}

.booking-summary p {
    display: grid;
    grid-template-columns: minmax(120px, 0.75fr) minmax(0, 1.25fr);
    align-items: start;
    gap: 18px;
    margin: 0;
    padding: 13px 0;
    border-bottom: 1px solid rgba(55, 55, 55, 0.08);
    color: var(--site-muted);
}

.booking-summary p:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.booking-summary p strong {
    color: #1f1f22;
    font-weight: 800;
}

.booking-summary p span {
    justify-self: end;
    text-align: right;
    color: #1f1f22;
}

.booking-payment-choice {
    margin-top: 22px;
    padding: 18px;
    border: 1px solid rgba(55, 55, 55, 0.08);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 5px 16px rgba(55, 55, 55, 0.045);
}

.booking-payment-choice h4 {
    margin: 0 0 16px;
    font-family: var(--font-heading);
    font-size: clamp(1.45rem, 3vw, 1.85rem);
    font-weight: 400;
    line-height: 1.1;
}

.booking-payment-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 16px;
    border: 1px solid var(--site-border);
    border-radius: 14px;
    margin-bottom: 10px;
    background: #ffffff;
    cursor: pointer;
    transition: background-color .18s ease, border-color .18s ease, transform .18s ease;
}

.booking-payment-option:last-child {
    margin-bottom: 0;
}

.booking-payment-option:hover {
    background: #eef2eb;
    border-color: rgba(192, 205, 181, 0.9);
    transform: translateY(-1px);
}

.booking-payment-option input[type="radio"] {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    margin: 0;
    accent-color: #252525;
}

.booking-payment-option span {
    color: #1f1f22;
}

.booking-payment-option strong {
    display: inline-block;
    font-weight: 900;
}

label[for="terms_accepted"].booking-checkbox {
    margin-top: 22px;
    border-color: rgba(192, 205, 181, 0.78);
    background:
        linear-gradient(135deg, rgba(234, 236, 227, 0.7), rgba(255, 255, 255, 0.96) 72%),
        #ffffff;
}

label[for="terms_accepted"].booking-checkbox a {
    color: #1f1f22;
    font-weight: 900;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

#booking-form > button[type="submit"] {
    min-width: 220px;
    margin-top: 4px;
    padding: 15px 28px;
    box-shadow: 0 12px 26px rgba(55, 55, 55, 0.14);
}

/*
|--------------------------------------------------------------------------
| Client dashboard
|--------------------------------------------------------------------------
*/

.client-dashboard-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.client-dashboard-heading h1 {
    margin-top: 0;
    margin-bottom: 8px;
}

.client-dashboard-heading p {
    margin: 0;
    color: var(--site-muted);
}

.client-dashboard-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 14px;
    margin-bottom: 34px;
}

.client-dashboard-summary article,
.client-appointment-card,
.client-appointment-view-card,
.client-info-box {
    border: 1px solid var(--site-border);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.86);
    padding: 18px;
}

.client-dashboard-summary strong {
    display: block;
    font-size: 1.8rem;
    line-height: 1;
    margin-bottom: 8px;
}

.client-dashboard-summary span {
    color: var(--site-muted);
    font-weight: 700;
}

.client-dashboard-section {
    margin-top: 34px;
}

.client-dashboard-section h2 {
    margin-top: 0;
}

.client-dashboard-section-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.client-dashboard-section-heading h2 {
    margin-bottom: 0.25rem;
}

.client-dashboard-section-heading p {
    margin: 0;
    color: #6f6b67;
}

.client-dashboard-history-link {
    margin-top: 2rem;
    text-align: center;
}

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

.client-appointment-card__top {
    display: block;
    margin-bottom: 1rem;
}

.client-appointment-card__top h3 {
    margin: 0;
    font-size: 1.15rem;
}

.client-appointment-card__top p {
    margin: 6px 0 0;
    color: var(--site-muted);
}

.client-appointment-card h3 {
    font-size: 1.6rem;
    line-height: 1.25;
    margin-bottom: 0.5rem;
}

.client-appointment-card__heading {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.65rem;
}

.client-appointment-card__heading .client-status-badge {
    align-self: flex-start;
}

.client-appointment-card__heading h3,
.client-appointment-card__heading p {
    margin: 0;
}

.client-appointment-details {
    display: grid;
    gap: 10px;
}

.client-appointment-details p {
    margin: 0;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.client-appointment-details--large {
    margin-top: 18px;
}

.client-status-badge {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 0.85rem;
    font-weight: 800;
    white-space: nowrap;
}

.client-status-badge--active {
    background: var(--site-success-bg);
    border: 1px solid var(--site-success-border);
}

.client-status-badge--pending {
    background: var(--site-soft);
    border: 1px solid var(--site-border);
    color: var(--site-muted);
}

.client-status-badge--danger {
    background: var(--site-error-bg);
    border: 1px solid var(--site-error-border);
    color: var(--site-error-text);
}

.client-card-actions {
    margin-top: 18px;
}

.client-card-actions .button-secondary {
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.client-card-actions .button-secondary:hover,
.client-card-actions .button-secondary:focus {
    background-color: #d3ddcd;
    color: #1f1f22;
    transform: translateY(-1px);
}

.client-appointment-view-card {
    margin-bottom: 18px;
}

.client-appointment-view-card h2 {
    margin: 0;
}

.client-info-box {
    color: var(--site-muted);
}

.client-info-box strong {
    color: var(--site-text);
}

.client-info-box--warning {
    background: #fff8e8;
    border-color: #efd08a;
    color: var(--site-text);
}

.client-filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 2rem 0;
}

.client-filter-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.15rem;
    border-radius: 999px;
    background: #eef2eb;
    color: #1f1f22;
    text-decoration: none;
    font-weight: 700;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.client-filter-link:hover,
.client-filter-link:focus {
    background: #d3ddcd;
    color: #1f1f22;
    transform: translateY(-1px);
}

.client-filter-link--active {
    background: #333333;
    color: #ffffff;
}

.client-filter-link--active:hover,
.client-filter-link--active:focus {
    background: #222222;
    color: #ffffff;
}

/*
|--------------------------------------------------------------------------
| Cancellation / extra boxes
|--------------------------------------------------------------------------
*/

.client-cancellation-box {
    margin-top: 2rem;
    padding: 1.25rem;
    border: 1px solid #eee5df;
    border-radius: 16px;
    background: #fffaf7;
}

.client-cancellation-box h3 {
    margin-top: 0;
}

.client-cancellation-box p {
    margin-bottom: 0.75rem;
}

/*
|--------------------------------------------------------------------------
| Responsive
|--------------------------------------------------------------------------
*/

@media (min-width: 900px) {
    .client-dashboard-summary {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 900px) {
    .booking-progress,
    .client-dashboard-summary,
    .client-appointment-list {
        grid-template-columns: 1fr;
    }

    .booking-progress__item {
        border-radius: 16px;
    }
}

@media (max-width: 1100px) {
    .site-header {
        padding: 12px 16px;
    }

    .site-header__inner {
        min-height: 70px;
    }

    .site-logo {
        padding: 0;
    }

    .site-logo__image {
        width: clamp(150px, 34vw, 190px);
    }

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

    .site-nav {
        position: absolute;
        left: 16px;
        right: 16px;
        top: calc(100% + 12px);
        z-index: 30;
        display: grid;
        gap: 8px;
        padding: 22px;
        border: 1px solid rgba(192, 205, 181, 0.55);
        border-radius: 24px;
        background: rgba(255, 251, 250, 0.98);
        box-shadow: 0 24px 60px rgba(55, 55, 55, 0.14);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-8px);
        transition: opacity .2s ease, transform .2s ease;
    }

    body.nav-open .site-nav {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .site-nav a {
        min-height: 52px;
        border-radius: 16px;
        font-size: 1rem;
        color: var(--site-text);
    }

    .site-nav .site-nav__cta {
        background: rgba(192, 205, 181, 0.35);
        color: var(--site-text);
    }
}

@media (max-width: 760px) {
    .booking-account-prompt {
        display: grid;
        gap: 18px;
        padding: 20px;
    }

    .booking-account-prompt__actions {
        display: grid;
        justify-content: stretch;
    }

    .booking-account-prompt__actions .button-primary,
    .booking-account-prompt__actions .button-secondary,
    .booking-account-prompt .button-secondary {
        width: 100%;
        text-align: center;
    }

    .booking-progress {
        gap: 8px;
    }

    .booking-service-card {
        min-height: auto;
    }

    .client-dashboard-section-heading {
        display: block;
    }

    .client-dashboard-section-heading .button-secondary {
        margin-top: 1rem;
    }
}

@media (max-width: 640px) {
    .site-main {
        width: min(100% - 24px, 1120px);
        padding: 24px 0;
    }

    .booking-title {
        font-size: clamp(2.7rem, 14vw, 3.6rem);
    }

    .booking-service-grid,
    .booking-form-grid {
        grid-template-columns: 1fr;
    }

    .booking-service-grid {
        gap: 16px;
    }

    .booking-filter-bar {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .booking-filter-button {
        width: 100%;
        min-height: 46px;
        padding-inline: 10px;
        font-size: 0.82rem;
    }

    .booking-service-meta p {
        display: grid;
        gap: 2px;
    }

    .booking-calendar {
        padding: 16px;
    }

    .booking-calendar__header {
        gap: 10px;
    }

    .booking-calendar__nav {
        width: 40px;
        height: 40px;
    }

    .booking-calendar__weekdays,
    .booking-calendar__grid {
        gap: 5px;
    }

    .booking-calendar__weekdays span {
        font-size: 0.68rem;
    }

    .booking-calendar__day {
        height: 42px;
        border-radius: 12px;
        font-size: 0.88rem;
    }

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

    button,
    .button-primary,
    .button-secondary {
        width: 100%;
        text-align: center;
        margin-bottom: 12px;
    }

    .site-nav-toggle,
    .booking-calendar__nav,
    .booking-calendar__day {
        width: auto;
    }

    .booking-calendar__nav {
        width: 40px;
    }

    .booking-future-event-box .form-help,
    .booking-account-create-box .form-help {
        margin-left: 0;
    }

    .booking-summary p {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .booking-summary p span {
        justify-self: start;
        text-align: left;
    }

    .booking-payment-option {
        align-items: flex-start;
    }

    #booking-form > button[type="submit"] {
        width: 100%;
    }

    .client-filter-bar {
        display: grid;
        grid-template-columns: 1fr;
    }

    .client-filter-link {
        width: 100%;
    }
}

/*
|--------------------------------------------------------------------------
| Footer polish - match main WordPress site
|--------------------------------------------------------------------------
*/

.site-footer {
    margin-top: 34px;
    padding: 0;
    border-top: 0;
    background: #343434;
    color: #d8d8d8;
    text-align: left;
}

.site-footer p,
.site-footer span,
.site-footer a {
    color: #d8d8d8;
}

.site-footer a {
    text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus {
    color: #ffffff;
}

.site-footer__inner {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 38px 0 32px;
    display: grid;
    grid-template-columns: 1.2fr 1.1fr 1fr;
    gap: 54px;
    align-items: start;
}

.site-footer__brand {
    display: block;
    margin: 0;
}

.site-footer__logo-image {
    display: block;
    width: min(310px, 100%);
    max-width: 100%;
    height: auto;
    margin: 0 0 16px;
    padding: 0;
    border-radius: 0;
    background: transparent;
}

.site-footer__tagline {
    max-width: 310px;
    margin: 0 0 22px;
    color: #e7e7e7;
    font-size: 1rem;
    line-height: 1.45;
}

.site-footer__socials {
    display: flex;
    gap: 18px;
    align-items: center;
}

.site-footer__socials a {
    display: inline-grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #f2f4ef;
    color: #343434;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1;
}

.site-footer__socials a:hover,
.site-footer__socials a:focus {
    background: #ffffff;
    color: #343434;
}

.site-footer__contact {
    display: grid;
    gap: 18px;
    padding-top: 8px;
}

.site-footer__contact p {
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: 16px;
    margin: 0;
    color: #d8d8d8;
    font-size: 1rem;
    line-height: 1.45;
}

.site-footer__contact a {
    overflow-wrap: anywhere;
}

.site-footer__contact strong {
    color: #ffffff;
    font-weight: 400;
}

.site-footer__column {
    padding-top: 2px;
}

.site-footer__column h2,
.site-footer__column h3 {
    margin: 0 0 18px;
    font-family: var(--font-heading);
    color: #ffffff;
    font-size: clamp(2rem, 4vw, 2.6rem);
    font-weight: 400;
    line-height: 1;
}

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

.site-footer__links a {
    color: #bfc0c2;
    font-size: 1rem;
}

.site-footer__links a:hover,
.site-footer__links a:focus {
    color: #ffffff;
}

.site-footer__bottom {
    background: #2b2b2b;
}

.site-footer__bottom-inner {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 10px 0 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.site-footer__bottom p {
    margin: 0;
    color: #c9c9c9;
    font-size: 0.95rem;
    line-height: 1.45;
}

.site-footer__bottom p.site-footer__credit {
    margin-top: 8px;
}

.site-footer__bottom-links {
    display: flex;
    gap: 34px;
    align-items: center;
    flex-wrap: wrap;
}

.site-footer__bottom-links a {
    color: #c9c9c9;
    font-size: 0.95rem;
}

.site-footer__credit strong {
    color: #ffffff;
    font-weight: 600;
}

.site-footer__credit a:hover,
.site-footer__credit a:focus {
    text-decoration: underline;
    text-underline-offset: 3px;
}

/*
|--------------------------------------------------------------------------
| Footer mobile layout
|--------------------------------------------------------------------------
*/

@media (max-width: 900px) {
    .site-footer {
        text-align: center;
    }

    .site-footer__inner {
        grid-template-columns: 1fr;
        gap: 34px;
        padding: 34px 0 28px;
        justify-items: center;
        text-align: center;
    }

    .site-footer__brand,
    .site-footer__contact,
    .site-footer__column {
        width: 100%;
        display: grid;
        justify-items: center;
        text-align: center;
    }

    .site-footer__logo-image {
        width: min(280px, 100%);
        margin-left: auto;
        margin-right: auto;
    }

    .site-footer__tagline {
        margin-left: auto;
        margin-right: auto;
    }

    .site-footer__socials {
        justify-content: center;
    }

    .site-footer__contact p {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 12px;
        text-align: center;
    }

    .site-footer__links {
        justify-items: center;
        text-align: center;
    }

    .site-footer__bottom-inner {
        width: min(1180px, calc(100% - 32px));
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 12px;
        text-align: center;
        padding-bottom: 50px;
    }

    .site-footer__bottom-inner > div {
        width: 100%;
        display: grid;
        justify-items: center;
        text-align: center;
    }

    .site-footer__bottom p {
        width: 100%;
        text-align: center;
    }

    .site-footer__bottom-links {
        width: 100%;
        justify-content: center;
        text-align: center;
        gap: 18px;
    }
}

/*
|--------------------------------------------------------------------------
| Header home dropdown
|--------------------------------------------------------------------------
*/

.site-nav__dropdown {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.site-nav__dropdown::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 14px;
}

.site-nav__dropdown-toggle {
    border: 0;
    cursor: default;
    font-family: var(--font-body);
}

.site-nav__dropdown-toggle span {
    margin-left: 5px;
    font-size: 0.8em;
    line-height: 1;
}

.site-nav__dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    z-index: 60;
    min-width: 220px;
    padding: 14px 18px;
    border: 1px solid rgba(55, 55, 55, 0.1);
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 18px 40px rgba(55, 55, 55, 0.12);
    transform: translateX(-50%) translateY(-4px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.site-nav__dropdown:hover .site-nav__dropdown-menu,
.site-nav__dropdown:focus-within .site-nav__dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.site-nav__dropdown-menu a {
    display: block;
    min-height: 0;
    padding: 0;
    border-radius: 0;
    background: transparent;
    color: #1f1f22;
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.4;
    text-transform: none;
    white-space: nowrap;
}

.site-nav__dropdown-menu a:hover,
.site-nav__dropdown-menu a:focus {
    background: transparent;
    color: #000000;
}

/*
|--------------------------------------------------------------------------
| Header home dropdown - mobile
|--------------------------------------------------------------------------
*/

@media (max-width: 1100px) {
    .site-nav__dropdown {
        display: grid;
        width: 100%;
    }

    .site-nav__dropdown::after {
        display: none;
    }

    .site-nav__dropdown-toggle {
        width: 100%;
        min-height: 52px;
        justify-content: center;
        border-radius: 16px;
        color: var(--site-text);
    }

    .site-nav__dropdown-menu {
        position: static;
        width: 100%;
        min-width: 0;
        margin-top: 8px;
        padding: 12px;
        transform: none;
        text-align: center;
    }

    .site-nav__dropdown:hover .site-nav__dropdown-menu,
    .site-nav__dropdown:focus-within .site-nav__dropdown-menu {
        transform: none;
    }

    .site-nav__dropdown-menu a {
        white-space: normal;
    }
}

/*
|--------------------------------------------------------------------------
| Header home dropdown colour fix
|--------------------------------------------------------------------------
*/

.site-nav__dropdown-toggle {
    background: transparent;
    color: #111111;
    box-shadow: none;
    transform: none;
}

.site-nav__dropdown-toggle:hover,
.site-nav__dropdown-toggle:focus,
.site-nav__dropdown:hover .site-nav__dropdown-toggle,
.site-nav__dropdown:focus-within .site-nav__dropdown-toggle {
    background-color: #eef0ea;
    color: #111111;
    box-shadow: none;
    transform: none;
}

/*
|--------------------------------------------------------------------------
| Login / register two-column auth cards
|--------------------------------------------------------------------------
*/

.auth-card {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
    gap: 0;
    overflow: hidden;
    min-height: 620px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(55, 55, 55, 0.08);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.auth-card__content {
    padding: clamp(28px, 5vw, 54px);
    align-self: center;
}

.auth-card__kicker {
    display: inline-flex;
    margin: 0 0 14px;
    border-radius: 999px;
    background: #eef2eb;
    padding: 8px 14px;
    color: #1f1f22;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    line-height: 1;
    text-transform: uppercase;
}

.auth-card h1 {
    margin: 0 0 12px;
    font-size: clamp(3rem, 6vw, 4rem);
    line-height: 0.95;
}

.auth-card__content > p {
    max-width: 620px;
    margin: 0 0 24px;
}

.auth-card form {
    max-width: 680px;
}

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

.auth-card .form-row {
    margin-bottom: 16px;
}

.auth-card input {
    min-height: 54px;
}

.auth-card button[type="submit"] {
    min-width: 150px;
    margin-top: 4px;
}

.auth-card__links {
    margin: 22px 0 0;
}

.auth-card__links a {
    color: #1f1f22;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.auth-card__media {
    position: relative;
    min-height: 100%;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(192, 205, 181, 0.28), rgba(255, 255, 255, 0.12)),
        #dfe5d8;
}

.auth-card__media img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 620px;
    object-fit: cover;
}

.auth-card__media::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.38)),
        linear-gradient(135deg, rgba(192, 205, 181, 0.18), transparent 54%);
}

.auth-card__media-overlay {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 28px;
    z-index: 1;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 22px;
    background: rgba(255, 251, 250, 0.86);
    backdrop-filter: blur(14px);
    box-shadow: 0 18px 45px rgba(55, 55, 55, 0.16);
}

.auth-card__media-overlay h2 {
    margin: 0 0 8px;
    font-size: clamp(2rem, 4vw, 2.7rem);
    line-height: 0.95;
}

.auth-card__media-overlay p {
    margin: 0;
    color: #4f4f4f;
}

@media (max-width: 980px) {
    .auth-card {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .auth-card__content {
        order: 2;
    }

    .auth-card__media {
        order: 1;
        min-height: 280px;
    }

    .auth-card__media img {
        min-height: 280px;
        max-height: 360px;
    }
}

@media (max-width: 640px) {
    .auth-card {
        border-radius: 22px;
    }

    .auth-card__content {
        padding: 26px 20px;
    }

    .auth-form-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .auth-card h1 {
        font-size: clamp(2.6rem, 13vw, 3.3rem);
    }

    .auth-card button[type="submit"] {
        width: 100%;
    }

    .auth-card__media {
        min-height: 220px;
    }

    .auth-card__media img {
        min-height: 220px;
        max-height: 280px;
    }

    .auth-card__media-overlay {
        left: 16px;
        right: 16px;
        bottom: 16px;
        padding: 18px;
    }
}

/*
|--------------------------------------------------------------------------
| Auth form small fixes
|--------------------------------------------------------------------------
*/

.auth-card form button[type="submit"] {
    display: block;
    margin-top: 6px;
    margin-bottom: 34px;
}

.auth-card__links {
    margin-top: 0;
}

/*
|--------------------------------------------------------------------------
| Auth checkbox final fix
|--------------------------------------------------------------------------
*/

.auth-card .checkbox-row {
    display: grid;
    grid-template-columns: 18px auto;
    align-items: center;
    column-gap: 10px;
    width: fit-content;
    margin: 6px 0 28px;
}

.auth-card .checkbox-row input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    display: block;
    width: 18px !important;
    min-width: 18px !important;
    max-width: 18px !important;
    height: 18px !important;
    min-height: 18px !important;
    max-height: 18px !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 1.5px solid var(--site-soft-strong);
    border-radius: 4px;
    background: #ffffff;
}

.auth-card .checkbox-row input[type="checkbox"]:checked {
    background: var(--site-primary);
    border-color: var(--site-primary);
}

.auth-card .checkbox-row input[type="checkbox"]:checked::after {
    content: '✓';
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 900;
    line-height: 1;
}

.auth-card .checkbox-row span {
    line-height: 1.2;
}

/*
|--------------------------------------------------------------------------
| Register terms and reCAPTCHA notice
|--------------------------------------------------------------------------
*/

.auth-card label.auth-terms-checkbox,
.auth-card label.auth-terms-checkbox.booking-checkbox {
    display: grid !important;
    grid-template-columns: 18px minmax(0, 1fr);
    align-items: start;
    gap: 12px;
    width: fit-content;
    max-width: 100%;
    margin: 12px 0 32px;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

.auth-card label.auth-terms-checkbox:hover,
.auth-card label.auth-terms-checkbox.booking-checkbox:hover {
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

.auth-card .auth-terms-checkbox input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    display: block;
    width: 18px !important;
    min-width: 18px !important;
    max-width: 18px !important;
    height: 18px !important;
    min-height: 18px !important;
    max-height: 18px !important;
    margin: 3px 0 0 !important;
    padding: 0 !important;
    border: 1.5px solid var(--site-soft-strong) !important;
    border-radius: 4px !important;
    background: #ffffff !important;
    box-shadow: none !important;
}

.auth-card .auth-terms-checkbox input[type="checkbox"]:checked {
    background: var(--site-primary) !important;
    border-color: var(--site-primary) !important;
}

.auth-card .auth-terms-checkbox input[type="checkbox"]:checked::after {
    content: '✓';
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 900;
    line-height: 1;
}

.auth-card .auth-terms-checkbox span {
    color: var(--site-text);
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.45;
}

.auth-card .auth-terms-checkbox a {
    color: #1f1f22;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.auth-recaptcha-notice {
    max-width: 620px;
    margin: -8px 0 26px;
    color: var(--site-muted);
    font-size: 0.82rem;
    line-height: 1.5;
}

.auth-recaptcha-notice a {
    color: #1f1f22;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

/*
|--------------------------------------------------------------------------
| Hide Google reCAPTCHA floating badge
|--------------------------------------------------------------------------
*/

.grecaptcha-badge {
    visibility: hidden;
}