:root {
    --ink: #050505;
    --muted: #4b5d5f;
    --sky: #dff6f3;
    --mint: #8fd1c1;
    --leaf: #7bd900;
    --orange: #f25b1a;
    --gold: #ffc541;
    --cream: #fff8e7;
    --line: rgba(5, 5, 5, 0.14);
    --shadow: 0 18px 55px rgba(20, 55, 54, 0.16);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: #f7fffd;
    font-family: "Roboto", Arial, Helvetica, sans-serif;
    line-height: 1.5;
}

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

a {
    color: inherit;
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 20;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 24px;
    align-items: center;
    padding: 14px clamp(18px, 4vw, 56px);
    background: rgba(247, 255, 253, 0.92);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(14px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    text-transform: uppercase;
    line-height: 0.95;
    font-weight: 500;
    letter-spacing: 0;
}

.brand img {
    width: auto;
    height: 62px;
    max-width: 168px;
    object-fit: contain;
}

.brand-text,
.brand-text span,
.brand-text strong {
    display: block;
}

.brand-text {
    color: #fff;
    white-space: nowrap;
}

.brand-text strong {
    color: var(--gold);
}

.nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-weight: 700;
}

.nav a,
.phone-pill,
.header-cta,
.button {
    text-decoration: none;
}

.phone-pill {
    padding: 10px 16px;
    border: 2px solid var(--ink);
    border-radius: 999px;
    font-weight: 500;
    white-space: nowrap;
}

.header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 16px;
    border-radius: 6px;
    background: var(--gold);
    color: var(--ink);
    font-weight: 500;
    white-space: nowrap;
}

.lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    justify-self: end;
    padding: 4px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
}

.lang-switch a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    min-height: 30px;
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.78rem;
    font-weight: 500;
    text-decoration: none;
}

.lang-switch a.active {
    background: var(--gold);
    color: var(--ink);
}

.hero {
    min-height: min(760px, calc(100vh - 74px));
    display: grid;
    grid-template-columns: minmax(300px, 0.78fr) minmax(420px, 1.22fr);
    align-items: stretch;
    gap: 20px;
    padding: clamp(28px, 5vw, 72px) clamp(18px, 5vw, 72px) 0;
    overflow: hidden;
    background: linear-gradient(180deg, var(--sky), #eafffb 72%, #f7fffd);
}

.hero-copy {
    align-self: center;
    max-width: 660px;
    padding-bottom: 56px;
}

.eyebrow {
    margin: 0 0 10px;
    color: var(--orange);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    margin-bottom: 18px;
    font-size: clamp(2.6rem, 7vw, 6.8rem);
    line-height: 0.94;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: uppercase;
}

.reservation-panel h1,
.admin-page h1 {
    font-size: clamp(2rem, 4vw, 3.8rem);
}

h2 {
    margin-bottom: 16px;
    font-size: clamp(1.8rem, 3.8vw, 3.6rem);
    line-height: 1;
    font-weight: 500;
    letter-spacing: 0;
}

h3 {
    font-size: 1.45rem;
    line-height: 1.1;
}

.hero-copy > p:not(.eyebrow) {
    max-width: 560px;
    color: var(--muted);
    font-size: 1.1rem;
    font-weight: 700;
}

.hero-actions,
.form-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 18px;
    border: 2px solid var(--ink);
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
}

.button.primary {
    background: var(--orange);
    color: #fff;
    box-shadow: 5px 5px 0 var(--ink);
}

.button.secondary {
    background: #fff;
}

.button.full {
    width: 100%;
}

.button:disabled {
    cursor: not-allowed;
    filter: grayscale(1);
    opacity: 0.55;
}

.hero-art {
    align-self: end;
    margin-right: -12vw;
}

.hero-art img {
    width: 100%;
    min-height: 430px;
    object-fit: cover;
    object-position: 58% bottom;
}

.notice-strip {
    padding: 28px clamp(18px, 5vw, 72px);
}

.notice-strip img {
    width: 100%;
    border-radius: 28px;
    
}

.toast,
.setup-alert {
    width: min(1120px, calc(100% - 36px));
    margin: 0 auto 18px;
    padding: 16px 18px;
    border: 2px solid var(--ink);
    border-radius: 8px;
    font-weight: 500;
}

.toast.success {
    background: #dcffd0;
}

.toast.error,
.setup-alert {
    background: #fff1d3;
}

.content-grid,
.prices,
.location,
.admin-page {
    width: min(1120px, calc(100% - 36px));
    margin: 0 auto;
    padding: 54px 0;
}

.content-grid {
    display: grid;
    grid-template-columns: minmax(300px, 0.95fr) minmax(300px, 1.05fr);
    gap: 28px;
    align-items: start;
}

.reservation-panel,
.info-panel,
.price-card {
    border: 2px solid var(--ink);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow);
}

.reservation-panel {
    display: grid;
    gap: 16px;
    padding: clamp(18px, 3vw, 32px);
}

.section-heading.compact h2 {
    font-size: clamp(1.7rem, 3vw, 2.4rem);
}

label {
    display: grid;
    gap: 7px;
    flex: 1 1 190px;
    font-weight: 500;
}

.bike-type-list {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    border: 0;
}

.bike-type-list legend {
    margin-bottom: 7px;
    font-weight: 900;
}

.bike-type-list > p {
    margin: -4px 0 2px;
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 700;
}

.bike-type-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 92px;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border: 1px solid #d9e3dd;
    border-radius: 6px;
    background: #f8fbf6;
}

.bike-type-row span,
.bike-type-row small {
    display: block;
}

.bike-type-row small {
    color: var(--muted);
}

.bike-type-row .bike-available-line {
    display: inline-flex !important;
    align-items: baseline;
    gap: 4px;
}

.bike-type-row .bike-available {
    display: inline !important;
}

.bike-type-row input {
    min-height: 40px;
    text-align: center;
}

.bot-field {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

input,
select,
textarea,
.price-estimate {
    width: 100%;
    min-height: 46px;
    padding: 11px 12px;
    border: 2px solid var(--ink);
    border-radius: 8px;
    background: #fbfffe;
    color: var(--ink);
    font: inherit;
}

.price-estimate {
    display: flex;
    align-items: center;
    font-weight: 900;
    color: var(--orange);
}

.price-hint {
    margin: -4px 0 0;
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 700;
}

.form-notice {
    padding: 12px 14px;
    border-radius: 6px;
    background: #fff1d3;
    color: var(--ink);
    font-weight: 700;
}

textarea {
    resize: vertical;
}

.info-panel {
    overflow: hidden;
    background: var(--sky);
}

.info-panel > div {
    padding: 28px;
}

.contact-list {
    display: grid;
    gap: 8px;
    padding-top: 0;
    font-weight: 500;
}

.info-panel img {
    width: 100%;
    max-height: 520px;
    object-fit: cover;
    object-position: center bottom;
}

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

.price-card {
    display: grid;
    gap: 12px;
    padding: 20px;
    background: linear-gradient(180deg, #fff, #eefbf8);
}

.price-card h3 {
    margin-bottom: 0;
    text-transform: uppercase;
}

.price-card p {
    min-height: 48px;
    color: var(--muted);
    font-weight: 700;
}

.price-options {
    display: grid;
    gap: 10px;
}

.price-options div {
    display: grid;
    gap: 2px;
    padding: 12px;
    border: 2px solid var(--line);
    border-radius: 8px;
    background: #fff;
}

.price-options span {
    color: var(--muted);
    font-size: 0.88rem;
    font-weight: 500;
}

.price-options strong {
    font-size: 1.3rem;
}

.price-options small {
    font-weight: 500;
}

.price-board {
    margin-top: 22px;
    border: 2px solid var(--ink);
    border-radius: 8px;
    background: #fff;
    overflow: hidden;
}

.price-board summary {
    padding: 16px 18px;
    cursor: pointer;
    font-weight: 500;
}

.price-board img {
    width: min(760px, 100%);
    margin: 0 auto 20px;
}

.map-wrap {
    min-height: 420px;
    border: 2px solid var(--ink);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-wrap iframe {
    width: 100%;
    height: 420px;
    border: 0;
}

.footer {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    padding: 34px clamp(18px, 5vw, 72px);
    background: var(--sky);
    border-top: 2px solid var(--ink);
}

.footer img {
    width: 100%;
    max-height: 96px;
    object-fit: cover;
    border-radius: 999px;
}

.footer div {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    font-weight: 500;
}

.table-wrap {
    margin-top: 22px;
    overflow-x: auto;
    border: 2px solid var(--ink);
    border-radius: 8px;
    background: #fff;
}

.fleet-table {
    margin-top: 18px;
}

.fleet-table table {
    min-width: 640px;
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 920px;
}

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

th {
    background: var(--sky);
}

.admin-login {
    max-width: 460px;
}

@media (max-width: 900px) {
    .topbar {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .nav {
        justify-content: flex-start;
        overflow-x: auto;
    }

    .phone-pill {
        justify-self: start;
    }

    .hero,
    .content-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: 0;
    }

    .hero-copy {
        padding-bottom: 12px;
    }

    .hero-art {
        margin-right: -30vw;
    }

    .hero-art img {
        min-height: 300px;
        object-position: right bottom;
    }

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

@media (max-width: 560px) {
    .nav {
        gap: 12px;
        font-size: 0.92rem;
    }

    .phone-pill,
    .button {
        width: 100%;
    }

    .hero-actions {
        display: grid;
    }

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

    .notice-strip img {
        min-height: 76px;
        object-fit: cover;
        object-position: center;
    }
}

/* TanTum-inspired visual refresh */
:root {
    --ink: #18211f;
    --muted: #697873;
    --sky: #e4fbf5;
    --mint: #57cdb2;
    --leaf: #8bd63f;
    --orange: #ff6b35;
    --gold: #ffc933;
    --cream: #fff8e6;
    --night: #101817;
    --paper: #ffffff;
    --line: rgba(24, 33, 31, 0.12);
    --shadow: 0 24px 70px rgba(16, 24, 23, 0.15);
}

body {
    background: #f8fbf6;
    color: var(--ink);
    font-family: "Roboto", Arial, Helvetica, sans-serif;
}

.topbar {
    grid-template-columns: auto 1fr auto auto auto;
    background: rgba(16, 24, 23, 0.94);
    border-bottom: 0;
    box-shadow: 0 12px 35px rgba(16, 24, 23, 0.16);
}

.nav,
.phone-pill {
    color: #fff;
}

.brand {
    min-width: 104px;
}

.nav a {
    position: relative;
    padding: 8px 0;
    color: rgba(255, 255, 255, 0.82);
}

.nav a:hover {
    color: #fff;
}

.nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    transform: scaleX(0);
    transform-origin: left;
    background: var(--gold);
    transition: transform 0.18s ease;
}

.nav a:hover::after {
    transform: scaleX(1);
}

.phone-pill {
    border: 0;
    border-radius: 6px;
    background: var(--orange);
    box-shadow: none;
}

.hero {
    position: relative;
    min-height: clamp(620px, calc(100vh - 72px), 760px);
    grid-template-columns: minmax(320px, 0.88fr) minmax(440px, 1.12fr);
    padding: clamp(42px, 5vw, 84px) clamp(18px, 5vw, 76px) 102px;
    background:
        linear-gradient(90deg, rgba(10, 43, 58, 0.36), rgba(34, 121, 153, 0.42) 42%, rgba(255, 211, 79, 0.12) 72%),
        url("../assets/img/hero-duck.png") right bottom / min(78vw, 1180px) auto no-repeat,
        linear-gradient(135deg, #84d8f7 0%, #dff8ff 46%, #ffe27a 100%);
    overflow: hidden;
}

.hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 72px;
    background: linear-gradient(180deg, rgba(248, 251, 246, 0), #f8fbf6);
}

.hero-copy {
    position: relative;
    z-index: 2;
    max-width: 730px;
    padding-bottom: 0;
    color: #fff;
}

.eyebrow {
    color: var(--orange);
    font-size: 0.8rem;
}

.hero .eyebrow {
    color: var(--gold);
}

h1 {
    margin-bottom: 24px;
    font-size: clamp(3rem, 6.4vw, 6.4rem);
    line-height: 0.9;
}

.hero-copy > p:not(.eyebrow) {
    max-width: 600px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 1.12rem;
    font-weight: 700;
}

.button {
    min-height: 52px;
    border: 0;
    border-radius: 6px;
    padding: 14px 22px;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button.primary {
    background: var(--orange);
    box-shadow: 0 14px 28px rgba(255, 107, 53, 0.28);
}

.button.secondary {
    background: #fff;
    color: var(--ink);
    box-shadow: 0 14px 28px rgba(16, 24, 23, 0.16);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    width: min(560px, 100%);
    margin-top: 28px;
}

.hero-stats div {
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
}

.hero-stats strong,
.hero-stats span {
    display: block;
}

.hero-stats strong {
    font-size: 1.45rem;
    color: #fff;
}

.hero-stats span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.9rem;
    font-weight: 500;
}

.hero-art {
    display: none;
}

.notice-strip {
    width: min(1120px, calc(100% - 36px));
    margin: -72px auto 0;
    padding: 0;
    position: relative;
    z-index: 4;
}

.notice-strip img {
    border-radius: 8px;
}

.booking-band {
    margin-top: 38px;
    padding-top: 36px;
}

.info-only-band {
    display: block;
    width: min(1120px, calc(100% - 36px));
    margin-left: auto;
    margin-right: auto;
}

.info-only-band .info-panel {
    display: grid;
    width: 100%;
    grid-template-columns: minmax(0, 1fr) minmax(220px, 0.62fr) minmax(320px, 0.9fr);
    align-items: stretch;
}

.info-only-band .info-panel img {
    height: 100%;
    max-height: 420px;
}

.reservation-panel,
.info-panel,
.price-card {
    border: 0;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.reservation-panel {
    position: relative;
    gap: 14px;
    padding: clamp(22px, 3vw, 36px);
    background: var(--paper);
}

.reservation-panel::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 5px;
    border-radius: 8px 8px 0 0;
    background: linear-gradient(90deg, var(--orange), var(--gold), var(--leaf));
}

.section-heading h2 {
    max-width: 780px;
}

.section-heading.compact h2 {
    font-size: clamp(1.8rem, 3.4vw, 3rem);
}

label {
    color: var(--ink);
    font-size: 0.88rem;
}

input,
select,
textarea {
    border: 1px solid #d9e3dd;
    border-radius: 6px;
    background: #f8fbf6;
}

input:focus,
select:focus,
textarea:focus {
    outline: 3px solid rgba(255, 201, 51, 0.3);
    border-color: var(--gold);
}

.info-panel {
    background: var(--night);
    color: #fff;
}

.info-panel p {
    color: rgba(255, 255, 255, 0.76);
    font-weight: 700;
}

.info-panel .contact-list {
    color: #fff;
}

.info-panel img {
    max-height: 480px;
    filter: saturate(1.02);
}

.prices,
.steps,
.location,
.admin-page {
    width: min(1120px, calc(100% - 36px));
    margin: 0 auto;
    padding: 70px 0;
}

.prices {
    padding-top: 86px;
}

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

.price-card {
    position: relative;
    min-height: 330px;
    padding: 24px;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.98)),
        url("../assets/img/poster.jpg") center bottom / cover no-repeat;
}

.price-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.8));
}

.price-card > * {
    position: relative;
    z-index: 1;
}

.price-card h3 {
    font-size: 1.35rem;
}

.price-card p {
    min-height: 72px;
}

.price-options div {
    grid-template-columns: 1fr;
    border: 0;
    background: rgba(248, 251, 246, 0.92);
    box-shadow: inset 0 0 0 1px rgba(24, 33, 31, 0.08);
}

.price-options strong {
    color: var(--orange);
}

.price-board {
    border: 0;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.steps {
    background: var(--night);
    color: #fff;
    width: 100%;
    padding: 78px clamp(18px, 5vw, 76px);
}

.steps .section-heading {
    width: min(1120px, 100%);
    margin: 0 auto 30px;
}

.steps-grid {
    width: min(1120px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.steps-grid article {
    min-height: 220px;
    padding: 26px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.steps-grid span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    margin-bottom: 24px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--ink);
    font-weight: 500;
}

.steps-grid p {
    color: rgba(255, 255, 255, 0.72);
    font-weight: 700;
}

.map-wrap {
    border: 0;
    border-radius: 8px;
}

.footer {
    background: var(--night);
    color: #fff;
    border-top: 0;
}

.footer img {
    border-radius: 8px;
}

@media (max-width: 980px) {
    .hero {
        min-height: 640px;
        grid-template-columns: 1fr;
        background:
            linear-gradient(180deg, rgba(10, 43, 58, 0.78), rgba(34, 121, 153, 0.3)),
            url("../assets/img/hero-duck.png") right bottom / 980px auto no-repeat,
            linear-gradient(135deg, #84d8f7 0%, #dff8ff 48%, #ffe27a 100%);
    }

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

@media (max-width: 720px) {
    .topbar {
        grid-template-columns: 1fr auto;
        gap: 7px 10px;
        padding: 9px 18px;
    }

    .brand {
        min-width: 88px;
    }

    .brand img {
        height: 54px;
        max-width: 148px;
    }

    .brand-text {
        font-size: 0.92rem;
    }

    .nav {
        grid-column: 1 / -1;
        justify-content: flex-start;
        gap: 12px;
        font-size: 0.86rem;
    }

    .lang-switch {
        justify-self: end;
    }

    .phone-pill {
        grid-column: 1 / -1;
        justify-self: stretch;
        padding: 8px 12px;
        min-height: 40px;
        text-align: center;
    }

    .header-cta {
        grid-column: 1 / -1;
        justify-self: stretch;
        min-height: 40px;
        padding: 8px 12px;
    }

    .hero {
        min-height: 560px;
        padding-top: 34px;
        padding-bottom: 74px;
        background:
            linear-gradient(180deg, rgba(10, 43, 58, 0.84), rgba(34, 121, 153, 0.46)),
            url("../assets/img/hero-duck.png") 64% bottom / 780px auto no-repeat,
            linear-gradient(135deg, #84d8f7 0%, #dff8ff 48%, #ffe27a 100%);
    }

    .price-grid,
    .steps-grid {
        grid-template-columns: 1fr;
    }

    h1 {
        font-size: clamp(2.35rem, 12vw, 3.35rem);
        line-height: 0.94;
    }

    .hero-copy > p:not(.eyebrow) {
        font-size: 1rem;
    }

    .hero-stats {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 7px;
        margin-top: 20px;
    }

    .hero-stats div {
        padding: 9px 8px;
    }

    .hero-stats strong {
        font-size: 1rem;
    }

    .hero-stats span {
        font-size: 0.72rem;
    }

    .notice-strip {
        margin-top: -34px;
    }
}

/* Responsive polish */
.admin-fleet-editor {
    display: grid;
    gap: 18px;
    margin-top: 24px;
    padding: clamp(18px, 3vw, 30px);
    border-radius: 8px;
    background: var(--paper);
    box-shadow: var(--shadow);
}

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

.fleet-editor-card {
    display: grid;
    gap: 16px;
    align-content: space-between;
    padding: 16px;
    border-radius: 8px;
    background: #f8fbf6;
    box-shadow: inset 0 0 0 1px rgba(24, 33, 31, 0.08);
}

.fleet-editor-card h3 {
    margin-bottom: 8px;
    font-size: 1.1rem;
    text-transform: uppercase;
}

.fleet-editor-card p {
    min-height: 0;
    margin-bottom: 4px;
    color: var(--muted);
    font-size: 0.88rem;
    font-weight: 700;
}

.fleet-editor-card strong {
    color: var(--ink);
}

.fleet-editor-card input {
    min-height: 42px;
}

@media (max-width: 1180px) {
    .topbar {
        grid-template-columns: auto 1fr auto auto;
    }

    .phone-pill {
        grid-column: 4;
    }

    .header-cta {
        grid-column: 3;
    }

    .nav {
        gap: 14px;
    }

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

@media (max-width: 860px) {
    .topbar {
        position: static;
        grid-template-columns: 1fr auto;
        gap: 10px;
    }

    .brand {
        min-width: 0;
    }

    .nav {
        grid-column: 1 / -1;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
        width: 100%;
        overflow: visible;
    }

    .nav a {
        display: inline-flex;
        justify-content: center;
        padding: 9px 8px;
        border-radius: 6px;
        background: rgba(255, 255, 255, 0.08);
        text-align: center;
    }

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

    .lang-switch {
        align-self: start;
    }

    .header-cta,
    .phone-pill {
        grid-column: auto;
        width: 100%;
    }

    .header-cta {
        grid-column: 1;
    }

    .phone-pill {
        grid-column: 2;
    }

    .hero {
        min-height: auto;
        padding: 38px clamp(16px, 5vw, 32px) 92px;
        background:
            linear-gradient(180deg, rgba(10, 43, 58, 0.84), rgba(34, 121, 153, 0.46)),
            url("../assets/img/hero-duck.png") 72% bottom / min(900px, 145vw) auto no-repeat,
            linear-gradient(135deg, #84d8f7 0%, #dff8ff 48%, #ffe27a 100%);
    }

    .hero-copy {
        max-width: 620px;
    }

    .hero-copy > p:not(.eyebrow) {
        max-width: 520px;
    }

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

    .info-panel {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(220px, 0.75fr);
    }

    .info-only-band .info-panel {
        grid-template-columns: 1fr;
    }

    .info-panel img {
        height: 100%;
        max-height: none;
    }

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

@media (max-width: 640px) {
    body {
        min-width: 320px;
    }

    .topbar {
        grid-template-columns: 1fr;
        padding: 12px 14px;
    }

    .brand,
    .lang-switch,
    .header-cta,
    .phone-pill {
        justify-self: stretch;
    }

    .brand {
        justify-self: start;
        justify-content: flex-start;
        width: 100%;
    }

    .brand img {
        height: 54px;
        max-width: 144px;
    }

    .brand-text {
        font-size: 0.9rem;
    }

    .lang-switch {
        justify-content: center;
        width: 100%;
    }

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

    .hero {
        padding: 30px 16px 76px;
        background:
            linear-gradient(180deg, rgba(10, 43, 58, 0.88), rgba(34, 121, 153, 0.58)),
            url("../assets/img/hero-duck.png") 60% bottom / 660px auto no-repeat,
            linear-gradient(135deg, #84d8f7 0%, #dff8ff 48%, #ffe27a 100%);
    }

    h1 {
        font-size: clamp(2.25rem, 14vw, 3.45rem);
        line-height: 0.96;
    }

    h2 {
        font-size: clamp(1.7rem, 9vw, 2.35rem);
        line-height: 1.04;
    }

    .hero-actions,
    .form-row {
        display: grid;
        grid-template-columns: 1fr;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .notice-strip {
        width: min(100% - 24px, 1120px);
    }

    .content-grid,
    .info-only-band,
    .prices,
    .location,
    .admin-page {
        width: min(100% - 24px, 1120px);
        padding: 46px 0;
    }

    .reservation-panel,
    .admin-fleet-editor {
        padding: 18px;
    }

    .bike-type-row {
        grid-template-columns: 1fr 76px;
        gap: 10px;
        padding: 10px;
    }

    .bike-type-row input {
        min-width: 0;
    }

    .price-grid,
    .steps-grid,
    .fleet-editor-grid {
        grid-template-columns: 1fr;
    }

    .price-card {
        min-height: 0;
    }

    .price-card p {
        min-height: 0;
    }

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

    .info-panel img {
        max-height: 360px;
    }

    .map-wrap,
    .map-wrap iframe {
        min-height: 340px;
        height: 340px;
    }

    .footer {
        padding: 26px 14px;
    }

    .footer div {
        display: grid;
        gap: 8px;
        text-align: center;
    }

    .table-wrap {
        margin-left: -6px;
        margin-right: -6px;
        border-radius: 6px;
    }

    th,
    td {
        padding: 10px;
        font-size: 0.88rem;
    }
}

@media (max-width: 420px) {
    .hero {
        background:
            linear-gradient(180deg, rgba(10, 43, 58, 0.9), rgba(34, 121, 153, 0.62)),
            url("../assets/img/hero-duck.png") 58% bottom / 560px auto no-repeat,
            linear-gradient(135deg, #84d8f7 0%, #dff8ff 48%, #ffe27a 100%);
    }

    .button,
    .header-cta,
    .phone-pill {
        min-height: 46px;
        padding: 11px 14px;
    }

    .bike-type-row {
        grid-template-columns: 1fr;
    }

    .bike-type-row input {
        width: 100%;
    }
}
