:root {
    --ink-900: #062338;
    --ink-800: #0b2f4a;
    --brand-600: #0f5c8c;
    --brand-300: #7fb3d5;
    --accent-500: #bf9114;
    --accent-600: #a37a0d;
    --accent-300: #e3b64a;
    --glass: rgba(255, 255, 255, .72);
    --glass-strong: rgba(255, 255, 255, .86);
    --glass-dark: rgba(9, 32, 51, .55);
    --glass-line: rgba(255, 255, 255, .55);
    --glass-line-dark: rgba(255, 255, 255, .16);
    --glass-blur: saturate(160%) blur(18px);
    --ease: cubic-bezier(.22, .61, .36, 1);
    --green-600: #2f7d5b;
    --green-100: #e8f4ee;
    --amber-600: #b3611f;
    --amber-100: #fdf0e6;
    --red-600: #b3475b;
    --red-100: #fdf1f3;
    --slate-600: #66757f;
    --slate-100: #eef2f5;
    --surface: #fff;
    --surface-muted: #f7f9fb;
    --surface-tint: #f2f7fa;
    --line: #e5eaef;
    --line-strong: #dde4ea;
    --text-muted: #7b8896;
    --text-soft: #8a99a6;
    --text-faint: #a8b4be;
    --page: #eceff2;
    --font-display: 'Poppins', system-ui, sans-serif;
    --font-body: 'DM Sans', system-ui, sans-serif;
    --font-mono: 'JetBrains Mono', ui-monospace, monospace;
    --shell: 1440px;
    --gutter: max(24px, calc((100% - var(--shell)) / 2));
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .001ms !important;
        transition-duration: .001ms !important;
    }
}

* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
}

body {
    background: var(--page);
    color: var(--ink-800);
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--brand-600);
    text-decoration: none;
}

a:hover {
    color: var(--accent-500);
}

button {
    font-family: inherit;
}

h1, h2, h3, h4 {
    font-family: var(--font-display);
    color: var(--ink-800);
    margin: 0;
    letter-spacing: -0.01em;
}

.shell {
    max-width: var(--shell);
    margin: 0 auto;
    width: 100%;
}

.page-shell {
    width: 100%;
    background: var(--surface);
    min-height: 100vh;
}

.mono {
    font-family: var(--font-mono);
}

.eyebrow {
    font: 700 11px var(--font-display);
    letter-spacing: .24em;
    color: var(--accent-500);
    text-transform: uppercase;
}

.label {
    font: 500 10px var(--font-display);
    letter-spacing: .14em;
    color: var(--text-soft);
    text-transform: uppercase;
    display: block;
    margin-bottom: 6px;
}

.muted {
    color: var(--text-muted);
}

.soft {
    color: var(--text-soft);
}

.stack {
    display: flex;
    flex-direction: column;
}

.gap-8 { gap: 8px; }
.gap-10 { gap: 10px; }
.gap-14 { gap: 14px; }
.gap-16 { gap: 16px; }
.gap-20 { gap: 20px; }
.gap-22 { gap: 22px; }

.row-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.row-baseline {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
}

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.section {
    padding: 56px 44px;
}

.section--muted { background: var(--surface-muted); }
.section--navy { background: var(--ink-800); }
.section--white { background: var(--surface); }

.section__head {
    text-align: center;
    margin-bottom: 28px;
}

.section__head h2 {
    margin: 10px 0 0;
    font: 700 30px var(--font-display);
}

.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 44px;
    position: relative;
    z-index: 2;
}

.site-header--solid {
    background: var(--ink-800);
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand__mark {
    width: 26px;
    height: 26px;
    background: #fff;
    transform: rotate(45deg);
    border-radius: 5px;
}

.brand__mark--sm {
    width: 20px;
    height: 20px;
    border-radius: 4px;
}

.brand__name {
    font: 800 22px var(--font-display);
    color: #fff;
    letter-spacing: -.01em;
}

.brand__name--sm { font-size: 16px; }

.brand__badge {
    font: 600 9px var(--font-display);
    letter-spacing: .1em;
    color: var(--accent-500);
    border: 1px solid rgba(224, 129, 63, .5);
    padding: 3px 6px;
    border-radius: 4px;
}

.site-nav {
    display: flex;
    gap: 30px;
    font: 600 12px var(--font-display);
    letter-spacing: .08em;
}

.site-nav a {
    color: rgba(255, 255, 255, .85);
    padding-bottom: 3px;
}

.site-nav a:hover,
.site-nav a.active {
    color: #fff;
    border-bottom: 2px solid var(--accent-500);
}

.site-header__actions {
    display: flex;
    gap: 12px;
    align-items: center;
    font: 600 12px var(--font-display);
    letter-spacing: .06em;
}

.site-header__actions a { color: rgba(255, 255, 255, .85); }
.site-header__actions a:hover { color: #fff; }

.avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .18);
    border: 1px solid rgba(255, 255, 255, .35);
}

.hero {
    position: relative;
    background: linear-gradient(170deg, #062338 0%, #0f5c8c 55%, #7fb3d5 100%);
    padding: 0 0 44px;
    overflow: hidden;
}

.hero__body {
    position: relative;
    z-index: 2;
    padding: 56px 44px 0;
    text-align: center;
}

.hero__kicker {
    font: 700 12px var(--font-display);
    letter-spacing: .28em;
    color: rgba(255, 255, 255, .8);
}

.hero__title {
    margin: 14px 0 10px;
    font: 800 62px/1 var(--font-display);
    color: #fff;
    letter-spacing: -.02em;
}

.hero__lead {
    margin: 0 auto;
    max-width: 520px;
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, .78);
}

.hero__stats {
    display: flex;
    justify-content: center;
    gap: 46px;
    margin-top: 30px;
}

.hero__stat b {
    display: block;
    font: 800 30px var(--font-display);
    color: #fff;
}

.hero__stat span {
    font: 500 11px var(--font-display);
    letter-spacing: .14em;
    color: rgba(255, 255, 255, .6);
}

.hero__divider {
    width: 1px;
    background: rgba(255, 255, 255, .2);
}

.searchbar {
    position: relative;
    z-index: 2;
    margin: 34px 44px 0;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 12px 40px rgba(6, 35, 56, .28);
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr .9fr auto;
    overflow: hidden;
}

.searchbar__cell {
    padding: 16px 22px;
    border-right: 1px solid var(--page);
}

.searchbar__cell strong {
    display: block;
    font: 500 15px var(--font-body);
    color: var(--ink-800);
    margin-top: 4px;
}

.searchbar select,
.searchbar input {
    border: 0;
    outline: none;
    font: 500 15px var(--font-body);
    color: var(--ink-800);
    background: transparent;
    margin-top: 2px;
    width: 100%;
    padding: 0;
}

.image-slot {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(135deg, #dbe5ec 0 8px, #cfdae3 8px 16px);
    display: flex;
    align-items: center;
    justify-content: center;
    font: 400 11px var(--font-mono);
    color: #7b8896;
    text-align: center;
    padding: 10px;
}

.image-slot--static {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(6, 35, 56, .78), rgba(6, 35, 56, .42) 45%, rgba(6, 35, 56, .72));
    pointer-events: none;
}

.scrim--bottom {
    background: linear-gradient(180deg, rgba(6, 35, 56, .05) 42%, rgba(6, 35, 56, .82));
}

.scrim--detail {
    background: linear-gradient(180deg, rgba(6, 35, 56, .25), rgba(6, 35, 56, .85));
}

.card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 12px;
}

.card--pad { padding: 24px; }
.card--pad-sm { padding: 20px; }
.card--float { box-shadow: 0 8px 30px rgba(11, 47, 74, .08); }
.card--navy { background: var(--ink-800); color: #fff; border: 0; }
.card--gradient { background: linear-gradient(140deg, #062338, #0f5c8c); color: #fff; border: 0; }

.card--navy h3, .card--gradient h3 { color: #fff; }

.card h3 {
    font: 700 17px var(--font-display);
}

.pkg-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(11, 47, 74, .06);
    transition: box-shadow .18s ease, transform .18s ease;
    display: flex;
    flex-direction: column;
}

.pkg-card:hover {
    box-shadow: 0 10px 26px rgba(11, 47, 74, .14);
    transform: translateY(-2px);
}

.pkg-card__media {
    position: relative;
    height: 196px;
}

.pkg-card__tag {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    font: 700 10px var(--font-display);
    letter-spacing: .12em;
    background: rgba(11, 47, 74, .92);
    color: #fff;
    padding: 6px 11px;
    border-radius: 999px;
}

.pkg-card__body {
    padding: 18px 20px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.pkg-card__body h3 {
    font: 700 17px/1.25 var(--font-display);
}

.pkg-card__rating {
    font: 500 12px var(--font-body);
    color: var(--accent-500);
    white-space: nowrap;
}

.chip-row {
    display: flex;
    gap: 6px;
    margin: 14px 0 16px;
    flex-wrap: wrap;
}

.chip {
    font: 500 11px var(--font-body);
    color: #4a6980;
    background: #eef4f8;
    padding: 5px 10px;
    border-radius: 6px;
}

.pkg-card__foot {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    border-top: 1px solid var(--slate-100);
    padding-top: 14px;
    margin-top: auto;
}

.price-from {
    font: 400 11px var(--font-body);
    color: var(--text-soft);
}

.price-value {
    font: 700 22px var(--font-display);
    color: var(--ink-800);
}

.btn {
    border: 0;
    cursor: pointer;
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: .12em;
    border-radius: 999px;
    padding: 13px 24px;
    font-size: 11px;
    transition: background .15s ease, color .15s ease, border-color .15s ease;
    text-align: center;
    display: inline-block;
    white-space: nowrap;
}

.btn:disabled {
    background: #c8d3db;
    color: #fff;
    cursor: not-allowed;
}

.btn--accent { background: var(--accent-500); color: #fff; }
.btn--accent:hover:not(:disabled) { background: var(--accent-600); color: #fff; }

.btn--navy { background: var(--ink-800); color: #fff; }
.btn--navy:hover:not(:disabled) { background: var(--brand-600); color: #fff; }

.btn--blue { background: var(--brand-600); color: #fff; }
.btn--blue:hover:not(:disabled) { background: var(--ink-800); color: #fff; }

.btn--outline {
    background: transparent;
    border: 1.5px solid var(--ink-800);
    color: var(--ink-800);
}

.btn--outline:hover:not(:disabled) { background: var(--ink-800); color: #fff; }

.btn--ghost {
    background: #fff;
    border: 1px solid var(--line-strong);
    color: var(--ink-800);
    border-radius: 8px;
    letter-spacing: .1em;
}

.btn--ghost:hover:not(:disabled) { border-color: var(--brand-600); color: var(--brand-600); }

.btn--danger {
    background: #fff;
    border: 1px solid #e4c2c2;
    color: var(--red-600);
    border-radius: 9px;
}

.btn--danger:hover:not(:disabled) { background: var(--red-100); }

.btn--block { display: block; width: 100%; }
.btn--lg { padding: 15px 32px; font-size: 12px; letter-spacing: .14em; }
.btn--sq { border-radius: 9px; }

.pill {
    justify-self: start;
    display: inline-block;
    font: 600 10px var(--font-display);
    letter-spacing: .1em;
    padding: 5px 10px;
    border-radius: 999px;
    white-space: nowrap;
}

.pill--green { background: var(--green-100); color: var(--green-600); }
.pill--amber { background: var(--amber-100); color: var(--amber-600); }
.pill--red { background: var(--red-100); color: var(--red-600); }
.pill--grey { background: var(--slate-100); color: var(--slate-600); }
.pill--blue { background: #eaf1f7; color: var(--brand-600); }
.pill--onnavy { background: rgba(255, 255, 255, .16); color: #fff; }
.pill--accent { background: rgba(224, 129, 63, .9); color: #fff; }

.filter-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.filter {
    font: 600 11px var(--font-display);
    letter-spacing: .1em;
    padding: 9px 16px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--line-strong);
    color: #5d6b78;
    cursor: pointer;
}

.filter:hover { border-color: var(--brand-600); color: var(--brand-600); }

.filter--active {
    background: var(--ink-800);
    border-color: var(--ink-800);
    color: #fff;
}

.filter--active:hover { color: #fff; }

.tile {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    min-height: 150px;
}

.tile__label {
    position: absolute;
    left: 18px;
    bottom: 16px;
    z-index: 2;
    pointer-events: none;
}

.tile__label b {
    display: block;
    font: 700 17px var(--font-display);
    color: #fff;
}

.tile__label span {
    font: 400 12px var(--font-body);
    color: rgba(255, 255, 255, .78);
}

.tile--lg .tile__label b { font: 800 26px var(--font-display); }
.tile--lg .tile__label span { font-size: 13px; }

.step {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 12px;
    padding: 20px 22px;
}

.step__num {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(224, 129, 63, .18);
    color: var(--accent-500);
    font: 800 15px var(--font-display);
    display: flex;
    align-items: center;
    justify-content: center;
    flex: none;
}

.step b {
    display: block;
    font: 700 16px var(--font-display);
    color: #fff;
}

.step p {
    margin: 4px 0 0;
    font-size: 13.5px;
    line-height: 1.6;
    color: rgba(255, 255, 255, .66);
}

.feature__icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: #eef4f8;
    color: var(--accent-500);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature__icon svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.feature b {
    display: block;
    font: 700 15px var(--font-display);
    margin: 14px 0 6px;
}

.feature p {
    margin: 0;
    font-size: 13.5px;
    line-height: 1.6;
    color: var(--slate-600);
}

.review {
    background: var(--surface-muted);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 24px;
}

.review__stars { color: var(--accent-500); font-size: 13px; }

.review p {
    margin: 12px 0 18px;
    font-size: 14.5px;
    line-height: 1.7;
    color: #3f5a6d;
}

.review__author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.review__avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: repeating-linear-gradient(135deg, #dbe5ec 0 6px, #cfdae3 6px 12px);
    flex: none;
}

.promo {
    margin: 0 44px 56px;
    border-radius: 16px;
    background: linear-gradient(120deg, #062338, #0f5c8c 70%, #2c7fae);
    padding: 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    color: #fff;
}

.promo h2 { color: #fff; font: 800 32px var(--font-display); margin: 12px 0 8px; }

.site-footer {
    background: var(--ink-900);
    padding: 40px 44px;
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 32px;
}

.site-footer p {
    margin: 14px 0 0;
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255, 255, 255, .55);
    max-width: 280px;
}

.site-footer h4 {
    font: 600 10px var(--font-display);
    letter-spacing: .16em;
    color: rgba(255, 255, 255, .45);
    margin-bottom: 12px;
}

.site-footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 9px;
    font-size: 13.5px;
    color: rgba(255, 255, 255, .75);
}

.site-footer ul a {
    color: rgba(255, 255, 255, .75);
    transition: color .2s var(--ease);
}

.site-footer ul a:hover {
    color: #fff;
}

.detail-hero {
    position: relative;
    height: 320px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 32px 44px;
}

.detail-hero h1 {
    margin: 14px 0 6px;
    font: 800 44px/1 var(--font-display);
    color: #fff;
    letter-spacing: -.02em;
}

.detail-hero__meta {
    font-size: 14px;
    color: rgba(255, 255, 255, .8);
}

.tabs {
    display: flex;
    gap: 26px;
    border-bottom: 1px solid var(--line);
    font: 600 12px var(--font-display);
    letter-spacing: .1em;
    color: var(--text-soft);
}

.tabs span { padding-bottom: 12px; }

.tabs .active {
    color: var(--ink-800);
    border-bottom: 2px solid var(--accent-500);
}

.itinerary-day {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 18px;
    padding-bottom: 22px;
}

.itinerary-day__rail {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.itinerary-day__badge {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #eef4f8;
    color: var(--brand-600);
    font: 700 12px var(--font-display);
    display: flex;
    align-items: center;
    justify-content: center;
    flex: none;
}

.itinerary-day__line {
    flex: 1;
    width: 1px;
    background: var(--line);
}

.itinerary-day b {
    display: block;
    font: 700 15px var(--font-display);
}

.itinerary-day p {
    margin: 6px 0 0;
    font-size: 13.5px;
    line-height: 1.6;
    color: var(--slate-600);
}

.booking-panel {
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: 0 8px 30px rgba(11, 47, 74, .10);
    overflow: hidden;
    background: #fff;
    position: sticky;
    top: 20px;
}

.booking-panel__head {
    background: var(--ink-800);
    padding: 18px 22px;
    color: #fff;
}

.booking-panel__head small {
    font-size: 11px;
    color: rgba(255, 255, 255, .65);
}

.booking-panel__price {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.booking-panel__price b { font: 800 30px var(--font-display); }
.booking-panel__price span { font-size: 12px; color: rgba(255, 255, 255, .6); }

.booking-panel__body {
    padding: 20px 22px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.option-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.option {
    padding: 10px 6px;
    border-radius: 9px;
    cursor: pointer;
    text-align: center;
    background: #fff;
    color: var(--ink-800);
    border: 1px solid var(--line-strong);
}

.option:hover { border-color: var(--brand-600); }

.option b {
    display: block;
    font: 700 12px var(--font-display);
}

.option span {
    font-size: 10.5px;
    opacity: .7;
}

.option--on {
    background: var(--ink-800);
    color: #fff;
    border-color: var(--ink-800);
}

.option--wide {
    padding: 13px 14px;
    text-align: left;
}

.option--wide b { font-size: 13px; }
.option--wide span { font-size: 11.5px; }

.option--tinted.option--on {
    background: var(--surface-tint);
    color: var(--ink-800);
    border: 1.5px solid var(--brand-600);
}

.stepper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid var(--line-strong);
    border-radius: 9px;
    padding: 8px 12px;
}

.stepper__controls {
    display: flex;
    align-items: center;
    gap: 14px;
}

.stepper__btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid var(--line-strong);
    background: #fff;
    color: var(--ink-800);
    font: 600 16px var(--font-display);
    cursor: pointer;
    line-height: 1;
}

.stepper__btn:hover:not(:disabled) { border-color: var(--brand-600); color: var(--brand-600); }
.stepper__btn:disabled { opacity: .4; cursor: not-allowed; }

.stepper__value {
    font: 700 15px var(--font-display);
    min-width: 16px;
    text-align: center;
}

.toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 10px 12px;
    border-radius: 9px;
    cursor: pointer;
    text-align: left;
    background: #fff;
    border: 1px solid var(--line-strong);
}

.toggle--on {
    background: var(--surface-tint);
    border-color: var(--brand-600);
}

.toggle__box {
    width: 18px;
    height: 18px;
    border-radius: 5px;
    flex: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font: 700 11px var(--font-display);
    color: #fff;
    background: #fff;
    border: 1px solid #c8d3db;
}

.toggle--on .toggle__box {
    background: var(--brand-600);
    border-color: var(--brand-600);
}

.toggle__name {
    flex: 1;
    font: 500 13.5px var(--font-body);
    color: var(--ink-800);
}

.toggle__price {
    font: 500 13px var(--font-body);
    color: var(--slate-600);
}

.totals {
    border-top: 1px dashed var(--line-strong);
    padding-top: 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.totals__row {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: var(--slate-600);
}

.totals__row--green { color: var(--green-600); }
.totals__row--accent { color: var(--accent-500); font-weight: 500; }

.totals__grand {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-top: 6px;
}

.totals__grand span { font: 700 15px var(--font-display); }
.totals__grand b { font: 800 24px var(--font-display); }

.fineprint {
    text-align: center;
    font-size: 11.5px;
    color: var(--text-soft);
}

.checkout-bar {
    background: var(--ink-800);
    padding: 18px 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.checkout-steps {
    display: flex;
    align-items: center;
    gap: 14px;
    font: 600 11px var(--font-display);
    letter-spacing: .1em;
    color: rgba(255, 255, 255, .55);
}

.checkout-steps .active {
    color: #fff;
    border-bottom: 2px solid var(--accent-500);
    padding-bottom: 3px;
}

.checkout-steps i {
    color: rgba(255, 255, 255, .3);
    font-style: normal;
}

.checkout-hold {
    font-size: 11.5px;
    color: rgba(255, 255, 255, .6);
}

.checkout-hold b { color: #fff; }

.checkout-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 34px;
    padding: 32px var(--gutter) 44px;
    background: var(--surface-muted);
    align-items: start;
}

.field input,
.field select,
.field textarea {
    border: 1px solid var(--line-strong);
    border-radius: 8px;
    padding: 12px 14px;
    font: 400 14px var(--font-body);
    color: var(--ink-800);
    background: #fff;
    width: 100%;
    outline: none;
}

.field input:focus,
.field select:focus { border-color: var(--brand-600); }

.field input::placeholder { color: var(--text-faint); }

.field__static {
    border: 1px solid var(--line-strong);
    border-radius: 8px;
    padding: 12px 14px;
    font: 400 14px var(--font-body);
    color: var(--ink-800);
}

.note {
    padding: 14px 16px;
    background: var(--surface-tint);
    border: 1px solid #dbe7ef;
    border-radius: 10px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 13px;
    line-height: 1.55;
    color: #3f5a6d;
}

.note--warm {
    background: #fdf6f0;
    border-color: #f3ddc9;
    color: #8a5a2b;
}

.note__icon {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--brand-600);
    color: #fff;
    font: 700 11px var(--font-display);
    display: flex;
    align-items: center;
    justify-content: center;
    flex: none;
}

.note__icon--square { border-radius: 4px; }

.summary-card__head {
    display: flex;
    gap: 14px;
    padding: 18px;
    border-bottom: 1px solid var(--slate-100);
}

.summary-card__thumb {
    width: 74px;
    height: 64px;
    border-radius: 8px;
    background: repeating-linear-gradient(135deg, #dbe5ec 0 8px, #cfdae3 8px 16px);
    flex: none;
}

.summary-card__head b {
    display: block;
    font: 700 15px/1.3 var(--font-display);
}

.summary-card__head span {
    display: block;
    font-size: 12.5px;
    color: var(--text-muted);
    margin-top: 4px;
}

.summary-card__body {
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.confirm-hero {
    background: linear-gradient(140deg, #062338, #0f5c8c);
    padding: 40px 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    color: #fff;
}

.confirm-hero h1 {
    margin: 14px 0 6px;
    font: 800 38px/1 var(--font-display);
    color: #fff;
    letter-spacing: -.02em;
}

.confirm-hero__meta { font-size: 14px; color: rgba(255, 255, 255, .75); }

.data-table {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    overflow: hidden;
}

.data-table__head,
.data-table__row {
    display: grid;
    align-items: center;
    gap: 12px;
}

.data-table__head {
    padding: 13px 20px;
    background: #f2f5f8;
    font: 600 10px var(--font-display);
    letter-spacing: .13em;
    color: var(--text-soft);
}

.data-table__row {
    padding: 16px 20px;
    border-top: 1px solid var(--slate-100);
}

.data-table__row b {
    display: block;
    font: 600 14px var(--font-display);
}

.data-table__row small {
    display: block;
    font: 400 11.5px var(--font-mono);
    color: #a0acb6;
    margin-top: 3px;
}

.cols-bookings { grid-template-columns: 1.6fr 1fr 1fr .9fr; }
.cols-queue { grid-template-columns: 1.5fr 1fr 1fr .9fr; }

.text-right { text-align: right; }


.dot-green { background: var(--green-600); }
.dot-accent { background: var(--accent-500); }
.dot-grey { background: #c8d3db; }

.tracker__step {
    display: grid;
    grid-template-columns: 34px 1fr auto;
    gap: 16px;
    align-items: flex-start;
    padding-bottom: 20px;
}

.tracker__rail {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    height: 100%;
}

.tracker__icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    flex: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font: 700 12px var(--font-display);
}

.tracker__icon--done { background: var(--green-100); color: var(--green-600); }
.tracker__icon--progress { background: var(--amber-100); color: var(--amber-600); }
.tracker__icon--waiting { background: var(--slate-100); color: #8a99a6; }

.tracker__line {
    width: 2px;
    flex: 1;
    min-height: 14px;
    background: var(--slate-100);
}

.tracker__step b {
    display: block;
    font: 700 15px var(--font-display);
}

.tracker__step--waiting b { color: #8a99a6; }

.tracker__step p {
    margin: 3px 0 0;
    font-size: 13px;
    line-height: 1.55;
    color: var(--text-muted);
}

.flow-mini {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.flow-mini__item { padding-right: 16px; }

.flow-mini__rail {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.flow-mini__rail i {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex: none;
    display: block;
}

.flow-mini__rail div {
    height: 2px;
    flex: 1;
    background: var(--slate-100);
}

.flow-mini b { display: block; font: 700 13.5px var(--font-display); }

.flow-mini span {
    display: block;
    font-size: 12.5px;
    line-height: 1.5;
    color: var(--text-muted);
    margin-top: 4px;
}

.spinner {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, .2);
    border-top-color: var(--accent-500);
    margin: 0 auto;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.redirect-box {
    margin-top: 12px;
    background: rgba(255, 255, 255, .07);
    border: 1px dashed rgba(255, 255, 255, .28);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
}

.admin-shell {
    display: grid;
    grid-template-columns: 240px 1fr;
    min-height: 100vh;
    width: 100%;
    background: var(--surface-muted);
}

.admin-nav {
    background: var(--ink-900);
    padding: 22px 18px;
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.admin-nav__links {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.admin-nav__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    border-radius: 8px;
    font: 500 13px var(--font-body);
    color: rgba(255, 255, 255, .62);
}

.admin-nav__link:hover { color: #fff; background: rgba(255, 255, 255, .08); }

.admin-nav__link.active {
    background: rgba(255, 255, 255, .12);
    color: #fff;
}

.admin-nav__badge {
    font: 700 10px var(--font-display);
    background: var(--accent-500);
    color: #fff;
    padding: 3px 7px;
    border-radius: 999px;
}

.admin-nav__badge--blue { background: var(--brand-600); }

.admin-topbar {
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 18px 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.admin-topbar h2 { font: 700 20px var(--font-display); }

.admin-body {
    display: grid;
    grid-template-columns: 1fr 392px;
    align-items: start;
}

.admin-queue { padding: 20px 22px; }

.admin-detail {
    background: #fff;
    border-left: 1px solid var(--line);
    padding: 22px;
    min-height: 100%;
}

.queue-row {
    cursor: pointer;
    background: #fff;
}

.queue-row:hover { background: #f9fbfd; }

.queue-row--selected {
    background: #f4f8fb;
    box-shadow: inset 3px 0 0 var(--accent-500);
}

.supplier {
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 14px;
}

.supplier b { display: block; font: 700 14px var(--font-display); }

.supplier small {
    display: block;
    font-size: 12px;
    color: var(--text-soft);
    margin-top: 3px;
}

.doc-row {
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 12px 14px;
}

.doc-row__icon {
    width: 34px;
    height: 40px;
    border-radius: 4px;
    background: repeating-linear-gradient(135deg, #e3eaf0 0 6px, #d6e0e8 6px 12px);
    flex: none;
}

.doc-row b { display: block; font: 600 13.5px var(--font-display); }

.doc-row small {
    display: block;
    font-size: 11.5px;
    color: var(--text-soft);
    margin-top: 2px;
}

.fineprint--warn {
    color: var(--red-600);
    font-weight: 600;
}

.dropzone {
    border: 1.5px dashed #c8d3db;
    border-radius: 10px;
    padding: 18px;
    text-align: center;
    font-size: 12.5px;
    color: var(--text-soft);
}

.dropzone--input {
    display: block;
    cursor: pointer;
    transition: border-color .2s var(--ease), background .2s var(--ease), color .2s var(--ease);
}

.dropzone--input:hover {
    border-color: var(--accent-500);
    background: rgba(191, 145, 20, .07);
    color: var(--ink-800);
}

.dropzone--input input[type="file"] {
    display: none;
}

.doc-row__actions {
    display: flex;
    gap: 6px;
    flex: none;
}

.doc-row .media-card__action {
    width: 34px;
    height: 34px;
    background: rgba(11, 47, 74, .08);
    border-color: var(--line-strong);
    color: var(--ink-800);
    text-decoration: none;
}

.doc-row .media-card__action:hover {
    background: var(--accent-500);
    color: #fff;
}

.doc-row .media-card__action--danger:hover {
    background: var(--red-600);
}

.channel {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--line-strong);
    border-radius: 9px;
    padding: 11px 13px;
    cursor: pointer;
    background: #fff;
    width: 100%;
    text-align: left;
}

.channel--on {
    border-color: var(--brand-600);
    background: var(--surface-tint);
}

.channel__box {
    width: 18px;
    height: 18px;
    border-radius: 5px;
    border: 1px solid #c8d3db;
    display: flex;
    align-items: center;
    justify-content: center;
    font: 700 11px var(--font-display);
    color: #fff;
    flex: none;
}

.channel--on .channel__box {
    background: var(--brand-600);
    border-color: var(--brand-600);
}

.channel span {
    flex: 1;
    font: 500 13.5px var(--font-body);
    color: var(--ink-800);
}

.chat {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.chat__bubble {
    align-self: flex-start;
    max-width: 88%;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px 12px 12px 3px;
    padding: 12px 14px;
    font-size: 13px;
    line-height: 1.55;
    color: #3f5a6d;
}

.alert {
    padding: 12px 16px;
    border-radius: 9px;
    font-size: 13px;
    margin-bottom: 16px;
}

.alert--error {
    background: var(--red-100);
    border: 1px solid #e4c2c2;
    color: var(--red-600);
}

.alert--success {
    background: var(--green-100);
    border: 1px solid #c6e2d3;
    color: var(--green-600);
}

.loading {
    padding: 60px 44px;
    text-align: center;
    color: var(--text-muted);
    font-size: 14px;
}

#blazor-error-ui {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

#blazor-error-ui .dismiss {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}

.tile-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    grid-auto-rows: 150px;
    gap: 16px;
}

.how-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 56px;
    align-items: center;
}

.billing-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 14px;
}

.provider-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.doc-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.btn-row {
    display: flex;
    gap: 10px;
    align-items: center;
}

.site-header__burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    padding: 0 10px;
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 10px;
    background: rgba(255, 255, 255, .08);
    cursor: pointer;
}

.site-header__burger span {
    display: block;
    height: 2px;
    border-radius: 2px;
    background: #fff;
    transition: transform .2s var(--ease), opacity .2s var(--ease);
}

.site-header--open .site-header__burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-header--open .site-header__burger span:nth-child(2) { opacity: 0; }
.site-header--open .site-header__burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.lang-switch {
    display: flex;
    gap: 2px;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 999px;
    padding: 3px;
}

.lang-switch__item {
    font: 600 10.5px var(--font-display);
    letter-spacing: .08em;
    color: rgba(255, 255, 255, .7);
    padding: 5px 10px;
    border-radius: 999px;
}

.lang-switch__item:hover { color: #fff; }

.lang-switch__item--on {
    background: #fff;
    color: var(--ink-800);
}

.lang-switch__item--on:hover { color: var(--ink-800); }

.media-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.media-image--static {
    position: relative;
    inset: auto;
    border-radius: 8px;
}

.carousel {
    position: relative;
    overflow: hidden;
    background: var(--slate-100);
}

.carousel__dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    gap: 7px;
}

.carousel__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 0;
    background: rgba(255, 255, 255, .45);
    cursor: pointer;
    padding: 0;
}

.carousel__dot--on { background: #fff; width: 20px; border-radius: 999px; }

.localized-field { display: flex; flex-direction: column; gap: 6px; }

.localized-field__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.localized-field__tabs { display: flex; gap: 3px; }

.localized-field__tab {
    font: 600 10px var(--font-display);
    letter-spacing: .08em;
    padding: 4px 9px;
    border-radius: 6px;
    border: 1px solid var(--line-strong);
    background: #fff;
    color: var(--slate-600);
    cursor: pointer;
}

.localized-field__tab--on {
    background: var(--ink-800);
    border-color: var(--ink-800);
    color: #fff;
}

.localized-field__tab--empty:not(.localized-field__tab--on) { color: var(--text-faint); }

.localized-field input,
.localized-field textarea,
.admin-input,
.admin-select {
    border: 1px solid var(--line-strong);
    border-radius: 8px;
    padding: 11px 13px;
    font: 400 14px var(--font-body);
    color: var(--ink-800);
    background: #fff;
    width: 100%;
    outline: none;
    font-family: var(--font-body);
}

.localized-field input:focus,
.localized-field textarea:focus,
.admin-input:focus,
.admin-select:focus { border-color: var(--brand-600); }

.media-picker { display: flex; flex-direction: column; gap: 8px; }

.media-picker__single { display: flex; gap: 14px; align-items: flex-start; }

.media-picker__thumb {
    position: relative;
    width: 96px;
    height: 72px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--line);
    flex: none;
    background: var(--slate-100);
}

.media-picker__thumb--lg { width: 160px; height: 108px; }

.media-picker__thumb .media-image,
.media-picker__thumb .image-slot {
    position: absolute;
    inset: 0;
    border-radius: 0;
    width: 100%;
    height: 100%;
}

.media-picker__remove {
    position: absolute;
    top: 4px;
    right: 4px;
    z-index: 3;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 0;
    background: rgba(11, 47, 74, .82);
    color: #fff;
    cursor: pointer;
    line-height: 1;
}

.media-picker__strip { display: flex; gap: 10px; flex-wrap: wrap; }

.media-picker__add {
    width: 96px;
    height: 72px;
    border-radius: 8px;
    border: 1.5px dashed #c8d3db;
    background: #fff;
    color: var(--brand-600);
    font-size: 24px;
    cursor: pointer;
}

.media-picker__add:hover { border-color: var(--brand-600); background: var(--surface-tint); }

.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 12px;
    max-height: 60vh;
    overflow-y: auto;
}


.modal {
    position: fixed;
    inset: 0;
    z-index: 50;
    background: rgba(6, 35, 56, .55);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.modal__panel {
    background: #fff;
    border-radius: 14px;
    padding: 24px;
    width: min(760px, 100%);
    max-height: 86vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(6, 35, 56, .35);
}

.admin-page { padding: 24px 26px; }

.admin-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.admin-form--full { grid-template-columns: 1fr; }

.admin-form__field { display: flex; flex-direction: column; gap: 6px; }

.admin-form__span { grid-column: 1 / -1; }

.admin-list { display: flex; flex-direction: column; gap: 12px; }

.admin-row {
    display: flex;
    align-items: center;
    gap: 14px;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 14px 16px;
    background: #fff;
}

.admin-row__thumb {
    position: relative;
    width: 84px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    flex: none;
    background: var(--slate-100);
}

.admin-row__thumb .media-image,
.admin-row__thumb .image-slot { position: absolute; inset: 0; width: 100%; height: 100%; border-radius: 0; }

.admin-row b { display: block; font: 600 14.5px var(--font-display); }

.admin-row small { display: block; font-size: 12px; color: var(--text-soft); margin-top: 3px; }

.admin-subcard {
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 14px;
    background: var(--surface-muted);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.admin-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    font: 500 13.5px var(--font-body);
    color: var(--ink-800);
    cursor: pointer;
}

.checkbox input { width: 16px; height: 16px; accent-color: var(--brand-600); }

.empty-state {
    border: 1.5px dashed var(--line-strong);
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    color: var(--text-muted);
    font-size: 14px;
    background: #fff;
}

.hero--carousel { min-height: 520px; display: flex; flex-direction: column; }

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .7s var(--ease), transform .7s var(--ease);
    will-change: opacity, transform;
}

.reveal.reveal--in {
    opacity: 1;
    transform: none;
}

.glass {
    background: var(--glass);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-line);
    box-shadow: 0 18px 50px rgba(6, 35, 56, .12), inset 0 1px 0 rgba(255, 255, 255, .7);
}

.glass--dark {
    background: var(--glass-dark);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-line-dark);
    box-shadow: 0 18px 50px rgba(3, 18, 30, .35), inset 0 1px 0 rgba(255, 255, 255, .12);
    color: #fff;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    transition: background .3s var(--ease), backdrop-filter .3s var(--ease), border-color .3s var(--ease);
    border-bottom: 1px solid transparent;
}

.site-header--stuck,
.site-header--solid {
    background: rgba(9, 32, 51, .72);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-bottom-color: var(--glass-line-dark);
}

.brand__logo {
    width: 34px;
    height: 34px;
    display: block;
    filter: drop-shadow(0 2px 10px rgba(191, 145, 20, .45));
    transition: transform .4s var(--ease);
}

.brand:hover .brand__logo {
    transform: translateY(-2px) scale(1.06);
}

.brand__logo--sm {
    width: 26px;
    height: 26px;
}

.hero__media {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero__media img,
.hero__media .carousel__slide {
    animation: heroDrift 22s ease-in-out infinite alternate;
}

@keyframes heroDrift {
    from { transform: scale(1.04); }
    to { transform: scale(1.14) translate3d(-1.5%, -1%, 0); }
}

.hero__title {
    background: linear-gradient(100deg, #fff 20%, var(--accent-300) 55%, #fff 85%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: titleIn .9s var(--ease) both;
}

@keyframes titleIn {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: none; }
}

.hero__kicker,
.hero__lead {
    animation: titleIn .9s .12s var(--ease) both;
}

.hero__stats {
    animation: titleIn .9s .24s var(--ease) both;
}

.hero__stat b {
    background: linear-gradient(180deg, #fff, var(--accent-300));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.searchbar {
    background: var(--glass-strong);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-line);
    box-shadow: 0 24px 60px rgba(6, 35, 56, .32), inset 0 1px 0 rgba(255, 255, 255, .8);
    animation: titleIn .9s .36s var(--ease) both;
}

.searchbar__cell {
    border-right: 1px solid rgba(11, 47, 74, .08);
    transition: background .25s var(--ease);
}

.searchbar__cell:hover {
    background: rgba(255, 255, 255, .45);
}

.pkg-card {
    background: var(--glass-strong);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid rgba(255, 255, 255, .6);
    box-shadow: 0 10px 30px rgba(11, 47, 74, .08);
    transform-style: preserve-3d;
    transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}

.pkg-card:hover {
    box-shadow: 0 26px 60px rgba(11, 47, 74, .20);
    border-color: rgba(191, 145, 20, .45);
}

.pkg-card__media::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(6, 35, 56, 0) 45%, rgba(6, 35, 56, .35));
    opacity: 0;
    transition: opacity .35s var(--ease);
}

.pkg-card:hover .pkg-card__media::after {
    opacity: 1;
}

.pkg-card__media .media-image {
    transition: transform .6s var(--ease);
}

.pkg-card:hover .pkg-card__media .media-image {
    transform: scale(1.07);
}

.pkg-card__tag {
    background: rgba(191, 145, 20, .95);
    box-shadow: 0 6px 18px rgba(191, 145, 20, .35);
}

.tile {
    transition: transform .4s var(--ease), box-shadow .4s var(--ease);
    box-shadow: 0 8px 26px rgba(11, 47, 74, .12);
}

.tile:hover {
    transform: translateY(-5px) scale(1.012);
    box-shadow: 0 26px 60px rgba(11, 47, 74, .26);
}

.tile .media-image {
    transition: transform .7s var(--ease);
}

.tile:hover .media-image {
    transform: scale(1.09);
}

.card {
    transition: box-shadow .35s var(--ease), transform .35s var(--ease);
}

.card--float {
    background: var(--glass-strong);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-color: rgba(255, 255, 255, .6);
}

.booking-panel {
    background: var(--glass-strong);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-color: rgba(255, 255, 255, .6);
    box-shadow: 0 22px 60px rgba(11, 47, 74, .16);
}

.booking-panel__head {
    background: linear-gradient(135deg, #0b2f4a, #123f61);
}


.btn {
    position: relative;
    transition: transform .2s var(--ease), background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease), box-shadow .2s var(--ease);
}

.btn:not(:disabled):hover {
    transform: translateY(-2px);
}

.btn:not(:disabled):active {
    transform: translateY(0);
}

.btn--accent {
    background: linear-gradient(135deg, var(--accent-500), var(--accent-600));
    box-shadow: 0 10px 26px rgba(191, 145, 20, .32);
}

.btn--accent:hover:not(:disabled) {
    background: linear-gradient(135deg, var(--accent-300), var(--accent-500));
    box-shadow: 0 16px 34px rgba(191, 145, 20, .42);
}

.btn--navy {
    box-shadow: 0 10px 26px rgba(11, 47, 74, .25);
}

.btn--blue {
    background: linear-gradient(135deg, var(--brand-600), #0b2f4a);
    box-shadow: 0 8px 20px rgba(15, 92, 140, .3);
}

.filter {
    background: rgba(255, 255, 255, .65);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform .2s var(--ease), background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}

.filter:hover {
    transform: translateY(-2px);
}

.filter--active {
    background: linear-gradient(135deg, var(--ink-800), #123f61);
    box-shadow: 0 8px 20px rgba(11, 47, 74, .28);
}

.city-select {
    border: 0;
    outline: none;
    background: transparent;
    font: 600 15px var(--font-body);
    color: var(--ink-800);
    width: 100%;
    margin-top: 2px;
    padding: 0;
    cursor: pointer;
    appearance: none;
}

.city-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(191, 145, 20, .12);
    border: 1px solid rgba(191, 145, 20, .35);
    color: var(--accent-600);
    font: 600 11px var(--font-display);
    letter-spacing: .1em;
    padding: 8px 14px;
    border-radius: 999px;
}

.city-chip button {
    border: 0;
    background: transparent;
    color: inherit;
    cursor: pointer;
    font-size: 15px;
    line-height: 1;
    padding: 0;
}

.lang-switch {
    background: rgba(255, 255, 255, .14);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.lang-switch__item {
    transition: background .2s var(--ease), color .2s var(--ease);
}

.lang-switch__item--on {
    background: linear-gradient(135deg, var(--accent-300), var(--accent-500));
    color: #12283a;
    box-shadow: 0 4px 12px rgba(191, 145, 20, .4);
}

.lang-switch__item--on:hover {
    color: #12283a;
}

.step {
    background: rgba(255, 255, 255, .07);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform .3s var(--ease), background .3s var(--ease);
}

.step:hover {
    transform: translateX(6px);
    background: rgba(255, 255, 255, .12);
}

.step__num {
    background: linear-gradient(135deg, rgba(227, 182, 74, .28), rgba(191, 145, 20, .18));
    color: var(--accent-300);
}

.feature {
    transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}

.feature:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 44px rgba(11, 47, 74, .14);
}

.feature__icon {
    background: linear-gradient(135deg, rgba(191, 145, 20, .18), rgba(15, 92, 140, .12));
}

.review {
    background: var(--glass);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-color: rgba(255, 255, 255, .6);
    transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}

.review:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 44px rgba(11, 47, 74, .12);
}

.review__stars {
    color: var(--accent-500);
}

.promo {
    position: relative;
    overflow: hidden;
    box-shadow: 0 26px 70px rgba(6, 35, 56, .3);
}

.promo::after {
    content: "";
    position: absolute;
    inset: auto -8% -60% auto;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(191, 145, 20, .45), transparent 65%);
}

.promo > * {
    position: relative;
    z-index: 2;
}

.section--navy {
    position: relative;
    overflow: hidden;
}

.section--navy::before {
    content: "";
    position: absolute;
    inset: -30% auto auto -10%;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(15, 92, 140, .55), transparent 68%);
    pointer-events: none;
}

.section--navy > * {
    position: relative;
    z-index: 2;
}

.data-table {
    background: var(--glass-strong);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-color: rgba(255, 255, 255, .6);
    overflow: hidden;
}

.data-table__row {
    transition: background .2s var(--ease);
}

.data-table__row:hover {
    background: rgba(191, 145, 20, .06);
}

.tracker__icon {
    transition: transform .3s var(--ease);
}

.tracker__step:hover .tracker__icon {
    transform: scale(1.12);
}

.option,
.toggle,
.channel {
    transition: transform .2s var(--ease), background .2s var(--ease), border-color .2s var(--ease), box-shadow .2s var(--ease);
}

.option:hover,
.toggle:hover,
.channel:hover {
    transform: translateY(-1px);
}

.option--on {
    background: linear-gradient(135deg, var(--ink-800), #123f61);
    box-shadow: 0 8px 20px rgba(11, 47, 74, .26);
}

.modal__panel {
    background: var(--glass-strong);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-line);
    animation: panelIn .35s var(--ease) both;
}

@keyframes panelIn {
    from { opacity: 0; transform: translateY(18px) scale(.98); }
    to { opacity: 1; transform: none; }
}

.modal {
    animation: fadeIn .25s var(--ease) both;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.admin-nav {
    background: linear-gradient(180deg, #062338, #0a2c46);
}

.admin-nav__link {
    transition: background .2s var(--ease), color .2s var(--ease), transform .2s var(--ease);
}

.admin-nav__link:hover {
    transform: translateX(3px);
}

.admin-nav__link.active {
    background: linear-gradient(135deg, rgba(191, 145, 20, .3), rgba(255, 255, 255, .06));
    box-shadow: inset 2px 0 0 var(--accent-300);
}

.admin-row {
    transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}

.admin-row:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(11, 47, 74, .10);
    border-color: rgba(191, 145, 20, .35);
}

.empty-state {
    background: var(--glass);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
}

.page-shell {
    box-shadow: 0 2px 60px rgba(11, 47, 74, .12);
}

.gselect {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.gselect__control {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
    cursor: pointer;
    border: 1px solid var(--line-strong);
    border-radius: 10px;
    background: rgba(255, 255, 255, .75);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 11px 13px;
    font: 500 14px var(--font-body);
    color: var(--ink-800);
    text-align: left;
    transition: border-color .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
}

.gselect__control:hover:not(:disabled) {
    border-color: var(--brand-600);
    background: rgba(255, 255, 255, .9);
}

.gselect__control:disabled {
    opacity: .55;
    cursor: not-allowed;
}

.gselect--open .gselect__control {
    border-color: var(--accent-500);
    box-shadow: 0 0 0 3px rgba(191, 145, 20, .18);
}

.gselect__value {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.gselect__value--empty {
    color: var(--text-faint);
}

.gselect__chevron {
    font-size: 11px;
    color: var(--text-soft);
    transition: transform .25s var(--ease);
}

.gselect--open .gselect__chevron {
    transform: rotate(180deg);
}

.gselect--bare .gselect__control {
    border: 0;
    background: transparent;
    padding: 0;
    margin-top: 2px;
    font: 600 15px var(--font-body);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.gselect--bare.gselect--open .gselect__control {
    box-shadow: none;
}

.gselect--bare .gselect__control:hover:not(:disabled) {
    background: transparent;
    color: var(--brand-600);
}

.gselect__backdrop {
    position: fixed;
    inset: 0;
    z-index: 40;
}

.gselect__menu {
    position: absolute;
    z-index: 41;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    min-width: 200px;
    max-height: 300px;
    overflow-y: auto;
    padding: 6px;
    border-radius: 12px;
    background: rgba(255, 255, 255, .82);
    backdrop-filter: saturate(180%) blur(22px);
    -webkit-backdrop-filter: saturate(180%) blur(22px);
    border: 1px solid var(--glass-line);
    box-shadow: 0 22px 50px rgba(6, 35, 56, .22), inset 0 1px 0 rgba(255, 255, 255, .8);
    animation: gselectIn .2s var(--ease) both;
}

@keyframes gselectIn {
    from { opacity: 0; transform: translateY(-6px) scale(.98); }
    to { opacity: 1; transform: none; }
}

.gselect__option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
    border: 0;
    background: transparent;
    cursor: pointer;
    text-align: left;
    padding: 10px 12px;
    border-radius: 8px;
    font: 500 14px var(--font-body);
    color: var(--ink-800);
    transition: background .15s var(--ease), color .15s var(--ease);
}

.gselect__option:hover {
    background: rgba(191, 145, 20, .14);
}

.gselect__option--on {
    background: linear-gradient(135deg, rgba(191, 145, 20, .22), rgba(15, 92, 140, .12));
    font-weight: 700;
}

.gselect__tick {
    color: var(--accent-600);
    font-size: 12px;
}

.searchbar .gselect__menu {
    left: 10px;
    right: 10px;
}

.hero-settings-preview {
    position: relative;
    width: 100%;
    height: 200px;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--line);
    background: linear-gradient(170deg, #062338, #0f5c8c);
}

.hero-settings-preview .media-image,
.hero-settings-preview .image-slot {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border-radius: 0;
}

.hero {
    overflow: visible;
}

.searchbar {
    overflow: visible;
}

.searchbar__cell:first-child {
    border-top-left-radius: 14px;
    border-bottom-left-radius: 14px;
}

.searchbar__submit {
    border: 0;
    border-radius: 0 14px 14px 0;
    padding: 0 40px;
}

.hero__body,
.searchbar {
    position: relative;
    z-index: 3;
}

.tabs__item {
    border: 0;
    background: transparent;
    cursor: pointer;
    font: 600 12px var(--font-display);
    letter-spacing: .1em;
    color: var(--text-soft);
    padding: 0 0 12px;
    border-bottom: 2px solid transparent;
    transition: color .2s var(--ease), border-color .2s var(--ease);
}

.tabs__item:hover {
    color: var(--ink-800);
}

.tabs__item.active {
    color: var(--ink-800);
    border-bottom-color: var(--accent-500);
}

.tab-panel {
    margin-top: 24px;
    animation: tabIn .3s var(--ease) both;
}

@keyframes tabIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: none; }
}

.bullets {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.bullets li {
    position: relative;
    padding-left: 26px;
    font-size: 14px;
    line-height: 1.6;
    color: var(--slate-600);
}

.bullets li::before {
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 700;
}

.bullets--yes li::before {
    content: "✓";
    color: var(--green-600);
}

.bullets--no li::before {
    content: "×";
    color: var(--red-600);
    font-size: 17px;
    line-height: 1.35;
}

.media-picker__upload {
    margin-top: 16px;
    cursor: pointer;
    display: block;
}

.media-picker__upload input[type="file"] {
    display: none;
}

.icon {
    width: 16px;
    height: 16px;
    display: block;
}

.media-card {
    position: relative;
    border: 1px solid var(--line);
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    transition: border-color .2s var(--ease), box-shadow .2s var(--ease), transform .2s var(--ease);
}

.media-card:hover {
    border-color: var(--brand-600);
    box-shadow: 0 12px 28px rgba(11, 47, 74, .14);
    transform: translateY(-2px);
}

.media-card__pick {
    display: block;
    width: 100%;
    border: 0;
    background: transparent;
    padding: 0;
    cursor: pointer;
    text-align: left;
}

.media-card__pick img {
    width: 100%;
    height: 104px;
    object-fit: cover;
    display: block;
}

.media-card__pick span {
    display: block;
    padding: 8px 10px;
    font-size: 11.5px;
    color: var(--text-muted);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.media-card__actions {
    position: absolute;
    top: 6px;
    right: 6px;
    z-index: 2;
    display: flex;
    gap: 5px;
    opacity: 0;
    transform: translateY(-4px);
    transition: opacity .2s var(--ease), transform .2s var(--ease);
}

.media-card:hover .media-card__actions,
.media-card:focus-within .media-card__actions {
    opacity: 1;
    transform: none;
}

.media-card__action {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, .35);
    background: rgba(9, 32, 51, .62);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #fff;
    cursor: pointer;
    padding: 0;
    transition: background .2s var(--ease), transform .2s var(--ease), color .2s var(--ease);
}

.media-card__action:hover {
    background: var(--accent-500);
    color: #fff;
    transform: scale(1.08);
}

.media-card__action--danger:hover {
    background: var(--red-600);
}


.admin-row .media-card__action {
    background: rgba(11, 47, 74, .08);
    border-color: var(--line-strong);
    color: var(--ink-800);
    opacity: 1;
    transform: none;
    width: 34px;
    height: 34px;
}

.admin-row .media-card__action:hover {
    background: var(--accent-500);
    color: #fff;
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 60;
    background: rgba(4, 18, 30, .82);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 64px 24px 32px;
    animation: fadeIn .2s var(--ease) both;
}

.lightbox__img {
    max-width: min(1100px, 92vw);
    max-height: 76vh;
    object-fit: contain;
    border-radius: 14px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .55);
    animation: panelIn .28s var(--ease) both;
}

.lightbox__bar {
    position: absolute;
    top: 20px;
    right: 24px;
    display: flex;
    gap: 10px;
}

.lightbox__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, .28);
    background: rgba(255, 255, 255, .12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #fff;
    cursor: pointer;
    padding: 0;
    transition: background .2s var(--ease), transform .2s var(--ease);
}

.lightbox__btn .icon {
    width: 19px;
    height: 19px;
}

.lightbox__btn:hover {
    background: var(--accent-500);
    color: #fff;
    transform: scale(1.06);
}

.lightbox__btn--close:hover {
    background: var(--red-600);
}

.lightbox__caption {
    text-align: center;
    color: rgba(255, 255, 255, .82);
}

.lightbox__caption b {
    display: block;
    font: 600 14px var(--font-display);
    color: #fff;
}

.lightbox__caption span {
    font-size: 12.5px;
}

.carousel {
    touch-action: pan-y;
    user-select: none;
    -webkit-user-select: none;
    cursor: grab;
}

.carousel--dragging {
    cursor: grabbing;
}

.carousel__track {
    display: flex;
    height: 100%;
    width: 100%;
    will-change: transform;
}

.carousel__slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

.confirm {
    position: fixed;
    inset: 0;
    z-index: 70;
    background: rgba(4, 18, 30, .55);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    animation: fadeIn .2s var(--ease) both;
}

.confirm__panel {
    width: min(400px, 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 26px;
    text-align: center;
    border-radius: 16px;
    background: var(--glass-strong);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-line);
    box-shadow: 0 26px 70px rgba(6, 35, 56, .35);
    animation: panelIn .28s var(--ease) both;
}

.confirm__thumb {
    width: 96px;
    height: 68px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid var(--line);
}

.confirm__text b {
    display: block;
    font: 700 16px var(--font-display);
    color: var(--ink-800);
}

.confirm__text span {
    display: block;
    margin-top: 5px;
    font-size: 12.5px;
    color: var(--text-muted);
    word-break: break-all;
}

.confirm__actions {
    display: flex;
    gap: 10px;
    width: 100%;
}

.confirm__actions .btn {
    flex: 1;
}

.confirm .btn--danger {
    background: linear-gradient(135deg, var(--red-600), #92374a);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 10px 24px rgba(179, 71, 91, .3);
}

.confirm .btn--danger:hover {
    background: linear-gradient(135deg, #c4536a, var(--red-600));
}

.page-shell,
.admin-shell {
    box-shadow: none;
}

.section,
.site-header,
.checkout-bar,
.site-footer,
.hero__body,
.confirm-hero,
.detail-hero,
.page-grid {
    padding-left: var(--gutter);
    padding-right: var(--gutter);
}

.searchbar {
    margin-left: var(--gutter);
    margin-right: var(--gutter);
}

.promo {
    margin-left: var(--gutter);
    margin-right: var(--gutter);
}

.page-grid {
    display: grid;
    gap: 30px;
    align-items: start;
    padding-top: 32px;
    padding-bottom: 44px;
}

.page-grid--detail {
    grid-template-columns: minmax(0, 1fr) 388px;
    gap: 36px;
}

.page-grid--side {
    grid-template-columns: minmax(0, 1fr) 380px;
    background: var(--surface-muted);
}

.admin-page,
.admin-topbar,
.admin-body {
    width: 100%;
}

.auth-card {
    max-width: 420px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 14px 44px rgba(11, 47, 74, .10);
}

.auth-google {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.auth-google__icon {
    width: 18px;
    height: 18px;
    flex: none;
}

.auth-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 20px 0;
    color: var(--text-soft);
    font-size: 12px;
}

.auth-divider::before,
.auth-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--line);
}

.footer-pay {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.footer-pay img {
    height: 26px;
    width: auto;
    background: #fff;
    border-radius: 7px;
    padding: 5px 9px;
}

.admin-shell {
    background: var(--page);
}

.admin-nav {
    background: linear-gradient(178deg, #0c3a5c 0%, #071f33 100%);
}

.admin-nav__link {
    position: relative;
    transition: background .18s var(--ease), color .18s var(--ease), transform .18s var(--ease);
}

.admin-topbar {
    position: sticky;
    top: 0;
    z-index: 20;
    box-shadow: 0 1px 0 var(--line), 0 6px 18px rgba(11, 47, 74, .05);
}

.admin-topbar h2 {
    font: 700 19px var(--font-display);
    letter-spacing: -.01em;
}

.admin-row {
    box-shadow: 0 1px 2px rgba(11, 47, 74, .05);
    transition: box-shadow .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease);
}

.admin-row:hover {
    border-color: var(--line-strong);
    box-shadow: 0 10px 26px rgba(11, 47, 74, .09);
    transform: translateY(-1px);
}

.data-table {
    box-shadow: 0 1px 2px rgba(11, 47, 74, .05);
}

.data-table__head {
    background: linear-gradient(180deg, #f6f9fb, #eef3f7);
    border-bottom: 1px solid var(--line);
}

.data-table__row {
    transition: background .16s var(--ease);
}

.data-table__row:hover {
    background: #f8fbfd;
}

.queue-row--selected {
    box-shadow: inset 3px 0 0 var(--accent-500);
    background: #f7fafc;
}

.admin-input,
.admin-select {
    transition: border-color .18s var(--ease), box-shadow .18s var(--ease);
}

.admin-input:focus,
.admin-select:focus,
.field input:focus,
.field textarea:focus {
    border-color: var(--accent-500);
    box-shadow: 0 0 0 3px rgba(191, 145, 20, .14);
}

.admin-subcard {
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 1px 2px rgba(11, 47, 74, .05);
}

@media (max-width: 1100px) {
    .page-grid--detail,
    .page-grid--side {
        grid-template-columns: 1fr;
    }
}

.spinner--sm {
    width: 20px;
    height: 20px;
    border-width: 2px;
    border-color: rgba(11, 47, 74, .18);
    border-top-color: var(--accent-500);
    margin: 2px 0 0;
    flex: none;
}

.provider-option {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.provider-option__logo {
    height: 34px;
    width: auto;
    margin-bottom: 6px;
}

.provider-option:disabled {
    opacity: .5;
    cursor: not-allowed;
}

@media (max-width: 1000px) {
    .checkout-grid,
    .admin-body,
    .grid-3,
    .grid-4,
    .flow-mini,
    .searchbar,
    .how-grid,
    .tile-grid,
    .doc-split {
        grid-template-columns: 1fr;
    }

    .site-footer { grid-template-columns: repeat(2, 1fr); }
    .billing-grid { grid-template-columns: 1fr 1fr; }
    .tile-grid { grid-auto-rows: 150px; }
    .admin-shell { grid-template-columns: 1fr; }

    .admin-shell > *,
    .admin-body > *,
    .admin-page,
    .admin-queue,
    .admin-detail,
    .admin-topbar {
        min-width: 0;
    }

    .admin-nav {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        gap: 12px;
        padding: 12px 18px;
    }

    .admin-nav__links {
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 8px;
        flex-basis: 100%;
        overflow-x: auto;
        padding-bottom: 2px;
        scrollbar-width: none;
    }

    .admin-nav__links::-webkit-scrollbar { display: none; }
    .admin-nav__link { white-space: nowrap; padding: 8px 12px; }
    .admin-detail { border-left: 0; border-top: 1px solid var(--line); }
    .hero__title { font-size: 40px; }
    .section { padding: 32px 20px; }
    .checkout-grid { padding: 20px; }
    .promo { margin: 0 20px 32px; flex-direction: column; align-items: flex-start; }
    .searchbar { margin: 24px 20px 0; }
    .page-grid { padding: 24px 20px 32px; }
    .hero__body { padding: 40px 20px 0; }
    .confirm-hero, .detail-hero { padding-left: 20px; padding-right: 20px; }
    .booking-panel { position: static; }

    .site-header {
        padding: 14px 20px;
        flex-wrap: wrap;
        gap: 12px;
    }

    .site-header--open {
        background: rgba(6, 35, 56, .86);
        backdrop-filter: blur(22px) saturate(150%);
        -webkit-backdrop-filter: blur(22px) saturate(150%);
        border-bottom: 1px solid rgba(255, 255, 255, .14);
        box-shadow: 0 18px 46px rgba(3, 18, 30, .38);
    }

    .site-header__burger { display: flex; }

    .site-nav,
    .site-header__actions {
        display: none;
        flex-basis: 100%;
    }

    .site-header--open .site-nav,
    .site-header--open .site-header__actions {
        display: flex;
    }

    .site-nav {
        flex-direction: column;
        gap: 0;
        padding-top: 4px;
        font-size: 13px;
    }

    .site-nav a {
        padding: 14px 2px;
        border-bottom: 1px solid rgba(255, 255, 255, .10);
    }

    .site-nav a:hover,
    .site-nav a.active {
        border-bottom-color: var(--accent-500);
    }

    .site-header__actions {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding-bottom: 6px;
    }

    .site-header__actions > a {
        order: 1;
        padding: 14px 2px;
        border-bottom: 1px solid rgba(255, 255, 255, .10);
    }

    .site-header__actions .lang-switch {
        order: 2;
        align-self: flex-start;
        margin-top: 16px;
    }
}

@media (max-width: 760px) {
    :root { --gutter: 18px; }

    .grid-2,
    .billing-grid,
    .provider-grid,
    .option-grid,
    .admin-form,
    .site-footer {
        grid-template-columns: minmax(0, 1fr);
    }

    .admin-form > *,
    .grid-2 > *,
    .localized-field,
    .localized-field__head,
    .media-picker {
        min-width: 0;
    }

    .localized-field__head,
    .media-picker__single,
    .media-picker__strip {
        flex-wrap: wrap;
    }

    .media-picker__thumb--lg { max-width: 100%; }

    .admin-input,
    .admin-select,
    input,
    select,
    textarea {
        min-width: 0;
        max-width: 100%;
    }

    .row-between,
    .row-baseline {
        flex-wrap: wrap;
        gap: 12px;
    }

    .section { padding: 28px 18px; }
    .section__head h2 { font-size: 23px; }
    .site-header { padding: 12px 18px; }
    .hero__body { padding: 32px 18px 0; }
    .hero__title { font-size: 30px; }
    .hero__lead { font-size: 14px; }
    .hero__kicker { font-size: 10.5px; letter-spacing: .2em; }
    .hero__stats { gap: 20px; margin-top: 22px; flex-wrap: wrap; }
    .hero__stat b { font-size: 22px; }
    .hero__divider { display: none; }
    .searchbar { margin: 20px 18px 0; padding-bottom: 16px; }
    .searchbar__cell { padding: 13px 16px; border-right: 0; border-bottom: 1px solid var(--page); }
    .searchbar__cell:last-of-type { border-bottom: 0; }

    .searchbar__submit {
        margin: 4px 16px 0;
        border-radius: 11px;
        padding: 0 20px;
        min-height: 50px;
    }
    .page-grid { padding: 20px 18px 28px; }
    .checkout-grid { padding: 18px; gap: 18px; }
    .promo { margin: 0 18px 28px; padding: 26px 20px; gap: 20px; }
    .tile-grid { grid-auto-rows: 132px; }

    .data-table__head { display: none; }

    .data-table__row {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 14px 16px;
        align-items: flex-start;
    }

    .data-table__row .text-right { text-align: left; }

    .checkout-bar { flex-direction: column; align-items: flex-start; gap: 12px; padding: 14px 18px; }
    .checkout-steps { flex-wrap: wrap; gap: 8px; }
    .confirm-hero { flex-direction: column; align-items: flex-start; gap: 18px; padding: 28px 18px; }
    .confirm-hero .text-right { text-align: left; }
    .detail-hero { height: 240px; padding: 22px 18px; }
    .admin-topbar { flex-direction: column; align-items: flex-start; gap: 12px; padding: 14px 18px; }
    .admin-page { padding: 18px; }
    .admin-queue { padding: 16px 18px; }
    .admin-detail { padding: 18px; }
    .admin-toolbar { flex-wrap: wrap; }
    .admin-row { flex-wrap: wrap; }
    .btn-row { flex-wrap: wrap; }
    .btn-row > .btn { flex: 1 1 auto; }
    .admin-row > * { min-width: 0; }
    .filter-row {
        flex-wrap: nowrap;
        overflow-x: auto;
        width: 100%;
        margin: 0 -18px;
        padding: 2px 18px 6px;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .filter-row::-webkit-scrollbar { display: none; }

    .filter {
        flex: none;
        padding: 11px 17px;
        font-size: 11.5px;
    }

    .city-chip { flex: none; }

    .tabs { overflow-x: auto; gap: 18px; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
    .tabs::-webkit-scrollbar { display: none; }
    .tabs__item { white-space: nowrap; }
    .modal__panel { padding: 16px; border-radius: 12px; max-height: 92vh; }
    .media-grid { grid-template-columns: repeat(auto-fill, minmax(118px, 1fr)); max-height: 52vh; }
    .doc-row { flex-wrap: wrap; }
    .lightbox__img { max-width: 94vw; max-height: 66vh; }
    .pkg-card__media { height: 172px; }
    .summary-card__head { gap: 10px; }
    .btn--block, .btn--lg { min-height: 46px; }

    .admin-input,
    .searchbar input,
    .searchbar select,
    input,
    select,
    textarea {
        font-size: 16px;
    }
}
