:root {
    --ink: #16121F;
    --ink-soft: #312A44;
    --pink: #E8298A;
    --pink-deep: #B81570;
    --pink-tint: #FCE6F1;
    --lime: #D7FF3E;
    --lime-deep: #A8CC1F;
    --teal: #00C2B2;
    --teal-tint: #E1FBF8;
    --bg: #FAF9FC;
    --surface: #FFFFFF;
    --border: #E9E5F1;
    --muted: #7A7389;
    --muted-2: #AFA8C0;
    --shadow: 0 1px 2px rgba(22, 18, 31, .04), 0 12px 28px -12px rgba(22, 18, 31, .14);
    --shadow-lg: 0 20px 48px -16px rgba(22, 18, 31, .28);
    --spring: cubic-bezier(.34, 1.56, .64, 1);
    --danger: #C62828;
    --success: #0D6832;
}

.hj-body {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    -webkit-font-smoothing: antialiased;
}

.hj-body h1,
.hj-body h2,
.hj-body h3,
.hj-body .display {
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
    letter-spacing: -0.01em;
    margin: 0;
}

.hj-body .mono {
    font-family: 'JetBrains Mono', monospace;
}

.hj-body a {
    color: inherit;
}

.hj-body button,
.hj-body input,
.hj-body select,
.hj-body textarea {
    font-family: inherit;
    box-sizing: border-box;
}

/* Nav (legacy — site nav uses hopjump-site.css .hj-nav.hj-nav--site) */
.hj-nav:not(.hj-nav--site) {
    position: sticky;
    top: 0;
    z-index: 40;
    background: var(--ink);
    color: #fff;
    padding: 0 clamp(20px, 4vw, 48px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.hj-nav:not(.hj-nav--site) .hj-nav__logo {
    font-family: 'Fredoka', sans-serif;
    font-weight: 700;
    font-size: 22px;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: -.02em;
    text-decoration: none;
    color: #fff;
}

.hj-nav:not(.hj-nav--site) .hj-nav__logo .dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--lime);
    display: inline-block;
    transform: translateY(-8px);
    animation: hjDotBounce 2.2s var(--spring) infinite;
}

@keyframes hjDotBounce {
    0%, 100% { transform: translateY(-8px); }
    50% { transform: translateY(0); }
}

.hj-nav:not(.hj-nav--site) .hj-nav__links {
    display: flex;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 14.5px;
    font-weight: 600;
}

.hj-nav:not(.hj-nav--site) .hj-nav__links a {
    text-decoration: none;
    color: rgba(255, 255, 255, .62);
    position: relative;
    padding-bottom: 26px;
    transition: color .2s;
}

.hj-nav:not(.hj-nav--site) .hj-nav__links a:hover,
.hj-nav:not(.hj-nav--site) .hj-nav__links a.is-active {
    color: #fff;
}

.hj-nav:not(.hj-nav--site) .hj-nav__links a.is-active::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 23px;
    height: 3px;
    border-radius: 3px;
    background: var(--pink);
}

.hj-nav:not(.hj-nav--site) .hj-nav__user {
    text-align: right;
    font-size: 12.5px;
    line-height: 1.5;
}

.hj-nav:not(.hj-nav--site) .hj-nav__user .email {
    color: rgba(255, 255, 255, .5);
    max-width: 220px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.hj-nav:not(.hj-nav--site) .hj-nav__guest-label {
    color: rgba(255, 255, 255, .72);
    font-weight: 600;
}

.hj-nav:not(.hj-nav--site) .hj-nav__user .links {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    font-weight: 700;
    align-items: center;
}

.hj-nav:not(.hj-nav--site) .hj-nav__user .links a,
.hj-nav:not(.hj-nav--site) .hj-nav__user .links button {
    color: var(--lime);
    text-decoration: none;
    background: none;
    border: 0;
    padding: 0;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
}

.hj-nav:not(.hj-nav--site) .hj-nav__user .links a.is-current {
    text-decoration: underline;
}

.hj-nav:not(.hj-nav--site) .hj-nav__login {
    background: var(--lime);
    color: var(--ink);
    border: none;
    border-radius: 12px;
    padding: 10px 16px;
    font-weight: 700;
    font-size: 13px;
    text-decoration: none;
    cursor: pointer;
}

@media (max-width: 860px) {
    .hj-nav:not(.hj-nav--site) .hj-nav__links {
        display: none;
    }
}

/* Hero */
.hj-hero {
    max-width: 1120px;
    margin: 0 auto;
    padding: 56px clamp(20px, 4vw, 48px) 8px;
    text-align: center;
}

.hj-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--pink-tint);
    color: var(--pink-deep);
    font-weight: 700;
    font-size: 12.5px;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 7px 14px;
    border-radius: 99px;
    margin-bottom: 18px;
}

.hj-hero h1 {
    font-size: clamp(30px, 4.6vw, 46px);
    line-height: 1.05;
}

.hj-hero .sub {
    max-width: 560px;
    margin: 16px auto 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.6;
}

.hj-banner {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 24px;
    background: var(--surface);
    border: 1.5px dashed var(--teal);
    color: var(--ink-soft);
    padding: 10px 18px;
    border-radius: 14px;
    font-size: 14.5px;
    font-weight: 500;
}

.hj-banner a {
    color: var(--teal);
    font-weight: 700;
    text-decoration: none;
}

.hj-banner a:hover {
    text-decoration: underline;
}

/* Layout + cards */
.hj-layout {
    max-width: 1120px;
    margin: 32px auto 80px;
    padding: 0 clamp(20px, 4vw, 48px);
    display: grid;
    gap: 24px;
}

.hj-layout--2 {
    grid-template-columns: 1fr 1fr;
    align-items: start;
}

.hj-layout--account-top {
    grid-template-columns: 0.9fr 1.1fr;
}

@media (max-width: 900px) {
    .hj-layout--2,
    .hj-layout--account-top {
        grid-template-columns: 1fr;
    }
}

.hj-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 22px;
    box-shadow: var(--shadow);
    padding: 24px;
}

.hj-card__title {
    font-weight: 700;
    font-size: 15px;
    color: var(--ink);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hj-card__hint {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.55;
    margin: -8px 0 18px;
}

.hj-divider {
    height: 1px;
    background: var(--border);
    margin: 20px 0;
}

/* Profile stats */
.hj-stat {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 11px 0;
    border-bottom: 1px solid var(--border);
    font-size: 14.5px;
}

.hj-stat:last-child {
    border-bottom: 0;
}

.hj-stat__label {
    color: var(--muted);
    font-weight: 600;
}

.hj-stat__value {
    font-weight: 700;
    text-align: right;
}

.hj-stat__value--lime {
    color: var(--pink-deep);
    font-family: 'Fredoka', sans-serif;
    font-size: 18px;
}

.hj-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.hj-chip {
    background: var(--pink-tint);
    color: var(--pink-deep);
    font-weight: 700;
    font-size: 12.5px;
    padding: 7px 13px;
    border-radius: 99px;
}

.hj-chip--lime {
    background: rgba(215, 255, 62, .25);
    color: var(--ink-soft);
}

/* Forms */
.hj-field {
    margin-bottom: 14px;
}

.hj-field label {
    display: block;
    font-weight: 600;
    font-size: 13.5px;
    margin-bottom: 6px;
    color: var(--ink-soft);
}

.hj-field input {
    width: 100%;
    max-width: 100%;
    display: block;
    border: 1.5px solid var(--border);
    border-radius: 12px;
    padding: 12px 14px;
    font-size: 14.5px;
    background: var(--surface);
    color: var(--ink);
    transition: border-color .2s, box-shadow .2s;
}

.hj-field input:focus {
    outline: none;
    border-color: var(--pink);
    box-shadow: 0 0 0 3px var(--pink-tint);
}

.hj-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 14px;
    padding: 14px 24px;
    font-weight: 700;
    font-size: 14.5px;
    letter-spacing: .02em;
    cursor: pointer;
    text-decoration: none;
    transition: transform .18s var(--spring), box-shadow .18s;
}

.hj-btn--primary {
    background: var(--lime);
    color: var(--ink);
}

.hj-btn--primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 10px 24px -8px rgba(215, 255, 62, .6);
}

.hj-btn--secondary {
    background: var(--ink);
    color: #fff;
}

.hj-btn--secondary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.hj-btn--ghost {
    background: var(--surface);
    color: var(--ink);
    border: 1.5px solid var(--border);
}

.hj-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 8px;
}

.hj-actions--center {
    justify-content: center;
}

/* Flash */
.hj-flash {
    border-radius: 12px;
    padding: 12px 14px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

.hj-flash--success {
    background: #E8F5E9;
    color: var(--success);
}

.hj-flash--error {
    background: #FFEBEE;
    color: var(--danger);
}

.hj-page-flash {
    max-width: 1120px;
    margin: 16px auto 0;
    padding: 0 clamp(20px, 4vw, 48px);
}

/* Orders list */
.hj-order {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px 16px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
    line-height: 1.45;
}

.hj-order:last-child {
    border-bottom: 0;
}

.hj-order__meta {
    color: var(--muted);
    font-size: 12.5px;
    margin-top: 4px;
}

.hj-order__pay {
    color: var(--pink-deep);
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
}

.hj-order__pay:hover {
    text-decoration: underline;
}

.hj-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 99px;
    font-size: 11.5px;
    font-weight: 700;
    background: var(--teal-tint);
    color: var(--teal);
}

.hj-badge--muted {
    background: #F4F2F8;
    color: var(--muted);
}

.hj-badge--paid {
    background: rgba(215, 255, 62, .35);
    color: var(--ink-soft);
}

.hj-empty {
    text-align: center;
    color: var(--muted);
    padding: 24px 0;
    font-size: 14px;
}

/* Admin strip */
.hj-admin {
    max-width: 1120px;
    margin: 0 auto 48px;
    padding: 0 clamp(20px, 4vw, 48px);
}

.hj-admin__inner {
    background: var(--surface);
    border: 1px dashed var(--border);
    border-radius: 16px;
    padding: 16px 20px;
}

.hj-admin__title {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 10px;
}

.hj-admin__links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
}

.hj-admin__links a {
    color: var(--pink-deep);
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
}

.hj-admin__links a:hover {
    text-decoration: underline;
}

.hj-layout--single {
    margin-top: 0;
}

.hj-layout--single .hj-card {
    grid-column: 1 / -1;
}

.hj-footer {
    text-align: center;
    margin: 0 0 24px;
    padding: 0 16px;
}

.hj-footer img {
    height: 25px;
    margin: 0 3px;
}

.hj-body.hj-has-bar {
    padding-bottom: 100px;
}

.hj-body.hj-has-bar .hj-footer {
    margin-bottom: 120px;
}

/* Hero animations */
.hj-hero .hj-eyebrow,
.hj-hero h1,
.hj-hero .sub,
.hj-banner {
    opacity: 0;
    animation: hjRiseIn .7s var(--spring) forwards;
}

.hj-hero h1 { animation-delay: .08s; }
.hj-hero .sub { animation-delay: .16s; }
.hj-banner { animation-delay: .24s; }

@keyframes hjRiseIn {
    from { opacity: 0; transform: translateY(14px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Step track */
.hj-steptrack {
    max-width: 1120px;
    margin: 44px auto 20px;
    padding: 0 clamp(20px, 4vw, 48px);
    position: relative;
}

.hj-steptrack__row {
    display: flex;
    align-items: flex-start;
    position: relative;
    gap: 0;
}

.hj-step {
    flex: 1 1 0;
    min-width: 0;
}

.hj-steptrack__link {
    flex: 1 1 0;
    min-width: 20px;
    max-width: 140px;
    height: 52px;
    margin-top: 0;
    pointer-events: none;
    overflow: visible;
}

.hj-steptrack__arc {
    position: absolute;
    top: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: min(58%, 400px);
    height: 70px;
    pointer-events: none;
}

.hj-steptrack__dash {
    fill: none;
    stroke: #D7A9C7;
    stroke-width: 2.5;
    stroke-dasharray: 1 10;
    stroke-linecap: round;
}

.hj-steptrack__dash--flat {
    display: none;
}

.hj-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 1;
}

.hj-step__badge {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--surface);
    border: 2.5px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Fredoka', sans-serif;
    font-weight: 700;
    font-size: 19px;
    color: var(--muted-2);
    transition: all .3s var(--spring);
}

.hj-step.is-active .hj-step__badge {
    background: var(--pink);
    border-color: var(--pink);
    color: #fff;
    box-shadow: 0 0 0 6px var(--pink-tint);
    transform: scale(1.06);
}

.hj-step.is-done .hj-step__badge {
    background: var(--ink);
    border-color: var(--ink);
    color: var(--lime);
}

.hj-step__label {
    font-weight: 700;
    font-size: 14px;
    color: var(--ink-soft);
    text-align: center;
}

.hj-steptrack--wide .hj-step__label {
    font-size: 12px;
}

@media (max-width: 720px) {
    .hj-steptrack__arc { display: none; }

    .hj-steptrack--wide .hj-steptrack__dash--curve { display: none; }
    .hj-steptrack--wide .hj-steptrack__dash--flat { display: block; }

    .hj-steptrack--wide .hj-step__label { font-size: 10px; }
}

/* Booking layout */
.hj-booking-layout {
    max-width: 1120px;
    margin: 20px auto 140px;
    padding: 0 clamp(20px, 4vw, 48px);
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 24px;
    align-items: start;
}

.hj-booking-layout--single {
    grid-template-columns: 1fr;
    max-width: 720px;
}

@media (max-width: 900px) {
    .hj-booking-layout { grid-template-columns: 1fr; }
}

.hj-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 22px;
    box-shadow: var(--shadow);
    padding: 24px;
}

.hj-card__title {
    font-weight: 700;
    font-size: 15px;
    color: var(--ink);
    margin-bottom: 16px;
}

/* Calendar */
.hj-cal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--ink);
    color: #fff;
    border-radius: 14px;
    padding: 12px 16px;
    margin-bottom: 16px;
}

.hj-cal__month {
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.hj-cal__nav {
    background: rgba(255, 255, 255, .08);
    border: none;
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 9px;
    cursor: pointer;
    font-size: 16px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s, transform .15s;
}

.hj-cal__nav:hover { background: rgba(255, 255, 255, .18); }
.hj-cal__nav:active { transform: scale(.9); }

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

.hj-cal__dow {
    text-align: center;
    font-size: 11.5px;
    font-weight: 700;
    color: var(--muted-2);
    text-transform: uppercase;
    padding-bottom: 6px;
}

.hj-cal__day {
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 600;
    font-size: 13.5px;
    border: none;
    background: transparent;
    color: var(--ink-soft);
    cursor: pointer;
    transition: all .18s var(--spring);
}

.hj-cal__day:hover:not(.is-disabled):not(.is-selected) {
    background: var(--pink-tint);
    color: var(--pink-deep);
    transform: translateY(-2px);
}

.hj-cal__day.is-disabled {
    color: var(--muted-2);
    opacity: .4;
    cursor: default;
}

.hj-cal__day.is-today:not(.is-selected) {
    box-shadow: inset 0 0 0 1.5px var(--teal);
}

.hj-cal__day.is-selected {
    background: var(--pink);
    color: #fff;
    transform: scale(1.12);
    box-shadow: 0 6px 16px -4px rgba(232, 41, 138, .55), 0 0 0 3px var(--lime);
}

.hj-cal__empty {
    aspect-ratio: 1 / 1;
}

/* Duration */
.hj-dur__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 22px;
}

.hj-dur__btn {
    border: 1.5px solid var(--border);
    background: var(--surface);
    border-radius: 16px;
    padding: 14px 8px;
    text-align: center;
    cursor: pointer;
    transition: all .2s var(--spring);
}

.hj-dur__btn:hover:not(.is-selected) {
    border-color: var(--pink);
    transform: translateY(-2px);
}

.hj-dur__btn .n {
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
    font-size: 16px;
}

.hj-dur__btn .p {
    font-size: 11.5px;
    color: var(--muted);
    margin-top: 2px;
}

.hj-dur__btn.is-selected {
    background: var(--ink);
    border-color: var(--ink);
    transform: scale(1.03);
    box-shadow: 0 8px 20px -8px rgba(22, 18, 31, .4);
}

.hj-dur__btn.is-selected .n { color: var(--lime); }
.hj-dur__btn.is-selected .p { color: rgba(255, 255, 255, .6); }

.hj-divider {
    height: 1px;
    background: var(--border);
    margin: 0 0 20px;
}

/* Slots */
.hj-slots__head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 14px;
    flex-wrap: wrap;
    gap: 6px;
}

.hj-slots__head .lbl { font-weight: 700; font-size: 15px; }

.hj-slots__head .date {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 600;
    font-size: 13px;
    color: var(--pink-deep);
    background: var(--pink-tint);
    padding: 4px 10px;
    border-radius: 99px;
}

.hj-slots__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    max-height: 340px;
    overflow-y: auto;
    padding-right: 2px;
}

.hj-slots__grid::-webkit-scrollbar { width: 6px; }
.hj-slots__grid::-webkit-scrollbar-thumb { background: var(--border); border-radius: 6px; }

.hj-slot {
    border: 1.5px solid var(--border);
    background: var(--surface);
    border-radius: 13px;
    padding: 11px 6px;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 600;
    font-size: 12px;
    text-align: center;
    cursor: pointer;
    transition: all .18s var(--spring);
}

.hj-slot:hover:not(.is-selected):not(.is-disabled) {
    border-color: var(--teal);
    background: var(--teal-tint);
    transform: translateY(-2px);
}

.hj-slot.is-selected {
    background: var(--pink);
    border-color: var(--pink);
    color: #fff;
    transform: scale(1.05);
    box-shadow: 0 6px 14px -4px rgba(232, 41, 138, .5);
}

.hj-slot.is-disabled {
    color: var(--muted-2);
    background: repeating-linear-gradient(135deg, #fff, #fff 4px, #F4F2F8 4px, #F4F2F8 8px);
    cursor: default;
}

.hj-slots__empty {
    grid-column: 1 / -1;
    text-align: center;
    color: var(--muted);
    font-size: 14px;
    padding: 24px 0;
}

.is-hidden { display: none !important; }

/* Sticky bar */
.hj-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 50;
    background: var(--ink);
    color: #fff;
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding: 14px clamp(20px, 4vw, 48px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.hj-bar__chips {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    font-size: 13px;
}

.hj-bar .chip {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .1);
    padding: 7px 13px;
    border-radius: 99px;
    display: flex;
    align-items: center;
    gap: 7px;
    font-weight: 600;
}

.hj-bar .chip .k {
    color: rgba(255, 255, 255, .45);
    font-weight: 500;
}

.hj-bar .chip.is-placeholder {
    color: rgba(255, 255, 255, .4);
    font-weight: 500;
}

.hj-bar__cta {
    display: flex;
    align-items: center;
    gap: 16px;
}

.hj-bar .price {
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
    font-size: 19px;
    color: var(--lime);
    white-space: nowrap;
}

.hj-bar .price small {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 500;
    font-size: 12px;
    color: rgba(255, 255, 255, .5);
}

.hj-btn-continue {
    background: var(--lime);
    color: var(--ink);
    border: none;
    border-radius: 14px;
    padding: 15px 28px;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: .02em;
    cursor: pointer;
    white-space: nowrap;
    transition: transform .18s var(--spring), box-shadow .18s;
}

.hj-btn-continue:hover:not(:disabled) {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 24px -8px rgba(215, 255, 62, .6);
}

.hj-btn-continue:disabled {
    background: rgba(255, 255, 255, .12);
    color: rgba(255, 255, 255, .35);
    cursor: not-allowed;
}

@media (max-width: 720px) {
    .hj-bar { flex-direction: column; align-items: stretch; }
    .hj-bar__cta { justify-content: space-between; }
}

/* Group form */
.hj-count-field {
    margin-bottom: 18px;
}

.hj-count-field label {
    display: block;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 4px;
}

.hj-count-field .hint {
    font-size: 12.5px;
    color: var(--muted);
    margin: 0 0 8px;
}

.hj-count-control {
    display: flex;
    align-items: center;
    gap: 8px;
    max-width: 200px;
}

.hj-count-control input {
    width: 72px;
    text-align: center;
    border: 1.5px solid var(--border);
    border-radius: 12px;
    padding: 10px;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 600;
}

.hj-count-control__btn {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: 1.5px solid var(--border);
    background: var(--surface);
    font-size: 18px;
    cursor: pointer;
    transition: all .15s var(--spring);
}

.hj-count-control__btn:hover {
    border-color: var(--pink);
    background: var(--pink-tint);
}

.hj-role-picker {
    border: 0;
    padding: 0;
    margin: 0 0 20px;
}

.hj-role-picker legend {
    font-weight: 700;
    margin-bottom: 10px;
}

.hj-role-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border: 1.5px solid var(--border);
    border-radius: 12px;
    margin-bottom: 8px;
    cursor: pointer;
    transition: border-color .15s;
}

.hj-role-option--stacked {
    align-items: flex-start;
}

.hj-role-option__text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.hj-role-option__label {
    font-weight: 600;
    line-height: 1.3;
}

.hj-role-option__hint {
    font-size: 13px;
    font-weight: 400;
    line-height: 1.35;
    color: var(--muted, #6b7280);
}

.hj-check--stacked {
    align-items: flex-start;
    gap: 10px;
}

.hj-check__text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.hj-check__label {
    font-weight: 600;
    line-height: 1.3;
}

.hj-check__hint {
    font-size: 13px;
    font-weight: 400;
    line-height: 1.35;
    color: var(--muted, #6b7280);
}

.hj-role-option:has(input:checked) {
    border-color: var(--pink);
    background: var(--pink-tint);
}

.hj-sale-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 10px;
    margin: 20px 0;
}

.hj-sale-item {
    background: var(--bg);
    border: 2px solid transparent;
    border-radius: 12px;
    padding: 12px;
    font-size: 13px;
    transition: opacity .2s, border-color .2s, background .2s;
}

.hj-sale-item.is-active {
    border-color: var(--pink);
    background: var(--pink-tint);
}

.hj-sale-item.is-muted {
    opacity: .45;
}

.hj-sale-item .name { font-weight: 700; color: var(--pink-deep); }

.hj-sale-item .days {
    margin-top: 4px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text);
}

.hj-sale-item .detail {
    margin-top: 4px;
    font-size: 12px;
    color: var(--muted);
}

.hj-group-footer {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    text-align: center;
}

.hj-group-footer .total {
    font-family: 'Fredoka', sans-serif;
    font-size: 22px;
    margin-bottom: 16px;
}

.hj-group-footer .total strong { color: var(--pink-deep); }

.hj-group-footer.is-loading .total { opacity: .5; }

.hj-bar .price.is-loading { opacity: .5; }

.hj-form-error {
    color: var(--danger);
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    margin: 12px 0;
}

/* Summary / order */
.hj-order-line {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: 14.5px;
}

.hj-order-line.total {
    border-bottom: 0;
    font-weight: 700;
    font-size: 17px;
    margin-top: 8px;
    padding-top: 16px;
    border-top: 2px solid var(--ink);
}

.hj-order-line.total span:last-child {
    font-family: 'Fredoka', sans-serif;
    color: var(--pink-deep);
}

.hj-check {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 16px 0;
    font-size: 14px;
    cursor: pointer;
}

.hj-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--muted);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    margin-bottom: 16px;
}

.hj-subnav {
    max-width: 1120px;
    margin: 0 auto 24px;
    padding: 0 clamp(20px, 4vw, 48px);
}

.hj-subnav .hj-back {
    margin-bottom: 0;
}

.hj-back:hover { color: var(--pink-deep); }

/* Party room cards */
.hj-room-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 24px;
}

@media (max-width: 640px) {
    .hj-room-grid { grid-template-columns: 1fr; }
}

.hj-room-card {
    width: 100%;
    text-align: left;
    cursor: pointer;
    transition: transform .18s var(--spring), box-shadow .18s;
}

.hj-room-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.hj-room-card.is-active {
    border-color: var(--pink);
    box-shadow: 0 0 0 3px var(--pink-tint);
}

.hj-room-card h2 {
    font-size: 20px;
    margin-bottom: 8px;
}

/* Party slot list */
.hj-slot-list {
    display: grid;
    gap: 10px;
}

.hj-slot-radio {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    border: 1.5px solid var(--border);
    border-radius: 14px;
    cursor: pointer;
    transition: all .15s;
}

.hj-slot-radio:has(input:checked) {
    border-color: var(--pink);
    background: var(--pink-tint);
}

.hj-slot-radio.is-full {
    opacity: .5;
    cursor: not-allowed;
}

.hj-slot-radio input { accent-color: var(--pink); }

/* Login */
.hj-login-wrap {
    max-width: 420px;
    margin: 48px auto 80px;
    padding: 0 20px;
}

.hj-login-card {
    padding: 32px 28px;
    min-width: 0;
}

.hj-register-form {
    min-width: 0;
}

.hj-register-consents {
    margin: 4px 0 16px;
}

.hj-register-consents .hj-check {
    align-items: flex-start;
}

.hj-register-consents .hj-check span {
    flex: 1;
    min-width: 0;
    line-height: 1.45;
}

.hj-login-card h1 {
    font-size: 28px;
    text-align: center;
    margin-bottom: 8px;
}

.hj-login-card .sub {
    text-align: center;
    color: var(--muted);
    margin-bottom: 24px;
    font-size: 14.5px;
}

.hj-text-link {
    color: var(--pink-deep);
    font-weight: 700;
    text-decoration: none;
}

.hj-text-link:hover { text-decoration: underline; }

.hj-hero--compact {
    padding-bottom: 24px;
}

.hj-hero--compact h1 {
    font-size: clamp(28px, 4vw, 36px);
}

.hj-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

@media (max-width: 560px) {
    .hj-form-row { grid-template-columns: 1fr; }
}

.hj-advanced {
    margin: 12px 0 16px;
    font-size: 14px;
}

.hj-advanced summary {
    cursor: pointer;
    font-weight: 600;
    color: var(--muted);
    margin-bottom: 8px;
}

.hj-muted {
    color: var(--muted);
    font-size: 14px;
}

.hj-lead {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.6;
    margin: 12px 0 24px;
}

.hj-page-narrow {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 48px) 100px;
}

.hj-tag {
    display: inline-flex;
    padding: 3px 8px;
    border-radius: 99px;
    font-size: 11px;
    font-weight: 700;
    background: var(--teal-tint);
    color: var(--teal);
}

.hj-tag--jump {
    background: var(--pink-tint);
    color: var(--pink-deep);
}

.hj-participant {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: flex-start;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
}

.hj-participant:last-child { border-bottom: 0; }

/* ---------- Group page (skupina template) ---------- */
.hj-page-group.hj-has-bar {
    padding-bottom: 110px;
}

.hj-hero__meta .mono {
    color: var(--ink-soft);
    font-weight: 600;
}

.hj-step.is-upcoming .hj-step__label {
    color: var(--muted-2);
}

.hj-info-banner {
    max-width: 700px;
    margin: 22px auto 0;
    padding: 0 24px;
}

.hj-info-banner__inner {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    background: var(--teal-tint);
    border: 1px solid #BEEFE9;
    color: var(--ink-soft);
    border-radius: 14px;
    padding: 13px 16px;
    font-size: 14px;
    line-height: 1.5;
}

.hj-info-banner__inner svg {
    width: 19px;
    height: 19px;
    flex-shrink: 0;
    margin-top: 1px;
    color: #0B8A7C;
}

.hj-info-banner__inner strong {
    color: var(--ink);
    font-weight: 700;
}

.hj-group-card {
    max-width: 700px;
    margin: 22px auto 0;
    padding: 24px 28px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 24px;
    box-shadow: var(--shadow);
}

.hj-group-block {
    border: 1.5px solid var(--border);
    border-radius: 18px;
    padding: 6px 4px;
    margin-bottom: 16px;
}

.hj-group-block__tag {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--muted-2);
    padding: 12px 16px 4px;
}

.hj-counter-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 16px;
}

.hj-counter-row--nested {
    padding-left: 30px;
    position: relative;
}

.hj-counter-row--nested::before {
    content: '';
    position: absolute;
    left: 16px;
    top: 0;
    bottom: 0;
    width: 1.5px;
    background: var(--border);
}

.hj-counter-row + .hj-counter-row {
    border-top: 1px dashed var(--border);
}

.hj-counter-row__text {
    max-width: 390px;
}

.hj-counter-row__title {
    font-weight: 700;
    font-size: 14.5px;
    margin-bottom: 3px;
}

.hj-counter-row__desc {
    font-size: 12.5px;
    color: var(--muted);
    line-height: 1.5;
}

.hj-stepper {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.hj-stepper__btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1.5px solid var(--border);
    background: var(--surface);
    color: var(--ink-soft);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .16s var(--spring);
    padding: 0;
}

.hj-stepper__btn:hover:not(:disabled) {
    border-color: var(--pink);
    color: var(--pink-deep);
    transform: translateY(-1px);
}

.hj-stepper__btn:active:not(:disabled) {
    transform: scale(.88);
}

.hj-stepper__btn:disabled {
    opacity: .35;
    cursor: not-allowed;
}

.hj-stepper__val {
    width: 34px;
    text-align: center;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
    font-size: 15px;
    border: 0;
    background: transparent;
    color: var(--ink);
    padding: 0;
    -moz-appearance: textfield;
    appearance: textfield;
}

.hj-stepper__val::-webkit-outer-spin-button,
.hj-stepper__val::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.hj-counter-warn {
    font-size: 12px;
    color: var(--pink-deep);
    font-weight: 600;
    padding: 0 16px 10px;
    margin-top: -6px;
    display: none;
}

.hj-counter-warn.is-visible {
    display: block;
}

.hj-pricing-helper {
    text-align: center;
    color: var(--muted);
    font-size: 13px;
    margin: 6px 0 18px;
}

.hj-discounts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.hj-disc {
    border-radius: 14px;
    padding: 13px 14px;
    background: #FBFAFD;
    border: 1.5px solid var(--border);
    transition: all .25s;
    position: relative;
}

.hj-disc__name {
    font-weight: 700;
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 6px;
    padding-right: 72px;
}

.hj-disc__val {
    font-weight: 600;
    font-size: 13.5px;
    color: var(--ink-soft);
}

.hj-disc__sub {
    font-size: 11.5px;
    color: var(--muted-2);
    margin-top: 5px;
    line-height: 1.4;
}

.hj-disc__status {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .03em;
    padding: 3px 8px;
    border-radius: 99px;
    background: #F0EDF6;
    color: var(--muted-2);
}

.hj-disc.is-active {
    background: var(--lime-tint);
    border-color: var(--lime-deep);
}

.hj-disc.is-active .hj-disc__name {
    color: #5A6E0A;
}

.hj-disc.is-active .hj-disc__status {
    background: var(--lime);
    color: var(--ink);
}

.hj-group-total__divider {
    height: 1px;
    background: var(--border);
    margin: 0 0 18px;
}

.hj-group-total__row {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
    font-size: 20px;
    margin: 0;
    text-align: center;
}

.hj-group-total__row strong {
    color: var(--pink-deep);
    font-size: 26px;
}

.hj-group-total.is-loading .hj-group-total__row {
    opacity: .5;
}

.hj-navbar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 50;
    background: var(--ink);
    color: #fff;
    padding: 14px clamp(20px, 4vw, 48px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.hj-navbar__price {
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: var(--lime);
    white-space: nowrap;
}

.hj-navbar__price small {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 500;
    font-size: 12px;
    color: rgba(255, 255, 255, .5);
    margin-left: 6px;
}

.hj-navbar__price.is-loading {
    opacity: .5;
}

.hj-navbar__back {
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, .25);
    color: #fff;
    border-radius: 13px;
    padding: 13px 20px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all .18s;
    text-decoration: none;
    white-space: nowrap;
}

.hj-navbar__back:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, .06);
    color: #fff;
}

.hj-navbar__continue {
    background: var(--lime);
    color: var(--ink);
    border: none;
    border-radius: 13px;
    padding: 14px 26px;
    font-weight: 700;
    font-size: 14.5px;
    letter-spacing: .02em;
    cursor: pointer;
    transition: transform .18s var(--spring), box-shadow .18s;
    white-space: nowrap;
}

.hj-navbar__continue:hover:not(:disabled) {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 10px 22px -8px rgba(215, 255, 62, .6);
}

.hj-navbar__continue:active:not(:disabled) {
    transform: translateY(0) scale(.97);
}

.hj-navbar__continue:disabled {
    background: rgba(255, 255, 255, .12);
    color: rgba(255, 255, 255, .35);
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

.hj-group-presets {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
}

.hj-group-presets__label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: var(--muted-2);
}

.hj-preset-btn {
    border: 1.5px solid var(--border);
    background: var(--surface-2, #faf8fc);
    color: var(--ink);
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: border-color .15s, background .15s, color .15s;
}

.hj-preset-btn:hover {
    border-color: var(--pink);
}

.hj-preset-btn.is-active {
    border-color: var(--pink-deep);
    background: rgba(236, 72, 153, .08);
    color: var(--pink-deep);
}

.hj-group-order {
    margin-top: 8px;
    padding-top: 4px;
}

.hj-group-order__title {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--muted-2);
    margin-bottom: 10px;
}

.hj-group-order__summary {
    font-size: 13px;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.45;
    margin-bottom: 12px;
    padding: 10px 12px;
    border-radius: 12px;
    background: var(--surface-2, #f4f2f8);
    border: 1px solid var(--border);
}

.hj-group-order__summary.is-hidden {
    display: none;
}

.hj-group-credit {
    margin-top: 16px;
}

.hj-group-pay-note {
    margin-top: 12px;
    text-align: center;
    font-size: 13px;
}

.hj-form-error--banner {
    max-width: 700px;
    margin: 16px auto 0;
    padding: 12px 16px;
    border-radius: 12px;
    background: rgba(220, 38, 38, .08);
    border: 1px solid rgba(220, 38, 38, .2);
}

.hj-group-block--contact {
    margin-bottom: 16px;
}

.hj-field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    padding: 8px 16px 12px;
}

.hj-group-block--contact .hj-field label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: var(--muted-2);
    margin-bottom: 6px;
}

.hj-group-block--contact .hj-field input {
    width: 100%;
    border: 1.5px solid var(--border);
    border-radius: 12px;
    padding: 10px 12px;
    font: inherit;
    background: #fff;
}

.hj-group-contact-note,
.hj-group-credit-hint {
    padding: 0 16px 12px;
    font-size: 13px;
}

.hj-group-contact-summary {
    padding: 8px 16px 0;
    font-size: 14.5px;
}

.hj-field-row--birth {
    grid-template-columns: 1fr;
    max-width: 280px;
}

.hj-birth-picker {
    padding: 8px 16px 0;
}

.hj-birth-picker__label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: var(--muted-2);
    margin-bottom: 8px;
}

.hj-birth-picker__fields {
    display: grid;
    grid-template-columns: 92px 1fr 96px;
    gap: 10px;
}

.hj-birth-picker__fields select {
    width: 100%;
    border: 1.5px solid var(--border);
    border-radius: 12px;
    padding: 10px 12px;
    font: inherit;
    background: #fff;
    color: var(--ink);
}

.hj-birth-picker__fields select:disabled {
    background: #f4f4f6;
    color: var(--muted-2);
    cursor: not-allowed;
}

.hj-group-legal {
    margin-top: 0;
    align-items: flex-start;
    line-height: 1.45;
}

.hj-group-legal-stack {
    margin-top: 18px;
    display: grid;
    gap: 10px;
}

.hj-group-legal-stack .hj-group-legal:first-child {
    margin-top: 0;
}

.hj-group-legal span {
    font-size: 13.5px;
}

@media (max-width: 720px) {
    .hj-field-row {
        grid-template-columns: 1fr;
    }

    .hj-birth-picker__fields {
        grid-template-columns: 1fr;
    }

    .hj-group-card {
        margin-left: 16px;
        margin-right: 16px;
        padding: 20px 18px;
    }

    .hj-info-banner {
        padding: 0 16px;
    }

    .hj-discounts {
        grid-template-columns: 1fr;
    }

    .hj-counter-row {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .hj-stepper {
        justify-content: flex-end;
    }

    .hj-navbar {
        flex-wrap: wrap;
    }

    .hj-navbar__price {
        order: 1;
        width: 100%;
        text-align: center;
    }

    .hj-navbar__back,
    .hj-navbar__continue {
        flex: 1;
        text-align: center;
    }
}

/* Homepage — landing redesign */
html:has(.hj-body--home) {
    background: #0E120F;
}

.hj-body--site.hj-body--home,
.hj-theme-classic.hj-body.hj-body--site.hj-body--home {
    display: flex;
    flex-direction: column;
    min-height: 100dvh;
    background:
        radial-gradient(1100px 500px at 15% -10%, rgba(216, 242, 74, 0.07), transparent),
        radial-gradient(900px 500px at 100% 0%, rgba(255, 122, 89, 0.06), transparent),
        #0E120F;
    color: #F3F5F1;
    font-family: 'Montserrat', 'Poppins', system-ui, sans-serif;
}

.hj-body--home h1,
.hj-body--home h2,
.hj-body--home h3 {
    font-family: 'Montserrat', 'Poppins', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.hj-home-hero {
    padding: 72px clamp(20px, 5vw, 48px) 40px;
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
}

.hj-home-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #1B211C;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    color: #D8F24A;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.hj-home-hero__eyebrow .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #D8F24A;
}

.hj-home-hero h1 {
    font-size: clamp(30px, 5vw, 44px);
    line-height: 1.1;
    margin: 20px 0 14px;
    color: #F3F5F1;
}

.hj-home-hero p {
    color: #B7BEB6;
    font-size: clamp(14.5px, 2vw, 16px);
    line-height: 1.6;
    margin: 0;
}

.hj-home-hero__meta {
    margin: 14px 0 0;
    font-size: 13.5px;
    color: #7C8579;
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hj-home-hero__meta-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.hj-home-hero__meta-icon {
    line-height: 1;
}

.hj-home-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-template-rows: minmax(400px, auto) minmax(260px, auto);
    gap: 18px;
    padding: 44px clamp(16px, 3vw, 48px) 90px;
    max-width: 1560px;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

.hj-home-card {
    position: relative;
    border-radius: 20px 0 20px 0;
    overflow: hidden;
    border: 5px solid rgba(255, 255, 255, 0.08);
    background: #1B211C;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    transition: transform .25s ease, border-color .25s ease;
    min-height: 260px;
}

.hj-home-card:hover {
    transform: translateY(-3px);
    border-color: rgba(216, 242, 74, 0.35);
}

.hj-home-card:focus-visible {
    outline: 3px solid #D8F24A;
    outline-offset: 3px;
}

/* Řádek 1 */
.hj-home-card--trampoliny {
    grid-column: 1 / span 7;
    grid-row: 1;
    min-height: 400px;
}

.hj-home-card--party {
    grid-column: 8 / span 5;
    grid-row: 1;
    min-height: 400px;
}

/* Řádek 2 */
.hj-home-card--vouchery {
    grid-column: 1 / span 4;
    grid-row: 2;
}

.hj-home-card--eventy {
    grid-column: 5 / span 4;
    grid-row: 2;
}

.hj-home-card--contact {
    grid-column: 9 / span 4;
    grid-row: 2;
    background:
        radial-gradient(420px 260px at 85% 110%, rgba(255, 122, 89, 0.35), transparent 70%),
        linear-gradient(155deg, #2A211C, #1B211C);
    border-color: rgba(255, 122, 89, 0.25);
}

.hj-home-card--contact:hover {
    border-color: rgba(255, 122, 89, 0.45);
}

.hj-home-card__img {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hj-home-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
    filter: saturate(1.08) contrast(1.02);
}

.hj-home-card:hover .hj-home-card__img img {
    transform: scale(1.06);
}

.hj-home-card__scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        rgba(10, 13, 10, 0.05) 0%,
        rgba(10, 13, 10, 0.25) 30%,
        rgba(9, 12, 9, 0.75) 60%,
        rgba(7, 9, 7, 0.97) 100%);
}

.hj-home-card__badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 3;
    background: #D8F24A;
    color: #10150F;
    border-radius: 999px;
    padding: 6px 13px;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: .02em;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.hj-home-card__price {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 3;
    background: rgba(14, 18, 15, 0.72);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    padding: 6px 13px;
    font-size: 12.5px;
    font-weight: 600;
    color: #F3F5F1;
}

.hj-home-card__price b {
    color: #D8F24A;
    font-weight: 700;
}

.hj-home-card__body {
    position: relative;
    z-index: 2;
    margin-top: auto;
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.hj-home-card__icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(216, 242, 74, 0.14);
    border: 1px solid rgba(216, 242, 74, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 6px;
    color: #D8F24A;
}

.hj-home-card__icon svg {
    width: 19px;
    height: 19px;
}

.hj-home-card--trampoliny .hj-home-card__icon,
.hj-home-card--party .hj-home-card__icon {
    width: 42px;
    height: 42px;
}

.hj-home-card--trampoliny .hj-home-card__icon svg,
.hj-home-card--party .hj-home-card__icon svg {
    width: 21px;
    height: 21px;
}

.hj-home-card__tag {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #D8F24A;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.6);
}

.hj-home-card__title {
    margin: 0;
    font-size: 19px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #FFFFFF;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.65);
}

.hj-home-card--trampoliny .hj-home-card__title,
.hj-home-card--party .hj-home-card__title {
    font-size: 26px;
}

.hj-home-card__arrow {
    transition: transform .2s ease;
    color: #D8F24A;
}

.hj-home-card:hover .hj-home-card__arrow {
    transform: translateX(4px);
}

.hj-home-card__desc {
    margin: 0;
    color: #E4E7E1;
    font-size: 13.5px;
    line-height: 1.5;
    max-width: 38ch;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.55);
}

.hj-home-card--trampoliny .hj-home-card__desc,
.hj-home-card--party .hj-home-card__desc {
    font-size: 14.5px;
}

.hj-home-card__cta {
    position: relative;
    z-index: 2;
    margin-top: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #10150F;
    background: #D8F24A;
    padding: 9px 16px;
    border-radius: 999px;
    width: fit-content;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity .2s ease, transform .2s ease;
}

.hj-home-card:hover .hj-home-card__cta {
    opacity: 1;
    transform: translateY(0);
}

.hj-home-card__cta--coral {
    opacity: 1;
    transform: none;
    background: #FF7A59;
    color: #1B0E09;
}

.hj-home-card--contact .hj-home-card__body {
    margin-top: auto;
}

.hj-home-card__icon--coral {
    background: rgba(255, 122, 89, 0.18);
    border-color: rgba(255, 122, 89, 0.45);
    color: #FF7A59;
}

.hj-home-card__tag--coral {
    color: #FF7A59;
    text-shadow: none;
}

.hj-home-card--contact .hj-home-card__title {
    text-shadow: none;
}

.hj-home-card__desc--contact {
    color: #B7BEB6;
    text-shadow: none;
}

.hj-home-card__arrow--coral {
    color: #FF7A59;
}

@media (max-width: 860px) {
    .hj-home-hero {
        padding-top: 48px;
        padding-bottom: 28px;
    }

    .hj-home-grid {
        grid-template-columns: 1fr;
        grid-template-rows: none;
        padding: 32px clamp(20px, 5vw, 48px) 60px;
        gap: 14px;
    }

    .hj-home-card--trampoliny,
    .hj-home-card--party,
    .hj-home-card--vouchery,
    .hj-home-card--eventy,
    .hj-home-card--contact {
        grid-column: 1 / -1;
        grid-row: auto;
        min-height: 280px;
    }

    .hj-home-card__cta {
        opacity: 1;
        transform: none;
    }
}

.hj-body--home .hj-footer {
    flex-shrink: 0;
    margin: 0;
    padding: 18px 16px 28px;
    background: #171C18;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hj-home-footer {
    flex-shrink: 0;
    margin: 0;
    background: #171C18;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hj-home-footer__main {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 36px clamp(16px, 3vw, 48px) 0;
    max-width: 1560px;
    margin: 0 auto;
    box-sizing: border-box;
}

.hj-home-footer__left {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.hj-home-footer__brand {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Montserrat', 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #F3F5F1;
}

.hj-home-footer__brand .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #D8F24A;
}

.hj-home-footer__meta {
    color: #7C8579;
    font-size: 12.5px;
}

.hj-home-footer__links {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.hj-home-footer__links a {
    color: #B7BEB6;
    text-decoration: none;
    font-size: 13px;
}

.hj-home-footer__links a:hover {
    color: #F3F5F1;
}

.hj-home-footer__pay {
    display: flex;
    gap: 10px;
    align-items: center;
    opacity: .6;
}

.hj-home-footer__pay img {
    height: 20px;
    margin: 0;
}

.hj-home-footer__bottom {
    max-width: 1560px;
    margin: 0 auto;
    padding: 18px clamp(16px, 3vw, 48px) 24px;
    color: #7C8579;
    font-size: 11.5px;
    box-sizing: border-box;
}

@media (max-width: 860px) {
    .hj-home-footer__main {
        flex-direction: column;
        align-items: flex-start;
        padding-top: 28px;
    }

    .hj-home-footer__links {
        flex-direction: column;
        gap: 12px;
    }
}

.hj-ticket-badge {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    margin: 0 auto 12px;
    background: var(--success);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
}

.hj-ticket-card {
    border: 1.5px dashed var(--border);
    border-radius: 16px;
    padding: 16px 18px;
    background: #FAFBFE;
    text-align: left;
}

.hj-ticket-card__code {
    font-family: Fredoka, sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: var(--pink-deep);
    letter-spacing: 0.01em;
}

.hj-ticket-card__divider {
    height: 1px;
    background: var(--border);
    margin: 12px 0;
}

.hj-ticket-card__row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    font-size: 13px;
    color: var(--muted);
    padding: 5px 0;
}

.hj-ticket-card__val {
    font-weight: 600;
    color: var(--ink);
    text-align: right;
}

.hj-ticket-card__val--price {
    font-family: Fredoka, sans-serif;
    font-size: 16px;
    color: var(--pink-deep);
}

/* ---------- Thank-you page (rezervace hotovo) ---------- */
.hj-page-thankyou {
    --thankyou-mint: #17D68C;
    --thankyou-mint-ink: #0B8F5C;
    --thankyou-cream: #FFF7E8;
    --thankyou-cream-ink: #7A5B1E;
    --thankyou-paper: #FBFAF7;
    background: var(--thankyou-paper);
}

.hj-page-thankyou .hj-hero--thankyou {
    position: relative;
    max-width: none;
    margin: 0;
    background:
        radial-gradient(520px 260px at 18% -10%, rgba(232, 41, 138, .35), transparent 60%),
        radial-gradient(480px 240px at 85% 0%, rgba(23, 214, 140, .25), transparent 60%),
        linear-gradient(180deg, #2D1A35 0%, var(--ink) 100%);
    color: #fff;
    text-align: center;
    padding: 56px 24px 84px;
    overflow: hidden;
}

.hj-page-thankyou .hj-hero__dot {
    position: absolute;
    border-radius: 50%;
    opacity: .55;
    pointer-events: none;
}

.hj-page-thankyou .hj-checkwrap {
    width: 64px;
    height: 64px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: linear-gradient(160deg, var(--thankyou-mint), var(--thankyou-mint-ink));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 28px -8px rgba(23, 214, 140, .55);
    animation: hjThankyouPop .7s cubic-bezier(.34, 1.56, .64, 1) both;
}

.hj-page-thankyou .hj-checkwrap svg {
    width: 28px;
    height: 28px;
}

@keyframes hjThankyouPop {
    0% { transform: scale(0.2); opacity: 0; }
    60% { transform: scale(1.15); opacity: 1; }
    100% { transform: scale(1); }
}

.hj-page-thankyou .hj-hero--thankyou .hj-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(232, 41, 138, .16);
    color: #FF9DC1;
    border: 1px solid rgba(232, 41, 138, .4);
    padding: 5px 13px;
    border-radius: 99px;
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: .01em;
    text-transform: none;
    margin-bottom: 16px;
}

.hj-page-thankyou .hj-hero--thankyou h1 {
    font-size: 34px;
    font-weight: 700;
    margin: 0 0 10px;
    letter-spacing: -0.01em;
    color: #fff;
}

.hj-page-thankyou .hj-hero--thankyou .sub {
    font-size: 15.5px;
    color: #C9C3DA;
    margin: 0;
    max-width: 380px;
    margin-inline: auto;
    line-height: 1.55;
}

.hj-page-thankyou .hj-page-narrow--thankyou {
    max-width: 480px;
    margin: 0 auto;
    padding: 0 20px 60px;
}

.hj-page-thankyou .hj-ticket-card {
    position: relative;
    background: var(--surface);
    border-radius: 20px;
    margin-top: -56px;
    box-shadow: 0 20px 45px -20px rgba(27, 19, 48, .28);
    padding: 26px 26px 6px;
    border: 1px solid var(--border);
    text-align: left;
}

.hj-page-thankyou .hj-ticket-card__code {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 13px;
    color: var(--pink-deep);
    letter-spacing: .02em;
    margin-bottom: 16px;
}

.hj-page-thankyou .hj-ticket-card__divider {
    position: relative;
    border-top: 2px dashed var(--border);
    margin: 0 -26px 12px;
    height: 0;
    background: none;
}

.hj-page-thankyou .hj-ticket-card__divider::before,
.hj-page-thankyou .hj-ticket-card__divider::after {
    content: '';
    position: absolute;
    top: -11px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--thankyou-paper);
}

.hj-page-thankyou .hj-ticket-card__divider::before { left: -11px; }
.hj-page-thankyou .hj-ticket-card__divider::after { right: -11px; }

.hj-page-thankyou .hj-ticket-card__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 0;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
    color: var(--muted);
    gap: 12px;
}

.hj-page-thankyou .hj-ticket-card__row:last-child {
    border-bottom: none;
}

.hj-page-thankyou .hj-ticket-card__row > span:first-child {
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 9px;
}

.hj-page-thankyou .hj-ticket-card__row > span:first-child svg {
    width: 16px;
    height: 16px;
    flex: none;
    opacity: .65;
}

.hj-page-thankyou .hj-ticket-card__val {
    font-weight: 600;
    color: var(--ink);
    text-align: right;
}

.hj-page-thankyou .hj-ticket-card__val--price {
    color: var(--thankyou-mint-ink);
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
}

.hj-page-thankyou .hj-status-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(23, 214, 140, .12);
    color: var(--thankyou-mint-ink);
    padding: 3px 10px;
    border-radius: 99px;
    font-size: 13px;
    font-weight: 700;
}

.hj-page-thankyou .hj-status-pill::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--thankyou-mint-ink);
}

.hj-page-thankyou .hj-reception-code {
    background: linear-gradient(180deg, var(--thankyou-cream), #FFF3D9);
    border: 1px solid #F3E3B8;
    border-radius: 20px;
    text-align: center;
    padding: 26px 24px 22px;
    margin-top: 18px;
}

.hj-page-thankyou .hj-reception-code__title {
    margin: 0 0 12px;
    font-size: 13px;
    font-weight: 600;
    color: var(--thankyou-cream-ink);
}

.hj-page-thankyou .hj-reception-code__value {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 38px;
    letter-spacing: .16em;
    color: var(--ink);
    margin: 0 0 14px;
}

.hj-page-thankyou .hj-copy-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--ink);
    color: #fff;
    border: none;
    font-size: 13.5px;
    font-weight: 600;
    padding: 9px 16px;
    border-radius: 10px;
    cursor: pointer;
    transition: transform .12s ease, background .15s ease;
}

.hj-page-thankyou .hj-copy-btn:hover {
    background: #2E2249;
}

.hj-page-thankyou .hj-copy-btn:active {
    transform: scale(.96);
}

.hj-page-thankyou .hj-copy-btn svg {
    width: 14px;
    height: 14px;
}

.hj-page-thankyou .hj-copy-btn.is-copied {
    background: var(--thankyou-mint-ink);
}

.hj-page-thankyou .hj-reception-code__order {
    margin: 16px 0 2px;
    font-size: 13px;
    color: var(--thankyou-cream-ink);
}

.hj-page-thankyou .hj-reception-code__hint {
    margin: 0;
    font-size: 12.5px;
    color: #9A8552;
}

.hj-page-thankyou .hj-actions--thankyou {
    display: flex;
    gap: 12px;
    margin-top: 22px;
}

.hj-page-thankyou .hj-actions--thankyou .hj-btn {
    flex: 1;
    text-align: center;
    padding: 13px 16px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14.5px;
}

.hj-page-thankyou .hj-btn--primary {
    background: var(--pink);
    color: #fff;
    border: 1.5px solid var(--pink);
    box-shadow: 0 10px 24px -10px rgba(232, 41, 138, .6);
}

.hj-page-thankyou .hj-btn--primary:hover {
    transform: translateY(-1px);
}

.hj-page-thankyou .hj-btn--ghost:hover {
    border-color: var(--ink);
}

.hj-page-thankyou .hj-thankyou-flash {
    margin-top: 16px;
}

.hj-page-thankyou .hj-thankyou-note {
    margin-top: 16px;
    text-align: center;
}

.hj-page-thankyou .hj-footer img {
    height: 20px;
    opacity: .45;
    filter: grayscale(1);
    transition: opacity .15s ease;
}

.hj-page-thankyou .hj-footer img:hover {
    opacity: .85;
    filter: grayscale(0);
}

@media (prefers-reduced-motion: reduce) {
    .hj-page-thankyou .hj-checkwrap {
        animation: none;
    }
}

@media (max-width: 560px) {
    .hj-page-thankyou .hj-actions--thankyou {
        flex-direction: column;
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .001ms !important;
        transition-duration: .001ms !important;
    }
}
