/* =========================================================
   Enthuza Cycles — Global stylesheet
   Dark, warm, magazine-grade theme inspired by frame builders.
   ========================================================= */

:root {
    --bg: #0c0c0d;
    --bg-alt: #131315;
    --surface: #18181b;
    --surface-2: #1f1f23;
    --border: rgba(255, 255, 255, 0.08);
    --border-strong: rgba(255, 255, 255, 0.16);
    --text: #f4f4f5;
    --text-muted: #a1a1aa;
    --text-dim: #71717a;
    --accent: #d4a017;
    --accent-bright: #f0c041;
    --accent-soft: rgba(212, 160, 23, 0.14);
    --shadow-lg: 0 30px 60px -20px rgba(0, 0, 0, 0.6);
    --shadow-md: 0 12px 24px -10px rgba(0, 0, 0, 0.5);
    --radius-sm: 6px;
    --radius: 12px;
    --radius-lg: 20px;
    --container: 1200px;
    --gutter: clamp(1.25rem, 4vw, 2.5rem);
    --header-h: 76px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-h);
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: var(--text);
    text-decoration: none;
    transition: color 160ms ease;
}

a:hover {
    color: var(--accent-bright);
}

h1, h2, h3, h4 {
    margin: 0 0 0.5em;
    font-family: 'Bebas Neue', 'Inter', sans-serif;
    font-weight: 400;
    letter-spacing: 0.02em;
    line-height: 1.05;
    color: var(--text);
}

h1 { font-size: clamp(2.75rem, 6vw, 5.25rem); }
h2 { font-size: clamp(2.1rem, 4.4vw, 3.6rem); }
h3 { font-size: clamp(1.35rem, 2vw, 1.7rem); font-family: 'Inter', sans-serif; font-weight: 700; letter-spacing: -0.01em; line-height: 1.25; }
h4 { font-size: 0.95rem; font-family: 'Inter', sans-serif; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; }

p { margin: 0 0 1rem; color: var(--text-muted); }

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding-inline: var(--gutter);
}

.eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1rem;
    padding-left: 1.6rem;
    position: relative;
}

.eyebrow::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 1.1rem;
    height: 2px;
    background: var(--accent);
    transform: translateY(-50%);
}

.accent {
    color: var(--accent);
}

/* -------- Buttons -------- */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    padding: 0.95rem 1.6rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    border-radius: 999px;
    border: 1.5px solid transparent;
    cursor: pointer;
    text-decoration: none;
    transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
    white-space: nowrap;
}

.btn--small { padding: 0.65rem 1.15rem; font-size: 0.85rem; }

.btn--primary {
    background: var(--accent);
    color: #0b0b0c;
    border-color: var(--accent);
}

.btn--primary:hover {
    background: var(--accent-bright);
    border-color: var(--accent-bright);
    color: #0b0b0c;
    transform: translateY(-1px);
    box-shadow: 0 12px 30px -12px rgba(240, 192, 65, 0.55);
}

.btn--ghost {
    background: transparent;
    color: var(--text);
    border-color: var(--border-strong);
}

.btn--ghost:hover {
    border-color: var(--accent);
    color: var(--accent-bright);
    background: var(--accent-soft);
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-weight: 600;
    color: var(--accent);
    font-size: 0.95rem;
}

.link-arrow:hover { color: var(--accent-bright); transform: translateX(2px); }

/* -------- Header / Nav -------- */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    height: var(--header-h);
    background: rgba(12, 12, 13, 0.78);
    backdrop-filter: saturate(160%) blur(12px);
    -webkit-backdrop-filter: saturate(160%) blur(12px);
    border-bottom: 1px solid var(--border);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.site-header__brand {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    color: var(--text);
}

.site-header__brand img {
    width: 48px;
    height: 48px;
    filter: invert(1) brightness(1.1);
}

.site-header__brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.site-header__brand-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.55rem;
    letter-spacing: 0.06em;
    color: var(--text);
}

.site-header__brand-sub {
    font-size: 0.7rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--accent);
    margin-top: 2px;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.site-nav a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
    position: relative;
}

.site-nav a:hover { color: var(--text); }

.site-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 200ms ease;
}

.site-nav a:hover::after { width: 100%; }

.site-nav__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 1.05rem;
    border: 1px solid var(--border-strong);
    border-radius: 999px;
    color: var(--text) !important;
    font-weight: 600;
}

.site-nav__cta:hover {
    border-color: var(--accent);
    color: var(--accent-bright) !important;
    background: var(--accent-soft);
}

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

/* Mobile nav toggle (CSS-only) */
.nav-toggle { display: none; }
.nav-toggle-label {
    display: none;
    width: 32px;
    height: 24px;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

.nav-toggle-label span {
    display: block;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: transform 220ms ease, opacity 220ms ease;
    transform-origin: center;
}

/* -------- Hero -------- */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
}

.hero__media {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    animation: heroZoom 18s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    from { transform: scale(1.0); }
    to   { transform: scale(1.08); }
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(12, 12, 13, 0.6) 0%, rgba(12, 12, 13, 0.5) 40%, rgba(12, 12, 13, 0.92) 100%),
        radial-gradient(ellipse at 30% 30%, rgba(212, 160, 23, 0.18), transparent 60%);
}

.hero__inner {
    padding-top: calc(var(--header-h) + 2rem);
    padding-bottom: 4rem;
    max-width: 880px;
}

.hero__title {
    font-size: clamp(3rem, 7.5vw, 6.5rem);
    margin: 0 0 1.5rem;
}

.hero__lead {
    max-width: 600px;
    font-size: clamp(1.05rem, 1.4vw, 1.2rem);
    color: var(--text);
    opacity: 0.92;
    margin-bottom: 2.25rem;
}

.hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-bottom: 2.5rem;
}

.hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.hero__meta a {
    color: var(--text-muted);
    border-bottom: 1px solid transparent;
    padding-bottom: 1px;
}

.hero__meta a:hover {
    color: var(--accent-bright);
    border-color: var(--accent);
}

.hero__scroll {
    position: absolute;
    bottom: 1.6rem;
    left: 50%;
    transform: translateX(-50%);
    width: 26px;
    height: 42px;
    border: 1.5px solid var(--border-strong);
    border-radius: 999px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 6px;
}

.hero__scroll span {
    width: 3px;
    height: 8px;
    background: var(--accent);
    border-radius: 2px;
    animation: scrollDot 1.6s ease-in-out infinite;
}

@keyframes scrollDot {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(14px); opacity: 0; }
}

/* -------- Sections -------- */

.section {
    padding: clamp(4.5rem, 9vw, 7.5rem) 0;
    position: relative;
}

.section--services {
    background: var(--bg);
}

.section--about {
    background: var(--bg-alt);
}

.section--gallery {
    background: var(--bg);
}

.section--contact {
    background: var(--bg-alt);
    padding-bottom: 0;
}

.section__header {
    margin-bottom: 3.5rem;
    max-width: 720px;
}

.section__header--center {
    text-align: center;
    margin-inline: auto;
}

.section__header--center .eyebrow { padding-left: 0; }
.section__header--center .eyebrow::before { display: none; }

.section__title {
    margin-bottom: 1rem;
}

.section__lead {
    font-size: 1.1rem;
    color: var(--text-muted);
}

/* -------- Services grid -------- */

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.service-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-strong);
    box-shadow: var(--shadow-lg);
}

.service-card__media {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    position: relative;
}

.service-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 600ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.service-card:hover .service-card__media img {
    transform: scale(1.06);
}

.service-card__body {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 0.5rem;
}

.service-card__body p {
    flex: 1;
}

.service-card--featured {
    background: linear-gradient(160deg, rgba(212, 160, 23, 0.15), rgba(212, 160, 23, 0.02) 60%), var(--surface);
    border-color: rgba(212, 160, 23, 0.32);
}

.badge {
    align-self: flex-start;
    background: var(--accent);
    color: #0b0b0c;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.28rem 0.6rem;
    border-radius: 999px;
    margin-bottom: 0.4rem;
}

/* -------- About -------- */

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 5rem);
    align-items: center;
}

.about-grid__media {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4 / 5;
}

.about-grid__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-grid__badge {
    position: absolute;
    bottom: 1.25rem;
    left: 1.25rem;
    background: var(--accent);
    color: #0b0b0c;
    border-radius: var(--radius);
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    box-shadow: var(--shadow-md);
}

.about-grid__badge-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.6rem;
    line-height: 1;
}

.about-grid__badge-label {
    font-size: 0.78rem;
    line-height: 1.2;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.about-grid__body p {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.amenities {
    list-style: none;
    margin: 2rem 0 0;
    padding: 0;
    display: grid;
    gap: 1.1rem;
}

.amenities li {
    display: flex;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border-radius: var(--radius);
    background: var(--surface);
    border: 1px solid var(--border);
}

.amenities svg {
    flex-shrink: 0;
    color: var(--accent);
    margin-top: 2px;
}

.amenities strong {
    display: block;
    color: var(--text);
    font-weight: 600;
    margin-bottom: 0.15rem;
}

.amenities span {
    color: var(--text-muted);
    font-size: 0.92rem;
}

/* -------- Brands strip -------- */

.brands {
    background: var(--bg);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 2.5rem 0;
}

.brands__label {
    text-align: center;
    color: var(--text-dim);
    font-size: 0.78rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin: 0 0 1.5rem;
}

.brands__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: clamp(1.5rem, 5vw, 4rem);
}

.brands__list li {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    color: var(--text-muted);
    letter-spacing: 0.08em;
    transition: color 200ms ease;
    cursor: default;
}

.brands__list li:hover { color: var(--accent-bright); }

/* -------- Gallery -------- */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
    gap: 1rem;
}

.gallery-grid__item {
    margin: 0;
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    background: var(--surface);
}

.gallery-grid__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 600ms cubic-bezier(0.2, 0.8, 0.2, 1), filter 400ms ease;
    filter: saturate(0.95);
}

.gallery-grid__item:hover img {
    transform: scale(1.05);
    filter: saturate(1.1);
}

.gallery-grid__item--tall { grid-row: span 2; }
.gallery-grid__item--wide { grid-column: span 2; }

/* -------- Contact -------- */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: clamp(2rem, 5vw, 4.5rem);
    align-items: start;
    margin-bottom: 4.5rem;
}

.contact-grid__intro p {
    color: var(--text-muted);
    margin-bottom: 1.75rem;
    font-size: 1.05rem;
}

.contact-list {
    list-style: none;
    margin: 0 0 1.75rem;
    padding: 0;
    display: grid;
    gap: 1.1rem;
}

.contact-list li {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 1rem;
    padding: 1rem 0;
    border-top: 1px solid var(--border);
}

.contact-list li:last-child { border-bottom: 1px solid var(--border); }

.contact-list__label {
    font-size: 0.75rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 600;
    padding-top: 2px;
}

.contact-list a { color: var(--text); font-weight: 500; }
.contact-list a:hover { color: var(--accent-bright); }

.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

/* -------- Contact form -------- */

.contact-form {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: clamp(1.5rem, 3vw, 2.25rem);
    display: grid;
    gap: 1.1rem;
}

.contact-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.1rem;
}

.contact-form__field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.contact-form__field label {
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--text-muted);
}

.contact-form__field input,
.contact-form__field textarea {
    background: var(--bg);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius);
    color: var(--text);
    padding: 0.85rem 1rem;
    font-family: inherit;
    font-size: 0.98rem;
    transition: border-color 180ms ease, box-shadow 180ms ease;
    resize: vertical;
}

.contact-form__field input::placeholder,
.contact-form__field textarea::placeholder {
    color: var(--text-dim);
}

.contact-form__field input:focus,
.contact-form__field textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 4px var(--accent-soft);
}

.contact-form__submit {
    align-self: flex-start;
    margin-top: 0.5rem;
    padding-inline: 2.5rem;
}

.contact-form__thanks {
    margin: 0;
    padding: 0.85rem 1rem;
    background: var(--accent-soft);
    border: 1px solid rgba(212, 160, 23, 0.4);
    border-radius: var(--radius);
    color: var(--accent-bright);
    font-size: 0.95rem;
}

.contact-form__error {
    margin: 0;
    padding: 0.85rem 1rem;
    background: #fef2f2;
    border: 1px solid rgba(220, 38, 38, 0.35);
    border-radius: var(--radius);
    color: #b91c1c;
    font-size: 0.95rem;
}

.contact-form__error a {
    color: inherit;
    text-decoration: underline;
}

/* -------- Map -------- */

.map-wrap {
    height: clamp(320px, 45vw, 520px);
    background: var(--surface);
    overflow: hidden;
    position: relative;
    border-top: 1px solid var(--border);
}

.map-wrap iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(0.4) contrast(1.05);
    transition: filter 300ms ease;
}

.map-wrap:hover iframe {
    filter: grayscale(0) contrast(1);
}

/* -------- Footer -------- */

.site-footer {
    background: #08080a;
    color: var(--text-muted);
    padding-top: 4rem;
    border-top: 1px solid var(--border);
}

.site-footer__inner {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 2.5rem;
    padding-bottom: 3rem;
}

.site-footer__col {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.site-footer__col h4 {
    color: var(--text);
    margin-bottom: 0.6rem;
}

.site-footer__col a {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.site-footer__col a:hover { color: var(--accent-bright); }

.site-footer__col address {
    font-style: normal;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 0.6rem;
}

.site-footer__brand img {
    width: 64px;
    height: 64px;
    filter: invert(1) brightness(1.1);
}

.site-footer__tagline {
    margin: 1rem 0 1.25rem;
    color: var(--text-muted);
    max-width: 280px;
}

.site-footer__social {
    display: flex;
    gap: 0.65rem;
}

.site-footer__social a {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-strong);
    border-radius: 50%;
    color: var(--text-muted);
    transition: border-color 180ms ease, color 180ms ease, background 180ms ease;
}

.site-footer__social a:hover {
    border-color: var(--accent);
    color: var(--accent-bright);
    background: var(--accent-soft);
}

.site-footer__bar {
    border-top: 1px solid var(--border);
    padding: 1.25rem 0;
    background: #060607;
}

.site-footer__bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    font-size: 0.82rem;
    color: var(--text-dim);
}

.site-footer__credit { color: var(--text-dim); }

.site-footer__bar-meta {
    display: inline-flex;
    align-items: center;
    gap: 1.25rem;
}

.site-footer__staff {
    color: var(--text-dim);
    font-size: 0.82rem;
    border-bottom: 1px dotted transparent;
    padding-bottom: 1px;
    transition: color 180ms ease, border-color 180ms ease;
}

.site-footer__staff:hover {
    color: var(--accent-bright);
    border-bottom-color: var(--accent);
}

/* -------- Reservation -------- */

.section--reserve {
    background: var(--bg-alt);
}

.reserve-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
    gap: clamp(1.5rem, 3.5vw, 2.75rem);
    align-items: start;
}

.reserve-form__main {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.reserve-step {
    border: 1px solid var(--border);
    border-left: 3px solid var(--accent);
    background: var(--surface);
    border-radius: var(--radius);
    padding: 1.5rem 1.5rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 0;
    transition: border-color 220ms ease, box-shadow 220ms ease;
}

.reserve-step:focus-within {
    border-color: var(--border-strong);
    border-left-color: var(--accent-bright);
    box-shadow: var(--shadow-md);
}

.reserve-step legend {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--text);
    padding: 0;
    margin-bottom: 0.25rem;
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
}

.reserve-step__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.7rem;
    height: 1.7rem;
    border-radius: 999px;
    background: var(--accent);
    color: #0b0b0c;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    line-height: 1;
}

.reserve-form__hint {
    color: var(--text-dim);
    font-weight: 400;
    font-size: 0.85rem;
}

.reserve-form__error {
    color: #f87171;
    font-size: 0.92rem;
    margin: 0;
}

.reserve-form__loading {
    color: var(--text-muted);
    font-style: italic;
    text-align: center;
    padding: 2rem 0;
}

.reserve-form__submit {
    align-self: flex-start;
    padding: 1rem 2.5rem;
    font-size: 1rem;
}

.reserve-form__thanks {
    margin-top: 0.5rem;
}

/* Form inputs + selects inside reserve-step inherit the contact-form treatment */
.reserve-step input[type="text"],
.reserve-step input[type="email"],
.reserve-step input[type="tel"],
.reserve-step input[type="date"],
.reserve-step input[type="number"],
.reserve-step select,
.reserve-step textarea {
    background: var(--bg);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius);
    color: var(--text);
    padding: 0.85rem 1rem;
    font-family: inherit;
    font-size: 0.98rem;
    transition: border-color 180ms ease, box-shadow 180ms ease;
    width: 100%;
}

.reserve-step input::placeholder,
.reserve-step textarea::placeholder {
    color: var(--text-dim);
}

.reserve-step input:focus,
.reserve-step select:focus,
.reserve-step textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 4px var(--accent-soft);
}

.reserve-step .contact-form__field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.reserve-step .contact-form__field label {
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--text-muted);
}

.reserve-step .contact-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.1rem;
}

/* -------- Bike picker -------- */

.bike-picker__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1rem;
}

.bike-card {
    display: flex;
    flex-direction: column;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color 200ms ease, transform 200ms ease, box-shadow 200ms ease, background-color 200ms ease;
}

.bike-card:hover {
    border-color: var(--border-strong);
    transform: translateY(-2px);
}

.bike-card--selected {
    border-color: var(--accent);
    background: linear-gradient(160deg, var(--accent-soft), transparent 70%), var(--bg);
    box-shadow: var(--shadow-md);
}

.bike-card__media {
    aspect-ratio: 4 / 3;
    background: var(--surface-2);
    overflow: hidden;
}

.bike-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bike-card__body {
    padding: 1rem 1.1rem 1.1rem;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    flex: 1;
}

.bike-card__name {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    margin: 0;
    color: var(--text);
}

.bike-card__desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
    flex: 1;
}

.bike-card__price {
    font-size: 0.92rem;
    color: var(--text);
    margin: 0.25rem 0 0;
}

.bike-card__price strong {
    color: var(--accent-bright);
    font-weight: 700;
}

.bike-card__price-tag {
    display: block;
    color: var(--text-dim);
    font-size: 0.78rem;
    margin-top: 2px;
}

.bike-card__sizes {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    align-items: center;
    margin-top: 0.5rem;
}

.bike-card__sizes-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-muted);
    margin-right: 0.4rem;
}

.size-pill {
    background: transparent;
    border: 1px solid var(--border-strong);
    color: var(--text);
    border-radius: 999px;
    padding: 0.35rem 0.85rem;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 180ms ease;
}

.size-pill:hover {
    border-color: var(--accent);
    color: var(--accent-bright);
}

.size-pill--selected {
    background: var(--accent);
    border-color: var(--accent);
    color: #0b0b0c;
}

.bike-card__qty {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-top: 0.5rem;
}

.bike-card__qty-label,
.addon-row__qty-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-muted);
    margin-right: 0.2rem;
}

.qty-step {
    width: 2rem;
    height: 2rem;
    border: 1px solid var(--border-strong);
    background: transparent;
    color: var(--text);
    border-radius: 999px;
    cursor: pointer;
    font-size: 1rem;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: border-color 180ms ease, color 180ms ease;
}

.qty-step:hover {
    border-color: var(--accent);
    color: var(--accent-bright);
}

.qty-value {
    min-width: 1.5rem;
    text-align: center;
    font-weight: 600;
    color: var(--text);
}

.bike-card__cta {
    margin-top: 0.75rem;
    align-self: flex-start;
}

/* -------- Add-on picker -------- */

.addon-picker__list {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.addon-row {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 0.85rem 1rem;
    background: var(--bg);
    transition: border-color 180ms ease, background-color 180ms ease;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.addon-row--selected {
    border-color: var(--accent);
    background: linear-gradient(140deg, var(--accent-soft), transparent 80%), var(--bg);
}

.addon-row__label {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text);
}

.addon-row__label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent);
    cursor: pointer;
}

.addon-row__name {
    flex: 1;
}

.addon-row__price {
    font-weight: 600;
    color: var(--accent-bright);
    font-size: 0.9rem;
}

.addon-row__desc {
    margin: 0 0 0 1.7rem;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.addon-row__qty {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: 1.7rem;
}

/* -------- Summary -------- */

.reserve-summary {
    position: sticky;
    top: calc(var(--header-h) + 1rem);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.reserve-summary__inner {
    padding: 1.5rem 1.5rem 1.4rem;
}

.reserve-summary__heading {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    letter-spacing: 0.04em;
    margin: 0 0 1rem;
    color: var(--text);
}

.reserve-summary__list {
    margin: 0 0 1rem;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.reserve-summary__row {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    padding-bottom: 0.85rem;
    border-bottom: 1px solid var(--border);
}

.reserve-summary__row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.reserve-summary__row dt {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--accent);
    font-weight: 600;
    margin: 0;
}

.reserve-summary__row dd {
    margin: 0;
    color: var(--text);
    font-size: 0.95rem;
    line-height: 1.45;
}

.reserve-summary__placeholder {
    color: var(--text-dim);
    font-style: italic;
}

.reserve-summary__muted {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.reserve-summary__bikes,
.reserve-summary__addons {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.reserve-summary__bikes li {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    column-gap: 0.5rem;
    row-gap: 1px;
    align-items: baseline;
    font-size: 0.92rem;
    line-height: 1.35;
}

.reserve-summary__bikes .reserve-summary__line-name {
    grid-column: 1;
    grid-row: 1;
    font-weight: 600;
    color: var(--text);
}

.reserve-summary__bikes .reserve-summary__muted {
    grid-column: 1;
    grid-row: 2;
    font-size: 0.8rem;
}

.reserve-summary__bikes .reserve-summary__price {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: center;
}

.bike-picker__hint {
    margin: 1rem 0 0;
    color: var(--text-muted);
    font-size: 0.86rem;
    font-style: italic;
}

.bike-card__cta--remove {
    color: var(--text-muted);
}

.bike-card__cta--remove:hover {
    border-color: rgba(248, 113, 113, 0.55);
    color: #f87171;
}

.reserve-summary__addons li {
    display: flex;
    justify-content: space-between;
    gap: 0.5rem;
    font-size: 0.92rem;
}

.reserve-summary__price {
    color: var(--accent-bright);
    font-weight: 600;
    font-size: 0.88rem;
}

.reserve-summary__total-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding-top: 1rem;
    border-top: 2px solid var(--border-strong);
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

.reserve-summary__total {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.2rem;
    color: var(--accent-bright);
    letter-spacing: 0.02em;
    line-height: 1;
}

.reserve-summary__fineprint {
    margin: 0.85rem 0 0;
    color: var(--text-dim);
    font-size: 0.82rem;
    line-height: 1.5;
}

/* -------- Waiver / agreement -------- */

.reserve-step--waiver {
    border-left-color: #ef4444;
}

.waiver-box {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.waiver-box__header {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: baseline;
    justify-content: space-between;
    padding: 0.85rem 1rem;
    border-bottom: 1px solid var(--border);
    background: var(--surface-2);
}

.waiver-box__header strong {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: var(--text);
}

.waiver-box__bike {
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    color: var(--accent);
    font-weight: 600;
}

.waiver-box__scroll {
    max-height: 240px;
    overflow-y: auto;
    padding: 1rem 1.1rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.55;
}

.waiver-box__scroll p {
    margin: 0 0 0.7rem;
}

.waiver-box__scroll p:last-child {
    margin-bottom: 0;
}

.waiver-box__scroll strong {
    color: var(--text);
}

/* Custom scrollbar for the waiver — minimal, fits the dark theme */
.waiver-box__scroll::-webkit-scrollbar {
    width: 8px;
}

.waiver-box__scroll::-webkit-scrollbar-thumb {
    background: var(--border-strong);
    border-radius: 999px;
}

.waiver-box__scroll::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}

.checkbox-label,
.radio-label {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    cursor: pointer;
    color: var(--text);
    font-size: 0.92rem;
    line-height: 1.5;
    padding: 0.4rem 0;
}

.checkbox-label input[type="checkbox"],
.radio-label input[type="radio"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent);
    margin-top: 2px;
    cursor: pointer;
    flex-shrink: 0;
}

.checkbox-label--prominent {
    background: var(--accent-soft);
    border: 1px solid rgba(212, 160, 23, 0.32);
    border-radius: var(--radius);
    padding: 0.85rem 1rem;
    font-size: 0.95rem;
}

.checkbox-label--prominent strong {
    color: var(--accent-bright);
}

.reserve-helmet {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 0.85rem 1rem;
    background: var(--bg);
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.reserve-helmet__label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 0.4rem;
}

/* -------- Admin / Auth -------- */

.auth-shell {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem var(--gutter);
    background:
        radial-gradient(ellipse at top, rgba(212, 160, 23, 0.08), transparent 60%),
        var(--bg);
}

.auth-card {
    width: 100%;
    max-width: 380px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem 1.75rem 1.75rem;
    box-shadow: var(--shadow-lg);
}

.auth-card__brand {
    text-align: center;
    margin-bottom: 1.75rem;
}

.auth-card__logo {
    filter: invert(1) brightness(1.1);
    margin-bottom: 0.6rem;
}

.auth-card__title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    letter-spacing: 0.04em;
    margin: 0;
    color: var(--text);
}

.auth-card__subtitle {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin: 0.25rem 0 0;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.auth-form__field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.auth-form__label {
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--text-muted);
}

.auth-form__input {
    background: var(--bg);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius);
    color: var(--text);
    padding: 0.85rem 1rem;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 180ms ease, box-shadow 180ms ease;
}

.auth-form__input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 4px var(--accent-soft);
}

.auth-form__error {
    color: #f87171;
    font-size: 0.9rem;
    margin: 0;
    padding: 0.6rem 0.8rem;
    background: rgba(248, 113, 113, 0.08);
    border: 1px solid rgba(248, 113, 113, 0.25);
    border-radius: var(--radius);
}

.auth-form__submit {
    width: 100%;
    margin-top: 0.5rem;
}

/* ---- Admin shell + header ---- */

.admin-header {
    background: var(--bg-alt);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 40;
}

.admin-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
}

.admin-header__brand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--text);
}

.admin-header__brand img {
    filter: invert(1) brightness(1.1);
}

.admin-header__brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.admin-header__brand-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.15rem;
    letter-spacing: 0.06em;
}

.admin-header__brand-sub {
    font-size: 0.6rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--accent);
    margin-top: 2px;
}

.admin-header__nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.admin-header__nav a {
    color: var(--text-muted);
    font-size: 0.92rem;
    font-weight: 500;
}

.admin-header__nav a:hover {
    color: var(--text);
}

.admin-header__logout {
    margin: 0;
}

.admin-header__logout-btn {
    background: transparent;
    border: 1px solid var(--border-strong);
    color: var(--text-muted);
    border-radius: 999px;
    padding: 0.4rem 0.95rem;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 180ms ease;
}

.admin-header__logout-btn:hover {
    border-color: var(--accent);
    color: var(--accent-bright);
}

.admin-shell {
    background: var(--bg);
    min-height: calc(100vh - 60px);
    padding: 2rem 0 4rem;
}

/* ---- Admin content ---- */

.admin-content__header {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 1.5rem;
}

.admin-content__back {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
}

.admin-content__back:hover {
    color: var(--accent-bright);
}

.admin-content__title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 0.04em;
    margin: 0;
    color: var(--text);
}

.admin-content__count {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

.admin-content__cap {
    color: var(--text-dim);
    font-size: 0.82rem;
}

/* ---- Filter bar ---- */

.admin-filters {
    display: grid;
    grid-template-columns: 160px 140px 140px 1fr auto;
    gap: 0.75rem;
    align-items: end;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1rem;
    margin-bottom: 1.25rem;
}

.admin-filters__field {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.admin-filters__field--grow {
    min-width: 0;
}

.admin-filters__field label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-muted);
    font-weight: 600;
}

.admin-filters__field input,
.admin-filters__field select {
    background: var(--bg);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-sm);
    color: var(--text);
    padding: 0.55rem 0.7rem;
    font-family: inherit;
    font-size: 0.92rem;
}

.admin-filters__field input:focus,
.admin-filters__field select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-soft);
}

.admin-filters__actions {
    display: flex;
    gap: 0.5rem;
}

/* ---- Table ---- */

.admin-table-wrap {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.92rem;
}

.admin-table thead th {
    text-align: left;
    padding: 0.85rem 1rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border);
    background: var(--surface-2);
}

.admin-table tbody td {
    padding: 0.85rem 1rem;
    border-bottom: 1px solid var(--border);
    color: var(--text);
    vertical-align: top;
}

.admin-table__row {
    cursor: pointer;
    transition: background-color 140ms ease;
}

.admin-table__row:hover {
    background: var(--surface-2);
}

.admin-table__row:focus {
    outline: 2px solid var(--accent);
    outline-offset: -2px;
}

.admin-table__id {
    color: var(--accent-bright);
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}

.admin-table__customer,
.admin-table__pickup {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.admin-table__customer span,
.admin-table__pickup span {
    color: var(--text-muted);
    font-size: 0.82rem;
}

.admin-table__muted {
    color: var(--text-muted);
}

.admin-table__num {
    text-align: right;
    font-variant-numeric: tabular-nums;
}

/* ---- Status badge ---- */

.admin-badge {
    display: inline-block;
    padding: 0.25rem 0.7rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: 1px solid transparent;
    background: var(--surface-2);
    color: var(--text-muted);
}

.admin-badge--pending {
    background: rgba(212, 160, 23, 0.14);
    border-color: rgba(212, 160, 23, 0.42);
    color: var(--accent-bright);
}

.admin-badge--confirmed {
    background: rgba(34, 197, 94, 0.12);
    border-color: rgba(34, 197, 94, 0.4);
    color: #4ade80;
}

.admin-badge--cancelled {
    background: rgba(248, 113, 113, 0.10);
    border-color: rgba(248, 113, 113, 0.32);
    color: #f87171;
}

.admin-badge--completed {
    background: rgba(96, 165, 250, 0.10);
    border-color: rgba(96, 165, 250, 0.32);
    color: #93c5fd;
}

/* ---- Empty state ---- */

.admin-empty {
    background: var(--surface);
    border: 1px dashed var(--border-strong);
    border-radius: var(--radius);
    padding: 2.5rem 1.5rem;
    text-align: center;
    color: var(--text-muted);
}

.admin-empty p {
    margin: 0 0 0.5rem;
}

/* ---- Detail page ---- */

.admin-detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
    gap: 1.5rem;
    align-items: start;
}

.admin-detail-grid__main {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.admin-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem 1.4rem;
}

.admin-card__title {
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin: 0 0 0.85rem;
}

.admin-card__list {
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.85rem 1.25rem;
}

.admin-card__list > div {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.admin-card__list dt {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--accent);
    font-weight: 600;
}

.admin-card__list dd {
    margin: 0;
    color: var(--text);
    font-size: 0.95rem;
}

.admin-card__list a {
    color: var(--text);
}

.admin-card__list a:hover {
    color: var(--accent-bright);
}

.admin-card__table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.admin-card__table th,
.admin-card__table td {
    text-align: left;
    padding: 0.5rem 0.6rem;
    border-bottom: 1px solid var(--border);
}

.admin-card__table th {
    color: var(--text-muted);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 600;
}

.admin-card__notes {
    width: 100%;
    background: var(--bg);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius);
    color: var(--text);
    padding: 0.8rem 1rem;
    font-family: inherit;
    font-size: 0.92rem;
    resize: vertical;
}

.admin-card__notes:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-soft);
}

.admin-card__notes-actions {
    margin-top: 0.6rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.admin-card__notes-status {
    font-size: 0.85rem;
    color: #4ade80;
}

.admin-card--audit {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    color: var(--text-muted);
    font-size: 0.82rem;
    background: transparent;
    border: none;
    padding: 0.5rem 0.25rem 0;
}

.admin-card--audit strong {
    color: var(--text);
}

/* ---- Action panel ---- */

.admin-action-panel {
    position: sticky;
    top: 80px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.admin-action-panel__status {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 0.5rem;
}

.admin-action-panel__label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--text-muted);
    font-weight: 600;
}

.admin-action-panel__btn {
    width: 100%;
    justify-content: center;
}

.admin-action-panel__terminal {
    color: var(--text-muted);
    font-size: 0.92rem;
    margin: 0;
    line-height: 1.5;
}

.admin-action-panel__error {
    color: #f87171;
    font-size: 0.9rem;
    margin: 0;
}

/* ---- Inline quick actions on list rows ---- */

.admin-quick {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    align-items: center;
}

.admin-quick__btn {
    border: 1px solid var(--border-strong);
    background: transparent;
    color: var(--text);
    border-radius: 999px;
    padding: 0.32rem 0.75rem;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: all 160ms ease;
    white-space: nowrap;
}

.admin-quick__btn:hover:not(:disabled) {
    transform: translateY(-1px);
}

.admin-quick__btn:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

.admin-quick__btn--confirm {
    background: var(--accent);
    border-color: var(--accent);
    color: #0b0b0c;
}

.admin-quick__btn--confirm:hover:not(:disabled) {
    background: var(--accent-bright);
    border-color: var(--accent-bright);
    box-shadow: 0 6px 16px -8px rgba(240, 192, 65, 0.55);
}

.admin-quick__btn--complete {
    background: rgba(34, 197, 94, 0.18);
    border-color: rgba(34, 197, 94, 0.5);
    color: #4ade80;
}

.admin-quick__btn--complete:hover:not(:disabled) {
    background: rgba(34, 197, 94, 0.3);
    border-color: rgba(34, 197, 94, 0.7);
}

.admin-quick__btn--cancel {
    color: var(--text-muted);
}

.admin-quick__btn--cancel:hover:not(:disabled) {
    border-color: rgba(248, 113, 113, 0.6);
    color: #f87171;
}

.admin-quick__terminal {
    color: var(--text-dim);
    font-size: 0.85rem;
}

.admin-quick__error {
    color: #f87171;
    font-size: 0.78rem;
    flex-basis: 100%;
}

.admin-flash {
    margin-top: 1rem;
    padding: 0.7rem 1rem;
    background: var(--accent-soft);
    border: 1px solid rgba(212, 160, 23, 0.4);
    border-radius: var(--radius);
    color: var(--accent-bright);
    font-size: 0.92rem;
}

/* ---- Late / no-show row tinting on the admin reservations list ---- */
.admin-table__row--late-30 {
    background: rgba(245, 158, 11, 0.10);
    box-shadow: inset 4px 0 0 #f59e0b;
}

.admin-table__row--late-30:hover {
    background: rgba(245, 158, 11, 0.16);
}

.admin-table__row--late-60 {
    background: rgba(220, 38, 38, 0.12);
    box-shadow: inset 4px 0 0 #dc2626;
}

.admin-table__row--late-60:hover {
    background: rgba(220, 38, 38, 0.18);
}

.admin-table__late {
    display: inline-block;
    margin-left: 0.5rem;
    padding: 0.05rem 0.5rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: 1px solid;
}

.admin-table__late--late30 {
    background: rgba(245, 158, 11, 0.18);
    color: #fbbf24;
    border-color: rgba(245, 158, 11, 0.45);
}

.admin-table__late--late60 {
    background: rgba(220, 38, 38, 0.18);
    color: #fca5a5;
    border-color: rgba(220, 38, 38, 0.45);
}

/* ---- Admin Fleet (manage rental inventory) ---- */
.admin-content__header--row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.admin-fleet-toolbar {
    margin: 0 0 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.admin-fleet-toolbar__toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    cursor: pointer;
}

.admin-fleet-toolbar__toggle input[type="checkbox"] {
    accent-color: var(--accent);
}

.admin-fleet-table__thumb {
    width: 56px;
    height: 38px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    background: var(--surface-2);
}

.admin-fleet-table__thumb--empty {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dim);
    font-size: 0.8rem;
}

.admin-fleet-table__row--inactive {
    opacity: 0.55;
}

.admin-fleet-active-pill {
    display: inline-block;
    padding: 0.18rem 0.65rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: 1px solid var(--border);
}

.admin-fleet-active-pill--on {
    background: rgba(34, 197, 94, 0.15);
    color: #4ade80;
    border-color: rgba(34, 197, 94, 0.3);
}

.admin-fleet-active-pill--off {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-dim);
    border-color: var(--border);
}

/* ---- Fleet form (create / edit) ---- */
.admin-fleet-form {
    display: grid;
    gap: 1.4rem;
}

.admin-fleet-form__row {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.admin-fleet-form__row label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--text-dim);
    font-weight: 600;
}

.admin-fleet-form__req {
    color: var(--accent);
    margin-left: 0.15rem;
}

.admin-fleet-form__hint {
    color: var(--text-dim);
    font-size: 0.8rem;
}

.admin-fleet-form__hint code {
    font-size: 0.78rem;
    padding: 0.05rem 0.3rem;
    background: var(--surface-2);
    border-radius: var(--radius-sm);
    color: var(--text-muted);
}

.admin-fleet-form__input,
.admin-fleet-form textarea.admin-fleet-form__input {
    width: 100%;
    padding: 0.6rem 0.8rem;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text);
    font-family: inherit;
    font-size: 0.95rem;
    transition: border-color 160ms ease, box-shadow 160ms ease;
}

.admin-fleet-form__input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-soft);
}

.admin-fleet-form__row--inline {
    display: grid;
    grid-template-columns: 1.5fr 1.5fr 110px;
    gap: 0.8rem;
}

.admin-fleet-form__row--inline > div {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.admin-fleet-form__row--two {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1.2rem;
}

.admin-fleet-form__row--two > div {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.admin-fleet-form__slug {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.5rem;
    align-items: center;
}

.admin-fleet-form__image-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.8rem;
    align-items: center;
}

.admin-fleet-image-preview {
    width: 96px;
    height: 64px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    background: var(--surface-2);
}

.admin-fleet-image-preview--empty {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dim);
    font-size: 0.85rem;
}

.admin-fleet-form__prices {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8rem;
}

.admin-fleet-form__prices > div {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.admin-fleet-form__price-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-dim);
    font-weight: 600;
}

.admin-fleet-price-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    padding: 0.7rem 0.95rem;
    margin-top: 0.5rem;
    background: var(--accent-soft);
    border: 1px solid rgba(212, 160, 23, 0.3);
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    color: var(--accent-bright);
}

.admin-fleet-price-preview strong {
    color: var(--text-muted);
    font-weight: 700;
    margin-right: 0.35rem;
    letter-spacing: 0.04em;
}

.admin-fleet-sizes {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.admin-fleet-sizes__chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.85rem;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: var(--bg-alt);
    color: var(--text-muted);
    cursor: pointer;
    font-size: 0.85rem;
    transition: border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.admin-fleet-sizes__chip:hover {
    border-color: var(--border-strong);
    color: var(--text);
}

.admin-fleet-sizes__chip input[type="checkbox"] {
    accent-color: var(--accent);
}

.admin-fleet-sizes__chip--on {
    background: var(--accent-soft);
    border-color: rgba(212, 160, 23, 0.5);
    color: var(--accent-bright);
}

.admin-fleet-form__toggle {
    display: inline-flex !important;
    align-items: center;
    gap: 0.6rem;
    text-transform: none !important;
    letter-spacing: normal !important;
    font-size: 0.95rem !important;
    color: var(--text) !important;
    font-weight: 500 !important;
    cursor: pointer;
}

.admin-fleet-form__toggle input[type="checkbox"] {
    accent-color: var(--accent);
    width: 1.05rem;
    height: 1.05rem;
}

.admin-fleet-form__actions {
    display: flex;
    gap: 0.8rem;
    margin-top: 0.5rem;
}

.admin-flash--error {
    background: rgba(220, 38, 38, 0.12);
    border-color: rgba(220, 38, 38, 0.4);
    color: #fca5a5;
}

@media (max-width: 960px) {
    .admin-detail-grid {
        grid-template-columns: 1fr;
    }

    .admin-action-panel {
        position: static;
    }

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

    .admin-filters__actions {
        grid-column: 1 / -1;
        justify-content: flex-end;
    }
}

@media (max-width: 720px) {
    .admin-fleet-form__row--inline,
    .admin-fleet-form__row--two,
    .admin-fleet-form__prices {
        grid-template-columns: 1fr;
    }

    .admin-fleet-form__image-row,
    .admin-fleet-form__slug {
        grid-template-columns: 1fr;
    }
}

/* -------- Reservation responsive -------- */

@media (max-width: 960px) {
    .reserve-grid {
        grid-template-columns: 1fr;
    }

    .reserve-summary {
        position: static;
        order: -1;  /* Show the summary at the top on mobile */
    }
}

@media (max-width: 720px) {
    .reserve-step .contact-form__row {
        grid-template-columns: 1fr;
    }

    .reserve-step {
        padding: 1.25rem 1.1rem 1rem;
    }
}

/* -------- Entrance animations -------- */

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

/* Hero — animates immediately on page load (no observer needed) */
.hero__inner > .eyebrow,
.hero__inner > .hero__title,
.hero__inner > .hero__lead,
.hero__inner > .hero__cta,
.hero__inner > .hero__meta,
.hero__scroll {
    opacity: 0;
    animation: fadeUp 900ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    will-change: opacity, transform;
}

.hero__inner > .eyebrow      { animation-delay: 200ms; }
.hero__inner > .hero__title  { animation-delay: 350ms; }
.hero__inner > .hero__lead   { animation-delay: 600ms; }
.hero__inner > .hero__cta    { animation-delay: 800ms; }
.hero__inner > .hero__meta   { animation-delay: 950ms; }
.hero__scroll                { animation-delay: 1400ms; }

/* Below-the-fold — JS adds .is-visible when element scrolls into view */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 800ms cubic-bezier(0.2, 0.8, 0.2, 1),
                transform 800ms cubic-bezier(0.2, 0.8, 0.2, 1);
    will-change: opacity, transform;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .hero__inner > .eyebrow,
    .hero__inner > .hero__title,
    .hero__inner > .hero__lead,
    .hero__inner > .hero__cta,
    .hero__inner > .hero__meta,
    .hero__scroll,
    .reveal {
        animation: none !important;
        transition: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}

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

@media (max-width: 1024px) {
    .service-grid {
        grid-template-columns: 1fr;
        max-width: 540px;
        margin-inline: auto;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-grid__media {
        aspect-ratio: 16 / 11;
        max-height: 480px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 200px;
    }

    .gallery-grid__item--wide { grid-column: span 2; }

    .site-footer__inner {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 720px) {
    .nav-toggle-label {
        display: flex;
    }

    .site-nav {
        position: fixed;
        top: var(--header-h);
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: rgba(12, 12, 13, 0.98);
        backdrop-filter: saturate(160%) blur(14px);
        -webkit-backdrop-filter: saturate(160%) blur(14px);
        border-bottom: 1px solid var(--border);
        padding: 1rem var(--gutter) 1.5rem;
        max-height: calc(100vh - var(--header-h));
        overflow-y: auto;
        transform: translateY(-110%);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: transform 280ms ease, opacity 200ms ease, visibility 0s linear 280ms;
    }

    .nav-toggle:checked ~ .site-nav {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transition: transform 280ms ease, opacity 200ms ease, visibility 0s;
    }

    .nav-toggle:checked ~ .nav-toggle-label span:nth-child(1) {
        transform: translateY(11px) rotate(45deg);
    }

    .nav-toggle:checked ~ .nav-toggle-label span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle:checked ~ .nav-toggle-label span:nth-child(3) {
        transform: translateY(-11px) rotate(-45deg);
    }

    .site-nav a:not(.site-nav__cta) {
        padding: 0.85rem 0;
        border-bottom: 1px solid var(--border);
        font-size: 1.05rem;
        color: var(--text);
    }

    .site-nav a::after { display: none; }

    .site-nav__cta {
        margin-top: 0.75rem;
        padding: 0.85rem 1.5rem;
        justify-content: center;
        border: 1.5px solid var(--accent);
        color: var(--accent-bright) !important;
    }

    .hero {
        min-height: 90vh;
    }

    .hero__cta { gap: 0.65rem; }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 180px;
    }

    .gallery-grid__item--wide { grid-column: span 2; }
    .gallery-grid__item--tall { grid-row: span 1; }

    .contact-form__row {
        grid-template-columns: 1fr;
    }

    .contact-list li {
        grid-template-columns: 1fr;
        gap: 0.25rem;
    }

    .site-footer__inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .site-header__brand-text { display: none; }
    h1 { font-size: clamp(2.4rem, 9vw, 3.5rem); }
}

/* -------- Blazor error styles -------- */

.valid.modified:not([type=checkbox]) { outline: 1px solid #26b050; }
.invalid { outline: 1px solid #e50000; }
.validation-message { color: #e50000; }

.blazor-error-boundary {
    background: #b32121;
    padding: 1rem 1rem 1rem 1rem;
    color: white;
}

.blazor-error-boundary::after {
    content: "An error has occurred."
}

/* Global (NOT layout-scoped) — every layout's #blazor-error-ui must
   stay hidden by default. Blazor's JS sets display:block when a real
   circuit error fires. */
#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;
    color: #18181b;
}

#blazor-error-ui .dismiss {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}

#blazor-error-ui .reload {
    color: #18181b;
    text-decoration: underline;
    margin-left: 0.5rem;
}

/* -------- Blazor reconnect modal (custom, dark/gold) --------
   Replaces the default white reconnect popup with a brand-matched UI.
   Inline JS in App.razor delays display by 1.2s so brief disconnects
   during navigation never surface. */

#components-reconnect-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(800px 500px at 25% 30%, rgba(212, 160, 23, 0.10), transparent 60%),
        radial-gradient(800px 500px at 75% 60%, rgba(255, 255, 255, 0.02), transparent 60%),
        var(--bg);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    box-sizing: border-box;
    color: var(--text);
}

#components-reconnect-modal.components-reconnect-show,
#components-reconnect-modal.components-reconnect-failed,
#components-reconnect-modal.components-reconnect-rejected {
    display: flex;
}

#components-reconnect-modal.components-reconnect-hide {
    display: none !important;
}

#components-reconnect-modal .show,
#components-reconnect-modal .failed,
#components-reconnect-modal .rejected {
    display: none;
}

/* !important overrides the inline style="display:none" on child divs. */
#components-reconnect-modal.components-reconnect-show > .show {
    display: flex !important;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    overflow-y: auto;
}

#components-reconnect-modal.components-reconnect-failed > .failed,
#components-reconnect-modal.components-reconnect-rejected > .rejected {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.reconnect-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.55;
    z-index: 0;
}

.reconnect-screen {
    position: relative;
    z-index: 1;
    background: transparent;
    padding: 2rem 1.5rem;
    color: var(--text);
    width: 100%;
    max-width: 580px;
}

@media (min-width: 640px) {
    .reconnect-screen {
        padding: 2.5rem;
    }
}

.reconnect-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.75rem;
}

.reconnect-brand {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.reconnect-brand-logo {
    width: 44px;
    height: 44px;
    filter: invert(1) brightness(1.1);
}

.reconnect-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.reconnect-brand-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.55rem;
    letter-spacing: 0.06em;
    color: var(--text);
}

.reconnect-brand-subtitle {
    font-size: 0.7rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--accent);
    margin-top: 2px;
}

.reconnect-status-badge {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.7rem;
    border-radius: 9999px;
    border: 1px solid var(--border);
    background: var(--surface);
    font-size: 0.72rem;
    font-weight: 500;
    color: #4ade80;
}

.reconnect-status-badge.reconnect-offline {
    color: #f87171;
}

.reconnect-status-icon::before {
    content: "\25CF";
    font-size: 0.5rem;
}

.reconnect-radar {
    position: relative;
    height: 10rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.reconnect-radar-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(212, 160, 23, 0.12);
}

.reconnect-radar-ring-1 { width: 8rem; height: 8rem; margin: -4rem 0 0 -4rem; border-color: rgba(212, 160, 23, 0.12); }
.reconnect-radar-ring-2 { width: 6rem; height: 6rem; margin: -3rem 0 0 -3rem; border-color: rgba(212, 160, 23, 0.18); }
.reconnect-radar-ring-3 { width: 4rem; height: 4rem; margin: -2rem 0 0 -2rem; border-color: rgba(212, 160, 23, 0.24); }

.reconnect-radar-pulse {
    position: absolute;
    width: 5rem;
    height: 5rem;
    margin: -2.5rem 0 0 -2.5rem;
    border-radius: 50%;
    border: 2px solid rgba(212, 160, 23, 0.35);
    animation: reconnect-pulse-ring 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.reconnect-radar-pulse-2 { animation-delay: 0.7s; border-color: rgba(212, 160, 23, 0.22); }
.reconnect-radar-pulse-3 { animation-delay: 1.4s; border-color: rgba(212, 160, 23, 0.12); }

@keyframes reconnect-pulse-ring {
    0% { transform: scale(0.8); opacity: 1; }
    100% { transform: scale(2.2); opacity: 0; }
}

.reconnect-radar-sweep {
    position: absolute;
    width: 8rem;
    height: 8rem;
    margin: -4rem 0 0 -4rem;
    animation: reconnect-radar-sweep 3s linear infinite;
}

.reconnect-radar-sweep-inner {
    position: absolute;
    left: 0;
    top: 0;
    width: 4rem;
    height: 4rem;
    border-top-left-radius: 9999px;
    background: conic-gradient(from 0deg, transparent, rgba(212, 160, 23, 0.18));
}

@keyframes reconnect-radar-sweep {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.reconnect-radar-center {
    position: relative;
    z-index: 2;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(212, 160, 23, 0.22);
}

.reconnect-radar-dot {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 12px rgba(212, 160, 23, 0.6);
    animation: reconnect-status-dot 1.5s ease-in-out infinite;
}

@keyframes reconnect-status-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.35; }
}

.reconnect-phase {
    text-align: center;
    margin-bottom: 1.25rem;
}

.reconnect-phase-label {
    margin: 0 0 0.35rem 0;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.85rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    color: var(--text);
}

.reconnect-phase-desc {
    margin: 0;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.reconnect-progress-wrap {
    margin-bottom: 1.25rem;
}

.reconnect-progress-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.reconnect-progress-title {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.reconnect-progress-pct {
    font-size: 0.75rem;
    font-family: ui-monospace, 'SF Mono', Menlo, monospace;
    color: var(--accent);
}

.reconnect-progress-bar {
    height: 6px;
    width: 100%;
    overflow: hidden;
    border-radius: 9999px;
    background: var(--border);
}

.reconnect-progress-fill {
    height: 100%;
    border-radius: 9999px;
    background: linear-gradient(90deg, var(--accent), var(--accent-bright));
    transition: width 1s ease-out;
}

.reconnect-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 480px) {
    .reconnect-cards {
        grid-template-columns: repeat(4, 1fr);
    }
}

.reconnect-card {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.7rem 0.85rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    background: var(--surface);
}

.reconnect-card-icon {
    width: 1.85rem;
    height: 1.85rem;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    background: var(--accent-soft);
    font-size: 0.8rem;
    color: var(--accent);
}

.reconnect-card-content {
    min-width: 0;
}

.reconnect-card-label {
    margin: 0;
    font-size: 0.7rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.reconnect-card-value {
    margin: 0;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text);
}

.reconnect-timeline {
    margin-bottom: 1rem;
}

.reconnect-timeline-title {
    margin: 0 0 0.5rem 0;
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
}

.reconnect-timeline-steps {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.reconnect-timeline-step {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.55rem 0.8rem;
    border-radius: var(--radius-sm);
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.reconnect-timeline-step.reconnect-step-active {
    border-color: rgba(212, 160, 23, 0.32);
    background: rgba(212, 160, 23, 0.06);
}

.reconnect-timeline-step.reconnect-step-complete {
    opacity: 0.55;
}

.reconnect-timeline-step.reconnect-step-pending {
    opacity: 0.32;
}

.reconnect-timeline-step-icon {
    width: 1.75rem;
    height: 1.75rem;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--border);
    font-size: 0;
    color: transparent;
}

.reconnect-timeline-step-icon.reconnect-step-done {
    background: rgba(74, 222, 128, 0.18);
    color: #4ade80;
    font-size: 0.75rem;
}

.reconnect-timeline-step-icon.reconnect-step-current {
    background: rgba(212, 160, 23, 0.22);
    animation: reconnect-status-dot 1.5s ease-in-out infinite;
}

.reconnect-timeline-step-content {
    min-width: 0;
}

.reconnect-timeline-step-label {
    margin: 0;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text);
}

.reconnect-timeline-step-desc {
    margin: 0.25rem 0 0 0;
    font-size: 0.75rem;
    color: var(--text-muted);
    display: none;
}

.reconnect-timeline-step.reconnect-step-active .reconnect-timeline-step-desc {
    display: block;
}

.reconnect-footer {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.reconnect-footer-hint {
    margin: 0;
    font-size: 0.75rem;
    text-align: center;
    color: var(--text-dim);
}

/* Failed / Rejected fallback panel */
.reconnect-fallback {
    background: var(--surface);
    padding: 2rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    text-align: center;
    max-width: 420px;
}

.reconnect-fallback-message {
    margin: 0 0 1.25rem 0;
    font-size: 1rem;
    color: var(--text);
}

.reconnect-fallback-btn {
    padding: 0.65rem 1.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #0c0c0d;
    background: var(--accent);
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: background 160ms ease, transform 160ms ease;
}

.reconnect-fallback-btn:hover {
    background: var(--accent-bright);
    transform: translateY(-1px);
}

/* ---- Admin dashboard ---- */

.admin-dashboard__cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-top: 3px solid var(--accent);
    border-radius: var(--radius);
    padding: 1.25rem 1.4rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.stat-card__label {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.stat-card__value {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.8rem;
    line-height: 1;
    letter-spacing: 0.02em;
    color: var(--text);
}

.stat-card__sub {
    font-size: 0.85rem;
    color: var(--text-dim);
}

.admin-dashboard__note {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem 1.4rem;
    color: var(--text-muted);
    max-width: 640px;
}

.admin-dashboard__note h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 0.04em;
    margin: 0 0 0.4rem;
    color: var(--text);
}

.admin-dashboard__note p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}
